mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-05 07:13:51 +01:00
760fe1aa68
- group:bee_nest - group:beehive - mcl_cartography_table:cartography_table - mcl_core:deadbush - mcl_fletching_table:fletching_table - mcl_lectern:lectern - mcl_loom:loom - mcl_mangrove:mangrove_roots - mcl_smithing_table:table Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/4184 Reviewed-by: Mikita Wiśniewski <rudzik8@protonmail.com> Co-authored-by: nixnoxus <nixnoxus@web.de> Co-committed-by: nixnoxus <nixnoxus@web.de>
33 lines
1.1 KiB
Lua
33 lines
1.1 KiB
Lua
local S = minetest.get_translator(minetest.get_current_modname())
|
|
-- Fletching Table Code. No use as of current Minecraft Updates. Basically a decor block. As of now, this is complete.
|
|
minetest.register_node("mcl_fletching_table:fletching_table", {
|
|
description = S("Fletching Table"),
|
|
_tt_help = S("A fletching table"),
|
|
_doc_items_longdesc = S("This is the fletcher villager's work station. It currently has no use beyond decoration."),
|
|
tiles = {
|
|
"fletching_table_top.png", "fletching_table_bottom.png",
|
|
"fletching_table_front.png", "fletching_table_front.png",
|
|
"fletching_table_side.png", "fletching_table_side.png"
|
|
},
|
|
paramtype2 = "facedir",
|
|
groups = { axey = 2, handy = 1, deco_block = 1, material_wood = 1, flammable = 1 },
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
_mcl_blast_resistance = 2.5,
|
|
_mcl_hardness = 2.5
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mcl_fletching_table:fletching_table",
|
|
recipe = {
|
|
{ "mcl_core:flint", "mcl_core:flint", "" },
|
|
{ "group:wood", "group:wood", "" },
|
|
{ "group:wood", "group:wood", "" },
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "fuel",
|
|
recipe = "mcl_fletching_table:fletching_table",
|
|
burntime = 15,
|
|
})
|