123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- minetest.register_tool("lottclothes:hood_elven", {
- description = "Elven Hood",
- inventory_image = "lottclothes_inv_hood_elven.png",
- groups = {armor_feet=0, armor_heal=0, clothes=1, clothes_head=1},
- wear = 0
- })
- minetest.register_tool("lottclothes:shirt_elven", {
- description = "Elven Shirt",
- inventory_image = "lottclothes_inv_shirt_elven.png",
- groups = {armor_feet=0, armor_heal=0, clothes=1, clothes_torso=1},
- wear = 0
- })
- minetest.register_tool("lottclothes:trousers_elven", {
- description = "Elven Trousers",
- inventory_image = "lottclothes_inv_trousers_elven.png",
- groups = {armor_feet=0, armor_heal=0, clothes=1, clothes_legs=1},
- wear = 0
- })
- minetest.register_tool("lottclothes:shoes_elven", {
- description = "Elven Shoes",
- inventory_image = "lottclothes_inv_shoes_elven.png",
- groups = {armor_feet=0, armor_heal=0, clothes=1, clothes_feet=1},
- wear = 0
- })
- minetest.register_tool("lottclothes:cloak_elven", {
- description = "Elven Cloak",
- inventory_image = "lottclothes_inv_cloak_elven.png",
- groups = {armor_feet=0, armor_heal=0, clothes=1, clothes_cloak=1},
- wear = 0
- })
- minetest.register_craft({
- output = "lottclothes:hood_elven",
- recipe = {
- {"lottclothes:flax_grey", "lottclothes:flax_grey", "lottclothes:flax_grey"},
- {"lottclothes:flax_grey", "" , "lottclothes:flax_grey"},
- }
- })
- minetest.register_craft({
- output = 'lottclothes:flaxthread 5',
- recipe = {
- {'lottclothes:hood_elven'},
- }
- })
- minetest.register_craft({
- output = "lottclothes:shirt_elven",
- recipe = {
- {"lottclothes:flax_grey", "", "lottclothes:flax_grey"},
- {"lottclothes:flax_grey", "lottclothes:flax_grey", "lottclothes:flax_grey"},
- {"lottclothes:flax_grey", "lottclothes:flax_grey", "lottclothes:flax_grey"}
- }
- })
- minetest.register_craft({
- output = 'lottclothes:flaxthread 8',
- recipe = {
- {'lottclothes:shirt_elven'},
- }
- })
- minetest.register_craft({
- output = "lottclothes:trousers_elven",
- recipe = {
- {"lottclothes:flax_grey", "lottclothes:flax_grey", "lottclothes:flax_grey"},
- {"lottclothes:flax_grey", "" , "lottclothes:flax_grey"},
- {"lottclothes:flax_grey", "" , "lottclothes:flax_grey"}
- }
- })
- minetest.register_craft({
- output = 'lottclothes:flaxthread 7',
- recipe = {
- {'lottclothes:trousers_elven'},
- }
- })
- minetest.register_craft({
- output = "lottclothes:shoes_elven",
- recipe = {
- {"lottclothes:flax_grey", "" , "lottclothes:flax_grey"},
- {"lottclothes:felt_black", "" , "lottclothes:felt_black"}
- }
- })
- minetest.register_craft({
- output = 'lottclothes:flaxthread 2',
- recipe = {
- {'lottclothes:shoes_elven'},
- }
- })
- minetest.register_craft({
- output = "lottclothes:cloak_elven",
- recipe = {
- {"lottclothes:flax_grey", "lottclothes:flax_grey"},
- {"lottclothes:flax_grey", "lottclothes:flax_grey"},
- {"lottclothes:flax_grey", "lottclothes:flax_grey"}
- }
- })
- minetest.register_craft({
- output = 'lottclothes:flaxthread 6',
- recipe = {
- {'lottclothes:cloak_elven'},
- }
- })
|