Skip to content

Commit

Permalink
Merge pull request #74780 from PatrikLundell/farm_tiles
Browse files Browse the repository at this point in the history
Add roof to chicken coops
  • Loading branch information
Maleclypse authored Jun 26, 2024
2 parents b95288b + 8755aa3 commit 4d9cffb
Showing 1 changed file with 39 additions and 2 deletions.
41 changes: 39 additions & 2 deletions data/json/mapgen/farm_tiles.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,41 @@
"palettes": [ "farm_lots" ]
}
},
{
"type": "mapgen",
"method": "json",
"nested_mapgen_id": "coop_chicken_roof",
"object": {
"mapgensize": [ 24, 24 ],
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
"----------- ",
"-.........- ",
"-.........- ",
"-.........- ",
"-.........- ",
"-.........- ",
"-.........- ",
"----------- ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"palettes": [ "roof_palette" ]
}
},
{
"type": "mapgen",
"method": "json",
Expand Down Expand Up @@ -312,7 +347,8 @@
"palettes": [ "farm_lots" ],
"place_monster": [ { "monster": "mon_chicken", "x": [ 2, 21 ], "y": [ 1, 14 ], "repeat": [ 4, 10 ] } ],
"terrain": { "_": [ "t_region_groundcover", [ "t_region_soil", 3 ] ] },
"item": { "_": { "item": "birdfood", "chance": 1, "repeat": [ 1, 3 ] } }
"item": { "_": { "item": "birdfood", "chance": 1, "repeat": [ 1, 3 ] } },
"place_nested": [ { "chunks": [ "coop_chicken_roof" ], "x": 0, "y": 0, "z": 1 } ]
}
},
{
Expand Down Expand Up @@ -354,7 +390,8 @@
"remove_all": { "c": { }, "C": { }, "|": { } },
"place_monster": [ { "monster": "mon_chicken", "x": [ 2, 21 ], "y": [ 1, 14 ], "repeat": [ 4, 10 ] } ],
"terrain": { "_": [ "t_region_groundcover", [ "t_region_soil", 3 ] ] },
"item": { "_": { "item": "birdfood", "chance": 1, "repeat": [ 1, 3 ] } }
"item": { "_": { "item": "birdfood", "chance": 1, "repeat": [ 1, 3 ] } },
"place_nested": [ { "chunks": [ "coop_chicken_roof" ], "x": 0, "y": 0, "z": 1 } ]
}
},
{
Expand Down

0 comments on commit 4d9cffb

Please sign in to comment.