22 lines
834 B
Lua
22 lines
834 B
Lua
local S = minetest.get_translator("surface_effect")
|
|
|
|
minetest.register_node("surface_effect:radioactive_earth", {
|
|
description = S("Irradiated Earth"),
|
|
tiles = {
|
|
"surface_effect_radioactive_earth_up.png",
|
|
"surface_effect_radioactive_eartha_front.png",
|
|
"surface_effect_radioactive_eartha_front.png",
|
|
"surface_effect_radioactive_eartha_front.png",
|
|
"surface_effect_radioactive_eartha_front.png",
|
|
"surface_effect_radioactive_eartha_front.png",
|
|
},
|
|
groups = {crumbly = 3, soil = 1, spreading_dirt_type = 1},
|
|
sounds = default.node_sound_dirt_defaults({
|
|
footstep = {name = "default_grass_footstep", gain = 0.25},
|
|
}),
|
|
})
|
|
|
|
minetest.register_tool("surface_effect:dosimeter", {
|
|
description = S("Dosimeter"),
|
|
inventory_image = "surface_effect_dosimeter.png"
|
|
}) |