mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-03-03 02:01:47 -05:00
Add trick for using blue fire on mud walls (#4810)
This commit is contained in:
parent
349aac10be
commit
51fcf4d2c6
@ -822,8 +822,7 @@ namespace Rando {
|
||||
}
|
||||
|
||||
bool Logic::CanBreakMudWalls() {
|
||||
//RANDOTODO blue fire tricks
|
||||
return BlastOrSmash();
|
||||
return BlastOrSmash() || (ctx->GetTrickOption(RT_BLUE_FIRE_MUD_WALLS) && BlueFire());
|
||||
}
|
||||
|
||||
bool Logic::CanGetDekuBabaSticks() {
|
||||
|
@ -2838,6 +2838,7 @@ typedef enum {
|
||||
RT_DAMAGE_BOOST_SIMPLE,
|
||||
RT_HOVER_BOOST_SIMPLE,
|
||||
RT_BOMBCHU_BEEHIVES,
|
||||
RT_BLUE_FIRE_MUD_WALLS,
|
||||
RT_KF_ADULT_GS, // -- location tricks
|
||||
RT_LW_BRIDGE,
|
||||
RT_LW_MIDO_BACKFLIP,
|
||||
|
@ -350,6 +350,7 @@ void Settings::CreateOptions() {
|
||||
mTrickOptions[RT_DAMAGE_BOOST_SIMPLE] = TrickOption::LogicTrick(RCQUEST_BOTH, RA_NONE, {Tricks::Tag::ADVANCED, Tricks::Tag::EXPERIMENTAL}, "Simple damage boosts", "Allows damage boosts in order to reach further locations. Can be combined with \"Simple hover boosts\" for reaching far distances.");
|
||||
mTrickOptions[RT_HOVER_BOOST_SIMPLE] = TrickOption::LogicTrick(RCQUEST_BOTH, RA_NONE, {Tricks::Tag::ADVANCED, Tricks::Tag::EXPERIMENTAL}, "Simple hover boosts", "Allows equipping of hover boots when link is moving at high speeds to extend distance covered. Can be combined with \"Simple damage boosts\" for greater uses.");
|
||||
mTrickOptions[RT_BOMBCHU_BEEHIVES] = TrickOption::LogicTrick(RCQUEST_BOTH, RA_NONE, {Tricks::Tag::NOVICE}, "Bombchu Beehives", "Allows exploding beehives with bombchus.");
|
||||
mTrickOptions[RT_BLUE_FIRE_MUD_WALLS] = TrickOption::LogicTrick(RCQUEST_BOTH, RA_NONE, {Tricks::Tag::NOVICE}, "Break Mud Walls with Blue Fire", "Use Blue Fire to break mud walls.");
|
||||
mTrickOptions[RT_KF_ADULT_GS] = TrickOption::LogicTrick(RCQUEST_BOTH, RA_KOKIRI_FOREST, {Tricks::Tag::NOVICE}, "Adult Kokiri Forest GS with Hover Boots", "Can be obtained without Hookshot by using the Hover Boots off of one of the roots.");
|
||||
mTrickOptions[RT_LW_BRIDGE] = TrickOption::LogicTrick(RCQUEST_BOTH, RA_THE_LOST_WOODS, {Tricks::Tag::EXPERT}, "Jump onto the Lost Woods Bridge as Adult with Nothing", "With very precise movement it's possible for adult to jump onto the bridge without needing Longshot, Hover Boots, or Bean.");
|
||||
mTrickOptions[RT_LW_MIDO_BACKFLIP] = TrickOption::LogicTrick(RCQUEST_BOTH, RA_THE_LOST_WOODS, {Tricks::Tag::NOVICE}, "Backflip over Mido as Adult", "With a specific position and angle, you can backflip over Mido.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user