feat(config): 为属性配置添加闪避率条目

为每个阶位(一至四阶)的特殊属性配置添加了对应的闪避率(DODGE)条目,并设置上限为60%。
This commit is contained in:
panw
2026-02-04 10:41:36 +08:00
parent a27d6d2de8
commit 740f0af1e4

View File

@@ -23,6 +23,7 @@ import { Attrs } from "./HeroAttrs";
2010:{uuid:2010, icon:"1020", attr: Attrs.BURN_CHANCE, value: 2, desc: "燃烧概率 +2%", isSpecial: true, note: "上限50%" },
2011:{uuid:2011, icon:"1020", attr: Attrs.BACK_CHANCE, value: 2, desc: "击退概率 +2%", isSpecial: true, note: "上限50%" },
2012:{uuid:2012, icon:"1020", attr: Attrs.SLOW_CHANCE, value: 2, desc: "减速概率 +2%", isSpecial: true, note: "上限50%" },
2013:{uuid:2013, icon:"1020", attr: Attrs.DODGE, value: 2, desc: "闪避率 +2%", isSpecial: true, note: "上限60%" },
//*二阶 */
2101:{uuid:2101, icon:"1020", attr: Attrs.AP, value: 3, desc: "攻击力 +3%", isSpecial: false, note: "常规强化" },
2102:{uuid:2102, icon:"1020", attr: Attrs.HP_MAX, value: 3, desc: "生命上限 +3%", isSpecial: false, note: "常规强化" },
@@ -36,6 +37,7 @@ import { Attrs } from "./HeroAttrs";
2110:{uuid:2110, icon:"1020", attr: Attrs.BURN_CHANCE, value: 2.5, desc: "燃烧概率 +2.5%", isSpecial: true, note: "上限50%" },
2111:{uuid:2111, icon:"1020", attr: Attrs.BACK_CHANCE, value: 2.5, desc: "击退概率 +2.5%", isSpecial: true, note: "上限50%" },
2112:{uuid:2112, icon:"1020", attr: Attrs.SLOW_CHANCE, value: 2.5, desc: "减速概率 +2.5%", isSpecial: true, note: "上限50%" },
2113:{uuid:2113, icon:"1020", attr: Attrs.DODGE, value: 2.5, desc: "闪避率 +2.5%", isSpecial: true, note: "上限60%" },
//*三阶 */
2201:{uuid:2201, icon:"1020", attr: Attrs.AP, value: 4, desc: "攻击力 +4%", isSpecial: false, note: "常规强化" },
@@ -50,6 +52,7 @@ import { Attrs } from "./HeroAttrs";
2210:{uuid:2210, icon:"1020", attr: Attrs.BURN_CHANCE, value: 3, desc: "燃烧概率 +3%", isSpecial: true, note: "上限50%" },
2211:{uuid:2211, icon:"1020", attr: Attrs.BACK_CHANCE, value: 3, desc: "击退概率 +3%", isSpecial: true, note: "上限50%" },
2212:{uuid:2212, icon:"1020", attr: Attrs.SLOW_CHANCE, value: 3, desc: "减速概率 +3%", isSpecial: true, note: "上限50%" },
2213:{uuid:2213, icon:"1020", attr: Attrs.DODGE, value: 3, desc: "闪避率 +3%", isSpecial: true, note: "上限60%" },
//*四阶 */
2301:{uuid:2301, icon:"1020", attr: Attrs.AP, value: 5, desc: "攻击力 +5%", isSpecial: false, note: "常规强化" },
@@ -64,6 +67,7 @@ import { Attrs } from "./HeroAttrs";
2310:{uuid:2310, icon:"1020", attr: Attrs.BURN_CHANCE, value: 5, desc: "燃烧概率 +5%", isSpecial: true, note: "上限50%" },
2311:{uuid:2311, icon:"1020", attr: Attrs.BACK_CHANCE, value: 5, desc: "击退概率 +5%", isSpecial: true, note: "上限50%" },
2312:{uuid:2312, icon:"1020", attr: Attrs.SLOW_CHANCE, value: 5, desc: "减速概率 +5%", isSpecial: true, note: "上限50%" },
2313:{uuid:2313, icon:"1020", attr: Attrs.DODGE, value: 5, desc: "闪避率 +5%", isSpecial: true, note: "上限60%" },
}
export interface PotionInfo extends AttrInfo {