Compare commits

...

5 Commits

Author SHA1 Message Date
Tre 13b9bbdf17 updated shield textures and added text to chestplate 2017-06-08 10:31:17 -05:00
Tre e715691d5f Add files via upload 2017-06-05 10:34:19 -05:00
Tre 2701521b89 fixed bug 2017-06-05 10:02:01 -05:00
Tre 09082e3333 Add files via upload 2017-06-02 09:10:39 -05:00
Tre 8b0eece606 Add files via upload 2017-06-02 09:03:07 -05:00
32 changed files with 155 additions and 0 deletions

2
depends.txt Normal file
View File

@ -0,0 +1,2 @@
default
octutools?

153
init.lua Normal file
View File

@ -0,0 +1,153 @@
--mese
minetest.register_tool("mese_armor:helmet_mese", {
description = "Mese Helmet",
inventory_image = "mese_armor_inv_helmet_mese.png",
groups = {armor_head=12, armor_heal=9, armor_use=50},
wear = 0,
})
minetest.register_tool("mese_armor:chestplate_mese", {
description = "Mese Chestplate",
inventory_image = "mese_armor_inv_chestplate_mese.png",
groups = {armor_torso=18, armor_heal=9, armor_use=50},
wear = 0,
})
minetest.register_tool("mese_armor:leggings_mese", {
description = "Mese Leggings",
inventory_image = "mese_armor_inv_leggings_mese.png",
groups = {armor_legs=18, armor_heal=9, armor_use=50},
wear = 0,
})
minetest.register_tool("mese_armor:boots_mese", {
description = "Mese Boots",
inventory_image = "mese_armor_inv_boots_mese.png",
groups = {armor_feet=12, armor_heal=9, armor_use=50},
wear = 0,
})
minetest.register_tool("mese_armor:shield_mese", {
description = "Mese Shield",
inventory_image = "mese_armor_inv_shield_mese.png",
groups = {armor_shield=13, armor_heal=9, armor_use=50},
wear = 0,
})
k = 'mese'
v = 'default:mese_crystal'
minetest.register_craft({
output = "mese_armor:helmet_"..k,
recipe = {
{v, v, v},
{v, "", v},
{"", "", ""},
},
})
minetest.register_craft({
output = "mese_armor:chestplate_"..k,
recipe = {
{v, "", v},
{v, v, v},
{v, v, v},
},
})
minetest.register_craft({
output = "mese_armor:leggings_"..k,
recipe = {
{v, v, v},
{v, "", v},
{v, "", v},
},
})
minetest.register_craft({
output = "mese_armor:boots_"..k,
recipe = {
{v, "", v},
{v, "", v},
},
})
minetest.register_craft({
output = "mese_armor:shield_"..k,
recipe = {
{v, v, v},
{v, v, v},
{"", v, ""},
},
})
--octu
if minetest.get_modpath("octutool") then
minetest.register_tool("mese_armor:helmet_octu", {
description = "Octu Helmet",
inventory_image = "mese_armor_inv_helmet_octu.png",
groups = {armor_head=18, armor_heal=25, armor_fire=2, armor_use=25},
wear = 0,
})
minetest.register_tool("mese_armor:chestplate_octu", {
description = "Octu Chestplate",
inventory_image = "mese_armor_inv_chestplate_octu.png",
groups = {armor_torso=20, armor_heal=25, armor_fire=2, armor_use=25},
wear = 0,
})
minetest.register_tool("mese_armor:leggings_octu", {
description = "Octu Leggings",
inventory_image = "mese_armor_inv_leggings_octu.png",
groups = {armor_legs=20, armor_heal=25, armor_fire=2, armor_use=25},
wear = 0,
})
minetest.register_tool("mese_armor:boots_octu", {
description = "Octu Boots",
inventory_image = "mese_armor_inv_boots_octu.png",
groups = {armor_feet=19, armor_heal=25, armor_fire=2, armor_use=25},
wear = 0,
})
minetest.register_tool("mese_armor:shield_octu", {
description = "Octu Shield",
inventory_image = "mese_armor_inv_shield_octu.png",
groups = {armor_shield=18, armor_heal=25, armor_fire=2, armor_use=25},
wear = 0,
})
k = 'octu'
v = 'octutool:mese'
minetest.register_craft({
output = "mese_armor:helmet_"..k,
recipe = {
{v, v, v},
{v, "", v},
{"", "", ""},
},
})
minetest.register_craft({
output = "mese_armor:chestplate_"..k,
recipe = {
{v, "", v},
{v, v, v},
{v, v, v},
},
})
minetest.register_craft({
output = "mese_armor:leggings_"..k,
recipe = {
{v, v, v},
{v, "", v},
{v, "", v},
},
})
minetest.register_craft({
output = "mese_armor:boots_"..k,
recipe = {
{v, "", v},
{v, "", v},
},
})
minetest.register_craft({
output = "mese_armor:shield_"..k,
recipe = {
{v, v, v},
{v, v, v},
{"", v, ""},
},
})
end

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B