Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion randomizer/CollectibleLogicFiles/CrystalCaves.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
Collectible(Collectibles.bunch, Kongs.lanky, lambda l: l.balloon, None, 3), # Near Cranky

Collectible(Collectibles.banana, Kongs.tiny, lambda _: True, None, 10), # River To Igloo
Collectible(Collectibles.bunch, Kongs.tiny, lambda l: l.mini or l.CanPhase(), None, 1), # Warp 3 cave

Collectible(Collectibles.bunch, Kongs.chunky, lambda _: True, None, 1), # Warp 2
Collectible(Collectibles.bunch, Kongs.chunky, lambda _: True, None, 1), # On small boulder switch
Expand Down Expand Up @@ -56,6 +55,7 @@
Collectible(Collectibles.balloon, Kongs.tiny, lambda l: l.feather, None, 1), # Warp 4 cave
],
Regions.CavesBonusCave: [
Collectible(Collectibles.bunch, Kongs.tiny, lambda l: True, None, 1), # Warp 3 cave
Collectible(Collectibles.balloon, Kongs.chunky, lambda l: l.pineapple, None, 1), # Warp 3 cave

Collectible(Collectibles.coin, Kongs.chunky, lambda _: True, None, 5), # Warp 3 cave
Expand Down
5 changes: 4 additions & 1 deletion requirement_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -764,9 +764,12 @@ const requirement_data = {
new Requirement(15, [[Moves.Moveless]]), // 10 bananas in CrystalCavesMain; 1 bunch in IglooArea
new Requirement(10, [[Moves.Feather]]), // 1 balloon in CabinArea
new Requirement(10, [[Moves.Sax]]), // 2 bunches in TinyCabin
new Requirement(5, [[Moves.Mini]]), // 1 bunch in CrystalCavesMain
new Requirement(10, [[Moves.Feather, Moves.Sax]]), // 1 balloon in TinyCabin
new Requirement(5, [[Moves.Sax, Moves.CavesIglooPads]]), // 1 bunch in TinyIgloo
new Requirement(5, [ // 1 bunch in CavesBonusCave
[Moves.Mini],
[Moves.AllWarps],
]),
new Requirement(10, [[Moves.Feather, Moves.Sax, Moves.CavesIglooPads]]), // 1 balloon in TinyIgloo
new Requirement(20, [[Moves.Barrels, Moves.Monkeyport, Moves.Hunky, Moves.CavesIceWalls]]), // 4 bunches in GiantKosha
new Requirement(10, [ // 1 balloon in CavesBlueprintCave
Expand Down
2 changes: 1 addition & 1 deletion templates/music.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ <h2 class="title">MUSIC RANDO
</div>
<div class="form-check form-switch item-switch">
<label data-toggle="tooltip"
title="If true, boss & bonus songs will choose from a pool of song every time they're played instead of a defined song.">
title="If true, boss & bonus songs will choose from a pool of songs every time they're played instead of a defined song.">
<input class="form-check-input"
type="checkbox"
name="pool_tracks"
Expand Down
Loading