-
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: Crafting recipes for toad hats
- Loading branch information
1 parent
5e899ae
commit 985b33c
Showing
13 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
datapack/data/oran9eutan/advancements/hats/event/recipe/toad_blue.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,2 @@ | ||
{%- import 'advancements.json' as adv -%} | ||
{{ adv.on_crafts_recipe("oran9eutan:hats/toad_blue", "oran9eutan:hats/event/recipe/toad_blue") }} |
2 changes: 2 additions & 0 deletions
2
datapack/data/oran9eutan/advancements/hats/event/recipe/toad_green.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,2 @@ | ||
{%- import 'advancements.json' as adv -%} | ||
{{ adv.on_crafts_recipe("oran9eutan:hats/toad_green", "oran9eutan:hats/event/recipe/toad_green") }} |
2 changes: 2 additions & 0 deletions
2
datapack/data/oran9eutan/advancements/hats/event/recipe/toad_red.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,2 @@ | ||
{%- import 'advancements.json' as adv -%} | ||
{{ adv.on_crafts_recipe("oran9eutan:hats/toad_red", "oran9eutan:hats/event/recipe/toad_red") }} |
2 changes: 2 additions & 0 deletions
2
datapack/data/oran9eutan/advancements/hats/event/recipe/toad_yellow.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,2 @@ | ||
{%- import 'advancements.json' as adv -%} | ||
{{ adv.on_crafts_recipe("oran9eutan:hats/toad_yellow", "oran9eutan:hats/event/recipe/toad_yellow") }} |
6 changes: 6 additions & 0 deletions
6
datapack/data/oran9eutan/functions/hats/event/recipe/toad_blue.mcfunction
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 @@ | ||
loot give @s loot oran9eutan:hats/hat/toad_blue | ||
clear @s knowledge_book 1 | ||
|
||
# Reset | ||
advancement revoke @s only oran9eutan:hats/event/recipe/toad_blue | ||
recipe take @s oran9eutan:hats/toad_blue |
6 changes: 6 additions & 0 deletions
6
datapack/data/oran9eutan/functions/hats/event/recipe/toad_green.mcfunction
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 @@ | ||
loot give @s loot oran9eutan:hats/hat/toad_green | ||
clear @s knowledge_book 1 | ||
|
||
# Reset | ||
advancement revoke @s only oran9eutan:hats/event/recipe/toad_green | ||
recipe take @s oran9eutan:hats/toad_green |
6 changes: 6 additions & 0 deletions
6
datapack/data/oran9eutan/functions/hats/event/recipe/toad_red.mcfunction
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 @@ | ||
loot give @s loot oran9eutan:hats/hat/toad_red | ||
clear @s knowledge_book 1 | ||
|
||
# Reset | ||
advancement revoke @s only oran9eutan:hats/event/recipe/toad_red | ||
recipe take @s oran9eutan:hats/toad_red |
6 changes: 6 additions & 0 deletions
6
datapack/data/oran9eutan/functions/hats/event/recipe/toad_yellow.mcfunction
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 @@ | ||
loot give @s loot oran9eutan:hats/hat/toad_yellow | ||
clear @s knowledge_book 1 | ||
|
||
# Reset | ||
advancement revoke @s only oran9eutan:hats/event/recipe/toad_yellow | ||
recipe take @s oran9eutan:hats/toad_yellow |
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,15 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:mushroom_stem" | ||
}, | ||
{ | ||
"item": "minecraft:blue_dye" | ||
} | ||
], | ||
"result": { | ||
"item": "minecraft:knowledge_book", | ||
"count": 1 | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:mushroom_stem" | ||
}, | ||
{ | ||
"item": "minecraft:lime_dye" | ||
} | ||
], | ||
"result": { | ||
"item": "minecraft:knowledge_book", | ||
"count": 1 | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:mushroom_stem" | ||
}, | ||
{ | ||
"item": "minecraft:red_dye" | ||
} | ||
], | ||
"result": { | ||
"item": "minecraft:knowledge_book", | ||
"count": 1 | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:mushroom_stem" | ||
}, | ||
{ | ||
"item": "minecraft:yellow_dye" | ||
} | ||
], | ||
"result": { | ||
"item": "minecraft:knowledge_book", | ||
"count": 1 | ||
} | ||
} |
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