95 lines
2.4 KiB
Lua
95 lines
2.4 KiB
Lua
minetest.register_node("flexrealm:airlike", {
|
|
description = "FLR airlike",
|
|
drawtype = "airlike",
|
|
paramtype = "light",
|
|
sunlight_propagates = true,
|
|
walkable = false,
|
|
pointable = false,
|
|
diggable = false,
|
|
groups = {not_in_creative_inventory=1},
|
|
})
|
|
|
|
minetest.register_node("flexrealm:lean", {
|
|
description = "FLR LEAN",
|
|
drawtype = "airlike",
|
|
paramtype = "light",
|
|
light_source = 14,
|
|
sunlight_propagates = true,
|
|
walkable = false,
|
|
pointable = false,
|
|
buildable_to = true,
|
|
groups = {not_in_creative_inventory=1},
|
|
})
|
|
|
|
minetest.register_node("flexrealm:leanoff", {
|
|
description = "FLR LEAN Off",
|
|
drawtype = "airlike",
|
|
paramtype = "light",
|
|
light_source = 14,
|
|
sunlight_propagates = true,
|
|
walkable = false,
|
|
pointable = false,
|
|
buildable_to = true,
|
|
groups = {not_in_creative_inventory=1},
|
|
})
|
|
|
|
minetest.register_node("flexrealm:grass", {
|
|
description = "FLR Grass",
|
|
tiles = {"default_grass.png"},
|
|
groups = {crumbly=3,soil=1},
|
|
drop = "default:dirt",
|
|
sounds = default.node_sound_dirt_defaults({
|
|
footstep = {name="default_grass_footstep", gain=0.4},
|
|
}),
|
|
})
|
|
|
|
minetest.register_node("flexrealm:sand", {
|
|
description = "FLR Sand",
|
|
tiles = {"default_sand.png"},
|
|
groups = {crumbly=3, sand=1},
|
|
sounds = default.node_sound_sand_defaults(),
|
|
})
|
|
|
|
minetest.register_node("flexrealm:desand", {
|
|
description = "FLR Desert Sand",
|
|
tiles = {"default_desert_sand.png"},
|
|
groups = {crumbly=3, sand=1},
|
|
sounds = default.node_sound_sand_defaults(),
|
|
})
|
|
|
|
minetest.register_node("flexrealm:stone", {
|
|
description = "FLR Stone",
|
|
tiles = {"default_stone.png"},
|
|
groups = {cracky=3, stone=1},
|
|
drop = "default:cobble",
|
|
sounds = default.node_sound_stone_defaults(),
|
|
})
|
|
|
|
minetest.register_node("flexrealm:destone", {
|
|
description = "FLR Desert Stone",
|
|
tiles = {"default_desert_stone.png"},
|
|
groups = {cracky=3, stone=1},
|
|
drop = "default:desert_stone",
|
|
sounds = default.node_sound_stone_defaults(),
|
|
})
|
|
|
|
minetest.register_node("flexrealm:cloud", {
|
|
description = "FLR Cloud",
|
|
drawtype = "glasslike",
|
|
tiles = {"flexrealm_cloud.png"},
|
|
paramtype = "light",
|
|
sunlight_propagates = true,
|
|
walkable = false,
|
|
pointable = false,
|
|
diggable = false,
|
|
buildable_to = true,
|
|
post_effect_color = {a=23, r=241, g=248, b=255},
|
|
groups = {not_in_creative_inventory=1},
|
|
})
|
|
|
|
minetest.register_node("flexrealm:needles", {
|
|
description = "FLR Pine Needles",
|
|
tiles = {"flexrealm_needles.png"},
|
|
groups = {snappy=3, leafdecay=3},
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
}) |