Bigrm-4 fix and variation
The "butterfly" shaped bigroom was missing the four fountains in the corners of the room - this was due to my copy-paste error when converting the bigrooms from des to lua. Also add some variation to the bigroom.
This commit is contained in:
@@ -14,10 +14,10 @@ des.map([[
|
||||
-|.............................|-------|.............................|-
|
||||
-|.................................................................|-
|
||||
-|...............................................................|-
|
||||
-|.............................................................|-
|
||||
-|...........................................................|-
|
||||
-|...........................................................|-
|
||||
-|.............................................................|-
|
||||
-|......LLLLL........................................LLLLL.....|-
|
||||
-|.....LLLLL........................................LLLLL....|-
|
||||
-|.....LLLLL........................................LLLLL....|-
|
||||
-|......LLLLL........................................LLLLL.....|-
|
||||
-|...............................................................|-
|
||||
-|.................................................................|-
|
||||
-|.............................|-------|.............................|-
|
||||
@@ -27,6 +27,18 @@ des.map([[
|
||||
----------- -----------
|
||||
]]);
|
||||
|
||||
local terrains = { ".", ".", ".", ".", "P", "L", "-", "T", "W", "Z" };
|
||||
local tidx = math.random(1, #terrains);
|
||||
local toterr = terrains[tidx];
|
||||
if (toterr ~= "L") then
|
||||
des.replace_terrain({ fromterrain = "L", toterrain = toterr });
|
||||
end
|
||||
|
||||
des.feature("fountain", 05,02);
|
||||
des.feature("fountain", 05,15);
|
||||
des.feature("fountain", 69,02);
|
||||
des.feature("fountain", 69,15);
|
||||
|
||||
des.region(selection.area(01,01,73,16), "lit");
|
||||
|
||||
des.stair("up");
|
||||
|
||||
Reference in New Issue
Block a user