|
@ -15,6 +15,7 @@ Helmets:
|
||||||
[3d_armor:helmet_steel] X = [default:steel_ingot]
|
[3d_armor:helmet_steel] X = [default:steel_ingot]
|
||||||
[3d_armor:helmet_bronze] X = [default:bronze_ingot]
|
[3d_armor:helmet_bronze] X = [default:bronze_ingot]
|
||||||
[3d_armor:helmet_diamond] X = [default:diamond]
|
[3d_armor:helmet_diamond] X = [default:diamond]
|
||||||
|
[3d_armor:helmet_diamond] X = [default:gold_ingot]
|
||||||
[3d_armor:helmet_mithril] X = [moreores:mithril_ingot] *
|
[3d_armor:helmet_mithril] X = [moreores:mithril_ingot] *
|
||||||
|
|
||||||
Chestplates:
|
Chestplates:
|
||||||
|
@ -31,6 +32,7 @@ Chestplates:
|
||||||
[3d_armor:chestplate_steel] X = [default:steel_ingot]
|
[3d_armor:chestplate_steel] X = [default:steel_ingot]
|
||||||
[3d_armor:chestplate_bronze] X = [default:bronze_ingot]
|
[3d_armor:chestplate_bronze] X = [default:bronze_ingot]
|
||||||
[3d_armor:chestplate_diamond] X = [default:diamond]
|
[3d_armor:chestplate_diamond] X = [default:diamond]
|
||||||
|
[3d_armor:chestplate_diamond] X = [default:gold_ingot]
|
||||||
[3d_armor:chestplate_mithril] X = [moreores:mithril_ingot] *
|
[3d_armor:chestplate_mithril] X = [moreores:mithril_ingot] *
|
||||||
|
|
||||||
Leggings:
|
Leggings:
|
||||||
|
@ -47,6 +49,7 @@ Leggings:
|
||||||
[3d_armor:leggings_steel] X = [default:steel_ingot]
|
[3d_armor:leggings_steel] X = [default:steel_ingot]
|
||||||
[3d_armor:leggings_bronze] X = [default:bronze_ingot]
|
[3d_armor:leggings_bronze] X = [default:bronze_ingot]
|
||||||
[3d_armor:leggings_diamond] X = [default:diamond]
|
[3d_armor:leggings_diamond] X = [default:diamond]
|
||||||
|
[3d_armor:leggings_diamond] X = [default:gold_ingot]
|
||||||
[3d_armor:leggings_mithril] X = [moreores:mithril_ingot] *
|
[3d_armor:leggings_mithril] X = [moreores:mithril_ingot] *
|
||||||
|
|
||||||
Boots:
|
Boots:
|
||||||
|
@ -61,6 +64,7 @@ Boots:
|
||||||
[3d_armor:boots_steel] X = [default:steel_ingot]
|
[3d_armor:boots_steel] X = [default:steel_ingot]
|
||||||
[3d_armor:boots_bronze] X = [default:bronze_ingot
|
[3d_armor:boots_bronze] X = [default:bronze_ingot
|
||||||
[3d_armor:boots_diamond] X = [default:diamond]
|
[3d_armor:boots_diamond] X = [default:diamond]
|
||||||
|
[3d_armor:boots_diamond] X = [default:gold_ingot]
|
||||||
[3d_armor:boots_mithril] X = [moreores:mithril_ingot] *
|
[3d_armor:boots_mithril] X = [moreores:mithril_ingot] *
|
||||||
|
|
||||||
* Requires moreores mod by Calinou - https://forum.minetest.net/viewtopic.php?id=549
|
* Requires moreores mod by Calinou - https://forum.minetest.net/viewtopic.php?id=549
|
||||||
|
|
|
@ -32,6 +32,13 @@ minetest.register_tool("3d_armor:helmet_diamond", {
|
||||||
wear = 0,
|
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
|
if use_moreores then
|
||||||
minetest.register_tool("3d_armor:helmet_mithril", {
|
minetest.register_tool("3d_armor:helmet_mithril", {
|
||||||
description = "Mithril Helmet",
|
description = "Mithril Helmet",
|
||||||
|
@ -71,6 +78,13 @@ minetest.register_tool("3d_armor:chestplate_diamond", {
|
||||||
wear = 0,
|
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
|
if use_moreores then
|
||||||
minetest.register_tool("3d_armor:chestplate_mithril", {
|
minetest.register_tool("3d_armor:chestplate_mithril", {
|
||||||
description = "Mithril Chestplate",
|
description = "Mithril Chestplate",
|
||||||
|
@ -110,6 +124,13 @@ minetest.register_tool("3d_armor:leggings_diamond", {
|
||||||
wear = 0,
|
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
|
if use_moreores then
|
||||||
minetest.register_tool("3d_armor:leggings_mithril", {
|
minetest.register_tool("3d_armor:leggings_mithril", {
|
||||||
description = "Mithril Leggings",
|
description = "Mithril Leggings",
|
||||||
|
@ -149,6 +170,13 @@ minetest.register_tool("3d_armor:boots_diamond", {
|
||||||
wear = 0,
|
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
|
if use_moreores then
|
||||||
minetest.register_tool("3d_armor:boots_mithril", {
|
minetest.register_tool("3d_armor:boots_mithril", {
|
||||||
description = "Mithril Boots",
|
description = "Mithril Boots",
|
||||||
|
@ -165,6 +193,7 @@ local craft_ingreds = {
|
||||||
steel = "default:steel_ingot",
|
steel = "default:steel_ingot",
|
||||||
bronze = "default:bronze_ingot",
|
bronze = "default:bronze_ingot",
|
||||||
diamond = "default:diamond",
|
diamond = "default:diamond",
|
||||||
|
gold = "default:gold_ingot",
|
||||||
}
|
}
|
||||||
|
|
||||||
if use_moreores then
|
if use_moreores then
|
||||||
|
|
BIN
3d_armor/textures/3d_armor_boots_gold.png
Normal file
After Width: | Height: | Size: 567 B |
BIN
3d_armor/textures/3d_armor_boots_gold_preview.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
3d_armor/textures/3d_armor_chestplate_gold.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
3d_armor/textures/3d_armor_chestplate_gold_preview.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
3d_armor/textures/3d_armor_helmet_gold.png
Normal file
After Width: | Height: | Size: 830 B |
BIN
3d_armor/textures/3d_armor_helmet_gold_preview.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
3d_armor/textures/3d_armor_inv_boots_gold.png
Normal file
After Width: | Height: | Size: 182 B |
BIN
3d_armor/textures/3d_armor_inv_chestplate_gold.png
Normal file
After Width: | Height: | Size: 215 B |
BIN
3d_armor/textures/3d_armor_inv_helmet_gold.png
Normal file
After Width: | Height: | Size: 201 B |
BIN
3d_armor/textures/3d_armor_inv_leggings_gold.png
Normal file
After Width: | Height: | Size: 215 B |
BIN
3d_armor/textures/3d_armor_leggings_gold.png
Normal file
After Width: | Height: | Size: 569 B |
BIN
3d_armor/textures/3d_armor_leggings_gold_preview.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
|
@ -13,5 +13,4 @@ Shields -- Crafting Guide
|
||||||
[shields:shield_steel] X = [default:steel_ingot]
|
[shields:shield_steel] X = [default:steel_ingot]
|
||||||
[shields:shield_bronze] X = [default:bronze_ingot]
|
[shields:shield_bronze] X = [default:bronze_ingot]
|
||||||
[shields:shield_diamond] X = [default:diamond]
|
[shields:shield_diamond] X = [default:diamond]
|
||||||
|
[shields:shield_gold] X = [default:gold_ingot]
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,13 @@ minetest.register_tool("shields:shield_diamond", {
|
||||||
wear = 0,
|
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
|
if use_moreores then
|
||||||
minetest.register_tool("shields:shield_mithril", {
|
minetest.register_tool("shields:shield_mithril", {
|
||||||
description = "Mithril Shield",
|
description = "Mithril Shield",
|
||||||
|
@ -44,6 +51,7 @@ local craft_ingreds = {
|
||||||
steel = "default:steel_ingot",
|
steel = "default:steel_ingot",
|
||||||
bronze = "default:bronze_ingot",
|
bronze = "default:bronze_ingot",
|
||||||
diamond = "default:diamond",
|
diamond = "default:diamond",
|
||||||
|
gold = "default:gold_ingot",
|
||||||
}
|
}
|
||||||
|
|
||||||
if has_moreores then
|
if has_moreores then
|
||||||
|
|
BIN
shields/textures/shields_inv_shield_gold.png
Normal file
After Width: | Height: | Size: 610 B |
BIN
shields/textures/shields_shield_gold.png
Normal file
After Width: | Height: | Size: 643 B |
BIN
shields/textures/shields_shield_gold_preview.png
Normal file
After Width: | Height: | Size: 1.8 KiB |