DSZI_Survival/data/mapdata/mapEntities.json
2020-04-06 00:07:13 +02:00

63 lines
868 B
JSON

[
{
"name" : "berry",
"position" : {
"x": 5,
"y": 5
},
"isPickupable" : true,
"effect" : {
"hp" : -10,
"stamina" : 5,
"thirst" : 0,
"hunger" : 20
}
},
{
"name" : "cranberry",
"position" : {
"x": 7,
"y": 1
},
"isPickupable" : true,
"effect" : {
"hp" : 0,
"stamina" : 5,
"thirst" : 2,
"hunger" : 10
}
},
{
"name" : "rabbit",
"position" : {
"x": 12,
"y": 16
},
"isPickupable" : true,
"effect" : {
"hp": 30,
"stamina": -5,
"thirst": -5,
"hunger": 40
}
},
{
"name" : "bush",
"position" : {
"x": 15,
"y": 9
},
"isPickupable" : false
},
{
"name" : "rock",
"position" : {
"x": 13,
"y": 1
},
"isPickupable" : false
}
]