Modifiy armor_use to 20

axinite
AugTop 2018-06-27 21:24:17 +02:00
parent 97ad06238f
commit 92856ad0f3
2 changed files with 5 additions and 5 deletions

View File

@ -6,25 +6,25 @@ end
minetest.register_tool("rainbow_armor:rainbow_helmet", {
description = "Rainbow Helmet",
inventory_image = "3d_armor_helmet_inv.png",
groups = {armor_head=15, armor_heal=12, armor_use=30},
groups = {armor_head=15, armor_heal=12, armor_use=20},
wear = 0,
})
minetest.register_tool("rainbow_armor:rainbow_chestplate", {
description = "Rainbow Chestplate",
inventory_image = "3d_armor_chestplate_inv.png",
groups = {armor_torso=20, armor_heal=12, armor_use=30},
groups = {armor_torso=20, armor_heal=12, armor_use=20},
wear = 0,
})
minetest.register_tool("rainbow_armor:rainbow_leggings", {
description = "Rainbow Leggings",
inventory_image = "3d_armor_leggings_inv.png",
groups = {armor_legs=20, armor_heal=12, armor_use=30},
groups = {armor_legs=20, armor_heal=12, armor_use=20},
wear = 0,
})
minetest.register_tool("rainbow_armor:rainbow_boots", {
description = "Rainbow Boots",
inventory_image = "3d_armor_boots_inv.png",
groups = {armor_feet=15, armor_heal=12, armor_use=30, physics_speed=1, physics_jump=0.5},
groups = {armor_feet=15, armor_heal=12, armor_use=20, physics_speed=1, physics_jump=0.5},
wear = 0,
})

View File

@ -2,7 +2,7 @@
minetest.register_tool("rainbow_armor:rainbow_shield", {
description = "Rainbow Shield",
inventory_image = "rainbow_armor_shield_inv.png",
groups = {armor_shield=15, armor_heal=12, armor_use=30},
groups = {armor_shield=15, armor_heal=12, armor_use=20},
wear = 0,
})