the-crypt/magic/Projectiles/EcoProjectile.gd

9 lines
90 B
GDScript3
Raw Normal View History

2020-07-20 01:18:45 -05:00
extends Projectile
func _ready():
2020-07-21 15:50:32 -05:00
$FireSound.play(0.0)
2020-07-20 01:18:45 -05:00
energy_cost = 0
2020-07-20 16:36:28 -05:00
damage = 0.5
2020-07-21 15:50:32 -05:00