Files
bordervillegame/objectConfig.json
T
2026-08-22 08:40:29 +02:00

49 lines
845 B
JSON

{
"tree": {
"name": "Baum",
"color": "#0b8a1f",
"width": 32,
"height": 48,
"collision": true
},
"house_small": {
"name": "Kleines Haus",
"color": "#8a4b0b",
"width": 64,
"height": 64,
"collision": true
},
"rock": {
"name": "Fels",
"color": "#777777",
"width": 32,
"height": 32,
"collision": true
},
"flower": {
"name": "Blume",
"color": "#ff00ff",
"width": 16,
"height": 16,
"collision": false
},
"crate": {
"name": "Kiste",
"color": "#8b5a2b",
"width": 32,
"height": 32,
"collision": true,
"interactive": true,
"action": "house_storage"
},
"exit": {
"name": "Ausgang",
"color": "#555555",
"width": 32,
"height": 16,
"collision": false,
"interactive": true,
"action": "house_exit"
}
}