| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "parent": "minecraft:recipes/root",
- "rewards": {
- "recipes": [
- "minecraft:gray_dye"
- ]
- },
- "criteria": {
- "has_white_dye": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:white_dye"
- }
- ]
- }
- },
- "has_black_dye": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:black_dye"
- }
- ]
- }
- },
- "has_the_recipe": {
- "trigger": "minecraft:recipe_unlocked",
- "conditions": {
- "recipe": "minecraft:gray_dye"
- }
- }
- },
- "requirements": [
- [
- "has_white_dye",
- "has_black_dye",
- "has_the_recipe"
- ]
- ]
- }
|