Fix Custom Item Pool (again)

This commit is contained in:
Mike A. Trethewey
2020-02-22 02:43:56 -08:00
parent 16f997a03b
commit 7a3855a17a
3 changed files with 82 additions and 81 deletions

142
CLI.py
View File

@@ -373,77 +373,77 @@ def get_settings():
"race": False, "race": False,
"custom": False, "custom": False,
"customitemarray": [ "customitemarray": [
0, 0, # Bow
0, 2, # Progessive Bow
1, 1, # Blue Boomerang
1, 1, # Red Boomerang
1, 1, # Hookshot
1, 1, # Mushroom
1, 1, # Magic Powder
1, 1, # Fire Rod
1, 1, # Ice Rod
1, 1, # Bombos
1, 1, # Ether
1, 1, # Quake
1, 1, # Lamp
1, 1, # Hammer
1, 1, # Shovel
1, 1, # Flute
1, 1, # Bug Net
1, 1, # Book
4, 4, # Bottle
1, 1, # Cane of Somaria
1, 1, # Cane of Byrna
1, 1, # Magic Cape
1, 1, # Magic Mirror
1, 1, # Pegasus Boots
0, 0, # Power Glove
0, 0, # Titan's Mitt
2, 2, # Progressive Glove
1, 1, # Flippers
1, 1, # Moon Pearl
24, 24, # Piece of Heart
10, 10, # Heart Container
1, 1, # Sanctuary Heart
0, 0, # FS
0, 0, # MS
0, 0, # TS
0, 0, # GS
4, 4, # Progressive Sword
0, 0, # Fighters' Shield
0, 0, # Fire Shield
0, 0, # Mirror Shield
3, 3, # Progressive Shield
0, 0, # Blue Mail
0, 0, # Red Mail
2, 2, # Progressive Mail
1, 1, # Half Magic
0, 0, # Quarter Magic
0, 0, # Bombs + 5
0, 0, # Bombs +10
0, 0, # Arrows + 5
0, 0, # Arrows +10
1, 1, # Single Arrow
12, 12, # 10 Arrows
0, 0, # Single Bomb
16, 16, # 3 Bombs
1, 1, # 10 Bombs
2, 2, # 1 Rupee
4, 4, # 5 Rupees
28, 28, # 20 Rupees
7, 7, # 50 Rupees
1, 1, # 100 Rupees
5, 5, # 300 Rupees
0, 0, # Blue Clock
0, 0, # Green Clock
0, 0, # Red Clock
0, 0, # Silver Arrows Upgrade
0, 0, # Generic Keys
0, 0, # Triforce Pieces
0, 0, # Triforce Pieces Goal
0, 0, # Triforce (win game)
0, 0, # Rupoors
10 10 # Rupoor Cost
], ],
"rom": os.path.join(".","Zelda no Densetsu - Kamigami no Triforce (Japan).sfc"), "rom": os.path.join(".","Zelda no Densetsu - Kamigami no Triforce (Japan).sfc"),
"sprite": None, "sprite": None,

View File

@@ -179,15 +179,16 @@ def create_guiargs(parent):
setattr(guiargs,"adjust." + internal, parent.pages["adjust"].content.widgets[adjustarg].storageVar.get()) setattr(guiargs,"adjust." + internal, parent.pages["adjust"].content.widgets[adjustarg].storageVar.get())
customitems = [ customitems = [
"bow", "silversupgrade", "boomerang", "redmerang", "hookshot", "mushroom", "powder", "firerod", "bow", "progressivebow", "boomerang", "redmerang", "hookshot", "mushroom", "powder", "firerod",
"icerod", "bombos", "ether", "quake", "lamp", "hammer", "shovel", "flute", "bugnet", "icerod", "bombos", "ether", "quake", "lamp", "hammer", "shovel",
"book", "bottle", "somaria", "byrna", "cape", "mirror", "boots", "powerglove", "titansmitt", "flute", "bugnet", "book", "bottle", "somaria", "byrna", "cape", "mirror",
"progressiveglove", "flippers", "pearl", "heartpiece", "heartcontainer", "sancheart", "sword1", "sword2", "boots", "powerglove", "titansmitt", "progressiveglove", "flippers", "pearl", "heartpiece",
"sword3", "sword4", "progressivesword", "shield1", "shield2", "shield3", "progressiveshield", "mail2", "heartcontainer", "sancheart", "sword1", "sword2", "sword3", "sword4", "progressivesword",
"mail3", "progressivemail", "halfmagic", "quartermagic", "bombsplus5", "bombsplus10", "arrowsplus5", "arrowsplus10", "shield1", "shield2", "shield3", "progressiveshield", "mail2",
"arrow1", "arrow10", "bomb1", "bomb3", "rupee1", "rupee5", "rupee20", "rupee50", "rupee100", "mail3", "progressivemail", "halfmagic", "quartermagic", "bombsplus5", "bombsplus10", "arrowsplus5", "arrowsplus10",
"rupee300", "rupoor", "blueclock", "greenclock", "redclock", "progressivebow", "bomb10", "triforcepieces", "triforcepiecesgoal", "arrow1", "arrow10", "bomb1", "bomb3", "bomb10", "rupee1", "rupee5", "rupee20",
"triforce", "rupoorcost", "generickeys" "rupee50", "rupee100", "rupee300", "blueclock", "greenclock", "redclock", "silversupgrade", "generickeys",
"triforcepieces", "triforcepiecesgoal", "triforce", "rupoor", "rupoorcost"
] ]
guiargs.customitemarray = [] guiargs.customitemarray = []
for customitem in customitems: for customitem in customitems:

View File

@@ -705,7 +705,7 @@
"label": { "label": {
"sticky": "w" "sticky": "w"
}, },
"default": 13 "default": 16
} }
}, },
"bomb10": { "bomb10": {