summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2021-06-14 01:54:31 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2021-06-14 01:54:31 -0700
commita11eff34884a7407217d58e4c4279c88bb3e786d (patch)
treee7bdbf1f87a152335934991303f248af3bacf1e4
parentClean up primer and gunpowder use in 40x46mm and 40x53mm grenades. (diff)
downloadcataclysm-dda-mod_recipe-fixes-a11eff34884a7407217d58e4c4279c88bb3e786d.tar.xz
Reduce light turret crafting time to that of the medium turret
-rw-r--r--Readme.txt5
-rw-r--r--json/recipes/recipe_electronics.json38
2 files changed, 43 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index 0407245..20bc3ab 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -119,3 +119,8 @@ Use small pistol primer instead of large pistol primer.
---
40x53mm reloaded:
Can now use mixed gunpowder in addition to shotgun powder.
+
+---
+Light Turret:
+6h ->30m
+It took 12 times as long as the medium turret.
diff --git a/json/recipes/recipe_electronics.json b/json/recipes/recipe_electronics.json
new file mode 100644
index 0000000..a8d4600
--- /dev/null
+++ b/json/recipes/recipe_electronics.json
@@ -0,0 +1,38 @@
+[
+ {
+ "type": "recipe",
+ "result": "bot_turret_light",
+ "category": "CC_ELECTRONIC",
+ "subcategory": "CSC_ELECTRONIC_OTHER",
+ "skill_used": "electronics",
+ "skills_required": [ [ "mechanics", 6 ], [ "computer", 6 ], [ "fabrication", 6 ] ],
+ "difficulty": 7,
+ "time": "30 m",
+ "reversible": true,
+ "decomp_learn": 8,
+ "book_learn": [ [ "recipe_lab_elec", 7 ], [ "textbook_robots", 9 ] ],
+ "using": [ [ "steel_standard", 1 ], [ "welding_standard", 20 ], [ "soldering_standard", 14 ] ],
+ "qualities": [
+ { "id": "SCREW", "level": 1 },
+ { "id": "SCREW_FINE", "level": 1 },
+ { "id": "WRENCH", "level": 2 },
+ { "id": "WRENCH_FINE", "level": 1 },
+ { "id": "SAW_M", "level": 1 },
+ { "id": "SAW_M_FINE", "level": 1 }
+ ],
+ "components": [
+ [ [ "ai_module", 1 ] ],
+ [ [ "identification_module", 1 ] ],
+ [ [ "targeting_module", 1 ] ],
+ [ [ "gun_module", 1 ] ],
+ [ [ "camera", 1 ], [ "camera_pro", 1 ], [ "omnicamera", 1 ], [ "sensor_module", 1 ] ],
+ [ [ "small_storage_battery", 1 ] ],
+ [ [ "power_supply", 1 ] ],
+ [ [ "robot_controls", 1 ] ],
+ [ [ "ksub2000", 1 ] ],
+ [ [ "sheet_metal", 2 ] ],
+ [ [ "pipe", 4 ] ],
+ [ [ "spring", 2 ] ]
+ ]
+ }
+]