mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
reduce XP yield of axolotls and geckos
This commit is contained in:
parent
2249ca6a49
commit
60c58200a9
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user