-
Notifications
You must be signed in to change notification settings - Fork 6
Specifying Frames for Advancements (lower v2.6, newer see readme)
DaFuqs edited this page Nov 17, 2024
·
1 revision
You can add entirely new advancement frames, including custom colors, via data pack (or included in your mod).
Specify which advancemwnts should use which frame by placing json files in the directory: assets/<data_pack_or_mod_name>/advancement_frames
. It contains a list of elements with these properties:
-
advancement
: The identifier of an advancement -
frame
: The identifier of a frame, either a vanilla frame (minecraft:task
,minecraft:goal
orminecraft:challenge
), one shipped with Paginated Advancements (likepaginatedadvancements:arrow
), or your own entirely
Frame Overview
task | goal | challenge |
---|---|---|
![]() |
![]() |
![]() |
squircle | star | butterfly | crested | corners | heart |
---|---|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
arrow_right | arrow_left | arrow_up | arrow_down |
---|---|---|---|
![]() |
![]() |
![]() |
![]() |
circle | excessive | none | sharp | speech_bubble | edged | block |
---|---|---|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
[
{
"advancement": "minecraft:story/shiny_gear",
"frame": "minecraft:task"
},
{
"advancement": "minecraft:story/cure_zombie_villager",
"frame": "paginatedadvancements:arrow"
}
]