X-Git-Url: http://git.localhorst.tv/?p=blobs.git;a=blobdiff_plain;f=src%2Fcreature%2FCreature.hpp;h=498ebeac8d7665ccc68986b4376812d62ee6935c;hp=4d16f99bd35857689b5f1e09b8dcb9deffcd854a;hb=d364d8a9203138be1c569cdc31144f51883ec79f;hpb=a5f1670b11c4c0ab0006ebbb04b0a6a0f32f0a7c diff --git a/src/creature/Creature.hpp b/src/creature/Creature.hpp index 4d16f99..498ebea 100644 --- a/src/creature/Creature.hpp +++ b/src/creature/Creature.hpp @@ -127,12 +127,15 @@ public: double Lifetime() const noexcept; double Fertility() const noexcept; double Mutability() const noexcept; + double Adaptability() const noexcept; double OffspringMass() const noexcept; /// chance of giving birth per tick double OffspringChance() const noexcept; - /// chance of random genetic mutation per tick + /// chance of arbitrary genetic mutation per tick double MutateChance() const noexcept; + /// chance of environmental genetic mutation per tick + double AdaptChance() const noexcept; void Hurt(double d) noexcept; void Die() noexcept;