diff --git a/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_array.json b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_array.json new file mode 100644 index 00000000..a4052f62 --- /dev/null +++ b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_array.json @@ -0,0 +1,23 @@ +{ + "name": "Dev Example - Double Array", + "icon": "minecraft:barrier", + "category": "utility", + "pages": [ + { + "type": "crafting_array", + "heading": "Example Single Array", + "recipe": "bloodmagic:array/living_helmet", + "text": "This is an example using a single array. This template is the normal template.$(br2)The double array template uses the same template, just with an \"a\" recipe on top and a \"b\" recipe below." + } , + { + "type": "2x_crafting_array", + "a.heading": "Example Double Array A", + "a.recipe": "bloodmagic:array/living_plate", + "b.heading": "Example Double Array B", + "b.recipe": "bloodmagic:array/living_leggings", + "b.text": "text under the B array. There's nothing stopping you from putting text under the A array, but it would overlap." + } + ] +} + + diff --git a/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_functional_array.json b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_functional_array.json new file mode 100644 index 00000000..1b108e56 --- /dev/null +++ b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_functional_array.json @@ -0,0 +1,26 @@ +{ + "name": "Dev Example - Double Functoinal Array", + "icon": "minecraft:barrier", + "category": "utility", + "pages": [ + { + "type": "functional_array", + "heading": "Example Single Array", + "recipe": "bloodmagic:array/movement", + "image": "movementarray.png", + "text": "This is an example using a single functional array. This template is the normal template.$(br2)The double array template uses the same template, just with an \"a\" recipe on top and a \"b\" recipe below." + } , + { + "type": "2x_functional_array", + "a.heading": "Example Double Array A", + "a.recipe": "bloodmagic:array/movement", + "a.image": "movementarray.png", + "b.heading": "Example Double Array B", + "b.recipe": "bloodmagic:array/movement", + "b.image": "movementarray.png", + "b.text": "text under the B array. There's nothing stopping you from putting text under the A array, but it would overlap." + } + ] +} + + diff --git a/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_crafting_array.json b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_crafting_array.json new file mode 100644 index 00000000..9d192548 --- /dev/null +++ b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_crafting_array.json @@ -0,0 +1,16 @@ +{ + "include": [ + { + "template": "crafting_array", + "as": "a", + "x": 0, + "y": 0 + }, + { + "template": "crafting_array", + "as": "b", + "x": 0, + "y": 65 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_functional_array.json b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_functional_array.json new file mode 100644 index 00000000..61f095a1 --- /dev/null +++ b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_functional_array.json @@ -0,0 +1,16 @@ +{ + "include": [ + { + "template": "functional_array", + "as": "a", + "x": 0, + "y": 0 + }, + { + "template": "functional_array", + "as": "b", + "x": 0, + "y": 65 + } + ] +} \ No newline at end of file