balancing

more specific stats

Update body.rs

more balancing

non hostile catoblepas and mouflons

quad low
more adjustments
Animals with enemy alignment now deal correct damage. Made health scaling species-specific.
This commit is contained in:
Sam
2020-08-14 16:55:03 -05:00
committed by Monty Marz
parent 7ab80ef367
commit 924d09e46c
39 changed files with 767 additions and 125 deletions

View File

@ -31,7 +31,8 @@ impl Alignment {
(Alignment::Enemy, Alignment::Tame) => true,
(Alignment::Wild, Alignment::Enemy) => false,
(Alignment::Wild, Alignment::Wild) => false,
(Alignment::Npc, Alignment::Wild) => true,
(Alignment::Npc, Alignment::Wild) => false,
(Alignment::Npc, Alignment::Enemy) => true,
(_, Alignment::Enemy) => true,
(Alignment::Enemy, _) => true,
_ => false,