9 lines
175 B
GDScript3
9 lines
175 B
GDScript3
|
extends StatusApplyingWeapon
|
||
|
class_name BlowdartWeapon
|
||
|
|
||
|
|
||
|
func build_status_object() -> StatusEffect:
|
||
|
var status = StatusDoT.new()
|
||
|
status.stats = status_stats
|
||
|
return status
|