diff --git a/data/images/entities/rock.jpg b/data/images/entities/rock.jpg new file mode 100644 index 0000000..01a4d5a Binary files /dev/null and b/data/images/entities/rock.jpg differ diff --git a/data/mapdata/mapEntities.json b/data/mapdata/mapEntities.json index cc221d2..ca37741 100644 --- a/data/mapdata/mapEntities.json +++ b/data/mapdata/mapEntities.json @@ -26,5 +26,19 @@ "thirst" : 2, "hunger" : 10 } + }, + { + "name" : "rock", + "position" : { + "x": 13, + "y": 1 + }, + "isPickupable" : false, + "effect" : { + "hp" : 0, + "stamina" : 0, + "thirst" : 0, + "hunger" : 0 + } } ] \ No newline at end of file diff --git a/src/entities/Player.py b/src/entities/Player.py index f654149..f7732f7 100644 --- a/src/entities/Player.py +++ b/src/entities/Player.py @@ -30,6 +30,7 @@ class Player(Entity): if self.rotation == Rotations.NORTH: return (0, -1) elif self.rotation == Rotations.SOUTH: + pass # Returns given statistic def getStatistic(self, stat):