23 lines
769 B
Lua
23 lines
769 B
Lua
local Recipe = require("__cf-lib__/data/Recipe")
|
|
|
|
if not mods["planet-muluna"] then return end
|
|
|
|
Recipe:new({
|
|
type = "recipe",
|
|
name = "sand-from-crushed-stone",
|
|
icons = CrushingIndustry.make_crushing_icons("stone-crushed"),
|
|
category = "basic-crushing-or-hand-crafting",
|
|
enabled = false,
|
|
allow_productivity = true,
|
|
auto_recycle = false,
|
|
energy_required = 0.96,
|
|
ingredients = { { type = "item", name = "stone-crushed", amount = 1 } },
|
|
results = {
|
|
{ type = "item", name = "sand", amount = 1, extra_count_fraction = 0.5 },
|
|
CrushingIndustry.make_crushing_byproduct("stone-crushed"),
|
|
},
|
|
main_product = "sand",
|
|
hide_from_signal_gui = false
|
|
})
|
|
:unlockedByTechnology("muluna-regolith-digging")
|
|
:apply()
|