mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
finished the staff
This commit is contained in:
parent
bf4a76431e
commit
2915ce494d
3 changed files with 47 additions and 0 deletions
|
@ -115,6 +115,7 @@
|
||||||
"item.naturesaura.death_ring": "Ring of Last Chance",
|
"item.naturesaura.death_ring": "Ring of Last Chance",
|
||||||
"item.naturesaura.tainted_gold": "Tainted Gold",
|
"item.naturesaura.tainted_gold": "Tainted Gold",
|
||||||
"item.naturesaura.loot_finder": "Staff of Riches",
|
"item.naturesaura.loot_finder": "Staff of Riches",
|
||||||
|
"item.naturesaura.light_staff": "Staff of Baldur",
|
||||||
"container.naturesaura:tree_ritual.name": "Ritual of the Forest",
|
"container.naturesaura:tree_ritual.name": "Ritual of the Forest",
|
||||||
"container.naturesaura:altar.name": "Natural Altar Infusion",
|
"container.naturesaura:altar.name": "Natural Altar Infusion",
|
||||||
"container.naturesaura:offering.name": "Offering to the Gods",
|
"container.naturesaura:offering.name": "Offering to the Gods",
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "Staff of Baldur",
|
||||||
|
"icon": "naturesaura:light_staff",
|
||||||
|
"category": "items",
|
||||||
|
"advancement": "naturesaura:sky_ingot",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "text",
|
||||||
|
"text": "The Gods of higher worlds have long held many powers, including the power of casting $(thing)light$() upon the world. When combining godly materials in the fashion depicted on the following page, a staff can be created that shoots out a $(thing)ray of light$() which, when a block is hit, causes the surrounding area to be lit up as if $(item)Glowstone$() had been placed there."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "text",
|
||||||
|
"text": "Additionally, when the ray hits any sort of living creature, it will cause it to go up in $(thing)flames$(). $(p)To cast a ray of this kind, a small amount of $(aura) has to be carried on the user."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "crafting",
|
||||||
|
"text": "Creating the $(item)Staff of Baldur$()",
|
||||||
|
"recipe": "naturesaura:light_staff"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
25
src/main/resources/data/naturesaura/recipes/light_staff.json
Normal file
25
src/main/resources/data/naturesaura/recipes/light_staff.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"pattern": [
|
||||||
|
" SG",
|
||||||
|
" RT",
|
||||||
|
"R "
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"R": {
|
||||||
|
"item": "naturesaura:ancient_stick"
|
||||||
|
},
|
||||||
|
"S": {
|
||||||
|
"item": "naturesaura:sky_ingot"
|
||||||
|
},
|
||||||
|
"T": {
|
||||||
|
"item": "naturesaura:token_terror"
|
||||||
|
},
|
||||||
|
"G": {
|
||||||
|
"item": "minecraft:glowstone"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"item": "naturesaura:light_staff"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue