Lowered walking fatigue values

This commit is contained in:
Marcin Kostrzewski 2020-04-06 10:26:16 +02:00
parent 903a406c74
commit c69c923d31

View File

@ -35,10 +35,10 @@ class Player(Entity):
def applyWalkingFatigue(self):
# looses hunger every 10 steps taken
if self.movePoints % 10 == 0:
self.statistics.set_hunger(10)
self.statistics.set_hunger(5)
# gets more thirsty every 5 steps
if self.movePoints % 5 == 0:
self.statistics.set_thirst(10)
self.statistics.set_thirst(6)
# gets tired every step
self.statistics.set_stamina(-2)