forked from teaconmc/Puer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add festival stand ticket loot table
- Loading branch information
1 parent
05ca6d3
commit a79614f
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
{ | ||
"type": "minecraft:chest", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "minecraft:cookie", | ||
"weight": 100, | ||
"functions": [ | ||
{ | ||
"function": "minecraft:set_lore", | ||
"lore": [ | ||
{ | ||
"text": "姬川岛收集品", | ||
"type": "text", | ||
"color": "blue", | ||
"italic": false | ||
} | ||
], | ||
"mode": "replace_all" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "minecraft:item", | ||
"name": "kitchenkarrot:sweet_berry_tart", | ||
"weight": 40, | ||
"functions": [ | ||
{ | ||
"function": "minecraft:set_lore", | ||
"lore": [ | ||
{ | ||
"text": "姬川岛收集品", | ||
"type": "text", | ||
"color": "blue", | ||
"italic": false | ||
} | ||
], | ||
"mode": "replace_all" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "minecraft:item", | ||
"name": "youkaishomecoming:sekibankiyaki", | ||
"weight": 20, | ||
"functions": [ | ||
{ | ||
"function": "minecraft:set_lore", | ||
"lore": [ | ||
{ | ||
"text": "姬川岛收集品", | ||
"type": "text", | ||
"color": "blue", | ||
"italic": false | ||
} | ||
], | ||
"mode": "replace_all" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "minecraft:item", | ||
"name": "ashihara:dango_hanamie", | ||
"weight": 10, | ||
"functions": [ | ||
{ | ||
"function": "minecraft:set_lore", | ||
"lore": [ | ||
{ | ||
"text": "姬川岛收集品", | ||
"type": "text", | ||
"color": "blue", | ||
"italic": false | ||
} | ||
], | ||
"mode": "replace_all" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "minecraft:item", | ||
"name": "locusazzurro_icaruswings:gold_upgrade_smithing_template", | ||
"weight": 5 | ||
}, | ||
{ | ||
"type": "minecraft:item", | ||
"name": "locusazzurro_icaruswings:anemone", | ||
"weight": 1 | ||
} | ||
] | ||
} | ||
] | ||
} |