From 40d30460d37b953429b5721d3fb21cb6da5d8e18 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 31 Mar 2026 00:44:24 +0200 Subject: [PATCH] new wall types --- rogueviz/ru/globals.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rogueviz/ru/globals.cpp b/rogueviz/ru/globals.cpp index 6f63edac..a4e8d23b 100644 --- a/rogueviz/ru/globals.cpp +++ b/rogueviz/ru/globals.cpp @@ -59,7 +59,8 @@ enum eWall { wAir, wWall, wBouncy, wSpike, wWater, wFrozen, wDoor, wSmashedDoor, wLockedDoor, wFountain, wBluePortal, wOrangePortal, wPlatform, wStaircase, wColumn, wForge, wWoodWall, wShopDoor, wSecretPassage, wSign, wWallSign, wTimeDoor, - wBottomSpike, wRogueWallHidden, wRogueWall, wRightSlope, wLeftSlope, wLeftSlopedRoof, wRightSlopedRoof, wGUARD }; + wBottomSpike, wRogueWallHidden, wRogueWall, wRightSlope, wLeftSlope, wLeftSlopedRoof, wRightSlopedRoof, + wWeakWall, wStrangeSign, wGUARD }; flagtype W_BLOCK = 1; flagtype W_TRANS = 2; @@ -105,6 +106,8 @@ ruwall walls[qwall] = { {"left slope", "\\", 0xFFFFFFFF, W_STABLE | W_SLOPE, "Slope here."}, {"left sloped roof", "/", 0xC0C0C0FF, W_BLOCK, "Sloped roof."}, {"right sloped roof", "\\", 0xC0C0C0FF, W_BLOCK, "Sloped roof."}, + {"weak wall", "#", 0xC08080FF, W_BLOCK | W_STABLE, "These walls are quite weak, and can be destroyed with a weapon powerful enough, for example, an axe."}, + {"strange sign", "X", 0x90909080, W_TRANS, "A strange sign is drawn in the background."}, }; int sel = 1;