mirror of
				https://github.com/pagefaultgames/pokerogue.git
				synced 2025-11-04 10:21:20 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Species } from "#enums/species";
 | 
						|
 | 
						|
/**
 | 
						|
 * A list of all {@link https://bulbapedia.bulbagarden.net/wiki/Paradox_Pok%C3%A9mon | Paradox Pokemon}, NOT including the legendaries Miraidon and Koraidon.
 | 
						|
 */
 | 
						|
export const NON_LEGEND_PARADOX_POKEMON = [
 | 
						|
  Species.GREAT_TUSK,
 | 
						|
  Species.SCREAM_TAIL,
 | 
						|
  Species.BRUTE_BONNET,
 | 
						|
  Species.FLUTTER_MANE,
 | 
						|
  Species.SLITHER_WING,
 | 
						|
  Species.SANDY_SHOCKS,
 | 
						|
  Species.ROARING_MOON,
 | 
						|
  Species.WALKING_WAKE,
 | 
						|
  Species.GOUGING_FIRE,
 | 
						|
  Species.RAGING_BOLT,
 | 
						|
  Species.IRON_TREADS,
 | 
						|
  Species.IRON_BUNDLE,
 | 
						|
  Species.IRON_HANDS,
 | 
						|
  Species.IRON_JUGULIS,
 | 
						|
  Species.IRON_MOTH,
 | 
						|
  Species.IRON_THORNS,
 | 
						|
  Species.IRON_VALIANT,
 | 
						|
  Species.IRON_LEAVES,
 | 
						|
  Species.IRON_BOULDER,
 | 
						|
  Species.IRON_CROWN,
 | 
						|
];
 | 
						|
 | 
						|
/**
 | 
						|
 * A list of all {@link https://bulbapedia.bulbagarden.net/wiki/Ultra_Beast | Ultra Beasts}, NOT including legendaries such as Necrozma or the Cosmog line.
 | 
						|
 *
 | 
						|
 * Note that all of these Ultra Beasts are still considered Sub-Legendary.
 | 
						|
 */
 | 
						|
export const NON_LEGEND_ULTRA_BEASTS = [
 | 
						|
  Species.NIHILEGO,
 | 
						|
  Species.BUZZWOLE,
 | 
						|
  Species.PHEROMOSA,
 | 
						|
  Species.XURKITREE,
 | 
						|
  Species.CELESTEELA,
 | 
						|
  Species.KARTANA,
 | 
						|
  Species.GUZZLORD,
 | 
						|
  Species.POIPOLE,
 | 
						|
  Species.NAGANADEL,
 | 
						|
  Species.STAKATAKA,
 | 
						|
  Species.BLACEPHALON,
 | 
						|
];
 |