-
Notifications
You must be signed in to change notification settings - Fork 31
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
24 changed files
with
1,176 additions
and
242 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
33 changes: 33 additions & 0 deletions
33
src/generated/resources/data/sophisticatedstorage/advancements/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,33 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_base_tier_wooden_storage": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"tag": "sophisticatedstorage:base_tier_wooden_storage" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "sophisticatedstorage:paintbrush" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_base_tier_wooden_storage", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"sophisticatedstorage:paintbrush" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
21 changes: 21 additions & 0 deletions
21
src/generated/resources/data/sophisticatedstorage/recipes/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": { | ||
"item": "sophisticatedstorage:paintbrush" | ||
}, | ||
"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
Oops, something went wrong.