14 lines
351 B
C#
14 lines
351 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Side;
|
|
|
|
/// <summary>
|
|
/// Just here to indicate that a Pokemon on this side has used Echoed Voice.
|
|
/// </summary>
|
|
[Script(ScriptCategory.Side, "echoed_voice_data")]
|
|
public class EchoedVoiceData : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void OnEndTurn(IBattle battle)
|
|
{
|
|
RemoveSelf();
|
|
}
|
|
} |