SetProbeActionNode.kt
package io.github.lishangbu.avalon.game.battle.engine.core.dsl.action
import io.github.lishangbu.avalon.game.battle.engine.core.dsl.ActionNode
import io.github.lishangbu.avalon.game.battle.engine.core.type.ActionTypeId
import io.github.lishangbu.avalon.game.battle.engine.core.type.StandardActionTypeIds
import io.github.lishangbu.avalon.game.battle.engine.core.type.TargetSelectorId
/**
* 设置测试探针/调试状态动作。
*
* @property target 目标选择器。
* @property key 探针键。
* @property value 探针值。
*/
data class SetProbeActionNode(
val target: TargetSelectorId,
val key: String,
val value: String,
) : ActionNode {
override val type: ActionTypeId = StandardActionTypeIds.SET_PROBE
}