SomeNet
/
public repos
/
factorio
/
Waterbomb.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added mod settings + tweaked explosion
[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"})