]> git.somenet.org - factorio/Waterbomb.git/blob - prototypes/recipes.lua
RELEASE 1.1.3 - Version-Bump. No functional changes. (I am still alive :)
[factorio/Waterbomb.git] / prototypes / recipes.lua
1 data:extend({
2     {
3         type = "recipe",
4         name = "waterbomb",
5         energy_required = 5,
6         enabled = "false",
7         category = "crafting-with-fluid",
8         ingredients =
9         {
10             {"steel-plate", 32},
11             {"electric-engine-unit", 4},
12             {"processing-unit", 1},
13             {type="fluid", name="water", amount=32},
14             {"explosives", 24},
15         },
16         result = "waterbomb"
17     }
18 })
19
20 table.insert(data.raw["technology"]["explosives"].effects, {type = "unlock-recipe",recipe = "waterbomb"})