random stuff i forgot to commit

This commit is contained in:
Sylvia 2026-06-26 14:37:33 -07:00
parent 274af1e5a1
commit b0625ae834
59 changed files with 7806 additions and 664 deletions

View file

@ -1,19 +0,0 @@
using System;
using Core.Extensions;
using UnityEngine;
using Random = UnityEngine.Random;
public class EnemyShootBasic : EnemyAbility
{
// i think this will just be a debug script since a regular singular bullet attack is kinda boring lol
//or atleast i'd need to figure out cool bullet patterns
[SerializeField] private Projectile projectile;
protected override void AbilityEffects()
{
Projectile newProjectile = Instantiate(projectile, origin.position, Quaternion.identity);
newProjectile.transform.Lookat2D(direction);
newProjectile.damage = power;
newProjectile.tag = tag;
}
}