Walls of lava

Add "walls of lava", basically lava which blocks vision and
require a bit more than just levitation or flight to move through.

No levels use this yet, as testing isn't thorough enough.
This commit is contained in:
Pasi Kallinen
2023-02-06 19:23:39 +02:00
parent b85fb2a197
commit 7401b44fa1
17 changed files with 338 additions and 289 deletions

View File

@@ -57,24 +57,25 @@ enum levl_typ_types {
WATER = 18,
DRAWBRIDGE_UP = 19,
LAVAPOOL = 20,
IRONBARS = 21, /* KMH */
DOOR = 22,
CORR = 23,
ROOM = 24,
STAIRS = 25,
LADDER = 26,
FOUNTAIN = 27,
THRONE = 28,
SINK = 29,
GRAVE = 30,
ALTAR = 31,
ICE = 32,
DRAWBRIDGE_DOWN = 33,
AIR = 34,
CLOUD = 35,
LAVAWALL = 21,
IRONBARS = 22, /* KMH */
DOOR = 23,
CORR = 24,
ROOM = 25,
STAIRS = 26,
LADDER = 27,
FOUNTAIN = 28,
THRONE = 29,
SINK = 30,
GRAVE = 31,
ALTAR = 32,
ICE = 33,
DRAWBRIDGE_DOWN = 34,
AIR = 35,
CLOUD = 36,
MAX_TYPE = 36,
MATCH_WALL = 37,
MAX_TYPE = 37,
MATCH_WALL = 38,
INVALID_TYPE = 127
};