| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "parent": "minecraft:recipes/root",
- "rewards": {
- "recipes": [
- "minecraft:barrel"
- ]
- },
- "criteria": {
- "has_planks": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "tag": "minecraft:planks"
- }
- ]
- }
- },
- "has_wood_slab": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "tag": "minecraft:wooden_slabs"
- }
- ]
- }
- },
- "has_the_recipe": {
- "trigger": "minecraft:recipe_unlocked",
- "conditions": {
- "recipe": "minecraft:barrel"
- }
- }
- },
- "requirements": [
- [
- "has_planks",
- "has_wood_slab",
- "has_the_recipe"
- ]
- ]
- }
|