123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- ARMOR_MOD_NAME = minetest.get_current_modname()
- dofile(minetest.get_modpath(ARMOR_MOD_NAME).."/armor.lua")
- if ARMOR_MATERIALS.wood then
- minetest.register_tool("3d_armor:helmet_wood", {
- description = "Wood Helmet",
- inventory_image = "3d_armor_inv_helmet_wood.png",
- groups = {armor_head=5, armor_heal=0, armor_use=2000},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_wood", {
- description = "Wood Chestplate",
- inventory_image = "3d_armor_inv_chestplate_wood.png",
- groups = {armor_torso=10, armor_heal=0, armor_use=2000},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_wood", {
- description = "Wood Leggings",
- inventory_image = "3d_armor_inv_leggings_wood.png",
- groups = {armor_legs=5, armor_heal=0, armor_use=2000},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_wood", {
- description = "Wood Boots",
- inventory_image = "3d_armor_inv_boots_wood.png",
- groups = {armor_feet=5, armor_heal=0, armor_use=2000},
- wear = 0,
- })
- end
- --[[
- if ARMOR_MATERIALS.cactus then
- minetest.register_tool("3d_armor:helmet_cactus", {
- description = "Cactuc Helmet",
- inventory_image = "3d_armor_inv_helmet_cactus.png",
- groups = {armor_head=5, armor_heal=0, armor_use=1000},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_cactus", {
- description = "Cactus Chestplate",
- inventory_image = "3d_armor_inv_chestplate_cactus.png",
- groups = {armor_torso=10, armor_heal=0, armor_use=1000},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_cactus", {
- description = "Cactus Leggings",
- inventory_image = "3d_armor_inv_leggings_cactus.png",
- groups = {armor_legs=5, armor_heal=0, armor_use=1000},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_cactus", {
- description = "Cactus Boots",
- inventory_image = "3d_armor_inv_boots_cactus.png",
- groups = {armor_feet=5, armor_heal=0, armor_use=2000},
- wear = 0,
- })
- end
- --]]
- if ARMOR_MATERIALS.steel then
- minetest.register_tool("3d_armor:helmet_steel", {
- description = "Wrought Iron Helmet",
- inventory_image = "3d_armor_inv_helmet_steel.png",
- groups = {armor_head=10, armor_heal=0, armor_use=500},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_steel", {
- description = "Wrought Iron Chestplate",
- inventory_image = "3d_armor_inv_chestplate_steel.png",
- groups = {armor_torso=15, armor_heal=0, armor_use=500},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_steel", {
- description = "Wrought Iron Leggings",
- inventory_image = "3d_armor_inv_leggings_steel.png",
- groups = {armor_legs=15, armor_heal=0, armor_use=500},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_steel", {
- description = "Wrought Iron Boots",
- inventory_image = "3d_armor_inv_boots_steel.png",
- groups = {armor_feet=10, armor_heal=0, armor_use=500},
- wear = 0,
- })
- end
- if ARMOR_MATERIALS.carbon then
- minetest.register_tool("3d_armor:helmet_carbon", {
- description = "Carbon Steel Helmet",
- inventory_image = "3d_armor_inv_helmet_carbon.png",
- groups = {armor_head=12, armor_heal=0, armor_use=200},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_carbon", {
- description = "Carbon Steel Chestplate",
- inventory_image = "3d_armor_inv_chestplate_carbon.png",
- groups = {armor_torso=17, armor_heal=0, armor_use=200},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_carbon", {
- description = "Carbon Steel Leggings",
- inventory_image = "3d_armor_inv_leggings_carbon.png",
- groups = {armor_legs=17, armor_heal=0, armor_use=200},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_carbon", {
- description = "Carbon Steel Boots",
- inventory_image = "3d_armor_inv_boots_carbon.png",
- groups = {armor_feet=12, armor_heal=0, armor_use=200},
- wear = 0,
- })
- end
- if ARMOR_MATERIALS.bronze then
- minetest.register_tool("3d_armor:helmet_bronze", {
- description = "Bronze Helmet",
- inventory_image = "3d_armor_inv_helmet_bronze.png",
- groups = {armor_head=10, armor_heal=6, armor_use=250},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_bronze", {
- description = "Bronze Chestplate",
- inventory_image = "3d_armor_inv_chestplate_bronze.png",
- groups = {armor_torso=15, armor_heal=6, armor_use=250},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_bronze", {
- description = "Bronze Leggings",
- inventory_image = "3d_armor_inv_leggings_bronze.png",
- groups = {armor_legs=15, armor_heal=6, armor_use=250},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_bronze", {
- description = "Bronze Boots",
- inventory_image = "3d_armor_inv_boots_bronze.png",
- groups = {armor_feet=10, armor_heal=6, armor_use=250},
- wear = 0,
- })
- end
- if ARMOR_MATERIALS.diamond then
- minetest.register_tool("3d_armor:helmet_diamond", {
- description = "Diamond Helmet",
- inventory_image = "3d_armor_inv_helmet_diamond.png",
- groups = {armor_head=15, armor_heal=12, armor_use=100},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_diamond", {
- description = "Diamond Chestplate",
- inventory_image = "3d_armor_inv_chestplate_diamond.png",
- groups = {armor_torso=20, armor_heal=12, armor_use=100},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_diamond", {
- description = "Diamond Leggings",
- inventory_image = "3d_armor_inv_leggings_diamond.png",
- groups = {armor_legs=20, armor_heal=12, armor_use=100},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_diamond", {
- description = "Diamond Boots",
- inventory_image = "3d_armor_inv_boots_diamond.png",
- groups = {armor_feet=15, armor_heal=12, armor_use=100},
- wear = 0,
- })
- end
- if ARMOR_MATERIALS.gold then
- minetest.register_tool("3d_armor:helmet_gold", {
- description = "Gold Helmet",
- inventory_image = "3d_armor_inv_helmet_gold.png",
- groups = {armor_head=10, armor_heal=6, armor_use=250},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_gold", {
- description = "Gold Chestplate",
- inventory_image = "3d_armor_inv_chestplate_gold.png",
- groups = {armor_torso=15, armor_heal=6, armor_use=250},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_gold", {
- description = "Gold Leggings",
- inventory_image = "3d_armor_inv_leggings_gold.png",
- groups = {armor_legs=15, armor_heal=6, armor_use=250},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_gold", {
- description = "Gold Boots",
- inventory_image = "3d_armor_inv_boots_gold.png",
- groups = {armor_feet=10, armor_heal=6, armor_use=250},
- wear = 0,
- })
- end
- if ARMOR_MATERIALS.mithril then
- minetest.register_tool("3d_armor:helmet_mithril", {
- description = "Mithril Helmet",
- inventory_image = "3d_armor_inv_helmet_mithril.png",
- groups = {armor_head=20, armor_heal=12, armor_use=50},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_mithril", {
- description = "Mithril Chestplate",
- inventory_image = "3d_armor_inv_chestplate_mithril.png",
- groups = {armor_torso=25, armor_heal=12, armor_use=50},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_mithril", {
- description = "Mithril Leggings",
- inventory_image = "3d_armor_inv_leggings_mithril.png",
- groups = {armor_legs=25, armor_heal=12, armor_use=50},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_mithril", {
- description = "Mithril Boots",
- inventory_image = "3d_armor_inv_boots_mithril.png",
- groups = {armor_feet=20, armor_heal=12, armor_use=50},
- wear = 0,
- })
- end
- --[[
- if ARMOR_MATERIALS.crystal then
- minetest.register_tool("3d_armor:helmet_crystal", {
- description = "Crystal Helmet",
- inventory_image = "3d_armor_inv_helmet_crystal.png",
- groups = {armor_head=15, armor_heal=12, armor_use=50, armor_fire=1},
- wear = 0,
- })
- minetest.register_tool("3d_armor:chestplate_crystal", {
- description = "Crystal Chestplate",
- inventory_image = "3d_armor_inv_chestplate_crystal.png",
- groups = {armor_torso=20, armor_heal=12, armor_use=50, armor_fire=1},
- wear = 0,
- })
- minetest.register_tool("3d_armor:leggings_crystal", {
- description = "Crystal Leggings",
- inventory_image = "3d_armor_inv_leggings_crystal.png",
- groups = {armor_legs=20, armor_heal=12, armor_use=50, armor_fire=1},
- wear = 0,
- })
- minetest.register_tool("3d_armor:boots_crystal", {
- description = "Crystal Boots",
- inventory_image = "3d_armor_inv_boots_crystal.png",
- groups = {armor_feet=15, armor_heal=12, armor_use=50, physics_speed=1, physics_jump=0.5, armor_fire=1},
- wear = 0,
- })
- end
- --]]
- for k, v in pairs(ARMOR_MATERIALS) do
- minetest.register_craft({
- output = "3d_armor:helmet_"..k,
- recipe = {
- {v, v, v},
- {v, "", v},
- {"", "", ""},
- },
- })
- minetest.register_craft({
- output = "3d_armor:chestplate_"..k,
- recipe = {
- {v, "", v},
- {v, v, v},
- {v, v, v},
- },
- })
- minetest.register_craft({
- output = "3d_armor:leggings_"..k,
- recipe = {
- {v, v, v},
- {v, "", v},
- {v, "", v},
- },
- })
- minetest.register_craft({
- output = "3d_armor:boots_"..k,
- recipe = {
- {v, "", v},
- {v, "", v},
- },
- })
- if not string.find(v, "wood") and not string.find(v, "diamond") and string.find(v, "ingot") then
- minetest.register_craft({
- type = "cooking",
- output = v .. " 5",
- recipe = "3d_armor:helmet_"..k,
- cooktime = 15,
- })
- minetest.register_craft({
- type = "cooking",
- output = v .. " 8",
- recipe = "3d_armor:chestplate_"..k,
- cooktime = 15,
- })
- minetest.register_craft({
- type = "cooking",
- output = v .. " 7",
- recipe = "3d_armor:leggings_"..k,
- cooktime = 15,
- })
- minetest.register_craft({
- type = "cooking",
- output = v .. " 4",
- recipe = "3d_armor:boots_"..k,
- cooktime = 15,
- })
- end
- -- Wooden armor can be used as fuel.
- if string.find(v, "wood") then
- minetest.register_craft({
- type = "fuel",
- recipe = "3d_armor:helmet_" .. k,
- burntime = 4,
- })
- minetest.register_craft({
- type = "fuel",
- recipe = "3d_armor:chestplate_" .. k,
- burntime = 4,
- })
- minetest.register_craft({
- type = "fuel",
- recipe = "3d_armor:leggings_" .. k,
- burntime = 4,
- })
- minetest.register_craft({
- type = "fuel",
- recipe = "3d_armor:boots_" .. k,
- burntime = 4,
- })
- end
- end
|