2024-07-31 10:20:36 +03:00
|
|
|
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', ''},
|
|
|
|
}
|
2025-01-02 12:49:44 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
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'}
|
|
|
|
})
|
|
|
|
end
|