9 lines
183 B
GDScript
9 lines
183 B
GDScript
extends StatusApplyingProjectile
|
|
class_name FireballProjectile
|
|
|
|
|
|
func build_status_object() -> StatusEffect:
|
|
var status = StatusDoT.new()
|
|
status.stats = status_stats
|
|
return status
|