Loom
13
mods/ITEMS/mcl_loom/README.md
Normal file
|
@ -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.
|
25
mods/ITEMS/mcl_loom/init.lua
Normal 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", "" },
|
||||
}
|
||||
})
|
4
mods/ITEMS/mcl_loom/mod.conf
Normal file
|
@ -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
|
BIN
mods/ITEMS/mcl_loom/textures/loom_bottom.png
Normal file
After Width: | Height: | Size: 315 B |
BIN
mods/ITEMS/mcl_loom/textures/loom_bottom1.png
Normal file
After Width: | Height: | Size: 395 B |
BIN
mods/ITEMS/mcl_loom/textures/loom_front.png
Normal file
After Width: | Height: | Size: 339 B |
BIN
mods/ITEMS/mcl_loom/textures/loom_front1.png
Normal file
After Width: | Height: | Size: 615 B |
BIN
mods/ITEMS/mcl_loom/textures/loom_side.png
Normal file
After Width: | Height: | Size: 360 B |
BIN
mods/ITEMS/mcl_loom/textures/loom_side1.png
Normal file
After Width: | Height: | Size: 639 B |
BIN
mods/ITEMS/mcl_loom/textures/loom_top.png
Normal file
After Width: | Height: | Size: 358 B |
BIN
mods/ITEMS/mcl_loom/textures/loom_top1.png
Normal file
After Width: | Height: | Size: 468 B |