15 lines
463 B
C#
15 lines
463 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "genesis_supernova")]
|
|
public class GenesisSupernova : Script, IScriptOnSecondaryEffect
|
|
{
|
|
/// <inheritdoc />
|
|
public void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
|
{
|
|
var battleData = move.User.BattleData;
|
|
if (battleData == null)
|
|
return;
|
|
|
|
battleData.Battle.SetTerrain(ScriptUtils.ResolveName<PsychicTerrain>());
|
|
}
|
|
} |