-
-
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.
feat: Add Blender recipe, slight change to printer recipe
- Loading branch information
1 parent
80b03e1
commit 86c8b91
Showing
6 changed files
with
90 additions
and
4 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
14 changes: 13 additions & 1 deletion
14
shared/src/generated/resources/assets/forbiddensmoothies/blockstates/blender.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,19 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"facing=east": { | ||
"model": "forbiddensmoothies:block/blender", | ||
"y": 90 | ||
}, | ||
"facing=north": { | ||
"model": "forbiddensmoothies:block/blender" | ||
}, | ||
"facing=south": { | ||
"model": "forbiddensmoothies:block/blender", | ||
"y": 180 | ||
}, | ||
"facing=west": { | ||
"model": "forbiddensmoothies:block/blender", | ||
"y": 270 | ||
} | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
...generated/resources/data/forbiddensmoothies/advancements/recipes/decorations/blender.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,35 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_flint": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"minecraft:flint" | ||
] | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "forbiddensmoothies:blender" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_flint", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"forbiddensmoothies:blender" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
24 changes: 24 additions & 0 deletions
24
shared/src/generated/resources/data/forbiddensmoothies/recipes/blender.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,24 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"F": { | ||
"item": "minecraft:flint" | ||
}, | ||
"G": { | ||
"item": "minecraft:glass_pane" | ||
}, | ||
"I": { | ||
"item": "minecraft:iron_ingot" | ||
} | ||
}, | ||
"pattern": [ | ||
"III", | ||
"GFG", | ||
"III" | ||
], | ||
"result": { | ||
"item": "forbiddensmoothies:blender" | ||
}, | ||
"show_notification": true | ||
} |
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