mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 03:43:30 +01:00
finished the staff of riches
This commit is contained in:
parent
391f5b13f5
commit
643d9111af
5 changed files with 53 additions and 0 deletions
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "naturesaura:item/loot_finder"
|
||||
}
|
||||
}
|
|
@ -114,6 +114,7 @@
|
|||
"item.naturesaura.crimson_meal": "Crimson Meal",
|
||||
"item.naturesaura.death_ring": "Ring of Last Chance",
|
||||
"item.naturesaura.tainted_gold": "Tainted Gold",
|
||||
"item.naturesaura.loot_finder": "Staff of Riches",
|
||||
"container.naturesaura:tree_ritual.name": "Ritual of the Forest",
|
||||
"container.naturesaura:altar.name": "Natural Altar Infusion",
|
||||
"container.naturesaura:offering.name": "Offering to the Gods",
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 397 B |
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"name": "Staff of Riches",
|
||||
"icon": "naturesaura:loot_finder",
|
||||
"category": "items",
|
||||
"advancement": "naturesaura:offering",
|
||||
"pages": [
|
||||
{
|
||||
"type": "text",
|
||||
"text": "All around the world, different kinds of $(thing)treasures$() can be found, including plentifully filled $(item)Chests$(), $(item)Storage Minecarts$() and so on.$(p)The $(item)Staff of Riches$() has the ability to uncover these riches and make them easier to find. Upon swinging it, it will $(thing)highlight$() each storage container in a radius of 64 blocks or so for about a minute."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"text": "This would give the user enough time to simply travel to the magically visible location and collect the treasure.$(p)Naturally, for the staff to be able to discover riches in this manner, a fair amount of $(aura) is required to be stored in an $(l:items/aura_cache)Aura Cache$() or similar."
|
||||
},
|
||||
{
|
||||
"type": "crafting",
|
||||
"text": "Creating the $(item)Staff of Riches$()",
|
||||
"recipe": "naturesaura:loot_finder"
|
||||
}
|
||||
]
|
||||
}
|
25
src/main/resources/data/naturesaura/recipes/loot_finder.json
Normal file
25
src/main/resources/data/naturesaura/recipes/loot_finder.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" DT",
|
||||
"GRD",
|
||||
"RG "
|
||||
],
|
||||
"key": {
|
||||
"R": {
|
||||
"item": "naturesaura:ancient_stick"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:diamond"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:gold_ingot"
|
||||
},
|
||||
"T": {
|
||||
"item": "naturesaura:token_euphoria"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "naturesaura:loot_finder"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue