| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "parent": "minecraft:recipes/root",
- "rewards": {
- "recipes": [
- "minecraft:crossbow"
- ]
- },
- "criteria": {
- "has_string": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:string"
- }
- ]
- }
- },
- "has_stick": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:stick"
- }
- ]
- }
- },
- "has_iron_ingot": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:iron_ingot"
- }
- ]
- }
- },
- "has_tripwire_hook": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:tripwire_hook"
- }
- ]
- }
- },
- "has_the_recipe": {
- "trigger": "minecraft:recipe_unlocked",
- "conditions": {
- "recipe": "minecraft:crossbow"
- }
- }
- },
- "requirements": [
- [
- "has_string",
- "has_stick",
- "has_iron_ingot",
- "has_tripwire_hook",
- "has_the_recipe"
- ]
- ]
- }
|