First hack to get a random gen map going.

This commit is contained in:
Zed A. Shaw 2025-01-30 13:23:12 -05:00
parent 2daa1c9bd5
commit 56d67aba28
7 changed files with 72 additions and 34 deletions

View file

@ -1,20 +1,30 @@
{
"WALL_TILE": {
"foreground": [230, 20, 30],
"background": [230, 20, 120],
"collision": true,
"display": "\ua5b8"
},
"FLOOR_TILE": {
"id": "0",
"foreground": [40, 15, 125],
"background": [200, 15, 75],
"collision": false,
"display":"\u289e"
},
"CEILING_TILE": {
"foreground": [159, 164, 15],
"background": [199, 15, 79],
"WALL_PLAIN": {
"id": 1,
"foreground": [230, 20, 30],
"background": [230, 20, 120],
"collision": true,
"display":"\u2274"
"display": "\ua5b8"
},
"WALL_VINES": {
"id": 2,
"foreground": [40, 15, 125],
"background": [200, 29, 75],
"collision": false,
"display":"\u19f0"
},
"WALL_PILLAR": {
"id": 3,
"foreground": [40, 15, 125],
"background": [200, 29, 75],
"collision": false,
"display":"\u16de"
}
}