Loom
|
@ -0,0 +1,13 @@
|
||||||
|
mcl_loom
|
||||||
|
--------
|
||||||
|
Looms, by PrairieWind
|
||||||
|
|
||||||
|
Adds Looms to MineClone 2/5. Used to add patterns to banners.
|
||||||
|
|
||||||
|
License of source code
|
||||||
|
----------------------
|
||||||
|
LGPLv2.1
|
||||||
|
|
||||||
|
License of media
|
||||||
|
----------------
|
||||||
|
See the main MineClone 2 README.md file.
|
|
@ -0,0 +1,25 @@
|
||||||
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
-- Loom Code. Used to craft banner designs easier. Still needs a GUI. https://minecraft.fandom.com/wiki/Loom
|
||||||
|
|
||||||
|
minetest.register_node("mcl_loom:loom", {
|
||||||
|
description = S("Loom"),
|
||||||
|
_tt_help = S("Used to create banner designs"),
|
||||||
|
_doc_items_longdesc = S("This is the shepherd villager's work station. It is used to create banner designs."),
|
||||||
|
tiles = {
|
||||||
|
"loom_top.png", "loom_bottom.png",
|
||||||
|
"loom_side.png", "loom_side.png",
|
||||||
|
"loom_front.png", "loom_front.png"
|
||||||
|
},
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {choppy=1, container=4, deco_block=1, material_wood=1, flammable=1}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_loom:loom",
|
||||||
|
recipe = {
|
||||||
|
{ "", "", "" },
|
||||||
|
{ "mcl_mobitems:string", "mcl_mobitems:string", "" },
|
||||||
|
{ "group:wood", "group:wood", "" },
|
||||||
|
}
|
||||||
|
})
|
|
@ -0,0 +1,4 @@
|
||||||
|
name = mcl_loom
|
||||||
|
author = PrairieWind
|
||||||
|
description = Adds the loom villager workstation to MineClone 2/5. Used to add patterns to banners.
|
||||||
|
depends = mcl_core, mcl_mobitems
|
After Width: | Height: | Size: 315 B |
After Width: | Height: | Size: 395 B |
After Width: | Height: | Size: 339 B |
After Width: | Height: | Size: 615 B |
After Width: | Height: | Size: 360 B |
After Width: | Height: | Size: 639 B |
After Width: | Height: | Size: 358 B |
After Width: | Height: | Size: 468 B |