surface_effect/craft.lua

19 lines
642 B
Lua
Raw Normal View History

minetest.register_craft({
output = 'surface_effect:dosimeter',
recipe = {
{'basic_materials:plastic_sheet', 'technic:chromium_ingot', ''},
{'technic:control_logic_unit', 'basic_materials:ic', ''},
{'technic:battery', 'technic:battery', ''},
}
})
if minetest.get_modpath("technic") and minetest.get_modpath("space_travel") then
technic.register_grinder_recipe({
input = {'space_travel:irradiated_space_cobble'},
output = {'technic:stone_dust'}
})
2025-01-03 11:09:04 +03:00
technic.register_grinder_recipe({
input = {'space_travel:space_cobble'},
output = {'technic:stone_dust'}
})
end