Erster Commit

This commit is contained in:
2026-08-22 08:40:29 +02:00
commit 875477d425
1961 changed files with 930336 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
{
"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"
}
}