Skip to content

Commit

Permalink
add advancement
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDeathlyCow committed Jan 3, 2025
1 parent be1e692 commit 976ba39
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/resources/assets/frostiful/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 976ba39

Please sign in to comment.