nerfed armor, shields, and rarity

This commit is contained in:
FsxShader2012 2015-11-02 12:56:37 +01:00
parent 420cd1f610
commit f08d0b21ba
3 changed files with 7 additions and 7 deletions

@ -154,8 +154,8 @@ minetest.register_ore({
ore = "rainbow_ore:rainbow_ore_block", ore = "rainbow_ore:rainbow_ore_block",
wherein = "default:stone", wherein = "default:stone",
clust_scarcity = 17*17*17, clust_scarcity = 17*17*17,
clust_num_ores = 4, clust_num_ores = 3,
clust_size = 3, clust_size = 3,
height_min = -31000, height_min = -31000,
height_max = -100, height_max = -200,
}) })

@ -2,25 +2,25 @@
minetest.register_tool("rainbow_ore:rainbow_ore_helmet", { minetest.register_tool("rainbow_ore:rainbow_ore_helmet", {
description = "Rainbow Helmet", description = "Rainbow Helmet",
inventory_image = "rainbow_ore_helmet_inv.png", inventory_image = "rainbow_ore_helmet_inv.png",
groups = {armor_head=30, armor_heal=24, armor_use=50}, groups = {armor_head=20, armor_heal=17, armor_use=40},
wear = 0, wear = 0,
}) })
minetest.register_tool("rainbow_ore:rainbow_ore_chestplate", { minetest.register_tool("rainbow_ore:rainbow_ore_chestplate", {
description = "Rainbow Chestplate", description = "Rainbow Chestplate",
inventory_image = "rainbow_ore_chestplate_inv.png", inventory_image = "rainbow_ore_chestplate_inv.png",
groups = {armor_torso=40, armor_heal=24, armor_use=50}, groups = {armor_torso=25, armor_heal=17, armor_use=40},
wear = 0, wear = 0,
}) })
minetest.register_tool("rainbow_ore:rainbow_ore_leggings", { minetest.register_tool("rainbow_ore:rainbow_ore_leggings", {
description = "Rainbow Leggings", description = "Rainbow Leggings",
inventory_image = "rainbow_ore_leggings_inv.png", inventory_image = "rainbow_ore_leggings_inv.png",
groups = {armor_legs=40, armor_heal=24, armor_use=50}, groups = {armor_legs=25, armor_heal=17, armor_use=40},
wear = 0, wear = 0,
}) })
minetest.register_tool("rainbow_ore:rainbow_ore_boots", { minetest.register_tool("rainbow_ore:rainbow_ore_boots", {
description = "Rainbow Boots", description = "Rainbow Boots",
inventory_image = "rainbow_ore_boots_inv.png", inventory_image = "rainbow_ore_boots_inv.png",
groups = {armor_feet=30, armor_heal=24, armor_use=50}, groups = {armor_feet=20, armor_heal=17, armor_use=40},
wear = 0, wear = 0,
}) })

@ -2,7 +2,7 @@
minetest.register_tool("rainbow_ore:rainbow_ore_shield", { minetest.register_tool("rainbow_ore:rainbow_ore_shield", {
description = "Rainbow Shield", description = "Rainbow Shield",
inventory_image = "rainbow_ore_shield_inv.png", inventory_image = "rainbow_ore_shield_inv.png",
groups = {armor_shield=30, armor_heal=24, armor_use=50}, groups = {armor_shield=20, armor_heal=17, armor_use=40, armor_fire=1},
wear = 0, wear = 0,
}) })