diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/depends.txt b/mods/3d_armor_classes/blackmithril/depends.txt similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/depends.txt rename to mods/3d_armor_classes/blackmithril/depends.txt diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/init.lua b/mods/3d_armor_classes/blackmithril/init.lua similarity index 63% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/init.lua rename to mods/3d_armor_classes/blackmithril/init.lua index fe6dbc9a..cb2db341 100755 --- a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/init.lua +++ b/mods/3d_armor_classes/blackmithril/init.lua @@ -1,29 +1,29 @@ if ARMOR_MATERIALS.black_mithril then -- Register helmets : minetest.register_tool(":3d_armor:helmet_blackmithril", { - description = "Warrior's Black Mithril Plated Helmet", - inventory_image = "3d_armor_inv_helmet_black_mithril_plated_warrior.png", + description = "Black Mithril Helmet", + inventory_image = "3d_armor_inv_helmet_blackmithril.png", groups = {armor_head = 11, armor_heal = 1, armor_use = 40}, wear = 0, }) -- Register chestplates : minetest.register_tool(":3d_armor:chestplate_blackmithril", { - description = "Warrior's Black Mithril Plated Chestplate", - inventory_image = "3d_armor_inv_chestplate_black_mithril_plated_warrior.png", + description = "Black Mithril Chestplate", + inventory_image = "3d_armor_inv_chestplate_blackmithril.png", groups = {armor_torso = 17, armor_heal = 1, armor_use = 40}, wear = 0, }) -- Register leggings : minetest.register_tool(":3d_armor:leggings_blackmithril", { - description = "Warrior's Black Mithril Plated Leggings", - inventory_image = "3d_armor_inv_leggings_black_mithril_plated_warrior.png", + description = "Black Mithril Leggings", + inventory_image = "3d_armor_inv_leggings_blackmithril.png", groups = {armor_legs = 17, armor_heal = 1, armor_use = 40}, wear = 0, }) -- Register boots : minetest.register_tool(":3d_armor:boots_blackmithril", { - description = "Warrior's Black Mithril Plated Boots", - inventory_image = "3d_armor_inv_boots_black_mithril_plated_warrior.png", + description = "Black Mithril Boots", + inventory_image = "3d_armor_inv_boots_blackmithril.png", groups = {armor_feet = 11, armor_heal = 1, armor_use = 40}, wear = 0, }) @@ -31,7 +31,7 @@ end -- Black Mithril craft recipe minetest.register_craft({ - output = "3d_armor:black_mithril", + output = "3d_armor:blackmithril", recipe = { {"nether:white", "mobs:dungeon_master_blood", "default:obsidian" }, {"default:mithril_ingot", "mobs:dungeon_master_diamond", "default:mithril_ingot" }, diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_boots_black_mithril_plated_warrior.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_boots_blackmithril.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_boots_black_mithril_plated_warrior.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_boots_blackmithril.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_boots_black_mithril_plated_warrior_preview.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_boots_blackmithril_preview.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_boots_black_mithril_plated_warrior_preview.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_boots_blackmithril_preview.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_chestplate_black_mithril_plated_warrior.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_chestplate_blackmithril.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_chestplate_black_mithril_plated_warrior.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_chestplate_blackmithril.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_chestplate_black_mithril_plated_warrior_preview.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_chestplate_blackmithril_preview.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_chestplate_black_mithril_plated_warrior_preview.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_chestplate_blackmithril_preview.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_helmet_black_mithril_plated_warrior.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_helmet_blackmithril.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_helmet_black_mithril_plated_warrior.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_helmet_blackmithril.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_helmet_black_mithril_plated_warrior_preview.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_helmet_blackmithril_preview.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_helmet_black_mithril_plated_warrior_preview.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_helmet_blackmithril_preview.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_inv_boots_black_mithril_plated_warrior.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_inv_boots_blackmithril.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_inv_boots_black_mithril_plated_warrior.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_inv_boots_blackmithril.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_inv_chestplate_black_mithril_plated_warrior.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_inv_chestplate_blackmithril.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_inv_chestplate_black_mithril_plated_warrior.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_inv_chestplate_blackmithril.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_inv_helmet_black_mithril_plated_warrior.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_inv_helmet_blackmithril.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_inv_helmet_black_mithril_plated_warrior.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_inv_helmet_blackmithril.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_inv_leggings_black_mithril_plated_warrior.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_inv_leggings_blackmithril.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_inv_leggings_black_mithril_plated_warrior.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_inv_leggings_blackmithril.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_leggings_black_mithril_plated_warrior.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_leggings_blackmithril.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_leggings_black_mithril_plated_warrior.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_leggings_blackmithril.png diff --git a/mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_leggings_black_mithril_plated_warrior_preview.png b/mods/3d_armor_classes/blackmithril/textures/3d_armor_leggings_blackmithril_preview.png similarity index 100% rename from mods/3d_armor_classes/black_mithril_plated_armor_warrior/textures/3d_armor_leggings_black_mithril_plated_warrior_preview.png rename to mods/3d_armor_classes/blackmithril/textures/3d_armor_leggings_blackmithril_preview.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/depends.txt b/mods/3d_armor_classes/harnededleather/depends.txt similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/depends.txt rename to mods/3d_armor_classes/harnededleather/depends.txt diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/init.lua b/mods/3d_armor_classes/harnededleather/init.lua similarity index 64% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/init.lua rename to mods/3d_armor_classes/harnededleather/init.lua index 44819b85..142840e9 100755 --- a/mods/3d_armor_classes/hardened_leather_armor_hunter/init.lua +++ b/mods/3d_armor_classes/harnededleather/init.lua @@ -1,29 +1,29 @@ if ARMOR_MATERIALS.hardened_leather then -- Register helmets : minetest.register_tool(":3d_armor:helmet_hardenedleather", { - description = "Hunter's Hardened Leather Helmet", - inventory_image = "3d_armor_inv_helmet_hardened_leather_hunter.png", + description = "Hardened Leather Helmet", + inventory_image = "3d_armor_inv_helmet_hardenedleather.png", groups = {armor_head = 5, armor_heal = 0, armor_use = 250}, wear = 0, }) -- Register chestplates : minetest.register_tool(":3d_armor:chestplate_hardenedleather", { - description = "Hunter's Hardened Leather Chestplate", - inventory_image = "3d_armor_inv_chestplate_hardened_leather_hunter.png", + description = "Hardened Leather Chestplate", + inventory_image = "3d_armor_inv_chestplate_hardenedleather.png", groups = {armor_torso = 8, armor_heal = 0, armor_use = 250}, wear = 0, }) -- Register leggings : minetest.register_tool(":3d_armor:leggings_hardenedleather", { - description = "Hunter's Hardened Leather Leggings", - inventory_image = "3d_armor_inv_leggings_hardened_leather_hunter.png", + description = "Hardened Leather Leggings", + inventory_image = "3d_armor_inv_leggings_hardenedleather.png", groups = {armor_legs = 8, armor_heal = 0, armor_use = 250}, wear = 0, }) -- Register boots : minetest.register_tool(":3d_armor:boots_hardenedleather", { - description = "Hunter's Hardened Leather Boots", - inventory_image = "3d_armor_inv_boots_hardened_leather_hunter.png", + description = "Hardened Leather Boots", + inventory_image = "3d_armor_inv_boots_hardenedleather.png", groups = {armor_feet = 5, armor_heal = 0, armor_use = 250}, wear = 0, }) @@ -31,7 +31,7 @@ end -- Hardened Leather craft recipe minetest.register_craft({ - output = "3d_armor:hardened_leather", + output = "3d_armor:hardenedleather", recipe = { {"default:steel_ingot", "mobs:leather", "default:bronze_ingot" }, {"mobs:leather", "mobs:leather", "mobs:leather" }, diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_boots_hardened_leather_hunter.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_boots_hardenedleather.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_boots_hardened_leather_hunter.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_boots_hardenedleather.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_boots_hardened_leather_hunter_preview.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_boots_hardenedleather_preview.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_boots_hardened_leather_hunter_preview.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_boots_hardenedleather_preview.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_chestplate_hardened_leather_hunter.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_chestplate_hardenedleather.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_chestplate_hardened_leather_hunter.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_chestplate_hardenedleather.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_chestplate_hardened_leather_hunter_preview.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_chestplate_hardenedleather_preview.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_chestplate_hardened_leather_hunter_preview.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_chestplate_hardenedleather_preview.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_helmet_hardened_leather_hunter.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_helmet_hardenedleather.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_helmet_hardened_leather_hunter.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_helmet_hardenedleather.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_helmet_hardened_leather_hunter_preview.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_helmet_hardenedleather_preview.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_helmet_hardened_leather_hunter_preview.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_helmet_hardenedleather_preview.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_inv_boots_hardened_leather_hunter.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_inv_boots_hardenedleather.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_inv_boots_hardened_leather_hunter.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_inv_boots_hardenedleather.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_inv_chestplate_hardened_leather_hunter.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_inv_chestplate_hardenedleather.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_inv_chestplate_hardened_leather_hunter.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_inv_chestplate_hardenedleather.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_inv_helmet_hardened_leather_hunter.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_inv_helmet_hardenedleather.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_inv_helmet_hardened_leather_hunter.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_inv_helmet_hardenedleather.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_inv_leggings_hardened_leather_hunter.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_inv_leggings_hardenedleather.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_inv_leggings_hardened_leather_hunter.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_inv_leggings_hardenedleather.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_leggings_hardened_leather_hunter.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_leggings_hardenedleather.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_leggings_hardened_leather_hunter.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_leggings_hardenedleather.png diff --git a/mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_leggings_hardened_leather_hunter_preview.png b/mods/3d_armor_classes/harnededleather/textures/3d_armor_leggings_hardenedleather_preview.png similarity index 100% rename from mods/3d_armor_classes/hardened_leather_armor_hunter/textures/3d_armor_leggings_hardened_leather_hunter_preview.png rename to mods/3d_armor_classes/harnededleather/textures/3d_armor_leggings_hardenedleather_preview.png diff --git a/mods/3d_armor_classes/magic_mithril_armor_wizard/depends.txt b/mods/3d_armor_classes/magicmithril/depends.txt similarity index 100% rename from mods/3d_armor_classes/magic_mithril_armor_wizard/depends.txt rename to mods/3d_armor_classes/magicmithril/depends.txt diff --git a/mods/3d_armor_classes/magic_mithril_armor_wizard/init.lua b/mods/3d_armor_classes/magicmithril/init.lua similarity index 100% rename from mods/3d_armor_classes/magic_mithril_armor_wizard/init.lua rename to mods/3d_armor_classes/magicmithril/init.lua diff --git a/mods/3d_armor_classes/obsidian_armor_wizard/depends.txt b/mods/3d_armor_classes/obsidian/depends.txt similarity index 100% rename from mods/3d_armor_classes/obsidian_armor_wizard/depends.txt rename to mods/3d_armor_classes/obsidian/depends.txt diff --git a/mods/3d_armor_classes/obsidian_armor_wizard/init.lua b/mods/3d_armor_classes/obsidian/init.lua similarity index 100% rename from mods/3d_armor_classes/obsidian_armor_wizard/init.lua rename to mods/3d_armor_classes/obsidian/init.lua diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/depends.txt b/mods/3d_armor_classes/reinforcedleather/depends.txt similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/depends.txt rename to mods/3d_armor_classes/reinforcedleather/depends.txt diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/init.lua b/mods/3d_armor_classes/reinforcedleather/init.lua similarity index 72% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/init.lua rename to mods/3d_armor_classes/reinforcedleather/init.lua index 944d7141..32c7e13a 100755 --- a/mods/3d_armor_classes/reinforced_leather_armor_hunter/init.lua +++ b/mods/3d_armor_classes/reinforcedleather/init.lua @@ -8,22 +8,22 @@ if ARMOR_MATERIALS.reinforced_leather then }) -- Register chestplates : minetest.register_tool(":3d_armor:chestplate_reinforcedleather", { - description = "Hunter's Reinforced Leather Chestplate", - inventory_image = "3d_armor_inv_chestplate_reinforced_leather_hunter.png", + description = "Reinforced Leather Chestplate", + inventory_image = "3d_armor_inv_chestplate_reinforcedleather.png", groups = {armor_torso = 11, armor_heal = 0, armor_use = 40}, wear = 0, }) -- Register leggings : minetest.register_tool(":3d_armor:leggings_reinforcedleather", { - description = "Hunter's Reinforced Leather Leggings", - inventory_image = "3d_armor_inv_leggings_reinforced_leather_hunter.png", + description = "Reinforced Leather Leggings", + inventory_image = "3d_armor_inv_leggings_reinforcedleather.png", groups = {armor_legs = 11, armor_heal = 0, armor_use = 40}, wear = 0, }) -- Register boots : minetest.register_tool(":3d_armor:boots_reinforcedleather", { - description = "Hunter's Reinforced Leather Boots", - inventory_image = "3d_armor_inv_boots_reinforced_leather_hunter.png", + description = "Reinforced Leather Boots", + inventory_image = "3d_armor_inv_boots_reinforcedleather.png", groups = {armor_feet = 6, armor_heal = 0, armor_use = 40}, wear = 0, }) @@ -31,7 +31,7 @@ end -- Reinforced Leather craft recipe minetest.register_craft({ - output = "3d_armor:reinforced_leather", + output = "3d_armor:reinforcedleather", recipe = { {"technic:brass_ingot", "moreores:mithril_ingot", "darkage:chain" }, {"mobs:leather", "mobs:minotaur_eye", "mobs:leather" }, diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_boots_reinforced_leather_hunter.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_boots_reinforcedleather.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_boots_reinforced_leather_hunter.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_boots_reinforcedleather.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_boots_reinforced_leather_hunter_preview.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_boots_reinforcedleather_preview.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_boots_reinforced_leather_hunter_preview.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_boots_reinforcedleather_preview.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_chestplate_reinforced_leather_hunter.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_chestplate_reinforcedleather.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_chestplate_reinforced_leather_hunter.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_chestplate_reinforcedleather.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_chestplate_reinforced_leather_hunter_preview.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_chestplate_reinforcedleather_preview.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_chestplate_reinforced_leather_hunter_preview.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_chestplate_reinforcedleather_preview.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_helmet_reinforced_leather_hunter.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_helmet_reinforcedleather.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_helmet_reinforced_leather_hunter.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_helmet_reinforcedleather.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_helmet_reinforced_leather_hunter_preview.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_helmet_reinforcedleather_preview.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_helmet_reinforced_leather_hunter_preview.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_helmet_reinforcedleather_preview.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_inv_boots_reinforced_leather_hunter.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_inv_boots_reinforcedleather.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_inv_boots_reinforced_leather_hunter.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_inv_boots_reinforcedleather.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_inv_chestplate_reinforced_leather_hunter.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_inv_chestplate_reinforcedleather.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_inv_chestplate_reinforced_leather_hunter.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_inv_chestplate_reinforcedleather.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_inv_helmet_reinforced_leather_hunter.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_inv_helmet_reinforcedleather.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_inv_helmet_reinforced_leather_hunter.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_inv_helmet_reinforcedleather.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_inv_leggings_reinforced_leather_hunter.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_inv_legginigs_reinforcedleather.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_inv_leggings_reinforced_leather_hunter.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_inv_legginigs_reinforcedleather.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_leggings_reinforced_leather_hunter.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_leggings_reinforcedleather.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_leggings_reinforced_leather_hunter.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_leggings_reinforcedleather.png diff --git a/mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_leggings_reinforced_leather_hunter_preview.png b/mods/3d_armor_classes/reinforcedleather/textures/3d_armor_leggings_reinforcedleather_preview.png similarity index 100% rename from mods/3d_armor_classes/reinforced_leather_armor_hunter/textures/3d_armor_leggings_reinforced_leather_hunter_preview.png rename to mods/3d_armor_classes/reinforcedleather/textures/3d_armor_leggings_reinforcedleather_preview.png diff --git a/mods/3d_armor_classes/sounds/3d_armor_full_hunter.ogg b/mods/pclasses/sounds/3d_armor_full_hunter.ogg similarity index 100% rename from mods/3d_armor_classes/sounds/3d_armor_full_hunter.ogg rename to mods/pclasses/sounds/3d_armor_full_hunter.ogg diff --git a/mods/3d_armor_classes/sounds/3d_armor_full_warrior.ogg b/mods/pclasses/sounds/3d_armor_full_warrior.ogg similarity index 100% rename from mods/3d_armor_classes/sounds/3d_armor_full_warrior.ogg rename to mods/pclasses/sounds/3d_armor_full_warrior.ogg diff --git a/mods/3d_armor_classes/sounds/3d_armor_full_warrior.ogg-old b/mods/pclasses/sounds/3d_armor_full_warrior.ogg-old similarity index 100% rename from mods/3d_armor_classes/sounds/3d_armor_full_warrior.ogg-old rename to mods/pclasses/sounds/3d_armor_full_warrior.ogg-old diff --git a/mods/3d_armor_classes/sounds/3d_armor_full_wizard.ogg b/mods/pclasses/sounds/3d_armor_full_wizard.ogg similarity index 100% rename from mods/3d_armor_classes/sounds/3d_armor_full_wizard.ogg rename to mods/pclasses/sounds/3d_armor_full_wizard.ogg diff --git a/mods/3d_armor_classes/sounds/init.lua b/mods/pclasses/sounds/init.lua similarity index 100% rename from mods/3d_armor_classes/sounds/init.lua rename to mods/pclasses/sounds/init.lua diff --git a/worlds/minetestforfun/world.mt b/worlds/minetestforfun/world.mt index a118a90e..158014be 100755 --- a/worlds/minetestforfun/world.mt +++ b/worlds/minetestforfun/world.mt @@ -167,10 +167,10 @@ load_mod_throwing = true load_mod_pclasses = true load_mod_3d_armor = true load_mod_technic_armor = false -load_mod_leather_armor_hunter = false -load_mod_magic_mithril_armor_wizard = false -load_mod_obsidian_armor_wizard = false -load_mod_reinforced_leather_armor_hunter = false +load_mod_hardenedleather = false +load_mod_magicmithril = false +load_mod_obsidian = false +load_mod_reinforced = false load_mod_shields = true load_mod_wieldview = true load_mod_returnmirror = true