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,94 @@
--- Registered armors.
--
-- @topic armor
-- support for i18n
local S = minetest.get_translator(minetest.get_current_modname())
--- Admin Helmet
--
-- @helmet 3d_armor:helmet_admin
-- @img 3d_armor_inv_helmet_admin.png
-- @grp armor_head 1
-- @grp armor_heal 100
-- @grp armor_use 0
-- @grp armor_water 1
-- @grp not_in_creative_inventory 1
-- @armorgrp fleshy 100
armor:register_armor(":3d_armor:helmet_admin", {
description = S("Admin Helmet"),
inventory_image = "3d_armor_inv_helmet_admin.png",
armor_groups = {fleshy=100},
groups = {armor_head=1, armor_heal=100, armor_use=0, armor_water=1,
not_in_creative_inventory=1},
on_drop = function(itemstack, dropper, pos)
return
end,
})
--- Admin Chestplate
--
-- @chestplate 3d_armor:chestplate_admin
-- @img 3d_armor_inv_chestplate_admin.png
-- @grp armor_torso 1
-- @grp armor_heal 100
-- @grp armor_use 0
-- @grp not_in_creative_inventory 1
-- @armorgrp fleshy 100
armor:register_armor(":3d_armor:chestplate_admin", {
description = S("Admin Chestplate"),
inventory_image = "3d_armor_inv_chestplate_admin.png",
armor_groups = {fleshy=100},
groups = {armor_torso=1, armor_heal=100, armor_use=0, armor_water=1,
not_in_creative_inventory=1},
on_drop = function(itemstack, dropper, pos)
return
end,
})
--- Admin Leggings
--
-- @leggings 3d_armor:leggings_admin
-- @img 3d_armor_inv_leggings_admin.png
-- @grp armor_legs 1
-- @grp armor_heal 100
-- @grp armor_use 0
-- @grp not_in_creative_inventory 1
-- @armorgrp fleshy 100
armor:register_armor(":3d_armor:leggings_admin", {
description = S("Admin Leggings"),
inventory_image = "3d_armor_inv_leggings_admin.png",
armor_groups = {fleshy=100},
groups = {armor_legs=1, armor_heal=100, armor_use=0, armor_water=1,
not_in_creative_inventory=1},
on_drop = function(itemstack, dropper, pos)
return
end,
})
--- Admin Boots
--
-- @boots 3d_armor:boots_admin
-- @img 3d_armor_inv_boots_admin.png
-- @grp armor_feet 1
-- @grp armor_heal 100
-- @grp armor_use 0
-- @grp not_in_creative_inventory 1
-- @armorgrp fleshy 100
armor:register_armor(":3d_armor:boots_admin", {
description = S("Admin Boots"),
inventory_image = "3d_armor_inv_boots_admin.png",
armor_groups = {fleshy=100},
groups = {armor_feet=1, armor_heal=100, armor_use=0, physics_speed=1,
armor_water=1, not_in_creative_inventory=1},
on_drop = function(itemstack, dropper, pos)
return
end,
})
minetest.register_alias("adminboots", "3d_armor:boots_admin")
minetest.register_alias("adminhelmet", "3d_armor:helmet_admin")
minetest.register_alias("adminchestplate", "3d_armor:chestplate_admin")
minetest.register_alias("adminleggings", "3d_armor:leggings_admin")

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=Adminhelm
Admin Chestplate=Adminbrustplatte
Admin Leggings=Adminhose
Admin Boots=Adminstiefel

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=Administra Kasko
Admin Chestplate=Administra Kiraso
Admin Leggings=Administra Pantalono
Admin Boots=Administraj Botoj

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=Casco de admin
Admin Chestplate=Peto de admin
Admin Leggings=Grebas de admin
Admin Boots=Botas de admin

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=Casque d'admin
Admin Chestplate=Cuirasse d'admin
Admin Leggings=Jambières d'admin
Admin Boots=Bottes d'admin

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=Elmo dell'amministratrice/tore
Admin Chestplate=Corazza dell'amministratrice/tore
Admin Leggings=Gambali dell'amministratrice/tore
Admin Boots=Stivali dell'amministratrice/tore

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=Helmet Pentadbir
Admin Chestplate=Perisai Dada Pentadbir
Admin Leggings=Perisai Kaki Pentadbir
Admin Boots=But Pentadbir

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=
Admin Chestplate=
Admin Leggings=
Admin Boots=

View file

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

View file

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

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=Adminhjälm
Admin Chestplate=Adminbröstplåt
Admin Leggings=Adminbyxor
Admin Boots=Adminstövlar

View file

@ -0,0 +1,5 @@
# textdomain: armor_admin
Admin Helmet=
Admin Chestplate=
Admin Leggings=
Admin Boots=

View file

@ -0,0 +1,3 @@
name = armor_admin
depends = 3d_armor
description = Adds admin armor.

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 409 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 285 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 B