minetest_hades/mods/farming_plus/birch.lua

60 lines
1.4 KiB
Lua

-- main `S` code in init.lua
local S
S = farming.S
minetest.register_node("farming_plus:birch_sapling", {
description = S("Birch Sapling"),
drawtype = "plantlike",
tiles = {"default_sapling_birch.png"},
inventory_image = "default_sapling_birch.png",
wield_image = "default_sapling_birch.png",
paramtype = "light",
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
},
groups = {dig_immediate=3,flammable=2, sapling=1},
sounds = default.node_sound_defaults(),
})
minetest.register_node("farming_plus:leaves_birch", {
description = S("Birch Leaves"),
drawtype = "allfaces_optional",
tiles = {"default_leaves_birch.png"},
paramtype = "light",
waving = 1,
is_ground_content = false,
groups = {snappy=3, leafdecay=3, flammable=2, not_in_creative_inventory=1, leaves=1},
drop = {
max_items = 1,
items = {
{
-- player will get sapling with 1/20 chance
items = {'farming_plus:birch_sapling'},
rarity = 30,
},
{
-- player will get leaves only if he get no saplings,
-- this is because max_items is 1
items = {'farming_plus:leaves_birch'},
}
}
},
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_abm({
nodenames = {"farming_plus:birch_sapling"},
interval = 60,
chance = 20,
action = function(pos, node)
farming:generate_birchtree(pos, "default:tree_birch", "farming_plus:leaves_birch", {"default:dirt", "default:dirt_with_grass"})
end
})