add greg bridge altar text (#2524)

Co-authored-by: briaguya <briaguya@alice>
This commit is contained in:
briaguya 2023-02-24 03:20:24 -05:00 committed by GitHub
parent 96dd7073e4
commit df6da69f7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -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 |
---------------------------*/

View File

@ -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+"^";

View File

@ -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,