11 lines
313 B
C#
11 lines
313 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "splintered_stormshards")]
|
|
public class SplinteredStormshards : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
|
{
|
|
move.Battle.SetTerrain(null);
|
|
}
|
|
} |