From e104fce96994da30b04275fda26d659fdf4b3c3d Mon Sep 17 00:00:00 2001 From: John Candlebury Date: Fri, 6 Mar 2020 04:29:57 -0600 Subject: [PATCH] Aftershock Crafting System (#37707) --- data/mods/Aftershock/crafting_system.md | 67 ++++++++++++++++ .../items/crafting_scrap/abstract_scrap.json | 49 ++++++++++++ .../items/crafting_scrap/circuity_scrap.json | 42 ++++++++++ .../crafting_scrap/energy_storage_scrap.json | 42 ++++++++++ .../items/crafting_scrap/magnet_scrap.json | 26 ++++++ .../items/crafting_scrap/material_scrap.json | 42 ++++++++++ .../items/crafting_scrap/neural_io_scrap.json | 42 ++++++++++ data/mods/Aftershock/items/grenades.json | 24 ++++++ data/mods/Aftershock/items/item_groups.json | 18 +++++ data/mods/Aftershock/items/items.json | 2 +- data/mods/Aftershock/items/tool_quality.json | 5 ++ data/mods/Aftershock/items/tools.json | 8 ++ .../Aftershock/recipes/bionic_recipes.json | 80 ++++++++++--------- .../deconstruction/bionic_deconstruction.json | 18 +++++ data/mods/Aftershock/recipes/grenades.json | 15 ++++ 15 files changed, 441 insertions(+), 39 deletions(-) create mode 100644 data/mods/Aftershock/crafting_system.md create mode 100644 data/mods/Aftershock/items/crafting_scrap/abstract_scrap.json create mode 100644 data/mods/Aftershock/items/crafting_scrap/circuity_scrap.json create mode 100644 data/mods/Aftershock/items/crafting_scrap/energy_storage_scrap.json create mode 100644 data/mods/Aftershock/items/crafting_scrap/magnet_scrap.json create mode 100644 data/mods/Aftershock/items/crafting_scrap/material_scrap.json create mode 100644 data/mods/Aftershock/items/crafting_scrap/neural_io_scrap.json create mode 100644 data/mods/Aftershock/items/grenades.json create mode 100644 data/mods/Aftershock/recipes/deconstruction/bionic_deconstruction.json create mode 100644 data/mods/Aftershock/recipes/grenades.json diff --git a/data/mods/Aftershock/crafting_system.md b/data/mods/Aftershock/crafting_system.md new file mode 100644 index 0000000000000..84a2d111fb110 --- /dev/null +++ b/data/mods/Aftershock/crafting_system.md @@ -0,0 +1,67 @@ +# Scrap Crafting System + +## Overview + +As one of its main goals, Aftershock allows the crafting of miscellaneous, highly technological devices that have no actual basis in reality. To make the crafting of these devices more balanced an intuitive, and to make adding more recipes and items easier, aftershock utilizes a crafting a system in which abstracted pieces of increasingly rare scrap are used to craft increasingly useful tools. + + +### Current Scrap Categories + +The following table lists the currently planned/implemented scrap categories and their tiers. + +| Category | Tier 1 | Tier 2 | Tier 3 | Tier 4 | Tier 5 | +| ----------------- | -------------------- | ------------------------ | -------------------------- | ------------------------- | ------------------------------------ | +| `Circuitry` | scrap photonics | photonic circuitry | photonic computation core | hypergeometric photonics | acausal logic permutator | +| `Energy Storage` | Nanowire battery | ultracapacitor | Ultracapacitor array | Superconductive Coil | zero-point energy extractor | +| `Material` | Composite Superalloy | vacuum cast Carbide | Nanoprinted Alloys | crystal forged neutrite | phase-uneven matter | +| `Cloth` | E-textile | monofilament silk | graphene weave | woven metamaterial | | +| `Magnet` | Emag | cryo electromagnet | super conductive emag | ferrofluid dynamo | | +| `Optics ` | | Laser Optics | Phased Array Optics | Nano-optics | | +| `Neural I/O` | peripheral electrode | neural electrode | Brain implant prod | Synthetic Neural Tissue | neurosynaptic interface matrix | +| `Biomaterial` | monomeric slurry | micellular growth medium | artificial muscle fibers | self healing polymers | autologous totipotent tissue culture | + +Note that more categories can be added, and that it inst necessary for a category to encompass the five tiers, although its better if they do. + +## Scrap Tiers Briefly Explained + +### Tier 1 + +Tier 1 scrap is plentiful, and can be easily found even when you aren't specifically looking for it. It might be dropped by defeating common enemies, or by disassembling common household objects. Ideally Tier 1 scrap is mostly used as a filler component in more advanced recipes. Things that might be crafted using only this tier of scrap must be single-use and not very effective, and should see little use outside of the early game.For example + +- Makeshift ammunition of all kinds, that might risk damaging your gun. +- Weak grenades with very limited range. + +### Tier 2 + +Tier 2 scrap remains common, but requires some measure of effort to acquire. Perhaps it spawns only in certain locations or requires specialized tools and skills to extract. This scrap might be used to craft disposable tools and weapons or to make decent quality ammunition and explosives. For example: + +- Bulky, makeshift version of an UPS with very limited charge capacity. +- A rail gun/laser that works only for a limited number of shots before melting. +- A grenade that emits a low range electric field. + +### Tier 3 + +Much like tier 2 above, this type of scrap is common, but is only meant to spawn in locations that might prove dangerous to a mid-game characters. Additionally, it should always need tools and skills to extract. Tier 3 scrap might be used to craft basic rechargeable tools, mid-quality weapons and exotic ammunition and grenades. For example: + +- UPS +- Non relaodable charge packs for Laser Weapons +- Shoddy laser Rifle + +### Tier 4 + +This tier of scrap is properly uncommon, it spawns should be limited to the 'boss rooms' of mid-game and to end-game dungeons, and should prove challenging to acquire. It might be used to craft tools that provide great convenience in the non combat aspects of the game, single use items that grant very powerful abilities and good quality weapons. For Example + +- Most utility bionics. +- Laser Weapons. +- Atomic tools. +- Singe use invisibility cloak. + +### Tier 5 + +Very rare loot occasionally dropped by endgame threats and dungeons, extracting it requires very high skills and specialized tools. Thematically linked to the dimensional technology that caused the cataclysm. Might be used to craft items that severely and permanently alter the combat aspects of gameplay. For example: + +- Hologram Cloak Mk. II +- Rechargeable Spell Casters +- CBMs that interact with space-time +- Most combat bionics. + diff --git a/data/mods/Aftershock/items/crafting_scrap/abstract_scrap.json b/data/mods/Aftershock/items/crafting_scrap/abstract_scrap.json new file mode 100644 index 0000000000000..b529cda9d6512 --- /dev/null +++ b/data/mods/Aftershock/items/crafting_scrap/abstract_scrap.json @@ -0,0 +1,49 @@ +[ + { + "abstract": "afs_scrap_1", + "type": "GENERIC", + "category": "spare_parts", + "name": "ur-scrap", + "description": "A small techno doodad.", + "looks_like": "e_scrap", + "price": 500, + "price_postapoc": 1000, + "weight": "250 g", + "volume": "50 ml", + "to_hit": -3, + "symbol": "*", + "color": "light_gray" + }, + { + "type": "GENERIC", + "abstract": "afs_scrap_2", + "name": "ur-scrap", + "copy-from": "afs_scrap_1", + "price": 5000, + "price_postapoc": 10000 + }, + { + "type": "GENERIC", + "abstract": "afs_scrap_3", + "name": "ur-scrap", + "copy-from": "afs_scrap_1", + "price": 5000, + "price_postapoc": 50000 + }, + { + "type": "GENERIC", + "abstract": "afs_scrap_4", + "name": "ur-scrap", + "copy-from": "afs_scrap_1", + "price": 50000, + "price_postapoc": 100000 + }, + { + "type": "GENERIC", + "abstract": "afs_scrap_5", + "name": "ur-scrap", + "copy-from": "afs_scrap_1", + "price": 500000, + "price_postapoc": 1000000 + } +] diff --git a/data/mods/Aftershock/items/crafting_scrap/circuity_scrap.json b/data/mods/Aftershock/items/crafting_scrap/circuity_scrap.json new file mode 100644 index 0000000000000..648f8deda18f1 --- /dev/null +++ b/data/mods/Aftershock/items/crafting_scrap/circuity_scrap.json @@ -0,0 +1,42 @@ +[ + { + "type": "GENERIC", + "id": "afs_circuitry_1", + "copy-from": "afs_scrap_1", + "name": "scrap photonics", + "description": "Small circuits blue and gold, transmitting signals through light.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_circuitry_2", + "copy-from": "afs_scrap_2", + "name": "photonic circuitry", + "description": "A resplendent golden grid inlaid on dark blue substrate.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_circuitry_3", + "copy-from": "afs_scrap_3", + "name": "photonic computation core", + "description": "A monolithic circuit shaped as a glowing cube of crystal.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_circuitry_4", + "copy-from": "afs_scrap_4", + "name": "hypergeometric photonics", + "description": "In your hands lies a self-contained digital universe. Its programs glowing like stars fixed on computational shells infinitely layered.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_circuitry_5", + "copy-from": "afs_scrap_5", + "name": "acausal logic permutator", + "description": "It has given you an answer, but you are yet to ask anything.", + "looks_like": "scrap" + } +] diff --git a/data/mods/Aftershock/items/crafting_scrap/energy_storage_scrap.json b/data/mods/Aftershock/items/crafting_scrap/energy_storage_scrap.json new file mode 100644 index 0000000000000..110562c24db93 --- /dev/null +++ b/data/mods/Aftershock/items/crafting_scrap/energy_storage_scrap.json @@ -0,0 +1,42 @@ +[ + { + "type": "GENERIC", + "id": "afs_energy_storage_1", + "copy-from": "afs_scrap_1", + "name": "nanowire battery", + "description": "A small battery component with a very high energy density.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_energy_storage_2", + "copy-from": "afs_scrap_2", + "name": "ultracapacitor", + "description": "A capacitor made from exotic compounds, capable of storing a high amount of electric charge.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_energy_storage_3", + "copy-from": "afs_scrap_3", + "name": "ultracapacitor array", + "description": "Ultracapacitors assembled into a finely tunned energy storage array.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_energy_storage_4", + "copy-from": "afs_scrap_4", + "name": "superconductive coil", + "description": "Superconductive wire warped upon itself manipulates the electromagnetic spectrum to store vast amounts of power.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_energy_storage_5", + "copy-from": "afs_scrap_5", + "name": "zero-point energy extractor", + "description": "A complex grid pins space-time to the surface of the multiversal hyper-torus, allowing the energies within to leak into our sliver of existence.", + "looks_like": "scrap" + } +] diff --git a/data/mods/Aftershock/items/crafting_scrap/magnet_scrap.json b/data/mods/Aftershock/items/crafting_scrap/magnet_scrap.json new file mode 100644 index 0000000000000..64fa59e99bcf3 --- /dev/null +++ b/data/mods/Aftershock/items/crafting_scrap/magnet_scrap.json @@ -0,0 +1,26 @@ +[ + { + "type": "GENERIC", + "id": "afs_magnet_1", + "copy-from": "afs_scrap_1", + "name": "high quality electromagnet", + "description": "A sturdy, industrially crafted electromagnet.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_magnet_2", + "copy-from": "afs_scrap_2", + "name": "cryo electromagnet", + "description": "A powerful super conductive electromagnet, that must be kept at very low temperatures to operate.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_magnet_3", + "copy-from": "afs_scrap_3", + "name": "super conductive electromagnet", + "description": "A powerful electromagnet made from a room temperature superconductor .", + "looks_like": "scrap" + } +] diff --git a/data/mods/Aftershock/items/crafting_scrap/material_scrap.json b/data/mods/Aftershock/items/crafting_scrap/material_scrap.json new file mode 100644 index 0000000000000..ef49f59636b74 --- /dev/null +++ b/data/mods/Aftershock/items/crafting_scrap/material_scrap.json @@ -0,0 +1,42 @@ +[ + { + "type": "GENERIC", + "id": "afs_material_1", + "copy-from": "afs_scrap_1", + "name": "composite alloy", + "description": "Miscellaneous scrap pieces made from a composite alloy.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_material_2", + "copy-from": "afs_scrap_2", + "name": "vacuum cast carbide", + "description": "Malleable carbide cast by forges on high earth orbit.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_material_3", + "copy-from": "afs_scrap_1", + "name": "nanoprinted alloy", + "description": "A meta material fabricated by precisely layering different elements at an atomic scale.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_material_4", + "copy-from": "afs_scrap_4", + "name": "crystal forged neutrite", + "description": "Great forges within the Earth's core wrought hydrogen into flaming metal and poured it within lattices of super conductive lanthanum. Locked in magnetic equilibrium, it was left to cool into a dark unbreakable metal", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_material_5", + "copy-from": "afs_scrap_5", + "name": "phase uneven matter", + "description": "Matter condensed from the liminal spaces between dimmensions.", + "looks_like": "scrap" + } +] diff --git a/data/mods/Aftershock/items/crafting_scrap/neural_io_scrap.json b/data/mods/Aftershock/items/crafting_scrap/neural_io_scrap.json new file mode 100644 index 0000000000000..538390ee5dec5 --- /dev/null +++ b/data/mods/Aftershock/items/crafting_scrap/neural_io_scrap.json @@ -0,0 +1,42 @@ +[ + { + "type": "GENERIC", + "id": "afs_neural_io_1", + "copy-from": "afs_scrap_1", + "name": "peripheral electrode", + "description": "A thin strand of wire and a clamp, meant to be spliced into the smaller nerves of the human body.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_neural_io_2", + "copy-from": "afs_scrap_2", + "name": "neural electrode", + "description": "A small array of metallic needles allows complex communication between machine and human mind.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_neural_io_3", + "copy-from": "afs_scrap_3", + "name": "brain implant prod", + "description": "A complexly etched rod of metal interfaces with the corpus callosum of the patient, granting increased control of bionic functions.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_neural_io_4", + "copy-from": "afs_scrap_4", + "name": "artificial neural tissue", + "description": "Photonic axons process thought at speeds far surpassing primitive, chemical-driven communication.", + "looks_like": "scrap" + }, + { + "type": "GENERIC", + "id": "afs_neural_io_5", + "copy-from": "afs_scrap_5", + "name": "neurosynaptic interface matrix", + "description": "A membrane of artificial neurons envelops the cerebral cortex, melding machine and human intellect into a gestalt much greater than its individual parts.", + "looks_like": "scrap" + } +] diff --git a/data/mods/Aftershock/items/grenades.json b/data/mods/Aftershock/items/grenades.json new file mode 100644 index 0000000000000..b69bbb3af2764 --- /dev/null +++ b/data/mods/Aftershock/items/grenades.json @@ -0,0 +1,24 @@ +[ + { + "id": "afs_electroshock_grenade_1", + "type": "TOOL", + "copy-from": "grenade_canister", + "category": "weapons", + "looks_like": "grenade_emp", + "name": "electroshock grenade", + "description": "This is an electronic weapon that will emit a short ranged electric field. When activated, you'll have five turns before it starts doing so; throwing it before that would be a good idea.", + "countdown_action": { "menu_text": "Pull pin", "type": "transform", "target": "afs_electroshock_grenade_1_act" } + }, + { + "id": "afs_electroshock_grenade_1_act", + "type": "TOOL", + "copy-from": "afs_electroshock_grenade_1", + "looks_like": "grenade_emp_act", + "name": "armed electroshock grenade", + "description": "This electroshock grenade is currently creating a dangerous electric field.", + "emits": [ "emit_shock_cloud" ], + "countdown_interval": 20, + "countdown_action": { "type": "transform", "target": "null" }, + "flags": [ "TRADER_AVOID" ] + } +] diff --git a/data/mods/Aftershock/items/item_groups.json b/data/mods/Aftershock/items/item_groups.json index b18fd6cd6119d..74f51f2e177a3 100644 --- a/data/mods/Aftershock/items/item_groups.json +++ b/data/mods/Aftershock/items/item_groups.json @@ -78,6 +78,24 @@ [ "schematics_searchlight", 50 ] ] }, + { + "id": "science", + "//": "extension of vanilla itemgroup", + "type": "item_group", + "items": [ [ "bionic_maintenance_toolkit", 20 ] ] + }, + { + "id": "tools_medical", + "//": "extension of vanilla itemgroup", + "type": "item_group", + "items": [ [ "bionic_maintenance_toolkit", 20 ] ] + }, + { + "id": "surgery", + "//": "extension of vanilla itemgroup", + "type": "item_group", + "items": [ [ "bionic_maintenance_toolkit", 20 ] ] + }, { "id": "jewelry_accessories", "type": "item_group", diff --git a/data/mods/Aftershock/items/items.json b/data/mods/Aftershock/items/items.json index 0a4284cc68331..411ea74140d05 100644 --- a/data/mods/Aftershock/items/items.json +++ b/data/mods/Aftershock/items/items.json @@ -5,7 +5,7 @@ "type": "TOOL", "name": { "str": "precision solderers", "str_pl": "precision solderers" }, "flags": "TRADER_AVOID", - "qualities": [ [ "SAW_M_FINE", 1 ], [ "SCREW_FINE", 1 ], [ "CUT_FINE", 2 ] ] + "qualities": [ [ "SAW_M_FINE", 1 ], [ "SCREW_FINE", 1 ], [ "CUT_FINE", 2 ], [ "BIONIC_ASSEMBLY", 2 ] ] }, { "type": "GENERIC", diff --git a/data/mods/Aftershock/items/tool_quality.json b/data/mods/Aftershock/items/tool_quality.json index 646e2f5df34d6..2ed36b8777d4d 100644 --- a/data/mods/Aftershock/items/tool_quality.json +++ b/data/mods/Aftershock/items/tool_quality.json @@ -4,5 +4,10 @@ "id": "CHURN", "name": "churn", "//": "Delete this when you mainline Dairy products existing PR" + }, + { + "type": "tool_quality", + "id": "BIONIC_ASSEMBLY", + "name": "bionic assembly" } ] diff --git a/data/mods/Aftershock/items/tools.json b/data/mods/Aftershock/items/tools.json index e48ead4b0c5d5..f015e62b0e767 100644 --- a/data/mods/Aftershock/items/tools.json +++ b/data/mods/Aftershock/items/tools.json @@ -240,6 +240,14 @@ "covers": [ "LEG_EITHER" ], "flags": [ "WAIST", "FRAGILE", "OVERSIZE", "IS_UPS" ] }, + { + "id": "bionic_maintenance_toolkit", + "copy-from": "screwdriver_set", + "type": "TOOL", + "name": { "str": "bionic maintenance toolkit", "str_pl": "bionic maintenance toolkits" }, + "description": "A set of very small tools and encrypted digital keys normally used to repair bionic modules in clinical settings. They will allow you to disassemble simple bionics, but anything more complex would require even more specialized tools.", + "qualities": [ [ "BIONIC_ASSEMBLY", 1 ], [ "SAW_M_FINE", 1 ] ] + }, { "id": "afs_bionic_power_mod", "copy-from": "mod_battery", diff --git a/data/mods/Aftershock/recipes/bionic_recipes.json b/data/mods/Aftershock/recipes/bionic_recipes.json index e4ba280ffe77e..d684f316cd313 100644 --- a/data/mods/Aftershock/recipes/bionic_recipes.json +++ b/data/mods/Aftershock/recipes/bionic_recipes.json @@ -12,8 +12,7 @@ "decomp_learn": 5, "book_learn": [ [ "recipe_augs", 5 ], [ "recipe_lab_elec", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "SCREW_FINE", "level": 1 }, { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 6 ], [ "UPS_off", 1 ] ], [ [ "amplifier", 4 ] ], @@ -33,9 +32,8 @@ "reversible": true, "decomp_learn": 8, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], - "using": [ [ "soldering_standard", 32 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "using": [ [ "soldering_standard", 20 ] ], + "qualities": [ { "id": "SCREW_FINE", "level": 1 }, { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 10 ], [ "UPS_off", 2 ], [ "adv_UPS_off", 1 ] ], [ [ "amplifier", 6 ] ], @@ -56,8 +54,7 @@ "decomp_learn": 7, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "SCREW_FINE", "level": 1 }, { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 4 ] ], [ [ "amplifier", 2 ] ], [ [ "solar_cell", 4 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -73,8 +70,7 @@ "decomp_learn": 7, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "SCREW_FINE", "level": 1 }, { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 2 ] ], [ [ "amplifier", 2 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -106,8 +102,7 @@ "decomp_learn": 7, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "SCREW_FINE", "level": 1 }, { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 2 ] ], [ [ "hose", 1 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -123,8 +118,7 @@ "decomp_learn": 5, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "SCREW_FINE", "level": 1 }, { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 1 ] ], [ [ "amplifier", 1 ] ], [ [ "lens", 2 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -140,8 +134,7 @@ "decomp_learn": 7, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_mil_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 2 ] ], [ [ "element", 1 ] ], [ [ "hose", 1 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -155,10 +148,8 @@ "time": 50000, "reversible": true, "decomp_learn": 8, - "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_mil_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 2 ] ], [ [ "element", 4 ] ], @@ -180,8 +171,7 @@ "decomp_learn": 7, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_mil_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 2 ] ], [ [ "amplifier", 3 ] ], @@ -203,8 +193,7 @@ "decomp_learn": 6, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "mold_plastic", -1 ] ], [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "power_supply", 2 ] ], [ [ "syringe", 1 ] ], [ [ "plastic_chunk", 1 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -220,8 +209,7 @@ "decomp_learn": 7, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "spring", 4 ] ], [ [ "plastic_chunk", 3 ] ], @@ -243,8 +231,7 @@ "decomp_learn": 6, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "spring", 4 ] ], [ [ "afs_scrap_titanium", 4 ] ], [ [ "wire", 4 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -260,8 +247,7 @@ "decomp_learn": 6, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "glass_tinted", 4 ] ], [ [ "cable", 7 ] ], [ [ "wire", 2 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -277,8 +263,7 @@ "decomp_learn": 6, "book_learn": [ [ "recipe_lab_elec", 5 ], [ "recipe_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "glass_tinted", 4 ] ], [ [ "cable", 7 ] ], [ [ "wire", 2 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -293,9 +278,8 @@ "reversible": true, "decomp_learn": 9, "book_learn": [ [ "recipe_lab_elec", 6 ], [ "recipe_mil_augs", 6 ] ], - "using": [ [ "soldering_standard", 20 ], [ "welding_standard", 5 ] ], - "tools": [ [ [ "afs_solderers_item", -1 ], [ "toolset", -1 ] ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 }, { "id": "SAW_M_FINE", "level": 1 } ], + "using": [ [ "soldering_standard", 20 ] ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 2 } ], "components": [ [ [ "pipe", 1 ] ], [ [ "spring", 1 ] ], [ [ "plastic_chunk", 2 ] ], [ [ "nail", 1 ] ] ] }, { @@ -311,7 +295,12 @@ "decomp_learn": 5, "book_learn": [ [ "recipe_lab_elec", 6 ], [ "recipe_mil_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], + "qualities": [ + { "id": "HAMMER", "level": 3 }, + { "id": "SCREW", "level": 1 }, + { "id": "WRENCH", "level": 1 }, + { "id": "BIONIC_ASSEMBLY", "level": 2 } + ], "components": [ [ [ "alloy_sheet", 4 ], [ "alloy_plate", 1 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -327,7 +316,12 @@ "decomp_learn": 5, "book_learn": [ [ "recipe_lab_elec", 6 ], [ "recipe_mil_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], + "qualities": [ + { "id": "HAMMER", "level": 3 }, + { "id": "SCREW", "level": 1 }, + { "id": "WRENCH", "level": 1 }, + { "id": "BIONIC_ASSEMBLY", "level": 2 } + ], "components": [ [ [ "alloy_sheet", 4 ], [ "alloy_plate", 1 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -343,7 +337,12 @@ "decomp_learn": 5, "book_learn": [ [ "recipe_lab_elec", 6 ], [ "recipe_mil_augs", 5 ] ], "using": [ [ "soldering_standard", 20 ] ], - "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], + "qualities": [ + { "id": "HAMMER", "level": 3 }, + { "id": "SCREW", "level": 1 }, + { "id": "WRENCH", "level": 1 }, + { "id": "BIONIC_ASSEMBLY", "level": 2 } + ], "components": [ [ [ "alloy_sheet", 4 ], [ "alloy_plate", 1 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -359,7 +358,12 @@ "decomp_learn": 5, "book_learn": [ [ "recipe_lab_elec", 6 ], [ "recipe_mil_augs", 6 ] ], "using": [ [ "soldering_standard", 20 ] ], - "qualities": [ { "id": "HAMMER", "level": 3 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], + "qualities": [ + { "id": "HAMMER", "level": 3 }, + { "id": "SCREW", "level": 1 }, + { "id": "WRENCH", "level": 1 }, + { "id": "BIONIC_ASSEMBLY", "level": 2 } + ], "components": [ [ [ "alloy_sheet", 4 ], [ "alloy_plate", 1 ] ], [ [ "burnt_out_bionic", 1 ] ] ] }, { @@ -375,7 +379,7 @@ "decomp_learn": 7, "book_learn": [ [ "recipe_lab_elec", 4 ], [ "recipe_augs", 4 ] ], "using": [ [ "soldering_standard", 20 ] ], - "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 1 } ], "components": [ [ [ "scrap", 4 ] ], [ [ "element", 3 ] ], [ [ "cable", 10 ] ], [ [ "burnt_out_bionic", 1 ] ] ] } ] diff --git a/data/mods/Aftershock/recipes/deconstruction/bionic_deconstruction.json b/data/mods/Aftershock/recipes/deconstruction/bionic_deconstruction.json new file mode 100644 index 0000000000000..9b2cc4e0c1d3b --- /dev/null +++ b/data/mods/Aftershock/recipes/deconstruction/bionic_deconstruction.json @@ -0,0 +1,18 @@ +[ + { + "result": "burnt_out_bionic", + "type": "uncraft", + "skill_used": "electronics", + "difficulty": 7, + "time": "10 m", + "using": [ [ "soldering_standard", 10 ], [ "welding_standard", 10 ] ], + "qualities": [ { "id": "BIONIC_ASSEMBLY", "level": 1 } ], + "components": [ + [ [ "afs_circuitry_2", 1 ] ], + [ [ "afs_magnet_1", 2 ] ], + [ [ "afs_energy_storage_2", 1 ] ], + [ [ "afs_neural_io_1", 2 ] ], + [ [ "afs_material_1", 1 ] ] + ] + } +] diff --git a/data/mods/Aftershock/recipes/grenades.json b/data/mods/Aftershock/recipes/grenades.json new file mode 100644 index 0000000000000..c0004dd60a86e --- /dev/null +++ b/data/mods/Aftershock/recipes/grenades.json @@ -0,0 +1,15 @@ +[ + { + "result": "afs_electroshock_grenade_1", + "type": "recipe", + "category": "CC_ELECTRONIC", + "subcategory": "CSC_WEAPON_EXPLOSIVE", + "skill_used": "electronics", + "difficulty": 3, + "autolearn": true, + "time": "5 m", + "qualities": [ { "id": "SCREW_FINE", "level": 1 } ], + "using": [ [ "soldering_standard", 10 ] ], + "components": [ [ [ "afs_energy_storage_2", 1 ] ], [ [ "afs_material_1", 2 ] ] ] + } +]