this idiot forgot to commit an entire month's worth of code

This commit is contained in:
Sylvia 2026-04-22 18:23:31 -07:00
parent c67146ea1a
commit a3321d361c
51 changed files with 3644 additions and 84 deletions

View file

@ -8,6 +8,7 @@ public class PlayerAbility : MonoBehaviour
public string abilityName;
public Sprite abilityIcon;
public Marisa thisPlayer;
public AbilityHotbarIcon thisHotbarIcon;
[Header("Cooldown")]
public bool canCooldown = true;
public float baseCooldown;
@ -16,6 +17,7 @@ public class PlayerAbility : MonoBehaviour
[Header("Stats")]
public float basePower;
public float power;
public float powerMultiplier; // you need to figure out power.
public int baseProjectileCount;
public int projectileCount;
public Dictionary<AbilityUpgrade, int> attachedUpgrades = new();