26 lines
959 B
Lua
26 lines
959 B
Lua
|
|
minetest.register_node("elepower_nuclear:machine_block", {
|
|
description = "Radiation-shielded Lead Machine Chassis\nContains dangerous ionizing radiation",
|
|
tiles = {
|
|
"elenuclear_machine_top.png", "elepower_lead_block.png", "elenuclear_machine_block.png",
|
|
"elenuclear_machine_block.png", "elenuclear_machine_block.png", "elenuclear_machine_block.png",
|
|
},
|
|
groups = {cracky = 3},
|
|
})
|
|
|
|
minetest.register_node("elepower_nuclear:stone_with_uranium", {
|
|
description = "Uranium Ore",
|
|
tiles = {"default_stone.png^elenuclear_mineral_uranium.png"},
|
|
groups = {cracky = 2},
|
|
drop = 'elepower_nuclear:uranium_lump',
|
|
sounds = default.node_sound_stone_defaults(),
|
|
})
|
|
|
|
minetest.register_node("elepower_nuclear:fusion_coil", {
|
|
description = "Fusion Reactor Coil",
|
|
tiles = {"elenuclear_fusion_coil_top.png", "elenuclear_fusion_coil_top.png", "elenuclear_fusion_coil_side.png"},
|
|
groups = {cracky = 2},
|
|
})
|
|
|
|
dofile(elenuclear.modpath.."/machines/init.lua")
|