forked from mtcontrib/3d_armor
9444afd722
* Begin work on "armors as modpack" refactor letting anyone to enable/disable any armors they want as mods rather than obscure settings * Fix some steel armor mishaps, remove pointless dependency on "default" * Move admin armor into mod * Make wood armor into a mod * More consistent steel description text etc. * remove wood references from 3d_armor api locale * remove admin armor reference from 3d_armor locale template.txt * Remove steel textures from api * Bronze armor as mod * Fix admin, wood armor missing local S translator var Fix wood locale missing template.txt * Fix bronze missing locale * Cactus as mod * Crystal into mod * Diamond into mod * Mithril and Gold as mods * Register armor fix * Nether as mod * Clean-up, add optional depends for mod armors, remove armor.lua from 3d_armor * Fix badly named mod.conf for admin, gold, nether armors Fix attempt to register crafting recipe even though the armor is disabled via setting * Fix steel and wood having bad globals for crafting section, turned them to locals * Fix brazilian translation getting deleted Fix cactus armor locales being incorrectly named
170 lines
5.0 KiB
Lua
170 lines
5.0 KiB
Lua
|
|
--- Registered armors.
|
|
--
|
|
-- @topic armor
|
|
|
|
|
|
-- support for i18n
|
|
local S = armor.get_translator
|
|
|
|
|
|
--- Crystal
|
|
--
|
|
-- Requires `armor_material_crystal`.
|
|
--
|
|
-- @section crystal
|
|
|
|
if armor.materials.crystal then
|
|
--- Crystal Helmet
|
|
--
|
|
-- @helmet 3d_armor:helmet_crystal
|
|
-- @img 3d_armor_inv_helmet_crystal.png
|
|
-- @grp armor_head 1
|
|
-- @grp armor_heal 12
|
|
-- @grp armor_use 100
|
|
-- @grp armor_fire 1
|
|
-- @armorgrp fleshy 15
|
|
-- @damagegrp cracky 2
|
|
-- @damagegrp snappy 1
|
|
-- @damagegrp level 3
|
|
armor:register_armor(":3d_armor:helmet_crystal", {
|
|
description = S("Crystal Helmet"),
|
|
inventory_image = "3d_armor_inv_helmet_crystal.png",
|
|
groups = {armor_head=1, armor_heal=12, armor_use=100, armor_fire=1},
|
|
armor_groups = {fleshy=15},
|
|
damage_groups = {cracky=2, snappy=1, level=3},
|
|
})
|
|
--- Crystal Chestplate
|
|
--
|
|
-- @chestplate 3d_armor:chestplate_crystal
|
|
-- @img 3d_armor_inv_chestplate_crystal.png
|
|
-- @grp armor_torso 1
|
|
-- @grp armor_heal 12
|
|
-- @grp armor_use 100
|
|
-- @grp armor_fire 1
|
|
-- @armorgrp fleshy 20
|
|
-- @damagegrp cracky 2
|
|
-- @damagegrp snappy 1
|
|
-- @damagegrp level 3
|
|
armor:register_armor(":3d_armor:chestplate_crystal", {
|
|
description = S("Crystal Chestplate"),
|
|
inventory_image = "3d_armor_inv_chestplate_crystal.png",
|
|
groups = {armor_torso=1, armor_heal=12, armor_use=100, armor_fire=1},
|
|
armor_groups = {fleshy=20},
|
|
damage_groups = {cracky=2, snappy=1, level=3},
|
|
})
|
|
--- Crystal Leggings
|
|
--
|
|
-- @leggings 3d_armor:leggings_crystal
|
|
-- @img 3d_armor_inv_leggings_crystal.png
|
|
-- @grp armor_legs 1
|
|
-- @grp armor_heal 12
|
|
-- @grp armor_use 100
|
|
-- @grp armor_fire 1
|
|
-- @armorgrp fleshy 20
|
|
-- @damagegrp cracky 2
|
|
-- @damagegrp snappy 1
|
|
-- @damagegrp level 3
|
|
armor:register_armor(":3d_armor:leggings_crystal", {
|
|
description = S("Crystal Leggings"),
|
|
inventory_image = "3d_armor_inv_leggings_crystal.png",
|
|
groups = {armor_legs=1, armor_heal=12, armor_use=100, armor_fire=1},
|
|
armor_groups = {fleshy=20},
|
|
damage_groups = {cracky=2, snappy=1, level=3},
|
|
})
|
|
--- Crystal Boots
|
|
--
|
|
-- @boots 3d_armor:boots_crystal
|
|
-- @img 3d_armor_inv_boots_crystal.png
|
|
-- @grp armor_feet 1
|
|
-- @grp armor_heal 12
|
|
-- @grp armor_use 100
|
|
-- @grp physics_speed 1
|
|
-- @grp physics_jump 0.5
|
|
-- @grp armor_fire 1
|
|
-- @armorgrp fleshy 15
|
|
-- @damagegrp cracky 2
|
|
-- @damagegrp snappy 1
|
|
-- @damagegrp level 3
|
|
armor:register_armor(":3d_armor:boots_crystal", {
|
|
description = S("Crystal Boots"),
|
|
inventory_image = "3d_armor_inv_boots_crystal.png",
|
|
groups = {armor_feet=1, armor_heal=12, armor_use=100, physics_speed=1,
|
|
physics_jump=0.5, armor_fire=1},
|
|
armor_groups = {fleshy=15},
|
|
damage_groups = {cracky=2, snappy=1, level=3},
|
|
})
|
|
|
|
|
|
--- Crafting
|
|
--
|
|
-- @section craft
|
|
|
|
--- Craft recipes for helmets, chestplates, leggings, boots, & shields.
|
|
--
|
|
-- @craft armor
|
|
-- @usage
|
|
-- Key:
|
|
-- - m: material
|
|
-- - wood: group:wood
|
|
-- - cactus: default:cactus
|
|
-- - steel: default:steel_ingot
|
|
-- - bronze: default:bronze_ingot
|
|
-- - diamond: default:diamond
|
|
-- - gold: default:gold_ingot
|
|
-- - mithril: moreores:mithril_ingot
|
|
-- - crystal: ethereal:crystal_ingot
|
|
-- - nether: nether:nether_ingot
|
|
--
|
|
-- helmet: chestplate: leggings:
|
|
-- ┌───┬───┬───┐ ┌───┬───┬───┐ ┌───┬───┬───┐
|
|
-- │ m │ m │ m │ │ m │ │ m │ │ m │ m │ m │
|
|
-- ├───┼───┼───┤ ├───┼───┼───┤ ├───┼───┼───┤
|
|
-- │ m │ │ m │ │ m │ m │ m │ │ m │ │ m │
|
|
-- ├───┼───┼───┤ ├───┼───┼───┤ ├───┼───┼───┤
|
|
-- │ │ │ │ │ m │ m │ m │ │ m │ │ m │
|
|
-- └───┴───┴───┘ └───┴───┴───┘ └───┴───┴───┘
|
|
--
|
|
-- boots: shield:
|
|
-- ┌───┬───┬───┐ ┌───┬───┬───┐
|
|
-- │ │ │ │ │ m │ m │ m │
|
|
-- ├───┼───┼───┤ ├───┼───┼───┤
|
|
-- │ m │ │ m │ │ m │ m │ m │
|
|
-- ├───┼───┼───┤ ├───┼───┼───┤
|
|
-- │ m │ │ m │ │ │ m │ │
|
|
-- └───┴───┴───┘ └───┴───┴───┘
|
|
|
|
local s = "crystal"
|
|
local m = armor.materials.crystal
|
|
minetest.register_craft({
|
|
output = "3d_armor:helmet_"..s,
|
|
recipe = {
|
|
{m, m, m},
|
|
{m, "", m},
|
|
{"", "", ""},
|
|
},
|
|
})
|
|
minetest.register_craft({
|
|
output = "3d_armor:chestplate_"..s,
|
|
recipe = {
|
|
{m, "", m},
|
|
{m, m, m},
|
|
{m, m, m},
|
|
},
|
|
})
|
|
minetest.register_craft({
|
|
output = "3d_armor:leggings_"..s,
|
|
recipe = {
|
|
{m, m, m},
|
|
{m, "", m},
|
|
{m, "", m},
|
|
},
|
|
})
|
|
minetest.register_craft({
|
|
output = "3d_armor:boots_"..s,
|
|
recipe = {
|
|
{m, "", m},
|
|
{m, "", m},
|
|
},
|
|
})
|
|
end |