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,168 @@
--- Registered armors.
--
-- @topic armor
-- support for i18n
local S = minetest.get_translator(minetest.get_current_modname())
--- 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
-- @grp armor_fire 1
-- @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_fire=1},
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
-- @grp armor_fire 1
-- @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_fire=1},
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
-- @grp armor_fire 1
-- @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_fire=1},
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
-- @grp armor_fire 1
-- @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_fire=1},
armor_groups = {fleshy=18},
damage_groups = {cracky=3, snappy=2, 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 = "nether"
local m = armor.materials.nether
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_nether
Nether Helmet=Netherhelm
Nether Chestplate=Netherbrustplatte
Nether Leggings=Netherhose
Nether Boots=Netherstiefel

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=Inferna Kasko
Nether Chestplate=Inferna Kiraso
Nether Leggings=Inferna Pantalono
Nether Boots=Infernaj Botoj

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=Casco de nether
Nether Chestplate=Peto de nether
Nether Leggings=Grebas de nether
Nether Boots=Botas de nether

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=Casque en nether
Nether Chestplate=Cuirasse en nether
Nether Leggings=Jambières en nether
Nether Boots=Bottes en nether

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=Elmo di nether
Nether Chestplate=Corazza di nether
Nether Leggings=Gambali di nether
Nether Boots=Stivali di nether

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=Helmet Nether
Nether Chestplate=Perisai Dada Nether
Nether Leggings=Perisai Kaki Nether
Nether Boots=But Nether

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=Capacete de Nether
Nether Chestplate=Peitoral de Nether
Nether Leggings=Calças de Nether
Nether Boots=Botas de Nether

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=Capacete de Nether
Nether Chestplate=Peitoral de Nether
Nether Leggings=Calças de Nether
Nether Boots=Botas de Nether

View file

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

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=Netherhjälm
Nether Chestplate=Netherbröstplatta
Nether Leggings=Netherbyxor
Nether Boots=Netherstövlar

View file

@ -0,0 +1,5 @@
# textdomain: armor_nether
Nether Helmet=
Nether Chestplate=
Nether Leggings=
Nether Boots=

View file

@ -0,0 +1,4 @@
name = armor_nether
depends = 3d_armor
optional_depends = nether
description = Adds craftable wood armor.

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 581 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 525 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 B