forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DinoMod] predator nest improvements (CleverRaven#77638)
* Create map_extrasnest_pred_abandoned.json * Update map_extras.json * Update regional_overlay.json * add human skull to remains_human_generic item group * rename and more corpses * no chance in place_corpses * reformat items * remove x y * lint * reformat * Update nest_acrocanthosaurus.json * Update nest_albertosaurus.json * Update nest_allosaurus.json * Update nest_appalachiosaurus.json * Update nest_ceratosaurus.json * Update nest_coelophysis.json * Update nest_deinonychus.json * Update nest_dilophosaurus.json * Update nest_dromaeosaurus.json * Update nest_dryptosaurus.json * Update nest_gorgosaurus.json * Update nest_nanuqsaurus.json * Update nest_saurornitholestes.json * Update nest_siats.json * Update nest_stenonychosaurus.json * Update nest_tawa.json * Update nest_torvosaurus.json * Update nest_tyrannosaurus.json * Update nest_utahraptor.json * Update nest_velociraptor.json
- Loading branch information
Showing
24 changed files
with
113 additions
and
0 deletions.
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
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
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
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
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
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
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
60 changes: 60 additions & 0 deletions
60
data/mods/DinoMod/mapgen/map_extras/nest_pred_abandoned.json
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,60 @@ | ||
[ | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"update_mapgen_id": "mx_nest_pred_abandoned", | ||
"object": { | ||
"rows": [ | ||
" ", | ||
" t ", | ||
" t ", | ||
" ", | ||
" t t ", | ||
" t t---- ", | ||
" ----..-t ", | ||
" t t---..-..---t t ", | ||
" -.-..---..--t ", | ||
" ---.---.,---.- ", | ||
" t-.--.,--...-.-- ", | ||
" --...-.--.--. ", | ||
" -..-,-..-,-..-t t ", | ||
" t --....-.-..--- ", | ||
" t---.,.-.---..- ", | ||
" -.---.---..--- ", | ||
" t --.---..---t ", | ||
" t-....---t t ", | ||
" -----t ", | ||
" t ", | ||
" t ", | ||
" t ", | ||
" ", | ||
" t " | ||
], | ||
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ], | ||
"terrain": { | ||
"t": [ "t_region_tree", "t_region_groundcover_swamp" ], | ||
",": [ "t_pit_shallow" ], | ||
"-": [ "t_fern" ], | ||
".": [ "t_dirt" ] | ||
}, | ||
"items": { ".": { "item": "remains_human_generic", "repeat": [ 1, 3 ], "chance": 1 }, "-": { "item": "corpses", "chance": 1 } }, | ||
"place_corpses": [ { "group": "GROUP_SWAMP", "x": [ 4 ], "y": [ 6 ], "repeat": [ 1, 3 ] } ], | ||
"place_item": [ | ||
{ "item": "egg_dino_theropod", "x": 10, "y": 10, "amount": [ 3, 16 ] }, | ||
{ "item": "straw_pile", "x": 10, "y": 10, "amount": [ 1, 2 ] }, | ||
{ "item": "bone", "x": [ 4, 17 ], "y": [ 6, 15 ], "amount": [ 10, 20 ], "repeat": [ 1, 3 ], "chance": 40 }, | ||
{ "item": "meat", "x": [ 4, 17 ], "y": [ 6, 15 ], "amount": [ 10, 20 ], "repeat": [ 1, 3 ], "chance": 40 }, | ||
{ "item": "feather", "x": [ 4, 17 ], "y": [ 6, 15 ], "amount": [ 10, 20 ], "repeat": [ 1, 3 ], "chance": 40 }, | ||
{ | ||
"item": "down_feather", | ||
"x": [ 4, 17 ], | ||
"y": [ 6, 15 ], | ||
"amount": [ 5, 10 ], | ||
"repeat": [ 1, 3 ], | ||
"chance": 40 | ||
} | ||
], | ||
"place_items": [ { "item": "military", "x": [ 4, 17 ], "y": [ 6, 15 ], "repeat": [ 1, 3 ], "chance": 40 } ] | ||
} | ||
} | ||
] |
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
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
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
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
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