diff options
| author | briaguya <70942617+briaguya-ai@users.noreply.github.com> | 2023-02-24 03:20:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-24 03:20:24 -0500 |
| commit | df6da69f7d9bc484af08d5837cfedee2cf47c83b (patch) | |
| tree | 599590b3791471a24e51924a5fcf1145ce0ee275 | |
| parent | 96dd7073e4c8497fc99f2dd35c0f547c8f71d890 (diff) | |
add greg bridge altar text (#2524)
Co-authored-by: briaguya <briaguya@alice>
| -rw-r--r-- | soh/soh/Enhancements/randomizer/3drando/hint_list.cpp | 7 | ||||
| -rw-r--r-- | soh/soh/Enhancements/randomizer/3drando/hints.cpp | 3 | ||||
| -rw-r--r-- | soh/soh/Enhancements/randomizer/3drando/keys.hpp | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/soh/soh/Enhancements/randomizer/3drando/hint_list.cpp b/soh/soh/Enhancements/randomizer/3drando/hint_list.cpp index 0151548e1..d080411ff 100644 --- a/soh/soh/Enhancements/randomizer/3drando/hint_list.cpp +++ b/soh/soh/Enhancements/randomizer/3drando/hint_list.cpp @@ -2714,6 +2714,13 @@ void HintTable_Init() { /*spanish*/ "Los sabios aguardarán a que el héroe&obtenga #%d |símbolo|símbolos| de&skulltula dorada#." }, }); + hintTable[BRIDGE_GREG_HINT] = HintText::Bridge({ + // obscure text + Text{ "The awakened ones will await&for the Hero to find %gGreg%w.", + /*french*/ "The awakened ones will await&for the Hero to find %gGreg%w.", + /*spanish*/ "The awakened ones will await&for the Hero to find %gGreg%w." }, + }); + /*-------------------------- | GANON BOSS KEY HINT TEXT | ---------------------------*/ diff --git a/soh/soh/Enhancements/randomizer/3drando/hints.cpp b/soh/soh/Enhancements/randomizer/3drando/hints.cpp index 5028f8c89..5b6be555b 100644 --- a/soh/soh/Enhancements/randomizer/3drando/hints.cpp +++ b/soh/soh/Enhancements/randomizer/3drando/hints.cpp @@ -627,6 +627,9 @@ static Text BuildBridgeReqsText() { } else if (Bridge.Is(RAINBOWBRIDGE_TOKENS)) { bridgeText = BuildCountReq(BRIDGE_TOKENS_HINT, BridgeTokenCount); + + } else if (Bridge.Is(RAINBOWBRIDGE_GREG)) { + bridgeText = Hint(BRIDGE_GREG_HINT).GetText(); } return Text()+"$l"+bridgeText+"^"; diff --git a/soh/soh/Enhancements/randomizer/3drando/keys.hpp b/soh/soh/Enhancements/randomizer/3drando/keys.hpp index 13d0325c0..5536265b3 100644 --- a/soh/soh/Enhancements/randomizer/3drando/keys.hpp +++ b/soh/soh/Enhancements/randomizer/3drando/keys.hpp @@ -1768,6 +1768,7 @@ typedef enum { BRIDGE_REWARDS_HINT, BRIDGE_DUNGEONS_HINT, BRIDGE_TOKENS_HINT, + BRIDGE_GREG_HINT, GANON_BK_START_WITH_HINT, GANON_BK_VANILLA_HINT, |
