From 643d9111af2dce50d57f9308d31d6c715e19cec2 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Fri, 28 Feb 2020 15:52:33 +0100 Subject: [PATCH] finished the staff of riches --- .../naturesaura/models/item/loot_finder.json | 6 +++++ .../assets/naturesaura/lang/en_us.json | 1 + .../naturesaura/textures/item/loot_finder.png | Bin 0 -> 397 bytes .../book/en_us/entries/items/loot_finder.json | 21 +++++++++++++++ .../data/naturesaura/recipes/loot_finder.json | 25 ++++++++++++++++++ 5 files changed, 53 insertions(+) create mode 100644 src/generated/resources/assets/naturesaura/models/item/loot_finder.json create mode 100644 src/main/resources/assets/naturesaura/textures/item/loot_finder.png create mode 100644 src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/items/loot_finder.json create mode 100644 src/main/resources/data/naturesaura/recipes/loot_finder.json diff --git a/src/generated/resources/assets/naturesaura/models/item/loot_finder.json b/src/generated/resources/assets/naturesaura/models/item/loot_finder.json new file mode 100644 index 00000000..aa5c8f88 --- /dev/null +++ b/src/generated/resources/assets/naturesaura/models/item/loot_finder.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "naturesaura:item/loot_finder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/naturesaura/lang/en_us.json b/src/main/resources/assets/naturesaura/lang/en_us.json index a0ec8cc8..e034b082 100644 --- a/src/main/resources/assets/naturesaura/lang/en_us.json +++ b/src/main/resources/assets/naturesaura/lang/en_us.json @@ -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", diff --git a/src/main/resources/assets/naturesaura/textures/item/loot_finder.png b/src/main/resources/assets/naturesaura/textures/item/loot_finder.png new file mode 100644 index 0000000000000000000000000000000000000000..1f1fe20409606e93085767f1d78f4fbdbe9cfe8b GIT binary patch literal 397 zcmV;80doF{P)Px$M@d9MR5*>rkiSa;aTvxw*IAds9TWxmY_1{-b zM*#>0fwNnd9A;haAD#hNUyU$yEopbUN+1J(dQ;=^2|$R1RX_-wAfzr(wL#Mi`mW1b zSfSo{H&_UoK+~4!yY4qr2vA}nk(b`f9Y$ms?_=G21w|3so$e>E>$*Q8!o|Ug6cTx< z*%jGrT}rf6l(|1m!71!b%2Kl{k~ZUWVLyV1U>F7fwwaQhjU*>G*YrjM1zMqc$2am?;gqC@K&OwqI~V;*AohfyyRjQ=iL^)(Ll*$ rG5|P^!@LuGgR~hJU}o%D27lHYF6(?e^wULn00000NkvXXu0mjf3hJo3 literal 0 HcmV?d00001 diff --git a/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/items/loot_finder.json b/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/items/loot_finder.json new file mode 100644 index 00000000..e935c7a6 --- /dev/null +++ b/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/items/loot_finder.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/naturesaura/recipes/loot_finder.json b/src/main/resources/data/naturesaura/recipes/loot_finder.json new file mode 100644 index 00000000..eb09cb1f --- /dev/null +++ b/src/main/resources/data/naturesaura/recipes/loot_finder.json @@ -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" + } +} \ No newline at end of file