THE UNMATCHED POWER OF THE SUN

This commit is contained in:
reisenlol 2026-02-01 02:35:26 -08:00
parent 3364b5df68
commit 43a0b83748
No known key found for this signature in database
10 changed files with 134 additions and 9 deletions

View file

@ -0,0 +1,12 @@
using UnityEngine;
public class AttackSpeedUpgrade : AbilityUpgrade
{
[SerializeField] private float speedUpgradeAmount;
public override void ApplyUpgrade()
{
base.ApplyUpgrade();
thisPlayerAbility.cooldown *= speedUpgradeAmount;
}
}