diff --git a/3d_armor/crafting_guide.txt b/3d_armor/crafting_guide.txt index 89bff0b..d41be9d 100644 --- a/3d_armor/crafting_guide.txt +++ b/3d_armor/crafting_guide.txt @@ -15,6 +15,7 @@ Helmets: [3d_armor:helmet_steel] X = [default:steel_ingot] [3d_armor:helmet_bronze] X = [default:bronze_ingot] [3d_armor:helmet_diamond] X = [default:diamond] +[3d_armor:helmet_diamond] X = [default:gold_ingot] [3d_armor:helmet_mithril] X = [moreores:mithril_ingot] * Chestplates: @@ -31,6 +32,7 @@ Chestplates: [3d_armor:chestplate_steel] X = [default:steel_ingot] [3d_armor:chestplate_bronze] X = [default:bronze_ingot] [3d_armor:chestplate_diamond] X = [default:diamond] +[3d_armor:chestplate_diamond] X = [default:gold_ingot] [3d_armor:chestplate_mithril] X = [moreores:mithril_ingot] * Leggings: @@ -47,6 +49,7 @@ Leggings: [3d_armor:leggings_steel] X = [default:steel_ingot] [3d_armor:leggings_bronze] X = [default:bronze_ingot] [3d_armor:leggings_diamond] X = [default:diamond] +[3d_armor:leggings_diamond] X = [default:gold_ingot] [3d_armor:leggings_mithril] X = [moreores:mithril_ingot] * Boots: @@ -61,6 +64,7 @@ Boots: [3d_armor:boots_steel] X = [default:steel_ingot] [3d_armor:boots_bronze] X = [default:bronze_ingot [3d_armor:boots_diamond] X = [default:diamond] +[3d_armor:boots_diamond] X = [default:gold_ingot] [3d_armor:boots_mithril] X = [moreores:mithril_ingot] * * Requires moreores mod by Calinou - https://forum.minetest.net/viewtopic.php?id=549 diff --git a/3d_armor/init.lua b/3d_armor/init.lua index 3104e9a..ff31ba7 100644 --- a/3d_armor/init.lua +++ b/3d_armor/init.lua @@ -32,6 +32,13 @@ minetest.register_tool("3d_armor:helmet_diamond", { wear = 0, }) +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, +}) + if use_moreores then minetest.register_tool("3d_armor:helmet_mithril", { description = "Mithril Helmet", @@ -71,6 +78,13 @@ minetest.register_tool("3d_armor:chestplate_diamond", { 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, +}) + if use_moreores then minetest.register_tool("3d_armor:chestplate_mithril", { description = "Mithril Chestplate", @@ -110,6 +124,13 @@ minetest.register_tool("3d_armor:leggings_diamond", { 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, +}) + if use_moreores then minetest.register_tool("3d_armor:leggings_mithril", { description = "Mithril Leggings", @@ -149,6 +170,13 @@ minetest.register_tool("3d_armor:boots_diamond", { 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, +}) + if use_moreores then minetest.register_tool("3d_armor:boots_mithril", { description = "Mithril Boots", @@ -165,6 +193,7 @@ local craft_ingreds = { steel = "default:steel_ingot", bronze = "default:bronze_ingot", diamond = "default:diamond", + gold = "default:gold_ingot", } if use_moreores then diff --git a/3d_armor/textures/3d_armor_boots_gold.png b/3d_armor/textures/3d_armor_boots_gold.png new file mode 100644 index 0000000..68eef7d Binary files /dev/null and b/3d_armor/textures/3d_armor_boots_gold.png differ diff --git a/3d_armor/textures/3d_armor_boots_gold_preview.png b/3d_armor/textures/3d_armor_boots_gold_preview.png new file mode 100644 index 0000000..6870fb5 Binary files /dev/null and b/3d_armor/textures/3d_armor_boots_gold_preview.png differ diff --git a/3d_armor/textures/3d_armor_chestplate_gold.png b/3d_armor/textures/3d_armor_chestplate_gold.png new file mode 100644 index 0000000..bcfe52d Binary files /dev/null and b/3d_armor/textures/3d_armor_chestplate_gold.png differ diff --git a/3d_armor/textures/3d_armor_chestplate_gold_preview.png b/3d_armor/textures/3d_armor_chestplate_gold_preview.png new file mode 100644 index 0000000..5ddd5d9 Binary files /dev/null and b/3d_armor/textures/3d_armor_chestplate_gold_preview.png differ diff --git a/3d_armor/textures/3d_armor_helmet_gold.png b/3d_armor/textures/3d_armor_helmet_gold.png new file mode 100644 index 0000000..ed00cfe Binary files /dev/null and b/3d_armor/textures/3d_armor_helmet_gold.png differ diff --git a/3d_armor/textures/3d_armor_helmet_gold_preview.png b/3d_armor/textures/3d_armor_helmet_gold_preview.png new file mode 100644 index 0000000..73a5102 Binary files /dev/null and b/3d_armor/textures/3d_armor_helmet_gold_preview.png differ diff --git a/3d_armor/textures/3d_armor_inv_boots_gold.png b/3d_armor/textures/3d_armor_inv_boots_gold.png new file mode 100644 index 0000000..f60ded1 Binary files /dev/null and b/3d_armor/textures/3d_armor_inv_boots_gold.png differ diff --git a/3d_armor/textures/3d_armor_inv_chestplate_gold.png b/3d_armor/textures/3d_armor_inv_chestplate_gold.png new file mode 100644 index 0000000..adce8a3 Binary files /dev/null and b/3d_armor/textures/3d_armor_inv_chestplate_gold.png differ diff --git a/3d_armor/textures/3d_armor_inv_helmet_gold.png b/3d_armor/textures/3d_armor_inv_helmet_gold.png new file mode 100644 index 0000000..5a225c8 Binary files /dev/null and b/3d_armor/textures/3d_armor_inv_helmet_gold.png differ diff --git a/3d_armor/textures/3d_armor_inv_leggings_gold.png b/3d_armor/textures/3d_armor_inv_leggings_gold.png new file mode 100644 index 0000000..29a7da9 Binary files /dev/null and b/3d_armor/textures/3d_armor_inv_leggings_gold.png differ diff --git a/3d_armor/textures/3d_armor_leggings_gold.png b/3d_armor/textures/3d_armor_leggings_gold.png new file mode 100644 index 0000000..3ef2693 Binary files /dev/null and b/3d_armor/textures/3d_armor_leggings_gold.png differ diff --git a/3d_armor/textures/3d_armor_leggings_gold_preview.png b/3d_armor/textures/3d_armor_leggings_gold_preview.png new file mode 100644 index 0000000..6d2fe4c Binary files /dev/null and b/3d_armor/textures/3d_armor_leggings_gold_preview.png differ diff --git a/shields/crafting_guide.txt b/shields/crafting_guide.txt index 5800e94..6426f68 100644 --- a/shields/crafting_guide.txt +++ b/shields/crafting_guide.txt @@ -13,5 +13,4 @@ Shields -- Crafting Guide [shields:shield_steel] X = [default:steel_ingot] [shields:shield_bronze] X = [default:bronze_ingot] [shields:shield_diamond] X = [default:diamond] - - +[shields:shield_gold] X = [default:gold_ingot] diff --git a/shields/init.lua b/shields/init.lua index ff59b4b..d1dd3ba 100644 --- a/shields/init.lua +++ b/shields/init.lua @@ -30,6 +30,13 @@ minetest.register_tool("shields:shield_diamond", { wear = 0, }) +minetest.register_tool("shields:shield_gold", { + description = "Gold Shield", + inventory_image = "shields_inv_shield_gold.png", + groups = {armor_shield=10, armor_heal=6, armor_use=250}, + wear = 0, +}) + if use_moreores then minetest.register_tool("shields:shield_mithril", { description = "Mithril Shield", @@ -44,6 +51,7 @@ local craft_ingreds = { steel = "default:steel_ingot", bronze = "default:bronze_ingot", diamond = "default:diamond", + gold = "default:gold_ingot", } if has_moreores then diff --git a/shields/textures/shields_inv_shield_gold.png b/shields/textures/shields_inv_shield_gold.png new file mode 100644 index 0000000..56ef351 Binary files /dev/null and b/shields/textures/shields_inv_shield_gold.png differ diff --git a/shields/textures/shields_shield_gold.png b/shields/textures/shields_shield_gold.png new file mode 100644 index 0000000..1bea476 Binary files /dev/null and b/shields/textures/shields_shield_gold.png differ diff --git a/shields/textures/shields_shield_gold_preview.png b/shields/textures/shields_shield_gold_preview.png new file mode 100644 index 0000000..10e76d9 Binary files /dev/null and b/shields/textures/shields_shield_gold_preview.png differ