Skip to content

Commit

Permalink
4.0.0-dev1
Browse files Browse the repository at this point in the history
  • Loading branch information
RainbowTabitha committed Oct 4, 2024
1 parent b7953da commit 22a1617
Show file tree
Hide file tree
Showing 13 changed files with 3,778 additions and 1,740 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/darwin-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: cd "/Users/runner/work/Mario-Party-Toolkit/Mario-Party-Toolkit/dist/" && rm "Mario Party Toolkit"

- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: MarioPartyToolkit-darwin_arm64
path: /Users/runner/work/Mario-Party-Toolkit/Mario-Party-Toolkit/dist
Expand Down
Binary file added assets/items/goldenMushroom4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/items/hiddenBlockCard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/items/mushroom4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion codes/marioParty4.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def getBooHouseMinimum(min, minDec):
040A19B0 3BA0{min}
'''

def getItemModsFour(oneP, oneW, twoP, twoW, threeP, threeW, fourP, fourW, fiveP, fiveW, sixP, sixW, sevenP, sevenW, eightP, eightW, nineP, nineW, tenP, tenW, elevenP, elevenW, twelveP, twelveW, thirteenP, thirteenW, fourteenP, fourteenW, minCoins):
def getItemModsFour(oneP, oneW, twoP, twoW, threeP, threeW, fourP, fourW, fiveP, fiveW, sixP, sixW, sevenP, sevenW, eightP, eightW, nineP, nineW, tenP, tenW, elevenP, elevenW, twelveP, twelveW, thirteenP, thirteenW, fourteenP, fourteenW, minCoins, extOneP, extOneW, extTwoP, extTwoW, extThreeP, extThreeW, extFourP, extFourW, extFiveP, extFiveW):
return f'''
MP4 - Item Modifer
C2083878 0000001E
Expand Down
274 changes: 137 additions & 137 deletions codes/marioParty7.py

Large diffs are not rendered by default.

193 changes: 171 additions & 22 deletions events/marioParty4_items.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion events/marioParty5_bonusStarReplace.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def customBonusStarEvent_mp5(star1, star2, star3, stars5):
starSlot2 = star2.get()
starSlot3 = star3.get()

starHex = ["NONE", "881D0014", "881D0015", "881D0016", "881D0017", "881D0018", "881D0019", "A81D0020", "A81D0022", "A883001C", "A883001E", "A8830022", "A81D0026", "A81D0034"]
starHex = ["NONE", "881D0014", "881D0015", "881D0016", "881D0017", "881D0018", "881D0019", "A81D0020", "A81D0022", "A81D0026", "A81D0034"]

starSlot1Num = stars5.index(starSlot1)
starSlot1Hex = starHex[starSlot1Num]
Expand Down
3,032 changes: 1,903 additions & 1,129 deletions events/marioParty7_items.py

Large diffs are not rendered by default.

146 changes: 141 additions & 5 deletions frames/marioParty4_frame.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions frames/marioParty6_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def toggle_hide_custom():
parse_stars_button = ctk.CTkButton(master=tabview.tab("Star Handicaps"), command=lambda: handicapEvent_mp6(p1Stars, p2Stars, p3Stars, p4Stars), text="Generate Codes")
parse_stars_button.place(x=10, y=800)

stars6 = ["None", "Blue Star", "Red Star", "Character Space Star", "Happening Star", "Duel Star", "Chance Time Star", "Bowser Star", "DK Star", "Minigame Star", "Current Coins Star", "Coin Star", "Star Star", "Orb Star"]
stars6 = ["None", "Blue Star", "Red Star", "Character Space Star", "Happening Star", "Bowser Star", "Chance Time Star", "Duel Star", "DK Star", "Minigame Star", "Current Coins Star", "Coin Star", "Star Star", "Orb Star"]

label = ctk.CTkLabel(master=tabview.tab("Bonus Star Replacement"), text=" Replace Minigame Star with: ", font=("Arial", 16))
label.grid(row=0, column=0, sticky="w")
Expand Down Expand Up @@ -733,4 +733,4 @@ def toggle_hide_custom():
parse_stars_button.place(x=10, y=800)

return frame


1,861 changes: 1,420 additions & 441 deletions frames/marioParty7_frame.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# License: MIT
# ============================================

versionString = "3.30"
versionString = "4.0.0-DEV"

0 comments on commit 22a1617

Please sign in to comment.