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