promotional bannermobile promotional banner

Diet - AppleSeed Edition

A balanced diet brings you benefits!

File Details

1.2.0 for Neoforge 1.21.1

  • R
  • May 4, 2026
  • 153.81 KB
  • 141
  • 1.21.1
  • NeoForge

File Name

appleseed-1.2.0.jar

Supported Versions

  • 1.21.1

Curse Maven Snippet

NeoForge

implementation "curse.maven:diet-appleseed-edition-1530806:8036662"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Changelog - AppleSeed Diet Mod

Version 1.2.0


🐛 Bug Fixes / 修复

1. Dedicated Server Compability Fix / 专用服务端兼容性修复

2. Effects Application Fix / 范围效果应用修复

3. UI Dynamic Rendering Fix / UI动态渲染修复

4. Dedicated Server Sync Fix / 专用服务端同步修复

5. New Nutrient Initial Value Fix / 新营养素初始值修复

✨ Improvements / 优化

1. Attribute Display Precision / 属性显示精度

Change: Speed-related attribute modifiers now display with 2 decimal places in the "Active Effects" tooltip. 改动: UI界面的"当前效果"列表中,显示"速度"、"移动速度"和"攻击速度"三种属性增益效果时,显示的数字精确度改为精确到小数点后两位

Attribute Old Format New Format Example
Movement Speed %+.0f %+.2f +0.06 移动速度
Attack Speed %+.0f %+.2f +0.20 攻击速度
All Others %+.0f %+.0f +6 最大生命

2. Fully Data-Driven Nutrient Configuration / 完全数据驱动的营养素配置

Migrated all nutrient properties from hardcoded values to JSON data files, supporting custom colors, icons, names, initial values, gain/decay multipliers, and effects. 将所有营养素属性从硬编码迁移到JSON数据文件,支持自定义颜色、图标、名称、初始值、增减倍率和效果范围配置。

{
  "icon": "minecraft:wheat",
  "color": "#d4a017",
  "order": 0,
  "default_value": 0.5,
  "gain_multiplier": 1.0,
  "decay_multiplier": 1.0,
  "beneficial": true,
  "translation_key": "diet.group.grains",
  "effects": [
    "0-25:effect(minecraft:slowness,0)",
    "61-70:attribute(minecraft:generic.max_health,4.0)",
    "71-80:attribute(minecraft:generic.max_health,6.0),effect(minecraft:regeneration,0)",
    "81-100:attribute(minecraft:generic.max_health,6.0),attribute(minecraft:generic.attack_damage,1.0),effect(minecraft:regeneration,0)"
  ]
}

3. Nutrient Effects in Data Files / 营养素范围效果数据文件配置

Moved nutrient range effects configuration from config file to nutrient data files with config file override support. 将营养素范围效果配置从配置文件迁移到营养素数据文件,并支持配置文件覆盖。