Merge commit '053c30b'
26
armor_wood/LICENSE.txt
Normal file
@ -0,0 +1,26 @@
|
||||
[mod] 3d Armor [3d_armor]
|
||||
=========================
|
||||
|
||||
License Source Code
|
||||
-------------------
|
||||
|
||||
Copyright (C) 2012-2019 stujones11, Stuart Jones <stujones111@gmail.com>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation; either version 2.1 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
License Textures
|
||||
----------------
|
||||
|
||||
Copyright (C) 2017-2019 davidthecreator - CC-BY-SA 3.0
|
186
armor_wood/init.lua
Normal file
@ -0,0 +1,186 @@
|
||||
|
||||
--- Registered armors.
|
||||
--
|
||||
-- @topic armor
|
||||
|
||||
|
||||
-- support for i18n
|
||||
local S = armor.get_translator
|
||||
|
||||
--- Wood
|
||||
--
|
||||
-- Requires setting `armor_material_wood`.
|
||||
--
|
||||
-- @section wood
|
||||
|
||||
if armor.materials.wood then
|
||||
--- Wood Helmet
|
||||
--
|
||||
-- @helmet 3d_armor:helmet_wood
|
||||
-- @img 3d_armor_inv_helmet_wood.png
|
||||
-- @grp armor_head 1
|
||||
-- @grp armor_heal 0
|
||||
-- @grp armor_use 2000
|
||||
-- @grp flammable 1
|
||||
-- @armorgrp fleshy 5
|
||||
-- @damagegrp cracky 3
|
||||
-- @damagegrp snappy 2
|
||||
-- @damagegrp choppy 3
|
||||
-- @damagegrp crumbly 2
|
||||
-- @damagegrp level 1
|
||||
armor:register_armor(":3d_armor:helmet_wood", {
|
||||
description = S("Wood Helmet"),
|
||||
inventory_image = "3d_armor_inv_helmet_wood.png",
|
||||
groups = {armor_head=1, armor_heal=0, armor_use=2000, flammable=1},
|
||||
armor_groups = {fleshy=5},
|
||||
damage_groups = {cracky=3, snappy=2, choppy=3, crumbly=2, level=1},
|
||||
})
|
||||
--- Wood Chestplate
|
||||
--
|
||||
-- @chestplate 3d_armor:chestplate_wood
|
||||
-- @img 3d_armor_inv_chestplate_wood.png
|
||||
-- @grp armor_torso 1
|
||||
-- @grp armor_heal 0
|
||||
-- @grp armor_use 2000
|
||||
-- @grp flammable 1
|
||||
-- @armorgrp fleshy 10
|
||||
-- @damagegrp cracky 3
|
||||
-- @damagegrp snappy 2
|
||||
-- @damagegrp choppy 3
|
||||
-- @damagegrp crumbly 2
|
||||
-- @damagegrp level 1
|
||||
armor:register_armor(":3d_armor:chestplate_wood", {
|
||||
description = S("Wood Chestplate"),
|
||||
inventory_image = "3d_armor_inv_chestplate_wood.png",
|
||||
groups = {armor_torso=1, armor_heal=0, armor_use=2000, flammable=1},
|
||||
armor_groups = {fleshy=10},
|
||||
damage_groups = {cracky=3, snappy=2, choppy=3, crumbly=2, level=1},
|
||||
})
|
||||
--- Wood Leggings
|
||||
--
|
||||
-- @leggings 3d_armor:leggings_wood
|
||||
-- @img 3d_armor_inv_leggings_wood.png
|
||||
-- @grp armor_legs 1
|
||||
-- @grp armor_heal 0
|
||||
-- @grp armor_use 1000
|
||||
-- @grp flammable 1
|
||||
-- @armorgrp fleshy 10
|
||||
-- @damagegrp cracky 3
|
||||
-- @damagegrp snappy 2
|
||||
-- @damagegrp choppy 3
|
||||
-- @damagegrp crumbly 2
|
||||
-- @damagegrp level 1
|
||||
armor:register_armor(":3d_armor:leggings_wood", {
|
||||
description = S("Wood Leggings"),
|
||||
inventory_image = "3d_armor_inv_leggings_wood.png",
|
||||
groups = {armor_legs=1, armor_heal=0, armor_use=2000, flammable=1},
|
||||
armor_groups = {fleshy=10},
|
||||
damage_groups = {cracky=3, snappy=2, choppy=3, crumbly=2, level=1},
|
||||
})
|
||||
--- Wood Boots
|
||||
--
|
||||
-- @boots 3d_armor:boots_wood
|
||||
-- @img 3d_armor_inv_boots_wood.png
|
||||
-- @grp armor_feet 1
|
||||
-- @grp armor_heal 0
|
||||
-- @grp armor_use 2000
|
||||
-- @grp flammable 1
|
||||
-- @armorgrp fleshy 5
|
||||
-- @damagegrp cracky 3
|
||||
-- @damagegrp snappy 2
|
||||
-- @damagegrp choppy 3
|
||||
-- @damagegrp crumbly 2
|
||||
-- @damagegrp level 1
|
||||
armor:register_armor(":3d_armor:boots_wood", {
|
||||
description = S("Wood Boots"),
|
||||
inventory_image = "3d_armor_inv_boots_wood.png",
|
||||
armor_groups = {fleshy=5},
|
||||
damage_groups = {cracky=3, snappy=2, choppy=3, crumbly=2, level=1},
|
||||
groups = {armor_feet=1, armor_heal=0, armor_use=2000, flammable=1},
|
||||
})
|
||||
local wood_armor_fuel = {
|
||||
helmet = 6,
|
||||
chestplate = 8,
|
||||
leggings = 7,
|
||||
boots = 5
|
||||
}
|
||||
for armor, burn in pairs(wood_armor_fuel) do
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "3d_armor:" .. armor .. "_wood",
|
||||
burntime = burn,
|
||||
})
|
||||
end
|
||||
|
||||
--- Crafting
|
||||
--
|
||||
-- @section craft
|
||||
|
||||
--- Craft recipes for helmets, chestplates, leggings, boots, & shields.
|
||||
--
|
||||
-- @craft armor
|
||||
-- @usage
|
||||
-- Key:
|
||||
-- - m: material
|
||||
-- - wood: group:wood
|
||||
-- - cactus: default:cactus
|
||||
-- - steel: default:steel_ingot
|
||||
-- - bronze: default:bronze_ingot
|
||||
-- - diamond: default:diamond
|
||||
-- - gold: default:gold_ingot
|
||||
-- - mithril: moreores:mithril_ingot
|
||||
-- - crystal: ethereal:crystal_ingot
|
||||
-- - nether: nether:nether_ingot
|
||||
--
|
||||
-- helmet: chestplate: leggings:
|
||||
-- ┌───┬───┬───┐ ┌───┬───┬───┐ ┌───┬───┬───┐
|
||||
-- │ m │ m │ m │ │ m │ │ m │ │ m │ m │ m │
|
||||
-- ├───┼───┼───┤ ├───┼───┼───┤ ├───┼───┼───┤
|
||||
-- │ m │ │ m │ │ m │ m │ m │ │ m │ │ m │
|
||||
-- ├───┼───┼───┤ ├───┼───┼───┤ ├───┼───┼───┤
|
||||
-- │ │ │ │ │ m │ m │ m │ │ m │ │ m │
|
||||
-- └───┴───┴───┘ └───┴───┴───┘ └───┴───┴───┘
|
||||
--
|
||||
-- boots: shield:
|
||||
-- ┌───┬───┬───┐ ┌───┬───┬───┐
|
||||
-- │ │ │ │ │ m │ m │ m │
|
||||
-- ├───┼───┼───┤ ├───┼───┼───┤
|
||||
-- │ m │ │ m │ │ m │ m │ m │
|
||||
-- ├───┼───┼───┤ ├───┼───┼───┤
|
||||
-- │ m │ │ m │ │ │ m │ │
|
||||
-- └───┴───┴───┘ └───┴───┴───┘
|
||||
|
||||
local s = "wood"
|
||||
local m = armor.materials.wood
|
||||
minetest.register_craft({
|
||||
output = "3d_armor:helmet_"..s,
|
||||
recipe = {
|
||||
{m, m, m},
|
||||
{m, "", m},
|
||||
{"", "", ""},
|
||||
},
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "3d_armor:chestplate_"..s,
|
||||
recipe = {
|
||||
{m, "", m},
|
||||
{m, m, m},
|
||||
{m, m, m},
|
||||
},
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "3d_armor:leggings_"..s,
|
||||
recipe = {
|
||||
{m, m, m},
|
||||
{m, "", m},
|
||||
{m, "", m},
|
||||
},
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "3d_armor:boots_"..s,
|
||||
recipe = {
|
||||
{m, "", m},
|
||||
{m, "", m},
|
||||
},
|
||||
})
|
||||
end
|
5
armor_wood/locale/armor_wood.de.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Holzhelm
|
||||
Wood Chestplate=Holzbrustplatte
|
||||
Wood Leggings=Holzhose
|
||||
Wood Boots=Holzstiefel
|
5
armor_wood/locale/armor_wood.eo.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Ligna Kasko
|
||||
Wood Chestplate=Ligna Brustkiraso
|
||||
Wood Leggings=Ligna Pantalono
|
||||
Wood Boots=Ligna Botoj
|
5
armor_wood/locale/armor_wood.es.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Casco de madera
|
||||
Wood Chestplate=Peto de madera
|
||||
Wood Leggings=Grebas de madera
|
||||
Wood Boots=Botas de madera
|
5
armor_wood/locale/armor_wood.fr.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Casque en bois
|
||||
Wood Chestplate=Cuirasse en bois
|
||||
Wood Leggings=Jambières en bois
|
||||
Wood Boots=Bottes en bois
|
5
armor_wood/locale/armor_wood.it.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Elmo di legno
|
||||
Wood Chestplate=Corazza di legno
|
||||
Wood Leggings=Gambali di legno
|
||||
Wood Boots=Stivali di legno
|
5
armor_wood/locale/armor_wood.ms.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Helmet Kayu
|
||||
Wood Chestplate=Perisai Dada Kayu
|
||||
Wood Leggings=Perisai Kaki Kayu
|
||||
Wood Boots=But Kayu
|
5
armor_wood/locale/armor_wood.pt.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Capacete de Madeira
|
||||
Wood Chestplate=Peitoral de Madeira
|
||||
Wood Leggings=Calças de Madeira
|
||||
Wood Boots=Botas de Madeira
|
5
armor_wood/locale/armor_wood.pt_BR.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Capacete de Madeira
|
||||
Wood Chestplate=Peitoral de Madeira
|
||||
Wood Leggings=Calças de Madeira
|
||||
Wood Boots=Botas de Madeira
|
5
armor_wood/locale/armor_wood.ru.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=деревянный шлем
|
||||
Wood Chestplate=деревянный бронежилет
|
||||
Wood Leggings=деревянные гамаши
|
||||
Wood Boots=деревянные ботинки
|
5
armor_wood/locale/armor_wood.sv.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=Trähjälm
|
||||
Wood Chestplate=Träbröstplatta
|
||||
Wood Leggings=Träbyxor
|
||||
Wood Boots=Trästövlar
|
5
armor_wood/locale/template.txt
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: armor_wood
|
||||
Wood Helmet=
|
||||
Wood Chestplate=
|
||||
Wood Leggings=
|
||||
Wood Boots=
|
3
armor_wood/mod.conf
Normal file
@ -0,0 +1,3 @@
|
||||
name = armor_wood
|
||||
depends = 3d_armor
|
||||
description = Adds craftable wood armor.
|
BIN
armor_wood/textures/3d_armor_boots_wood.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
armor_wood/textures/3d_armor_boots_wood_preview.png
Normal file
After Width: | Height: | Size: 501 B |
BIN
armor_wood/textures/3d_armor_chestplate_wood.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
armor_wood/textures/3d_armor_chestplate_wood_preview.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
armor_wood/textures/3d_armor_helmet_wood.png
Normal file
After Width: | Height: | Size: 932 B |
BIN
armor_wood/textures/3d_armor_helmet_wood_preview.png
Normal file
After Width: | Height: | Size: 471 B |
BIN
armor_wood/textures/3d_armor_inv_boots_wood.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
armor_wood/textures/3d_armor_inv_chestplate_wood.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
armor_wood/textures/3d_armor_inv_helmet_wood.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
armor_wood/textures/3d_armor_inv_leggings_wood.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
armor_wood/textures/3d_armor_leggings_wood.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
armor_wood/textures/3d_armor_leggings_wood_preview.png
Normal file
After Width: | Height: | Size: 562 B |