diff --git a/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/using/animal_spawner.json b/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/using/animal_spawner.json index 061a7a6f..137c5acc 100644 --- a/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/using/animal_spawner.json +++ b/src/main/resources/data/naturesaura/patchouli_books/book/en_us/entries/using/animal_spawner.json @@ -123,7 +123,7 @@ }, { "type": "naturesaura:animal_spawner", - "recipe": "naturesaura:zombie_pigman" + "recipe": "naturesaura:zombified_piglin" }, { "type": "naturesaura:animal_spawner", @@ -196,6 +196,18 @@ { "type": "naturesaura:animal_spawner", "recipe": "naturesaura:cat" + }, + { + "type": "naturesaura:animal_spawner", + "recipe": "naturesaura:piglin" + }, + { + "type": "naturesaura:animal_spawner", + "recipe": "naturesaura:piglin_brute" + }, + { + "type": "naturesaura:animal_spawner", + "recipe": "naturesaura:hoglin" } ] } \ No newline at end of file diff --git a/src/main/resources/data/naturesaura/recipes/animal_spawner/hoglin.json b/src/main/resources/data/naturesaura/recipes/animal_spawner/hoglin.json new file mode 100644 index 00000000..f5515388 --- /dev/null +++ b/src/main/resources/data/naturesaura/recipes/animal_spawner/hoglin.json @@ -0,0 +1,20 @@ +{ + "type": "naturesaura:animal_spawner", + "ingredients": [ + { + "item": "naturesaura:birth_spirit" + }, + { + "item": "minecraft:rotten_flesh" + }, + { + "item": "minecraft:porkchop" + }, + { + "item": "minecraft:gold_nugget" + } + ], + "entity": "minecraft:hoglin", + "aura": 120000, + "time": 150 +} \ No newline at end of file diff --git a/src/main/resources/data/naturesaura/recipes/animal_spawner/piglin.json b/src/main/resources/data/naturesaura/recipes/animal_spawner/piglin.json new file mode 100644 index 00000000..7d7d1b67 --- /dev/null +++ b/src/main/resources/data/naturesaura/recipes/animal_spawner/piglin.json @@ -0,0 +1,17 @@ +{ + "type": "naturesaura:animal_spawner", + "ingredients": [ + { + "item": "naturesaura:birth_spirit" + }, + { + "item": "minecraft:rotten_flesh" + }, + { + "item": "minecraft:gold_ingot" + } + ], + "entity": "minecraft:piglin", + "aura": 120000, + "time": 150 +} \ No newline at end of file diff --git a/src/main/resources/data/naturesaura/recipes/animal_spawner/piglin_brute.json b/src/main/resources/data/naturesaura/recipes/animal_spawner/piglin_brute.json new file mode 100644 index 00000000..41253113 --- /dev/null +++ b/src/main/resources/data/naturesaura/recipes/animal_spawner/piglin_brute.json @@ -0,0 +1,17 @@ +{ + "type": "naturesaura:animal_spawner", + "ingredients": [ + { + "item": "naturesaura:birth_spirit" + }, + { + "item": "minecraft:rotten_flesh" + }, + { + "item": "minecraft:gold_block" + } + ], + "entity": "minecraft:piglin_brute", + "aura": 120000, + "time": 150 +} \ No newline at end of file diff --git a/src/main/resources/data/naturesaura/recipes/animal_spawner/zombie_pigman.json b/src/main/resources/data/naturesaura/recipes/animal_spawner/zombified_piglin.json similarity index 85% rename from src/main/resources/data/naturesaura/recipes/animal_spawner/zombie_pigman.json rename to src/main/resources/data/naturesaura/recipes/animal_spawner/zombified_piglin.json index fec7b9f7..62897e63 100644 --- a/src/main/resources/data/naturesaura/recipes/animal_spawner/zombie_pigman.json +++ b/src/main/resources/data/naturesaura/recipes/animal_spawner/zombified_piglin.json @@ -11,7 +11,7 @@ "item": "minecraft:gold_nugget" } ], - "entity": "minecraft:zombie_pigman", + "entity": "minecraft:zombified_piglin", "aura": 120000, "time": 150 } \ No newline at end of file