Refactor armors to be mods rather than hardcoded into API (#78)
* 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
26
armor_mithril/LICENSE.txt
Normal file
@ -0,0 +1,26 @@
|
||||
[mod] 3d Armor [3d_armor]
|
||||
=========================
|
||||
|
||||
License Source Code
|
||||
-------------------
|
||||
|
||||
Copyright (C) 2012-2019 stujones11, Stuart Jones <stujones111@gmail.com>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation; either version 2.1 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
License Textures
|
||||
----------------
|
||||
|
||||
Copyright (C) 2017-2019 davidthecreator - CC-BY-SA 3.0
|
1
armor_mithril/depends.txt
Normal file
@ -0,0 +1 @@
|
||||
3d_armor
|
1
armor_mithril/description.txt
Normal file
@ -0,0 +1 @@
|
||||
Adds craftable mithril armor.
|
162
armor_mithril/init.lua
Normal file
@ -0,0 +1,162 @@
|
||||
|
||||
--- Registered armors.
|
||||
--
|
||||
-- @topic armor
|
||||
|
||||
|
||||
-- support for i18n
|
||||
local S = armor.get_translator
|
||||
|
||||
--- Mithril
|
||||
--
|
||||
-- Requires `armor_material_mithril`.
|
||||
--
|
||||
-- @section mithril
|
||||
|
||||
if armor.materials.mithril then
|
||||
--- Mithril Helmet
|
||||
--
|
||||
-- @helmet 3d_armor:helmet_mithril
|
||||
-- @img 3d_armor_inv_helmet_mithril.png
|
||||
-- @grp armor_head 1
|
||||
-- @grp armor_heal 12
|
||||
-- @grp armor_use 100
|
||||
-- @armorgrp fleshy 15
|
||||
-- @damagegrp cracky 2
|
||||
-- @damagegrp snappy 1
|
||||
-- @damagegrp level 3
|
||||
armor:register_armor(":3d_armor:helmet_mithril", {
|
||||
description = S("Mithril Helmet"),
|
||||
inventory_image = "3d_armor_inv_helmet_mithril.png",
|
||||
groups = {armor_head=1, armor_heal=13, armor_use=66},
|
||||
armor_groups = {fleshy=16},
|
||||
damage_groups = {cracky=2, snappy=1, level=3},
|
||||
})
|
||||
--- Mithril Chestplate
|
||||
--
|
||||
-- @chestplate 3d_armor:chestplate_mithril
|
||||
-- @img 3d_armor_inv_chestplate_mithril.png
|
||||
-- @grp armor_torso 1
|
||||
-- @grp armor_heal 12
|
||||
-- @grp armor_use 100
|
||||
-- @armorgrp fleshy 20
|
||||
-- @damagegrp cracky 2
|
||||
-- @damagegrp snappy 1
|
||||
-- @damagegrp level 3
|
||||
armor:register_armor(":3d_armor:chestplate_mithril", {
|
||||
description = S("Mithril Chestplate"),
|
||||
inventory_image = "3d_armor_inv_chestplate_mithril.png",
|
||||
groups = {armor_torso=1, armor_heal=13, armor_use=66},
|
||||
armor_groups = {fleshy=21},
|
||||
damage_groups = {cracky=2, snappy=1, level=3},
|
||||
})
|
||||
--- Mithril Leggings
|
||||
--
|
||||
-- @leggings 3d_armor:leggings_mithril
|
||||
-- @img 3d_armor_inv_leggings_mithril.png
|
||||
-- @grp armor_legs 1
|
||||
-- @grp armor_heal 12
|
||||
-- @grp armor_use 100
|
||||
-- @armorgrp fleshy 20
|
||||
-- @damagegrp cracky 2
|
||||
-- @damagegrp snappy 1
|
||||
-- @damagegrp level 3
|
||||
armor:register_armor(":3d_armor:leggings_mithril", {
|
||||
description = S("Mithril Leggings"),
|
||||
inventory_image = "3d_armor_inv_leggings_mithril.png",
|
||||
groups = {armor_legs=1, armor_heal=13, armor_use=66},
|
||||
armor_groups = {fleshy=21},
|
||||
damage_groups = {cracky=2, snappy=1, level=3},
|
||||
})
|
||||
--- Mithril Boots
|
||||
--
|
||||
-- @boots 3d_armor:boots_mithril
|
||||
-- @img 3d_armor_inv_boots_mithril.png
|
||||
-- @grp armor_feet 1
|
||||
-- @grp armor_heal 12
|
||||
-- @grp armor_use 100
|
||||
-- @armorgrp fleshy 15
|
||||
-- @damagegrp cracky 2
|
||||
-- @damagegrp snappy 1
|
||||
-- @damagegrp level 3
|
||||
armor:register_armor(":3d_armor:boots_mithril", {
|
||||
description = S("Mithril Boots"),
|
||||
inventory_image = "3d_armor_inv_boots_mithril.png",
|
||||
groups = {armor_feet=1, armor_heal=13, armor_use=66},
|
||||
armor_groups = {fleshy=16},
|
||||
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 = "mithril"
|
||||
local m = armor.materials.mithril
|
||||
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
|
9
armor_mithril/locale/armor_mithril.de.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: armor_mithril
|
||||
|
||||
|
||||
### init.lua ###
|
||||
|
||||
Mithril Boots=Mithrilstiefel
|
||||
Mithril Chestplate=Mithrilbrustplatte
|
||||
Mithril Helmet=Mithrilhelm
|
||||
Mithril Leggings=Mithrilhose
|
9
armor_mithril/locale/armor_mithril.es.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: armor_mithril
|
||||
|
||||
|
||||
### init.lua ###
|
||||
|
||||
Mithril Boots=Botas de mitrilo
|
||||
Mithril Chestplate=Peto de mitrilo
|
||||
Mithril Helmet=Casco de mitrilo
|
||||
Mithril Leggings=Grebas de mitrilo
|
9
armor_mithril/locale/armor_mithril.fr.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: armor_mithril
|
||||
|
||||
|
||||
### init.lua ###
|
||||
|
||||
Mithril Boots=Bottes en mithril
|
||||
Mithril Chestplate=Cuirasse en mithril
|
||||
Mithril Helmet=Casque en mithril
|
||||
Mithril Leggings=Jambières en mithril
|
9
armor_mithril/locale/armor_mithril.it.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: armor_mithril
|
||||
|
||||
|
||||
### init.lua ###
|
||||
|
||||
Mithril Boots=Stivali di mithril
|
||||
Mithril Chestplate=Corazza di mithril
|
||||
Mithril Helmet=Elmo di mithril
|
||||
Mithril Leggings=Gambali di mithril
|
9
armor_mithril/locale/armor_mithril.ms.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: armor_mithril
|
||||
|
||||
|
||||
### init.lua ###
|
||||
|
||||
Mithril Boots=But Mithril
|
||||
Mithril Chestplate=Perisai Dada Mithril
|
||||
Mithril Helmet=Helmet Mithril
|
||||
Mithril Leggings=Perisai Kaki Mithril
|
9
armor_mithril/locale/armor_mithril.pt.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: armor_mithril
|
||||
|
||||
|
||||
### init.lua ###
|
||||
|
||||
Mithril Boots=Botas de Mithril
|
||||
Mithril Chestplate=Peitoral de Mithril
|
||||
Mithril Helmet=Capacete de Mithril
|
||||
Mithril Leggings=Calças de Mithril
|
9
armor_mithril/locale/armor_mithril.pt_BR.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: armor_mithril
|
||||
|
||||
|
||||
### init.lua ###
|
||||
|
||||
Mithril Boots=Botas de Mithril
|
||||
Mithril Chestplate=Peitoral de Mithril
|
||||
Mithril Helmet=Capacete de Mithril
|
||||
Mithril Leggings=Calças de Mithril
|
9
armor_mithril/locale/armor_mithril.ru.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: armor_mithril
|
||||
|
||||
|
||||
### init.lua ###
|
||||
|
||||
Mithril Boots=мифриловые ботинки
|
||||
Mithril Chestplate=мифриловый бронежилет
|
||||
Mithril Helmet=мифриловый шлем
|
||||
Mithril Leggings=мифриловые гамаши
|
30
armor_mithril/locale/template.txt
Normal file
@ -0,0 +1,30 @@
|
||||
# textdomain: 3d_armor
|
||||
|
||||
|
||||
### api.lua ###
|
||||
|
||||
3d_armor: Detached armor inventory is nil @1=
|
||||
3d_armor: Player name is nil @1=
|
||||
3d_armor: Player reference is nil @1=
|
||||
|
||||
### armor.lua ###
|
||||
|
||||
Nether Boots=
|
||||
Nether Chestplate=
|
||||
Nether Helmet=
|
||||
Nether Leggings=
|
||||
Mithril Boots=
|
||||
Mithril Chestplate=
|
||||
Mithril Helmet=
|
||||
Mithril Leggings=
|
||||
|
||||
### init.lua ###
|
||||
|
||||
3d_armor: Failed to initialize player=
|
||||
Fire=
|
||||
Heal=
|
||||
Level=
|
||||
Radiation=
|
||||
Your @1 got destroyed!=
|
||||
Your @1 is almost broken!=
|
||||
[3d_armor] Fire Nodes disabled=
|
4
armor_mithril/mod.conf
Normal file
@ -0,0 +1,4 @@
|
||||
name = armor_mithril
|
||||
depends = 3d_armor
|
||||
optional_depends = moreores
|
||||
description = Adds craftable mithril armor.
|
BIN
armor_mithril/textures/3d_armor_boots_mithril.png
Normal file
After Width: | Height: | Size: 261 B |
BIN
armor_mithril/textures/3d_armor_boots_mithril_preview.png
Normal file
After Width: | Height: | Size: 272 B |
BIN
armor_mithril/textures/3d_armor_chestplate_mithril.png
Normal file
After Width: | Height: | Size: 416 B |
BIN
armor_mithril/textures/3d_armor_chestplate_mithril_preview.png
Normal file
After Width: | Height: | Size: 286 B |
BIN
armor_mithril/textures/3d_armor_helmet_mithril.png
Normal file
After Width: | Height: | Size: 338 B |
BIN
armor_mithril/textures/3d_armor_helmet_mithril_preview.png
Normal file
After Width: | Height: | Size: 253 B |
BIN
armor_mithril/textures/3d_armor_inv_boots_mithril.png
Normal file
After Width: | Height: | Size: 224 B |
BIN
armor_mithril/textures/3d_armor_inv_chestplate_mithril.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
armor_mithril/textures/3d_armor_inv_helmet_mithril.png
Normal file
After Width: | Height: | Size: 180 B |
BIN
armor_mithril/textures/3d_armor_inv_leggings_mithril.png
Normal file
After Width: | Height: | Size: 250 B |
BIN
armor_mithril/textures/3d_armor_leggings_mithril.png
Normal file
After Width: | Height: | Size: 286 B |
BIN
armor_mithril/textures/3d_armor_leggings_mithril_preview.png
Normal file
After Width: | Height: | Size: 315 B |