## Buff: Instantly increases the target's STR by 10, then self-removes. extends EffectBase func on_add(ctx: EffectCtx) -> void: var str: Stat = ctx.target.get_stat("str") str.add_base(10) ctx.target.set_effect(ctx.def, 0, null)