From 738ecf3bf800a5e5eb416f9d78ed63984859513b Mon Sep 17 00:00:00 2001 From: panw Date: Tue, 28 Apr 2026 15:11:28 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=A4=A9=E8=B5=8B=E9=85=8D=E7=BD=AE):=20?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=A4=A9=E8=B5=8B=E9=85=8D=E7=BD=AE=E4=BB=A5?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E6=96=B0=E6=8A=80=E8=83=BD=E6=9C=BA=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将"护盾强化"天赋替换为"亡语强化",提供死亡触发技能额外次数 - 新增"召唤强化"天赋,提供召唤触发技能额外次数 - 调整采购、刷新、出售天赋为单级天赋,并提高消耗成本 - 重新分配天赋ID以保持连续性 --- assets/script/game/common/config/TalentSet.ts | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/assets/script/game/common/config/TalentSet.ts b/assets/script/game/common/config/TalentSet.ts index 0ca68408..a81fb80c 100644 --- a/assets/script/game/common/config/TalentSet.ts +++ b/assets/script/game/common/config/TalentSet.ts @@ -42,13 +42,15 @@ export const TalentConfig = { maxLevel: 5, values: [2, 4, 6, 8, 10], costs: [1, 1, 2, 2, 3] }, { id: 6, name: "穿刺强化", icon: "🗡️", desc: "所有英雄穿刺 +{value}", maxLevel: 5, values: [0.2, 0.4, 0.6, 0.8, 1.0], costs: [1, 1, 2, 2, 3] }, - { id: 7, name: "护盾强化", icon: "🛡️", desc: "所有护盾效果 +{value}%", - maxLevel: 5, values: [5, 10, 15, 20, 25], costs: [1, 1, 2, 2, 3] }, - { id: 8, name: "采购优惠", icon: "🛒", desc: "购买英雄 -{value}金", - maxLevel: 5, values: [1, 2, 3, 4, 5], costs: [1, 1, 2, 2, 3] }, - { id: 9, name: "刷新优惠", icon: "🔄", desc: "刷新重抽 -{value}金", - maxLevel: 5, values: [0.5, 1.0, 1.5, 2.0, 2.5], costs: [1, 1, 2, 2, 3] }, - { id: 10, name: "出售补贴", icon: "💰", desc: "出售英雄返还 +{value}%金币", - maxLevel: 5, values: [10, 20, 30, 40, 50], costs: [1, 1, 2, 2, 3] } + { id: 7, name: "亡语强化", icon: "🛡️", desc: "死亡触发技能额外触发次数+1", + maxLevel: 5, values: [0.2, 0.4, 0.6, 0.8, 1.0], costs: [1, 1, 2, 2, 3] }, + { id: 8, name: "召唤强化", icon: "🛡️", desc: "召唤触发技能额外触发次数+1", + maxLevel: 1, values: [1], costs: [20] }, + { id: 9, name: "采购优惠", icon: "🛒", desc: "购买英雄 -{value}金", + maxLevel: 1, values: [1], costs: [10] }, + { id: 10, name: "刷新优惠", icon: "🔄", desc: "刷新重抽 -{value}金", + maxLevel: 1, values: [1], costs: [10] }, + { id: 11, name: "出售补贴", icon: "💰", desc: "出售英雄返还 +{value}%金币", + maxLevel: 1, values: [1], costs: [10] } ] as TalentInfo[] };