| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "parent": "minecraft:recipes/root",
- "rewards": {
- "recipes": [
- "minecraft:blue_concrete_powder"
- ]
- },
- "criteria": {
- "has_sand": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:sand"
- }
- ]
- }
- },
- "has_gravel": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:gravel"
- }
- ]
- }
- },
- "has_the_recipe": {
- "trigger": "minecraft:recipe_unlocked",
- "conditions": {
- "recipe": "minecraft:blue_concrete_powder"
- }
- }
- },
- "requirements": [
- [
- "has_sand",
- "has_gravel",
- "has_the_recipe"
- ]
- ]
- }
|