## CopyStat: Copies the source's STR stat value to the target on effect application. extends EffectBase func on_add(ctx: EffectCtx) -> void: if ctx.source == null: return var source_str: Stat = ctx.source.get_stat("str") var target_str: Stat = ctx.target.get_stat("str") target_str.set_base(source_str.get_value())