Skip to content
This repository has been archived by the owner on May 5, 2021. It is now read-only.

Commit

Permalink
- Added a few new experimental shape rules inspired by 6.x.
Browse files Browse the repository at this point in the history
  • Loading branch information
GTD-Carthage committed Jul 29, 2019
1 parent 31099e6 commit 13f0a42
Showing 1 changed file with 51 additions and 3 deletions.
54 changes: 51 additions & 3 deletions src/scripts/shapes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5300,7 +5300,7 @@ SMOOTHER_CATWALK_EDGES =

GROW_36_DOUBLE_AREA =
{
prob = 50
prob = 35

structure =
{
Expand All @@ -5317,7 +5317,7 @@ GROW_36_DOUBLE_AREA =

GROW_36_SINGLE_AREA =
{
prob = 50
prob = 35

structure =
{
Expand All @@ -5334,7 +5334,7 @@ GROW_36_SINGLE_AREA =

GROW_36_TRIPLE_AREA =
{
prob = 35
prob = 25

structure =
{
Expand All @@ -5351,6 +5351,54 @@ GROW_36_TRIPLE_AREA =
}
}

GROW_36_DOUBLE_FORWARD_AREA =
{
prob = 30

structure =
{
"..xxxx..","AAxxxxAA"
"........","AA1111AA"
"x......x","x111111x"
"x......x","x111111x"
"x......x","x111111x"
"xxx11xxx","xxx11xxx"
}
}

GROW_36_QUAD_FORWARD_AREA =
{
prob = 25

structure =
{
"..xxxx..","AAxxxxAA"
"........","AA1111AA"
"x......x","x111111x"
"x......x","x111111x"
"x......x","x111111x"
"x......x","x111111x"
"........","AA1111AA"
"........","AA1111AA"
"xxx11xxx","xxx11xxx"
}
}

GROW_36_SINGLE_FORWARD_AREA =
{
prob = 35

structure =
{
"x....x","xAAAAx"
"......","1AAAA1"
"......","111111"
"......","111111"
"......","111111"
"xx11xx","xx11xx"
}
}

-- MSSP's rooms shaped like English alphabet letters. [LETTERS]

GROW_DIAGONAL_STALK =
Expand Down

0 comments on commit 13f0a42

Please sign in to comment.