diff --git a/items/generic/crafting/fu_hydrogen.item b/items/generic/crafting/fu_hydrogen.item index 3500299a8ab..6d48d255c2c 100644 --- a/items/generic/crafting/fu_hydrogen.item +++ b/items/generic/crafting/fu_hydrogen.item @@ -7,7 +7,7 @@ "description" : "Wonderful applications exist for this element.", "shortdescription" : "Hydrogen (H)", "radioMessagesOnPickup" : [ "pickupHydrogen" ], - "learnBlueprintsOnPickup" : [ "isn_flamethrower", "fu_hydrogenmetallic" ], + "learnBlueprintsOnPickup" : [ "isn_flamethrower", "fu_hydrogenmetallic", "fu_flameturret" ], "fuelAmount" : 20, "itemTags" : [ "reagent" ] } diff --git a/items/generic/crafting/titaniumbar.item.patch b/items/generic/crafting/titaniumbar.item.patch index f6741aeb2f2..ec4e1274571 100644 --- a/items/generic/crafting/titaniumbar.item.patch +++ b/items/generic/crafting/titaniumbar.item.patch @@ -10,6 +10,7 @@ "mantizitier3chest", "teslastaff1", "minirocketlauncher", + "fu_rocketturret", "kelpsteelhatchet", "spacefarerchest", "spacefarerhead", diff --git a/items/generic/crafting/tungstenbar.item.patch b/items/generic/crafting/tungstenbar.item.patch index 69aeb551c4b..06d18c331d5 100644 --- a/items/generic/crafting/tungstenbar.item.patch +++ b/items/generic/crafting/tungstenbar.item.patch @@ -4,23 +4,24 @@ "mantizitier2pants", "mantizitier2head", "mantizitier2chest", - "tungstenbow", - "hardenedsteelblade", - "genecabinet", - "genestorage", - "fusteelgirdirmaterial", - "microscope", - "retexironblock", - "labfence", - "isn_powersensor", - "isn_solarpanel", - "isn_hydroponicstray", - "isn_battery_t1", + "tungstenbow", + "hardenedsteelblade", + "genecabinet", + "genestorage", + "fusteelgirdirmaterial", + "microscope", + "retexironblock", + "labfence", + "isn_powersensor", + "isn_solarpanel", + "isn_hydroponicstray", + "isn_battery_t1", "fu_powersensorlarge", "isn_powersensor", "energyassault", "laspistol", "lasrifle", + "fu_laserturret", "bees_industrialcentrifuge", "honeyjarrer", "handhoe", diff --git a/recipes/ff_stations/fu_flameturret.recipe b/recipes/ff_stations/fu_flameturret.recipe new file mode 100644 index 00000000000..0f04da8513d --- /dev/null +++ b/recipes/ff_stations/fu_flameturret.recipe @@ -0,0 +1,11 @@ +{ + "input" : [ + { "item" : "standingturret", "count" : 1 }, + { "item" : "isn_flamethrower", "count" : 1 } + ], + "output" : { + "item" : "fu_flameturret", + "count" : 1 + }, + "groups" : [ "powerstation", "tool", "all" ] +} diff --git a/recipes/ff_stations/fu_laserturret.recipe b/recipes/ff_stations/fu_laserturret.recipe new file mode 100644 index 00000000000..5dd3fe8cd11 --- /dev/null +++ b/recipes/ff_stations/fu_laserturret.recipe @@ -0,0 +1,11 @@ +{ + "input" : [ + { "item" : "standingturret", "count" : 1 }, + { "item" : "lasrifle", "count" : 1 } + ], + "output" : { + "item" : "fu_laserturret", + "count" : 1 + }, + "groups" : [ "powerstation", "tool", "all" ] +} diff --git a/recipes/ff_stations/fu_rocketturret.recipe b/recipes/ff_stations/fu_rocketturret.recipe new file mode 100644 index 00000000000..5868fb30d53 --- /dev/null +++ b/recipes/ff_stations/fu_rocketturret.recipe @@ -0,0 +1,11 @@ +{ + "input" : [ + { "item" : "standingturret", "count" : 1 }, + { "item" : "minirocketlauncher", "count" : 1 } + ], + "output" : { + "item" : "fu_rocketturret", + "count" : 1 + }, + "groups" : [ "powerstation", "tool", "all" ] +}