End-game wand
This commit is contained in:
parent
ef4b6ac8b7
commit
fcd2c49bbb
4
book.txt
4
book.txt
@ -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
|
#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.
|
<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
|
#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
|
#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.
|
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>
|
<cauldron name=magicalities:transterra>
|
||||||
|
@ -45,6 +45,11 @@ minetest.register_craftitem("magicalities:cap_gold", {
|
|||||||
inventory_image = "magicalities_cap_gold.png"
|
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", {
|
minetest.register_craftitem("magicalities:focus_blank", {
|
||||||
description = "Blank Wand Focus",
|
description = "Blank Wand Focus",
|
||||||
inventory_image = "magicalities_focus_base.png",
|
inventory_image = "magicalities_focus_base.png",
|
||||||
|
38
register.lua
38
register.lua
@ -26,6 +26,13 @@ magicalities.wands.register_wand("gold", {
|
|||||||
wand_cap = 50,
|
wand_cap = 50,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Tellium
|
||||||
|
magicalities.wands.register_wand("tellium", {
|
||||||
|
description = "Tellium-Capped Wand",
|
||||||
|
image = "magicalities_wand_tellium.png",
|
||||||
|
wand_cap = 100,
|
||||||
|
})
|
||||||
|
|
||||||
-----------------------------
|
-----------------------------
|
||||||
-- Arcane crafting recipes --
|
-- Arcane crafting recipes --
|
||||||
-----------------------------
|
-----------------------------
|
||||||
@ -65,6 +72,25 @@ local recipes = {
|
|||||||
},
|
},
|
||||||
learnable = true
|
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 = {
|
input = {
|
||||||
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
||||||
@ -77,6 +103,18 @@ local recipes = {
|
|||||||
["dark"] = 5,
|
["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 = {
|
input = {
|
||||||
{"group:crystal", "magicalities:tellium", "group:crystal"},
|
{"group:crystal", "magicalities:tellium", "group:crystal"},
|
||||||
|
BIN
textures/magicalities_cap_tellium.png
Normal file
BIN
textures/magicalities_cap_tellium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 291 B |
BIN
textures/magicalities_wand_tellium.png
Normal file
BIN
textures/magicalities_wand_tellium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 449 B |
Loading…
Reference in New Issue
Block a user