2021-04-12 15:28:28 +02:00
-- Tree nodes: Wood, Wooden Planks, Sapling, Leaves, Stripped Wood
2021-05-29 16:12:33 +02:00
local S = minetest.get_translator ( minetest.get_current_modname ( ) )
local mod_screwdriver = minetest.get_modpath ( " screwdriver " )
2017-07-07 16:37:05 +02:00
2019-12-14 23:42:17 +01:00
local on_rotate
if mod_screwdriver then
on_rotate = screwdriver.rotate_3way
end
2017-11-24 04:55:02 +01:00
-- Register tree trunk (wood) and bark
2021-06-15 19:33:04 +02:00
local function register_tree_trunk ( subname , description_trunk , description_bark , longdesc , tile_inner , tile_bark , stripped_variant )
2017-07-07 16:37:05 +02:00
minetest.register_node ( " mcl_core: " .. subname , {
2017-11-22 22:58:45 +01:00
description = description_trunk ,
2017-07-07 16:37:05 +02:00
_doc_items_longdesc = longdesc ,
_doc_items_hidden = false ,
2017-11-22 22:58:45 +01:00
tiles = { tile_inner , tile_inner , tile_bark } ,
2017-07-07 16:37:05 +02:00
paramtype2 = " facedir " ,
on_place = mcl_util.rotate_axis ,
stack_max = 64 ,
2020-04-18 23:24:42 +02:00
groups = { handy = 1 , axey = 1 , tree = 1 , flammable = 2 , building_block = 1 , material_wood = 1 , fire_encouragement = 5 , fire_flammability = 5 } ,
2017-07-07 16:37:05 +02:00
sounds = mcl_sounds.node_sound_wood_defaults ( ) ,
2019-12-14 23:42:17 +01:00
on_rotate = on_rotate ,
2020-04-15 13:27:29 +02:00
_mcl_blast_resistance = 2 ,
2017-07-07 16:37:05 +02:00
_mcl_hardness = 2 ,
2021-06-15 19:33:04 +02:00
_mcl_stripped_variant = stripped_variant ,
2017-07-07 16:37:05 +02:00
} )
2017-11-22 22:58:45 +01:00
minetest.register_node ( " mcl_core: " .. subname .. " _bark " , {
description = description_bark ,
2019-03-07 23:40:43 +01:00
_doc_items_longdesc = S ( " This is a decorative block surrounded by the bark of a tree trunk. " ) ,
2017-11-22 22:58:45 +01:00
tiles = { tile_bark } ,
paramtype2 = " facedir " ,
on_place = mcl_util.rotate_axis ,
stack_max = 64 ,
2020-04-18 23:24:42 +02:00
groups = { handy = 1 , axey = 1 , bark = 1 , flammable = 2 , building_block = 1 , material_wood = 1 , fire_encouragement = 5 , fire_flammability = 5 } ,
2017-11-22 22:58:45 +01:00
sounds = mcl_sounds.node_sound_wood_defaults ( ) ,
2018-01-31 19:36:27 +01:00
is_ground_content = false ,
2019-12-14 23:42:17 +01:00
on_rotate = on_rotate ,
2020-04-15 13:27:29 +02:00
_mcl_blast_resistance = 2 ,
2017-11-22 22:58:45 +01:00
_mcl_hardness = 2 ,
2021-06-15 19:33:04 +02:00
_mcl_stripped_variant = stripped_variant .. " _bark " ,
2017-11-22 22:58:45 +01:00
} )
2017-11-24 04:55:02 +01:00
minetest.register_craft ( {
output = " mcl_core: " .. subname .. " _bark 3 " ,
recipe = {
{ " mcl_core: " .. subname , " mcl_core: " .. subname } ,
{ " mcl_core: " .. subname , " mcl_core: " .. subname } ,
}
} )
2017-07-07 16:37:05 +02:00
end
2021-04-18 20:02:37 +02:00
-- Register stripped trunk and stripped wood
2021-06-18 21:30:20 +02:00
local function register_stripped_trunk ( subname , description_stripped_trunk , description_stripped_bark , longdesc , longdesc_wood , tile_stripped_inner , tile_stripped_bark )
2021-04-18 20:02:37 +02:00
minetest.register_node ( " mcl_core: " .. subname , {
description = description_stripped_trunk ,
_doc_items_longdesc = longdesc ,
_doc_items_hidden = false ,
tiles = { tile_stripped_inner , tile_stripped_inner , tile_stripped_bark } ,
paramtype2 = " facedir " ,
on_place = mcl_util.rotate_axis ,
stack_max = 64 ,
2021-06-18 21:30:20 +02:00
groups = { handy = 1 , axey = 1 , tree = 1 , flammable = 2 , building_block = 1 , material_wood = 1 , fire_encouragement = 5 , fire_flammability = 5 } ,
2021-04-18 20:02:37 +02:00
sounds = mcl_sounds.node_sound_wood_defaults ( ) ,
on_rotate = on_rotate ,
_mcl_blast_resistance = 2 ,
_mcl_hardness = 2 ,
} )
2021-04-12 15:28:28 +02:00
2021-04-18 20:02:37 +02:00
minetest.register_node ( " mcl_core: " .. subname .. " _bark " , {
description = description_stripped_bark ,
2021-06-18 21:30:20 +02:00
_doc_items_longdesc = longdesc_wood ,
2021-04-18 20:02:37 +02:00
tiles = { tile_stripped_bark } ,
paramtype2 = " facedir " ,
on_place = mcl_util.rotate_axis ,
stack_max = 64 ,
2021-06-18 21:30:20 +02:00
groups = { handy = 1 , axey = 1 , bark = 1 , flammable = 2 , building_block = 1 , material_wood = 1 , fire_encouragement = 5 , fire_flammability = 5 } ,
2021-04-18 20:02:37 +02:00
sounds = mcl_sounds.node_sound_wood_defaults ( ) ,
is_ground_content = false ,
on_rotate = on_rotate ,
_mcl_blast_resistance = 2 ,
_mcl_hardness = 2 ,
} )
2021-05-23 00:09:07 +02:00
2021-04-18 20:02:37 +02:00
minetest.register_craft ( {
output = " mcl_core: " .. subname .. " _bark 3 " ,
recipe = {
{ " mcl_core: " .. subname , " mcl_core: " .. subname } ,
{ " mcl_core: " .. subname , " mcl_core: " .. subname } ,
}
} )
end
2021-04-12 15:28:28 +02:00
2021-05-26 20:02:28 +02:00
local function register_wooden_planks ( subname , description , tiles )
2017-07-07 16:37:05 +02:00
minetest.register_node ( " mcl_core: " .. subname , {
description = description ,
_doc_items_longdesc = doc.sub . items.temp . build ,
_doc_items_hidden = false ,
tiles = tiles ,
stack_max = 64 ,
is_ground_content = false ,
2020-04-18 23:24:42 +02:00
groups = { handy = 1 , axey = 1 , flammable = 3 , wood = 1 , building_block = 1 , material_wood = 1 , fire_encouragement = 5 , fire_flammability = 20 } ,
2017-07-07 16:37:05 +02:00
sounds = mcl_sounds.node_sound_wood_defaults ( ) ,
2020-04-15 13:27:29 +02:00
_mcl_blast_resistance = 3 ,
2017-07-07 16:37:05 +02:00
_mcl_hardness = 2 ,
} )
end
2021-05-26 20:02:28 +02:00
local function register_leaves ( subname , description , longdesc , tiles , sapling , drop_apples , sapling_chances , leafdecay_distance )
2017-08-31 01:51:25 +02:00
if leafdecay_distance == nil then
leafdecay_distance = 4
end
2020-11-06 13:46:52 +01:00
local apple_chances = { 200 , 180 , 160 , 120 , 40 }
local stick_chances = { 50 , 45 , 30 , 35 , 10 }
2021-05-23 00:09:07 +02:00
2020-11-06 13:46:52 +01:00
local function get_drops ( fortune_level )
local drop = {
2017-07-07 16:37:05 +02:00
max_items = 1 ,
items = {
{
2020-11-06 13:46:52 +01:00
items = { sapling } ,
rarity = sapling_chances [ fortune_level + 1 ] or sapling_chances [ fortune_level ]
2017-07-07 16:37:05 +02:00
} ,
{
2020-11-06 13:46:52 +01:00
items = { " mcl_core:stick 1 " } ,
rarity = stick_chances [ fortune_level + 1 ]
2017-07-07 16:37:05 +02:00
} ,
{
2020-11-06 13:46:52 +01:00
items = { " mcl_core:stick 2 " } ,
rarity = stick_chances [ fortune_level + 1 ]
2017-07-07 16:37:05 +02:00
} ,
}
2020-11-06 13:46:52 +01:00
}
if drop_apples then
table.insert ( drop.items , {
items = { " mcl_core:apple " } ,
rarity = apple_chances [ fortune_level + 1 ]
} )
end
return drop
2017-07-07 16:37:05 +02:00
end
minetest.register_node ( " mcl_core: " .. subname , {
description = description ,
_doc_items_longdesc = longdesc ,
_doc_items_hidden = false ,
drawtype = " allfaces_optional " ,
2017-09-13 06:50:54 +02:00
waving = 2 ,
2017-07-07 16:37:05 +02:00
place_param2 = 1 , -- Prevent leafdecay for placed nodes
tiles = tiles ,
paramtype = " light " ,
stack_max = 64 ,
2021-04-12 15:09:48 +02:00
groups = {
Add `compostability` to node definition group.
* mcl_cake/init.lua (cake);
* mcl_core/craftitems.lua (apple);
* mcl_core/nodes_base.lua (dirt with grass);
* mcl_core/nodes_cactuscane.lua (cactus, sugarcane);
* mcl_core/nodes_climb.lua (vines);
* mcl_core/nodes_trees.lua (leaves, saplings);
* mcl_dye/init.lua (cocoa beans);
* mcl_farming/beetroot.lua (beetroot, & seeds);
* mcl_farming/carrots.lua (carrot);
* mcl_farming/melon.lua (melon, & slice, & seeds);
* mcl_farming/potatoes.lua (potato, baked potato);
* mcl_farming/pumpkin.lua (pumpkin, carved &, & seeds, & pie);
* mcl_farming/wheat.lua (wheat, cookie, bread, hay block);
* mcl_flowers/init.lua (flowers, ferns, grass, & tall variants);
* mcl_mushrooms/small.lua (red and brown mushrooms);
* mcl_mushrooms/huge.lua (red and brown huge mushrooms);
* mcl_nether/init.lua (nether wart block);
* mcl_nether/nether_wart.lua (nether wart);
* mcl_ocean/kelp.lua (kelp, dried &, & block);
* mcl_ocean/sea_pickle.lua (sea pickle);
* mcl_ocean/seagrass.lua (seagrass).
2022-03-29 12:54:51 +02:00
handy = 1 , hoey = 1 , shearsy = 1 , swordy = 1 , dig_by_piston = 1 ,
leaves = 1 , leafdecay = leafdecay_distance , deco_block = 1 ,
flammable = 2 , fire_encouragement = 30 , fire_flammability = 60 ,
compostability = 30
2021-04-12 15:09:48 +02:00
} ,
2020-11-06 13:46:52 +01:00
drop = get_drops ( 0 ) ,
2017-08-03 02:27:55 +02:00
_mcl_shears_drop = true ,
2017-07-07 16:37:05 +02:00
sounds = mcl_sounds.node_sound_leaves_defaults ( ) ,
2020-04-15 13:27:29 +02:00
_mcl_blast_resistance = 0.2 ,
2017-07-07 16:37:05 +02:00
_mcl_hardness = 0.2 ,
2020-11-02 19:09:23 +01:00
_mcl_silk_touch_drop = true ,
2020-11-06 13:46:52 +01:00
_mcl_fortune_drop = { get_drops ( 1 ) , get_drops ( 2 ) , get_drops ( 3 ) , get_drops ( 4 ) } ,
2017-07-07 16:37:05 +02:00
} )
end
2021-05-26 20:02:28 +02:00
local function register_sapling ( subname , description , longdesc , tt_help , texture , selbox )
2017-07-07 16:37:05 +02:00
minetest.register_node ( " mcl_core: " .. subname , {
description = description ,
2020-03-08 03:18:47 +01:00
_tt_help = tt_help ,
2017-07-07 16:37:05 +02:00
_doc_items_longdesc = longdesc ,
_doc_items_hidden = false ,
drawtype = " plantlike " ,
2017-09-13 06:50:54 +02:00
waving = 1 ,
2017-07-07 16:37:05 +02:00
visual_scale = 1.0 ,
tiles = { texture } ,
inventory_image = texture ,
wield_image = texture ,
paramtype = " light " ,
sunlight_propagates = true ,
walkable = false ,
selection_box = {
type = " fixed " ,
fixed = selbox
} ,
stack_max = 64 ,
Add `compostability` to node definition group.
* mcl_cake/init.lua (cake);
* mcl_core/craftitems.lua (apple);
* mcl_core/nodes_base.lua (dirt with grass);
* mcl_core/nodes_cactuscane.lua (cactus, sugarcane);
* mcl_core/nodes_climb.lua (vines);
* mcl_core/nodes_trees.lua (leaves, saplings);
* mcl_dye/init.lua (cocoa beans);
* mcl_farming/beetroot.lua (beetroot, & seeds);
* mcl_farming/carrots.lua (carrot);
* mcl_farming/melon.lua (melon, & slice, & seeds);
* mcl_farming/potatoes.lua (potato, baked potato);
* mcl_farming/pumpkin.lua (pumpkin, carved &, & seeds, & pie);
* mcl_farming/wheat.lua (wheat, cookie, bread, hay block);
* mcl_flowers/init.lua (flowers, ferns, grass, & tall variants);
* mcl_mushrooms/small.lua (red and brown mushrooms);
* mcl_mushrooms/huge.lua (red and brown huge mushrooms);
* mcl_nether/init.lua (nether wart block);
* mcl_nether/nether_wart.lua (nether wart);
* mcl_ocean/kelp.lua (kelp, dried &, & block);
* mcl_ocean/sea_pickle.lua (sea pickle);
* mcl_ocean/seagrass.lua (seagrass).
2022-03-29 12:54:51 +02:00
groups = {
plant = 1 , sapling = 1 , non_mycelium_plant = 1 , attached_node = 1 ,
deco_block = 1 , dig_immediate = 3 , dig_by_water = 1 , dig_by_piston = 1 ,
destroy_by_lava_flow = 1 , compostability = 30
} ,
2017-07-07 16:37:05 +02:00
sounds = mcl_sounds.node_sound_leaves_defaults ( ) ,
on_construct = function ( pos )
local meta = minetest.get_meta ( pos )
meta : set_int ( " stage " , 0 )
end ,
on_place = mcl_util.generate_on_place_plant_function ( function ( pos , node )
local node_below = minetest.get_node_or_nil ( { x = pos.x , y = pos.y - 1 , z = pos.z } )
if not node_below then return false end
local nn = node_below.name
2022-04-13 12:59:05 +02:00
return minetest.get_item_group ( nn , " grass_block " ) == 1 or
nn == " mcl_core:podzol " or nn == " mcl_core:podzol_snow " or
nn == " mcl_core:dirt " or nn == " mcl_core:mycelium " or nn == " mcl_core:coarse_dirt "
2017-07-07 16:37:05 +02:00
end ) ,
node_placement_prediction = " " ,
_mcl_blast_resistance = 0 ,
_mcl_hardness = 0 ,
} )
end
---------------------
2021-04-19 18:50:21 +02:00
register_tree_trunk ( " tree " , S ( " Oak Wood " ) , S ( " Oak Bark " ) , S ( " The trunk of an oak tree. " ) , " default_tree_top.png " , " default_tree.png " , " mcl_core:stripped_oak " )
register_tree_trunk ( " darktree " , S ( " Dark Oak Wood " ) , S ( " Dark Oak Bark " ) , S ( " The trunk of a dark oak tree. " ) , " mcl_core_log_big_oak_top.png " , " mcl_core_log_big_oak.png " , " mcl_core:stripped_dark_oak " )
register_tree_trunk ( " acaciatree " , S ( " Acacia Wood " ) , S ( " Acacia Bark " ) , S ( " The trunk of an acacia. " ) , " default_acacia_tree_top.png " , " default_acacia_tree.png " , " mcl_core:stripped_acacia " )
register_tree_trunk ( " sprucetree " , S ( " Spruce Wood " ) , S ( " Spruce Bark " ) , S ( " The trunk of a spruce tree. " ) , " mcl_core_log_spruce_top.png " , " mcl_core_log_spruce.png " , " mcl_core:stripped_spruce " )
register_tree_trunk ( " birchtree " , S ( " Birch Wood " ) , S ( " Birch Bark " ) , S ( " The trunk of a birch tree. " ) , " mcl_core_log_birch_top.png " , " mcl_core_log_birch.png " , " mcl_core:stripped_birch " )
register_tree_trunk ( " jungletree " , S ( " Jungle Wood " ) , S ( " Jungle Bark " ) , S ( " The trunk of a jungle tree. " ) , " default_jungletree_top.png " , " default_jungletree.png " , " mcl_core:stripped_jungle " )
2019-03-07 23:40:43 +01:00
2021-06-18 21:30:20 +02:00
register_stripped_trunk ( " stripped_oak " , S ( " Stripped Oak Log " ) , S ( " Stripped Oak Wood " ) , S ( " The stripped trunk of an oak tree. " ) , S ( " The stripped wood of an oak tree. " ) , " mcl_core_stripped_oak_top.png " , " mcl_core_stripped_oak_side.png " )
register_stripped_trunk ( " stripped_acacia " , S ( " Stripped Acacia Log " ) , S ( " Stripped Acacia Wood " ) , S ( " The stripped trunk of an acacia tree. " ) , S ( " The stripped wood of an acacia tree. " ) , " mcl_core_stripped_acacia_top.png " , " mcl_core_stripped_acacia_side.png " )
register_stripped_trunk ( " stripped_dark_oak " , S ( " Stripped Dark Oak Log " ) , S ( " Stripped Dark Oak Wood " ) , S ( " The stripped trunk of a dark oak tree. " ) , S ( " The stripped wood of a dark oak tree. " ) , " mcl_core_stripped_dark_oak_top.png " , " mcl_core_stripped_dark_oak_side.png " )
register_stripped_trunk ( " stripped_birch " , S ( " Stripped Birch Log " ) , S ( " Stripped Birch Wood " ) , S ( " The stripped trunk of a birch tree. " ) , S ( " The stripped wood of a birch tree. " ) , " mcl_core_stripped_birch_top.png " , " mcl_core_stripped_birch_side.png " )
register_stripped_trunk ( " stripped_spruce " , S ( " Stripped Spruce Log " ) , S ( " Stripped Spruce Wood " ) , S ( " The stripped trunk of a spruce tree. " ) , S ( " The stripped wood of a spruce tree. " ) , " mcl_core_stripped_spruce_top.png " , " mcl_core_stripped_spruce_side.png " )
register_stripped_trunk ( " stripped_jungle " , S ( " Stripped Jungle Log " ) , S ( " Stripped Jungle Wood " ) , S ( " The stripped trunk of a jungle tree. " ) , S ( " The stripped wood of a jungle tree. " ) , " mcl_core_stripped_jungle_top.png " , " mcl_core_stripped_jungle_side.png " )
2019-03-07 23:40:43 +01:00
register_wooden_planks ( " wood " , S ( " Oak Wood Planks " ) , { " default_wood.png " } )
register_wooden_planks ( " darkwood " , S ( " Dark Oak Wood Planks " ) , { " mcl_core_planks_big_oak.png " } )
register_wooden_planks ( " junglewood " , S ( " Jungle Wood Planks " ) , { " default_junglewood.png " } )
register_wooden_planks ( " sprucewood " , S ( " Spruce Wood Planks " ) , { " mcl_core_planks_spruce.png " } )
register_wooden_planks ( " acaciawood " , S ( " Acacia Wood Planks " ) , { " default_acacia_wood.png " } )
register_wooden_planks ( " birchwood " , S ( " Birch Wood Planks " ) , { " mcl_core_planks_birch.png " } )
2020-03-08 03:18:47 +01:00
register_sapling ( " sapling " , S ( " Oak Sapling " ) ,
S ( " When placed on soil (such as dirt) and exposed to light, an oak sapling will grow into an oak after some time. " ) ,
S ( " Needs soil and light to grow " ) ,
" default_sapling.png " , { - 5 / 16 , - 0.5 , - 5 / 16 , 5 / 16 , 0.5 , 5 / 16 } )
register_sapling ( " darksapling " , S ( " Dark Oak Sapling " ) ,
S ( " Dark oak saplings can grow into dark oaks, but only in groups. A lonely dark oak sapling won't grow. A group of four dark oak saplings grows into a dark oak after some time when they are placed on soil (such as dirt) in a 2× 2 square and exposed to light. " ) ,
S ( " Needs soil and light to grow " ) .. " \n " .. S ( " 2× 2 saplings required " ) ,
" mcl_core_sapling_big_oak.png " , { - 5 / 16 , - 0.5 , - 5 / 16 , 5 / 16 , 7 / 16 , 5 / 16 } )
register_sapling ( " junglesapling " , S ( " Jungle Sapling " ) ,
S ( " When placed on soil (such as dirt) and exposed to light, a jungle sapling will grow into a jungle tree after some time. When there are 4 jungle saplings in a 2× 2 square, they will grow to a huge jungle tree. " ) ,
S ( " Needs soil and light to grow " ) .. " \n " .. S ( " 2× 2 saplings = large tree " ) ,
" default_junglesapling.png " , { - 5 / 16 , - 0.5 , - 5 / 16 , 5 / 16 , 0.5 , 5 / 16 } )
register_sapling ( " acaciasapling " , S ( " Acacia Sapling " ) ,
S ( " When placed on soil (such as dirt) and exposed to light, an acacia sapling will grow into an acacia after some time. " ) ,
S ( " Needs soil and light to grow " ) ,
" default_acacia_sapling.png " , { - 5 / 16 , - 0.5 , - 5 / 16 , 5 / 16 , 4 / 16 , 5 / 16 } )
register_sapling ( " sprucesapling " , S ( " Spruce Sapling " ) ,
S ( " When placed on soil (such as dirt) and exposed to light, a spruce sapling will grow into a spruce after some time. When there are 4 spruce saplings in a 2× 2 square, they will grow to a huge spruce. " ) ,
S ( " Needs soil and light to grow " ) .. " \n " .. S ( " 2× 2 saplings = large tree " ) ,
" mcl_core_sapling_spruce.png " , { - 4 / 16 , - 0.5 , - 4 / 16 , 4 / 16 , 0.5 , 4 / 16 } )
register_sapling ( " birchsapling " , S ( " Birch Sapling " ) ,
S ( " When placed on soil (such as dirt) and exposed to light, a birch sapling will grow into a birch after some time. " ) ,
S ( " Needs soil and light to grow " ) ,
" mcl_core_sapling_birch.png " , { - 4 / 16 , - 0.5 , - 4 / 16 , 4 / 16 , 0.5 , 4 / 16 } )
2019-03-07 23:40:43 +01:00
2020-11-06 13:46:52 +01:00
register_leaves ( " leaves " , S ( " Oak Leaves " ) , S ( " Oak leaves are grown from oak trees. " ) , { " default_leaves.png " } , " mcl_core:sapling " , true , { 20 , 16 , 12 , 10 } )
register_leaves ( " darkleaves " , S ( " Dark Oak Leaves " ) , S ( " Dark oak leaves are grown from dark oak trees. " ) , { " mcl_core_leaves_big_oak.png " } , " mcl_core:darksapling " , true , { 20 , 16 , 12 , 10 } )
register_leaves ( " jungleleaves " , S ( " Jungle Leaves " ) , S ( " Jungle leaves are grown from jungle trees. " ) , { " default_jungleleaves.png " } , " mcl_core:junglesapling " , false , { 40 , 26 , 32 , 24 , 10 } )
register_leaves ( " acacialeaves " , S ( " Acacia Leaves " ) , S ( " Acacia leaves are grown from acacia trees. " ) , { " default_acacia_leaves.png " } , " mcl_core:acaciasapling " , false , { 20 , 16 , 12 , 10 } )
register_leaves ( " spruceleaves " , S ( " Spruce Leaves " ) , S ( " Spruce leaves are grown from spruce trees. " ) , { " mcl_core_leaves_spruce.png " } , " mcl_core:sprucesapling " , false , { 20 , 16 , 12 , 10 } )
register_leaves ( " birchleaves " , S ( " Birch Leaves " ) , S ( " Birch leaves are grown from birch trees. " ) , { " mcl_core_leaves_birch.png " } , " mcl_core:birchsapling " , false , { 20 , 16 , 12 , 10 } )
2017-07-07 16:37:05 +02:00
-- Node aliases
minetest.register_alias ( " default:acacia_tree " , " mcl_core:acaciatree " )
Add `compostability` to node definition group.
* mcl_cake/init.lua (cake);
* mcl_core/craftitems.lua (apple);
* mcl_core/nodes_base.lua (dirt with grass);
* mcl_core/nodes_cactuscane.lua (cactus, sugarcane);
* mcl_core/nodes_climb.lua (vines);
* mcl_core/nodes_trees.lua (leaves, saplings);
* mcl_dye/init.lua (cocoa beans);
* mcl_farming/beetroot.lua (beetroot, & seeds);
* mcl_farming/carrots.lua (carrot);
* mcl_farming/melon.lua (melon, & slice, & seeds);
* mcl_farming/potatoes.lua (potato, baked potato);
* mcl_farming/pumpkin.lua (pumpkin, carved &, & seeds, & pie);
* mcl_farming/wheat.lua (wheat, cookie, bread, hay block);
* mcl_flowers/init.lua (flowers, ferns, grass, & tall variants);
* mcl_mushrooms/small.lua (red and brown mushrooms);
* mcl_mushrooms/huge.lua (red and brown huge mushrooms);
* mcl_nether/init.lua (nether wart block);
* mcl_nether/nether_wart.lua (nether wart);
* mcl_ocean/kelp.lua (kelp, dried &, & block);
* mcl_ocean/sea_pickle.lua (sea pickle);
* mcl_ocean/seagrass.lua (seagrass).
2022-03-29 12:54:51 +02:00
minetest.register_alias ( " default:acacia_leaves " , " mcl_core:acacialeaves " )