Files
PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Pokemon/RequiresRechargeEffect.cs

28 lines
805 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
[Script(ScriptCategory.Pokemon, "requires_recharge")]
public class RequiresRechargeEffect : Script, IScriptForceTurnSelection, IScriptOnBeforeTurnStart
{
private readonly IBattlePokemon _owner;
public RequiresRechargeEffect(IBattlePokemon owner)
{
_owner = owner;
}
/// <inheritdoc />
public void ForceTurnSelection(IBattle battle, byte sideIndex, byte position, ref ITurnChoice? choice)
{
choice = new PassChoice(_owner);
}
/// <inheritdoc />
public void OnBeforeTurnStart(ITurnChoice choice)
{
RemoveSelf();
_owner.Battle.EventHook.Invoke(new DialogEvent("pokemon_must_recharge", new Dictionary<string, object>
{
{ "pokemon", _owner },
}));
}
}