Files
Wizardry/src/main/resources/assets/ebwizardry/advancements/defeat_evil_wizard.json
T
Philipp Rustemeier 612bbdb64d Replace Achievements with Advancements
- Advancements are now in JSON files, converted by the included migration script.
- WizardryAdvancementTrigger is a generic achievement trigger that can be reused throughout the code to trigger custom advancements not covered by the JSON conditions.
- Plus some other small and obvious fixes.
2018-03-16 18:08:34 +01:00

22 lines
560 B
JSON

{
"display": {
"title": {
"translate": "achievement.defeat_evil_wizard"
},
"description": {
"translate": "achievement.defeat_evil_wizard.desc"
},
"icon": {
"item": "ebwizardry:wizard_boots_necromancy"
}
},
"parent": "ebwizardry:wizard_trade",
"criteria": {
"criteria_0": {
"trigger": "minecraft:player_killed_entity",
"conditions": {
"entity": { "type": "ebwizardry:evil_wizard" }
}
}
}
}