-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from MEGATREX4/patchouli-craft-test
Patchouli craft test
- Loading branch information
Showing
10 changed files
with
131 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/ukrainian_delight/models/item/ukrainian_guide.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": { | ||
"layer0": "ukrainian_delight:item/ukrainian_guide" | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...ts/ukrainian_delight/patchouli_books/ukrainian_guide/en_us/entries/brewing_keg_entry.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "patchouli:entry", | ||
"name": "Brewing Keg", | ||
"icon": "minecraft:writable_book", | ||
"description": "Details on how to use the Brewing Keg.", | ||
"category": "ukrainian_delight:test_category", | ||
"pages": [ | ||
{ | ||
"type": "ukrainian_delight:brewing_keg", | ||
"recipe": "ukrainian_delight:brewing/brewpotion", | ||
"input0": "minecraft:sugar", | ||
"input1": "minecraft:wheat", | ||
"input2": "minecraft:wheat", | ||
"input3": "minecraft:wheat", | ||
"input4": "minecraft:wheat", | ||
"input5": "minecraft:wheat", | ||
"container": "minecraft:glass_bottle", | ||
"output": "ukrainian_delight:wine_bottle", | ||
"text": "This is how you use the BrewingKeg to create various beverages. $(br) The input items and container are required for the process, and the result will be displayed as the output item." | ||
} | ||
] | ||
} |
70 changes: 70 additions & 0 deletions
70
...assets/ukrainian_delight/patchouli_books/ukrainian_guide/en_us/templates/brewing_keg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"components": [ | ||
{ | ||
"type": "patchouli:image", | ||
"image": "ukrainian_delight:textures/gui/patchouli/brewing_keg.png", | ||
"width": 256, | ||
"height": 64, | ||
"texture_height": 64, | ||
"scale": 0.65, | ||
"u": 40 | ||
}, | ||
{ | ||
"type": "patchouli:item", | ||
"item": "#input0", | ||
"x": 20, | ||
"y": 40 | ||
}, | ||
{ | ||
"type": "patchouli:item", | ||
"item": "#input1", | ||
"x": 60, | ||
"y": 40 | ||
}, | ||
{ | ||
"type": "patchouli:item", | ||
"item": "#input2", | ||
"x": 100, | ||
"y": 40 | ||
}, | ||
{ | ||
"type": "patchouli:item", | ||
"item": "#input3", | ||
"x": 20, | ||
"y": 80 | ||
}, | ||
{ | ||
"type": "patchouli:item", | ||
"item": "#input4", | ||
"x": 60, | ||
"y": 80 | ||
}, | ||
{ | ||
"type": "patchouli:item", | ||
"item": "#input5", | ||
"x": 100, | ||
"y": 80 | ||
}, | ||
{ | ||
"type": "patchouli:item", | ||
"item": "#container", | ||
"x": 140, | ||
"y": 60 | ||
}, | ||
{ | ||
"type": "patchouli:item", | ||
"item": "#output", | ||
"x": 180, | ||
"y": 60 | ||
}, | ||
{ | ||
"type": "patchouli:separator", | ||
"y": 100 | ||
}, | ||
{ | ||
"type": "patchouli:text", | ||
"text": "#text", | ||
"y": 110 | ||
} | ||
] | ||
} |
Binary file added
BIN
+6.9 KB
src/main/resources/assets/ukrainian_delight/textures/gui/patchouli/brewing_keg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
9 changes: 6 additions & 3 deletions
9
src/main/resources/data/ukrainian_delight/patchouli_books/ukrainian_guide/book.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
{ | ||
"name": "Ukrainian Delight Guide", | ||
"landing_text": "Welcome to the Ukrainian Delight Mod Guide!", | ||
"name": "patchouli.ukrainian_delight.guide_name", | ||
"landing_text": "patchouli.ukrainian_delight.landing_text", | ||
"version": 1, | ||
"creative_tab": "ukrainian_delight:ingredients_ukrainian_delight", | ||
"use_resource_pack": true | ||
"use_resource_pack": true, | ||
"model": "ukrainian_delight:ukrainian_guide", | ||
"show_progress": false, | ||
"index_icon": "ukrainian_delight:ukrainian_guide" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters