Skip to content

Commit

Permalink
duck and rare glasses patch
Browse files Browse the repository at this point in the history
  • Loading branch information
bananaturtlesandwich committed May 21, 2023
1 parent 6ae71ce commit ff05d9a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "blue-fire-rando"
description = "a gamemode for blue fire which shuffles pickups"
repository = "https://github.com/bananaturtlesandwich/blue-fire-rando"
version = "1.1.1"
version = "1.1.2"
authors = ["spuds"]
edition = "2021"

Expand Down
8 changes: 7 additions & 1 deletion src/logic/checks.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use super::*;
use crate::{no_walljump, walljump};

pub const CHECKS: [Check; 254] = [
pub const CHECKS: [Check; 255] = [
// Fire Keep
Check {
location: Locations::Lab,
Expand Down Expand Up @@ -1575,6 +1575,12 @@ pub const CHECKS: [Check; 254] = [
drop: Drop::Ore(3000),
locks: &[Lock::Item(Items::RareSnow)],
},
Check {
location: Locations::RustVillage,
context: Context::Overworld("Dance_Platform_Aggresive_Chest"),
drop: Drop::Item(Items::RareGlasses, 1),
locks: &[Lock::Emote(Emotes::Aggressive)],
},
Check {
location: Locations::RustVillage,
context: Context::Shop(Shop::Poti, 0, 3000),
Expand Down
2 changes: 1 addition & 1 deletion src/logic/locations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub enum Locations {
Lab,
#[strum(serialize = "A02_ArcaneTunnels/A02_GameIntro_Exterior")]
Bitoven,
#[strum(serialize = "A02_ArcaneTunnels/A02_GameIntro")]
#[strum(serialize = "A02_ArcaneTunnels/A02_GameIntro_DLC_VoidMaster")]
KeepDucks,
#[strum(serialize = "A02_ArcaneTunnels/A02_GameIntro_KeepEast")]
KeepVessel,
Expand Down

0 comments on commit ff05d9a

Please sign in to comment.