-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:✨ Added new Paintbrush item that allows applying decorations to …
…storage blocks in world - put into Decoration Table instead of storage to set the decorations that the paintbrush applies - right click blocks in world to apply the decoration - works on individual storage blocks as well as on storage controller to apply the decoration to all storages in controller multiblock - pulls blocks / dyes needed to apply the decoration from player's inventory as well as from any container items including backpacks
- Loading branch information
Showing
27 changed files
with
1,189 additions
and
248 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "#c:slimeballs" | ||
"items": "#c:slime_balls" | ||
} | ||
] | ||
}, | ||
|
32 changes: 32 additions & 0 deletions
32
src/generated/resources/data/sophisticatedstorage/advancement/recipes/misc/paintbrush.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,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_base_tier_wooden_storage": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "#sophisticatedstorage:base_tier_wooden_storage" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "sophisticatedstorage:paintbrush" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_base_tier_wooden_storage" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"sophisticatedstorage:paintbrush" | ||
] | ||
} | ||
} |
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
21 changes: 21 additions & 0 deletions
21
src/generated/resources/data/sophisticatedstorage/recipe/paintbrush.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,21 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"S": { | ||
"item": "minecraft:stick" | ||
}, | ||
"W": { | ||
"tag": "minecraft:wool" | ||
} | ||
}, | ||
"pattern": [ | ||
" W ", | ||
" SW", | ||
"S " | ||
], | ||
"result": { | ||
"count": 1, | ||
"id": "sophisticatedstorage:paintbrush" | ||
} | ||
} |
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
Oops, something went wrong.