From ccce8a11eae7a85031ca218eb47d194b49efc0bf Mon Sep 17 00:00:00 2001 From: pan Date: Wed, 12 Aug 2026 11:16:38 +0800 Subject: [PATCH] fix(hero): adjust default hero movement speed from 100 to 200 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将英雄默认移动速度从100修改为200,调整基础战斗体验参数 --- assets/script/game/hero/Hero.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/script/game/hero/Hero.ts b/assets/script/game/hero/Hero.ts index e2e5c635..f486df18 100644 --- a/assets/script/game/hero/Hero.ts +++ b/assets/script/game/hero/Hero.ts @@ -156,7 +156,7 @@ export class Hero extends ecs.Entity { model.hp = model.hp_max = base_hp; } - model.speed = hero.speed ?? 100; + model.speed = hero.speed ?? 200; // 构建技能表并注入运行时冷却字段 ccd model.skills = {};