End-game wand

This commit is contained in:
Evert Prants 2019-11-23 21:31:47 +02:00
parent ef4b6ac8b7
commit fcd2c49bbb
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
5 changed files with 46 additions and 1 deletions

View File

@ -29,7 +29,9 @@ Right-Click on the Cauldron with a <b>Bucket of Water</b> in order to fill it wi
#2magicalities:wand_steel
<b>Wands</b> are used to cast spells. The first wand you know of is called the <b>Steel-Capped Wand</b>, which can contain up to 25 of any element.
#2magicalities:wand_gold
The <b>Gold-Capped Wand</b> is an improved version of the Steel-Capped Wand. It can contain up to 50 of each element instead of the Steel Wand's 25.
The <b>Gold-Capped Wand</b> is an improved version of the Steel-Capped Wand. It can contain up to 50 of each element instead of the Steel-Capped Wand's 25.
#2magicalities:wand_tellium
The <b>Tellium-Capped Wand</b> is the best wand available to wizards and witches. It can contain <b>up to 100</b> of each element instead of the Gold-Capped Wand's 50.
#2magicalities:transterra
The <b>Transterra</b> is a stone that can be used to <b>create or remove nodes from the world</b>. It is made in the Cauldron.
<cauldron name=magicalities:transterra>

View File

@ -45,6 +45,11 @@ minetest.register_craftitem("magicalities:cap_gold", {
inventory_image = "magicalities_cap_gold.png"
})
minetest.register_craftitem("magicalities:cap_tellium", {
description = "Tellium Wand Cap",
inventory_image = "magicalities_cap_tellium.png"
})
minetest.register_craftitem("magicalities:focus_blank", {
description = "Blank Wand Focus",
inventory_image = "magicalities_focus_base.png",

View File

@ -26,6 +26,13 @@ magicalities.wands.register_wand("gold", {
wand_cap = 50,
})
-- Tellium
magicalities.wands.register_wand("tellium", {
description = "Tellium-Capped Wand",
image = "magicalities_wand_tellium.png",
wand_cap = 100,
})
-----------------------------
-- Arcane crafting recipes --
-----------------------------
@ -65,6 +72,25 @@ local recipes = {
},
learnable = true
},
{
input = {
{"", "magicalities:focus_atk_earth", "magicalities:cap_tellium"},
{"magicalities:tellium", "magicalities:wand_core", "magicalities:focus_atk_water"},
{"group:crystal", "magicalities:tellium", ""}
},
output = "magicalities:wand_tellium",
requirements = {
["water"] = 50,
["earth"] = 50,
["light"] = 50,
["fire"] = 50,
["dark"] = 50,
["air"] = 50,
},
learnable = {
depends = {"magicalities:wand_gold", "magicalities:focus_atk_earth", "magicalities:focus_atk_water"}
}
},
{
input = {
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
@ -77,6 +103,18 @@ local recipes = {
["dark"] = 5,
}
},
{
input = {
{"magicalities:tellium", "magicalities:tellium", "magicalities:tellium"},
{"magicalities:tellium", "", "magicalities:tellium"},
},
output = "magicalities:cap_tellium",
requirements = {
["earth"] = 25,
["light"] = 25,
["dark"] = 25,
}
},
{
input = {
{"group:crystal", "magicalities:tellium", "group:crystal"},

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B