123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- -- basic outfit from the chetwood forest.
- -- made from green and brown felt & tin ingot.
- local level=2
- -- cap (head)
- minetest.register_tool("lottclothes:cap_chetwood", {
- description = "Chetwood Cap",
- inventory_image = "lottclothes_inv_cap_chetwood.png",
- groups = {armor_head=0, armor_heal=0, clothes=1, clothes_head=1},
- wear = 0
- })
- minetest.register_craft({
- output = "lottclothes:cap_chetwood",
- recipe = {
- {"lottclothes:felt_green", "lottclothes:felt_green", "lottclothes:felt_green"},
- {"lottores:tin_ingot", "", "lottores:tin_ingot"},
- {"", "",""}
- }
- })
- minetest.register_craft({
- output = 'lottclothes:feltthread 3',
- recipe = {
- {'lottclothes:cap_chetwood'},
- }
- })
- -- jacket (torso)
- minetest.register_tool("lottclothes:jacket_chetwood", {
- description = "Chetwood Jacket",
- inventory_image = "lottclothes_inv_jacket_chetwood.png",
- groups = {armor_torso=0, armor_heal=0, clothes=1, clothes_torso=1},
- wear = 0
- })
- minetest.register_craft({
- output = "lottclothes:jacket_chetwood",
- recipe = {
- {"lottclothes:felt_green", "", "lottclothes:felt_green"},
- {"lottores:tin_ingot", "lottclothes:felt_green", "lottores:tin_ingot"},
- {"lottores:tin_ingot", "lottclothes:felt_green", "lottores:tin_ingot"}
- }
- })
- minetest.register_craft({
- output = 'lottclothes:feltthread 4',
- recipe = {
- {'lottclothes:jacket_chetwood'},
- }
- })
- -- pants (legs)
- minetest.register_tool("lottclothes:pants_chetwood", {
- description = "Chetwood Pants",
- inventory_image = "lottclothes_inv_pants_chetwood.png",
- groups = {armor_legs=0, armor_heal=0, clothes=1, clothes_legs=1},
- wear = 0
- })
- minetest.register_craft({
- output = "lottclothes:pants_chetwood",
- recipe = {
- {"lottclothes:felt_green", "lottclothes:felt_green", "lottclothes:felt_green"},
- {"lottores:tin_ingot", "" , "lottores:tin_ingot"},
- {"lottores:tin_ingot", "" , "lottores:tin_ingot"}
- }
- })
- minetest.register_craft({
- output = 'lottclothes:feltthread 3',
- recipe = {
- {'lottclothes:pants_chetwood'},
- }
- })
- -- boots (feet)
- minetest.register_tool("lottclothes:boots_chetwood", {
- description = "Chetwood Boots",
- inventory_image = "lottclothes_inv_boots_chetwood.png",
- groups = {armor_feet=0, armor_heal=0, clothes=1, clothes_feet=1},
- wear = 0
- })
- minetest.register_craft({
- output = "lottclothes:boots_chetwood",
- recipe = {
- {"lottclothes:felt_brown", "", "lottclothes:felt_brown"},
- {"lottores:tin_ingot", "", "lottores:tin_ingot"}
- }
- })
- minetest.register_craft({
- output = 'lottclothes:feltthread 2',
- recipe = {
- {'lottclothes:boots_chetwood'},
- }
- })
|