surface_effect/craft.lua
Osmium 8348d37e25 master (#1)
Некоторые изменения крафта гравия.

Reviewed-on: #1
Co-authored-by: Osmium <ogaranin120@gmail.com>
Co-committed-by: Osmium <ogaranin120@gmail.com>
2025-01-03 16:01:07 +03:00

23 lines
766 B
Lua

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'}
})
technic.register_grinder_recipe({
input = {'space_travel:space_cobble'},
output = {'space_travel:space_gravel'}
})
minetest.register_recipe({
input={'space_travel:space_gravel'},
output={'default:gravel'}
})
end