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