-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdowngrading.lua
40 lines (37 loc) · 1 KB
/
downgrading.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
bobmods.lib.tech.add_recipe_unlock("tungsten-alloy-processing", "downgrade-tungsten-carbide-to-steel")
bobmods.lib.tech.add_recipe_unlock("angels-titanium-smelting-1", "downgrade-titanium-to-steel")
data:extend(
{
{
type = "recipe",
name = "downgrade-tungsten-carbide-to-steel",
subgroup = "angels-tungsten-casting",
order = "k[tungsten-carbide]-y",
enabled = true,
ingredients =
{
{type = "item", name = "tungsten-carbide", amount = 1},
},
energy_required = 0.1, -- crafting time
results =
{
{type = "item", name = "steel-plate", amount = 1},
},
},
{
type = "recipe",
name = "downgrade-titantium-to-steel",
subgroup = "angels-titanium-casting",
order = "j[angels-plate-titanium]-y",
enabled = true,
ingredients =
{
{type = "item", name = "angels-plate-titanium", amount = 1},
},
energy_required = 0.1, -- crafting time
results =
{
{type = "item", name = "steel-plate", amount = 1},
},
},
})