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)