diff --git a/src/main/resources/assets/naturesaura/lang/en_us.json b/src/main/resources/assets/naturesaura/lang/en_us.json index f862dba6..ed6e6d4f 100644 --- a/src/main/resources/assets/naturesaura/lang/en_us.json +++ b/src/main/resources/assets/naturesaura/lang/en_us.json @@ -115,6 +115,7 @@ "item.naturesaura.death_ring": "Ring of Last Chance", "item.naturesaura.tainted_gold": "Tainted Gold", "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:altar.name": "Natural Altar Infusion", "container.naturesaura:offering.name": "Offering to the Gods", diff --git a/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/items/light_staff.json b/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/items/light_staff.json new file mode 100644 index 00000000..bce04f72 --- /dev/null +++ b/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/items/light_staff.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/naturesaura/recipes/light_staff.json b/src/main/resources/data/naturesaura/recipes/light_staff.json new file mode 100644 index 00000000..9f05b490 --- /dev/null +++ b/src/main/resources/data/naturesaura/recipes/light_staff.json @@ -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" + } +} \ No newline at end of file