From 57035aa62bddef096a566bfc0e7d49898ea7f173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=A8=E8=90=BD=E5=9F=BA=E5=9B=B4=E8=99=BE?= <3161880837@qq.com> Date: Wed, 22 Apr 2026 22:36:38 +0800 Subject: [PATCH] +atk --- components/Weapons/Tree.tscn | 2 +- scripts/Contents/Wave.gd | 2 +- scripts/Contents/Weapons/Tree.gd | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Weapons/Tree.tscn b/components/Weapons/Tree.tscn index 4ba36de..ab1502a 100644 --- a/components/Weapons/Tree.tscn +++ b/components/Weapons/Tree.tscn @@ -13,7 +13,7 @@ typeTopic = 3 costBeachball = 900 emitType = 1 store = { -"atk": 20, +"atk": 10, "count": 1.0, "max": 3.0, "rate": 0.25 diff --git a/scripts/Contents/Wave.gd b/scripts/Contents/Wave.gd index 757d639..77601b3 100644 --- a/scripts/Contents/Wave.gd +++ b/scripts/Contents/Wave.gd @@ -61,7 +61,7 @@ static var WAVE_MOWING = [ ] static var WAVE_EMPTY = [] static var waveReleaseConfig = [WAVE_TESTBOSS_ALL, 1] -static var waveDebugConfig = [WAVE_NORMAL, 1] +static var waveDebugConfig = [WAVE_MOWING, 1] static var current: int = startWith(waveReleaseConfig[1]) if WorldManager.isRelease() else startWith(waveDebugConfig[1]) static var data = waveReleaseConfig[0] if WorldManager.isRelease() else waveDebugConfig[0] diff --git a/scripts/Contents/Weapons/Tree.gd b/scripts/Contents/Weapons/Tree.gd index 9dcb0e1..f32bafa 100644 --- a/scripts/Contents/Weapons/Tree.gd +++ b/scripts/Contents/Weapons/Tree.gd @@ -2,7 +2,7 @@ extends Weapon func update(to: int, origin: Dictionary, _entity: EntityBase): - origin["atk"] += 5 * to * soulLevel + origin["atk"] += 2 * to * soulLevel origin["count"] += 1 * (soulLevel - 1) origin["max"] += 2 * (soulLevel - 1) origin["rate"] += 0.15 * (soulLevel - 1)