Boss Hunt mode

This commit is contained in:
2026-01-21 08:45:39 -06:00
parent 24f6392bae
commit a3b2611b34
4 changed files with 30 additions and 1 deletions

View File

@@ -163,6 +163,8 @@ export default defineComponent({
<SettingPicker color="success" v-model="set.goal" name="goal" :generator="generator" :prefix="prefix" /> <SettingPicker color="success" v-model="set.goal" name="goal" :generator="generator" :prefix="prefix" />
<SettingPicker color="success" v-if="['ganon', 'fast_ganon', 'trinity'].includes(this.set.goal)" <SettingPicker color="success" v-if="['ganon', 'fast_ganon', 'trinity'].includes(this.set.goal)"
v-model="set.crystals_ganon" name="crystals_ganon" :generator="generator" :prefix="prefix" /> v-model="set.crystals_ganon" name="crystals_ganon" :generator="generator" :prefix="prefix" />
<SettingPicker color="success" v-if="['boss_hunt'].includes(this.set.goal)"
v-model="set.bosses_ganon" name="bosses_ganon" :generator="generator" :prefix="prefix" />
<SettingPicker color="success" v-if="['ganon', 'fast_ganon', 'trinity', 'ganon_hunt'].includes(this.set.goal)" <SettingPicker color="success" v-if="['ganon', 'fast_ganon', 'trinity', 'ganon_hunt'].includes(this.set.goal)"
v-model="set.ganon_item" name="ganon_item" :generator="generator" :prefix="prefix" /> v-model="set.ganon_item" name="ganon_item" :generator="generator" :prefix="prefix" />
<SettingPicker color="success" v-model="set.crystals_gt" name="crystals_gt" :generator="generator" :prefix="prefix" /> <SettingPicker color="success" v-model="set.crystals_gt" name="crystals_gt" :generator="generator" :prefix="prefix" />

View File

@@ -1,7 +1,7 @@
base: base:
mode: all mode: all
weapons: all weapons: all
goal: all goal: ['ganon', 'fast_ganon', 'all_dungeons', 'trinity', 'pedestal', 'triforce_hunt', 'ganon_hunt', 'completionist', 'sanctuary']
crystals_ganon: all crystals_ganon: all
crystals_gt: all crystals_gt: all
ganon_item: all ganon_item: all
@@ -55,6 +55,7 @@ dungeon_map:
weapons: all weapons: all
goal: all goal: all
crystals_ganon: all crystals_ganon: all
bosses_ganon: all
crystals_gt: all crystals_gt: all
ganon_item: all ganon_item: all
entrance_shuffle: all entrance_shuffle: all

View File

@@ -3,6 +3,7 @@ randomizer:
goal: goal:
ganon: "{{ crystals_ganon }} Crystal Ganon" ganon: "{{ crystals_ganon }} Crystal Ganon"
fast_ganon: "{{ crystals_ganon }} Crystal Fast Ganon" fast_ganon: "{{ crystals_ganon }} Crystal Fast Ganon"
boss_hunt: "{{ bosses_ganon }} Boss Hunt"
all_dungeons: All Dungeons all_dungeons: All Dungeons
trinity: Trinity trinity: Trinity
triforce_hunt: Triforce Hunt triforce_hunt: Triforce Hunt

View File

@@ -43,6 +43,9 @@ goal:
fast_ganon: fast_ganon:
display: Fast Ganon display: Fast Ganon
tip: Ganon must be defeated to complete the game, but can only be defeated once the player has collected a sufficient number of crystals. tip: Ganon must be defeated to complete the game, but can only be defeated once the player has collected a sufficient number of crystals.
boss_hunt:
display: Boss Hunt
tip: Ganon must be defeated to complete the game, but can only be defeated once the player has defeated a sufficient number of bosses.
all_dungeons: all_dungeons:
display: All Dungeons display: All Dungeons
tip: Ganon must be defeated to complete the game, but can only be defeated once the player has collected all seven crystals, all three pendants, and has defeated both forms of Agahnim. tip: Ganon must be defeated to complete the game, but can only be defeated once the player has collected all seven crystals, all three pendants, and has defeated both forms of Agahnim.
@@ -86,6 +89,28 @@ crystals_ganon:
display: 0 display: 0
random: random:
display: Random display: Random
bosses_ganon:
display: Bosses for Ganon
default: "8of10"
values:
"7of10":
display: "7 Prize Bosses"
tip: To defeat Ganon, you must defeat 7 of the 10 bosses (not including either form of Agahnim).
"8of10":
display: "8 Prize Bosses"
tip: To defeat Ganon, you must defeat 8 of the 10 bosses (not including either form of Agahnim).
"10of10":
display: "10 Prize Bosses"
tip: To defeat Ganon, you must defeat all 10 bosses (not including either form of Agahnim).
"8of12":
display: "8 Total Bosses"
tip: To defeat Ganon, you must defeat 8 of the 12 dungeon bosses.
"10of12":
display: "10 Total Bosses"
tip: To defeat Ganon, you must defeat 10 of the 12 dungeon bosses.
"12of12":
display: "12 Total Bosses"
tip: To defeat Ganon, you must defeat all 12 of the dungeon bosses.
crystals_gt: crystals_gt:
display: Crystals for GT display: Crystals for GT
default: "7" default: "7"