From 90906ed05a0d2ea5ece2b6337801aa8a47c68425 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Thu, 16 Mar 2023 12:30:45 +0200 Subject: [PATCH] Hellfill: Pillars of lava or water --- dat/hellfill.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/dat/hellfill.lua b/dat/hellfill.lua index 94d96c707..ac2161450 100644 --- a/dat/hellfill.lua +++ b/dat/hellfill.lua @@ -234,6 +234,23 @@ BBBBBBB]], contents = function() des.monster("L",04,04) end }) end, + function () + local mapstr = percent(30) and [[ +..... +.LLL. +.LZL. +.LLL. +.....]] or [[ +..... +.PPP. +.PWP. +.PPP. +.....]]; + for dx = 1, 5 do + des.map({ x = dx*14 - 4, y = math.random(3, 15), + map = mapstr, contents = function() end }) + end + end, }; function rnd_hell_prefab(coldhell)