namespace PkmnLib.Plugin.Gen7.Scripts.Side;
///
/// Just here to indicate that a Pokemon on this side has used Echoed Voice.
///
[Script(ScriptCategory.Side, "echoed_voice_data")]
public class EchoedVoiceData : Script, IScriptOnEndTurn
{
///
public void OnEndTurn(IScriptSource owner, IBattle battle)
{
RemoveSelf();
}
}