namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
///
/// Sticky Hold is an ability that prevents the Pokémon's held item from being taken.
///
/// Bulbapedia - Sticky Hold
///
[Script(ScriptCategory.Ability, "sticky_hold")]
public class StickyHold : Script, IScriptPreventHeldItemSteal
{
///
public void PreventHeldItemSteal(IPokemon pokemon, IItem heldItem, ref bool prevent)
{
prevent = true;
}
}