| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "parent": "minecraft:recipes/root",
- "rewards": {
- "recipes": [
- "minecraft:mushroom_stew"
- ]
- },
- "criteria": {
- "has_mushroom_stew": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:mushroom_stew"
- }
- ]
- }
- },
- "has_bowl": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:bowl"
- }
- ]
- }
- },
- "has_brown_mushroom": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:brown_mushroom"
- }
- ]
- }
- },
- "has_red_mushroom": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:red_mushroom"
- }
- ]
- }
- },
- "has_the_recipe": {
- "trigger": "minecraft:recipe_unlocked",
- "conditions": {
- "recipe": "minecraft:mushroom_stew"
- }
- }
- },
- "requirements": [
- [
- "has_mushroom_stew",
- "has_bowl",
- "has_brown_mushroom",
- "has_red_mushroom",
- "has_the_recipe"
- ]
- ]
- }
|