| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "parent": "minecraft:recipes/root",
- "rewards": {
- "recipes": [
- "minecraft:campfire"
- ]
- },
- "criteria": {
- "has_stick": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:stick"
- }
- ]
- }
- },
- "has_coal": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "tag": "minecraft:coals"
- }
- ]
- }
- },
- "has_the_recipe": {
- "trigger": "minecraft:recipe_unlocked",
- "conditions": {
- "recipe": "minecraft:campfire"
- }
- }
- },
- "requirements": [
- [
- "has_stick",
- "has_coal",
- "has_the_recipe"
- ]
- ]
- }
|