add armor specs to rainbow armor, add technic armor mod, add redef mod, add technic recycle mod
This commit is contained in:
parent
00106c85c6
commit
c1e648877d
138 changed files with 1321 additions and 4 deletions
|
@ -6,26 +6,35 @@ local S = minetest.get_translator(rainbow_ore.modname)
|
|||
minetest.register_tool("rainbow_ore:rainbow_ore_helmet", {
|
||||
description = S("Rainbow Helmet"),
|
||||
inventory_image = "rainbow_ore_helmet_inv.png",
|
||||
groups = {armor_head=20, armor_heal=17, armor_use=40},
|
||||
groups = {armor_head=20, armor_heal=17, armor_use=40, armor_fire=1},
|
||||
armor_groups = {fleshy=20},
|
||||
wear = 0,
|
||||
damage_groups = {cracky=2, snappy=1, level=3},
|
||||
})
|
||||
minetest.register_tool("rainbow_ore:rainbow_ore_chestplate", {
|
||||
description = S("Rainbow Chestplate"),
|
||||
inventory_image = "rainbow_ore_chestplate_inv.png",
|
||||
groups = {armor_torso=25, armor_heal=17, armor_use=40},
|
||||
groups = {armor_torso=25, armor_heal=17, armor_use=40, armor_fire=1},
|
||||
armor_groups = {fleshy=25},
|
||||
damage_groups = {cracky=2, snappy=1, level=3},
|
||||
wear = 0,
|
||||
})
|
||||
minetest.register_tool("rainbow_ore:rainbow_ore_leggings", {
|
||||
description = S("Rainbow Leggings"),
|
||||
inventory_image = "rainbow_ore_leggings_inv.png",
|
||||
groups = {armor_legs=25, armor_heal=17, armor_use=40},
|
||||
groups = {armor_legs=25, armor_heal=17, armor_use=40, armor_fire=1},
|
||||
armor_groups = {fleshy=25},
|
||||
damage_groups = {cracky=2, snappy=1, level=3},
|
||||
wear = 0,
|
||||
|
||||
})
|
||||
minetest.register_tool("rainbow_ore:rainbow_ore_boots", {
|
||||
description = S("Rainbow Boots"),
|
||||
inventory_image = "rainbow_ore_boots_inv.png",
|
||||
groups = {armor_feet=20, armor_heal=17, armor_use=40},
|
||||
groups = {armor_feet=20, armor_heal=17, armor_use=40, physics_speed=1, physics_jump=0.5, armor_fire=1},
|
||||
wear = 0,
|
||||
damage_groups = {cracky=2, snappy=1, level=3},
|
||||
armor_groups = {fleshy=20},
|
||||
})
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue