Skip to content

Commit

Permalink
New shape rules, in the shape of... fan blades.
Browse files Browse the repository at this point in the history
  • Loading branch information
GTD-Carthage committed Sep 2, 2024
1 parent c19e746 commit c2b7d0b
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/zdoom_otex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ OTEX_THEME_RESTRICTIONS =

BRCK = {"hell", "urban"},
BOOK = {"hell", "urban"},

WOOD = {"hell", "urban"},

SOIL = {"hell", "urban"},
ROCK = {"hell"},
SAND = {"hell"},
Expand Down
52 changes: 52 additions & 0 deletions scripts/shapes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16418,6 +16418,58 @@ GROW_PLUS_SINGLE_STAIR_OPPOSITE_DOUBLE =
}
},

GROW_FANBLADE =
{
prob = 20,
skip_prob = 85,

structure =
{
"xxxx11xxx","xxxx11xxx",
"xxxx...xx","xxxx111xx",
"xxxx...xx","xxxx111xx",
"...x...xx","11%x11/xx",
".........","111111111",
".........","111111111",
"xxx..x...","xxx11x%11",
"xx...xxxx","xx/11xxxx",
"xx...xxxx","xx111xxxx",
"xx...xxxx","xx111xxxx"
},

diagonals =
{
"1.","1.",
".1",".1"
}
},

GROW_FANBLADE_NEWAREA =
{
prob = 17,
skip_prob = 85,

structure =
{
"xxxx11xxx","xxxx11xxx",
"xxxx...xx","xxxx111xx",
"xxxx...xx","xxxx111xx",
"...x...xx","AA%x11/xx",
".........","AAA111AAA",
".........","AAA111AAA",
"xxx..x...","xxxAAx%AA",
"xx...xxxx","xx/AAxxxx",
"xx...xxxx","xxAAAxxxx",
"xx...xxxx","xxAAAxxxx"
},

diagonals =
{
"A.","1.",
".A",".A"
}
},

-- Compound grow rules with auxiliaries

GROW_SPIRAL_STAIR_SMALL =
Expand Down

0 comments on commit c2b7d0b

Please sign in to comment.