-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add nested chunks for residential front lawn features
- Loading branch information
1 parent
fbeb2ba
commit 5c5bfa7
Showing
2 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
[ | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"nested_mapgen_id": "NC_res_frontlawn_3X3", | ||
"//": "NEST CONTAINER - house spawns should call this chunk. Global spawn rates can be adjusted, and additional chunks can be added here, which will affect any house spawn that calls this nest container. These are scenes and decorations you might find on a residential front lawn", | ||
"object": { | ||
"mapgensize": [ 3, 3 ], | ||
"rows": [ | ||
"___", | ||
"___", | ||
"___" | ||
], | ||
"terrain": { "_": "t_null" }, | ||
"place_nested": [ { "chunks": [ [ "null", 5 ], [ "res_frontlawn_bbath", 5 ], [ "res_frontlawn_tree_stump", 5 ] ], "x": 0, "y": 0 } ] | ||
} | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"nested_mapgen_id": "res_frontlawn_bbath", | ||
"//": "birdbath with flowers", | ||
"object": { | ||
"mapgensize": [ 3, 3 ], | ||
"rows": [ | ||
"!!!", | ||
"!x!", | ||
"!!!" | ||
], | ||
"terrain": { "_": "t_null" }, | ||
"furniture": { "x": "f_birdbath", "!": "f_region_flower" } | ||
} | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"nested_mapgen_id": "res_frontlawn_tree_stump", | ||
"//": "tree or stump", | ||
"object": { | ||
"mapgensize": [ 3, 3 ], | ||
"rows": [ | ||
"___", | ||
"_x_", | ||
"___" | ||
], | ||
"terrain": { "_": "t_null", "x": [ "t_stump", "t_region_tree_fruit", "t_region_tree_nut", "t_region_tree_shade" ] } | ||
} | ||
} | ||
] |