2023-10-18 23:01:15 +01:00
import Pokemon , { HitResult , PokemonMove } from "../pokemon" ;
2024-01-13 17:24:24 +00:00
import { Type } from "./type" ;
2023-04-27 04:33:13 +01:00
import * as Utils from "../utils" ;
2023-04-27 06:14:15 +01:00
import { BattleStat , getBattleStatName } from "./battle-stat" ;
2024-02-22 04:57:49 +00:00
import { DamagePhase , ObtainStatusEffectPhase , PokemonHealPhase , ShowAbilityPhase , StatChangePhase } from "../phases" ;
2023-04-27 06:14:15 +01:00
import { getPokemonMessage } from "../messages" ;
2023-04-27 19:30:03 +01:00
import { Weather , WeatherType } from "./weather" ;
2024-01-13 17:24:24 +00:00
import { BattlerTag } from "./battler-tags" ;
import { BattlerTagType } from "./enums/battler-tag-type" ;
2023-05-04 17:57:55 +01:00
import { StatusEffect , getStatusEffectDescriptor } from "./status-effect" ;
2024-02-22 21:30:55 +00:00
import Move , { AttackMove , MoveCategory , MoveFlags , RecoilAttr , StatusEffectAttr } from "./move" ;
2024-01-16 04:29:22 +00:00
import { ArenaTagType } from "./enums/arena-tag-type" ;
2023-10-29 05:28:56 +00:00
import { Stat } from "./pokemon-stat" ;
2023-12-22 06:16:56 +00:00
import { PokemonHeldItemModifier } from "../modifier/modifier" ;
2024-01-13 17:24:24 +00:00
import { Moves } from "./enums/moves" ;
2023-04-27 04:33:13 +01:00
2023-04-16 01:36:19 +01:00
export class Ability {
public id : Abilities ;
public name : string ;
public description : string ;
public generation : integer ;
2023-12-23 04:57:05 +00:00
public isPassive : boolean ;
2023-04-27 19:30:03 +01:00
public attrs : AbAttr [ ] ;
public conditions : AbAttrCondition [ ] ;
2023-04-16 01:36:19 +01:00
constructor ( id : Abilities , name : string , description : string , generation : integer ) {
this . id = id ;
2023-10-18 23:01:15 +01:00
this . name = name ;
2023-04-16 01:36:19 +01:00
this . description = description ;
this . generation = generation ;
2023-04-27 04:33:13 +01:00
this . attrs = [ ] ;
2023-04-27 19:30:03 +01:00
this . conditions = [ ] ;
2023-04-27 04:33:13 +01:00
}
2023-04-27 19:30:03 +01:00
getAttrs ( attrType : { new ( . . . args : any [ ] ) : AbAttr } ) : AbAttr [ ] {
2023-04-27 04:33:13 +01:00
return this . attrs . filter ( a = > a instanceof attrType ) ;
}
2023-04-27 19:30:03 +01:00
attr < T extends new ( ...args : any [ ] ) = > AbAttr > ( AttrType : T , . . . args : ConstructorParameters < T > ) : Ability {
2023-04-27 04:33:13 +01:00
const attr = new AttrType ( . . . args ) ;
this . attrs . push ( attr ) ;
return this ;
2023-04-16 01:36:19 +01:00
}
2023-04-27 19:30:03 +01:00
2023-12-23 06:21:01 +00:00
conditionalAttr < T extends new ( ...args : any [ ] ) = > AbAttr > ( condition : AbAttrCondition , AttrType : T , . . . args : ConstructorParameters < T > ) : Ability {
const attr = new AttrType ( . . . args ) ;
attr . addCondition ( condition ) ;
this . attrs . push ( attr ) ;
return this ;
}
2023-05-02 03:07:00 +01:00
hasAttr ( attrType : { new ( . . . args : any [ ] ) : AbAttr } ) : boolean {
return ! ! this . getAttrs ( attrType ) . length ;
}
2023-12-23 04:57:05 +00:00
passive ( ) : Ability {
this . isPassive = true ;
return this ;
}
2023-04-27 19:30:03 +01:00
condition ( condition : AbAttrCondition ) : Ability {
this . conditions . push ( condition ) ;
return this ;
}
2023-04-16 01:36:19 +01:00
}
2023-12-23 03:04:30 +00:00
type AbAttrApplyFunc < TAttr extends AbAttr > = ( attr : TAttr ) = > boolean | Promise < boolean > ;
2023-04-27 19:30:03 +01:00
type AbAttrCondition = ( pokemon : Pokemon ) = > boolean ;
2023-12-23 06:21:01 +00:00
type PokemonAttackCondition = ( user : Pokemon , target : Pokemon , move : Move ) = > boolean ;
type PokemonDefendCondition = ( target : Pokemon , user : Pokemon , move : Move ) = > boolean ;
2023-04-27 19:30:03 +01:00
export abstract class AbAttr {
2023-05-06 17:13:35 +01:00
public showAbility : boolean ;
2023-12-23 06:21:01 +00:00
private extraCondition : AbAttrCondition ;
2023-05-06 17:13:35 +01:00
constructor ( showAbility? : boolean ) {
this . showAbility = showAbility === undefined || showAbility ;
}
2023-12-23 02:42:47 +00:00
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean | Promise < boolean > {
2023-04-27 19:30:03 +01:00
return false ;
}
2023-04-27 19:56:30 +01:00
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) : string {
2023-04-27 06:14:15 +01:00
return null ;
}
2023-04-27 19:30:03 +01:00
getCondition ( ) : AbAttrCondition {
2023-12-23 06:21:01 +00:00
return this . extraCondition || null ;
}
addCondition ( condition : AbAttrCondition ) : AbAttr {
this . extraCondition = condition ;
return this ;
2023-04-27 19:30:03 +01:00
}
}
export class BlockRecoilDamageAttr extends AbAttr {
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
cancelled . value = true ;
return true ;
}
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) {
return getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nprotected it from recoil! ` ) ;
}
2023-04-27 06:14:15 +01:00
}
2023-04-27 04:33:13 +01:00
2023-05-18 16:11:06 +01:00
export class DoubleBattleChanceAbAttr extends AbAttr {
constructor ( ) {
super ( false ) ;
}
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
const doubleChance = ( args [ 0 ] as Utils . IntegerHolder ) ;
doubleChance . value = Math . max ( doubleChance . value / 2 , 1 ) ;
return true ;
}
}
2023-12-22 06:16:56 +00:00
type PreDefendAbAttrCondition = ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove ) = > boolean ;
2023-04-27 19:30:03 +01:00
export class PreDefendAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPreDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean | Promise < boolean > {
2023-04-27 04:33:13 +01:00
return false ;
}
}
2023-05-04 19:06:31 +01:00
export class BlockItemTheftAbAttr extends AbAttr {
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
2023-10-27 01:02:30 +01:00
cancelled . value = true ;
2023-05-04 19:06:31 +01:00
return true ;
}
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) {
return getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nprevents item theft! ` ) ;
}
}
2023-10-27 01:02:30 +01:00
export class StabBoostAbAttr extends AbAttr {
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
2023-11-26 14:53:16 +00:00
if ( ( args [ 0 ] as Utils . NumberHolder ) . value > 1 )
( args [ 0 ] as Utils . NumberHolder ) . value += 0.5 ;
2023-10-27 01:02:30 +01:00
return true ;
}
}
2023-12-23 06:21:01 +00:00
export class ReceivedMoveDamageMultiplierAbAttr extends PreDefendAbAttr {
private condition : PokemonDefendCondition ;
2023-05-02 20:56:41 +01:00
private powerMultiplier : number ;
2023-12-23 06:21:01 +00:00
constructor ( condition : PokemonDefendCondition , powerMultiplier : number ) {
2023-05-02 20:56:41 +01:00
super ( ) ;
2023-12-23 06:21:01 +00:00
this . condition = condition ;
2023-05-02 20:56:41 +01:00
this . powerMultiplier = powerMultiplier ;
}
applyPreDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
2023-12-23 06:21:01 +00:00
if ( this . condition ( pokemon , attacker , move . getMove ( ) ) ) {
2023-05-02 20:56:41 +01:00
( args [ 0 ] as Utils . NumberHolder ) . value *= this . powerMultiplier ;
return true ;
}
return false ;
}
}
2023-12-23 06:21:01 +00:00
export class ReceivedTypeDamageMultiplierAbAttr extends ReceivedMoveDamageMultiplierAbAttr {
constructor ( moveType : Type , powerMultiplier : number ) {
super ( ( user , target , move ) = > move . type === moveType , powerMultiplier ) ;
}
}
2023-04-27 19:30:03 +01:00
export class TypeImmunityAbAttr extends PreDefendAbAttr {
2023-04-27 04:33:13 +01:00
private immuneType : Type ;
2023-04-27 19:30:03 +01:00
private condition : AbAttrCondition ;
2023-04-27 04:33:13 +01:00
2023-04-27 19:30:03 +01:00
constructor ( immuneType : Type , condition? : AbAttrCondition ) {
2023-04-27 04:33:13 +01:00
super ( ) ;
this . immuneType = immuneType ;
2023-04-27 19:30:03 +01:00
this . condition = condition ;
2023-04-27 04:33:13 +01:00
}
applyPreDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
2024-02-23 14:24:49 +00:00
if ( ( move . getMove ( ) instanceof AttackMove || move . getMove ( ) . getAttrs ( StatusEffectAttr ) . length ) && move . getMove ( ) . type === this . immuneType ) {
2023-04-27 04:33:13 +01:00
( args [ 0 ] as Utils . NumberHolder ) . value = 0 ;
return true ;
}
return false ;
}
2023-04-27 19:30:03 +01:00
getCondition ( ) : AbAttrCondition {
return this . condition ;
}
2023-04-27 04:33:13 +01:00
}
2023-05-02 20:56:41 +01:00
export class TypeImmunityHealAbAttr extends TypeImmunityAbAttr {
constructor ( immuneType : Type ) {
super ( immuneType ) ;
}
applyPreDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
const ret = super . applyPreDefend ( pokemon , attacker , move , cancelled , args ) ;
2023-05-18 16:11:06 +01:00
if ( ret ) {
if ( pokemon . getHpRatio ( ) < 1 )
pokemon . scene . unshiftPhase ( new PokemonHealPhase ( pokemon . scene , pokemon . getBattlerIndex ( ) ,
Math . max ( Math . floor ( pokemon . getMaxHp ( ) / 4 ) , 1 ) , getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nrestored its HP a little! ` ) , true ) ) ;
2023-05-02 20:56:41 +01:00
return true ;
}
return false ;
}
}
2023-04-27 19:30:03 +01:00
class TypeImmunityStatChangeAbAttr extends TypeImmunityAbAttr {
2023-04-27 04:33:13 +01:00
private stat : BattleStat ;
private levels : integer ;
2023-04-27 19:30:03 +01:00
constructor ( immuneType : Type , stat : BattleStat , levels : integer , condition? : AbAttrCondition ) {
super ( immuneType , condition ) ;
2023-04-27 04:33:13 +01:00
this . stat = stat ;
this . levels = levels ;
}
applyPreDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
const ret = super . applyPreDefend ( pokemon , attacker , move , cancelled , args ) ;
if ( ret ) {
cancelled . value = true ;
2023-05-18 16:11:06 +01:00
pokemon . scene . unshiftPhase ( new StatChangePhase ( pokemon . scene , pokemon . getBattlerIndex ( ) , true , [ this . stat ] , this . levels ) ) ;
2023-04-27 04:33:13 +01:00
}
return ret ;
}
}
2023-04-27 19:30:03 +01:00
class TypeImmunityAddBattlerTagAbAttr extends TypeImmunityAbAttr {
private tagType : BattlerTagType ;
private turnCount : integer ;
constructor ( immuneType : Type , tagType : BattlerTagType , turnCount : integer , condition? : AbAttrCondition ) {
super ( immuneType , condition ) ;
this . tagType = tagType ;
this . turnCount = turnCount ;
}
applyPreDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
const ret = super . applyPreDefend ( pokemon , attacker , move , cancelled , args ) ;
if ( ret ) {
cancelled . value = true ;
pokemon . addTag ( this . tagType , this . turnCount , undefined , pokemon . id ) ;
}
return ret ;
}
}
2023-04-27 19:56:30 +01:00
export class NonSuperEffectiveImmunityAbAttr extends TypeImmunityAbAttr {
constructor ( condition? : AbAttrCondition ) {
super ( null , condition ) ;
}
applyPreDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
if ( pokemon . getAttackMoveEffectiveness ( move . getMove ( ) . type ) < 2 ) {
cancelled . value = true ;
( args [ 0 ] as Utils . NumberHolder ) . value = 0 ;
return true ;
}
return false ;
}
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) : string {
return getPokemonMessage ( pokemon , ` avoided damage \ nwith ${ pokemon . getAbility ( ) . name } ! ` ) ;
}
}
2023-05-04 17:57:55 +01:00
export class PostDefendAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPostDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , hitResult : HitResult , args : any [ ] ) : boolean | Promise < boolean > {
2023-05-04 17:57:55 +01:00
return false ;
}
}
2023-12-22 06:16:56 +00:00
export class MoveImmunityAbAttr extends PreDefendAbAttr {
private immuneCondition : PreDefendAbAttrCondition ;
constructor ( immuneCondition : PreDefendAbAttrCondition ) {
super ( true ) ;
this . immuneCondition = immuneCondition ;
}
applyPreDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
if ( this . immuneCondition ( pokemon , attacker , move ) ) {
cancelled . value = true ;
return true ;
}
return false ;
}
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) : string {
return ` It doesn \ 't affect ${ pokemon . name } ! ` ;
}
}
2023-05-06 05:42:01 +01:00
export class PostDefendTypeChangeAbAttr extends PostDefendAbAttr {
2023-05-18 16:11:06 +01:00
applyPostDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , hitResult : HitResult , args : any [ ] ) : boolean {
if ( hitResult < HitResult . NO_EFFECT ) {
2023-05-06 05:42:01 +01:00
const type = move . getMove ( ) . type ;
2024-02-17 05:40:03 +00:00
const pokemonTypes = pokemon . getTypes ( true ) ;
2023-05-08 23:48:35 +01:00
if ( pokemonTypes . length !== 1 || pokemonTypes [ 0 ] !== type ) {
pokemon . summonData . types = [ type ] ;
2023-05-06 05:42:01 +01:00
return true ;
}
}
return false ;
}
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) : string {
2024-02-17 05:40:03 +00:00
return getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nmade it the ${ Utils . toReadableString ( Type [ pokemon . getTypes ( true ) [ 0 ] ] ) } type! ` ) ;
2023-05-06 05:42:01 +01:00
}
}
2023-05-04 17:57:55 +01:00
export class PostDefendContactApplyStatusEffectAbAttr extends PostDefendAbAttr {
private chance : integer ;
private effects : StatusEffect [ ] ;
constructor ( chance : integer , . . . effects : StatusEffect [ ] ) {
super ( ) ;
this . chance = chance ;
this . effects = effects ;
}
2023-05-18 16:11:06 +01:00
applyPostDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , hitResult : HitResult , args : any [ ] ) : boolean {
2024-01-03 02:31:59 +00:00
if ( move . getMove ( ) . checkFlag ( MoveFlags . MAKES_CONTACT , attacker , pokemon ) && pokemon . randSeedInt ( 100 ) < this . chance && ! pokemon . status ) {
const effect = this . effects . length === 1 ? this . effects [ 0 ] : this . effects [ pokemon . randSeedInt ( this . effects . length ) ] ;
2023-10-28 18:24:57 +01:00
pokemon . scene . unshiftPhase ( new ObtainStatusEffectPhase ( pokemon . scene , attacker . getBattlerIndex ( ) , effect ) ) ;
2023-05-04 17:57:55 +01:00
}
return false ;
}
}
export class PostDefendContactApplyTagChanceAbAttr extends PostDefendAbAttr {
private chance : integer ;
private tagType : BattlerTagType ;
private turnCount : integer ;
constructor ( chance : integer , tagType : BattlerTagType , turnCount? : integer ) {
super ( ) ;
this . tagType = tagType ;
this . chance = chance ;
this . turnCount = turnCount ;
}
2023-05-18 16:11:06 +01:00
applyPostDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , hitResult : HitResult , args : any [ ] ) : boolean {
2024-01-03 02:31:59 +00:00
if ( move . getMove ( ) . checkFlag ( MoveFlags . MAKES_CONTACT , attacker , pokemon ) && pokemon . randSeedInt ( 100 ) < this . chance )
2023-05-04 17:57:55 +01:00
return attacker . addTag ( this . tagType , this . turnCount , move . moveId , pokemon . id ) ;
return false ;
}
}
2023-10-27 05:12:53 +01:00
export class PostDefendCritStatChangeAbAttr extends PostDefendAbAttr {
private stat : BattleStat ;
private levels : integer ;
constructor ( stat : BattleStat , levels : integer ) {
super ( true ) ;
this . stat = stat ;
this . levels = levels ;
}
applyPostDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , hitResult : HitResult , args : any [ ] ) : boolean {
pokemon . scene . unshiftPhase ( new StatChangePhase ( pokemon . scene , pokemon . getBattlerIndex ( ) , true , [ this . stat ] , this . levels ) ) ;
return true ;
}
getCondition ( ) : AbAttrCondition {
return ( pokemon : Pokemon ) = > pokemon . turnData . attacksReceived . length && pokemon . turnData . attacksReceived [ pokemon . turnData . attacksReceived . length - 1 ] . critical ;
}
}
2023-04-27 19:30:03 +01:00
export class PreAttackAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPreAttack ( pokemon : Pokemon , defender : Pokemon , move : PokemonMove , args : any [ ] ) : boolean | Promise < boolean > {
2023-04-27 19:30:03 +01:00
return false ;
}
}
export class VariableMovePowerAbAttr extends PreAttackAbAttr {
applyPreAttack ( pokemon : Pokemon , defender : Pokemon , move : PokemonMove , args : any [ ] ) : boolean {
//const power = args[0] as Utils.NumberHolder;
return false ;
}
}
2023-12-23 06:21:01 +00:00
export class MovePowerBoostAbAttr extends VariableMovePowerAbAttr {
private condition : PokemonAttackCondition ;
private powerMultiplier : number ;
2023-12-14 17:48:59 +00:00
2023-12-23 06:21:01 +00:00
constructor ( condition : PokemonAttackCondition , powerMultiplier : number ) {
super ( true ) ;
this . condition = condition ;
this . powerMultiplier = powerMultiplier ;
2023-12-14 17:48:59 +00:00
}
applyPreAttack ( pokemon : Pokemon , defender : Pokemon , move : PokemonMove , args : any [ ] ) : boolean {
2023-12-23 06:21:01 +00:00
if ( this . condition ( pokemon , defender , move . getMove ( ) ) ) {
( args [ 0 ] as Utils . NumberHolder ) . value *= this . powerMultiplier ;
2023-12-14 17:48:59 +00:00
return true ;
}
return false ;
}
}
2023-12-23 06:21:01 +00:00
export class MoveTypePowerBoostAbAttr extends MovePowerBoostAbAttr {
constructor ( boostedType : Type , powerMultiplier? : number ) {
super ( ( pokemon , defender , move ) = > move . type === boostedType , powerMultiplier || 1.5 ) ;
2023-04-27 19:30:03 +01:00
}
2023-12-23 06:21:01 +00:00
}
2023-04-27 19:30:03 +01:00
2023-12-23 06:21:01 +00:00
export class LowHpMoveTypePowerBoostAbAttr extends MoveTypePowerBoostAbAttr {
constructor ( boostedType : Type ) {
super ( boostedType ) ;
2023-04-27 19:30:03 +01:00
}
getCondition ( ) : AbAttrCondition {
return ( pokemon ) = > pokemon . getHpRatio ( ) <= 0.33 ;
}
}
2023-05-02 05:11:31 +01:00
export class BattleStatMultiplierAbAttr extends AbAttr {
private battleStat : BattleStat ;
private multiplier : number ;
constructor ( battleStat : BattleStat , multiplier : number ) {
2023-12-23 03:04:30 +00:00
super ( false ) ;
2023-05-02 05:11:31 +01:00
this . battleStat = battleStat ;
this . multiplier = multiplier ;
}
2023-12-23 02:42:47 +00:00
applyBattleStat ( pokemon : Pokemon , battleStat : BattleStat , statValue : Utils.NumberHolder , args : any [ ] ) : boolean | Promise < boolean > {
2023-05-02 05:11:31 +01:00
if ( battleStat === this . battleStat ) {
statValue . value *= this . multiplier ;
return true ;
}
return false ;
}
}
2023-12-22 06:16:56 +00:00
export class PostAttackAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPostAttack ( pokemon : Pokemon , defender : Pokemon , move : PokemonMove , hitResult : HitResult , args : any [ ] ) : boolean | Promise < boolean > {
2023-12-22 06:16:56 +00:00
return false ;
}
}
export class PostAttackStealHeldItemAbAttr extends PostAttackAbAttr {
2023-12-23 06:21:01 +00:00
private condition : PokemonAttackCondition ;
constructor ( condition? : PokemonAttackCondition ) {
super ( ) ;
this . condition = condition ;
}
2023-12-23 02:42:47 +00:00
applyPostAttack ( pokemon : Pokemon , defender : Pokemon , move : PokemonMove , hitResult : HitResult , args : any [ ] ) : Promise < boolean > {
return new Promise < boolean > ( resolve = > {
2023-12-23 06:21:01 +00:00
if ( hitResult < HitResult . NO_EFFECT && ( ! this . condition || this . condition ( pokemon , defender , move . getMove ( ) ) ) ) {
2023-12-23 02:42:47 +00:00
const heldItems = this . getTargetHeldItems ( defender ) . filter ( i = > i . getTransferrable ( false ) ) ;
if ( heldItems . length ) {
2024-01-03 02:31:59 +00:00
const stolenItem = heldItems [ pokemon . randSeedInt ( heldItems . length ) ] ;
2023-12-23 02:42:47 +00:00
pokemon . scene . tryTransferHeldItemModifier ( stolenItem , pokemon , false , false ) . then ( success = > {
if ( success )
pokemon . scene . queueMessage ( getPokemonMessage ( pokemon , ` stole \ n ${ defender . name } 's ${ stolenItem . type . name } ! ` ) ) ;
resolve ( success ) ;
} ) ;
return ;
}
2023-12-22 06:16:56 +00:00
}
2023-12-23 02:42:47 +00:00
resolve ( false ) ;
} ) ;
2023-12-22 06:16:56 +00:00
}
getTargetHeldItems ( target : Pokemon ) : PokemonHeldItemModifier [ ] {
return target . scene . findModifiers ( m = > m instanceof PokemonHeldItemModifier
&& ( m as PokemonHeldItemModifier ) . pokemonId === target . id , target . isPlayer ( ) ) as PokemonHeldItemModifier [ ] ;
}
}
2023-12-23 06:21:01 +00:00
export class PostDefendStealHeldItemAbAttr extends PostDefendAbAttr {
private condition : PokemonDefendCondition ;
constructor ( condition? : PokemonDefendCondition ) {
super ( ) ;
this . condition = condition ;
}
applyPostDefend ( pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , hitResult : HitResult , args : any [ ] ) : Promise < boolean > {
return new Promise < boolean > ( resolve = > {
if ( hitResult < HitResult . NO_EFFECT && ( ! this . condition || this . condition ( pokemon , attacker , move . getMove ( ) ) ) ) {
const heldItems = this . getTargetHeldItems ( attacker ) . filter ( i = > i . getTransferrable ( false ) ) ;
if ( heldItems . length ) {
2024-01-03 02:31:59 +00:00
const stolenItem = heldItems [ pokemon . randSeedInt ( heldItems . length ) ] ;
2023-12-23 06:21:01 +00:00
pokemon . scene . tryTransferHeldItemModifier ( stolenItem , pokemon , false , false ) . then ( success = > {
if ( success )
pokemon . scene . queueMessage ( getPokemonMessage ( pokemon , ` stole \ n ${ attacker . name } 's ${ stolenItem . type . name } ! ` ) ) ;
resolve ( success ) ;
} ) ;
return ;
}
}
resolve ( false ) ;
} ) ;
}
getTargetHeldItems ( target : Pokemon ) : PokemonHeldItemModifier [ ] {
return target . scene . findModifiers ( m = > m instanceof PokemonHeldItemModifier
&& ( m as PokemonHeldItemModifier ) . pokemonId === target . id , target . isPlayer ( ) ) as PokemonHeldItemModifier [ ] ;
}
}
2023-11-06 04:27:40 +00:00
export class IgnoreOpponentStatChangesAbAttr extends AbAttr {
constructor ( ) {
super ( false ) ;
}
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) {
( args [ 0 ] as Utils . IntegerHolder ) . value = 0 ;
return true ;
}
}
2023-05-04 17:57:55 +01:00
export class PostSummonAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPostSummon ( pokemon : Pokemon , args : any [ ] ) : boolean | Promise < boolean > {
2023-05-04 17:57:55 +01:00
return false ;
}
}
2023-10-30 04:16:23 +00:00
export class PostSummonMessageAbAttr extends PostSummonAbAttr {
private messageFunc : ( pokemon : Pokemon ) = > string ;
constructor ( messageFunc : ( pokemon : Pokemon ) = > string ) {
super ( true ) ;
this . messageFunc = messageFunc ;
}
applyPostSummon ( pokemon : Pokemon , args : any [ ] ) : boolean {
pokemon . scene . queueMessage ( this . messageFunc ( pokemon ) ) ;
return true ;
}
}
2023-05-06 17:13:35 +01:00
export class PostSummonAddBattlerTagAbAttr extends PostSummonAbAttr {
private tagType : BattlerTagType ;
private turnCount : integer ;
2023-12-23 03:46:05 +00:00
constructor ( tagType : BattlerTagType , turnCount : integer , showAbility? : boolean ) {
super ( showAbility ) ;
2023-05-06 17:13:35 +01:00
this . tagType = tagType ;
this . turnCount = turnCount ;
}
applyPostSummon ( pokemon : Pokemon , args : any [ ] ) : boolean {
return pokemon . addTag ( this . tagType , this . turnCount ) ;
}
}
export class PostSummonStatChangeAbAttr extends PostSummonAbAttr {
private stats : BattleStat [ ] ;
private levels : integer ;
private selfTarget : boolean ;
constructor ( stats : BattleStat | BattleStat [ ] , levels : integer , selfTarget? : boolean ) {
super ( ) ;
this . stats = typeof ( stats ) === 'number'
? [ stats as BattleStat ]
: stats as BattleStat [ ] ;
this . levels = levels ;
this . selfTarget = ! ! selfTarget ;
}
applyPostSummon ( pokemon : Pokemon , args : any [ ] ) : boolean {
2023-05-18 16:11:06 +01:00
const statChangePhases : StatChangePhase [ ] = [ ] ;
2023-05-06 17:13:35 +01:00
2023-05-18 16:11:06 +01:00
if ( this . selfTarget )
statChangePhases . push ( new StatChangePhase ( pokemon . scene , pokemon . getBattlerIndex ( ) , true , this . stats , this . levels ) ) ;
else {
for ( let opponent of pokemon . getOpponents ( ) )
statChangePhases . push ( new StatChangePhase ( pokemon . scene , opponent . getBattlerIndex ( ) , false , this . stats , this . levels ) ) ;
}
2023-05-06 17:13:35 +01:00
2023-05-18 16:11:06 +01:00
for ( let statChangePhase of statChangePhases ) {
if ( ! this . selfTarget && ! statChangePhase . getPokemon ( ) . summonData )
pokemon . scene . pushPhase ( statChangePhase ) ; // TODO: This causes the ability bar to be shown at the wrong time
else
pokemon . scene . unshiftPhase ( statChangePhase ) ;
}
2023-05-06 17:13:35 +01:00
return true ;
}
}
2023-05-04 17:57:55 +01:00
export class PostSummonWeatherChangeAbAttr extends PostSummonAbAttr {
private weatherType : WeatherType ;
constructor ( weatherType : WeatherType ) {
super ( ) ;
this . weatherType = weatherType ;
}
applyPostSummon ( pokemon : Pokemon , args : any [ ] ) : boolean {
if ( ! pokemon . scene . arena . weather ? . isImmutable ( ) )
return pokemon . scene . arena . trySetWeather ( this . weatherType , false ) ;
return false ;
}
}
2023-10-29 05:28:56 +00:00
export class PostSummonTransformAbAttr extends PostSummonAbAttr {
constructor ( ) {
super ( true ) ;
}
applyPostSummon ( pokemon : Pokemon , args : any [ ] ) : boolean {
const targets = pokemon . getOpponents ( ) ;
let target : Pokemon ;
if ( targets . length > 1 )
2024-02-17 05:40:03 +00:00
pokemon . scene . executeWithSeedOffset ( ( ) = > target = Utils . randSeedItem ( targets ) , pokemon . scene . currentBattle . waveIndex ) ;
2023-10-29 05:28:56 +00:00
else
target = targets [ 0 ] ;
pokemon . summonData . speciesForm = target . getSpeciesForm ( ) ;
2023-11-24 20:12:26 +00:00
pokemon . summonData . fusionSpeciesForm = target . getFusionSpeciesForm ( ) ;
2023-10-29 05:28:56 +00:00
pokemon . summonData . gender = target . getGender ( ) ;
2023-11-24 20:12:26 +00:00
pokemon . summonData . fusionGender = target . getFusionGender ( ) ;
2023-10-29 05:28:56 +00:00
pokemon . summonData . stats = [ pokemon . stats [ Stat . HP ] ] . concat ( target . stats . slice ( 1 ) ) ;
pokemon . summonData . battleStats = target . summonData . battleStats . slice ( 0 ) ;
pokemon . summonData . moveset = target . getMoveset ( ) . map ( m = > new PokemonMove ( m . moveId , m . ppUsed , m . ppUp ) ) ;
pokemon . summonData . types = target . getTypes ( ) ;
pokemon . scene . playSound ( 'PRSFX- Transform' ) ;
2023-11-24 20:12:26 +00:00
2023-10-29 05:28:56 +00:00
pokemon . loadAssets ( ) . then ( ( ) = > pokemon . playAnim ( ) ) ;
pokemon . scene . queueMessage ( getPokemonMessage ( pokemon , ` transformed \ ninto ${ target . name } ! ` ) ) ;
return true ;
}
}
2024-01-16 05:28:03 +00:00
export class PreSwitchOutAbAttr extends AbAttr {
constructor ( ) {
super ( true ) ;
}
applyPreSwitchOut ( pokemon : Pokemon , args : any [ ] ) : boolean | Promise < boolean > {
return false ;
}
}
export class PreSwitchOutResetStatusAbAttr extends PreSwitchOutAbAttr {
applyPreSwitchOut ( pokemon : Pokemon , args : any [ ] ) : boolean | Promise < boolean > {
if ( pokemon . status ) {
pokemon . resetStatus ( ) ;
pokemon . updateInfo ( ) ;
return true ;
}
return false ;
}
}
2023-04-27 19:30:03 +01:00
export class PreStatChangeAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPreStatChange ( pokemon : Pokemon , stat : BattleStat , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean | Promise < boolean > {
2023-04-27 04:33:13 +01:00
return false ;
}
}
2023-05-06 17:13:35 +01:00
export class ProtectStatAbAttr extends PreStatChangeAbAttr {
2023-04-27 06:14:15 +01:00
private protectedStat : BattleStat ;
2023-04-27 04:33:13 +01:00
2023-04-27 06:14:15 +01:00
constructor ( protectedStat? : BattleStat ) {
2023-04-27 04:33:13 +01:00
super ( ) ;
2023-04-27 06:14:15 +01:00
this . protectedStat = protectedStat ;
2023-04-27 04:33:13 +01:00
}
applyPreStatChange ( pokemon : Pokemon , stat : BattleStat , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
2023-04-27 06:14:15 +01:00
if ( this . protectedStat === undefined || stat === this . protectedStat ) {
2023-04-27 04:33:13 +01:00
cancelled . value = true ;
return true ;
}
return false ;
}
2023-04-27 06:14:15 +01:00
2023-04-27 19:56:30 +01:00
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) : string {
2023-04-27 06:14:15 +01:00
return getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nprevents lowering its ${ this . protectedStat !== undefined ? getBattleStatName ( this . protectedStat ) : 'stats' } ! ` ) ;
}
2023-04-27 04:33:13 +01:00
}
2023-05-04 17:57:55 +01:00
export class PreSetStatusAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPreSetStatus ( pokemon : Pokemon , effect : StatusEffect , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean | Promise < boolean > {
2023-05-04 17:57:55 +01:00
return false ;
}
}
export class StatusEffectImmunityAbAttr extends PreSetStatusAbAttr {
private immuneEffects : StatusEffect [ ] ;
constructor ( . . . immuneEffects : StatusEffect [ ] ) {
super ( ) ;
this . immuneEffects = immuneEffects ;
}
2023-05-02 03:07:00 +01:00
2023-05-04 17:57:55 +01:00
applyPreSetStatus ( pokemon : Pokemon , effect : StatusEffect , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
if ( ! this . immuneEffects . length || this . immuneEffects . indexOf ( effect ) > - 1 ) {
cancelled . value = true ;
return true ;
}
return false ;
}
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) : string {
return getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nprevents ${ this . immuneEffects . length ? getStatusEffectDescriptor ( args [ 0 ] as StatusEffect ) : 'status problems' } ! ` ) ;
}
}
export class PreApplyBattlerTagAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPreApplyBattlerTag ( pokemon : Pokemon , tag : BattlerTag , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean | Promise < boolean > {
2023-05-04 17:57:55 +01:00
return false ;
}
}
export class BattlerTagImmunityAbAttr extends PreApplyBattlerTagAbAttr {
private immuneTagType : BattlerTagType ;
constructor ( immuneTagType : BattlerTagType ) {
super ( ) ;
this . immuneTagType = immuneTagType ;
}
applyPreApplyBattlerTag ( pokemon : Pokemon , tag : BattlerTag , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
if ( tag . tagType === this . immuneTagType ) {
cancelled . value = true ;
return true ;
}
return false ;
}
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) : string {
return getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nprevents ${ ( args [ 0 ] as BattlerTag ) . getDescriptor ( ) } ! ` ) ;
}
}
export class BlockCritAbAttr extends AbAttr { }
2023-05-01 04:58:16 +01:00
2023-12-11 03:29:13 +00:00
export class IgnoreContactAbAttr extends AbAttr { }
2023-04-27 19:30:03 +01:00
export class PreWeatherEffectAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPreWeatherEffect ( pokemon : Pokemon , weather : Weather , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean | Promise < boolean > {
2023-04-27 19:30:03 +01:00
return false ;
}
}
export class PreWeatherDamageAbAttr extends PreWeatherEffectAbAttr { }
export class BlockWeatherDamageAttr extends PreWeatherDamageAbAttr {
2023-05-02 20:56:41 +01:00
private weatherTypes : WeatherType [ ] ;
constructor ( . . . weatherTypes : WeatherType [ ] ) {
super ( ) ;
this . weatherTypes = weatherTypes ;
}
2023-04-27 19:30:03 +01:00
applyPreWeatherEffect ( pokemon : Pokemon , weather : Weather , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
2023-05-02 20:56:41 +01:00
if ( ! this . weatherTypes . length || this . weatherTypes . indexOf ( weather ? . weatherType ) > - 1 )
cancelled . value = true ;
2023-04-27 19:30:03 +01:00
return true ;
}
}
export class SuppressWeatherEffectAbAttr extends PreWeatherEffectAbAttr {
2023-05-03 03:27:04 +01:00
public affectsImmutable : boolean ;
2023-04-27 19:30:03 +01:00
constructor ( affectsImmutable? : boolean ) {
super ( ) ;
this . affectsImmutable = affectsImmutable ;
}
applyPreWeatherEffect ( pokemon : Pokemon , weather : Weather , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
if ( this . affectsImmutable || weather . isImmutable ( ) ) {
cancelled . value = true ;
return true ;
}
return false ;
}
}
2023-05-02 20:56:41 +01:00
function getWeatherCondition ( . . . weatherTypes : WeatherType [ ] ) : AbAttrCondition {
return ( pokemon : Pokemon ) = > {
if ( pokemon . scene . arena . weather ? . isEffectSuppressed ( pokemon . scene ) )
return false ;
const weatherType = pokemon . scene . arena . weather ? . weatherType ;
return weatherType && weatherTypes . indexOf ( weatherType ) > - 1 ;
} ;
}
export class PostWeatherLapseAbAttr extends AbAttr {
protected weatherTypes : WeatherType [ ] ;
2023-04-27 19:30:03 +01:00
constructor ( . . . weatherTypes : WeatherType [ ] ) {
super ( ) ;
this . weatherTypes = weatherTypes ;
}
2023-12-23 02:42:47 +00:00
applyPostWeatherLapse ( pokemon : Pokemon , weather : Weather , args : any [ ] ) : boolean | Promise < boolean > {
2023-05-02 20:56:41 +01:00
return false ;
}
getCondition ( ) : AbAttrCondition {
return getWeatherCondition ( . . . this . weatherTypes ) ;
}
}
export class PostWeatherLapseHealAbAttr extends PostWeatherLapseAbAttr {
private healFactor : integer ;
constructor ( healFactor : integer , . . . weatherTypes : WeatherType [ ] ) {
super ( . . . weatherTypes ) ;
this . healFactor = healFactor ;
}
applyPostWeatherLapse ( pokemon : Pokemon , weather : Weather , args : any [ ] ) : boolean {
if ( pokemon . getHpRatio ( ) < 1 ) {
2023-04-27 19:30:03 +01:00
const scene = pokemon . scene ;
2023-05-18 16:11:06 +01:00
scene . unshiftPhase ( new PokemonHealPhase ( scene , pokemon . getBattlerIndex ( ) ,
Math . max ( Math . floor ( pokemon . getMaxHp ( ) / ( 16 / this . healFactor ) ) , 1 ) , getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nrestored its HP a little! ` ) , true ) ) ;
2023-05-02 20:56:41 +01:00
return true ;
}
return false ;
}
}
export class PostWeatherLapseDamageAbAttr extends PostWeatherLapseAbAttr {
private damageFactor : integer ;
constructor ( damageFactor : integer , . . . weatherTypes : WeatherType [ ] ) {
super ( . . . weatherTypes ) ;
this . damageFactor = damageFactor ;
}
applyPostWeatherLapse ( pokemon : Pokemon , weather : Weather , args : any [ ] ) : boolean {
if ( pokemon . getHpRatio ( ) < 1 ) {
const scene = pokemon . scene ;
scene . queueMessage ( getPokemonMessage ( pokemon , ` is hurt \ nby its ${ pokemon . getAbility ( ) } ! ` ) ) ;
2023-05-18 16:11:06 +01:00
scene . unshiftPhase ( new DamagePhase ( pokemon . scene , pokemon . getBattlerIndex ( ) , HitResult . OTHER ) ) ;
2023-11-28 13:15:50 +00:00
pokemon . damage ( Math . ceil ( pokemon . getMaxHp ( ) / ( 16 / this . damageFactor ) ) ) ;
2023-04-27 19:30:03 +01:00
return true ;
}
return false ;
}
}
2023-12-11 03:29:13 +00:00
export class PostTurnAbAttr extends AbAttr {
2023-12-23 02:42:47 +00:00
applyPostTurn ( pokemon : Pokemon , args : any [ ] ) : boolean | Promise < boolean > {
2023-12-11 03:29:13 +00:00
return false ;
}
}
2023-12-22 06:16:56 +00:00
export class PostTurnStatChangeAbAttr extends PostTurnAbAttr {
private stats : BattleStat [ ] ;
private levels : integer ;
constructor ( stats : BattleStat | BattleStat [ ] , levels : integer ) {
super ( true ) ;
this . stats = Array . isArray ( stats )
? stats
: [ stats ] ;
this . levels = levels ;
}
2023-12-11 03:29:13 +00:00
applyPostTurn ( pokemon : Pokemon , args : any [ ] ) : boolean {
2023-12-22 06:16:56 +00:00
pokemon . scene . unshiftPhase ( new StatChangePhase ( pokemon . scene , pokemon . getBattlerIndex ( ) , true , this . stats , this . levels ) ) ;
2023-12-11 03:29:13 +00:00
return true ;
}
}
export class PostTurnHealAbAttr extends PostTurnAbAttr {
applyPostTurn ( pokemon : Pokemon , args : any [ ] ) : boolean {
if ( pokemon . getHpRatio ( ) < 1 ) {
const scene = pokemon . scene ;
scene . unshiftPhase ( new PokemonHealPhase ( scene , pokemon . getBattlerIndex ( ) ,
Math . max ( Math . floor ( pokemon . getMaxHp ( ) / 16 ) , 1 ) , getPokemonMessage ( pokemon , ` 's ${ pokemon . getAbility ( ) . name } \ nrestored its HP a little! ` ) , true ) ) ;
return true ;
}
return false ;
}
}
2023-11-06 03:11:38 +00:00
export class StatChangeMultiplierAbAttr extends AbAttr {
private multiplier : integer ;
constructor ( multiplier : integer ) {
super ( true ) ;
this . multiplier = multiplier ;
}
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
( args [ 0 ] as Utils . IntegerHolder ) . value *= this . multiplier ;
return true ;
}
}
2023-12-22 06:16:56 +00:00
export class DoubleBerryEffectAbAttr extends AbAttr {
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
( args [ 0 ] as Utils . NumberHolder ) . value *= 2 ;
return true ;
}
}
2023-12-23 06:21:01 +00:00
export class PreventBerryUseAbAttr extends AbAttr {
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
cancelled . value = true ;
return true ;
}
}
2023-12-22 22:08:37 +00:00
export class RunSuccessAbAttr extends AbAttr {
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
( args [ 0 ] as Utils . IntegerHolder ) . value = 256 ;
return true ;
}
}
2023-05-04 17:57:55 +01:00
export class CheckTrappedAbAttr extends AbAttr {
2023-12-23 03:04:30 +00:00
constructor ( ) {
super ( false ) ;
}
2023-12-23 02:42:47 +00:00
applyCheckTrapped ( pokemon : Pokemon , trapped : Utils.BooleanHolder , args : any [ ] ) : boolean | Promise < boolean > {
2023-05-04 17:57:55 +01:00
return false ;
}
}
export class ArenaTrapAbAttr extends CheckTrappedAbAttr {
applyCheckTrapped ( pokemon : Pokemon , trapped : Utils.BooleanHolder , args : any [ ] ) : boolean {
trapped . value = true ;
return true ;
}
getTriggerMessage ( pokemon : Pokemon , . . . args : any [ ] ) : string {
return getPokemonMessage ( pokemon , ` \ 's ${ pokemon . getAbility ( ) . name } \ nprevents switching! ` ) ;
}
}
2023-12-22 22:08:37 +00:00
export class MaxMultiHitAbAttr extends AbAttr {
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
( args [ 0 ] as Utils . IntegerHolder ) . value = 0 ;
return true ;
}
}
2024-01-16 05:28:03 +00:00
export class ReduceStatusEffectDurationAbAttr extends AbAttr {
private statusEffect : StatusEffect ;
constructor ( statusEffect : StatusEffect ) {
super ( true ) ;
this . statusEffect = statusEffect ;
}
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
if ( args [ 0 ] === this . statusEffect ) {
( args [ 1 ] as Utils . IntegerHolder ) . value = Math . floor ( ( args [ 1 ] as Utils . IntegerHolder ) . value / 2 ) ;
return true ;
}
return false ;
}
}
export class FlinchEffectAbAttr extends AbAttr {
constructor ( ) {
super ( true ) ;
}
}
export class FlinchStatChangeAbAttr extends FlinchEffectAbAttr {
private stats : BattleStat [ ] ;
private levels : integer ;
constructor ( stats : BattleStat | BattleStat [ ] , levels : integer ) {
super ( ) ;
this . stats = Array . isArray ( stats )
? stats
: [ stats ] ;
this . levels = levels ;
}
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
pokemon . scene . unshiftPhase ( new StatChangePhase ( pokemon . scene , pokemon . getBattlerIndex ( ) , true , this . stats , this . levels ) ) ;
return true ;
}
}
export class ReduceBerryUseThresholdAbAttr extends AbAttr {
constructor ( ) {
super ( true ) ;
}
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
const hpRatio = pokemon . getHpRatio ( ) ;
if ( args [ 0 ] . value < hpRatio ) {
args [ 0 ] . value *= 2 ;
return args [ 0 ] . value >= hpRatio ;
}
return false ;
}
}
2023-12-11 03:29:13 +00:00
export class WeightMultiplierAbAttr extends AbAttr {
private multiplier : integer ;
constructor ( multiplier : integer ) {
super ( true ) ;
this . multiplier = multiplier ;
}
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
( args [ 0 ] as Utils . NumberHolder ) . value *= this . multiplier ;
return true ;
}
}
2024-01-06 03:24:05 +00:00
export class SyncEncounterNatureAbAttr extends AbAttr {
constructor ( ) {
super ( false ) ;
}
apply ( pokemon : Pokemon , cancelled : Utils.BooleanHolder , args : any [ ] ) : boolean {
( args [ 0 ] as Pokemon ) . setNature ( pokemon . nature ) ;
return true ;
}
}
2023-12-23 03:04:30 +00:00
function applyAbAttrsInternal < TAttr extends AbAttr > ( attrType : { new ( . . . args : any [ ] ) : TAttr } ,
pokemon : Pokemon , applyFunc : AbAttrApplyFunc < TAttr > , isAsync? : boolean , showAbilityInstant? : boolean ) : Promise < void > {
2023-12-23 02:42:47 +00:00
return new Promise ( resolve = > {
if ( ! pokemon . canApplyAbility ( ) )
return resolve ( ) ;
2023-04-27 19:30:03 +01:00
2023-12-23 02:42:47 +00:00
const ability = pokemon . getAbility ( ) ;
2023-12-23 03:04:30 +00:00
const attrs = ability . getAttrs ( attrType ) as TAttr [ ] ;
2023-04-27 19:30:03 +01:00
2023-12-23 02:42:47 +00:00
const clearSpliceQueueAndResolve = ( ) = > {
pokemon . scene . clearPhaseQueueSplice ( ) ;
resolve ( ) ;
} ;
const applyNextAbAttr = ( ) = > {
if ( attrs . length )
applyAbAttr ( attrs . shift ( ) ) ;
else
clearSpliceQueueAndResolve ( ) ;
} ;
2023-12-23 03:04:30 +00:00
const applyAbAttr = ( attr : TAttr ) = > {
2023-12-23 02:42:47 +00:00
if ( ! canApplyAttr ( pokemon , attr ) )
return applyNextAbAttr ( ) ;
pokemon . scene . setPhaseQueueSplice ( ) ;
const onApplySuccess = ( ) = > {
2023-12-23 03:04:30 +00:00
if ( attr . showAbility ) {
if ( showAbilityInstant )
pokemon . scene . abilityBar . showAbility ( pokemon ) ;
else
queueShowAbility ( pokemon ) ;
}
2023-12-23 02:42:47 +00:00
const message = attr . getTriggerMessage ( pokemon ) ;
2023-12-23 03:04:30 +00:00
if ( message ) {
if ( isAsync )
pokemon . scene . ui . showText ( message , null , ( ) = > pokemon . scene . ui . showText ( null , 0 ) , null , true ) ;
else
pokemon . scene . queueMessage ( message ) ;
}
2023-12-23 02:42:47 +00:00
} ;
2023-12-23 03:04:30 +00:00
const result = applyFunc ( attr ) ;
2023-12-23 02:42:47 +00:00
if ( result instanceof Promise ) {
result . then ( success = > {
if ( success )
onApplySuccess ( ) ;
applyNextAbAttr ( ) ;
} ) ;
} else {
if ( result )
onApplySuccess ( ) ;
applyNextAbAttr ( ) ;
}
} ;
applyNextAbAttr ( ) ;
} ) ;
2023-04-27 19:30:03 +01:00
}
2023-12-23 03:04:30 +00:00
export function applyAbAttrs ( attrType : { new ( . . . args : any [ ] ) : AbAttr } , pokemon : Pokemon , cancelled : Utils.BooleanHolder , . . . args : any [ ] ) : Promise < void > {
return applyAbAttrsInternal < AbAttr > ( attrType , pokemon , attr = > attr . apply ( pokemon , cancelled , args ) ) ;
}
2023-04-27 19:30:03 +01:00
export function applyPreDefendAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PreDefendAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , cancelled : Utils.BooleanHolder , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PreDefendAbAttr > ( attrType , pokemon , attr = > attr . applyPreDefend ( pokemon , attacker , move , cancelled , args ) ) ;
2023-04-27 19:30:03 +01:00
}
2023-05-04 17:57:55 +01:00
export function applyPostDefendAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PostDefendAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , attacker : Pokemon , move : PokemonMove , hitResult : HitResult , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PostDefendAbAttr > ( attrType , pokemon , attr = > attr . applyPostDefend ( pokemon , attacker , move , hitResult , args ) ) ;
2023-12-23 02:42:47 +00:00
}
2023-05-02 05:11:31 +01:00
2023-12-23 02:42:47 +00:00
export function applyBattleStatMultiplierAbAttrs ( attrType : { new ( . . . args : any [ ] ) : BattleStatMultiplierAbAttr } ,
pokemon : Pokemon , battleStat : BattleStat , statValue : Utils.NumberHolder , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < BattleStatMultiplierAbAttr > ( attrType , pokemon , attr = > attr . applyBattleStat ( pokemon , battleStat , statValue , args ) ) ;
2023-05-02 05:11:31 +01:00
}
2023-04-27 19:30:03 +01:00
export function applyPreAttackAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PreAttackAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , defender : Pokemon , move : PokemonMove , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PreAttackAbAttr > ( attrType , pokemon , attr = > attr . applyPreAttack ( pokemon , defender , move , args ) ) ;
2023-04-27 19:30:03 +01:00
}
2023-12-22 06:16:56 +00:00
export function applyPostAttackAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PostAttackAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , defender : Pokemon , move : PokemonMove , hitResult : HitResult , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PostAttackAbAttr > ( attrType , pokemon , attr = > attr . applyPostAttack ( pokemon , defender , move , hitResult , args ) ) ;
2023-12-22 06:16:56 +00:00
}
2023-05-04 17:57:55 +01:00
export function applyPostSummonAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PostSummonAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PostSummonAbAttr > ( attrType , pokemon , attr = > attr . applyPostSummon ( pokemon , args ) ) ;
2023-05-04 17:57:55 +01:00
}
2024-01-16 05:28:03 +00:00
export function applyPreSwitchOutAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PreSwitchOutAbAttr } ,
pokemon : Pokemon , . . . args : any [ ] ) : Promise < void > {
return applyAbAttrsInternal < PreSwitchOutAbAttr > ( attrType , pokemon , attr = > attr . applyPreSwitchOut ( pokemon , args ) , false , true ) ;
}
2023-04-27 19:30:03 +01:00
export function applyPreStatChangeAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PreStatChangeAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , stat : BattleStat , cancelled : Utils.BooleanHolder , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PreStatChangeAbAttr > ( attrType , pokemon , attr = > attr . applyPreStatChange ( pokemon , stat , cancelled , args ) ) ;
2023-04-27 04:33:13 +01:00
}
2023-05-04 17:57:55 +01:00
export function applyPreSetStatusAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PreSetStatusAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , effect : StatusEffect , cancelled : Utils.BooleanHolder , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PreSetStatusAbAttr > ( attrType , pokemon , attr = > attr . applyPreSetStatus ( pokemon , effect , cancelled , args ) ) ;
2023-05-04 17:57:55 +01:00
}
export function applyPreApplyBattlerTagAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PreApplyBattlerTagAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , tag : BattlerTag , cancelled : Utils.BooleanHolder , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PreApplyBattlerTagAbAttr > ( attrType , pokemon , attr = > attr . applyPreApplyBattlerTag ( pokemon , tag , cancelled , args ) ) ;
2023-05-04 17:57:55 +01:00
}
2023-04-27 19:30:03 +01:00
export function applyPreWeatherEffectAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PreWeatherEffectAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , weather : Weather , cancelled : Utils.BooleanHolder , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PreWeatherDamageAbAttr > ( attrType , pokemon , attr = > attr . applyPreWeatherEffect ( pokemon , weather , cancelled , args ) , false , true ) ;
2023-04-27 19:30:03 +01:00
}
2023-05-02 20:56:41 +01:00
export function applyPostTurnAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PostTurnAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PostTurnAbAttr > ( attrType , pokemon , attr = > attr . applyPostTurn ( pokemon , args ) ) ;
2023-05-02 20:56:41 +01:00
}
2023-04-27 19:30:03 +01:00
export function applyPostWeatherLapseAbAttrs ( attrType : { new ( . . . args : any [ ] ) : PostWeatherLapseAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , weather : Weather , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < PostWeatherLapseAbAttr > ( attrType , pokemon , attr = > attr . applyPostWeatherLapse ( pokemon , weather , args ) ) ;
2023-04-27 19:30:03 +01:00
}
2023-05-04 17:57:55 +01:00
export function applyCheckTrappedAbAttrs ( attrType : { new ( . . . args : any [ ] ) : CheckTrappedAbAttr } ,
2023-12-23 02:42:47 +00:00
pokemon : Pokemon , trapped : Utils.BooleanHolder , . . . args : any [ ] ) : Promise < void > {
2023-12-23 03:04:30 +00:00
return applyAbAttrsInternal < CheckTrappedAbAttr > ( attrType , pokemon , attr = > attr . applyCheckTrapped ( pokemon , trapped , args ) , true ) ;
2023-05-04 17:57:55 +01:00
}
2023-04-27 19:30:03 +01:00
function canApplyAttr ( pokemon : Pokemon , attr : AbAttr ) : boolean {
const condition = attr . getCondition ( ) ;
return ! condition || condition ( pokemon ) ;
}
function queueShowAbility ( pokemon : Pokemon ) : void {
2023-05-18 16:11:06 +01:00
pokemon . scene . unshiftPhase ( new ShowAbilityPhase ( pokemon . scene , pokemon . getBattlerIndex ( ) ) ) ;
2023-04-27 19:30:03 +01:00
pokemon . scene . clearPhaseQueueSplice ( ) ;
2023-04-27 04:33:13 +01:00
}
2023-04-16 01:36:19 +01:00
export enum Abilities {
NONE ,
2023-12-05 22:12:39 +00:00
STENCH ,
DRIZZLE ,
SPEED_BOOST ,
2023-04-16 01:36:19 +01:00
BATTLE_ARMOR ,
2023-12-05 22:12:39 +00:00
STURDY ,
DAMP ,
LIMBER ,
SAND_VEIL ,
STATIC ,
VOLT_ABSORB ,
WATER_ABSORB ,
OBLIVIOUS ,
2023-04-16 01:36:19 +01:00
CLOUD_NINE ,
COMPOUND_EYES ,
INSOMNIA ,
2023-12-05 22:12:39 +00:00
COLOR_CHANGE ,
IMMUNITY ,
FLASH_FIRE ,
SHIELD_DUST ,
OWN_TEMPO ,
SUCTION_CUPS ,
2023-04-16 01:36:19 +01:00
INTIMIDATE ,
2023-12-05 22:12:39 +00:00
SHADOW_TAG ,
ROUGH_SKIN ,
WONDER_GUARD ,
2023-04-16 01:36:19 +01:00
LEVITATE ,
2023-12-05 22:12:39 +00:00
EFFECT_SPORE ,
SYNCHRONIZE ,
CLEAR_BODY ,
NATURAL_CURE ,
2023-04-16 01:36:19 +01:00
LIGHTNING_ROD ,
2023-12-05 22:12:39 +00:00
SERENE_GRACE ,
SWIFT_SWIM ,
CHLOROPHYLL ,
ILLUMINATE ,
TRACE ,
HUGE_POWER ,
POISON_POINT ,
INNER_FOCUS ,
2023-04-16 01:36:19 +01:00
MAGMA_ARMOR ,
2023-12-05 22:12:39 +00:00
WATER_VEIL ,
2023-04-16 01:36:19 +01:00
MAGNET_PULL ,
2023-12-05 22:12:39 +00:00
SOUNDPROOF ,
2023-04-16 01:36:19 +01:00
RAIN_DISH ,
SAND_STREAM ,
2023-12-05 22:12:39 +00:00
PRESSURE ,
2023-04-16 01:36:19 +01:00
THICK_FAT ,
2023-12-05 22:12:39 +00:00
EARLY_BIRD ,
FLAME_BODY ,
RUN_AWAY ,
KEEN_EYE ,
HYPER_CUTTER ,
PICKUP ,
2023-04-16 01:36:19 +01:00
TRUANT ,
2023-12-05 22:12:39 +00:00
HUSTLE ,
CUTE_CHARM ,
PLUS ,
MINUS ,
FORECAST ,
STICKY_HOLD ,
SHED_SKIN ,
GUTS ,
MARVEL_SCALE ,
LIQUID_OOZE ,
OVERGROW ,
BLAZE ,
TORRENT ,
SWARM ,
ROCK_HEAD ,
DROUGHT ,
ARENA_TRAP ,
2023-04-16 01:36:19 +01:00
VITAL_SPIRIT ,
WHITE_SMOKE ,
2023-12-05 22:12:39 +00:00
PURE_POWER ,
SHELL_ARMOR ,
AIR_LOCK ,
TANGLED_FEET ,
MOTOR_DRIVE ,
RIVALRY ,
STEADFAST ,
SNOW_CLOAK ,
2023-04-16 01:36:19 +01:00
GLUTTONY ,
2023-12-05 22:12:39 +00:00
ANGER_POINT ,
UNBURDEN ,
2023-04-16 01:36:19 +01:00
HEATPROOF ,
2023-12-05 22:12:39 +00:00
SIMPLE ,
DRY_SKIN ,
DOWNLOAD ,
2023-04-16 01:36:19 +01:00
IRON_FIST ,
POISON_HEAL ,
2023-12-05 22:12:39 +00:00
ADAPTABILITY ,
2023-04-16 01:36:19 +01:00
SKILL_LINK ,
2023-12-05 22:12:39 +00:00
HYDRATION ,
2023-04-16 01:36:19 +01:00
SOLAR_POWER ,
2023-12-05 22:12:39 +00:00
QUICK_FEET ,
NORMALIZE ,
SNIPER ,
MAGIC_GUARD ,
NO_GUARD ,
2023-04-16 01:36:19 +01:00
STALL ,
TECHNICIAN ,
2023-12-05 22:12:39 +00:00
LEAF_GUARD ,
KLUTZ ,
MOLD_BREAKER ,
SUPER_LUCK ,
AFTERMATH ,
ANTICIPATION ,
FOREWARN ,
2023-04-16 01:36:19 +01:00
UNAWARE ,
2023-12-05 22:12:39 +00:00
TINTED_LENS ,
FILTER ,
SLOW_START ,
SCRAPPY ,
STORM_DRAIN ,
ICE_BODY ,
SOLID_ROCK ,
SNOW_WARNING ,
HONEY_GATHER ,
FRISK ,
RECKLESS ,
MULTITYPE ,
FLOWER_GIFT ,
BAD_DREAMS ,
PICKPOCKET ,
SHEER_FORCE ,
2023-04-16 01:36:19 +01:00
CONTRARY ,
2023-12-05 22:12:39 +00:00
UNNERVE ,
2023-04-16 01:36:19 +01:00
DEFIANT ,
2023-12-05 22:12:39 +00:00
DEFEATIST ,
CURSED_BODY ,
2023-04-16 01:36:19 +01:00
HEALER ,
2023-12-05 22:12:39 +00:00
FRIEND_GUARD ,
WEAK_ARMOR ,
2023-04-16 01:36:19 +01:00
HEAVY_METAL ,
LIGHT_METAL ,
MULTISCALE ,
2023-12-05 22:12:39 +00:00
TOXIC_BOOST ,
FLARE_BOOST ,
HARVEST ,
TELEPATHY ,
MOODY ,
2023-04-16 01:36:19 +01:00
OVERCOAT ,
POISON_TOUCH ,
REGENERATOR ,
2023-12-05 22:12:39 +00:00
BIG_PECKS ,
2023-04-16 01:36:19 +01:00
SAND_RUSH ,
WONDER_SKIN ,
2023-12-05 22:12:39 +00:00
ANALYTIC ,
ILLUSION ,
IMPOSTER ,
INFILTRATOR ,
MUMMY ,
MOXIE ,
JUSTIFIED ,
RATTLED ,
MAGIC_BOUNCE ,
SAP_SIPPER ,
PRANKSTER ,
SAND_FORCE ,
IRON_BARBS ,
2023-04-16 01:36:19 +01:00
ZEN_MODE ,
2023-12-05 22:12:39 +00:00
VICTORY_STAR ,
TURBOBLAZE ,
TERAVOLT ,
AROMA_VEIL ,
FLOWER_VEIL ,
CHEEK_POUCH ,
PROTEAN ,
FUR_COAT ,
MAGICIAN ,
BULLETPROOF ,
2023-04-16 01:36:19 +01:00
COMPETITIVE ,
2023-12-05 22:12:39 +00:00
STRONG_JAW ,
REFRIGERATE ,
SWEET_VEIL ,
STANCE_CHANGE ,
GALE_WINGS ,
MEGA_LAUNCHER ,
GRASS_PELT ,
SYMBIOSIS ,
TOUGH_CLAWS ,
PIXILATE ,
GOOEY ,
AERILATE ,
PARENTAL_BOND ,
2023-04-16 01:36:19 +01:00
DARK_AURA ,
FAIRY_AURA ,
2023-12-05 22:12:39 +00:00
AURA_BREAK ,
PRIMORDIAL_SEA ,
DESOLATE_LAND ,
2023-10-20 19:19:22 +01:00
DELTA_STREAM ,
2023-12-05 22:12:39 +00:00
STAMINA ,
WIMP_OUT ,
EMERGENCY_EXIT ,
WATER_COMPACTION ,
MERCILESS ,
SHIELDS_DOWN ,
STAKEOUT ,
WATER_BUBBLE ,
STEELWORKER ,
BERSERK ,
2023-04-16 01:36:19 +01:00
SLUSH_RUSH ,
2023-12-05 22:12:39 +00:00
LONG_REACH ,
LIQUID_VOICE ,
TRIAGE ,
GALVANIZE ,
SURGE_SURFER ,
SCHOOLING ,
DISGUISE ,
BATTLE_BOND ,
POWER_CONSTRUCT ,
CORROSION ,
COMATOSE ,
QUEENLY_MAJESTY ,
INNARDS_OUT ,
DANCER ,
BATTERY ,
FLUFFY ,
DAZZLING ,
SOUL_HEART ,
TANGLING_HAIR ,
RECEIVER ,
POWER_OF_ALCHEMY ,
BEAST_BOOST ,
RKS_SYSTEM ,
ELECTRIC_SURGE ,
PSYCHIC_SURGE ,
MISTY_SURGE ,
GRASSY_SURGE ,
FULL_METAL_BODY ,
SHADOW_SHIELD ,
PRISM_ARMOR ,
NEUROFORCE ,
INTREPID_SWORD ,
DAUNTLESS_SHIELD ,
LIBERO ,
BALL_FETCH ,
COTTON_DOWN ,
PROPELLER_TAIL ,
MIRROR_ARMOR ,
GULP_MISSILE ,
STALWART ,
STEAM_ENGINE ,
PUNK_ROCK ,
SAND_SPIT ,
ICE_SCALES ,
RIPEN ,
ICE_FACE ,
POWER_SPOT ,
MIMICRY ,
SCREEN_CLEANER ,
STEELY_SPIRIT ,
PERISH_BODY ,
WANDERING_SPIRIT ,
GORILLA_TACTICS ,
NEUTRALIZING_GAS ,
PASTEL_VEIL ,
HUNGER_SWITCH ,
QUICK_DRAW ,
UNSEEN_FIST ,
CURIOUS_MEDICINE ,
TRANSISTOR ,
DRAGONS_MAW ,
CHILLING_NEIGH ,
GRIM_NEIGH ,
AS_ONE_GLASTRIER ,
AS_ONE_SPECTRIER ,
LINGERING_AROMA ,
SEED_SOWER ,
THERMAL_EXCHANGE ,
ANGER_SHELL ,
PURIFYING_SALT ,
WELL_BAKED_BODY ,
WIND_RIDER ,
GUARD_DOG ,
ROCKY_PAYLOAD ,
WIND_POWER ,
ZERO_TO_HERO ,
COMMANDER ,
ELECTROMORPHOSIS ,
PROTOSYNTHESIS ,
QUARK_DRIVE ,
GOOD_AS_GOLD ,
VESSEL_OF_RUIN ,
SWORD_OF_RUIN ,
TABLETS_OF_RUIN ,
BEADS_OF_RUIN ,
ORICHALCUM_PULSE ,
HADRON_ENGINE ,
OPPORTUNIST ,
CUD_CHEW ,
SHARPNESS ,
SUPREME_OVERLORD ,
COSTAR ,
TOXIC_DEBRIS ,
ARMOR_TAIL ,
EARTH_EATER ,
MYCELIUM_MIGHT ,
MINDS_EYE ,
SUPERSWEET_SYRUP ,
HOSPITALITY ,
TOXIC_CHAIN ,
EMBODY_ASPECT ,
2023-12-14 09:03:00 +00:00
TERA_SHIFT ,
TERA_SHELL ,
TERAFORM_ZERO ,
POISON_PUPPETEER
2023-12-05 22:12:39 +00:00
} ;
export const allAbilities = [ new Ability ( Abilities . NONE , "-" , "" , 3 ) ] ;
2023-04-27 19:30:03 +01:00
export function initAbilities() {
2023-12-05 22:12:39 +00:00
allAbilities . push (
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . STENCH , "Stench (N)" , "By releasing stench when attacking, this Pokémon may cause the target to flinch." , 3 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . DRIZZLE , "Drizzle" , "The Pokémon makes it rain when it enters a battle." , 3 )
. attr ( PostSummonWeatherChangeAbAttr , WeatherType . RAIN ) ,
new Ability ( Abilities . SPEED_BOOST , "Speed Boost" , "Its Speed stat is boosted every turn." , 3 )
2023-12-22 06:16:56 +00:00
. attr ( PostTurnStatChangeAbAttr , BattleStat . SPD , 1 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . BATTLE_ARMOR , "Battle Armor" , "Hard armor protects the Pokémon from critical hits." , 3 )
2023-05-02 03:07:00 +01:00
. attr ( BlockCritAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . STURDY , "Sturdy (N)" , "It cannot be knocked out with one hit. One-hit KO moves cannot knock it out, either." , 3 ) ,
new Ability ( Abilities . DAMP , "Damp (N)" , "Prevents the use of explosive moves, such as Self-Destruct, by dampening its surroundings." , 3 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . LIMBER , "Limber" , "Its limber body protects the Pokémon from paralysis." , 3 )
. attr ( StatusEffectImmunityAbAttr , StatusEffect . PARALYSIS ) ,
new Ability ( Abilities . SAND_VEIL , "Sand Veil" , "Boosts the Pokémon's evasiveness in a sandstorm." , 3 )
. attr ( BattleStatMultiplierAbAttr , BattleStat . EVA , 1.2 )
. attr ( BlockWeatherDamageAttr , WeatherType . SANDSTORM )
. condition ( getWeatherCondition ( WeatherType . SANDSTORM ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . STATIC , "Static" , "The Pokémon is charged with static electricity, so contact with it may cause paralysis." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( PostDefendContactApplyStatusEffectAbAttr , StatusEffect . PARALYSIS ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . VOLT_ABSORB , "Volt Absorb" , "Restores HP if hit by an Electric-type move instead of taking damage." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( TypeImmunityHealAbAttr , Type . ELECTRIC ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . WATER_ABSORB , "Water Absorb" , "Restores HP if hit by a Water-type move instead of taking damage." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( TypeImmunityHealAbAttr , Type . WATER ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . OBLIVIOUS , "Oblivious" , "The Pokémon is oblivious, and that keeps it from being infatuated or falling for taunts." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( BattlerTagImmunityAbAttr , BattlerTagType . INFATUATED ) ,
new Ability ( Abilities . CLOUD_NINE , "Cloud Nine" , "Eliminates the effects of weather." , 3 )
2023-04-27 19:30:03 +01:00
. attr ( SuppressWeatherEffectAbAttr ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . COMPOUND_EYES , "Compound Eyes" , "The Pokémon's compound eyes boost its accuracy." , 3 )
2023-05-02 20:56:41 +01:00
. attr ( BattleStatMultiplierAbAttr , BattleStat . ACC , 1.3 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . INSOMNIA , "Insomnia" , "The Pokémon is suffering from insomnia and cannot fall asleep." , 3 )
2023-05-04 17:57:55 +01:00
. attr ( StatusEffectImmunityAbAttr , StatusEffect . SLEEP )
. attr ( BattlerTagImmunityAbAttr , BattlerTagType . DROWSY ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . COLOR_CHANGE , "Color Change" , "The Pokémon's type becomes the type of the move used on it." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( PostDefendTypeChangeAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . IMMUNITY , "Immunity" , "The immune system of the Pokémon prevents it from getting poisoned." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( StatusEffectImmunityAbAttr , StatusEffect . POISON ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . FLASH_FIRE , "Flash Fire" , "Powers up the Pokémon's Fire-type moves if it's hit by one." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( TypeImmunityAddBattlerTagAbAttr , Type . FIRE , BattlerTagType . FIRE_BOOST , 1 , ( pokemon : Pokemon ) = > ! pokemon . status || pokemon . status . effect !== StatusEffect . FREEZE ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SHIELD_DUST , "Shield Dust (N)" , "This Pokémon's dust blocks the additional effects of attacks taken." , 3 ) ,
new Ability ( Abilities . OWN_TEMPO , "Own Tempo" , "This Pokémon has its own tempo, and that prevents it from becoming confused." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( BattlerTagImmunityAbAttr , BattlerTagType . CONFUSED ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SUCTION_CUPS , "Suction Cups (N)" , "This Pokémon uses suction cups to stay in one spot to negate all moves and items that force switching out." , 3 ) ,
new Ability ( Abilities . INTIMIDATE , "Intimidate" , "The Pokémon intimidates opposing Pokémon upon entering battle, lowering their Attack stat." , 3 )
2023-05-06 17:13:35 +01:00
. attr ( PostSummonStatChangeAbAttr , BattleStat . ATK , - 1 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SHADOW_TAG , "Shadow Tag" , "This Pokémon steps on the opposing Pokémon's shadow to prevent it from escaping." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( ArenaTrapAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . ROUGH_SKIN , "Rough Skin (N)" , "This Pokémon inflicts damage with its rough skin to the attacker on contact." , 3 ) ,
new Ability ( Abilities . WONDER_GUARD , "Wonder Guard" , "Its mysterious power only lets supereffective moves hit the Pokémon." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( NonSuperEffectiveImmunityAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . LEVITATE , "Levitate" , "By floating in the air, the Pokémon receives full immunity to all Ground-type moves." , 3 )
2023-05-08 23:48:35 +01:00
. attr ( TypeImmunityAbAttr , Type . GROUND , ( pokemon : Pokemon ) = > ! pokemon . getTag ( BattlerTagType . IGNORE_FLYING ) && ! pokemon . scene . arena . getTag ( ArenaTagType . GRAVITY ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . EFFECT_SPORE , "Effect Spore" , "Contact with the Pokémon may inflict poison, sleep, or paralysis on its attacker." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( PostDefendContactApplyStatusEffectAbAttr , 10 , StatusEffect . POISON , StatusEffect . PARALYSIS , StatusEffect . SLEEP ) ,
2024-01-06 03:24:05 +00:00
new Ability ( Abilities . SYNCHRONIZE , "Synchronize (N)" , "The attacker will receive the same status condition if it inflicts a burn, poison, or paralysis to the Pokémon." , 3 )
. attr ( SyncEncounterNatureAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . CLEAR_BODY , "Clear Body" , "Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( ProtectStatAbAttr ) ,
2024-01-16 05:28:03 +00:00
new Ability ( Abilities . NATURAL_CURE , "Natural Cure" , "All status conditions heal when the Pokémon switches out." , 3 )
. attr ( PreSwitchOutResetStatusAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . LIGHTNING_ROD , "Lightning Rod" , "The Pokémon draws in all Electric-type moves. Instead of being hit by Electric-type moves, it boosts its Sp. Atk." , 3 )
2023-04-27 19:30:03 +01:00
. attr ( TypeImmunityStatChangeAbAttr , Type . ELECTRIC , BattleStat . SPATK , 1 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SERENE_GRACE , "Serene Grace (N)" , "Boosts the likelihood of additional effects occurring when attacking." , 3 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . SWIFT_SWIM , "Swift Swim" , "Boosts the Pokémon's Speed stat in rain." , 3 )
. attr ( BattleStatMultiplierAbAttr , BattleStat . SPD , 2 )
. condition ( getWeatherCondition ( WeatherType . RAIN , WeatherType . HEAVY_RAIN ) ) ,
new Ability ( Abilities . CHLOROPHYLL , "Chlorophyll" , "Boosts the Pokémon's Speed stat in harsh sunlight." , 3 )
. attr ( BattleStatMultiplierAbAttr , BattleStat . SPD , 2 )
. condition ( getWeatherCondition ( WeatherType . SUNNY , WeatherType . HARSH_SUN ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . ILLUMINATE , "Illuminate" , "Raises the likelihood of meeting wild Pokémon by illuminating the surroundings." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( DoubleBattleChanceAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . TRACE , "Trace (N)" , "When it enters a battle, the Pokémon copies an opposing Pokémon's Ability." , 3 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . HUGE_POWER , "Huge Power" , "Doubles the Pokémon's Attack stat." , 3 )
. attr ( PostSummonStatChangeAbAttr , BattleStat . ATK , 2 , true ) ,
2023-10-18 23:01:15 +01:00
new Ability ( Abilities . POISON_POINT , "Poison Point" , "Contact with the Pokémon may poison the attacker." , 3 )
2023-05-04 19:06:31 +01:00
. attr ( PostDefendContactApplyStatusEffectAbAttr , StatusEffect . POISON ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . INNER_FOCUS , "Inner Focus" , "The Pokémon's intensely focused, and that protects the Pokémon from flinching." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( BattlerTagImmunityAbAttr , BattlerTagType . FLINCHED ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . MAGMA_ARMOR , "Magma Armor" , "The Pokémon is covered with hot magma, which prevents the Pokémon from becoming frozen." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( StatusEffectImmunityAbAttr , StatusEffect . FREEZE ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . WATER_VEIL , "Water Veil" , "The Pokémon is covered with a water veil, which prevents the Pokémon from getting a burn." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( StatusEffectImmunityAbAttr , StatusEffect . BURN ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . MAGNET_PULL , "Magnet Pull" , "Prevents Steel-type Pokémon from escaping using its magnetic force." , 3 )
2023-12-05 22:12:39 +00:00
/ * . a t t r ( A r e n a T r a p A b A t t r )
. condition ( ( pokemon : Pokemon ) = > pokemon . getOpponent ( ) ? . isOfType ( Type . STEEL ) ) * / ,
2023-12-22 06:16:56 +00:00
new Ability ( Abilities . SOUNDPROOF , "Soundproof" , "Soundproofing gives the Pokémon full immunity to all sound-based moves." , 3 )
. attr ( MoveImmunityAbAttr , ( pokemon , attacker , move ) = > pokemon !== attacker && move . getMove ( ) . hasFlag ( MoveFlags . SOUND_BASED ) ) ,
2023-10-18 23:01:15 +01:00
new Ability ( Abilities . RAIN_DISH , "Rain Dish" , "The Pokémon gradually regains HP in rain." , 3 )
2023-05-02 20:56:41 +01:00
. attr ( PostWeatherLapseHealAbAttr , 1 , WeatherType . RAIN , WeatherType . HEAVY_RAIN ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SAND_STREAM , "Sand Stream" , "The Pokémon summons a sandstorm when it enters a battle." , 3 )
2023-05-04 17:57:55 +01:00
. attr ( PostSummonWeatherChangeAbAttr , WeatherType . SANDSTORM ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . PRESSURE , "Pressure" , "By putting pressure on the opposing Pokémon, it raises their PP usage." , 3 )
2023-12-16 04:07:32 +00:00
. attr ( PostSummonMessageAbAttr , ( pokemon : Pokemon ) = > getPokemonMessage ( pokemon , ' is exerting its Pressure!' ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . THICK_FAT , "Thick Fat" , "The Pokémon is protected by a layer of thick fat, which halves the damage taken from Fire- and Ice-type moves." , 3 )
2023-05-06 17:13:35 +01:00
. attr ( ReceivedTypeDamageMultiplierAbAttr , Type . FIRE , 0.5 )
. attr ( ReceivedTypeDamageMultiplierAbAttr , Type . ICE , 0.5 ) ,
2024-01-16 05:28:03 +00:00
new Ability ( Abilities . EARLY_BIRD , "Early Bird" , "The Pokémon awakens from sleep twice as fast as other Pokémon." , 3 )
. attr ( ReduceStatusEffectDurationAbAttr , StatusEffect . SLEEP ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . FLAME_BODY , "Flame Body" , "Contact with the Pokémon may burn the attacker." , 3 )
. attr ( PostDefendContactApplyStatusEffectAbAttr , 30 , StatusEffect . BURN ) ,
2023-12-22 22:08:37 +00:00
new Ability ( Abilities . RUN_AWAY , "Run Away" , "Enables a sure getaway from wild Pokémon." , 3 )
. attr ( RunSuccessAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . KEEN_EYE , "Keen Eye" , "Keen eyes prevent other Pokémon from lowering this Pokémon's accuracy." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( ProtectStatAbAttr , BattleStat . ACC ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . HYPER_CUTTER , "Hyper Cutter" , "The Pokémon's proud of its powerful pincers. They prevent other Pokémon from lowering its Attack stat." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( ProtectStatAbAttr , BattleStat . ATK ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . PICKUP , "Pickup (N)" , "The Pokémon may pick up the item an opposing Pokémon used during a battle. It may pick up items outside of battle, too." , 3 ) ,
new Ability ( Abilities . TRUANT , "Truant" , "The Pokémon can't use a move if it had used a move on the previous turn." , 3 )
2023-12-23 03:46:05 +00:00
. attr ( PostSummonAddBattlerTagAbAttr , BattlerTagType . TRUANT , 1 , false ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . HUSTLE , "Hustle" , "Boosts the Attack stat, but lowers accuracy." , 3 )
. attr ( BattleStatMultiplierAbAttr , BattleStat . ATK , 1.5 )
. attr ( BattleStatMultiplierAbAttr , BattleStat . ACC , 0.8 ) ,
new Ability ( Abilities . CUTE_CHARM , "Cute Charm" , "Contact with the Pokémon may cause infatuation." , 3 )
. attr ( PostDefendContactApplyTagChanceAbAttr , 30 , BattlerTagType . INFATUATED ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . PLUS , "Plus (N)" , "Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle." , 3 ) ,
new Ability ( Abilities . MINUS , "Minus (N)" , "Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle." , 3 ) ,
new Ability ( Abilities . FORECAST , "Forecast (N)" , "The Pokémon transforms with the weather to change its type to Water, Fire, or Ice." , 3 ) ,
new Ability ( Abilities . STICKY_HOLD , "Sticky Hold" , "Items held by the Pokémon are stuck fast and cannot be removed by other Pokémon." , 3 )
2023-12-23 04:57:05 +00:00
. attr ( BlockItemTheftAbAttr )
. passive ( ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SHED_SKIN , "Shed Skin (N)" , "The Pokémon may heal its own status conditions by shedding its skin." , 3 ) ,
new Ability ( Abilities . GUTS , "Guts (N)" , "It's so gutsy that having a status condition boosts the Pokémon's Attack stat." , 3 ) ,
new Ability ( Abilities . MARVEL_SCALE , "Marvel Scale (N)" , "The Pokémon's marvelous scales boost the Defense stat if it has a status condition." , 3 ) ,
new Ability ( Abilities . LIQUID_OOZE , "Liquid Ooze (N)" , "The oozed liquid has a strong stench, which damages attackers using any draining move." , 3 ) ,
new Ability ( Abilities . OVERGROW , "Overgrow" , "Powers up Grass-type moves when the Pokémon's HP is low." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( LowHpMoveTypePowerBoostAbAttr , Type . GRASS ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . BLAZE , "Blaze" , "Powers up Fire-type moves when the Pokémon's HP is low." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( LowHpMoveTypePowerBoostAbAttr , Type . FIRE ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . TORRENT , "Torrent" , "Powers up Water-type moves when the Pokémon's HP is low." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( LowHpMoveTypePowerBoostAbAttr , Type . WATER ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SWARM , "Swarm" , "Powers up Bug-type moves when the Pokémon's HP is low." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( LowHpMoveTypePowerBoostAbAttr , Type . BUG ) ,
new Ability ( Abilities . ROCK_HEAD , "Rock Head" , "Protects the Pokémon from recoil damage." , 3 )
. attr ( BlockRecoilDamageAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . DROUGHT , "Drought" , "Turns the sunlight harsh when the Pokémon enters a battle." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( PostSummonWeatherChangeAbAttr , WeatherType . SUNNY ) ,
new Ability ( Abilities . ARENA_TRAP , "Arena Trap" , "Prevents opposing Pokémon from fleeing." , 3 )
. attr ( ArenaTrapAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . VITAL_SPIRIT , "Vital Spirit" , "The Pokémon is full of vitality, and that prevents it from falling asleep." , 3 )
2023-05-04 17:57:55 +01:00
. attr ( StatusEffectImmunityAbAttr , StatusEffect . SLEEP )
. attr ( BattlerTagImmunityAbAttr , BattlerTagType . DROWSY ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . WHITE_SMOKE , "White Smoke" , "The Pokémon is protected by its white smoke, which prevents other Pokémon from lowering its stats." , 3 )
2023-05-06 17:13:35 +01:00
. attr ( ProtectStatAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . PURE_POWER , "Pure Power" , "Using its pure power, the Pokémon doubles its Attack stat." , 3 )
2023-12-05 22:12:39 +00:00
. attr ( PostSummonStatChangeAbAttr , BattleStat . ATK , 2 , true ) ,
new Ability ( Abilities . SHELL_ARMOR , "Shell Armor" , "A hard shell protects the Pokémon from critical hits." , 3 )
. attr ( BlockCritAbAttr ) ,
new Ability ( Abilities . AIR_LOCK , "Air Lock" , "Eliminates the effects of weather." , 3 )
. attr ( SuppressWeatherEffectAbAttr , true ) ,
new Ability ( Abilities . TANGLED_FEET , "Tangled Feet (N)" , "Raises evasiveness if the Pokémon is confused." , 4 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . MOTOR_DRIVE , "Motor Drive" , "Boosts its Speed stat if hit by an Electric-type move instead of taking damage." , 4 )
2023-12-05 22:12:39 +00:00
. attr ( TypeImmunityStatChangeAbAttr , Type . ELECTRIC , BattleStat . SPD , 1 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . RIVALRY , "Rivalry (N)" , "Becomes competitive and deals more damage to Pokémon of the same gender, but deals less to Pokémon of the opposite gender." , 4 ) ,
2024-01-16 05:28:03 +00:00
new Ability ( Abilities . STEADFAST , "Steadfast" , "The Pokémon's determination boosts the Speed stat each time the Pokémon flinches." , 4 )
. attr ( FlinchStatChangeAbAttr , BattleStat . SPD , 1 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . SNOW_CLOAK , "Snow Cloak" , "Boosts evasiveness in a hailstorm." , 4 )
. attr ( BattleStatMultiplierAbAttr , BattleStat . EVA , 1.2 )
. attr ( BlockWeatherDamageAttr , WeatherType . HAIL ) ,
2024-01-16 05:28:03 +00:00
new Ability ( Abilities . GLUTTONY , "Gluttony" , "Makes the Pokémon eat a held Berry when its HP drops to half or less, which is sooner than usual." , 4 )
. attr ( ReduceBerryUseThresholdAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . ANGER_POINT , "Anger Point" , "The Pokémon is angered when it takes a critical hit, and that maxes its Attack stat." , 4 )
2023-10-27 05:12:53 +01:00
. attr ( PostDefendCritStatChangeAbAttr , BattleStat . ATK , 6 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . UNBURDEN , "Unburden (N)" , "Boosts the Speed stat if the Pokémon's held item is used or lost." , 4 ) ,
new Ability ( Abilities . HEATPROOF , "Heatproof" , "The heatproof body of the Pokémon halves the damage from Fire-type moves that hit it." , 4 )
2023-12-05 22:12:39 +00:00
. attr ( ReceivedTypeDamageMultiplierAbAttr , Type . FIRE , 0.5 ) ,
new Ability ( Abilities . SIMPLE , "Simple" , "The stat changes the Pokémon receives are doubled." , 4 )
. attr ( StatChangeMultiplierAbAttr , 2 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . DRY_SKIN , "Dry Skin" , "Restores HP in rain or when hit by Water-type moves. Reduces HP in harsh sunlight, and increases the damage received from Fire-type moves." , 4 )
2023-05-02 20:56:41 +01:00
. attr ( PostWeatherLapseDamageAbAttr , 2 , WeatherType . SUNNY , WeatherType . HARSH_SUN )
. attr ( PostWeatherLapseHealAbAttr , 2 , WeatherType . RAIN , WeatherType . HEAVY_RAIN )
2023-05-06 17:13:35 +01:00
. attr ( ReceivedTypeDamageMultiplierAbAttr , Type . FIRE , 1.25 )
2023-05-02 20:56:41 +01:00
. attr ( TypeImmunityHealAbAttr , Type . WATER ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . DOWNLOAD , "Download (N)" , "Compares an opposing Pokémon's Defense and Sp. Def stats before raising its own Attack or Sp. Atk stat—whichever will be more effective." , 4 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . IRON_FIST , "Iron Fist" , "Powers up punching moves." , 4 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . hasFlag ( MoveFlags . PUNCHING_MOVE ) , 1.2 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . POISON_HEAL , "Poison Heal (N)" , "Restores HP if the Pokémon is poisoned instead of losing HP." , 4 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . ADAPTABILITY , "Adaptability" , "Powers up moves of the same type as the Pokémon." , 4 )
. attr ( StabBoostAbAttr ) ,
2023-12-22 22:08:37 +00:00
new Ability ( Abilities . SKILL_LINK , "Skill Link" , "Maximizes the number of times multistrike moves hit." , 4 )
. attr ( MaxMultiHitAbAttr ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . HYDRATION , "Hydration (N)" , "Heals status conditions if it's raining." , 4 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SOLAR_POWER , "Solar Power" , "Boosts the Sp. Atk stat in harsh sunlight, but HP decreases every turn." , 4 )
2023-11-28 13:20:10 +00:00
. attr ( PostWeatherLapseDamageAbAttr , 2 , WeatherType . SUNNY , WeatherType . HARSH_SUN )
. attr ( BattleStatMultiplierAbAttr , BattleStat . SPATK , 1.5 )
. condition ( getWeatherCondition ( WeatherType . SUNNY , WeatherType . HARSH_SUN ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . QUICK_FEET , "Quick Feet (N)" , "Boosts the Speed stat if the Pokémon has a status condition." , 4 ) ,
new Ability ( Abilities . NORMALIZE , "Normalize (N)" , "All the Pokémon's moves become Normal type. The power of those moves is boosted a little." , 4 ) ,
new Ability ( Abilities . SNIPER , "Sniper (N)" , "Powers up moves if they become critical hits when attacking." , 4 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . MAGIC_GUARD , "Magic Guard (N)" , "The Pokémon only takes damage from attacks." , 4 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . NO_GUARD , "No Guard (N)" , "The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land." , 4 ) ,
2023-10-18 23:01:15 +01:00
new Ability ( Abilities . STALL , "Stall (N)" , "The Pokémon moves after all other Pokémon do." , 4 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . TECHNICIAN , "Technician" , "Powers up the Pokémon's weaker moves." , 4 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . power <= 60 , 1.5 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . LEAF_GUARD , "Leaf Guard" , "Prevents status conditions in harsh sunlight." , 4 )
. attr ( StatusEffectImmunityAbAttr )
. condition ( getWeatherCondition ( WeatherType . SUNNY , WeatherType . HARSH_SUN ) ) ,
new Ability ( Abilities . KLUTZ , "Klutz (N)" , "The Pokémon can't use any held items." , 4 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . MOLD_BREAKER , "Mold Breaker (N)" , "Moves can be used on the target regardless of its Abilities." , 4 ) ,
new Ability ( Abilities . SUPER_LUCK , "Super Luck (N)" , "The Pokémon is so lucky that the critical-hit ratios of its moves are boosted." , 4 ) ,
new Ability ( Abilities . AFTERMATH , "Aftermath (N)" , "Damages the attacker if it contacts the Pokémon with a finishing hit." , 4 ) ,
new Ability ( Abilities . ANTICIPATION , "Anticipation (N)" , "The Pokémon can sense an opposing Pokémon's dangerous moves." , 4 ) ,
new Ability ( Abilities . FOREWARN , "Forewarn (N)" , "When it enters a battle, the Pokémon can tell one of the moves an opposing Pokémon has." , 4 ) ,
new Ability ( Abilities . UNAWARE , "Unaware" , "When attacking, the Pokémon ignores the target Pokémon's stat changes." , 4 )
2023-11-06 04:27:40 +00:00
. attr ( IgnoreOpponentStatChangesAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . TINTED_LENS , "Tinted Lens (N)" , "The Pokémon can use \"not very effective\" moves to deal regular damage." , 4 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . FILTER , "Filter (N)" , "Reduces the power of supereffective attacks taken." , 4 ) ,
2023-12-23 03:46:05 +00:00
new Ability ( Abilities . SLOW_START , "Slow Start" , "For five turns, the Pokémon's Attack and Speed stats are halved." , 4 )
. attr ( PostSummonAddBattlerTagAbAttr , BattlerTagType . SLOW_START , 5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SCRAPPY , "Scrappy (N)" , "The Pokémon can hit Ghost-type Pokémon with Normal- and Fighting-type moves." , 4 ) ,
new Ability ( Abilities . STORM_DRAIN , "Storm Drain" , "Draws in all Water-type moves. Instead of being hit by Water-type moves, it boosts its Sp. Atk." , 4 )
2023-12-05 22:12:39 +00:00
. attr ( TypeImmunityStatChangeAbAttr , Type . WATER , BattleStat . SPATK , 1 ) ,
new Ability ( Abilities . ICE_BODY , "Ice Body" , "The Pokémon gradually regains HP in a hailstorm." , 4 )
. attr ( PostWeatherLapseHealAbAttr , 1 , WeatherType . HAIL ) ,
new Ability ( Abilities . SOLID_ROCK , "Solid Rock (N)" , "Reduces the power of supereffective attacks taken." , 4 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SNOW_WARNING , "Snow Warning" , "The Pokémon summons a hailstorm when it enters a battle." , 4 )
2023-12-05 22:12:39 +00:00
. attr ( PostSummonWeatherChangeAbAttr , WeatherType . HAIL ) ,
new Ability ( Abilities . HONEY_GATHER , "Honey Gather (N)" , "The Pokémon may gather Honey after a battle." , 4 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . FRISK , "Frisk (N)" , "When it enters a battle, the Pokémon can check an opposing Pokémon's held item." , 4 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . RECKLESS , "Reckless" , "Powers up moves that have recoil damage." , 4 )
2023-12-23 06:21:01 +00:00
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . getAttrs ( RecoilAttr ) . length && move . id !== Moves . STRUGGLE , 1.2 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . MULTITYPE , "Multitype (N)" , "Changes the Pokémon's type to match the Plate or Z-Crystal it holds." , 4 ) ,
new Ability ( Abilities . FLOWER_GIFT , "Flower Gift (N)" , "Boosts the Attack and Sp. Def stats of itself and allies in harsh sunlight." , 4 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . BAD_DREAMS , "Bad Dreams (N)" , "Reduces the HP of sleeping opposing Pokémon." , 4 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . PICKPOCKET , "Pickpocket" , "Steals an item from an attacker that made direct contact." , 5 )
. attr ( PostDefendStealHeldItemAbAttr , ( target , user , move ) = > move . hasFlag ( MoveFlags . MAKES_CONTACT ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SHEER_FORCE , "Sheer Force (N)" , "Removes additional effects to increase the power of moves when attacking." , 5 ) ,
2023-11-06 03:11:38 +00:00
new Ability ( Abilities . CONTRARY , "Contrary" , "Makes stat changes have an opposite effect." , 5 )
. attr ( StatChangeMultiplierAbAttr , - 1 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . UNNERVE , "Unnerve" , "Unnerves opposing Pokémon and makes them unable to eat Berries." , 5 )
. attr ( PreventBerryUseAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . DEFIANT , "Defiant (N)" , "Boosts the Pokémon's Attack stat sharply when its stats are lowered." , 5 ) ,
new Ability ( Abilities . DEFEATIST , "Defeatist (N)" , "Halves the Pokémon's Attack and Sp. Atk stats when its HP becomes half or less." , 5 ) ,
2023-10-18 23:01:15 +01:00
new Ability ( Abilities . CURSED_BODY , "Cursed Body (N)" , "May disable a move used on the Pokémon." , 5 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . HEALER , "Healer (N)" , "Sometimes heals an ally's status condition." , 5 ) ,
2023-04-27 19:30:03 +01:00
new Ability ( Abilities . FRIEND_GUARD , "Friend Guard (N)" , "Reduces damage done to allies." , 5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . WEAK_ARMOR , "Weak Armor (N)" , "Physical attacks to the Pokémon lower its Defense stat but sharply raise its Speed stat." , 5 ) ,
2023-12-11 03:29:13 +00:00
new Ability ( Abilities . HEAVY_METAL , "Heavy Metal" , "Doubles the Pokémon's weight." , 5 )
. attr ( WeightMultiplierAbAttr , 2 ) ,
new Ability ( Abilities . LIGHT_METAL , "Light Metal" , "Halves the Pokémon's weight." , 5 )
. attr ( WeightMultiplierAbAttr , 0.5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . MULTISCALE , "Multiscale (N)" , "Reduces the amount of damage the Pokémon takes while its HP is full." , 5 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . TOXIC_BOOST , "Toxic Boost" , "Powers up physical attacks when the Pokémon is poisoned." , 5 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . category === MoveCategory . PHYSICAL && ( user . status ? . effect === StatusEffect . POISON || user . status ? . effect === StatusEffect . TOXIC ) , 1.5 ) ,
new Ability ( Abilities . FLARE_BOOST , "Flare Boost" , "Powers up special attacks when the Pokémon is burned." , 5 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . category === MoveCategory . SPECIAL && user . status ? . effect === StatusEffect . BURN , 1.5 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . HARVEST , "Harvest (N)" , "May create another Berry after one is used." , 5 ) ,
new Ability ( Abilities . TELEPATHY , "Telepathy (N)" , "Anticipates an ally's attack and dodges it." , 5 ) ,
2023-12-22 06:16:56 +00:00
new Ability ( Abilities . MOODY , "Moody" , "Raises one stat sharply and lowers another every turn." , 5 )
. attr ( PostTurnStatChangeAbAttr , BattleStat . RAND , 2 )
. attr ( PostTurnStatChangeAbAttr , BattleStat . RAND , - 1 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . OVERCOAT , "Overcoat" , "Protects the Pokémon from things like sand, hail, and powder." , 5 )
2023-12-23 06:21:01 +00:00
. attr ( BlockWeatherDamageAttr )
. attr ( MoveImmunityAbAttr , ( pokemon , attacker , move ) = > pokemon !== attacker && move . getMove ( ) . hasFlag ( MoveFlags . POWDER_MOVE ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . POISON_TOUCH , "Poison Touch" , "May poison a target when the Pokémon makes contact." , 5 )
2023-05-06 17:13:35 +01:00
. attr ( PostDefendContactApplyStatusEffectAbAttr , 30 , StatusEffect . POISON ) ,
2023-04-27 19:30:03 +01:00
new Ability ( Abilities . REGENERATOR , "Regenerator (N)" , "Restores a little HP when withdrawn from battle." , 5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . BIG_PECKS , "Big Pecks" , "Protects the Pokémon from Defense-lowering effects." , 5 )
2023-12-05 22:12:39 +00:00
. attr ( ProtectStatAbAttr , BattleStat . DEF ) ,
new Ability ( Abilities . SAND_RUSH , "Sand Rush" , "Boosts the Pokémon's Speed stat in a sandstorm." , 5 )
2023-11-28 03:34:19 +00:00
. attr ( BattleStatMultiplierAbAttr , BattleStat . SPD , 2 )
. attr ( BlockWeatherDamageAttr , WeatherType . SANDSTORM )
. condition ( getWeatherCondition ( WeatherType . SANDSTORM ) ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . WONDER_SKIN , "Wonder Skin (N)" , "Makes status moves more likely to miss." , 5 ) ,
new Ability ( Abilities . ANALYTIC , "Analytic (N)" , "Boosts move power when the Pokémon moves last." , 5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . ILLUSION , "Illusion (N)" , "Comes out disguised as the Pokémon in the party's last spot." , 5 ) ,
new Ability ( Abilities . IMPOSTER , "Imposter" , "The Pokémon transforms itself into the Pokémon it's facing." , 5 )
2023-12-05 22:12:39 +00:00
. attr ( PostSummonTransformAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . INFILTRATOR , "Infiltrator (N)" , "Passes through the opposing Pokémon's barrier, substitute, and the like and strikes." , 5 ) ,
new Ability ( Abilities . MUMMY , "Mummy (N)" , "Contact with the Pokémon changes the attacker's Ability to Mummy." , 5 ) ,
new Ability ( Abilities . MOXIE , "Moxie (N)" , "The Pokémon shows moxie, and that boosts the Attack stat after knocking out any Pokémon." , 5 ) ,
new Ability ( Abilities . JUSTIFIED , "Justified (N)" , "Being hit by a Dark-type move boosts the Attack stat of the Pokémon, for justice." , 5 ) ,
new Ability ( Abilities . RATTLED , "Rattled (N)" , "Dark-, Ghost-, and Bug-type moves scare the Pokémon and boost its Speed stat." , 5 ) ,
new Ability ( Abilities . MAGIC_BOUNCE , "Magic Bounce (N)" , "Reflects status moves instead of getting hit by them." , 5 ) ,
new Ability ( Abilities . SAP_SIPPER , "Sap Sipper" , "Boosts the Attack stat if hit by a Grass-type move instead of taking damage." , 5 )
2023-05-02 20:56:41 +01:00
. attr ( TypeImmunityStatChangeAbAttr , Type . GRASS , BattleStat . ATK , 1 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . PRANKSTER , "Prankster (N)" , "Gives priority to a status move." , 5 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . SAND_FORCE , "Sand Force" , "Boosts the power of Rock-, Ground-, and Steel-type moves in a sandstorm." , 5 )
. attr ( MoveTypePowerBoostAbAttr , Type . ROCK , 1.3 )
. attr ( MoveTypePowerBoostAbAttr , Type . GROUND , 1.3 )
. attr ( MoveTypePowerBoostAbAttr , Type . STEEL , 1.3 )
. attr ( BlockWeatherDamageAttr , WeatherType . SANDSTORM )
. condition ( getWeatherCondition ( WeatherType . SANDSTORM ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . IRON_BARBS , "Iron Barbs (N)" , "Inflicts damage on the attacker upon contact with iron barbs." , 5 ) ,
new Ability ( Abilities . ZEN_MODE , "Zen Mode (N)" , "Changes the Pokémon's shape when HP is half or less." , 5 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . VICTORY_STAR , "Victory Star (N)" , "Boosts the accuracy of its allies and itself." , 5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . TURBOBLAZE , "Turboblaze (N)" , "Moves can be used on the target regardless of its Abilities." , 5 ) ,
new Ability ( Abilities . TERAVOLT , "Teravolt (N)" , "Moves can be used on the target regardless of its Abilities." , 5 ) ,
new Ability ( Abilities . AROMA_VEIL , "Aroma Veil (N)" , "Protects itself and its allies from attacks that limit their move choices." , 6 ) ,
new Ability ( Abilities . FLOWER_VEIL , "Flower Veil (N)" , "Ally Grass-type Pokémon are protected from status conditions and the lowering of their stats." , 6 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . CHEEK_POUCH , "Cheek Pouch (N)" , "Restores HP as well when the Pokémon eats a Berry." , 6 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . PROTEAN , "Protean (N)" , "Changes the Pokémon's type to the type of the move it's about to use." , 6 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . FUR_COAT , "Fur Coat" , "Halves the damage from physical moves." , 6 )
. attr ( ReceivedMoveDamageMultiplierAbAttr , ( target , user , move ) = > move . category === MoveCategory . PHYSICAL , 0.5 ) ,
2023-12-22 06:16:56 +00:00
new Ability ( Abilities . MAGICIAN , "Magician" , "The Pokémon steals the held item of a Pokémon it hits with a move." , 6 )
. attr ( PostAttackStealHeldItemAbAttr ) ,
new Ability ( Abilities . BULLETPROOF , "Bulletproof" , "Protects the Pokémon from some ball and bomb moves." , 6 )
. attr ( MoveImmunityAbAttr , ( pokemon , attacker , move ) = > pokemon !== attacker && move . getMove ( ) . hasFlag ( MoveFlags . BALLBOMB_MOVE ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . COMPETITIVE , "Competitive (N)" , "Boosts the Sp. Atk stat sharply when a stat is lowered." , 6 ) ,
2024-02-23 05:24:44 +00:00
new Ability ( Abilities . STRONG_JAW , "Strong Jaw" , "The Pokémon's strong jaw boosts the power of its biting moves." , 6 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . hasFlag ( MoveFlags . BITING_MOVE ) , 1.5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . REFRIGERATE , "Refrigerate (N)" , "Normal-type moves become Ice-type moves. The power of those moves is boosted a little." , 6 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . SWEET_VEIL , "Sweet Veil (N)" , "Prevents itself and ally Pokémon from falling asleep." , 6 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . STANCE_CHANGE , "Stance Change (N)" , "The Pokémon changes its form to Blade Forme when it uses an attack move and changes to Shield Forme when it uses King's Shield." , 6 ) ,
new Ability ( Abilities . GALE_WINGS , "Gale Wings (N)" , "Gives priority to Flying-type moves when the Pokémon's HP is full." , 6 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . MEGA_LAUNCHER , "Mega Launcher" , "Powers up aura and pulse moves." , 6 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . hasFlag ( MoveFlags . PULSE_MOVE ) , 1.5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . GRASS_PELT , "Grass Pelt (N)" , "Boosts the Pokémon's Defense stat on Grassy Terrain." , 6 ) ,
new Ability ( Abilities . SYMBIOSIS , "Symbiosis (N)" , "The Pokémon passes its item to an ally that has used up an item." , 6 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . TOUGH_CLAWS , "Tough Claws" , "Powers up moves that make direct contact." , 6 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . hasFlag ( MoveFlags . MAKES_CONTACT ) , 1.3 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . PIXILATE , "Pixilate (N)" , "Normal-type moves become Fairy-type moves. The power of those moves is boosted a little." , 6 ) ,
new Ability ( Abilities . GOOEY , "Gooey (N)" , "Contact with the Pokémon lowers the attacker's Speed stat." , 6 ) ,
new Ability ( Abilities . AERILATE , "Aerilate (N)" , "Normal-type moves become Flying-type moves. The power of those moves is boosted a little." , 6 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . PARENTAL_BOND , "Parental Bond (N)" , "Parent and child each attacks." , 6 ) ,
new Ability ( Abilities . DARK_AURA , "Dark Aura (N)" , "Powers up each Pokémon's Dark-type moves." , 6 ) ,
new Ability ( Abilities . FAIRY_AURA , "Fairy Aura (N)" , "Powers up each Pokémon's Fairy-type moves." , 6 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . AURA_BREAK , "Aura Break (N)" , "The effects of \"Aura\" Abilities are reversed to lower the power of affected moves." , 6 ) ,
new Ability ( Abilities . PRIMORDIAL_SEA , "Primordial Sea" , "The Pokémon changes the weather to nullify Fire-type attacks." , 6 )
2023-12-08 21:29:03 +00:00
. attr ( PostSummonWeatherChangeAbAttr , WeatherType . HEAVY_RAIN ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . DESOLATE_LAND , "Desolate Land" , "The Pokémon changes the weather to nullify Water-type attacks." , 6 )
2023-12-08 21:29:03 +00:00
. attr ( PostSummonWeatherChangeAbAttr , WeatherType . HARSH_SUN ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . DELTA_STREAM , "Delta Stream" , "The Pokémon changes the weather to eliminate all of the Flying type's weaknesses." , 6 )
2023-10-20 19:19:22 +01:00
. attr ( PostSummonWeatherChangeAbAttr , WeatherType . STRONG_WINDS ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . STAMINA , "Stamina (N)" , "Boosts the Defense stat when hit by an attack." , 7 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . WIMP_OUT , "Wimp Out (N)" , "The Pokémon cowardly switches out when its HP becomes half or less." , 7 ) ,
new Ability ( Abilities . EMERGENCY_EXIT , "Emergency Exit (N)" , "The Pokémon, sensing danger, switches out when its HP becomes half or less." , 7 ) ,
new Ability ( Abilities . WATER_COMPACTION , "Water Compaction (N)" , "Boosts the Pokémon's Defense stat sharply when hit by a Water-type move." , 7 ) ,
new Ability ( Abilities . MERCILESS , "Merciless (N)" , "The Pokémon's attacks become critical hits if the target is poisoned." , 7 ) ,
new Ability ( Abilities . SHIELDS_DOWN , "Shields Down (N)" , "When its HP becomes half or less, the Pokémon's shell breaks and it becomes aggressive." , 7 ) ,
new Ability ( Abilities . STAKEOUT , "Stakeout (N)" , "Doubles the damage dealt to the target's replacement if the target switches out." , 7 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . WATER_BUBBLE , "Water Bubble" , "Lowers the power of Fire-type moves done to the Pokémon and prevents the Pokémon from getting a burn." , 7 )
. attr ( ReceivedTypeDamageMultiplierAbAttr , Type . FIRE , 0.5 )
. attr ( MoveTypePowerBoostAbAttr , Type . WATER , 2 )
. attr ( StatusEffectImmunityAbAttr , StatusEffect . BURN ) ,
2023-12-14 17:48:59 +00:00
new Ability ( Abilities . STEELWORKER , "Steelworker" , "Powers up Steel-type moves." , 7 )
. attr ( MoveTypePowerBoostAbAttr , Type . STEEL ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . BERSERK , "Berserk (N)" , "Boosts the Pokémon's Sp. Atk stat when it takes a hit that causes its HP to become half or less." , 7 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . SLUSH_RUSH , "Slush Rush (N)" , "Boosts the Pokémon's Speed stat in a hailstorm." , 7 )
2023-11-24 05:45:58 +00:00
. attr ( BattleStatMultiplierAbAttr , BattleStat . SPD , 2 )
. condition ( getWeatherCondition ( WeatherType . HAIL ) ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . LONG_REACH , "Long Reach" , "The Pokémon uses its moves without making contact with the target." , 7 )
2023-12-11 03:29:13 +00:00
. attr ( IgnoreContactAbAttr ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . LIQUID_VOICE , "Liquid Voice (N)" , "All sound-based moves become Water-type moves." , 7 ) ,
new Ability ( Abilities . TRIAGE , "Triage (N)" , "Gives priority to a healing move." , 7 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . GALVANIZE , "Galvanize (N)" , "Normal-type moves become Electric-type moves. The power of those moves is boosted a little." , 7 ) ,
new Ability ( Abilities . SURGE_SURFER , "Surge Surfer (N)" , "Doubles the Pokémon's Speed stat on Electric Terrain." , 7 ) ,
new Ability ( Abilities . SCHOOLING , "Schooling (N)" , "When it has a lot of HP, the Pokémon forms a powerful school. It stops schooling when its HP is low." , 7 ) ,
new Ability ( Abilities . DISGUISE , "Disguise (N)" , "Once per battle, the shroud that covers the Pokémon can protect it from an attack." , 7 ) ,
new Ability ( Abilities . BATTLE_BOND , "Battle Bond (N)" , "Defeating an opposing Pokémon strengthens the Pokémon's bond with its Trainer, and it becomes Ash-Greninja. Water Shuriken gets more powerful." , 7 ) ,
new Ability ( Abilities . POWER_CONSTRUCT , "Power Construct (N)" , "Other Cells gather to aid when its HP becomes half or less. Then the Pokémon changes its form to Complete Forme." , 7 ) ,
new Ability ( Abilities . CORROSION , "Corrosion (N)" , "The Pokémon can poison the target even if it's a Steel or Poison type." , 7 ) ,
new Ability ( Abilities . COMATOSE , "Comatose (N)" , "It's always drowsing and will never wake up. It can attack without waking up." , 7 ) ,
new Ability ( Abilities . QUEENLY_MAJESTY , "Queenly Majesty (N)" , "Its majesty pressures the opposing Pokémon, making it unable to attack using priority moves." , 7 ) ,
new Ability ( Abilities . INNARDS_OUT , "Innards Out (N)" , "Damages the attacker landing the finishing hit by the amount equal to its last HP." , 7 ) ,
new Ability ( Abilities . DANCER , "Dancer (N)" , "When another Pokémon uses a dance move, it can use a dance move following it regardless of its Speed." , 7 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . BATTERY , "Battery (N)" , "Powers up ally Pokémon's special moves." , 7 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . FLUFFY , "Fluffy" , "Halves the damage taken from moves that make direct contact, but doubles that of Fire-type moves." , 7 )
. attr ( ReceivedMoveDamageMultiplierAbAttr , ( target , user , move ) = > move . hasFlag ( MoveFlags . MAKES_CONTACT ) , 0.5 )
. attr ( ReceivedMoveDamageMultiplierAbAttr , ( target , user , move ) = > move . type === Type . FIRE , 2 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . DAZZLING , "Dazzling (N)" , "Surprises the opposing Pokémon, making it unable to attack using priority moves." , 7 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . SOUL_HEART , "Soul-Heart (N)" , "Boosts its Sp. Atk stat every time a Pokémon faints." , 7 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . TANGLING_HAIR , "Tangling Hair (N)" , "Contact with the Pokémon lowers the attacker's Speed stat." , 7 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . RECEIVER , "Receiver (N)" , "The Pokémon copies the Ability of a defeated ally." , 7 ) ,
new Ability ( Abilities . POWER_OF_ALCHEMY , "Power of Alchemy (N)" , "The Pokémon copies the Ability of a defeated ally." , 7 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . BEAST_BOOST , "Beast Boost (N)" , "The Pokémon boosts its most proficient stat each time it knocks out a Pokémon." , 7 ) ,
new Ability ( Abilities . RKS_SYSTEM , "RKS System (N)" , "Changes the Pokémon's type to match the memory disc it holds." , 7 ) ,
new Ability ( Abilities . ELECTRIC_SURGE , "Electric Surge (N)" , "Turns the ground into Electric Terrain when the Pokémon enters a battle." , 7 ) ,
new Ability ( Abilities . PSYCHIC_SURGE , "Psychic Surge (N)" , "Turns the ground into Psychic Terrain when the Pokémon enters a battle." , 7 ) ,
new Ability ( Abilities . MISTY_SURGE , "Misty Surge (N)" , "Turns the ground into Misty Terrain when the Pokémon enters a battle." , 7 ) ,
new Ability ( Abilities . GRASSY_SURGE , "Grassy Surge (N)" , "Turns the ground into Grassy Terrain when the Pokémon enters a battle." , 7 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . FULL_METAL_BODY , "Full Metal Body" , "Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats." , 7 )
. attr ( ProtectStatAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SHADOW_SHIELD , "Shadow Shield (N)" , "Reduces the amount of damage the Pokémon takes while its HP is full." , 7 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . PRISM_ARMOR , "Prism Armor (N)" , "Reduces the power of supereffective attacks taken." , 7 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . NEUROFORCE , "Neuroforce" , "Powers up moves that are super effective." , 7 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > target . getAttackMoveEffectiveness ( move . type ) >= 2 , 1.25 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . INTREPID_SWORD , "Intrepid Sword (N)" , "Boosts the Pokémon's Attack stat when the Pokémon enters a battle." , 8 ) ,
new Ability ( Abilities . DAUNTLESS_SHIELD , "Dauntless Shield (N)" , "Boosts the Pokémon's Defense stat when the Pokémon enters a battle." , 8 ) ,
new Ability ( Abilities . LIBERO , "Libero (N)" , "Changes the Pokémon's type to the type of the move it's about to use." , 8 ) ,
new Ability ( Abilities . BALL_FETCH , "Ball Fetch (N)" , "If the Pokémon is not holding an item, it will fetch the Poké Ball from the first failed throw of the battle." , 8 ) ,
new Ability ( Abilities . COTTON_DOWN , "Cotton Down (N)" , "When the Pokémon is hit by an attack, it scatters cotton fluff around and lowers the Speed stat of all Pokémon except itself." , 8 ) ,
new Ability ( Abilities . PROPELLER_TAIL , "Propeller Tail (N)" , "Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves." , 8 ) ,
new Ability ( Abilities . MIRROR_ARMOR , "Mirror Armor (N)" , "Bounces back only the stat-lowering effects that the Pokémon receives." , 8 ) ,
new Ability ( Abilities . GULP_MISSILE , "Gulp Missile (N)" , "When the Pokémon uses Surf or Dive, it will come back with prey. When it takes damage, it will spit out the prey to attack." , 8 ) ,
new Ability ( Abilities . STALWART , "Stalwart (N)" , "Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves." , 8 ) ,
new Ability ( Abilities . STEAM_ENGINE , "Steam Engine (N)" , "Boosts the Pokémon's Speed stat drastically if hit by a Fire- or Water-type move." , 8 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . PUNK_ROCK , "Punk Rock" , "Boosts the power of sound-based moves. The Pokémon also takes half the damage from these kinds of moves." , 8 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . hasFlag ( MoveFlags . SOUND_BASED ) , 1.3 )
. attr ( ReceivedMoveDamageMultiplierAbAttr , ( target , user , move ) = > move . hasFlag ( MoveFlags . SOUND_BASED ) , 0.5 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SAND_SPIT , "Sand Spit (N)" , "The Pokémon creates a sandstorm when it's hit by an attack." , 8 ) ,
new Ability ( Abilities . ICE_SCALES , "Ice Scales (N)" , "The Pokémon is protected by ice scales, which halve the damage taken from special moves." , 8 ) ,
2023-12-22 06:16:56 +00:00
new Ability ( Abilities . RIPEN , "Ripen" , "Ripens Berries and doubles their effect." , 8 )
. attr ( DoubleBerryEffectAbAttr ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . ICE_FACE , "Ice Face (N)" , "The Pokémon's ice head can take a physical attack as a substitute, but the attack also changes the Pokémon's appearance. The ice will be restored when it hails." , 8 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . POWER_SPOT , "Power Spot (N)" , "Just being next to the Pokémon powers up moves." , 8 ) ,
new Ability ( Abilities . MIMICRY , "Mimicry (N)" , "Changes the Pokémon's type depending on the terrain." , 8 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . SCREEN_CLEANER , "Screen Cleaner (N)" , "When the Pokémon enters a battle, the effects of Light Screen, Reflect, and Aurora Veil are nullified for both opposing and ally Pokémon." , 8 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . STEELY_SPIRIT , "Steely Spirit (N)" , "Powers up ally Pokémon's Steel-type moves." , 8 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . PERISH_BODY , "Perish Body (N)" , "When hit by a move that makes direct contact, the Pokémon and the attacker will faint after three turns unless they switch out of battle." , 8 ) ,
new Ability ( Abilities . WANDERING_SPIRIT , "Wandering Spirit (N)" , "The Pokémon exchanges Abilities with a Pokémon that hits it with a move that makes direct contact." , 8 ) ,
new Ability ( Abilities . GORILLA_TACTICS , "Gorilla Tactics (N)" , "Boosts the Pokémon's Attack stat but only allows the use of the first selected move." , 8 ) ,
new Ability ( Abilities . NEUTRALIZING_GAS , "Neutralizing Gas (N)" , "If the Pokémon with Neutralizing Gas is in the battle, the effects of all Pokémon's Abilities will be nullified or will not be triggered." , 8 ) ,
2023-12-22 06:16:56 +00:00
new Ability ( Abilities . PASTEL_VEIL , "Pastel Veil" , "Protects the Pokémon and its ally Pokémon from being poisoned." , 8 )
. attr ( StatusEffectImmunityAbAttr , StatusEffect . POISON ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . HUNGER_SWITCH , "Hunger Switch (N)" , "The Pokémon changes its form, alternating between its Full Belly Mode and Hangry Mode after the end of each turn." , 8 ) ,
2023-12-05 22:12:39 +00:00
new Ability ( Abilities . QUICK_DRAW , "Quick Draw (N)" , "Enables the Pokémon to move first occasionally." , 8 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . UNSEEN_FIST , "Unseen Fist (N)" , "If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself." , 8 ) ,
new Ability ( Abilities . CURIOUS_MEDICINE , "Curious Medicine (N)" , "When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies." , 8 ) ,
2023-12-14 17:48:59 +00:00
new Ability ( Abilities . TRANSISTOR , "Transistor" , "Powers up Electric-type moves." , 8 )
. attr ( MoveTypePowerBoostAbAttr , Type . ELECTRIC ) ,
new Ability ( Abilities . DRAGONS_MAW , "Dragon's Maw" , "Powers up Dragon-type moves." , 8 )
. attr ( MoveTypePowerBoostAbAttr , Type . DRAGON ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . CHILLING_NEIGH , "Chilling Neigh (N)" , "When the Pokémon knocks out a target, it utters a chilling neigh, which boosts its Attack stat." , 8 ) ,
new Ability ( Abilities . GRIM_NEIGH , "Grim Neigh (N)" , "When the Pokémon knocks out a target, it utters a terrifying neigh, which boosts its Sp. Atk stat." , 8 ) ,
new Ability ( Abilities . AS_ONE_GLASTRIER , "As One (N)" , "This Ability combines the effects of both Calyrex's Unnerve Ability and Glastrier's Chilling Neigh Ability." , 8 ) ,
new Ability ( Abilities . AS_ONE_SPECTRIER , "As One (N)" , "This Ability combines the effects of both Calyrex's Unnerve Ability and Spectrier's Grim Neigh Ability." , 8 ) ,
new Ability ( Abilities . LINGERING_AROMA , "Lingering Aroma (N)" , "Contact with the Pokémon changes the attacker's Ability to Lingering Aroma." , 9 ) ,
new Ability ( Abilities . SEED_SOWER , "Seed Sower (N)" , "Turns the ground into Grassy Terrain when the Pokémon is hit by an attack." , 9 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . THERMAL_EXCHANGE , "Thermal Exchange (P)" , "Boosts the Attack stat when the Pokémon is hit by a Fire-type move. The Pokémon also cannot be burned." , 9 )
. attr ( StatusEffectImmunityAbAttr , StatusEffect . BURN ) ,
2023-12-11 17:23:00 +00:00
new Ability ( Abilities . ANGER_SHELL , "Anger Shell (N)" , "When an attack causes its HP to drop to half or less, the Pokémon gets angry. This lowers its Defense and Sp. Def stats but boosts its Attack, Sp. Atk, and Speed stats." , 9 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . PURIFYING_SALT , "Purifying Salt" , "The Pokémon's pure salt protects it from status conditions and halves the damage taken from Ghost-type moves." , 9 )
. attr ( StatusEffectImmunityAbAttr )
. attr ( ReceivedTypeDamageMultiplierAbAttr , Type . GHOST , 0.5 ) ,
2023-12-14 17:48:59 +00:00
new Ability ( Abilities . WELL_BAKED_BODY , "Well-Baked Body" , "The Pokémon takes no damage when hit by Fire-type moves. Instead, its Defense stat is sharply boosted." , 9 )
. attr ( TypeImmunityStatChangeAbAttr , Type . FIRE , BattleStat . DEF , 2 ) ,
2023-12-11 17:23:00 +00:00
new Ability ( Abilities . WIND_RIDER , "Wind Rider (N)" , "Boosts the Pokémon's Attack stat if Tailwind takes effect or if the Pokémon is hit by a wind move. The Pokémon also takes no damage from wind moves." , 9 ) ,
new Ability ( Abilities . GUARD_DOG , "Guard Dog (N)" , "Boosts the Pokémon's Attack stat if intimidated. Moves and items that would force the Pokémon to switch out also fail to work." , 9 ) ,
2023-12-14 17:48:59 +00:00
new Ability ( Abilities . ROCKY_PAYLOAD , "Rocky Payload" , "Powers up Rock-type moves." , 9 )
. attr ( MoveTypePowerBoostAbAttr , Type . ROCK ) ,
2023-12-11 17:23:00 +00:00
new Ability ( Abilities . WIND_POWER , "Wind Power (N)" , "The Pokémon becomes charged when it is hit by a wind move, boosting the power of the next Electric-type move the Pokémon uses." , 9 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . ZERO_TO_HERO , "Zero to Hero (N)" , "The Pokémon transforms into its Hero Form when it switches out." , 9 ) ,
2023-12-11 17:23:00 +00:00
new Ability ( Abilities . COMMANDER , "Commander (N)" , "When the Pokémon enters a battle, it goes inside the mouth of an ally Dondozo if one is on the field. The Pokémon then issues commands from there." , 9 ) ,
new Ability ( Abilities . ELECTROMORPHOSIS , "Electromorphosis (N)" , "The Pokémon becomes charged when it takes damage, boosting the power of the next Electric-type move the Pokémon uses." , 9 ) ,
new Ability ( Abilities . PROTOSYNTHESIS , "Protosynthesis (N)" , "Boosts the Pokémon's most proficient stat in harsh sunlight or if the Pokémon is holding Booster Energy." , 9 ) ,
new Ability ( Abilities . QUARK_DRIVE , "Quark Drive (N)" , "Boosts the Pokémon's most proficient stat on Electric Terrain or if the Pokémon is holding Booster Energy." , 9 ) ,
new Ability ( Abilities . GOOD_AS_GOLD , "Good as Gold (N)" , "A body of pure, solid gold gives the Pokémon full immunity to other Pokémon's status moves." , 9 ) ,
new Ability ( Abilities . VESSEL_OF_RUIN , "Vessel of Ruin (N)" , "The power of the Pokémon's ruinous vessel lowers the Sp. Atk stats of all Pokémon except itself." , 9 ) ,
new Ability ( Abilities . SWORD_OF_RUIN , "Sword of Ruin (N)" , "The power of the Pokémon's ruinous sword lowers the Defense stats of all Pokémon except itself." , 9 ) ,
new Ability ( Abilities . TABLETS_OF_RUIN , "Tablets of Ruin (N)" , "The power of the Pokémon's ruinous wooden tablets lowers the Attack stats of all Pokémon except itself." , 9 ) ,
new Ability ( Abilities . BEADS_OF_RUIN , "Beads of Ruin (N)" , "The power of the Pokémon's ruinous beads lowers the Sp. Def stats of all Pokémon except itself." , 9 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . ORICHALCUM_PULSE , "Orichalcum Pulse" , "Turns the sunlight harsh when the Pokémon enters a battle. The ancient pulse thrumming through the Pokémon also boosts its Attack stat in harsh sunlight." , 9 )
. attr ( PostSummonWeatherChangeAbAttr , WeatherType . SUNNY )
. conditionalAttr ( getWeatherCondition ( WeatherType . SUNNY , WeatherType . HARSH_SUN ) , BattleStatMultiplierAbAttr , BattleStat . ATK , 1 ) ,
2023-12-11 17:23:00 +00:00
new Ability ( Abilities . HADRON_ENGINE , "Hadron Engine (N)" , "Turns the ground into Electric Terrain when the Pokémon enters a battle. The futuristic engine within the Pokémon also boosts its Sp. Atk stat on Electric Terrain." , 9 ) ,
new Ability ( Abilities . OPPORTUNIST , "Opportunist (N)" , "If an opponent's stat is boosted, the Pokémon seizes the opportunity to boost the same stat for itself." , 9 ) ,
new Ability ( Abilities . CUD_CHEW , "Cud Chew (N)" , "When the Pokémon eats a Berry, it will regurgitate that Berry at the end of the next turn and eat it one more time." , 9 ) ,
2023-12-23 06:21:01 +00:00
new Ability ( Abilities . SHARPNESS , "Sharpness" , "Powers up slicing moves." , 9 )
. attr ( MovePowerBoostAbAttr , ( user , target , move ) = > move . hasFlag ( MoveFlags . SLICING_MOVE ) , 1.5 ) ,
2023-12-11 17:23:00 +00:00
new Ability ( Abilities . SUPREME_OVERLORD , "Supreme Overlord (N)" , "When the Pokémon enters a battle, its Attack and Sp. Atk stats are slightly boosted for each of the allies in its party that have already been defeated." , 9 ) ,
2023-12-11 16:09:58 +00:00
new Ability ( Abilities . COSTAR , "Costar (N)" , "When the Pokémon enters a battle, it copies an ally's stat changes." , 9 ) ,
2023-12-11 17:23:00 +00:00
new Ability ( Abilities . TOXIC_DEBRIS , "Toxic Debris (N)" , "Scatters poison spikes at the feet of the opposing team when the Pokémon takes damage from physical moves." , 9 ) ,
new Ability ( Abilities . ARMOR_TAIL , "Armor Tail (N)" , "The mysterious tail covering the Pokémon's head makes opponents unable to use priority moves against the Pokémon or its allies." , 9 ) ,
new Ability ( Abilities . EARTH_EATER , "Earth Eater" , "If hit by a Ground-type move, the Pokémon has its HP restored instead of taking damage." , 9 )
2023-12-11 07:41:33 +00:00
. attr ( TypeImmunityHealAbAttr , Type . GROUND ) ,
2023-12-11 17:23:00 +00:00
new Ability ( Abilities . MYCELIUM_MIGHT , "Mycelium Might (N)" , "The Pokémon will always act more slowly when using status moves, but these moves will be unimpeded by the Ability of the target." , 9 ) ,
new Ability ( Abilities . MINDS_EYE , "Mind's Eye (N)" , "The Pokémon ignores changes to opponents' evasiveness, its accuracy can't be lowered, and it can hit Ghost types with Normal- and Fighting-type moves." , 9 ) ,
new Ability ( Abilities . SUPERSWEET_SYRUP , "Supersweet Syrup (N)" , "A sickly sweet scent spreads across the field the first time the Pokémon enters a battle, lowering the evasiveness of opposing Pokémon." , 9 ) ,
new Ability ( Abilities . HOSPITALITY , "Hospitality (N)" , "When the Pokémon enters a battle, it showers its ally with hospitality, restoring a small amount of the ally's HP." , 9 ) ,
new Ability ( Abilities . TOXIC_CHAIN , "Toxic Chain (N)" , "The power of the Pokémon's toxic chain may badly poison any target the Pokémon hits with a move." , 9 ) ,
2023-12-14 09:03:00 +00:00
new Ability ( Abilities . EMBODY_ASPECT , "Embody Aspect (N)" , "Depending on the Mask held, the Pokémon receives a boost to either their Attack, Defense, Sp. Def, or Speed." , 9 ) ,
new Ability ( Abilities . TERA_SHIFT , "Tera Shift (N)" , "When the Pokémon enters a battle, it absorbs the energy around itself and transforms into its Terastal Form." , 9 ) ,
new Ability ( Abilities . TERA_SHELL , "Tera Shell (N)" , "The Pokémon's shell contains the powers of each type. All damage-dealing moves that hit the Pokémon when its HP is full will not be very effective." , 9 ) ,
new Ability ( Abilities . TERAFORM_ZERO , "Teraform Zero (N)" , "When Terapagos changes into its Stellar Form, it uses its hidden powers to eliminate all effects of weather and terrain, reducing them to zero." , 9 ) ,
new Ability ( Abilities . POISON_PUPPETEER , "Poison Puppeteer (N)" , "Pokémon poisoned by Pecharunt's moves will also become confused." , 9 )
2023-04-27 19:30:03 +01:00
) ;
}