namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
///
/// Schooling is an ability that changes Wishiwashi's form in battle.
///
/// Bulbapedia - Schooling
///
[Script(ScriptCategory.Ability, "schooling")]
public class Schooling : Script
{
private IPokemon? _owningPokemon;
///
public override void OnAddedToParent(IScriptSource source)
{
if (source is not IPokemon pokemon)
throw new ArgumentException("Schooling script must be added to a Pokemon.", nameof(source));
_owningPokemon = pokemon;
}
///
public override void OnSwitchIn(IPokemon pokemon, byte position) => ChangeFormIfNeeded(pokemon);
///
public override void OnEndTurn(IBattle battle) => ChangeFormIfNeeded(_owningPokemon);
private static void ChangeFormIfNeeded(IPokemon? pokemon)
{
if (pokemon is null)
return;
if (pokemon.Species.Name != "wishiwashi" || pokemon.BattleData?.Battle == null)
return;
// If Wishiwashi has less than 25% health, change to Solo form
if (pokemon.CurrentHealth < pokemon.MaxHealth / 4 && pokemon.Form.Name != "default")
{
pokemon.ChangeForm(pokemon.Species.GetDefaultForm());
}
else if (pokemon.CurrentHealth >= pokemon.MaxHealth / 4 && pokemon.Form.Name != "school" &&
pokemon.Species.TryGetForm("school", out var schoolForm))
{
pokemon.ChangeForm(schoolForm);
}
}
}