forked from mtcontrib/3d_armor
add nether armor and nether shield (#65)
* add texture files for nether based 3d_armor * add texture files for nether based shield * perpare for nether armor * add nether armor * add translation for nether armor * add translation for nether armor * add nether shield * add nether shield translation * add nether armor texture preview info * add nether shield texture preview info * add nether to settingtypes.txt * add german translation for armor * add german translation for shields * Nether armor stats modified. * Modify Nether Shield Stats * Update inline documentation
This commit is contained in:
@ -868,6 +868,88 @@ if armor.materials.crystal then
|
||||
end
|
||||
|
||||
|
||||
--- Nether
|
||||
--
|
||||
-- Requires `armor_material_nether`.
|
||||
--
|
||||
-- @section nether
|
||||
|
||||
if armor.materials.nether then
|
||||
--- Nether Helmet
|
||||
--
|
||||
-- @helmet 3d_armor:helmet_nether
|
||||
-- @img 3d_armor_inv_helmet_nether.png
|
||||
-- @grp armor_head 1
|
||||
-- @grp armor_heal 14
|
||||
-- @grp armor_use 200
|
||||
-- @armorgrp fleshy 18
|
||||
-- @damagegrp cracky 3
|
||||
-- @damagegrp snappy 2
|
||||
-- @damagegrp level 3
|
||||
armor:register_armor("3d_armor:helmet_nether", {
|
||||
description = S("Nether Helmet"),
|
||||
inventory_image = "3d_armor_inv_helmet_nether.png",
|
||||
groups = {armor_head=1, armor_heal=14, armor_use=100},
|
||||
armor_groups = {fleshy=18},
|
||||
damage_groups = {cracky=3, snappy=2, level=3},
|
||||
})
|
||||
--- Nether Chestplate
|
||||
--
|
||||
-- @chestplate 3d_armor:chestplate_nether
|
||||
-- @img 3d_armor_inv_chestplate_nether.png
|
||||
-- @grp armor_torso 1
|
||||
-- @grp armor_heal 14
|
||||
-- @grp armor_use 200
|
||||
-- @armorgrp fleshy 25
|
||||
-- @damagegrp cracky 3
|
||||
-- @damagegrp snappy 2
|
||||
-- @damagegrp level 3
|
||||
armor:register_armor("3d_armor:chestplate_nether", {
|
||||
description = S("Nether Chestplate"),
|
||||
inventory_image = "3d_armor_inv_chestplate_nether.png",
|
||||
groups = {armor_torso=1, armor_heal=14, armor_use=200},
|
||||
armor_groups = {fleshy=25},
|
||||
damage_groups = {cracky=3, snappy=2, level=3},
|
||||
})
|
||||
--- Nether Leggings
|
||||
--
|
||||
-- @leggings 3d_armor:leggings_nether
|
||||
-- @img 3d_armor_inv_leggings_nether.png
|
||||
-- @grp armor_legs 1
|
||||
-- @grp armor_heal 14
|
||||
-- @grp armor_use 200
|
||||
-- @armorgrp fleshy 25
|
||||
-- @damagegrp cracky 3
|
||||
-- @damagegrp snappy 2
|
||||
-- @damagegrp level 3
|
||||
armor:register_armor("3d_armor:leggings_nether", {
|
||||
description = S("Nether Leggings"),
|
||||
inventory_image = "3d_armor_inv_leggings_nether.png",
|
||||
groups = {armor_legs=1, armor_heal=14, armor_use=200},
|
||||
armor_groups = {fleshy=25},
|
||||
damage_groups = {cracky=3, snappy=2, level=3},
|
||||
})
|
||||
--- Nether Boots
|
||||
--
|
||||
-- @boots 3d_armor:boots_nether
|
||||
-- @img 3d_armor_inv_boots_nether.png
|
||||
-- @grp armor_feet 1
|
||||
-- @grp armor_heal 14
|
||||
-- @grp armor_use 200
|
||||
-- @armorgrp fleshy 18
|
||||
-- @damagegrp cracky 3
|
||||
-- @damagegrp snappy 2
|
||||
-- @damagegrp level 3
|
||||
armor:register_armor("3d_armor:boots_nether", {
|
||||
description = S("Nether Boots"),
|
||||
inventory_image = "3d_armor_inv_boots_nether.png",
|
||||
groups = {armor_feet=1, armor_heal=14, armor_use=200},
|
||||
armor_groups = {fleshy=18},
|
||||
damage_groups = {cracky=3, snappy=2, level=3},
|
||||
})
|
||||
end
|
||||
|
||||
|
||||
--- Crafting
|
||||
--
|
||||
-- @section craft
|
||||
@ -886,6 +968,7 @@ end
|
||||
-- - gold: default:gold_ingot
|
||||
-- - mithril: moreores:mithril_ingot
|
||||
-- - crystal: ethereal:crystal_ingot
|
||||
-- - nether: nether:nether_ingot
|
||||
--
|
||||
-- helmet: chestplate: leggings:
|
||||
-- ┌───┬───┬───┐ ┌───┬───┬───┐ ┌───┬───┬───┐
|
||||
|
Reference in New Issue
Block a user