mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-25 02:59:22 +01:00
* Add enum for hit check result Co-authored-by: innerthunder <brandonerickson98@gmail.com> * Refactor parameter list for pokemon#getBaseDamage and pokemon#getAttackDamage * Rewrite move phase Co-authored-by: innerthunder <brandonerickson98@gmail.com> * Update tests to reflect move effect phase changes Co-authored-by: innerthunder <brandonerickson98@gmail.com> * Fix pluck / bug bite Co-authored-by: innerthunder <brandonerickson98@gmail.com> * Fix reviver seed ohko, remove leftover dead code Co-authored-by: innerthunder <brandonerickson98@gmail.com> * Cleanup jsdoc comments * Remove hitsSubstitute check from postDefend abilities * Fix improper i18nkey in moveEffectPhase#applyToTargets * Cleanup comments * Fix type issue with substitute test * Move MYSTERY_ENCOUNTER_WAVES to constants.ts * Update linkcode in damageparams to use proper tsdoc syntax --------- Co-authored-by: innerthunder <brandonerickson98@gmail.com>
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
export enum MoveEffectTrigger {
|
|
PRE_APPLY,
|
|
POST_APPLY,
|
|
/** Triggers one time after all target effects have applied */
|
|
POST_TARGET
|
|
}
|