Skip to content

Commit

Permalink
Add mutagen crafting components to underground lab (#34384)
Browse files Browse the repository at this point in the history
* Add tools_science item group to a few racks

* Change loot spawns to be on benches

* Remove science tools from cleaning rack
  • Loading branch information
zachary-kaelan authored and ZhilkinSerg committed Oct 21, 2019
1 parent 330984b commit 7787bc0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
7 changes: 6 additions & 1 deletion data/json/mapgen/lab/lab_common.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@
"id": "lab_loot_research",
"mapping": {
"c": {
"items": [ { "item": "dissection", "chance": 10 }, { "item": "chem_lab", "chance": 10 }, { "item": "mut_lab", "chance": 2 } ]
"items": [
{ "item": "tools_science", "chance": 10 },
{ "item": "dissection", "chance": 10 },
{ "item": "chem_lab", "chance": 10 },
{ "item": "mut_lab", "chance": 2 }
]
},
"S": { "items": [ { "item": "drugs_heal_simple", "chance": 10 }, { "item": "harddrugs", "chance": 5 } ] },
"X": {
Expand Down
12 changes: 8 additions & 4 deletions data/json/mapgen/lab/lab_floorplans.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
"=": "t_conveyor",
"%": "t_machinery_heavy"
},
"mapping": { "c": { "items": [ { "item": "chem_lab", "chance": 20 } ] } },
"mapping": { "c": { "items": [ { "item": "chem_lab", "chance": 20 }, { "item": "tools_science", "chance": 20 } ] } },
"place_nested": [
{ "chunks": [ "lab_spawn_9x9_wall_sw" ], "x": 13, "y": 1 },
{ "chunks": [ "sub_t_concrete_wall" ], "x": 13, "y": 10 },
Expand Down Expand Up @@ -261,7 +261,7 @@
"C": "t_centrifuge"
},
"mapping": {
"c": { "items": [ { "item": "chem_lab", "chance": 10 } ] },
"c": { "items": [ { "item": "chem_lab", "chance": 10 }, { "item": "tools_science", "chance": 10 } ] },
"r": { "items": [ { "item": "cleaning", "chance": 30 } ] }
},
"place_nested": [
Expand Down Expand Up @@ -486,7 +486,7 @@
]
},
"r": { "items": [ { "item": "mine_equipment", "chance": 30 } ] },
"c": { "items": [ { "item": "chem_lab", "chance": 30 } ] }
"c": { "items": [ { "item": "chem_lab", "chance": 30 }, { "item": "tools_science", "chance": 30 } ] }
},
"place_monster": [ { "monster": "mon_turret_rifle", "x": 11, "y": 9, "chance": 20 } ],
"place_nested": [
Expand Down Expand Up @@ -547,6 +547,7 @@
"r": {
"items": [
{ "item": "dissection", "chance": 60 },
{ "item": "tools_science", "chance": 20 },
{ "item": "bionics_common", "chance": 10 },
{ "item": "mut_lab", "chance": 5 }
]
Expand Down Expand Up @@ -683,7 +684,10 @@
],
"palettes": [ "lab_palette" ],
"terrain": { "C": "t_centrifuge", "7": "t_console", ",": "t_floor_blue" },
"mapping": { "c": { "items": [ { "item": "office", "chance": 30 } ] }, "l": { "items": [ { "item": "science", "chance": 60 } ] } },
"mapping": {
"c": { "items": [ { "item": "office", "chance": 30 }, { "item": "tools_science", "chance": 15 } ] },
"l": { "items": [ { "item": "science", "chance": 60 } ] }
},
"computers": {
"6": {
"name": "Containment Control",
Expand Down

0 comments on commit 7787bc0

Please sign in to comment.