mirror of
https://github.com/FsxShader2012/rainbow_ore.git
synced 2024-12-12 17:03:24 +01:00
nerfed armor, shields, and rarity
This commit is contained in:
parent
420cd1f610
commit
f08d0b21ba
4
init.lua
4
init.lua
@ -154,8 +154,8 @@ minetest.register_ore({
|
||||
ore = "rainbow_ore:rainbow_ore_block",
|
||||
wherein = "default:stone",
|
||||
clust_scarcity = 17*17*17,
|
||||
clust_num_ores = 4,
|
||||
clust_num_ores = 3,
|
||||
clust_size = 3,
|
||||
height_min = -31000,
|
||||
height_max = -100,
|
||||
height_max = -200,
|
||||
})
|
@ -2,25 +2,25 @@
|
||||
minetest.register_tool("rainbow_ore:rainbow_ore_helmet", {
|
||||
description = "Rainbow Helmet",
|
||||
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,
|
||||
})
|
||||
minetest.register_tool("rainbow_ore:rainbow_ore_chestplate", {
|
||||
description = "Rainbow Chestplate",
|
||||
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,
|
||||
})
|
||||
minetest.register_tool("rainbow_ore:rainbow_ore_leggings", {
|
||||
description = "Rainbow Leggings",
|
||||
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,
|
||||
})
|
||||
minetest.register_tool("rainbow_ore:rainbow_ore_boots", {
|
||||
description = "Rainbow Boots",
|
||||
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,
|
||||
})
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
minetest.register_tool("rainbow_ore:rainbow_ore_shield", {
|
||||
description = "Rainbow Shield",
|
||||
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,
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user