diff --git a/src/main/resources/assets/naturesaura/patchouli_books/book/en_us/entries/creating/flower_generator.json b/src/main/resources/assets/naturesaura/patchouli_books/book/en_us/entries/creating/flower_generator.json new file mode 100644 index 00000000..f88abb1b --- /dev/null +++ b/src/main/resources/assets/naturesaura/patchouli_books/book/en_us/entries/creating/flower_generator.json @@ -0,0 +1,21 @@ +{ + "name": "Herbivorous Absorber", + "icon": "naturesaura:flower_generator", + "category": "creating", + "advancement": "naturesaura:infused_materials", + "pages": [ + { + "type": "text", + "text": "A worldly item that surely posesses quite high natural levels of $(aura) is known to be the $(item)flower$(). This can be made use of using the $(item)Herbivorous Absorber$() that will, when placed in the world, consume any small flower in the close vicinity and convert their energy into $(aura)." + }, + { + "type": "text", + "text": "The caveat, however, is that supplying it with one and the same flower constantly will cause it to lose the ability to consume that flower's $(aura).$(br)This means that, if one wants to get the absorber to work efficiently, they will have to supply it with $(thing)different kinds$() of flowers after one another.$(br)For the absorber to reach maxmimum efficiency, about six or so different kinds should be needed." + }, + { + "type": "crafting", + "recipe": "naturesaura:flower_generator", + "text": "Creating the $(item)Herbivorous Absorber$()" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/naturesaura/recipes/flower_generator.json b/src/main/resources/assets/naturesaura/recipes/flower_generator.json new file mode 100644 index 00000000..1c8f324a --- /dev/null +++ b/src/main/resources/assets/naturesaura/recipes/flower_generator.json @@ -0,0 +1,24 @@ +{ + "type": "forge:ore_shaped", + "pattern": [ + "PIP", + "IFI", + "PIP" + ], + "key": { + "P": { + "type": "forge:ore_dict", + "ore": "plankWood" + }, + "I": { + "item": "naturesaura:infused_iron" + }, + "F": { + "item": "minecraft:double_plant", + "data": 5 + } + }, + "result": { + "item": "naturesaura:flower_generator" + } +} \ No newline at end of file