Tweak armor values
This commit is contained in:
parent
c1e648877d
commit
71a53fbef8
12 changed files with 89 additions and 69 deletions
|
@ -4,9 +4,9 @@
|
|||
armor:register_armor("obsidianstuff:helmet_obsidian", {
|
||||
description = "Obsidian Helmet",
|
||||
inventory_image = "obsidianstuff_inv_helmet_obsidian.png",
|
||||
groups = {armor_head = 1, armor_heal = 10, armor_use = 500, armor_fire = 15},
|
||||
groups = {armor_head = 14, armor_heal = 10, armor_use = 70, armor_fire = 15, armor_radiation=2},
|
||||
armor_groups = {fleshy = 14},
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 2}
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 3}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -24,9 +24,9 @@ minetest.register_craft({
|
|||
armor:register_armor("obsidianstuff:chestplate_obsidian", {
|
||||
description = "Obsidian Chestplate",
|
||||
inventory_image = "obsidianstuff_inv_chestplate_obsidian.png",
|
||||
groups = {armor_torso = 1, armor_heal = 10, armor_use = 500, armor_fire = 15},
|
||||
groups = {armor_torso = 18, armor_heal = 10, armor_use = 70, armor_fire = 15, armor_radiation=6},
|
||||
armor_groups = {fleshy = 18},
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 2}
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 3}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -44,9 +44,9 @@ minetest.register_craft({
|
|||
armor:register_armor("obsidianstuff:leggings_obsidian", {
|
||||
description = "Obsidian Leggings",
|
||||
inventory_image = "obsidianstuff_inv_leggings_obsidian.png",
|
||||
groups = {armor_legs = 1, armor_heal = 10, armor_use = 500, armor_fire = 15},
|
||||
groups = {armor_legs = 18, armor_heal = 10, armor_use = 70, armor_fire = 15, armor_radiation=3},
|
||||
armor_groups = {fleshy = 18},
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 2}
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 3}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -64,9 +64,9 @@ minetest.register_craft({
|
|||
armor:register_armor("obsidianstuff:boots_obsidian", {
|
||||
description = "Obsidian Boots",
|
||||
inventory_image = "obsidianstuff_inv_boots_obsidian.png",
|
||||
groups = {armor_feet = 1, armor_heal = 10, armor_use = 500, armor_fire = 15},
|
||||
groups = {armor_feet = 14, armor_heal = 10, armor_use = 70, armor_fire = 15, armor_radiation=2},
|
||||
armor_groups = {fleshy = 14},
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 2}
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 3}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -85,9 +85,9 @@ if minetest.get_modpath("shields") then
|
|||
armor:register_armor("obsidianstuff:shield_obsidian", {
|
||||
description = "Obsidian Shield",
|
||||
inventory_image = "obsidianstuff_inv_shield_obsidian.png",
|
||||
groups = {armor_shield = 1, armor_heal = 10, armor_use = 500, armor_fire = 15},
|
||||
groups = {armor_shield = 18, armor_heal = 10, armor_use = 70, armor_fire = 15},
|
||||
armor_groups = {fleshy = 18},
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 2}
|
||||
damage_groups = {cracky = 2, snappy = 2, choppy = 2, level = 3}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue