From 1c8b21bf2cbcd04bf94b9d2a76b38c221a0c2e6b Mon Sep 17 00:00:00 2001 From: Marcin Kostrzewski Date: Sat, 16 May 2020 16:23:49 +0200 Subject: [PATCH] Changed fatigue --- data/mapdata/mapEntities.json | 45 ----------------------------------- src/entities/Player.py | 4 ++-- 2 files changed, 2 insertions(+), 47 deletions(-) diff --git a/data/mapdata/mapEntities.json b/data/mapdata/mapEntities.json index be75d37..68e5399 100644 --- a/data/mapdata/mapEntities.json +++ b/data/mapdata/mapEntities.json @@ -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" : { diff --git a/src/entities/Player.py b/src/entities/Player.py index 1143b55..c243463 100644 --- a/src/entities/Player.py +++ b/src/entities/Player.py @@ -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)