forked from VoxeLibre/VoxeLibre
Fletching Table
This commit is contained in:
parent
e80eebd989
commit
046698c64f
|
@ -0,0 +1,13 @@
|
||||||
|
mcl_fletching_table
|
||||||
|
-------------------
|
||||||
|
Fletching Tables, by PrairieWind
|
||||||
|
|
||||||
|
Adds Fletching Tables to MineClone 2/5.
|
||||||
|
|
||||||
|
License of source code
|
||||||
|
----------------------
|
||||||
|
LGPLv2.1
|
||||||
|
|
||||||
|
License of media
|
||||||
|
----------------
|
||||||
|
See the main MineClone 2 README.md file.
|
|
@ -0,0 +1,23 @@
|
||||||
|
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_top.png",
|
||||||
|
"fletching_table_side.png", "fletching_table_side.png",
|
||||||
|
"fletching_table_front.png", "fletching_table_front.png"
|
||||||
|
},
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {choppy=1, container=4, deco_block=1, material_wood=1, flammable=1},
|
||||||
|
is_ground_content = false
|
||||||
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_fletching_table:fletching_table",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_core:flint", "mcl_core:flint", "" },
|
||||||
|
{ "group:wood", "group:wood", "" },
|
||||||
|
{ "group:wood", "group:wood", "" },
|
||||||
|
}
|
||||||
|
})
|
|
@ -0,0 +1,4 @@
|
||||||
|
name = mcl_fletching_table
|
||||||
|
author = PrairieWind
|
||||||
|
description = Adds the fletching table villager workstation to MineClone 2/5.
|
||||||
|
depends = mcl_core
|
Binary file not shown.
After Width: | Height: | Size: 720 B |
Binary file not shown.
After Width: | Height: | Size: 745 B |
Binary file not shown.
After Width: | Height: | Size: 630 B |
Loading…
Reference in New Issue