A retro style homage to 80s dungeon crawlers hand crafted in C++.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
raycaster/assets/tiles.json

74 lines
1.7 KiB

{
"floor_tile": {
"texture": "assets/textures/floor_gray_stone.png",
"collision": false,
"display": 8284,
"ceiling": "ceiling_black",
"light": 0,
"foreground": [40, 40, 40],
"id": 0
},
"wall_plain": {
"texture": "assets/textures/wall_plain.png",
"collision": true,
"display": 9608,
"light": 0,
"foreground": [100, 100, 100],
"background": [10, 10, 10],
"id": 1
},
"wall_moss": {
"texture": "assets/textures/glowing_moss_wall.png",
"collision": true,
"display": 9256,
"light": 20,
"background": [100, 100, 180],
"foreground": [100, 150, 100],
"id": 2
},
"ceiling_black": {
"texture": "assets/textures/ceiling_black.png",
"collision": false,
"display": 35,
"light": 0,
"foreground": [100, 100, 100],
"id": 4
},
"lava_floor": {
"texture": "assets/textures/lava_floor.png",
"collision": false,
"display": 10899,
"ceiling": "ceiling_black",
"light": 20,
"foreground": [200, 100, 100],
"background": [100, 100, 50],
"id": 5
},
"gray_stone_floor_light": {
"texture": "assets/textures/gray_stone_floor_light.png",
"collision": false,
"display": 11590,
"ceiling": "zceiling_blue_light",
"light": 40,
"background": [80, 80, 80],
"foreground": [40, 60, 180],
"id": 6
},
"wood_wall": {
"texture": "assets/textures/wood_wall.png",
"collision": false,
"display": 10747,
"light": 0,
"foreground": [70, 70, 70],
"background": [100, 100, 100],
"id": 8
},
"zceiling_blue_light": {
"texture": "assets/textures/ceiling_blue_light.png",
"collision": false,
"display": 8285,
"light": 0,
"foreground": [100, 100, 100],
"id": 7
}
}