write something there

This commit is contained in:
N-Nachtigal 2025-05-04 16:01:41 +02:00
commit b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions

View 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

View file

@ -0,0 +1,5 @@
# textdomain: armor_mithril
Mithril Helmet=Mithrilhelm
Mithril Chestplate=Mithrilbrustplatte
Mithril Leggings=Mithrilhose
Mithril Boots=Mithrilstiefel

View file

@ -0,0 +1,5 @@
# textdomain: armor_mithril
Mithril Helmet=Mitrila Kasko
Mithril Chestplate=Mitrila Kiraso
Mithril Leggings=Mitrila Pantalono
Mithril Boots=Mitrilaj Botoj

View 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

View 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

View 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

View 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

View 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

View 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

View file

@ -0,0 +1,5 @@
# textdomain: armor_mithril
Mithril Helmet=мифриловый шлем
Mithril Chestplate=мифриловый нагрудник
Mithril Leggings=мифриловые штаны
Mithril Boots=мифриловые ботинки

View file

@ -0,0 +1,5 @@
# textdomain: armor_mithril
Mithril Helmet=Mithrilhjälm
Mithril Chestplate=Mithrilbröstplatta
Mithril Leggings=Mithrilbyxor
Mithril Boots=Mithrilstövlar

View file

@ -0,0 +1,5 @@
# textdomain: armor_mithril
Mithril Helmet=
Mithril Chestplate=
Mithril Leggings=
Mithril Boots=

View file

@ -0,0 +1,4 @@
name = armor_mithril
depends = 3d_armor
optional_depends = moreores
description = Adds craftable mithril armor.

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 B