forked from mtcontrib/3d_armor
Add unified_skins and update for game changes.
This commit is contained in:
@ -1,52 +1,9 @@
|
||||
3D Armor -- Moreores Armor
|
||||
--------------------------
|
||||
more_armor -- Crafting Guide
|
||||
----------------------------
|
||||
|
||||
Crafting Guide
|
||||
--------------
|
||||
M = Mithril Ingot [moreores:mithril_ingot]
|
||||
|
||||
B = Bronze Ingot [moreores:bronze_ingot], M = Mithril Ingot [moreores:mithril_ingot]
|
||||
|
||||
Bronze Helmet [more_armor:helmet_bronze]
|
||||
|
||||
+---+---+---+
|
||||
| B | B | B |
|
||||
+---+---+---+
|
||||
| B | | B |
|
||||
+---+---+---+
|
||||
| | | |
|
||||
+---+---+---+
|
||||
|
||||
Bronze Chestplate [more_armor:chestplate_bronze]
|
||||
|
||||
+---+---+---+
|
||||
| B | | B |
|
||||
+---+---+---+
|
||||
| B | B | B |
|
||||
+---+---+---+
|
||||
| B | B | B |
|
||||
+---+---+---+
|
||||
|
||||
Bronze Leggings [more_armor:leggings_bronze]
|
||||
|
||||
+---+---+---+
|
||||
| B | B | B |
|
||||
+---+---+---+
|
||||
| B | | B |
|
||||
+---+---+---+
|
||||
| B | | B |
|
||||
+---+---+---+
|
||||
|
||||
Bronze Shield [more_armor:shield_bronze]
|
||||
|
||||
+---+---+---+
|
||||
| B | B | B |
|
||||
+---+---+---+
|
||||
| B | B | B |
|
||||
+---+---+---+
|
||||
| | B | |
|
||||
+---+---+---+
|
||||
|
||||
Mithril Helmet [more_armor:helmet_mithril]
|
||||
Mithril Helmet: [more_armor:helmet_mithril]
|
||||
|
||||
+---+---+---+
|
||||
| M | M | M |
|
||||
@ -56,7 +13,7 @@ Mithril Helmet [more_armor:helmet_mithril]
|
||||
| | | |
|
||||
+---+---+---+
|
||||
|
||||
Mithril Chestplate [more_armor:chestplate_mithril]
|
||||
Mithril Chestplate: [more_armor:chestplate_mithril]
|
||||
|
||||
+---+---+---+
|
||||
| M | | M |
|
||||
@ -66,7 +23,7 @@ Mithril Chestplate [more_armor:chestplate_mithril]
|
||||
| M | M | M |
|
||||
+---+---+---+
|
||||
|
||||
Mithril Leggings [more_armor:leggings_mithril]
|
||||
Mithril Leggings: [more_armor:leggings_mithril]
|
||||
|
||||
+---+---+---+
|
||||
| M | M | M |
|
||||
@ -76,7 +33,7 @@ Mithril Leggings [more_armor:leggings_mithril]
|
||||
| M | | M |
|
||||
+---+---+---+
|
||||
|
||||
Mithril Shield [more_armor:shield_mithril]
|
||||
Mithril Shield: [more_armor:shield_mithril]
|
||||
|
||||
+---+---+---+
|
||||
| M | M | M |
|
||||
|
@ -1,20 +1,6 @@
|
||||
|
||||
-- Override moreores weapons (make them more powerful)
|
||||
|
||||
minetest.register_tool(":moreores:sword_bronze", {
|
||||
description = "Bronze Sword",
|
||||
inventory_image = "moreores_tool_bronzesword.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.0,
|
||||
max_drop_level=1,
|
||||
groupcaps={
|
||||
fleshy={times={[1]=1.00, [2]=0.80, [3]=0.40}, uses=25, maxlevel=2},
|
||||
snappy={times={[2]=0.70, [3]=0.25}, uses=100, maxlevel=1},
|
||||
choppy={times={[3]=0.65}, uses=50, maxlevel=0}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_tool(":moreores:sword_mithril", {
|
||||
description = "Mithril Sword",
|
||||
inventory_image = "moreores_tool_mithrilsword.png",
|
||||
@ -31,29 +17,13 @@ minetest.register_tool(":moreores:sword_mithril", {
|
||||
|
||||
-- Regisiter Head Armor
|
||||
|
||||
minetest.register_tool("more_armor:helmet_bronze", {
|
||||
description = "Bronze Helmet",
|
||||
inventory_image = "more_armor_inv_helmet_bronze.png",
|
||||
groups = {armor_head=4, armor_heal=15, armor_use=500},
|
||||
wear = 0,
|
||||
})
|
||||
|
||||
minetest.register_tool("more_armor:helmet_mithril", {
|
||||
description = "Mithril Helmet",
|
||||
inventory_image = "more_armor_inv_helmet_mithril.png",
|
||||
groups = {armor_head=5, armor_heal=20, armor_use=100},
|
||||
groups = {armor_head=15, armor_heal=15, armor_use=50},
|
||||
wear = 0,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "more_armor:helmet_bronze",
|
||||
recipe = {
|
||||
{"moreores:bronze_ingot", "moreores:bronze_ingot", "moreores:bronze_ingot"},
|
||||
{"moreores:bronze_ingot", "", "moreores:bronze_ingot"},
|
||||
{"", "", ""},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "more_armor:helmet_mithril",
|
||||
recipe = {
|
||||
@ -65,29 +35,13 @@ minetest.register_craft({
|
||||
|
||||
-- Regisiter Torso Armor
|
||||
|
||||
minetest.register_tool("more_armor:chestplate_bronze", {
|
||||
description = "Bronze Chestplate",
|
||||
inventory_image = "more_armor_inv_chestplate_bronze.png",
|
||||
groups = {armor_torso=4, armor_heal=20, armor_use=1000},
|
||||
wear = 0,
|
||||
})
|
||||
|
||||
minetest.register_tool("more_armor:chestplate_mithril", {
|
||||
description = "Mithril Chestplate",
|
||||
inventory_image = "more_armor_inv_chestplate_mithril.png",
|
||||
groups = {armor_torso=5, armor_heal=25, armor_use=250},
|
||||
groups = {armor_torso=25, armor_heal=15, armor_use=50},
|
||||
wear = 0,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "more_armor:chestplate_bronze",
|
||||
recipe = {
|
||||
{"moreores:bronze_ingot", "", "moreores:bronze_ingot"},
|
||||
{"moreores:bronze_ingot", "moreores:bronze_ingot", "moreores:bronze_ingot"},
|
||||
{"moreores:bronze_ingot", "moreores:bronze_ingot", "moreores:bronze_ingot"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "more_armor:chestplate_mithril",
|
||||
recipe = {
|
||||
@ -99,29 +53,13 @@ minetest.register_craft({
|
||||
|
||||
-- Regisiter Leg Armor
|
||||
|
||||
minetest.register_tool("more_armor:leggings_bronze", {
|
||||
description = "Bronze Leggings",
|
||||
inventory_image = "more_armor_inv_leggings_bronze.png",
|
||||
groups = {armor_legs=4, armor_heal=15, armor_use=500},
|
||||
wear = 0,
|
||||
})
|
||||
|
||||
minetest.register_tool("more_armor:leggings_mithril", {
|
||||
description = "Mithril Leggings",
|
||||
inventory_image = "more_armor_inv_leggings_mithril.png",
|
||||
groups = {armor_legs=5, armor_heal=20, armor_use=100},
|
||||
groups = {armor_legs=20, armor_heal=15, armor_use=50},
|
||||
wear = 0,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "more_armor:leggings_bronze",
|
||||
recipe = {
|
||||
{"moreores:bronze_ingot", "moreores:bronze_ingot", "moreores:bronze_ingot"},
|
||||
{"moreores:bronze_ingot", "", "moreores:bronze_ingot"},
|
||||
{"moreores:bronze_ingot", "", "moreores:bronze_ingot"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "more_armor:leggings_mithril",
|
||||
recipe = {
|
||||
@ -133,29 +71,13 @@ minetest.register_craft({
|
||||
|
||||
-- Regisiter Shields
|
||||
|
||||
minetest.register_tool("more_armor:shield_bronze", {
|
||||
description = "Bronze Shield",
|
||||
inventory_image = "more_armor_inv_shield_bronze.png",
|
||||
groups = {armor_shield=4, armor_heal=20, armor_use=500},
|
||||
wear = 0,
|
||||
})
|
||||
|
||||
minetest.register_tool("more_armor:shield_mithril", {
|
||||
description = "Mithril Shield",
|
||||
inventory_image = "more_armor_inv_shield_mithril.png",
|
||||
groups = {armor_shield=5, armor_heal=25, armor_use=100},
|
||||
groups = {armor_shield=25, armor_heal=15, armor_use=50},
|
||||
wear = 0,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "more_armor:shield_bronze",
|
||||
recipe = {
|
||||
{"moreores:bronze_ingot", "moreores:bronze_ingot", "moreores:bronze_ingot"},
|
||||
{"moreores:bronze_ingot", "moreores:bronze_ingot", "moreores:bronze_ingot"},
|
||||
{"", "moreores:bronze_ingot", ""},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "more_armor:shield_mithril",
|
||||
recipe = {
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Reference in New Issue
Block a user