mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-30 21:42:20 +02:00
parent
23e1d88c3a
commit
663c64fdb4
@ -8,11 +8,11 @@ export type SignatureSpecies = {
|
|||||||
* The signature species for each Gym Leader, Elite Four member, and Champion.
|
* The signature species for each Gym Leader, Elite Four member, and Champion.
|
||||||
* The key is the trainer type, and the value is an array of Species or Species arrays.
|
* The key is the trainer type, and the value is an array of Species or Species arrays.
|
||||||
* This is in a separate const so it can be accessed from other places and not just the trainerConfigs
|
* This is in a separate const so it can be accessed from other places and not just the trainerConfigs
|
||||||
*
|
*
|
||||||
* @remarks
|
* @remarks
|
||||||
* The `Proxy` object allows us to define a handler that will intercept
|
* The `Proxy` object allows us to define a handler that will intercept
|
||||||
* the property access and return an empty array if the property does not exist in the object.
|
* the property access and return an empty array if the property does not exist in the object.
|
||||||
*
|
*
|
||||||
* This means that accessing `signatureSpecies` will not throw an error if the property does not exist,
|
* This means that accessing `signatureSpecies` will not throw an error if the property does not exist,
|
||||||
* but instead default to an empty array.
|
* but instead default to an empty array.
|
||||||
*/
|
*/
|
||||||
|
@ -67104,7 +67104,7 @@ export const tmSpecies: TmSpecies = {
|
|||||||
Species.CHEWTLE,
|
Species.CHEWTLE,
|
||||||
Species.DREDNAW,
|
Species.DREDNAW,
|
||||||
Species.YAMPER,
|
Species.YAMPER,
|
||||||
Species.BOLTUND,
|
Species.BOLTUND,
|
||||||
Species.ROLYCOLY,
|
Species.ROLYCOLY,
|
||||||
Species.CARKOL,
|
Species.CARKOL,
|
||||||
Species.COALOSSAL,
|
Species.COALOSSAL,
|
||||||
@ -67121,7 +67121,7 @@ export const tmSpecies: TmSpecies = {
|
|||||||
Species.SIZZLIPEDE,
|
Species.SIZZLIPEDE,
|
||||||
Species.CENTISKORCH,
|
Species.CENTISKORCH,
|
||||||
Species.CLOBBOPUS,
|
Species.CLOBBOPUS,
|
||||||
Species.GRAPPLOCT,
|
Species.GRAPPLOCT,
|
||||||
Species.SINISTEA,
|
Species.SINISTEA,
|
||||||
Species.POLTEAGEIST,
|
Species.POLTEAGEIST,
|
||||||
Species.HATENNA,
|
Species.HATENNA,
|
||||||
|
@ -5678,7 +5678,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Performs the action of clearing a Pokemon's status
|
* Performs the action of clearing a Pokemon's status
|
||||||
*
|
*
|
||||||
* This is a helper to {@linkcode resetStatus}, which should be called directly instead of this method
|
* This is a helper to {@linkcode resetStatus}, which should be called directly instead of this method
|
||||||
*/
|
*/
|
||||||
public clearStatus(confusion: boolean, reloadAssets: boolean) {
|
public clearStatus(confusion: boolean, reloadAssets: boolean) {
|
||||||
|
Loading…
Reference in New Issue
Block a user