Skip to content

Commit

Permalink
(Aegis) enormous oil wells
Browse files Browse the repository at this point in the history
  • Loading branch information
ahyangyi committed Oct 26, 2023
1 parent b10fbe6 commit 9fec094
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 22 deletions.
5 changes: 3 additions & 2 deletions industry/industries/oil_wells/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import grf
from industry.lib.industry import AIndustry, SplitDefinition, transcribe, symmetrize
from .huge import huge_set
from .enormous import enormous_set
from .enormous import enormous_set
from .large import large_set
from .medium import medium_set

Expand Down Expand Up @@ -36,7 +37,7 @@
layouts=SplitDefinition(
9,
{
0: transcribe(huge_set, tile_map),
0: transcribe(enormous_set, tile_map),
1: transcribe(huge_set, tile_map),
2: transcribe(large_set, tile_map),
3: transcribe(medium_set, tile_map),
Expand Down
23 changes: 23 additions & 0 deletions industry/industries/oil_wells/enormous.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from industry.lib.industry import symmetrize


enormous_set = symmetrize(
[
(
" x x ",
" x x ",
"x x ",
"x x x ",
" xx x ",
" x x ",
" x x x ",
" x x ",
"xx xxxx ",
" x ",
" x x ",
" xx xx ",
" x ",
" xxx",
),
]
)
26 changes: 14 additions & 12 deletions industry/industries/oil_wells/huge.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,22 @@
huge_set = symmetrize(
[
(
"x ",
" x ",
"x x ",
"x x ",
" x x ",
" xx",
"x ",
" x ",
"x x ",
" ",
"x x ",
" x x ",
" xx",
),
(
" x ",
"x x ",
"x x x",
" x ",
" x ",
" xx ",
" x ",
"x x ",
"x x x",
" x ",
" x ",
" x ",
" x ",
),
]
)
18 changes: 10 additions & 8 deletions industry/industries/oil_wells/large.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@
large_set = symmetrize(
[
(
"x ",
"x ",
"xx ",
" xxx",
"x ",
"x ",
"x ",
" x ",
" xxx",
),
(
"xx ",
"x xx",
" x ",
" x ",
" x ",
"x x",
" x ",
" x ",
" xx ",
),
]
)

0 comments on commit 9fec094

Please sign in to comment.