Add bomb-only mode and random ganon vulnerability item

This commit is contained in:
2021-06-29 22:16:08 -07:00
parent a4e3ed1e4f
commit 078ea13cac
26 changed files with 540 additions and 164 deletions

View File

@@ -34,6 +34,7 @@
"random",
"assured",
"swordless",
"bombs",
"vanilla"
]
},
@@ -202,6 +203,26 @@
"random"
]
},
"ganon_item": {
"choices": [
"default",
"random",
"arrow",
"boomerang",
"hookshot",
"bomb",
"powder",
"fire_rod",
"ice_rod",
"bombos",
"ether",
"quake",
"hammer",
"bee",
"somaria",
"byrna"
]
},
"beemizer": {
"choices": [
"4", "3", "2", "1", "0"
@@ -421,4 +442,4 @@
},
"outputname": {},
"code": {}
}
}

View File

@@ -91,6 +91,11 @@
" Ether and Bombos Tablet can be activated with Hammer",
" (and Book). Bombos pads have been added in Ice",
" Palace, to allow for an alternative to firerod.",
"Bombs: Similar to swordless, but only bombs deal damage",
" to enemies. Bombs deal sword-class damage and can be",
" upgraded. Special enemies such as red eyegores still",
" require the traditional item to kill. Medallions can",
" be used despite not having a sword.",
"Vanilla: Swords are in vanilla locations."
],
"goal": [
@@ -249,6 +254,13 @@
"Random: Picks a random value between 0 and 7 (inclusive).",
"0-7: Number of crystals needed"
],
"ganon_item": [
"What item Ganon is vulnerable to while stunned in his final phase.",
"Default: The usual item (silver arrows except in bomb-only mode) will",
" damage stunned Ganon.",
"Random: Picks a random damaging item (but not a medallion if swordless)",
"<item>: The specified item will damage stunned Ganon."
],
"openpyramid": [ "Pre-opens the pyramid hole, this removes the Agahnim 2 requirement for it. (default: %(default)s)" ],
"rom": [
"Path to an ALttP JP (1.0) rom to use as a base." ,

View File

@@ -124,7 +124,7 @@
"randomizer.overworld.overworldflute": "Flute Shuffle",
"randomizer.overworld.overworldflute.vanilla": "Vanilla",
"randomizer.overworld.overworldflute.random": "Random",
"randomizer.entrance.openpyramid": "Pre-open Pyramid Hole",
"randomizer.entrance.shuffleganon": "Include Ganon's Tower and Pyramid Hole in shuffle pool",
"randomizer.entrance.shufflelinks": "Include Link's House in the shuffle pool",
@@ -244,10 +244,29 @@
"randomizer.item.crystals_ganon.7": "7",
"randomizer.item.crystals_ganon.random": "Random",
"randomizer.item.ganon_item": "Item to harm stunned Ganon",
"randomizer.item.ganon_item.default": "Default",
"randomizer.item.ganon_item.random": "Random",
"randomizer.item.ganon_item.arrow": "Silver Arrows",
"randomizer.item.ganon_item.boomerang": "Boomerang",
"randomizer.item.ganon_item.hookshot": "Hookshot",
"randomizer.item.ganon_item.bomb": "Bombs",
"randomizer.item.ganon_item.powder": "Powder",
"randomizer.item.ganon_item.fire_rod": "Fire Rod",
"randomizer.item.ganon_item.ice_rod": "Ice Rod",
"randomizer.item.ganon_item.bombos": "Bombos",
"randomizer.item.ganon_item.ether": "Ether",
"randomizer.item.ganon_item.quake": "Quake",
"randomizer.item.ganon_item.hammer": "Hammer",
"randomizer.item.ganon_item.bee": "Bee",
"randomizer.item.ganon_item.somaria": "Cane of Somaria",
"randomizer.item.ganon_item.byrna": "Cane of Byrna",
"randomizer.item.weapons": "Weapons",
"randomizer.item.weapons.random": "Randomized",
"randomizer.item.weapons.assured": "Assured",
"randomizer.item.weapons.swordless": "Swordless",
"randomizer.item.weapons.bombs": "Bomb-Only",
"randomizer.item.weapons.vanilla": "Vanilla",
"randomizer.item.beemizer": "Beemizer",

View File

@@ -50,20 +50,36 @@
"random"
]
},
"ganon_item": {
"type": "selectbox",
"options": [
"default",
"random",
"arrow",
"boomerang",
"hookshot",
"bomb",
"powder",
"fire_rod",
"ice_rod",
"bombos",
"ether",
"quake",
"hammer",
"bee",
"somaria",
"byrna"
]
},
"weapons": {
"type": "selectbox",
"options": [
"random",
"assured",
"swordless",
"bombs",
"vanilla"
]
},
"beemizer": {
"type": "selectbox",
"options": [
"0", "1", "2", "3", "4"
]
}
},
"rightItemFrame": {
@@ -122,6 +138,12 @@
"vt26",
"balanced"
]
},
"beemizer": {
"type": "selectbox",
"options": [
"0", "1", "2", "3", "4"
]
}
}
}