reduce XP yield of axolotls and geckos

This commit is contained in:
crabman 2024-02-17 00:17:36 +01:00 committed by UncomfySilence
parent 2249ca6a49
commit 60c58200a9

View File

@ -1204,8 +1204,13 @@ impl Body {
quadruped_low::Species::HermitAlligator => 2.0,
_ => 1.0,
},
Body::QuadrupedSmall(b) => match b.species {
quadruped_small::Species::Axolotl | quadruped_small::Species::Gecko => 0.6,
_ => 1.0,
},
Body::FishMedium(_) => 0.6,
Body::FishSmall(_) => 0.6,
#[allow(unreachable_patterns)] // TODO: Remove when more crustacean species are added
Body::Crustacean(b) => match b.species {
crustacean::Species::Crab => 0.6,
_ => 1.0,