Exploring raycasters and possibly make a little "doom like" game based on it.
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/devices.json

69 lines
2.0 KiB

{
"STAIRS_DOWN": {
"id": "STAIRS_DOWN",
"name": "Stairs Down",
"placement": "fixed",
"description": "Stairs that go down further into the dungeon.",
"inventory_count": 0,
"randomized": false,
"components": [
{"_type": "Tile", "display": "\u2ac5",
"foreground": [24, 205, 189],
"background": [24, 205, 189]
},
{"_type": "Device",
"config": {"test": true},
"events": ["Events::GUI::STAIRS_DOWN"]},
4 weeks ago
{"_type": "Sprite", "name": "well_down"}
]
},
"STAIRS_UP": {
"id": "STAIRS_UP",
"name": "Rope Up",
"description": "A old rope, covered in vines, going up for the weak.",
"inventory_count": 0,
"placement": "fixed",
"components": [
{"_type": "Tile", "display": "\u2259",
"foreground": [24, 205, 189],
"background": [24, 205, 189]
},
{"_type": "Device",
"config": {"test": true},
"events": ["Events::GUI::STAIRS_UP"]},
{"_type": "Sprite", "name": "rope_vines_up"}
]
},
"TRIPEWIRE_TRAP": {
"id": "TRIPEWIRE_TRAP",
"name": "Tripwire Trap",
"description": "Watch where you're going.",
"inventory_count": 0,
"components": [
{"_type": "Tile", "display": "\u1ac7",
"foreground": [24, 205, 189],
"background": [24, 205, 189]
},
{"_type": "Device",
"config": {"test": true},
"events": ["Events::GUI::TRAP"]},
{"_type": "Sprite", "name": "tripwire_trap"}
]
},
"GRAVE_STONE": {
"id": "GRAVE_STONE",
"name": "Grave Stone",
"description": "Something died here. Was this your doing?",
"inventory_count": 0,
"components": [
{"_type": "Tile", "display": "\u21ef",
"foreground": [32, 123, 164],
"background": [24, 205, 189]
},
{"_type": "LightSource", "strength": 50, "radius": 0.5},
{"_type": "Device", "config": {"test": true}, "events": []},
{"_type": "Sprite", "name": "grave_stone"}
]
}
}