0.0.4
This commit is contained in:
55
prototypes/recipe.lua
Normal file
55
prototypes/recipe.lua
Normal file
@@ -0,0 +1,55 @@
|
||||
data:extend({
|
||||
|
||||
{
|
||||
type = "recipe",
|
||||
name = "mu-u235_1_20",
|
||||
category = "centrifuging",
|
||||
icon = "__more-u235_50_50__/graphics/processing.png",
|
||||
icon_size = 128,
|
||||
enabled = false,
|
||||
energy_required = 30,
|
||||
ingredients =
|
||||
{
|
||||
{type = "item", name = "uranium-ore", amount = 20},
|
||||
},
|
||||
results =
|
||||
{
|
||||
{type = "item", name = "uranium-235", amount = 1},
|
||||
{type = "item", name = "uranium-238", amount = 19},
|
||||
},
|
||||
},{
|
||||
type = "recipe",
|
||||
name = "mu-dufc",
|
||||
category = "centrifuging",
|
||||
icon = "__more-u235_50_50__/graphics/recycle_ico.png",
|
||||
icon_size = 128,
|
||||
enabled = false,
|
||||
energy_required = 30,
|
||||
ingredients =
|
||||
{
|
||||
{type = "item", name = "depleted-uranium-fuel-cell", amount = 10},
|
||||
},
|
||||
results =
|
||||
{
|
||||
{type = "item", name = "uranium-238", amount = 10},
|
||||
},
|
||||
},{
|
||||
type = "recipe",
|
||||
name = "mu-dufc",
|
||||
category = "centrifuging",
|
||||
icon = "__more-u235_50_50__/graphics/recycle_ico.png",
|
||||
icon_size = 128,
|
||||
enabled = false,
|
||||
energy_required = 30,
|
||||
ingredients =
|
||||
{
|
||||
{type = "item", name = "uranium-235", amount = 1},
|
||||
{type = "item", name = "uranium-238", amount = 59},
|
||||
},
|
||||
results =
|
||||
{
|
||||
{type = "item", name = "uranium-238", amount = 38},
|
||||
{type = "item", name = "uranium-235", amount = 2}
|
||||
},
|
||||
}
|
||||
})
|
||||
53
prototypes/technology.lua
Normal file
53
prototypes/technology.lua
Normal file
@@ -0,0 +1,53 @@
|
||||
data:extend({
|
||||
{
|
||||
type = "technology",
|
||||
name = "mu-u235",
|
||||
icon_size = 256,
|
||||
icon = "__more-u235_50_50__/graphics/processing.png",
|
||||
effects =
|
||||
{
|
||||
{
|
||||
type = "unlock-recipe",
|
||||
recipe = "mu-u235_1_20"
|
||||
},
|
||||
},
|
||||
prerequisites = {"uranium-processing"},
|
||||
unit =
|
||||
{
|
||||
count = 200,
|
||||
ingredients =
|
||||
{
|
||||
{"automation-science-pack", 1},
|
||||
{"logistic-science-pack", 1},
|
||||
{"chemical-science-pack", 1},
|
||||
{"production-science-pack", 1}
|
||||
},
|
||||
time = 40,
|
||||
}
|
||||
},{
|
||||
type = "technology",
|
||||
name = "mu-dufc",
|
||||
icon_size = 128,
|
||||
icon = "__more-u235_50_50__/graphics/recycle_ico.png",
|
||||
effects =
|
||||
{
|
||||
{
|
||||
type = "unlock-recipe",
|
||||
recipe = "mu-dufc"
|
||||
},
|
||||
},
|
||||
prerequisites = {"nuclear-fuel-reprocessing"},
|
||||
unit =
|
||||
{
|
||||
count = 50,
|
||||
ingredients =
|
||||
{
|
||||
{"automation-science-pack", 1},
|
||||
{"logistic-science-pack", 1},
|
||||
{"chemical-science-pack", 1},
|
||||
{"production-science-pack", 1}
|
||||
},
|
||||
time = 40,
|
||||
}
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user