write something there
162
mods/3d_armor/armor_mithril/init.lua
Normal file
|
@ -0,0 +1,162 @@
|
|||
|
||||
--- Registered armors.
|
||||
--
|
||||
-- @topic armor
|
||||
|
||||
|
||||
-- support for i18n
|
||||
local S = minetest.get_translator(minetest.get_current_modname())
|
||||
|
||||
--- 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
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.de.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Mithrilhelm
|
||||
Mithril Chestplate=Mithrilbrustplatte
|
||||
Mithril Leggings=Mithrilhose
|
||||
Mithril Boots=Mithrilstiefel
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.eo.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Mitrila Kasko
|
||||
Mithril Chestplate=Mitrila Kiraso
|
||||
Mithril Leggings=Mitrila Pantalono
|
||||
Mithril Boots=Mitrilaj Botoj
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.es.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Casco de mitrilo
|
||||
Mithril Chestplate=Peto de mitrilo
|
||||
Mithril Leggings=Grebas de mitrilo
|
||||
Mithril Boots=Botas de mitrilo
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.fr.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Casque en mithril
|
||||
Mithril Chestplate=Cuirasse en mithril
|
||||
Mithril Leggings=Jambières en mithril
|
||||
Mithril Boots=Bottes en mithril
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.it.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Elmo di mithril
|
||||
Mithril Chestplate=Corazza di mithril
|
||||
Mithril Leggings=Gambali di mithril
|
||||
Mithril Boots=Stivali di mithril
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.ms.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Helmet Mithril
|
||||
Mithril Chestplate=Perisai Dada Mithril
|
||||
Mithril Leggings=Perisai Kaki Mithril
|
||||
Mithril Boots=But Mithril
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.pt.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Capacete de Mithril
|
||||
Mithril Chestplate=Peitoral de Mithril
|
||||
Mithril Leggings=Calças de Mithril
|
||||
Mithril Boots=Botas de Mithril
|
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Capacete de Mithril
|
||||
Mithril Chestplate=Peitoral de Mithril
|
||||
Mithril Leggings=Calças de Mithril
|
||||
Mithril Boots=Botas de Mithril
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.ru.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=мифриловый шлем
|
||||
Mithril Chestplate=мифриловый нагрудник
|
||||
Mithril Leggings=мифриловые штаны
|
||||
Mithril Boots=мифриловые ботинки
|
5
mods/3d_armor/armor_mithril/locale/armor_mithril.sv.tr
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=Mithrilhjälm
|
||||
Mithril Chestplate=Mithrilbröstplatta
|
||||
Mithril Leggings=Mithrilbyxor
|
||||
Mithril Boots=Mithrilstövlar
|
5
mods/3d_armor/armor_mithril/locale/template.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
# textdomain: armor_mithril
|
||||
Mithril Helmet=
|
||||
Mithril Chestplate=
|
||||
Mithril Leggings=
|
||||
Mithril Boots=
|
4
mods/3d_armor/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
mods/3d_armor/armor_mithril/textures/3d_armor_boots_mithril.png
Normal file
After Width: | Height: | Size: 261 B |
After Width: | Height: | Size: 272 B |
After Width: | Height: | Size: 416 B |
After Width: | Height: | Size: 286 B |
BIN
mods/3d_armor/armor_mithril/textures/3d_armor_helmet_mithril.png
Normal file
After Width: | Height: | Size: 338 B |
After Width: | Height: | Size: 253 B |
After Width: | Height: | Size: 224 B |
After Width: | Height: | Size: 246 B |
After Width: | Height: | Size: 180 B |
After Width: | Height: | Size: 250 B |
After Width: | Height: | Size: 286 B |
After Width: | Height: | Size: 315 B |