yeah you're going straight to hell

This commit is contained in:
reisenlol 2026-02-07 11:21:21 -08:00
parent 11d1cbb543
commit e30de274c8
No known key found for this signature in database
15 changed files with 3061 additions and 913 deletions

View file

@ -0,0 +1,10 @@
using UnityEngine;
[CreateAssetMenu(fileName = "Projectile Count Upgrade", menuName = "AbilityUpgrades/ProjectileCountUpgrade")]
public class ProjectileCountUpgrade : AbilityUpgrade
{
protected override void UpgradeEffects()
{
thisPlayerAbility.projectileCount++; //idk how this will work for the stacking.
}
}