Changed fatigue

This commit is contained in:
Marcin Kostrzewski 2020-05-16 16:23:49 +02:00
parent 05898f5b8b
commit 1c8b21bf2c
2 changed files with 2 additions and 47 deletions

View File

@ -94,36 +94,6 @@
},
"type" : "rest"
},
{
"name" : "purewater",
"position" : {
"x": 3,
"y": 5
},
"isPickupable": false,
"effect" : {
"hp": 2,
"stamina": 2,
"thirst": -40,
"hunger": 0
},
"type" : "water"
},
{
"name" : "purewater",
"position" : {
"x": 3,
"y": 6
},
"isPickupable": false,
"effect" : {
"hp": 2,
"stamina": 2,
"thirst": -40,
"hunger": 0
},
"type" : "water"
},
{
"name" : "purewater",
"position" : {
@ -169,21 +139,6 @@
},
"type" : "water"
},
{
"name" : "purewater",
"position" : {
"x": 1,
"y": 8
},
"isPickupable": false,
"effect" : {
"hp": 2,
"stamina": 2,
"thirst": -40,
"hunger": 0
},
"type" : "water"
},
{
"name" : "rock",
"position" : {

View File

@ -53,9 +53,9 @@ class Player(Entity):
"""
# looses hunger
self.statistics.set_hunger(1)
self.statistics.set_hunger(1.3)
# gets more thirsty
self.statistics.set_thirst(2)
self.statistics.set_thirst(2.2)
# gets tired
self.statistics.set_stamina(-1.5)