diff --git a/prototypes/248k_techs.lua b/prototypes/248k_techs.lua index 974cb3a..6f7f09c 100644 --- a/prototypes/248k_techs.lua +++ b/prototypes/248k_techs.lua @@ -1466,6 +1466,28 @@ data:extend({ time = 30, }, }, + { + name = 'fi_ceramic_tech', + type = 'technology', + icon = sprite('fi_ceramic_tech.png'), + icon_size = 128, + prerequisites = {'fi_crusher_tech'}, + effects = { + { + type = 'unlock-recipe', + recipe = 'fi_ceramic_recipe', + } + }, + unit = { + count = '200', + ingredients = { + {'chemical-science-pack',1}, + {'automation-science-pack',1}, + {'logistic-science-pack',1,}, + }, + time = 30, + }, + }, --fi crystal { name = 'fi_crystal_tech', diff --git a/prototypes/fi_recipes.lua b/prototypes/fi_recipes.lua index f2c9dc1..b271037 100644 --- a/prototypes/fi_recipes.lua +++ b/prototypes/fi_recipes.lua @@ -1381,4 +1381,19 @@ data:extend({ energy_required = 10, always_show_made_in = true, }, + { + name = 'fi_ceramic_recipe', + type = 'recipe', + enabled = 'false', + category = 'crafting-with-fluid', + ingredients = { + {type="fluid", name="steam", amount=45}, + {type="item", name="fi_crushed_stone_item", amount=3}, + }, + results = { + {type="item", name="el_materials_ceramic", amount=2}, + }, + energy_required = 1, + order = 'a-b', + }, }) \ No newline at end of file diff --git a/ressources/techs/fi_ceramic_tech.png b/ressources/techs/fi_ceramic_tech.png new file mode 100644 index 0000000..4b74311 Binary files /dev/null and b/ressources/techs/fi_ceramic_tech.png differ