Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: FredYeye/Demon-s-Crest-Rando
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.3
Choose a base ref
...
head repository: FredYeye/Demon-s-Crest-Rando
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 28, 2024

  1. Copy the full SHA
    5fd3104 View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 src/rando/location.rs
5 changes: 2 additions & 3 deletions src/rando/location.rs
Original file line number Diff line number Diff line change
@@ -147,7 +147,7 @@ impl Location {
Location::Stage2Hp2 => vec![(AbilityType::Buster.mask() | AbilityType::Ground.mask(), 0)],
Location::Ovnunu => vec![(AbilityType::Ground.mask(), 0)],

Location::Stage3Vellum => vec![(AbilityType::Buster.mask(), 0)],
Location::Stage3Vellum => vec![(AbilityType::Buster.mask(), 0), (AbilityType::Swim.mask(), 0)],
Location::Stage3Hp2 => vec![(AbilityType::Swim.mask(), 0), (AbilityType::Buster.mask(), 7)],
Location::Skull => vec![(AbilityType::Buster.mask(), 0)],

@@ -160,7 +160,7 @@ impl Location {
Location::Holothurion => vec![(AbilityType::Swim.mask(), 0)],

Location::Stage6Potion => vec![(AbilityType::Flight.mask(), 0)],
Location::Stage6Hp => vec![(AbilityType::Flight.mask(), 0)],
Location::Stage6Hp => vec![(AbilityType::Flight.mask(), 0)], // needs ability that can hit low
Location::Armor => vec![(AbilityType::Ground.mask() | AbilityType::Flight.mask(), 0)],
Location::Stage6Vellum => vec![(AbilityType::Ground.mask(), 0)],
Location::Arma3 => vec![(AbilityType::Ground.mask() | AbilityType::Flight.mask(), 0)],
@@ -234,7 +234,6 @@ impl Location {
Holothurion |
Stage6Potion | Arma3 |
TrioThePago |

PhalanxFang => true,

_ => false,