├── 3d_armor ├── README.md ├── api.lua ├── armor.conf.example ├── crafting_guide.txt ├── init.lua ├── integration_test.lua ├── locale │ ├── 3d_armor.de.tr │ ├── 3d_armor.eo.tr │ ├── 3d_armor.es.tr │ ├── 3d_armor.fr.tr │ ├── 3d_armor.it.tr │ ├── 3d_armor.ms.tr │ ├── 3d_armor.pl.tr │ ├── 3d_armor.pt.tr │ ├── 3d_armor.pt_BR.tr │ ├── 3d_armor.ru.tr │ ├── 3d_armor.sv.tr │ ├── 3d_armor.uk.tr │ └── template.txt ├── mod.conf ├── models │ ├── 3d_armor_character.b3d │ └── 3d_armor_character.blend ├── textures │ ├── character_preview.png │ └── inventory_plus_armor.png └── tools │ ├── README.md │ └── updatepo.sh ├── 3d_armor_ip ├── init.lua ├── locale │ ├── 3d_armor_ip.de.tr │ ├── 3d_armor_ip.eo.tr │ ├── 3d_armor_ip.fr.tr │ ├── 3d_armor_ip.pt_BR.tr │ ├── 3d_armor_ip.ru.tr │ ├── 3d_armor_ip.sv.tr │ ├── 3d_armor_ip.uk.tr │ └── template.txt └── mod.conf ├── 3d_armor_sfinv ├── init.lua ├── locale │ ├── 3d_armor_sfinv.de.tr │ ├── 3d_armor_sfinv.eo.tr │ ├── 3d_armor_sfinv.es.tr │ ├── 3d_armor_sfinv.fr.tr │ ├── 3d_armor_sfinv.pt_BR.tr │ ├── 3d_armor_sfinv.ru.tr │ ├── 3d_armor_sfinv.sv.tr │ ├── 3d_armor_sfinv.uk.tr │ └── template.txt └── mod.conf ├── 3d_armor_stand ├── README.txt ├── init.lua ├── locale │ ├── 3d_armor_stand.de.tr │ ├── 3d_armor_stand.eo.tr │ ├── 3d_armor_stand.es.tr │ ├── 3d_armor_stand.fr.tr │ ├── 3d_armor_stand.pt_BR.tr │ ├── 3d_armor_stand.ru.tr │ ├── 3d_armor_stand.sv.tr │ ├── 3d_armor_stand.uk.tr │ └── template.txt ├── mod.conf ├── models │ ├── 3d_armor_entity.obj │ ├── 3d_armor_stand.obj │ ├── 3d_armor_stand.png │ ├── 3d_armor_stand_locked.png │ └── 3d_armor_stand_shared.png └── textures │ ├── 3d_armor_stand_feet.png │ ├── 3d_armor_stand_head.png │ ├── 3d_armor_stand_legs.png │ ├── 3d_armor_stand_shield.png │ └── 3d_armor_stand_torso.png ├── 3d_armor_ui ├── init.lua ├── locale │ ├── 3d_armor_ui.de.tr │ ├── 3d_armor_ui.eo.tr │ ├── 3d_armor_ui.fr.tr │ ├── 3d_armor_ui.pt_BR.tr │ ├── 3d_armor_ui.ru.tr │ ├── 3d_armor_ui.sv.tr │ ├── 3d_armor_ui.uk.tr │ └── template.txt └── mod.conf ├── LICENSE.md ├── README.md ├── armor_admin ├── init.lua ├── locale │ ├── armor_admin.de.tr │ ├── armor_admin.eo.tr │ ├── armor_admin.es.tr │ ├── armor_admin.fr.tr │ ├── armor_admin.it.tr │ ├── armor_admin.ms.tr │ ├── armor_admin.pt.tr │ ├── armor_admin.pt_BR.tr │ ├── armor_admin.ru.tr │ ├── armor_admin.sv.tr │ ├── armor_admin.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_admin.png │ ├── 3d_armor_boots_admin_preview.png │ ├── 3d_armor_chestplate_admin.png │ ├── 3d_armor_chestplate_admin_preview.png │ ├── 3d_armor_helmet_admin.png │ ├── 3d_armor_helmet_admin_preview.png │ ├── 3d_armor_inv_boots_admin.png │ ├── 3d_armor_inv_chestplate_admin.png │ ├── 3d_armor_inv_helmet_admin.png │ ├── 3d_armor_inv_leggings_admin.png │ ├── 3d_armor_leggings_admin.png │ └── 3d_armor_leggings_admin_preview.png ├── armor_bronze ├── init.lua ├── locale │ ├── armor_bronze.de.tr │ ├── armor_bronze.eo.tr │ ├── armor_bronze.es.tr │ ├── armor_bronze.fr.tr │ ├── armor_bronze.it.tr │ ├── armor_bronze.ms.tr │ ├── armor_bronze.pt.tr │ ├── armor_bronze.pt_BR.tr │ ├── armor_bronze.ru.tr │ ├── armor_bronze.sv.tr │ ├── armor_bronze.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_bronze.png │ ├── 3d_armor_boots_bronze_preview.png │ ├── 3d_armor_chestplate_bronze.png │ ├── 3d_armor_chestplate_bronze_preview.png │ ├── 3d_armor_helmet_bronze.png │ ├── 3d_armor_helmet_bronze_preview.png │ ├── 3d_armor_inv_boots_bronze.png │ ├── 3d_armor_inv_chestplate_bronze.png │ ├── 3d_armor_inv_helmet_bronze.png │ ├── 3d_armor_inv_leggings_bronze.png │ ├── 3d_armor_leggings_bronze.png │ └── 3d_armor_leggings_bronze_preview.png ├── armor_cactus ├── init.lua ├── locale │ ├── armor_cactus.de.tr │ ├── armor_cactus.eo.tr │ ├── armor_cactus.es.tr │ ├── armor_cactus.fr.tr │ ├── armor_cactus.it.tr │ ├── armor_cactus.ms.tr │ ├── armor_cactus.pt.tr │ ├── armor_cactus.pt_BR.tr │ ├── armor_cactus.ru.tr │ ├── armor_cactus.sv.tr │ ├── armor_cactus.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_cactus.png │ ├── 3d_armor_boots_cactus_preview.png │ ├── 3d_armor_chestplate_cactus.png │ ├── 3d_armor_chestplate_cactus_preview.png │ ├── 3d_armor_helmet_cactus.png │ ├── 3d_armor_helmet_cactus_preview.png │ ├── 3d_armor_inv_boots_cactus.png │ ├── 3d_armor_inv_chestplate_cactus.png │ ├── 3d_armor_inv_helmet_cactus.png │ ├── 3d_armor_inv_leggings_cactus.png │ ├── 3d_armor_leggings_cactus.png │ └── 3d_armor_leggings_cactus_preview.png ├── armor_crystal ├── init.lua ├── locale │ ├── armor_crystal.de.tr │ ├── armor_crystal.eo.tr │ ├── armor_crystal.es.tr │ ├── armor_crystal.fr.tr │ ├── armor_crystal.it.tr │ ├── armor_crystal.ms.tr │ ├── armor_crystal.pt.tr │ ├── armor_crystal.pt_BR.tr │ ├── armor_crystal.ru.tr │ ├── armor_crystal.sv.tr │ ├── armor_crystal.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_crystal.png │ ├── 3d_armor_boots_crystal_preview.png │ ├── 3d_armor_chestplate_crystal.png │ ├── 3d_armor_chestplate_crystal_preview.png │ ├── 3d_armor_helmet_crystal.png │ ├── 3d_armor_helmet_crystal_preview.png │ ├── 3d_armor_inv_boots_crystal.png │ ├── 3d_armor_inv_chestplate_crystal.png │ ├── 3d_armor_inv_helmet_crystal.png │ ├── 3d_armor_inv_leggings_crystal.png │ ├── 3d_armor_leggings_crystal.png │ └── 3d_armor_leggings_crystal_preview.png ├── armor_diamond ├── init.lua ├── locale │ ├── armor_diamond.de.tr │ ├── armor_diamond.eo.tr │ ├── armor_diamond.es.tr │ ├── armor_diamond.fr.tr │ ├── armor_diamond.it.tr │ ├── armor_diamond.ms.tr │ ├── armor_diamond.pt.tr │ ├── armor_diamond.pt_BR.tr │ ├── armor_diamond.ru.tr │ ├── armor_diamond.sv.tr │ ├── armor_diamond.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_diamond.png │ ├── 3d_armor_boots_diamond_preview.png │ ├── 3d_armor_chestplate_diamond.png │ ├── 3d_armor_chestplate_diamond_preview.png │ ├── 3d_armor_helmet_diamond.png │ ├── 3d_armor_helmet_diamond_preview.png │ ├── 3d_armor_inv_boots_diamond.png │ ├── 3d_armor_inv_chestplate_diamond.png │ ├── 3d_armor_inv_helmet_diamond.png │ ├── 3d_armor_inv_leggings_diamond.png │ ├── 3d_armor_leggings_diamond.png │ └── 3d_armor_leggings_diamond_preview.png ├── armor_gold ├── init.lua ├── locale │ ├── armor_gold.de.tr │ ├── armor_gold.eo.tr │ ├── armor_gold.es.tr │ ├── armor_gold.fr.tr │ ├── armor_gold.it.tr │ ├── armor_gold.ms.tr │ ├── armor_gold.pt.tr │ ├── armor_gold.pt_BR.tr │ ├── armor_gold.ru.tr │ ├── armor_gold.sv.tr │ ├── armor_gold.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_gold.png │ ├── 3d_armor_boots_gold_preview.png │ ├── 3d_armor_chestplate_gold.png │ ├── 3d_armor_chestplate_gold_preview.png │ ├── 3d_armor_helmet_gold.png │ ├── 3d_armor_helmet_gold_preview.png │ ├── 3d_armor_inv_boots_gold.png │ ├── 3d_armor_inv_chestplate_gold.png │ ├── 3d_armor_inv_helmet_gold.png │ ├── 3d_armor_inv_leggings_gold.png │ ├── 3d_armor_leggings_gold.png │ └── 3d_armor_leggings_gold_preview.png ├── armor_mithril ├── init.lua ├── locale │ ├── armor_mithril.de.tr │ ├── armor_mithril.eo.tr │ ├── armor_mithril.es.tr │ ├── armor_mithril.fr.tr │ ├── armor_mithril.it.tr │ ├── armor_mithril.ms.tr │ ├── armor_mithril.pt.tr │ ├── armor_mithril.pt_BR.tr │ ├── armor_mithril.ru.tr │ ├── armor_mithril.sv.tr │ ├── armor_mithril.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_mithril.png │ ├── 3d_armor_boots_mithril_preview.png │ ├── 3d_armor_chestplate_mithril.png │ ├── 3d_armor_chestplate_mithril_preview.png │ ├── 3d_armor_helmet_mithril.png │ ├── 3d_armor_helmet_mithril_preview.png │ ├── 3d_armor_inv_boots_mithril.png │ ├── 3d_armor_inv_chestplate_mithril.png │ ├── 3d_armor_inv_helmet_mithril.png │ ├── 3d_armor_inv_leggings_mithril.png │ ├── 3d_armor_leggings_mithril.png │ └── 3d_armor_leggings_mithril_preview.png ├── armor_nether ├── init.lua ├── locale │ ├── armor_nether.de.tr │ ├── armor_nether.eo.tr │ ├── armor_nether.es.tr │ ├── armor_nether.fr.tr │ ├── armor_nether.it.tr │ ├── armor_nether.ms.tr │ ├── armor_nether.pt.tr │ ├── armor_nether.pt_BR.tr │ ├── armor_nether.ru.tr │ ├── armor_nether.sv.tr │ ├── armor_nether.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_nether.png │ ├── 3d_armor_boots_nether_preview.png │ ├── 3d_armor_chestplate_nether.png │ ├── 3d_armor_chestplate_nether_preview.png │ ├── 3d_armor_helmet_nether.png │ ├── 3d_armor_helmet_nether_preview.png │ ├── 3d_armor_inv_boots_nether.png │ ├── 3d_armor_inv_chestplate_nether.png │ ├── 3d_armor_inv_helmet_nether.png │ ├── 3d_armor_inv_leggings_nether.png │ ├── 3d_armor_leggings_nether.png │ └── 3d_armor_leggings_nether_preview.png ├── armor_steel ├── init.lua ├── locale │ ├── armor_steel.de.tr │ ├── armor_steel.eo.tr │ ├── armor_steel.es.tr │ ├── armor_steel.fr.tr │ ├── armor_steel.it.tr │ ├── armor_steel.ms.tr │ ├── armor_steel.pt.tr │ ├── armor_steel.pt_BR.tr │ ├── armor_steel.ru.tr │ ├── armor_steel.sv.tr │ ├── armor_steel.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_steel.png │ ├── 3d_armor_boots_steel_preview.png │ ├── 3d_armor_chestplate_steel.png │ ├── 3d_armor_chestplate_steel_preview.png │ ├── 3d_armor_helmet_steel.png │ ├── 3d_armor_helmet_steel_preview.png │ ├── 3d_armor_inv_boots_steel.png │ ├── 3d_armor_inv_chestplate_steel.png │ ├── 3d_armor_inv_helmet_steel.png │ ├── 3d_armor_inv_leggings_steel.png │ ├── 3d_armor_leggings_steel.png │ └── 3d_armor_leggings_steel_preview.png ├── armor_wood ├── init.lua ├── locale │ ├── armor_wood.de.tr │ ├── armor_wood.eo.tr │ ├── armor_wood.es.tr │ ├── armor_wood.fr.tr │ ├── armor_wood.it.tr │ ├── armor_wood.ms.tr │ ├── armor_wood.pt.tr │ ├── armor_wood.pt_BR.tr │ ├── armor_wood.ru.tr │ ├── armor_wood.sv.tr │ ├── armor_wood.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── 3d_armor_boots_wood.png │ ├── 3d_armor_boots_wood_preview.png │ ├── 3d_armor_chestplate_wood.png │ ├── 3d_armor_chestplate_wood_preview.png │ ├── 3d_armor_helmet_wood.png │ ├── 3d_armor_helmet_wood_preview.png │ ├── 3d_armor_inv_boots_wood.png │ ├── 3d_armor_inv_chestplate_wood.png │ ├── 3d_armor_inv_helmet_wood.png │ ├── 3d_armor_inv_leggings_wood.png │ ├── 3d_armor_leggings_wood.png │ └── 3d_armor_leggings_wood_preview.png ├── cc-by-sa-3.0.txt ├── lgpl-2.1.md ├── modpack.conf ├── screenshot.png ├── settingtypes.txt ├── shields ├── README.txt ├── crafting_guide.txt ├── init.lua ├── locale │ ├── shields.de.tr │ ├── shields.eo.tr │ ├── shields.es.tr │ ├── shields.fr.tr │ ├── shields.pt_BR.tr │ ├── shields.ru.tr │ ├── shields.sv.tr │ ├── shields.uk.tr │ └── template.txt ├── mod.conf └── textures │ ├── preview_index.txt │ ├── shields_inv_shield_admin.png │ ├── shields_inv_shield_bronze.png │ ├── shields_inv_shield_cactus.png │ ├── shields_inv_shield_crystal.png │ ├── shields_inv_shield_diamond.png │ ├── shields_inv_shield_enhanced_cactus.png │ ├── shields_inv_shield_enhanced_wood.png │ ├── shields_inv_shield_gold.png │ ├── shields_inv_shield_mithril.png │ ├── shields_inv_shield_nether.png │ ├── shields_inv_shield_steel.png │ ├── shields_inv_shield_wood.png │ ├── shields_shield_admin.png │ ├── shields_shield_admin_preview.png │ ├── shields_shield_bronze.png │ ├── shields_shield_bronze_preview.png │ ├── shields_shield_cactus.png │ ├── shields_shield_cactus_preview.png │ ├── shields_shield_crystal.png │ ├── shields_shield_crystal_preview.png │ ├── shields_shield_diamond.png │ ├── shields_shield_diamond_preview.png │ ├── shields_shield_enhanced_cactus.png │ ├── shields_shield_enhanced_cactus_preview.png │ ├── shields_shield_enhanced_wood.png │ ├── shields_shield_enhanced_wood_preview.png │ ├── shields_shield_gold.png │ ├── shields_shield_gold_preview.png │ ├── shields_shield_mithril.png │ ├── shields_shield_mithril_preview.png │ ├── shields_shield_nether.png │ ├── shields_shield_nether_preview.png │ ├── shields_shield_steel.png │ ├── shields_shield_steel_preview.png │ ├── shields_shield_wood.png │ └── shields_shield_wood_preview.png └── wieldview ├── README.txt ├── get_texture.lua ├── init.lua ├── mod.conf └── transform.lua /3d_armor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/README.md -------------------------------------------------------------------------------- /3d_armor/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/api.lua -------------------------------------------------------------------------------- /3d_armor/armor.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/armor.conf.example -------------------------------------------------------------------------------- /3d_armor/crafting_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/crafting_guide.txt -------------------------------------------------------------------------------- /3d_armor/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/init.lua -------------------------------------------------------------------------------- /3d_armor/integration_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/integration_test.lua -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.de.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.eo.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.es.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.fr.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.it.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.ms.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.pl.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.pt.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.pt_BR.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.ru.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.sv.tr -------------------------------------------------------------------------------- /3d_armor/locale/3d_armor.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/3d_armor.uk.tr -------------------------------------------------------------------------------- /3d_armor/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/locale/template.txt -------------------------------------------------------------------------------- /3d_armor/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/mod.conf -------------------------------------------------------------------------------- /3d_armor/models/3d_armor_character.b3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/models/3d_armor_character.b3d -------------------------------------------------------------------------------- /3d_armor/models/3d_armor_character.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/models/3d_armor_character.blend -------------------------------------------------------------------------------- /3d_armor/textures/character_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/textures/character_preview.png -------------------------------------------------------------------------------- /3d_armor/textures/inventory_plus_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/textures/inventory_plus_armor.png -------------------------------------------------------------------------------- /3d_armor/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/tools/README.md -------------------------------------------------------------------------------- /3d_armor/tools/updatepo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor/tools/updatepo.sh -------------------------------------------------------------------------------- /3d_armor_ip/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ip/init.lua -------------------------------------------------------------------------------- /3d_armor_ip/locale/3d_armor_ip.de.tr: -------------------------------------------------------------------------------- 1 | # textdomain: 3d_armor_ip 2 | Back=Zurück 3 | Armor=Rüstung 4 | -------------------------------------------------------------------------------- /3d_armor_ip/locale/3d_armor_ip.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ip/locale/3d_armor_ip.eo.tr -------------------------------------------------------------------------------- /3d_armor_ip/locale/3d_armor_ip.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ip/locale/3d_armor_ip.fr.tr -------------------------------------------------------------------------------- /3d_armor_ip/locale/3d_armor_ip.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ip/locale/3d_armor_ip.pt_BR.tr -------------------------------------------------------------------------------- /3d_armor_ip/locale/3d_armor_ip.ru.tr: -------------------------------------------------------------------------------- 1 | # textdomain: 3d_armor_ip 2 | Back=Назад 3 | Armor=Броня 4 | -------------------------------------------------------------------------------- /3d_armor_ip/locale/3d_armor_ip.sv.tr: -------------------------------------------------------------------------------- 1 | # textdomain: 3d_armor_ip 2 | Back=Tillbaka 3 | Armor=Rustning 4 | -------------------------------------------------------------------------------- /3d_armor_ip/locale/3d_armor_ip.uk.tr: -------------------------------------------------------------------------------- 1 | # textdomain: 3d_armor_ip 2 | Back=Назад 3 | Armor=Броня 4 | -------------------------------------------------------------------------------- /3d_armor_ip/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ip/locale/template.txt -------------------------------------------------------------------------------- /3d_armor_ip/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ip/mod.conf -------------------------------------------------------------------------------- /3d_armor_sfinv/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_sfinv/init.lua -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/3d_armor_sfinv.de.tr: -------------------------------------------------------------------------------- 1 | # textdomain: 3d_armor_sfinv 2 | Armor=Rüstung 3 | -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/3d_armor_sfinv.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_sfinv/locale/3d_armor_sfinv.eo.tr -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/3d_armor_sfinv.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_sfinv/locale/3d_armor_sfinv.es.tr -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/3d_armor_sfinv.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_sfinv/locale/3d_armor_sfinv.fr.tr -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/3d_armor_sfinv.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_sfinv/locale/3d_armor_sfinv.pt_BR.tr -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/3d_armor_sfinv.ru.tr: -------------------------------------------------------------------------------- 1 | # textdomain: 3d_armor_sfinv 2 | Armor=Броня 3 | -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/3d_armor_sfinv.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_sfinv/locale/3d_armor_sfinv.sv.tr -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/3d_armor_sfinv.uk.tr: -------------------------------------------------------------------------------- 1 | # textdomain: 3d_armor_sfinv 2 | Armor=Броня 3 | -------------------------------------------------------------------------------- /3d_armor_sfinv/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_sfinv/locale/template.txt -------------------------------------------------------------------------------- /3d_armor_sfinv/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_sfinv/mod.conf -------------------------------------------------------------------------------- /3d_armor_stand/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/README.txt -------------------------------------------------------------------------------- /3d_armor_stand/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/init.lua -------------------------------------------------------------------------------- /3d_armor_stand/locale/3d_armor_stand.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/3d_armor_stand.de.tr -------------------------------------------------------------------------------- /3d_armor_stand/locale/3d_armor_stand.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/3d_armor_stand.eo.tr -------------------------------------------------------------------------------- /3d_armor_stand/locale/3d_armor_stand.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/3d_armor_stand.es.tr -------------------------------------------------------------------------------- /3d_armor_stand/locale/3d_armor_stand.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/3d_armor_stand.fr.tr -------------------------------------------------------------------------------- /3d_armor_stand/locale/3d_armor_stand.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/3d_armor_stand.pt_BR.tr -------------------------------------------------------------------------------- /3d_armor_stand/locale/3d_armor_stand.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/3d_armor_stand.ru.tr -------------------------------------------------------------------------------- /3d_armor_stand/locale/3d_armor_stand.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/3d_armor_stand.sv.tr -------------------------------------------------------------------------------- /3d_armor_stand/locale/3d_armor_stand.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/3d_armor_stand.uk.tr -------------------------------------------------------------------------------- /3d_armor_stand/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/locale/template.txt -------------------------------------------------------------------------------- /3d_armor_stand/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/mod.conf -------------------------------------------------------------------------------- /3d_armor_stand/models/3d_armor_entity.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/models/3d_armor_entity.obj -------------------------------------------------------------------------------- /3d_armor_stand/models/3d_armor_stand.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/models/3d_armor_stand.obj -------------------------------------------------------------------------------- /3d_armor_stand/models/3d_armor_stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/models/3d_armor_stand.png -------------------------------------------------------------------------------- /3d_armor_stand/models/3d_armor_stand_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/models/3d_armor_stand_locked.png -------------------------------------------------------------------------------- /3d_armor_stand/models/3d_armor_stand_shared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/models/3d_armor_stand_shared.png -------------------------------------------------------------------------------- /3d_armor_stand/textures/3d_armor_stand_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/textures/3d_armor_stand_feet.png -------------------------------------------------------------------------------- /3d_armor_stand/textures/3d_armor_stand_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/textures/3d_armor_stand_head.png -------------------------------------------------------------------------------- /3d_armor_stand/textures/3d_armor_stand_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/textures/3d_armor_stand_legs.png -------------------------------------------------------------------------------- /3d_armor_stand/textures/3d_armor_stand_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/textures/3d_armor_stand_shield.png -------------------------------------------------------------------------------- /3d_armor_stand/textures/3d_armor_stand_torso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_stand/textures/3d_armor_stand_torso.png -------------------------------------------------------------------------------- /3d_armor_ui/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/init.lua -------------------------------------------------------------------------------- /3d_armor_ui/locale/3d_armor_ui.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/locale/3d_armor_ui.de.tr -------------------------------------------------------------------------------- /3d_armor_ui/locale/3d_armor_ui.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/locale/3d_armor_ui.eo.tr -------------------------------------------------------------------------------- /3d_armor_ui/locale/3d_armor_ui.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/locale/3d_armor_ui.fr.tr -------------------------------------------------------------------------------- /3d_armor_ui/locale/3d_armor_ui.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/locale/3d_armor_ui.pt_BR.tr -------------------------------------------------------------------------------- /3d_armor_ui/locale/3d_armor_ui.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/locale/3d_armor_ui.ru.tr -------------------------------------------------------------------------------- /3d_armor_ui/locale/3d_armor_ui.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/locale/3d_armor_ui.sv.tr -------------------------------------------------------------------------------- /3d_armor_ui/locale/3d_armor_ui.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/locale/3d_armor_ui.uk.tr -------------------------------------------------------------------------------- /3d_armor_ui/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/locale/template.txt -------------------------------------------------------------------------------- /3d_armor_ui/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/3d_armor_ui/mod.conf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/README.md -------------------------------------------------------------------------------- /armor_admin/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/init.lua -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.de.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.eo.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.es.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.fr.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.it.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.ms.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.pt.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.pt_BR.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.ru.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.sv.tr -------------------------------------------------------------------------------- /armor_admin/locale/armor_admin.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/armor_admin.uk.tr -------------------------------------------------------------------------------- /armor_admin/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/locale/template.txt -------------------------------------------------------------------------------- /armor_admin/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/mod.conf -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_boots_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_boots_admin.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_boots_admin_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_boots_admin_preview.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_chestplate_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_chestplate_admin.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_chestplate_admin_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_chestplate_admin_preview.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_helmet_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_helmet_admin.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_helmet_admin_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_helmet_admin_preview.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_inv_boots_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_inv_boots_admin.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_inv_chestplate_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_inv_chestplate_admin.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_inv_helmet_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_inv_helmet_admin.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_inv_leggings_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_inv_leggings_admin.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_leggings_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_leggings_admin.png -------------------------------------------------------------------------------- /armor_admin/textures/3d_armor_leggings_admin_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_admin/textures/3d_armor_leggings_admin_preview.png -------------------------------------------------------------------------------- /armor_bronze/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/init.lua -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.de.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.eo.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.es.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.fr.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.it.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.ms.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.pt.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.pt_BR.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.ru.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.sv.tr -------------------------------------------------------------------------------- /armor_bronze/locale/armor_bronze.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/armor_bronze.uk.tr -------------------------------------------------------------------------------- /armor_bronze/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/locale/template.txt -------------------------------------------------------------------------------- /armor_bronze/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/mod.conf -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_boots_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_boots_bronze.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_boots_bronze_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_boots_bronze_preview.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_chestplate_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_chestplate_bronze.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_chestplate_bronze_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_chestplate_bronze_preview.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_helmet_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_helmet_bronze.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_helmet_bronze_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_helmet_bronze_preview.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_inv_boots_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_inv_boots_bronze.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_inv_chestplate_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_inv_chestplate_bronze.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_inv_helmet_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_inv_helmet_bronze.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_inv_leggings_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_inv_leggings_bronze.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_leggings_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_leggings_bronze.png -------------------------------------------------------------------------------- /armor_bronze/textures/3d_armor_leggings_bronze_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_bronze/textures/3d_armor_leggings_bronze_preview.png -------------------------------------------------------------------------------- /armor_cactus/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/init.lua -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.de.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.eo.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.es.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.fr.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.it.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.ms.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.pt.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.pt_BR.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.ru.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.sv.tr -------------------------------------------------------------------------------- /armor_cactus/locale/armor_cactus.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/armor_cactus.uk.tr -------------------------------------------------------------------------------- /armor_cactus/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/locale/template.txt -------------------------------------------------------------------------------- /armor_cactus/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/mod.conf -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_boots_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_boots_cactus.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_boots_cactus_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_boots_cactus_preview.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_chestplate_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_chestplate_cactus.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_chestplate_cactus_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_chestplate_cactus_preview.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_helmet_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_helmet_cactus.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_helmet_cactus_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_helmet_cactus_preview.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_inv_boots_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_inv_boots_cactus.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_inv_chestplate_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_inv_chestplate_cactus.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_inv_helmet_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_inv_helmet_cactus.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_inv_leggings_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_inv_leggings_cactus.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_leggings_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_leggings_cactus.png -------------------------------------------------------------------------------- /armor_cactus/textures/3d_armor_leggings_cactus_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_cactus/textures/3d_armor_leggings_cactus_preview.png -------------------------------------------------------------------------------- /armor_crystal/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/init.lua -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.de.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.eo.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.es.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.fr.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.it.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.ms.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.pt.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.pt_BR.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.ru.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.sv.tr -------------------------------------------------------------------------------- /armor_crystal/locale/armor_crystal.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/armor_crystal.uk.tr -------------------------------------------------------------------------------- /armor_crystal/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/locale/template.txt -------------------------------------------------------------------------------- /armor_crystal/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/mod.conf -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_boots_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_boots_crystal.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_boots_crystal_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_boots_crystal_preview.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_chestplate_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_chestplate_crystal.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_chestplate_crystal_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_chestplate_crystal_preview.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_helmet_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_helmet_crystal.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_helmet_crystal_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_helmet_crystal_preview.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_inv_boots_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_inv_boots_crystal.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_inv_chestplate_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_inv_chestplate_crystal.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_inv_helmet_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_inv_helmet_crystal.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_inv_leggings_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_inv_leggings_crystal.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_leggings_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_leggings_crystal.png -------------------------------------------------------------------------------- /armor_crystal/textures/3d_armor_leggings_crystal_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_crystal/textures/3d_armor_leggings_crystal_preview.png -------------------------------------------------------------------------------- /armor_diamond/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/init.lua -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.de.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.eo.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.es.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.fr.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.it.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.ms.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.pt.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.pt_BR.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.ru.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.sv.tr -------------------------------------------------------------------------------- /armor_diamond/locale/armor_diamond.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/armor_diamond.uk.tr -------------------------------------------------------------------------------- /armor_diamond/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/locale/template.txt -------------------------------------------------------------------------------- /armor_diamond/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/mod.conf -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_boots_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_boots_diamond.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_boots_diamond_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_boots_diamond_preview.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_chestplate_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_chestplate_diamond.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_chestplate_diamond_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_chestplate_diamond_preview.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_helmet_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_helmet_diamond.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_helmet_diamond_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_helmet_diamond_preview.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_inv_boots_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_inv_boots_diamond.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_inv_chestplate_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_inv_chestplate_diamond.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_inv_helmet_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_inv_helmet_diamond.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_inv_leggings_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_inv_leggings_diamond.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_leggings_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_leggings_diamond.png -------------------------------------------------------------------------------- /armor_diamond/textures/3d_armor_leggings_diamond_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_diamond/textures/3d_armor_leggings_diamond_preview.png -------------------------------------------------------------------------------- /armor_gold/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/init.lua -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.de.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.eo.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.es.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.fr.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.it.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.ms.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.pt.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.pt_BR.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.ru.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.sv.tr -------------------------------------------------------------------------------- /armor_gold/locale/armor_gold.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/armor_gold.uk.tr -------------------------------------------------------------------------------- /armor_gold/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/locale/template.txt -------------------------------------------------------------------------------- /armor_gold/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/mod.conf -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_boots_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_boots_gold.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_boots_gold_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_boots_gold_preview.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_chestplate_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_chestplate_gold.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_chestplate_gold_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_chestplate_gold_preview.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_helmet_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_helmet_gold.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_helmet_gold_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_helmet_gold_preview.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_inv_boots_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_inv_boots_gold.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_inv_chestplate_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_inv_chestplate_gold.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_inv_helmet_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_inv_helmet_gold.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_inv_leggings_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_inv_leggings_gold.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_leggings_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_leggings_gold.png -------------------------------------------------------------------------------- /armor_gold/textures/3d_armor_leggings_gold_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_gold/textures/3d_armor_leggings_gold_preview.png -------------------------------------------------------------------------------- /armor_mithril/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/init.lua -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.de.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.eo.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.es.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.fr.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.it.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.ms.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.pt.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.pt_BR.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.ru.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.sv.tr -------------------------------------------------------------------------------- /armor_mithril/locale/armor_mithril.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/armor_mithril.uk.tr -------------------------------------------------------------------------------- /armor_mithril/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/locale/template.txt -------------------------------------------------------------------------------- /armor_mithril/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/mod.conf -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_boots_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_boots_mithril.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_boots_mithril_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_boots_mithril_preview.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_chestplate_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_chestplate_mithril.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_chestplate_mithril_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_chestplate_mithril_preview.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_helmet_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_helmet_mithril.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_helmet_mithril_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_helmet_mithril_preview.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_inv_boots_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_inv_boots_mithril.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_inv_chestplate_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_inv_chestplate_mithril.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_inv_helmet_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_inv_helmet_mithril.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_inv_leggings_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_inv_leggings_mithril.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_leggings_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_leggings_mithril.png -------------------------------------------------------------------------------- /armor_mithril/textures/3d_armor_leggings_mithril_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_mithril/textures/3d_armor_leggings_mithril_preview.png -------------------------------------------------------------------------------- /armor_nether/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/init.lua -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.de.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.eo.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.es.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.fr.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.it.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.ms.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.pt.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.pt_BR.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.ru.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.sv.tr -------------------------------------------------------------------------------- /armor_nether/locale/armor_nether.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/armor_nether.uk.tr -------------------------------------------------------------------------------- /armor_nether/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/locale/template.txt -------------------------------------------------------------------------------- /armor_nether/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/mod.conf -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_boots_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_boots_nether.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_boots_nether_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_boots_nether_preview.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_chestplate_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_chestplate_nether.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_chestplate_nether_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_chestplate_nether_preview.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_helmet_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_helmet_nether.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_helmet_nether_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_helmet_nether_preview.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_inv_boots_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_inv_boots_nether.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_inv_chestplate_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_inv_chestplate_nether.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_inv_helmet_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_inv_helmet_nether.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_inv_leggings_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_inv_leggings_nether.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_leggings_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_leggings_nether.png -------------------------------------------------------------------------------- /armor_nether/textures/3d_armor_leggings_nether_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_nether/textures/3d_armor_leggings_nether_preview.png -------------------------------------------------------------------------------- /armor_steel/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/init.lua -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.de.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.eo.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.es.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.fr.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.it.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.ms.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.pt.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.pt_BR.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.ru.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.sv.tr -------------------------------------------------------------------------------- /armor_steel/locale/armor_steel.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/armor_steel.uk.tr -------------------------------------------------------------------------------- /armor_steel/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/locale/template.txt -------------------------------------------------------------------------------- /armor_steel/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/mod.conf -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_boots_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_boots_steel.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_boots_steel_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_boots_steel_preview.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_chestplate_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_chestplate_steel.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_chestplate_steel_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_chestplate_steel_preview.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_helmet_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_helmet_steel.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_helmet_steel_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_helmet_steel_preview.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_inv_boots_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_inv_boots_steel.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_inv_chestplate_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_inv_chestplate_steel.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_inv_helmet_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_inv_helmet_steel.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_inv_leggings_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_inv_leggings_steel.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_leggings_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_leggings_steel.png -------------------------------------------------------------------------------- /armor_steel/textures/3d_armor_leggings_steel_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_steel/textures/3d_armor_leggings_steel_preview.png -------------------------------------------------------------------------------- /armor_wood/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/init.lua -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.de.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.eo.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.es.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.fr.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.it.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.ms.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.pt.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.pt_BR.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.ru.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.sv.tr -------------------------------------------------------------------------------- /armor_wood/locale/armor_wood.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/armor_wood.uk.tr -------------------------------------------------------------------------------- /armor_wood/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/locale/template.txt -------------------------------------------------------------------------------- /armor_wood/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/mod.conf -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_boots_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_boots_wood.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_boots_wood_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_boots_wood_preview.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_chestplate_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_chestplate_wood.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_chestplate_wood_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_chestplate_wood_preview.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_helmet_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_helmet_wood.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_helmet_wood_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_helmet_wood_preview.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_inv_boots_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_inv_boots_wood.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_inv_chestplate_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_inv_chestplate_wood.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_inv_helmet_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_inv_helmet_wood.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_inv_leggings_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_inv_leggings_wood.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_leggings_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_leggings_wood.png -------------------------------------------------------------------------------- /armor_wood/textures/3d_armor_leggings_wood_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/armor_wood/textures/3d_armor_leggings_wood_preview.png -------------------------------------------------------------------------------- /cc-by-sa-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/cc-by-sa-3.0.txt -------------------------------------------------------------------------------- /lgpl-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/lgpl-2.1.md -------------------------------------------------------------------------------- /modpack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/modpack.conf -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/screenshot.png -------------------------------------------------------------------------------- /settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/settingtypes.txt -------------------------------------------------------------------------------- /shields/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/README.txt -------------------------------------------------------------------------------- /shields/crafting_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/crafting_guide.txt -------------------------------------------------------------------------------- /shields/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/init.lua -------------------------------------------------------------------------------- /shields/locale/shields.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/shields.de.tr -------------------------------------------------------------------------------- /shields/locale/shields.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/shields.eo.tr -------------------------------------------------------------------------------- /shields/locale/shields.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/shields.es.tr -------------------------------------------------------------------------------- /shields/locale/shields.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/shields.fr.tr -------------------------------------------------------------------------------- /shields/locale/shields.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/shields.pt_BR.tr -------------------------------------------------------------------------------- /shields/locale/shields.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/shields.ru.tr -------------------------------------------------------------------------------- /shields/locale/shields.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/shields.sv.tr -------------------------------------------------------------------------------- /shields/locale/shields.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/shields.uk.tr -------------------------------------------------------------------------------- /shields/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/locale/template.txt -------------------------------------------------------------------------------- /shields/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/mod.conf -------------------------------------------------------------------------------- /shields/textures/preview_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/preview_index.txt -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_admin.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_bronze.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_cactus.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_crystal.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_diamond.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_enhanced_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_enhanced_cactus.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_enhanced_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_enhanced_wood.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_gold.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_mithril.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_nether.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_steel.png -------------------------------------------------------------------------------- /shields/textures/shields_inv_shield_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_inv_shield_wood.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_admin.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_admin_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_admin_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_bronze.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_bronze_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_bronze_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_cactus.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_cactus_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_cactus_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_crystal.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_crystal_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_crystal_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_diamond.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_diamond_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_diamond_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_enhanced_cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_enhanced_cactus.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_enhanced_cactus_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_enhanced_cactus_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_enhanced_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_enhanced_wood.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_enhanced_wood_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_enhanced_wood_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_gold.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_gold_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_gold_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_mithril.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_mithril_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_mithril_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_nether.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_nether_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_nether_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_steel.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_steel_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_steel_preview.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_wood.png -------------------------------------------------------------------------------- /shields/textures/shields_shield_wood_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/shields/textures/shields_shield_wood_preview.png -------------------------------------------------------------------------------- /wieldview/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/wieldview/README.txt -------------------------------------------------------------------------------- /wieldview/get_texture.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/wieldview/get_texture.lua -------------------------------------------------------------------------------- /wieldview/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/wieldview/init.lua -------------------------------------------------------------------------------- /wieldview/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/wieldview/mod.conf -------------------------------------------------------------------------------- /wieldview/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/3d_armor/HEAD/wieldview/transform.lua --------------------------------------------------------------------------------