create prototypes dir

This commit is contained in:
Brevven 2020-09-16 00:04:01 -07:00
parent 56a5131a86
commit ec4997bc53
3 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,59 @@
-- Silica
data:extend(
{
{
type = "recipe",
name = "silica",
category = "smelting",
normal =
{
enabled = false,
energy_required = 3.2,
ingredients = {{"stone-brick", 1}},
result = "silica",
result_count = 5
},
expensive =
{
enabled = false,
energy_required = 6.4,
ingredients = {{"stone-brick", 2}},
result = "silica",
result_count = 5
},
},
{
type = "item",
name = "silica",
icon = "__bzsilicon__/graphics/icons/silica.png",
icon_size = 64,
subgroup = "raw-material",
order = "b[silica]",
stack_size = 100
},
{
type = "technology",
name = "silica-processing",
icon_size = 128,
icon = "__bzsilicon__/graphics/icons/silica-processing.png",
effects =
{
{
type = "unlock-recipe",
recipe = "silica"
}
},
unit =
{
count = 10,
ingredients =
{
{"automation-science-pack", 1},
},
time = 30
},
order = "b-b"
},
}
)

View file

@ -0,0 +1,61 @@
-- Silicon
data:extend(
{
{
type = "recipe",
name = "silicon",
category = "smelting",
normal =
{
enabled = false,
energy_required = 3.2,
ingredients = {{"silica", 10}},
result = "silicon",
result_count = 1
},
expensive =
{
enabled = false,
energy_required = 3.2,
ingredients = {{"silica", 10}},
result = "silicon",
result_count = 1
},
},
{
type = "item",
name = "silicon",
icon = "__bzsilicon__/graphics/icons/silicon.png",
icon_size = 64,
subgroup = "raw-material",
order = "b[silica]",
stack_size = 100
},
{
type = "technology",
name = "silicon-processing",
icon_size = 128,
icon = "__bzsilicon__/graphics/icons/silicon-processing.png",
effects =
{
{
type = "unlock-recipe",
recipe = "silicon"
}
},
unit =
{
count = 100,
ingredients =
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
},
time = 30
},
prerequisites = {"silica-processing"},
order = "b-b"
},
}
)