Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Links
Creators
Details
By completing game achievements, players will be rewarded with permanent attribute boosts upon completion. By default, pressing O opens the attribute panel, which displays your attribute values and acquired bonuses. You can also find two configuration files under 1.21.1-NeoForge_21.1.215\config: playerattributemanagement_advancements.json:
"advancements": {
"minecraft:adventure/adventuring_time": {
"minecraft:generic.luck": 0.45,
"minecraft:generic.max_health": 1.6875,
"minecraft:generic.movement_speed": 0.0675
},
"minecraft:adventure/arbalistic": {
"minecraft:generic.attack_damage": 0.45,
"minecraft:generic.attack_speed": 0.1125
},
。。。。省略
As you can see above, the achievement IDs can be found at (https://minecraft.fandom.com/zh/wiki/进度). Theoretically, it supports achievements added by other mods. The configuration file is customizable; you can find the attribute IDs yourself, view gallery images, and adjust the values. Another configuration file controls whether the attribute panel is open and which attribute entries should be displayed; regular players don't need to worry about this other configuration file.
Alternatively, you can use the achievement reward profile generator: Link: https://pan.baidu.com/s/1Hr8BJSUFcDjO-fuUEH9uKQ?pwd=6666 Extraction code: 6666. The static webpage can be opened directly in a browser.
To check if custom attributes are supported, install the latest version of the mod, then delete the playerattributeemanagement_advancements.json and playerattributeemanagement_panel.json files under the config directory. Rebuild the game and open the panel.json file. If it contains the attribute "customAttributes": {}, then it's supported. You just need to add it as shown in the example.~~~~
run\config\playerattributemanagement_panel.json:
{
"panelEnabled": true,// Whether the panel can be opened
"attributes": { // Whether this attribute is displayed
"minecraft:generic.armor": true,
"minecraft:generic.armor_toughness": true,
"minecraft:generic.attack_damage": true,
"minecraft:generic.attack_knockback": true,
"minecraft:generic.attack_speed": true,
"minecraft:generic.burning_time": true,
"minecraft:generic.explosion_knockback_resistance": true,
"minecraft:generic.fall_damage_multiplier": true,
"minecraft:generic.gravity": true,
"minecraft:generic.jump_strength": true,
"minecraft:generic.knockback_resistance": true,
"minecraft:generic.luck": true,
"minecraft:generic.max_absorption": true,
"minecraft:generic.max_health": true,
"minecraft:generic.movement_efficiency": true,
"minecraft:generic.movement_speed": true,
"minecraft:generic.oxygen_bonus": true,
"minecraft:generic.safe_fall_distance": true,
"minecraft:generic.scale": true,
"minecraft:generic.step_height": true,
"minecraft:generic.water_movement_efficiency": true,
"minecraft:player.block_break_speed": true,
"minecraft:player.block_interaction_range": true,
"minecraft:player.entity_interaction_range": true,
"minecraft:player.mining_efficiency": true,
"minecraft:player.sneaking_speed": true,
"minecraft:player.submerged_mining_speed": true,
"minecraft:player.sweeping_damage_ratio": true,
"terra_curio:generic.armor_penetration": true // Custom attributes of other mods
},
"customAttributes": {
"terra_curio:generic.armor_penetration": "护甲穿透" //The name of this attribute displayed in the panel.
}
}



