diff --git a/src/main/resources/assets/frostiful/lang/en_us.json b/src/main/resources/assets/frostiful/lang/en_us.json index 84391b36..f1c3ad2a 100644 --- a/src/main/resources/assets/frostiful/lang/en_us.json +++ b/src/main/resources/assets/frostiful/lang/en_us.json @@ -147,6 +147,8 @@ "advancements.frostiful.add_log_to_fire.desc": "Add a log to a campfire", "advancements.frostiful.adventure.obtain_ice_skates.title": "Sword Shoes", "advancements.frostiful.adventure.obtain_ice_skates.description": "Craft a pair of Ice Skates in the Smithing Table", + "advancements.frostiful.adventure.trim_with_all_frostiful_patterns.title": "Winter Has Come", + "advancements.frostiful.adventure.trim_with_all_frostiful_patterns.description": "Apply all the smithing templates from Frostiful at least once: Snow Man, Frosty, and Glacial", "death.attack.frostiful.icicle": "%1$s was impaled on an icicle", "death.attack.frostiful.icicle.player": "%1$s was impaled on an icicle whilst fighting %2$s", diff --git a/src/main/resources/data/frostiful/advancement/adventure/trim_with_all_frostiful_patterns.json b/src/main/resources/data/frostiful/advancement/adventure/trim_with_all_frostiful_patterns.json new file mode 100644 index 00000000..a0a5079b --- /dev/null +++ b/src/main/resources/data/frostiful/advancement/adventure/trim_with_all_frostiful_patterns.json @@ -0,0 +1,51 @@ +{ + "parent": "minecraft:adventure/trim_with_any_armor_pattern", + "criteria": { + "frostiful:snow_man_trim": { + "conditions": { + "recipe_id": "frostiful:smithing/snow_man_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "frostiful:frosty_trim": { + "conditions": { + "recipe_id": "frostiful:smithing/frosty_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "frostiful:glacial_trim": { + "conditions": { + "recipe_id": "frostiful:smithing/glacial_trim" + }, + "trigger": "minecraft:recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.frostiful.adventure.trim_with_all_frostiful_patterns.description" + }, + "frame": "challenge", + "icon": { + "count": 1, + "id": "frostiful:glacial_armor_trim_smithing_template" + }, + "title": { + "translate": "advancements.frostiful.adventure.trim_with_all_frostiful_patterns.title" + } + }, + "requirements": [ + [ + "frostiful:snow_man_trim" + ], + [ + "frostiful:frosty_trim" + ], + [ + "frostiful:glacial_trim" + ] + ], + "rewards": { + "experience": 150 + }, + "sends_telemetry_event": false +} \ No newline at end of file