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 { /// public override void PreventHeldItemSteal(IPokemon pokemon, IItem heldItem, ref bool prevent) { prevent = true; } }