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.
Merge remote-tracking branch 'origin/master' into play_2021
* origin/master: (23 commits) No sentinel for closest_enemy_to_friendly_distance (CleverRaven#50037) Base NPC auto-eating on hunger, not stored kCal (CleverRaven#49494) More agressive skipping of duplicate workflows (CleverRaven#50042) Update Tilesets 21-07-19 (CleverRaven#50041) Make apply_light_arc() use castLight() (CleverRaven#49183) Butchering use best tool in crafting radius (CleverRaven#48930) fix complaints (CleverRaven#50036) Vehicle plates recipe rework (CleverRaven#49947) Fix zombie grabs and bites (CleverRaven#49948) Refactor the json files relative to the three rigs among Aftershock and BlazeIndustries (CleverRaven#49977) Changed Humvee jerrycans to use JP8 fuel lab nested chunks 2 (CleverRaven#49991) Lab nests 1 (CleverRaven#49990) Move ACT_READ from activity_handler to activity_actor (CleverRaven#46304) Sunlight angle (CleverRaven#48090) Mention checks in PR template Translate monster death function messages Avoid extra zombie revives from one corpse modular lab parking lot vehicles: helicopters do not have 100% load in idle() ...
- Loading branch information
Showing
104 changed files
with
18,073 additions
and
12,469 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
82 changes: 82 additions & 0 deletions
82
data/json/mapgen/lab/lab_modular/lab_nests_modular/lab_nested_cargo.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,82 @@ | ||
[ | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"//": "A nested map for lab cargo areas. Includes cold fields.", | ||
"nested_mapgen_id": "lab_cargo_5x5", | ||
"object": { | ||
"mapgensize": [ 5, 5 ], | ||
"rotation": [ 0, 3 ], | ||
"rows": [ | ||
" ", | ||
" ", | ||
" ^ ", | ||
" ", | ||
" " | ||
], | ||
"palettes": [ "lab_common_palette" ], | ||
"furniture": { "^": [ [ "f_vent_cold_air2_stream", 30 ], [ "f_vent_cold_air2_stream", 30 ] ] }, | ||
"place_nested": [ { "chunks": [ [ "null", 50 ], [ "surface_sub_f_crate", 50 ] ], "x": [ 0, 4 ], "y": [ 0, 4 ], "repeat": [ 2, 10 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"//": "A nested map for lab cargo research areas. Includes hot fields.", | ||
"nested_mapgen_id": "lab_cargo_5x5", | ||
"object": { | ||
"mapgensize": [ 5, 5 ], | ||
"rotation": [ 0, 3 ], | ||
"rows": [ | ||
" ", | ||
" ", | ||
" ^ ", | ||
" ", | ||
" " | ||
], | ||
"palettes": [ "lab_common_palette" ], | ||
"furniture": { "^": [ [ "f_vent_hot_air2_blast", 30 ], [ "f_vent_hot_air2_stream", 30 ] ] }, | ||
"place_nested": [ { "chunks": [ [ "null", 50 ], [ "surface_sub_f_crate", 50 ] ], "x": [ 0, 4 ], "y": [ 0, 4 ], "repeat": [ 2, 10 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"//": "A nested map for lab cargo research areas.", | ||
"nested_mapgen_id": "lab_cargo_5x5", | ||
"object": { | ||
"mapgensize": [ 5, 5 ], | ||
"rotation": [ 0, 3 ], | ||
"rows": [ | ||
" ", | ||
" ", | ||
" ^ ", | ||
" ", | ||
" " | ||
], | ||
"palettes": [ "lab_common_palette" ], | ||
"place_nested": [ { "chunks": [ [ "null", 50 ], [ "surface_sub_f_crate", 50 ] ], "x": [ 0, 4 ], "y": [ 0, 4 ], "repeat": [ 2, 10 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"//": "A nested map for lab cargo research areas.", | ||
"nested_mapgen_id": "lab_cargo_5x5", | ||
"object": { | ||
"mapgensize": [ 5, 5 ], | ||
"rotation": [ 0, 3 ], | ||
"rows": [ | ||
" z ", | ||
" ", | ||
" ^ ", | ||
" z ", | ||
" " | ||
], | ||
"palettes": [ "lab_common_palette" ], | ||
"place_monster": [ { "monster": "mon_zombie_static", "x": 2, "y": 2 } ], | ||
"items": { "z": { "item": "batteries", "chance": 100 } }, | ||
"place_nested": [ { "chunks": [ [ "null", 50 ], [ "surface_sub_f_crate", 50 ] ], "x": [ 0, 4 ], "y": [ 0, 4 ], "repeat": [ 1, 3 ] } ] | ||
} | ||
} | ||
] |
Oops, something went wrong.