diff --git a/Data/Actors.rxdata b/Data/Actors.rxdata index 7967a5432..41edc8e26 100644 Binary files a/Data/Actors.rxdata and b/Data/Actors.rxdata differ diff --git a/Data/Animations.rxdata b/Data/Animations.rxdata index a900929a9..71336e1f0 100644 Binary files a/Data/Animations.rxdata and b/Data/Animations.rxdata differ diff --git a/Data/Armors.rxdata b/Data/Armors.rxdata index 2249bec14..901f2bb2b 100644 Binary files a/Data/Armors.rxdata and b/Data/Armors.rxdata differ diff --git a/Data/CommonEvents.rxdata b/Data/CommonEvents.rxdata index 1790db673..410f937fa 100644 Binary files a/Data/CommonEvents.rxdata and b/Data/CommonEvents.rxdata differ diff --git a/Data/Enemies.rxdata b/Data/Enemies.rxdata index 004ee903d..be622f513 100644 Binary files a/Data/Enemies.rxdata and b/Data/Enemies.rxdata differ diff --git a/Data/Items.rxdata b/Data/Items.rxdata index 3e62ba6d2..fe767fa0b 100644 Binary files a/Data/Items.rxdata and b/Data/Items.rxdata differ diff --git a/Data/Map079.rxdata b/Data/Map079.rxdata index dea4b45e0..904319e28 100644 Binary files a/Data/Map079.rxdata and b/Data/Map079.rxdata differ diff --git a/Data/Map315.rxdata b/Data/Map315.rxdata index a2977b711..e82a31824 100644 Binary files a/Data/Map315.rxdata and b/Data/Map315.rxdata differ diff --git a/Data/Map387.rxdata b/Data/Map387.rxdata index f8206d7f6..f46be01d6 100644 Binary files a/Data/Map387.rxdata and b/Data/Map387.rxdata differ diff --git a/Data/MapInfos.rxdata b/Data/MapInfos.rxdata index 0ec00893e..01c1b950d 100644 Binary files a/Data/MapInfos.rxdata and b/Data/MapInfos.rxdata differ diff --git a/Data/Scripts/001_Settings.rb b/Data/Scripts/001_Settings.rb index 6e23ad547..e7cd9a0f6 100644 --- a/Data/Scripts/001_Settings.rb +++ b/Data/Scripts/001_Settings.rb @@ -5,8 +5,7 @@ #==============================================================================# module Settings # The version of your game. It has to adhere to the MAJOR.MINOR.PATCH format. - GAME_VERSION = '6.7.1' - GAME_VERSION_NUMBER = GAME_VERSION #kinda used interchangibly #todo: refactor + GAME_VERSION_NUMBER = "6.7.2" LATEST_GAME_RELEASE = "6.6" KANTO = GAME_ID == :IF_KANTO diff --git a/Data/Scripts/002_Save data/003_SaveData_Conversion.rb b/Data/Scripts/002_Save data/003_SaveData_Conversion.rb index f48bc35ea..4a3ed9a96 100644 --- a/Data/Scripts/002_Save data/003_SaveData_Conversion.rb +++ b/Data/Scripts/002_Save data/003_SaveData_Conversion.rb @@ -203,7 +203,7 @@ module SaveData end echoln '' if conversions_to_run.length > 0 save_data[:essentials_version] = Essentials::VERSION - save_data[:game_version] = Settings::GAME_VERSION + save_data[:game_version] = Settings::GAME_VERSION_NUMBER return true end diff --git a/Data/Scripts/002_Save data/004_Game_SaveValues.rb b/Data/Scripts/002_Save data/004_Game_SaveValues.rb index 18d3ab07b..a7ebeab1d 100644 --- a/Data/Scripts/002_Save data/004_Game_SaveValues.rb +++ b/Data/Scripts/002_Save data/004_Game_SaveValues.rb @@ -129,7 +129,7 @@ end SaveData.register(:game_version) do load_in_bootup ensure_class :String - save_value { Settings::GAME_VERSION } + save_value { Settings::GAME_VERSION_NUMBER } load_value { |value| $game_version = value } - new_game_value { Settings::GAME_VERSION } + new_game_value { Settings::GAME_VERSION_NUMBER } end diff --git a/Data/Scripts/002_Save data/005_Game_SaveConversions.rb b/Data/Scripts/002_Save data/005_Game_SaveConversions.rb index 554864de6..556369592 100644 --- a/Data/Scripts/002_Save data/005_Game_SaveConversions.rb +++ b/Data/Scripts/002_Save data/005_Game_SaveConversions.rb @@ -8,7 +8,7 @@ SaveData.register_conversion(:v19_define_versions) do save_data[:essentials_version] = Essentials::VERSION end unless save_data.has_key?(:game_version) - save_data[:game_version] = Settings::GAME_VERSION + save_data[:game_version] = Settings::GAME_VERSION_NUMBER end end end diff --git a/Data/Scripts/007_Objects and windows/002_MessageConfig.rb b/Data/Scripts/007_Objects and windows/002_MessageConfig.rb index 7633a927d..f007f707b 100644 --- a/Data/Scripts/007_Objects and windows/002_MessageConfig.rb +++ b/Data/Scripts/007_Objects and windows/002_MessageConfig.rb @@ -745,6 +745,7 @@ def addBackgroundPlane(sprites,planename,background,viewport=nil) end end end + return sprites[planename] end # Adds a background to the sprite hash. diff --git a/Data/Scripts/016_UI/001_Non-interactive UI/006_UI_HallOfFame.rb b/Data/Scripts/016_UI/001_Non-interactive UI/006_UI_HallOfFame.rb index ff047a4ee..5fc750343 100644 --- a/Data/Scripts/016_UI/001_Non-interactive UI/006_UI_HallOfFame.rb +++ b/Data/Scripts/016_UI/001_Non-interactive UI/006_UI_HallOfFame.rb @@ -48,8 +48,10 @@ class HallOfFame_Scene @viewport = Viewport.new(0, 0, Graphics.width, Graphics.height) @viewport.z = 99999 # Comment the below line to doesn't use a background - bgFile = @singlerow ? "hallfamebg" : "hallfamebg_multiline" - addBackgroundPlane(@sprites, "bg", bgFile, @viewport) + @sprites["bg"] = IconSprite.new(@viewport) + @sprites["bg"].setBitmap(getHallOfFameBackground) + @sprites["bg"].z = 0 + @sprites["hallbars"] = IconSprite.new(@viewport) @sprites["hallbars"].setBitmap("Graphics/Pictures/hallfamebars") @sprites["overlay"] = BitmapSprite.new(Graphics.width, Graphics.height, @viewport) @@ -73,12 +75,25 @@ class HallOfFame_Scene pbFadeInAndShow(@sprites) { pbUpdate } end + def getHallOfFameBackground + if @singlerow #in the e4 + rank = pbGet(VAR_LEAGUE_REMATCH_TIER) + background = "Graphics/Pictures/HallOfFame/hallfamebg" + else #from PC + rank = $PokemonGlobal.hallOfFame[@hallIndex][:TIER] + background = "Graphics/Pictures/HallOfFame/hallfamebg_multiline" + end + if rank && rank.to_i > 0 + background += "_#{rank}" + end + return background + end + def pbStartScenePC @singlerow = false - pbStartScene @hallIndex = $PokemonGlobal.hallOfFame.size - 1 - echoln $PokemonGlobal.hallOfFame[-1] + pbStartScene @hallEntry = $PokemonGlobal.hallOfFame[-1][:TEAM] createBattlers(false) pbFadeInAndShow(@sprites) { pbUpdate } @@ -136,6 +151,7 @@ class HallOfFame_Scene entryData[:DIFFICULTY] = getDifficulty entryData[:MODE] = getCurrentGameMode() entryData[:DATE] = getCurrentDate() + entryData[:TIER] = getCurrentE4Tier() #Save trainer data (unused for now) entryData[:TRAINER_HAT] = $Trainer.hat @@ -381,7 +397,12 @@ class HallOfFame_Scene def writeWelcomePC overlay = @sprites["overlay"].bitmap overlay.clear - pbDrawTextPositions(overlay, [[_INTL("Entered the Hall of Fame!"), + text = _INTL("Entered the Hall of Fame!") + rank = $PokemonGlobal.hallOfFame[@hallIndex][:TIER] + if rank && rank.to_i > 0 + text += _INTL(" (Rematch Tier {1})",rank.to_i) + end + pbDrawTextPositions(overlay, [[text, Graphics.width / 2, Graphics.height - 80, 2, BASECOLOR, SHADOWCOLOR]]) date = $PokemonGlobal.hallOfFame[@hallIndex][:DATE] @@ -397,11 +418,17 @@ class HallOfFame_Scene pbDrawTextPositions(overlay, [[_INTL("{1}", timeString), x, y, 2, BASECOLOR, SHADOWCOLOR]]) end + def getCurrentDate() currentTime = Time.new return currentTime.year.to_s + "-" + ("%02d" % currentTime.month) + "-" + ("%02d" % currentTime.day) end + def getCurrentE4Tier() + return pbGet(VAR_LEAGUE_REMATCH_TIER) + end + + def getCurrentGameMode() gameMode = "Classic mode" if $game_switches[SWITCH_MODERN_MODE] @@ -563,6 +590,7 @@ class HallOfFame_Scene @battlerIndex = @hallEntry.size - 1 createBattlers(false) end + @sprites["bg"].setBitmap(getHallOfFameBackground) # Change the pokemon @hallEntry[@battlerIndex].play_cry setPokemonSpritesOpacity(@battlerIndex, OPACITY) diff --git a/Data/Scripts/016_UI/021_UI_MoveRelearner.rb b/Data/Scripts/016_UI/021_UI_MoveRelearner.rb index 09fbeb7db..292f79755 100644 --- a/Data/Scripts/016_UI/021_UI_MoveRelearner.rb +++ b/Data/Scripts/016_UI/021_UI_MoveRelearner.rb @@ -24,7 +24,11 @@ class MoveRelearner_Scene @pokemon=pokemon @moves=moves moveCommands=[] - moves.each { |m| moveCommands.push(GameData::Move.get(m).name) } + echoln moves + moves.each do |m| + echoln m.name + moveCommands.push(GameData::Move.get(m).name) + end # Create sprite hash @viewport=Viewport.new(0,0,Graphics.width,Graphics.height) @viewport.z=99999 @@ -169,7 +173,9 @@ class MoveRelearnerScreen end pkmn.learned_moves.each do |move| - moves.push(move) if !moves.include?(move) + move_id = move.is_a?(Symbol) ? move : move.id + next if pkmn.hasMove?(move_id) + moves.push(move_id) if !moves.include?(move_id) end tmoves = [] @@ -178,6 +184,7 @@ class MoveRelearnerScreen tmoves.push(i) if !pkmn.hasMove?(i) && !moves.include?(i) end end + moves = tmoves + moves return moves | [] # remove duplicates end diff --git a/Data/Scripts/052_InfiniteFusion/Constants/CONSTANTS_Switches.rb b/Data/Scripts/052_InfiniteFusion/Constants/CONSTANTS_Switches.rb index 311134ffe..6a6232d46 100644 --- a/Data/Scripts/052_InfiniteFusion/Constants/CONSTANTS_Switches.rb +++ b/Data/Scripts/052_InfiniteFusion/Constants/CONSTANTS_Switches.rb @@ -41,6 +41,7 @@ SWITCH_GOT_BADGE_14 = 44 SWITCH_GOT_BADGE_15 = 45 SWITCH_GOT_BADGE_16 = 50 +SWITCH_LEAGUE_TIER_1= 1155 SWITCH_LEAGUE_TIER_2= 1151 SWITCH_LEAGUE_TIER_3= 1152 SWITCH_LEAGUE_TIER_4= 1153 diff --git a/Data/Scripts/052_InfiniteFusion/Gameplay/Utilities/BattleUtils.rb b/Data/Scripts/052_InfiniteFusion/Gameplay/Utilities/BattleUtils.rb index df0810d23..df2879e76 100644 --- a/Data/Scripts/052_InfiniteFusion/Gameplay/Utilities/BattleUtils.rb +++ b/Data/Scripts/052_InfiniteFusion/Gameplay/Utilities/BattleUtils.rb @@ -43,7 +43,7 @@ end def getCurrentLevelCap() current_max_level = Settings::LEVEL_CAPS[$Trainer.badge_count] current_max_level *= Settings::HARD_MODE_LEVEL_MODIFIER if $game_switches[SWITCH_GAME_DIFFICULTY_HARD] - return current_max_level + return current_max_level.floor end def pokemonExceedsLevelCap(pokemon) diff --git a/Data/Scripts/052_InfiniteFusion/System/GameModes/LegendaryMode.rb b/Data/Scripts/052_InfiniteFusion/System/GameModes/LegendaryMode.rb index 8804f5d8e..352422959 100644 --- a/Data/Scripts/052_InfiniteFusion/System/GameModes/LegendaryMode.rb +++ b/Data/Scripts/052_InfiniteFusion/System/GameModes/LegendaryMode.rb @@ -156,7 +156,7 @@ def addLegendaryEggsToPC() legendaries_species = LEGENDARIES_LIST.shuffle legendaries_species.each do |species| pokemon = Pokemon.new(species, Settings::EGG_LEVEL) - pokemon.steps_to_hatch = pokemon.species_data.hatch_steps + pokemon.steps_to_hatch = pokemon.species_data.hatch_steps/2 pokemon.name = "Egg" $PokemonStorage.pbStoreCaught(pokemon) end diff --git a/Data/Scripts/052_InfiniteFusion/System/MultiSaves.rb b/Data/Scripts/052_InfiniteFusion/System/MultiSaves.rb index f0e6b50b0..e85523e9d 100644 --- a/Data/Scripts/052_InfiniteFusion/System/MultiSaves.rb +++ b/Data/Scripts/052_InfiniteFusion/System/MultiSaves.rb @@ -225,7 +225,7 @@ module SaveData end echoln '' if conversions_to_run.length > 0 save_data[:essentials_version] = Essentials::VERSION - save_data[:game_version] = Settings::GAME_VERSION + save_data[:game_version] = Settings::GAME_VERSION_NUMBER return true end end diff --git a/Data/Scripts/054_PIF_Kanto/EliteFourRematches/EliteFourRematches.rb b/Data/Scripts/054_PIF_Kanto/EliteFourRematches/EliteFourRematches.rb index d960dc7f6..82bf55eb1 100644 --- a/Data/Scripts/054_PIF_Kanto/EliteFourRematches/EliteFourRematches.rb +++ b/Data/Scripts/054_PIF_Kanto/EliteFourRematches/EliteFourRematches.rb @@ -99,7 +99,7 @@ end def list_unlocked_league_tiers unlocked_tiers =[] - unlocked_tiers << 1 if $game_switches[SWITCH_BEAT_THE_LEAGUE] + unlocked_tiers << 1 if $game_switches[SWITCH_LEAGUE_TIER_1] unlocked_tiers << 2 if $game_switches[SWITCH_LEAGUE_TIER_2] unlocked_tiers << 3 if $game_switches[SWITCH_LEAGUE_TIER_3] unlocked_tiers << 4 if $game_switches[SWITCH_LEAGUE_TIER_4] @@ -111,7 +111,7 @@ def select_league_tier #validateE4Data available_tiers = list_unlocked_league_tiers return 0 if available_tiers.empty? - return available_tiers[0] if available_tiers.length == 1 + #return available_tiers[0] if available_tiers.length == 1 available_tiers.reverse! commands = [] @@ -139,17 +139,16 @@ def unlock_new_league_tiers tiers_to_unlock << 3 if current_tier == 2 && $game_switches[SWITCH_BEAT_MT_SILVER] tiers_to_unlock << 4 if current_tier == 3 && $game_variables[VAR_NB_GYM_REMATCHES] >= 16 tiers_to_unlock << 5 if current_tier == 4 - tiers_to_unlock.each do |tier| - next if tier == 1 || tier == 0 - + next if tier == 0 + $game_switches[SWITCH_LEAGUE_TIER_1] = true if tiers_to_unlock.include?(1) $game_switches[SWITCH_LEAGUE_TIER_2] = true if tiers_to_unlock.include?(2) $game_switches[SWITCH_LEAGUE_TIER_3] = true if tiers_to_unlock.include?(3) $game_switches[SWITCH_LEAGUE_TIER_4] = true if tiers_to_unlock.include?(4) $game_switches[SWITCH_LEAGUE_TIER_5] = true if tiers_to_unlock.include?(5) unless currently_unlocked_tiers.include?(tier) pbMEPlay("Key item get") - pbMessage(_INTL("{1} unlocked the \\C[1]Tier {2} League Rematches\\C[0]!",$Trainer.name,tier)) + pbMessage(_INTL("{1} unlocked \\C[1]Tier {2} League Rematches\\C[0]!",$Trainer.name,tier)) end end end diff --git a/Data/Skills.rxdata b/Data/Skills.rxdata index 61cba7ea2..a45219f5e 100644 Binary files a/Data/Skills.rxdata and b/Data/Skills.rxdata differ diff --git a/Data/States.rxdata b/Data/States.rxdata index 0f9b4ae5d..868d49e59 100644 Binary files a/Data/States.rxdata and b/Data/States.rxdata differ diff --git a/Data/System.rxdata b/Data/System.rxdata index 2314c7d6f..46c073911 100644 Binary files a/Data/System.rxdata and b/Data/System.rxdata differ diff --git a/Data/Tilesets.rxdata b/Data/Tilesets.rxdata index 4ff6a8297..07f2aae47 100644 Binary files a/Data/Tilesets.rxdata and b/Data/Tilesets.rxdata differ diff --git a/Data/Weapons.rxdata b/Data/Weapons.rxdata index d9bd35260..c7ea19a7a 100644 Binary files a/Data/Weapons.rxdata and b/Data/Weapons.rxdata differ diff --git a/Data/items.dat b/Data/items.dat index 4271c4991..acf0b61d2 100644 Binary files a/Data/items.dat and b/Data/items.dat differ diff --git a/Data/messages.dat b/Data/messages.dat index ebbee406a..a929f3e74 100644 Binary files a/Data/messages.dat and b/Data/messages.dat differ diff --git a/Data/pokedex/dex.json b/Data/pokedex/dex.json index 6715fdb69..fd21f7474 100644 --- a/Data/pokedex/dex.json +++ b/Data/pokedex/dex.json @@ -784,6 +784,11 @@ "entry": "POKENAME has two independent brains, one shaped like a bulb. When this Pokémon absorbs enough solar energy, the bulb-shaped brain synchronizes with the other, unleashing powerful psychic powers.", "author": "fiordaliso" }, + { + "sprite": "1.409.png", + "entry": "POKENAME burrow into the ground with only their eyes and bulbs exposed. Their bulbs refract light in small sparkles to resemble the spines of a cactus and keep away predators.", + "author": "wildheartrazorfangs" + }, { "sprite": "1.41.png", "entry": "POKENAME sleep on the sides of caves during the day, exposing only their bulbs to sunlight. At night, they gather berries and plant them near their caves for easier access.", @@ -1234,6 +1239,11 @@ "entry": "In desperate moments, it won't hesitate to use unwitting Caterpie as makeshift clubs for self-defense. It tries not to damage its impromptu weapon too much.", "author": "sk372" }, + { + "sprite": "10.106.png", + "entry": "POKENAME is a patient and strategic fighter. It uses String Shot to slow its opponents, and once they're ensnared in its silk, it strikes with crushing kicks.", + "author": "fiordaliso" + }, { "sprite": "10.11.png", "entry": "This unfortunate fusion is a Caterpie who failed to fully pupate, leaving its soft head exposed and the rest of its chrysalis body unable to move.", @@ -1309,6 +1319,11 @@ "entry": "It releases an appetizing scent to lure prey to its web. After snugly wrapping it in webbing, POKENAME injects the trapped prey with poison to melt it down.", "author": "megashit100000" }, + { + "sprite": "10.17.png", + "entry": "POKENAME creates nets out of silk to carry berries to its nest. It rarely shares with its siblings because of its insatiable appetite.", + "author": "quackquackattack" + }, { "sprite": "10.170.png", "entry": "The lures of POKENAME are filled with silk. They get larger as it ages and grows closer to evolution.", @@ -1409,6 +1424,11 @@ "entry": "Considered weak by many, POKENAME spends all day training, hoping to grow stronger. It tends to pick fights against opponents far stronger than it.", "author": "jackythewannabe" }, + { + "sprite": "10.239.png", + "entry": "Deep within forests, POKENAME group up in areas where Electric-type Pokémon previously were. They feed off of the static left behind from them.", + "author": "dyanz0" + }, { "sprite": "10.23a.png", "entry": "POKENAME can be seen in forests using its silk to climb trees and eat bird Pokémon eggs. If hungry, it will also immobilize unaware prey from behind before attacking them.", @@ -2294,6 +2314,11 @@ "entry": "POKENAME is less volatile than the sum of its parts - its larger size and less explosive nature compared to an unfused Voltorb have even had some look into using it as a living, industrial-capacity battery.", "author": "bee4082" }, + { + "sprite": "100.473.png", + "entry": "Manufacturers have invented special machinery to process the scales of POKENAME into Poké Balls. Its rare purple scales are one of the only materials that can be crafted into Master Balls, making them highly sought after in the industry.", + "author": "soup1900" + }, { "sprite": "100.48.png", "entry": "POKENAME's fur crackles with static as it moves. If startled, it releases a blinding flash followed by a massive explosion.", @@ -2539,6 +2564,11 @@ "entry": "According to legend, POKENAME were once gems that rested on the crown of an angelic Pokémon, and its hammer-like bodies are pieces of said crown.", "author": "sabrina_the_witch" }, + { + "sprite": "101.332.png", + "entry": "POKENAME can make its snow-white fur shine so brightly that it completely blinds its foe, leaving them unprepared for its powerful attacks. It is said to hold enough electrical energy within its body to power an entire neighborhood on its own.", + "author": "fiordaliso" + }, { "sprite": "101.339.png", "entry": "If one comes across an POKENAME and its fuse is burning, they should run. This signifies it is about to self-destruct.", @@ -2604,11 +2634,6 @@ "entry": "It sings for hours without stopping, enjoying its melodic rituals. If interrupted mid-verse, it throws a tantrum that often results in an explosive reaction.", "author": ".izik" }, - { - "sprite": "101.411.png", - "entry": "POKENAME searches for the strongest Poké Ball they can find. Even if it holds an Ultra Ball, it keeps looking, suggesting a more powerful ball exists. ", - "author": "atlas333" - }, { "sprite": "101.42.png", "entry": "Groups of POKENAME inhabit abandoned quarries, where they consume unmonitored dynamite. This dangerous habit adds to their volatile reputation.", @@ -2654,6 +2679,11 @@ "entry": "The mushroom on its body resembles a Poké Ball. When startled, it releases a cloud of spores that cause mild electrical burns upon contact.", "author": ".izik" }, + { + "sprite": "101.473.png", + "entry": "The different types of scales of POKENAME discharge a different amount of electricity, with the Master Ball-looking scales giving the greatest zap. Many people have been obliterated trying to harvest these scales from its body.", + "author": "soup1900" + }, { "sprite": "101.483.png", "entry": "POKENAME uses the large amount of energy stored in its wand to summon massive explosions. It will blow up anything it can find with terrifying glee. ", @@ -3324,6 +3354,11 @@ "entry": "The head on its tail grows in hot, humid climates. When they drop the head, it will go on to become an Exeggveon.", "author": "melodydelune" }, + { + "sprite": "103.35.png", + "entry": "On every night of a full moon, POKENAME will gather to stare longingly towards the sky. Eggs remind them of the moon; gifting a POKENAME an egg is the easiest way to earn one's friendship.", + "author": "griddle" + }, { "sprite": "103.36.png", "entry": "POKENAME are most active on the nights of a full moon under a clear night sky. They prefer to be far away from noisy, urban environments. If uncomfortable, its many heads take on a disgruntled expression.", @@ -3404,6 +3439,11 @@ "entry": "The skull it carries is a tragic keepsake it cannot even wear properly. Its large size and appetite is theorized to be the result of using food as a coping mechanism for its sadness.", "author": "sk372" }, + { + "sprite": "104.145.png", + "entry": "Rarely seen in the wild, POKENAME carries the bones of long-departed members of its species within its wings. Some theorize it has a practical benefit for increasing its electrical prowess, while others think the reason is more spiritual.", + "author": "sk372" + }, { "sprite": "104.146.png", "entry": "POKENAME is found in the most inhospitable deserts, circling over any life it sees. While it is usually viewed as an omen of death, it is actually trying to use its shadow to usher the lost creature below it towards safety.", @@ -4209,6 +4249,11 @@ "entry": "POKENAME whips its poisonous tail with precision, mimicking the kickboxing style of trained fighters it has observed. Its kicks can leave a lingering, venomous sting.", "author": "frokachu" }, + { + "sprite": "106.257.png", + "entry": "POKENAME likes to sit still for long periods of time, using its long legs to mimic roots. However, if danger comes close, it will spring to life to unleash a flurry of kicks.", + "author": "bee4082" + }, { "sprite": "106.306.png", "entry": "Its legs and skull are as hard as diamond, breaking anything it strikes at. Though usually slow, some can suddenly reach speeds of over 450 mph.", @@ -4389,11 +4434,6 @@ "entry": "It is a skilled, yet unfair fighter. If it finds that it is losing a match, it will bite its opponent and pummel them while they're restrained.", "author": "char_latte3412" }, - { - "sprite": "107.202.png", - "entry": "In battle, POKENAME prefers to weather its opponent's attack before retaliating with devastating power. It's best to avoid engaging one altogether.", - "author": "atlas333" - }, { "sprite": "107.211.png", "entry": "POKENAME specializes in quick punching jabs to subdue opponents. If it cannot end a match with a punch, it may use a venomous barb to whittle down the opponent.", @@ -4439,11 +4479,6 @@ "entry": "Its hair acts like a punching bag which POKENAME uses to train its punches for most of the day. If it is struggling in a fight, it will swing its hair wildly trying to knock away its opponent with extreme force.", "author": "mistymagius" }, - { - "sprite": "107.301.png", - "entry": "POKENAME has developed an outer layer of padding that almost resembles a boxing glove. Pairs of POKENAME can be found in competitions attempting to knock the other out.", - "author": "atlas333" - }, { "sprite": "107.326.png", "entry": "POKENAME's gloves contain powerful magnets, propelling them forward once they've locked onto a foe. POKENAME floats back and forth as it waits for its opponent to strike, magnetically repelling itself to dodge before delivering a devastating counter.", @@ -4474,6 +4509,11 @@ "entry": "A pugilistic pup with a penchant for punches, POKENAME powers up its aura through fisticuffs. In particularly intense training bouts or battles, its fists may even begin emitting aura with each swing.", "author": "sk372" }, + { + "sprite": "107.386.png", + "entry": "A common myth is that the first person to discover this fusion suffered a fatal blow to the head immediately on release. POKENAME are extremely aggressive if untrained and usually require their hands tied to prevent incidents.", + "author": "jangodiot" + }, { "sprite": "107.39.png", "entry": "Despite its powerful fighting ability, POKENAME is often underestimated by larger Pokémon. After every victory, it chants its own battle cry.", @@ -4514,6 +4554,11 @@ "entry": "POKENAME's boxing style is unrefined, consisting of wild swinging of its arms until it hits something. It hydrates itself often before and after battle, to the point of excess, leaving it bloated and slower-moving for a time.", "author": "sk372" }, + { + "sprite": "107.5.png", + "entry": "POKENAME is a fierce brawler that loves dueling to prove its punching prowess. When it's close to being knocked out, the flame on its tail burns brighter than ever as it unleashes its full strength.", + "author": "fiordaliso" + }, { "sprite": "107.75.png", "entry": "POKENAME often taunts an opponent by beating its chest, daring a foe to take the first hit. Those that fall for the gambit find themselves hit by a punishing counter from POKENAME's four fists.", @@ -5754,11 +5799,6 @@ "entry": "POKENAME are simple-minded Pokémon, rather using brute strength than employing a thought-out strategy. They produce a noxious gas that causes severe skin and lung damage.", "author": "mistymagius" }, - { - "sprite": "110.315.png", - "entry": "POKENAME has surpassed the need for the body and is made up of nothing but poisonous gas. Supposedly its poison is strong enough to kill a god.", - "author": "atlas333" - }, { "sprite": "110.321.png", "entry": "POKENAME creates a cloud of noxious gas to fly around its region, searching for worthy opponents to fight. It battles using tricky strategies, including blasting disorienting clouds from its tail and seemingly disappearing into the gas.", @@ -6409,6 +6449,11 @@ "entry": "Its horn helps this Pokémon burrow through dirt at high speeds. It can dig up to 10 miles deep in a single day.", "author": "melodydelune" }, + { + "sprite": "112.35.png", + "entry": "POKENAME's cones reflect moonlight as it dances under the moon. It likes to climb high up mountains and leap off to crash into the ground far below. The descending glow is often mistaken for spacecraft or Minior.", + "author": "pjporwoll" + }, { "sprite": "112.36.png", "entry": "On nights of a full moon, POKENAME's drills mysteriously begin spinning in reverse on their own. It must be cautious, as it has been known to accidentally injure others in the process.", @@ -6674,6 +6719,11 @@ "entry": "When it sees someone in danger, it panics, letting out a loud cry. This call alerts others to the crisis, ensuring help arrives quickly.", "author": ".izik" }, + { + "sprite": "113.25.png", + "entry": "Whenever POKENAME discharges electricity from its electric sacs, it needs to be careful not to accidentally shock its own egg. Otherwise, it may be roasted and become inedible.", + "author": "soup1900" + }, { "sprite": "113.250.png", "entry": "Old folktales claim that consuming the egg held in POKENAME's pouch can bring one back from the brink of death, but those who eat it are transformed into something entirely new.", @@ -6994,6 +7044,11 @@ "entry": "POKENAME's eggs are excellent for combating a lot of minor ailments. Ironically, they are ineffective at fighting headaches, which POKENAME constantly suffers from.", "author": "sk372" }, + { + "sprite": "113.6.png", + "entry": "POKENAME is a rare sight, as it is only seen living on high mountain peaks. A compassionate Pokémon, it appears to lost explorers, sharing its delicious eggs and helping guide them back to safety.", + "author": "mepp." + }, { "sprite": "113.64.png", "entry": "POKENAME releases gentle waves of psychic energy that soothe nausea and other discomforts. Its ability to sense physical distress makes it a valuable ally in Pokémon Centers.", @@ -7559,6 +7614,11 @@ "entry": "Part of POKENAME divided and became its young. The child can only transform its face at first, so the parent tutors it in the ways of shapeshifting until its mimicry can become perfect.", "author": "sk372" }, + { + "sprite": "115.145.png", + "entry": "POKENAME encourages a free spirit in its child, teaching it to roam fast, far and wide. Though the child has little electrical strength yet, occasional small bolts of lightning spark from its wings when it practices flight.", + "author": "sk372" + }, { "sprite": "115.149.png", "entry": "POKENAME are caring and mighty, often aiding those in trouble and raising their young, who will carry on their legacy. But harm their young, and their gentle nature shatters, unleashing a storm of rage upon all.", @@ -7676,7 +7736,7 @@ }, { "sprite": "115.307.png", - "entry": "It is hesitant to share its mochi with others, as it did not have any siblings growing up. Pokémon who are gentle with it find that it is caring but shy.", + "entry": "It is hesitant to share its food with others, as it did not have any siblings growing up. Pokémon who are gentle with it find that it is caring but shy.", "author": "quackquackattack" }, { @@ -7811,8 +7871,8 @@ }, { "sprite": "115.496.png", - "entry": "Despite POKENAME having a pouch, the little one enjoys the view from atop its parent's head. The two dance together whenever they hear music. ", - "author": "atlas333" + "entry": "POKENAME's child struggles with long swims, so it carries it safely on its lily pad. POKENAME has also been seen rescuing other small Pokémon from drowning.", + "author": ".izik" }, { "sprite": "115.498.png", @@ -7834,6 +7894,11 @@ "entry": "POKENAME are fiercely territorial, and spend their entire lives training to defend their children. Many threats entering its territory would see the POKENAME's powerful form rapidly approaching, and then eternal nothingness, in the blink of an eye.", "author": "jemeremmazza" }, + { + "sprite": "115.71.png", + "entry": "The child is immune to POKENAME's digestive fluids, so the inside of the parent's body is the safest place for it to be. POKENAME protects its young with a flurry of whipping vines and poisonous powders.", + "author": "sk372" + }, { "sprite": "115.84.png", "entry": "The creature nestled between POKENAME's two heads is its child, which burrows comfortably in POKENAME's feathers as it stomps around at high speeds.", @@ -8029,6 +8094,11 @@ "entry": "POKENAME rolls backward slowly while sleeping in deep waters. If it has a bad dream, it unintentionally expels a massive burst of bubbles, propelling itself at high speed.", "author": ".izik" }, + { + "sprite": "116.404.png", + "entry": "POKENAME floats through the ocean eating plankton and other microscopic critters. When threatened, it releases a Smokescreen full of spores that irritate the mouths and gills of predators.", + "author": "chibitales" + }, { "sprite": "116.405.png", "entry": "It is thought to form when ocean ecosystems are damaged by large amounts of trash pollution. The recent increase in their numbers is considered to be a dangerous sign.", @@ -8814,6 +8884,11 @@ "entry": "POKENAME lies at the bottom of the ocean, swimming around looking for sea grass. When the water current gets too strong, it will anchor itself to a nearby rock with its long tail.", "author": "mistymagius" }, + { + "sprite": "119.194.png", + "entry": "Great shoals of POKENAME gather every 3 years, to swim upstream to mate and lay their eggs. They have great strength, but little coordination, so are constantly bumping into each other and getting pushed out of the water, making rivers look alive.", + "author": "whatagooddaytodie" + }, { "sprite": "119.212.png", "entry": "Despite its heavy, durable body, POKENAME is an adept swimmer. If an obstacle gets in its way, regardless if it's a human, boulder, or Pokémon, this species' titanium-tough horns break right through.", @@ -9149,6 +9224,11 @@ "entry": "POKENAME can inject a special venom that causes drowsiness, capable of immobilizing even large Pokémon. A single sting can render opponents helpless in moments.", "author": "astral_1447" }, + { + "sprite": "12.158.png", + "entry": "POKENAME is a carefree and energetic creature that spends much of its day playing by splashing water at other Pokémon. With a single flap of its wings, it can easily lift into the air, leaving behind a fine silvery dust.", + "author": "fiordaliso" + }, { "sprite": "12.16.png", "entry": "POKENAME releases a shimmering dust from its wings. This dust causes drowsiness whenever it is inhaled, so research scientists wear masks to study the Pokémon.", @@ -9194,6 +9274,11 @@ "entry": "POKENAME zips towards Bellsprouts and rips them from the ground to secure its meal. Whenever it flies by, it creates a cloud of powder that makes other Pokémon sleepy.", "author": "quackquackattack" }, + { + "sprite": "12.18.png", + "entry": "Its compound eyes allow POKENAME to spot any movement beneath it, letting it pinpoint prey with precision. As it glides through the air, it scatters a trail of silvery dust that enhances the grace of its flight.", + "author": "fiordaliso" + }, { "sprite": "12.182.png", "entry": "POKENAME is primarily active at night where it dances in the moonlight. Its eyes light up when it senses someone watching it.", @@ -9744,6 +9829,11 @@ "entry": "POKENAME's ruby core gleams brightly under moonlight. It sleeps curled on ocean rocks, using its tail as a pillow against its gem-like head.", "author": ".izik" }, + { + "sprite": "120.194.png", + "entry": "POKENAME buries its body in mud, leaving only the top of its head showing, looking like a Staryu. When predatory Pokémon try to snap it up, POKENAME emerges from the mud, disorientating the predator and scaring them off.", + "author": "whatagooddaytodie" + }, { "sprite": "120.215.png", "entry": "On overcast nights, POKENAME uses its gems to light the way for lost travelers. Many consider it to be an attendant of Arceus due to its impeccable timing.", @@ -10084,6 +10174,11 @@ "entry": "Its body emits a cosmic energy said to be the concentrated essence of the stars. Those who gaze in its crystals are forever entranced by their beauty.", "author": "volvonovic" }, + { + "sprite": "121.458.png", + "entry": "POKENAME will regularly appear before lost travelers in the desert to guide them to water and shelter. However, its sinister appearance often causes it to frighten those it intends to help.", + "author": "griddle" + }, { "sprite": "121.465.png", "entry": "Often found protecting coral reefs, POKENAME are only visible due to their glowing gems. On clear nights, they swim to the surface, challenging any who cross their path.", @@ -10159,6 +10254,11 @@ "entry": "POKENAME playfully blows bubbles at others to get their attention. Once it does, it attempts to dazzle them with displays of bubbles blown into specific shapes and objects.", "author": "sk372" }, + { + "sprite": "122.12.png", + "entry": "POKENAME enjoys putting on performances for its Trainer. One such performance is where it flies in a confined space pretending to be trapped in a box.", + "author": "quackquackattack" + }, { "sprite": "122.122g.png", "entry": "POKENAME has trained its psychic abilities to an even finer point and has learned the ability to move its barriers around. Because of this, it's often spotted flying through the air.", @@ -10254,6 +10354,11 @@ "entry": "Despite its appearance, POKENAME prefers to live underground. Some people claim it whispers suggestions to them when no one else is around.", "author": "gp423" }, + { + "sprite": "122.194.png", + "entry": "POKENAME drifts through water as though it were thick mud. Prolonged staring causes onlookers to believe the same, tiring themselves as they swim. Exhausted victims sink, where POKENAME waits to feast.", + "author": "whatagooddaytodie" + }, { "sprite": "122.195.png", "entry": "POKENAME holds a protective barrier in front of itself at all times. However, it doesn't turn to face potential dangers, making the barrier useless. ", @@ -10284,6 +10389,11 @@ "entry": "POKENAME's tunnels are riddled with trap holes for those who try to infiltrate its home. It uses invisible walls to navigate its perilous tunnels, ensuring that only those who know the way can escape unharmed.", "author": ".izik" }, + { + "sprite": "122.210.png", + "entry": "Although many make fun of the silly appearance of this Pokémon, POKENAME care little about the laughs at their expense. They encourage the jokes and only strive to make people happy.", + "author": "jangodiot" + }, { "sprite": "122.213.png", "entry": "With its hands, POKENAME can create such robust and invisible barriers that it is used by some companies and even government agencies for security.", @@ -10769,6 +10879,11 @@ "entry": "POKENAME is an extraordinary fighter, able to maintain perfect balance even when upside down. By spinning its body at tremendous speeds, it wields its scythes to generate a deadly tornado of blades that leaves no foe unscathed.", "author": "fiordaliso" }, + { + "sprite": "123.26.png", + "entry": "By infusing its scythe-like tail with electricity, POKENAME can make it float briefly and ride it with flawless balance, darting between the trees. It devotes much of its time to consuming berries, boosting its strength and restoring its vitality.", + "author": "fiordaliso" + }, { "sprite": "123.266.png", "entry": "POKENAME lives in thick jungles, cutting down thick vines using its scythes to wrap around itself. While not strong enough to fly, POKENAME will rapidly beat its wings to cool itself down during the summer.", @@ -10861,7 +10976,7 @@ }, { "sprite": "123.384.png", - "entry": "POKENAME are exceedingly energetic, and train together in the mountains to sharpen their blades. They use mysterious waves called auras to determine whether to engage with opponents.", + "entry": "POKENAME are exceedingly energetic and train together in the mountains to sharpen their blades. They use mysterious waves called auras to determine whether to engage with opponents.", "author": "stephanyx" }, { @@ -11049,6 +11164,11 @@ "entry": "POKENAME are so eager about dancing that they are considered a nuisance.They will block paths and dance until they are satisfied.", "author": "birchbot" }, + { + "sprite": "124.194.png", + "entry": "For as long as records show, POKENAME have lived alongside humans. It is believed that they evolved to consume a similar diet, as anatomical studies have shown similarities to filter feeders that consume mud and silt from rivers.", + "author": "whatagooddaytodie" + }, { "sprite": "124.196.png", "entry": "POKENAME's mane is made up of silky hairs. It only trusts Trainers that can help it maintain its appearance.", @@ -11534,6 +11654,11 @@ "entry": "It is said that if an POKENAME starts following you, you are doomed to be struck by lightning in the near future.", "author": "staghorn" }, + { + "sprite": "125.330.png", + "entry": "POKENAME charges its blades with electricity to slice through its opponent's tough defenses. Its metallic body protects it from corrosive acids that the opponent may use.", + "author": "quackquackattack" + }, { "sprite": "125.339.png", "entry": "They can use their feelers as cables to absorb electricity. POKENAME will often stand on rooftops and act like lightning rods during storms.", @@ -12334,6 +12459,11 @@ "entry": "POKENAME can't move any of its body parts, as it can only watch angrily. Beware, because when they finally evolve, they'll remember everything with a photographic memory and will look to destroy anything that angered them during this stage.", "author": "epping_forest" }, + { + "sprite": "128.142.png", + "entry": "An infamously violent Pokémon, POKENAME uses its pronged tail to anchor itself while it slams into trees to knock them over. It preys on the tree-dwelling Pokémon that scatter from the branches afterwards.", + "author": "bee4082" + }, { "sprite": "128.143.png", "entry": "POKENAME is extremely temperamental and territorial, but far too lazy to actually attack anyone. It simply glares at interlopers from afar.", @@ -12519,6 +12649,11 @@ "entry": "While POKENAME's sting isn't life-threatening, its venom can cause excruciating pain lasting over three days. Unless provoked, it only seems to target Tauros and Miltank.", "author": "mistymagius" }, + { + "sprite": "128.494.png", + "entry": "While usually found on farms, farmers prefer other Pokémon for field work. POKENAME has little patience and may abandon tasks suddenly, lashing out in a fit of rage.", + "author": "jangodiot" + }, { "sprite": "128.495.png", "entry": "The garden atop POKENAME are made up of seeds from whatever they eat. The hump stores rainwater caught, keeping both POKENAME and their plants nourished.", @@ -12699,6 +12834,11 @@ "entry": "POKENAME is commonly seen around tall waterfalls, using its claws to climb to the top. However, it always gets tired before it can reach its goal.", "author": "staghorn" }, + { + "sprite": "129.211.png", + "entry": "POKENAME spray water to launch into the air, flailing wildly to try to wield their small spines against any perceived threat. Unfortunately, this tactic often leaves them stranded on land, forcing them to awkwardly tumble back into the water.", + "author": "wildheartrazorfangs" + }, { "sprite": "129.218.png", "entry": "POKENAME's scales are so hot that if they stray from the water for too long, they'll lose their fish-like shape and become a molten puddle until returned to the water.", @@ -12749,6 +12889,11 @@ "entry": "The glass bulb on POKENAME's back usually has baby Magikarp residing in them. Legends say the water can grant eternal life as no one has ever seen a Magikarp die in the bulb.", "author": "teatedtiten" }, + { + "sprite": "129.32.png", + "entry": "POKENAME's horn is blunted, severely hampering its combat use. It seeks out others of its kind so that it has safety, but often ends up tangled in reeds or kelp.", + "author": "pjporwoll" + }, { "sprite": "129.320.png", "entry": "When POKENAME defends its territory, it can be seen flailing its arms about in an attempt to be intimidating. This attempt is usually unsuccessful.", @@ -12779,6 +12924,11 @@ "entry": "POKENAME are often employed at seafood restaurants, particularly those that serve Magikarp cuisine. Their skill with the blade means that every meal is perfectly cut and portioned.", "author": "sk372" }, + { + "sprite": "129.33.png", + "entry": "POKENAME wiggles its ears and swings its tail in a threatening display to ward off opponents. Once the threat has passed, it collapses from exerting so much energy.", + "author": "pjporwoll" + }, { "sprite": "129.330.png", "entry": "POKENAME wishes to take up a blade in defense of the sea. Still, its youth hinders it from seeing real combat.", @@ -12794,6 +12944,16 @@ "entry": "Though weak in terms of power and speed, they are able to live in any body of water. They use their long whiskers to feel their surroundings.", "author": "melodydelune" }, + { + "sprite": "129.34.png", + "entry": "POKENAME slaps the surface of the water to create loud cracking sounds that frighten even fierce predators away. If it is attacked, it dives into the water and speedily swims away.", + "author": "pjporwoll" + }, + { + "sprite": "129.340.png", + "entry": "POKENAME are so rare that very few fishermen have ever laid eyes upon one. This prized fish is still highly sought after, as its meat is praised for its luxuriously exquisite flavor.", + "author": "mepp." + }, { "sprite": "129.371.png", "entry": "POKENAME is a mischievous Pokémon said to steal keys. It is believed that the keys it carries have never successfully opened any lock.", @@ -12844,6 +13004,11 @@ "entry": "Found in the mud of drained lakebeds, POKENAME is considered one of the most pitiful Pokémon in terms of both strength and appearance. Even as food, they are considered bland and tacky at best.", "author": "sk372" }, + { + "sprite": "129.434.png", + "entry": "POKENAME loves to flop around on abandoned beaches full of trash and other litter. It was forced to adapt to its surroundings due to its weak body constantly getting stuck in discarded plastic bags.", + "author": "sakuraneko" + }, { "sprite": "129.436.png", "entry": "Though it has ferocious, aggressive tendencies, POKENAME's small teeth are incapable of piercing skin. Unable to properly hunt as a result, it bitterly resorts to being an undersea scavenger instead.", @@ -13024,6 +13189,11 @@ "entry": "POKENAME wield Weedle as weaponry, flailing them around with little regard for their safety. Its thick carapace protects it's from the Weedle's sting.", "author": "mistymagius" }, + { + "sprite": "13.106.png", + "entry": "The tips of POKENAME's feet bear venomous spikes, which it uses to weaken foes struck by its kicks. A highly competitive Pokémon, it constantly trains to better itself.", + "author": "fiordaliso" + }, { "sprite": "13.11.png", "entry": "The spike on its head holds an incredibly potent poison. As it gets closer to evolution, the poison becomes more deadly.", @@ -13544,6 +13714,11 @@ "entry": "Old sailors' tales speak of a ferocious Pokémon able to cleave through the bow of a vessel with just a lash of its tail, its fangs large enough to rend a dozen sailors in a single bite. This Pokémon is believed to be a juvenile POKENAME.", "author": "kingd8" }, + { + "sprite": "130.149.png", + "entry": "POKENAME goes around oceans to destroy ships and strand sailors. Its rampages at sea create violent and stormy waters that can sink ships and flood nearby islands.", + "author": "soup1900" + }, { "sprite": "130.154.png", "entry": "Though its size may be huge, these giants are found near rivers and lakes where they guard sections and demand tolls to pass. Once the toll is paid they expand the foam around their neck to create a platform for others to climb on and ride across.", @@ -13659,6 +13834,11 @@ "entry": "POKENAME can destroy entire cities with a single swing. Many of the deadliest warmongers in ancient myth are depicted wielding it, but whether they controlled it or it controlled them remains unknown.", "author": "h0bojoe" }, + { + "sprite": "130.33.png", + "entry": "POKENAME ranges along the coast of oceans, amphibiously able to nest along the shore or in underwater caves. It rams boats with its crest, which is harder than diamond, seeking to sink what it perceives as challengers to its territory.", + "author": "pjporwoll" + }, { "sprite": "130.330.png", "entry": "POKENAME dreams of one day becoming like the heroes who protect the weak. Now, though, it fishes out Water-type Pokémon in hopes of a big catch.", @@ -13674,6 +13854,11 @@ "entry": "POKENAME is a fearsome sea predator that attacks ships during the stormiest nights. Its massive, muscular body can deliver devastating blows, while its sharp claws are strong enough to pierce even metal hulls. It is known to be a solitary hunter.", "author": "fiordaliso" }, + { + "sprite": "130.334.png", + "entry": "POKENAME lives on beaches where they hunt for food at sea and rest in the sand. When its territory is threatened, POKENAME can create hurricane-force winds with its wings and will pursue aggressors relentlessly.", + "author": "hinochi." + }, { "sprite": "130.336.png", "entry": "A sudden mutation caused POKENAME to sprout wings, driven by its desire to spread its rage further in the sky and land. When its not rampaging, it slumbers in deep ocean canyons.", @@ -13724,6 +13909,11 @@ "entry": "A Mimikyu disguising itself as a Gyarados. But to go one step further, it has made itself an inflatable Trainer, as an attempt to blend into society.", "author": "funkytomate" }, + { + "sprite": "130.430.png", + "entry": "POKENAME dancing is a sign of territorial aggression, a warning to any who see it. One should back away slowly as it dances, lest one wants to contend with flame, scalding water and a razor-sharp beak.", + "author": "sk372" + }, { "sprite": "130.437.png", "entry": "It has a most vicious, destructive nature towards anything that catches its ire, even slightly. With its speed and strength, it has torn entire ships to shreds in seconds.", @@ -14394,6 +14584,11 @@ "entry": "POKENAME transforms part of its body into a bone, which it flings with incredible force. It controls the bone mid-flight, ensuring deadly precision with every throw.", "author": ".izik" }, + { + "sprite": "132.106.png", + "entry": "POKENAME has legs which can stretch up to three times as far as a Hitmonlee's. POKENAME likes to hold competitions amongst themselves to see whose leg is stronger without transforming it.", + "author": "jangodiot" + }, { "sprite": "132.108.png", "entry": "It flings the ooze from its tongue at enemies, creating a sticky trap. This adhesive substance severely hinders movement, giving it an advantage.", @@ -14589,6 +14784,16 @@ "entry": "With its ability to transform, POKENAME was at first expected to be a masterful painter. Unfortunately, every single face it paints resembles its own.", "author": "strawbearycandy" }, + { + "sprite": "132.236.png", + "entry": "POKENAME loves to fight and spar with other Pokémon, but it usually doesn't play fair and only enjoys fights if they go how it wants them to. Unfortunately, it can't actually become really strong until it evolves, so it fiercely trains until it can.", + "author": "jangodiot" + }, + { + "sprite": "132.237.png", + "entry": "While its counterparts try to avoid transformation, POKENAME embraces it. Partly because it has to, as it can't actually spin on its head, but also because it likes to find ways to become faster and faster at spinning.", + "author": "jangodiot" + }, { "sprite": "132.24.png", "entry": "Its true face is located on its hood. This unusual anatomy confuses attackers and helps it gain the upper hand.", @@ -14649,6 +14854,16 @@ "entry": "It swings its arms to scatter drops of pink slime around its den, marking its territory. The sticky residue serves as a warning to intruders.", "author": ".izik" }, + { + "sprite": "132.285.png", + "entry": "In the past, foreign ambassadors kept POKENAME for diplomacy. By sensing emotions and mirroring them with its form and expressions, it conveyed intent beyond words, ensuring meaning was clear even when languages could not align.", + "author": "whatagooddaytodie" + }, + { + "sprite": "132.285a.png", + "entry": "In the past, foreign ambassadors kept POKENAME for diplomacy. By sensing emotions and mirroring them with its form, it conveyed intent beyond words, ensuring meaning was clear even when languages could not align. Young POKENAME were better at this.", + "author": "whatagooddaytodie" + }, { "sprite": "132.286.png", "entry": "POKENAME's gelatinous body jiggles rapidly whenever it channels its psychic power. The intensity of its vibrations increases the stronger its emotions become.", @@ -14994,6 +15209,11 @@ "entry": "Their blobby bodies reside around waste facilities, which causes grime and trash to stick to their bodies. When introduced to a bit of Quick Powder, they become more viscous and aerodynamic, making them faster when running.", "author": "quackquackattack" }, + { + "sprite": "132.516.png", + "entry": "POKENAME's sticky wings are quite heavy and make flying difficult. Prone to getting stuck after landing in all sorts of strange positions, it relies on humans to help get back on their feet.", + "author": "mepp." + }, { "sprite": "132.53.png", "entry": "It uses its slimy form to squeeze into safes and vaults, lounging among the money. This behavior makes it a notorious figure among thieves.", @@ -15649,6 +15869,11 @@ "entry": "POKENAME lives near waterfalls and enjoys playing in the spray. To attract the opposite gender, they try to blow the biggest bubbles possible.", "author": "spagalapof" }, + { + "sprite": "134.271e.png", + "entry": "POKENAME's body is made of water vapour and seagrass. Despite this, it cannot live underwater and migrates to shallow lakes to hunt. It grows flower buds and stones within its body.", + "author": "operativevalkyrie" + }, { "sprite": "134.272.png", "entry": "It can freeze or melt surrounding water at will. It's not a great swimmer, so it prefers freezing water under its paws to walk on it instead.", @@ -15734,6 +15959,11 @@ "entry": "POKENAME produces a sweet dye that bakers mix into dessert pastries. It loves to help pastry chefs with the baking process, so some bakeries also have it knead dough.", "author": "quackquackattack" }, + { + "sprite": "134.5.png", + "entry": "POKENAME is a superb swimmer that propels itself through even stormy seas with its powerful tail. Within its territory, it drives out rivals using both Fire and Water-type attacks.", + "author": "fiordaliso" + }, { "sprite": "134.50.png", "entry": "POKENAME's skills in water manipulation and tilling are a great combo for farming. Many use it to grow crops effortlessly.", @@ -15894,6 +16124,11 @@ "entry": "When a Thunder Stone is loaded into the shell on POKENAME's back, its movements become lightning-quick. Otherwise, it is content to slowly graze on nectar and fruit.", "author": ".realthree" }, + { + "sprite": "135.349.png", + "entry": "Fire and lightning churn together within POKENAME's body, giving it powerful offensive capabilities. Any point struck by the lightning bolts it generates instantly ignites with white-hot flames.", + "author": "sk372" + }, { "sprite": "135.351.png", "entry": "The icy needles that have formed from POKENAME's shoulders conduct electricity in and out of its body. Touching one of the purple spires can result in a shock of over 200,000 volts.", @@ -16534,6 +16769,11 @@ "entry": "The first version of this artificial Pokémon was designed with various updates and a greater emphasis on Porygon data as its core system. As a result, it has far higher fidelity but is very uncanny and not quite able to imitate a Zorua organically.", "author": "elfail0" }, + { + "sprite": "137.405.png", + "entry": "This Pokémon acts as one of those desktop pet applications that were popular a few years back. It requires consistent attention, otherwise it starts deleting applications and files you pay attention to that are not itself.", + "author": "jangodiot" + }, { "sprite": "137.406.png", "entry": "Early studies indicate that POKENAME could survive and move around in the vacuum of space. However, as the long-term effects that it could have on them has yet to be properly evaluated, POKENAME has not yet been into the cosmos.", @@ -17429,6 +17669,11 @@ "entry": "POKENAME scurries along the shallow beach waters, digging around the sands for food. Though it can breach the water and move on land, lingering out of water too long results in its top half drying out and becoming brittle.", "author": "sk372" }, + { + "sprite": "140.190.png", + "entry": "POKENAME is called the “underdog of the fossil world.” Though small and often underestimated, it uses its agile tail to outwit larger foes, flipping them into the mud. Fossil records show it once thrived by surviving where others perished.", + "author": "whatagooddaytodie" + }, { "sprite": "140.197.png", "entry": "With its iron-hard shell, POKENAME blocks incoming attacks while its night vision–enhanced eyes glare its foes into submission. Due to their sensitivity to sunlight, Trainers' sunglasses often go missing.", @@ -17769,11 +18014,6 @@ "entry": "It lives in hot, dry places of the world because its body rapidly absorbs water. Without a Passho Berry to dry its skin, its wings become too waterlogged to fly.", "author": "quackquackattack" }, - { - "sprite": "142.411.png", - "entry": "POKENAME carries a piece of amber with it at all times. This seems to be all it has of its past life.", - "author": "atlas333" - }, { "sprite": "142.414.png", "entry": "POKENAME is a bloodthirsty hunter, using its sharp elbow swords to slice the throat of prey. However, it usually uses them to crush berries, as POKENAME is too small to hunt big prey.", @@ -17934,6 +18174,11 @@ "entry": "POKENAME is considered a gourmand when it comes to cooking meats, using flame-breath to roast meals to perfection. Improperly heating a meal will send it into an indignant rage.", "author": "sk372" }, + { + "sprite": "143.130.png", + "entry": "It spends most of its days asleep at the bottom of the sea. When POKENAME awakens from its sleep, it emits a thunderous howl that can cause underwater earthquakes.", + "author": "mepp." + }, { "sprite": "143.133.png", "entry": "POKENAME spends most of the day sleeping. It's a popular pet for those who don't have the time, energy, or space to keep the more active Eevee.", @@ -17979,6 +18224,11 @@ "entry": "This Pokémon's antennae act as a night-light for child POKENAME. Although most adults outgrow them, it acts as comfort after a bad day.", "author": "dodoowner_" }, + { + "sprite": "143.173.png", + "entry": "In the wild, POKENAME sleeps twenty-two hours a day, with its two waking hours spent late at night devouring food. It makes its home in tall trees where it can safely sleep and feel closer to the moon.", + "author": "pjporwoll" + }, { "sprite": "143.187.png", "entry": "Its wings are too small to lift it off the ground for more than a couple of seconds. Because of this, it only flies to grab hard-to-reach food.", @@ -18139,6 +18389,11 @@ "entry": "POKENAME may sleep for ten thousand years, becoming one with the landscape. It can devour a whole continent's vegetation when it awakes.", "author": "robosoup" }, + { + "sprite": "143.35.png", + "entry": "POKENAME gather on tall buildings and hills to exchange favorite foods while laying beneath the stars. If they are witnessed traveling during daylight, there will be a gorgeous astronomical event soon at their destination.", + "author": "pjporwoll" + }, { "sprite": "143.354.png", "entry": "Despite its lax attitude, POKENAME will react to danger with a quick hop into an attack with its legs, usually finishing with a devastating leglock.", @@ -18289,6 +18544,11 @@ "entry": "The dust that comes off of a POKENAME's fur is used in creating concealer and eyeliner. Beauticians use this makeup at fashion shows in Unova.", "author": ".izik" }, + { + "sprite": "143.482.png", + "entry": "POKENAME consumes every twig it encounters, using the material to fuel its internal fire. Despite its size, it can eat several times its body weight in a single day.", + "author": "theartemis1" + }, { "sprite": "143.53.png", "entry": "When POKENAME isn't participating in its usual routine of stuffing its face with pasta, it curls up in its bed and sleeps for hours upon hours.", @@ -18509,6 +18769,11 @@ "entry": "It is a master of temperature manipulation, whose shell is made of ice, while its core burns hotter than magma. When the inside of its shell melts and boils, POKENAME erupts with the accumulated steam, which freezes into snow upon being released.", "author": "milchik" }, + { + "sprite": "144.500.png", + "entry": "Since ancient times, POKENAME has been hailed as a spirit of winter. Those who witness this elusive Pokémon's radiance are said to be blessed with protection from the cold.", + "author": "mepp." + }, { "sprite": "144.64.png", "entry": "A sage-like Pokémon that resides on frigid mountains, POKENAME is often sought out for its wisdom. It rarely deems others worthy, casting those it rejects out of its domain with gusts of icy wind created from its staff.", @@ -18554,31 +18819,71 @@ "entry": "POKENAME commands large hailstorms that can devastate entire villages. These hailstones are charged with electricity and can cause electric shocks when touched.", "author": "mistymagius" }, + { + "sprite": "145.145.png", + "entry": "When two Zapdos fuse together, they unleash an energy so intense that their body transforms into pure plasma and electricity. Some say the fused POKENAME holds enough power to fuel an entire region.", + "author": "fiordaliso" + }, + { + "sprite": "145.15.png", + "entry": "Seen nesting in long-abandoned power plants, POKENAME is considered highly-dangerous. Aggressive to outsiders, it fires electrically-charged needles that launch with the speed of lightning, and boom like thunder when fired.", + "author": "sk372" + }, + { + "sprite": "145.163.png", + "entry": "POKENAME's internal electric generation follows a strict regulation schedule. It vents a small burst of excess electricity around its body every hour, on the hour.", + "author": "sk372" + }, { "sprite": "145.170.png", "entry": "POKENAME have been seen accidentally shocking their antennae. This Pokémon can survive swimming in electrified waters.", "author": "dodoowner_" }, + { + "sprite": "145.175.png", + "entry": "POKENAME has a joyous personality, but little understanding or control of its powers. When overjoyed it prances and sprays sparks and even small bolts of lightning around, potentially causing problems for those it wants to play with.", + "author": "sk372" + }, { "sprite": "145.2.png", "entry": "It stores electrical power in the swollen bud on its back, which pulses with sparks before discharges. As it grows stronger, its body becomes increasingly magnetic, occasionally causing metal objects to stick to it.", "author": "jaminmcready" }, + { + "sprite": "145.201.png", + "entry": "Drawings resembling POKENAME have been seen within a number of ancient ruins. Research suggests the areas were prone to heavy lightning storms, so POKENAME may have been considered a harbinger of such by those old civilizations.", + "author": "sk372" + }, { "sprite": "145.201a.png", "entry": "Deciphered text from ancient murals tells of massive thunderstorms caused by the gathering of many POKENAME. However, since POKENAME are extremely rare, this has never been seen in modern times.", "author": "darkweavile428" }, + { + "sprite": "145.203.png", + "entry": "POKENAME's front half resembles Zapdos's Galarian counterpart, and has a strong tendency to run about at high speeds. The back half is less equipped for running in such a manner, so it struggles to keep pace.", + "author": "sk372" + }, { "sprite": "145.211.png", "entry": "POKENAME's quills are able to pierce human skin and discharge electricity directly into the body. Swimming is off limits anywhere they are spotted.", "author": "mistymagius" }, + { + "sprite": "145.228.png", + "entry": "POKENAME summons and channels lightning via the beak-like horn on its head. Its not uncommon to see pack-mates zapping each other to compete and determine hierarchy among themselves.", + "author": "sk372" + }, { "sprite": "145.244.png", "entry": "POKENAME races across the land, rarely staying in one locale for more than a day. When it does linger, fierce rumbling storm clouds begin to accumulate in the area more and more the longer it stays.", "author": "sk372" }, + { + "sprite": "145.254.png", + "entry": "POKENAME's tails create and hold clouds brimming with electricity, squeezing them to send numerous volts in every direction. It lets out a shrieking cackle as other Pokémon flee to avoid being zapped.", + "author": "sk372" + }, { "sprite": "145.265.png", "entry": "POKENAME's highly conductive armor allows it to launch plasma-boosted rocks from its hand holes at extreme velocity. When no rocks are loaded, it fires concentrated plasma instead, though at a shorter range.", @@ -18704,6 +19009,11 @@ "entry": "POKENAME nests at the top of mountains, causing a perpetual storm. It is said the deadly storm that surrounds its home only calms for a pure-hearted Trainer with a soul of steel. Whenever POKENAME roars, a clap of thunder is sure to follow.", "author": "bobosmith01" }, + { + "sprite": "145.78.png", + "entry": "POKENAME gallops with such speed that it could be mistaken for a bolt of lightning crackling through the air. Only those it trusts the most are able to touch it without being zapped by its electrified fur.", + "author": "sk372" + }, { "sprite": "146.119.png", "entry": "POKENAME's fire burns forever and cannot be extinguished. Even water only strengthens the fire.", @@ -18719,6 +19029,11 @@ "entry": "Upon fusing Moltres with itself, its flames grow to a strength too powerful for its own body. This causes it to transform into a creature made of pure fire.", "author": "pastamanjase" }, + { + "sprite": "146.148.png", + "entry": "When sick or injured, POKENAME can be seen bathing in lava pools to heal itself. The flames along its back shimmer like the sun and flare up when it becomes enraged.", + "author": "mepp." + }, { "sprite": "146.170.png", "entry": "POKENAME have been seen accidentally incinerating their antennae. This Pokémon can survive swimming in molten lava.", @@ -18754,6 +19069,11 @@ "entry": "POKENAME roams far and wide over the land and the air. When it runs, it leaves behind small flames with every step, while in the air, lightning crackles from every flap of its wings.", "author": "sk372" }, + { + "sprite": "146.275.png", + "entry": "Despite the high temperatures, POKENAME is known to play in bonfires, forest fires, and lava alike, taking no damage to its circuitry.", + "author": "notsaying." + }, { "sprite": "146.295.png", "entry": "Spirits that have passed in volcanic eruptions gather to form POKENAME. This tormented Pokémon is bonded to a scorching keystone.", @@ -18864,6 +19184,11 @@ "entry": "Its body can produce virtually infinite amounts of heat due to nuclear fission. Legends say it has reduced hundreds of planets to nothing but magma and ash. ", "author": "mistymagius" }, + { + "sprite": "146.52.png", + "entry": "Captivated by bright, shiny things, POKENAME ends up chasing the embers it scatters. Continuously chasing itself, the area around it is always blazing red in color, even during the daytime.", + "author": "soup1900" + }, { "sprite": "146.88.png", "entry": "The sheer elemental energy that pervades POKENAME causes it to combust eternally. The intense heat releases toxic compounds.", @@ -19834,6 +20159,11 @@ "entry": "An Ultra Rare Soda brand once ran a limited promotion of POKENAME's honey flavoured drinks, using real honey. This was very expensive, as POKENAME cannot be easily farmed. This is used as a case study for business students.", "author": "whatagooddaytodie" }, + { + "sprite": "15.197.png", + "entry": "POKENAME hides in its cave during the day to protect the small beehive that has grown atop its tail. It emerges at night to hunt small prey under the cover of darkness, fiercely biting anyone who dares steal its honey.", + "author": "fiordaliso" + }, { "sprite": "15.199.png", "entry": "Its wings are purely decorative, as POKENAME cannot fly. This is not because of the size of its wings, but instead because it is too lazy to learn how to fly.", @@ -19879,6 +20209,16 @@ "entry": "It uses the stingers on its arms to drill into trees. Once it has a tree cut open, it will drink the sap inside.", "author": ".izik" }, + { + "sprite": "15.216.png", + "entry": "POKENAME has a strong sweet tooth and tries to gather as much honey as possible. It struggles to get along with others due to its greed, but still tries to be friendly despite the conflicts it causes.", + "author": "jangodiot" + }, + { + "sprite": "15.217.png", + "entry": "It's reported that POKENAME eats more honey in four hours than most hives can produce in a week. Whenever it isn't sleeping, fighting, or fainted, it is always eating honey.", + "author": "jangodiot" + }, { "sprite": "15.225.png", "entry": "POKENAME primarily use the stingers on their hands to attack and poison their enemies, but also to dig out openings in their hive for their young.", @@ -20199,6 +20539,11 @@ "entry": "The nectar in its flower and the drool from its mouth are both incredibly sweet. Even with stingers for defense, it still finds itself accosted by a variety of Pokémon addicted to the tastes.", "author": "sk372" }, + { + "sprite": "15.441.png", + "entry": "POKENAME spreads its majestic wings to patrol above its hive, even in the dead of night. It repels intruders with sonic waves released from the ears atop its head.", + "author": "fiordaliso" + }, { "sprite": "15.449b.png", "entry": "Despite weighing over a ton, POKENAME is able to fly around erratically like any other insect. Its metallic exterior protects a soft honey interior.", @@ -20281,7 +20626,7 @@ }, { "sprite": "15.48.png", - "entry": "This Pokémon uses its stingers to drill into mountain walls. This Pokémon's honey is used by a bakery in Riyado Town that creates delicious Salac Berry Tarts .", + "entry": "This Pokémon uses its stingers to drill into mountain walls. This Pokémon's honey is used by a bakery in Riyado Town that creates delicious Salac Berry Tarts.", "author": ".izik" }, { @@ -20339,6 +20684,11 @@ "entry": "POKENAME leaks a thick, candy-scented honey from its mouth. If a Pokémon enters its mouth to eat the honey, it swiftly inhales and traps them.", "author": ".izik" }, + { + "sprite": "15.81.png", + "entry": "POKENAME attacks with its electrically charged stingers. It swarms with others of its kind to overwhelm larger Pokémon.", + "author": "mepp." + }, { "sprite": "15.89.png", "entry": "POKENAME is a monstrous pile of honey. It tricks Bug Catchers into mistaking it for Beedrill. When it sees prey, it traps them in their sticky honey.", @@ -20404,11 +20754,6 @@ "entry": "It is a very antisocial Pokémon and hates being told what to do. Its immense psychic abilities allow for it to command anyone in its vicinity to do its bidding.", "author": "mistymagius" }, - { - "sprite": "150.203.png", - "entry": "While POKENAME appears to be a fusion of three Pokémon, this isn't the case. Instead, its second head seems to be an expression of remnant DNA.", - "author": "atlas333" - }, { "sprite": "150.218.png", "entry": "There have been many rumors about POKENAME being a failed replication of Mewtwo but there is not enough evidence to prove this theory. Touching its body seems to drain its victims of their intelligence.", @@ -20629,6 +20974,11 @@ "entry": "It is said to hold every possible line of computer code within its genes. Scientists have spent decades trying to see if its genome could be replicated with modern technology.", "author": "mistymagius" }, + { + "sprite": "151.145.png", + "entry": "The lightning coursing across POKENAME's body appears to be composed of pure psychic energy. Those struck by its bolts have their will to battle completely zapped away.", + "author": "sk372" + }, { "sprite": "151.150.png", "entry": "Some have nicknamed this fusion \"Mewthree.\" Fusion has calmed Mewtwo's once-violent heart, perhaps due to Mew's genetic material filling in gaps in Mewtwo's DNA. It has become a being of incredible power, but also incredible kindness.", @@ -20689,6 +21039,11 @@ "entry": "POKENAME are extraordinarily elusive Pokémon, typically only found high up in the atmosphere and very rarely returning to the ground. Their genetic structure is remarkably adaptable, allowing them to mimic any other Pokémon.", "author": "katie" }, + { + "sprite": "151.349.png", + "entry": "POKENAME is said to intrinsically understand the true nature of every being that was or ever will be. Flames of blue and red will travel along its tail and ignite the symbol at the end, should it be in the presence of those with dishonest hearts.", + "author": "sk372" + }, { "sprite": "151.372.png", "entry": "When POKENAME charges mysterious energy in its wings, bubbles of an unknown substance begin forming in the air.", @@ -20784,6 +21139,11 @@ "entry": "When the leaf on its snout becomes a bright lime, its body produces a mild, slightly musky scent that reminds people of cantaloupes. When its Trainer allows it to bask in the sunlight, it accelerates the growth of potential inside before it evolves.", "author": "quackquackattack" }, + { + "sprite": "152.12.png", + "entry": "Its powdery leaves are a common ingredient in herbal remedies. Apothecaries will commonly offer fresh honey to POKENAME in exchange for its assistance.", + "author": "griddle" + }, { "sprite": "152.129a.png", "entry": "Drifting aimlessly among seaweed, POKENAME seems strangely content. It does what little it can to help any Pokémon in need it encounters.", @@ -21124,6 +21484,16 @@ "entry": "Its vines are a staple in the restaurant industry because it is a fast-growing substitute for lemongrass. Whether it gets paired with seafood like a Klawf Stick or a spoonful of Slowpoke stew, its vines will always be in demand.", "author": "quackquackattack" }, + { + "sprite": "153.12.png", + "entry": "Restaurant and bakery owners will frequently leave out flowers to draw in wild POKENAME thanks to its appetizing fragrance. This has also led to a rise of their natural predators in urban areas.", + "author": "griddle" + }, + { + "sprite": "153.147.png", + "entry": "POKENAME makes its den in leafy underbrush where it can perfectly blend in. Every six months, the leaf on its head dries up and falls, only to regrow even stronger than before.", + "author": "fiordaliso" + }, { "sprite": "153.151.png", "entry": "A special seasoning made with dried POKENAME leaves is said to make any meal taste delicious, so it is highly sought after by master chefs.", @@ -21854,6 +22224,11 @@ "entry": "In place of wings, POKENAME is coated in fire, allowing it to burn foes. However, the sound of the flames sometimes cause it to get disoriented.", "author": "canada" }, + { + "sprite": "157.441.png", + "entry": "Wild POKENAME live in the sides of dormant volcanoes and are very protective of their territory. They often eat Rawst berries. When not eating, they like to fly around into other POKENAME territory to challenge them to see whose fire is bigger.", + "author": "coolbuddy1432_56671" + }, { "sprite": "157.446.png", "entry": "Though shy and timid by nature, POKENAME will often let its emotions out in a truly explosive manner. Extreme care is required during these outbursts.", @@ -22929,6 +23304,11 @@ "entry": "POKENAME seeks out those who are sleeping and diligently guards them. Trainers with this Pokémon are guaranteed a safe and restful sleep every night.", "author": "noel5229" }, + { + "sprite": "162.102.png", + "entry": "Its soft, squishy body can stand up to being crushed and squeezed with great force. POKENAME likes to hide among pillows and plush toys in the hope of being cuddled by new friends.", + "author": "griddle" + }, { "sprite": "162.131.png", "entry": "POKENAME nest near beaches where they dig holes with their large flippers. Young POKENAME will playfully splash swimmers with their long tails.", @@ -23969,6 +24349,11 @@ "entry": "POKENAME hunts exclusively at night, hiding away in its cave once the sun rises. Its large beak is great at breaking through tough nuts and berries, allowing it to devour them in a single bite.", "author": "mistymagius" }, + { + "sprite": "164.421.png", + "entry": "When POKENAME's ruby eyes glow ominously, enemies fall under its Hypnosis. Once successfully immobilized, POKENAME claws at them with vicious intent.", + "author": "mepp." + }, { "sprite": "164.424.png", "entry": "POKENAME's body has baffled researchers since they were first fused. The wood-like material that composes their body is toxic.", @@ -24219,6 +24604,11 @@ "entry": "Timid by nature, POKENAME refuse to travel anywhere unless they are in a group for safety. Typically, groups of POKENAME travel by night, using the moon to navigate.", "author": "foolish_weasel" }, + { + "sprite": "165.364.png", + "entry": "Large colonies of POKENAME like to cluster together on cave roofs. Be careful when passing underneath, as these Pokémon are very skittish and will fire waves of spines at any perceived threat.", + "author": "bee4082" + }, { "sprite": "165.385.png", "entry": "This Pokémon spends its days sleeping in the tall grass inside forests. Some myths say if you wake it, it causes bad luck for nine generations!", @@ -24639,6 +25029,11 @@ "entry": "After evolving, POKENAME are more bold in their approach to hunting. They fly at high speeds using their sharp top horns to skewer their prey.", "author": "gotfyr" }, + { + "sprite": "167.172.png", + "entry": "POKENAME secretes a thin silk from its mouth, which it uses to weave intricate webs to slow down the Pokémon chasing it. With a single touch, it can channel electric energy into the web, making it even more effective.", + "author": "fiordaliso" + }, { "sprite": "167.183.png", "entry": "The tail of a POKENAME is made of incredibly soft silk. These Pokémon shed their tails every 3 months, and the discarded silk is sought after by tailors across the world.", @@ -24714,6 +25109,11 @@ "entry": "A family of POKENAME will spin their webs together over or on water to create a leak-proof dam. If any member of the colony is threatened, the whole group will web up the attacker and drag it into their lodge to eat together.", "author": "pjporwoll" }, + { + "sprite": "167.32.png", + "entry": "POKENAME's webs are coated in a poison that slowly weakens small Pokémon caught in them. They are considered a household pest, but also help keep the home free of other Bug-type Pokémon.", + "author": "chibitales" + }, { "sprite": "167.324.png", "entry": "POKENAME lives in icy caves, and delicately carves out the ice to look like a web. This is POKENAME's pride, and if anything dares to break it, they pounce on the unsuspecting creature from above, paralysing them.", @@ -24724,6 +25124,11 @@ "entry": "POKENAME creates web network systems in caves to sense prey. It wanders the dark ceilings and plunges into them while they struggle in the sticky web.", "author": "abstrusepaladin" }, + { + "sprite": "167.33.png", + "entry": "Its violent nature causes it to attack foes even larger than itself. The poison that secretes from its horn is enough to knock out a Vigoroth.", + "author": "chibitales" + }, { "sprite": "167.355.png", "entry": "This Pokémon spins its web from the tip of its tail and stores the excess in the balls around it. POKENAME's web-covered hat is very sticky and catches small unsuspecting Pokémon that mistake it for a delicious mushroom.", @@ -25549,6 +25954,11 @@ "entry": "It is both impressively agile and flexible: it is able to effortlessly bound and rest its body on the slightest indent of rocky cavern walls. It watches over mining spots, waiting to dart downwards and snatch any glittering jewels that may be found.", "author": "bobosmith01" }, + { + "sprite": "169.530.png", + "entry": "A fearsome predator, POKENAME ambushes unsuspecting prey. It bites down on its target and swiftly subdues it with a paralyzing poison before carrying it back to its pack.", + "author": "mepp." + }, { "sprite": "169.57.png", "entry": "Trainers employ POKENAME at vineyards, encouraging them to work out their anger by squishing berries for wine. Many guests get intimidated when they see POKENAME licking red juice from their fists, afraid they're drinking blood from their victims.", @@ -25654,6 +26064,11 @@ "entry": "POKENAME chirps loudly while constructing invisible walls mid-air with its psychic powers. It uses these barriers to create aerial obstacles, confusing predators and opponents alike.", "author": ".izik" }, + { + "sprite": "17.128.png", + "entry": "POKENAME runs at full speed across the prairies where it lives to gain the momentum needed to take flight. It is an incredibly fierce Pokémon that battles rivals and enemies using both its sharp beak and its rock-hard horns.", + "author": "fiordaliso" + }, { "sprite": "17.132.png", "entry": "POKENAME oozes its way up tall trees to hunt for prey from the canopy. It flaps its wings to send goop-like feathers onto targeted prey, which slows them enough for POKENAME to hunt them down.", @@ -26639,6 +27054,11 @@ "entry": "POKENAME's antennae emit a captivating light that attracts unsuspecting prey. Though the light is a beautiful sight, what follows is truly horrific.", "author": "mykoloth" }, + { + "sprite": "171.130.png", + "entry": "POKENAME inhabits the darkest ocean depths, where no sunlight arrives, feeding on anything it finds. Its luminous antennae serve to draw innocent Pokémon into its jaws or dazzle them with Flash.", + "author": "fiordaliso" + }, { "sprite": "171.131.png", "entry": "POKENAME can withstand the pressure of the abyssal zone of the ocean. It uses its bioluminescence to see in the deep ocean.", @@ -27014,6 +27434,11 @@ "entry": "When on the offensive, POKENAME puts everything it has into its attacks. Unfortunately, this means it often hurts itself with overwhelming electricity, or it may leak its poison everywhere before actually hitting the opponent.", "author": "bobosmith01" }, + { + "sprite": "172.151.png", + "entry": "When POKENAME absorbs electricity, it must release it quickly. These bolts of electricity are known to cause strange emotions and molecular changes in many living things.", + "author": "notsaying." + }, { "sprite": "172.152.png", "entry": "POKENAME are herbivores and eat vegetables, fruits, and berries. When they stumble into campgrounds, they are particularly fond of stealing Mixed Mushrooms, as they are not endemic to where they live.", @@ -27214,11 +27639,26 @@ "entry": "It hides behind illusions, mimicking people or Pokémon to protect itself. However, its lack of control can cause its illusions to falter and lead to accidental discharges when it becomes too excited or startled.", "author": "moga6" }, + { + "sprite": "172.4.png", + "entry": "POKENAME has a difficult time managing its powers and easily gets tired after shooting sparks or breathing out embers. The flame on its tail dims whenever it gets tired, so Trainers tend to keep snacks ready to help keep it active.", + "author": "quackquackattack" + }, + { + "sprite": "172.402.png", + "entry": "Using static electricity, POKENAME clusters together in large masses. When the energy discharges, the swarm is scattered, leaving each POKENAME at the mercy of even the slightest wind.", + "author": "pjporwoll" + }, { "sprite": "172.409.png", "entry": "POKENAME attempts to ambush its prey before paralyzing them with its electrified jaws. However, due to how wild its electricity is, it often gives away its location before it can strike.", "author": "mistymagius" }, + { + "sprite": "172.419.png", + "entry": "POKENAME can be found crawling within wall cavities of buildings, where it chews on electrical wiring and absorbs charges from small devices. When discovered, it will unleash a pitiable cry that lowers the defenses of even the hardest heart.", + "author": "pjporwoll" + }, { "sprite": "172.431.png", "entry": "POKENAME charges its feathers with electricity as it performs to prepare its attack. A misstep can send an accidental shock flying in every direction.", @@ -27719,6 +28159,11 @@ "entry": "Each morning, POKENAME greets the day with a cheerful song. If interrupted mid-verse, it explodes in rage, leaving behind scorched surroundings.", "author": ".izik" }, + { + "sprite": "174.207.png", + "entry": "POKENAME struggles learning to fly but is watched over by a helpful Wigglycor until it becomes successful. It uses its claws to clip berries neatly from the plant.", + "author": "pjporwoll" + }, { "sprite": "174.21.png", "entry": "Anyone who interrupts POKENAME's morning song is met with angry squawks. Its voice grows shriller the longer it's ignored.", @@ -27749,6 +28194,11 @@ "entry": "A playful burrowing Pokémon native to Pinkan Island, POKENAME digs shallow burrows and can be found chasing one another through the grass and along beaches. Its hide is surprisingly springy to the touch.", "author": "katie" }, + { + "sprite": "174.273.png", + "entry": "POKENAME wildly flails about with its razor-sharp claws, lacking any sense of coordination or danger. It sleeps most of the day and toddles around the forest at night, when even predators avoid its wailing and thrashing.", + "author": "pjporwoll" + }, { "sprite": "174.29.png", "entry": "When danger nears its nest, POKENAME sings a lively song to rally its allies. If the threat draws closer, it leaks a toxic fluid from its skin.", @@ -27844,6 +28294,11 @@ "entry": "If POKENAME is in danger, it swims away crying loudly, which unfortunately attracts even more attention.", "author": "chorb33" }, + { + "sprite": "174.74.png", + "entry": "POKENAME bounces around the walls of caves, letting out delighted squeaks each time it impacts a wall. It rarely sings because it becomes shy as soon as it hears its own voice begin echoing in its cavernous habitat.", + "author": "pjporwoll" + }, { "sprite": "174.7a.png", "entry": "The hard shell of POKENAME protects it from predators, but also keeps it weighted to the ground; its main body is light, soft, and squishy.", @@ -28064,6 +28519,11 @@ "entry": "A beacon of hope for those lost in the forest, POKENAME produces spores that can help clear and ease the mind. It is very friendly and helpful by nature, guiding people and POKENAME through the woods it calls home.", "author": "wildheartrazorfangs" }, + { + "sprite": "175.405.png", + "entry": "POKENAME often appears floating around the cribs of newborns at night. Unlike many other ghostly Pokémon, its presence is welcomed; many believe it only haunts near children destined to grow up happy and healthy.", + "author": "sk372" + }, { "sprite": "175.41.png", "entry": "Though blind, POKENAME can sense the hearts of others nearby, whether wicked or kind. It only bites and draws blood from those it deems as possessing a wicked heart.", @@ -28214,6 +28674,11 @@ "entry": "POKENAME's pristine exterior is the result of it shedding its exoskeleton many times before it evolved, hardening it further each time. It will continue to shed its outer shell multiple times in order to reach its final evolution.", "author": "gloomymort" }, + { + "sprite": "176.215.png", + "entry": "Its smile belies its mischievous nature. It bears gifts of coins and shiny objects to Trainers, only to steal the Trainer's own valuables while they're occupied. It freezes pursuers in place with an Icy Wind.", + "author": "chibitales" + }, { "sprite": "176.232.png", "entry": "When it meets a kindhearted person, POKENAME rolls around them in ecstatic circles. Sometimes it builds up too much speed and crashes into buildings, then sheepishly offers a blessing of good luck.", @@ -28274,6 +28739,11 @@ "entry": "It often floats over blooming fields, spreading joy wherever it goes. Its dance is said to heal broken hearts.", "author": "dammaskk" }, + { + "sprite": "176.38.png", + "entry": "As POKENAME is rarely seen, it is mostly known through folklore. These legends call it the “Joybringer”, as it invites those pure of heart to hold its tails to bless them with happiness for 1,000 years.", + "author": "mepp." + }, { "sprite": "176.384.png", "entry": "POKENAME has a pure heart and a strong sense of justice, so much so that it often avoids those who hold dishonesty or cruelty in their hearts.", @@ -28329,6 +28799,11 @@ "entry": "POKENAME's feathers are so soft that if you touch them, all of your negative emotions will magically disappear. It adores young children and will even allow them to ride on its back while it flies.", "author": "mistymagius" }, + { + "sprite": "176.452.png", + "entry": "POKENAME shares its happiness with those it finds pure of heart, wrapping its arms around the person in a tight hug. Unfortunately, POKENAME does not know its own strength and often injures those it tries to make happy.", + "author": "chibitales" + }, { "sprite": "176.454.png", "entry": "If it finds someone in need of cheering up, it will hug them with its many tentacles to 'magically' make them feel better. These tentacles are very lightweight, allowing them to act as extra pairs of wings.", @@ -28739,6 +29214,11 @@ "entry": "POKENAME has the power to peer into the future and past. Some theorize it even has the power to change the outcomes of certain events.", "author": "manandesz" }, + { + "sprite": "178.181.png", + "entry": "This Pokémon has become synonymous with signs of 'the end times' after a doomsday cult was found in a forest with these Pokémon. Mysteriously, despite being relocated to various labs, all POKENAME that were found at the scene disappeared days after.", + "author": "jangodiot" + }, { "sprite": "178.196.png", "entry": "When POKENAME is bathed in sunlight, the orbs on its body begin to glow. If someone were to touch one of the glowing orbs, they could view either their past or future depending on which orb they touch.", @@ -28801,7 +29281,7 @@ }, { "sprite": "178.289.png", - "entry": "Its wings move independently of itself, as its wings detect treats and shift to block them. It wears an Ability Shield behind its back to ensure that its wings remain free to block attacks.", + "entry": "Its wings move independently of itself, as its wings detect threats and shift to block them. It wears an Ability Shield behind its back to ensure that its wings remain free to block attacks.", "author": "quackquackattack" }, { @@ -28814,6 +29294,16 @@ "entry": "It is said that when ancient civilizations called on spirits to guide them, POKENAME would appear from the flames. While its predictions may seem hazy at first, they always ring true.", "author": "wildheartrazorfangs" }, + { + "sprite": "178.305.png", + "entry": "People say that when they stare into its head, they see themselves in situations they cannot recall. Researchers wonder if POKENAME can foretell fragments of the future, but evidence is inconclusive.", + "author": "jangodiot" + }, + { + "sprite": "178.306.png", + "entry": "POKENAME's head contains what researchers estimate to be countless visions at once. The visions are incomprehensible, and all who look into them report horrific nightmares afterward.", + "author": "jangodiot" + }, { "sprite": "178.310.png", "entry": "Though it can foresee every disaster that will ever occur, it is powerless to alter fate. It perches silently on high cliffs, mourning the lives it is unable to save.", @@ -29104,11 +29594,6 @@ "entry": "It braids its voluminous wool with an incredible mastery of static electricity. Its graceful but innocent nature has inspired many an artistic spirit.", "author": "miecreates" }, - { - "sprite": "179.338.png", - "entry": "Through a combination of physical mimicry and illusion powers, POKENAME is almost indistinguishable from a Mareep when its head is lowered. It enjoys revealing its true form to scare shepherds. ", - "author": "atlas333" - }, { "sprite": "179.360.png", "entry": "POKENAME's soft wool and friendly disposition makes it popular among farmers. Its tail serves as an anchor to keep it from drifting off when asleep.", @@ -29304,6 +29789,11 @@ "entry": "These gorgeous POKENAME can be seen on pristine, snowy days, its blue feathers radiate a beautiful blue glow as it flies. As it swoops down to catch their prey, their wings become coated in small ice crystals.", "author": "mistymagius" }, + { + "sprite": "18.15.png", + "entry": "POKENAME jabs its prey with its large stinger to pump them full of venom. Once its prey is rendered immobile, it carries the prey to its nest where its chicks are waiting.", + "author": "quackquackattack" + }, { "sprite": "18.151a.png", "entry": "POKENAME is a very strong Pokémon, and it will whip up a tornado if threatened. Its blue feathers look like waterfalls and contain an ancient power.", @@ -29319,6 +29809,11 @@ "entry": "During its monthly molting, POKENAME cannot fly until its feathers grow back. Trainers support POKENAME during this process by feeding it seeds, nuts, and berries.", "author": "quackquackattack" }, + { + "sprite": "18.15a.png", + "entry": "POKENAME performs acrobatic feats to swoop past tree branches and surprise its prey. This surprise allows it to jab its stingers into prey with a quick snap, ensuring that the venom swiftly activates.", + "author": "quackquackattack" + }, { "sprite": "18.16.png", "entry": "In an unlikely situation where Pidgey can't agree on their share of prey, this Pokémon steps in to settle the dispute. Its leadership resembles that of a seasoned flock leader, ensuring order among its group.", @@ -29464,6 +29959,11 @@ "entry": "Their curved blades have made POKENAME a popular Pokémon among pirates. During the night, they hunt down bug Pokémon by cutting off the branches that the bugs sleep on and carry them back to their nests in the mountains.", "author": "leandermalurt" }, + { + "sprite": "18.33.png", + "entry": "When it believes its group is in danger, POKENAME won't hesitate to hurl itself at its enemies, attempting to pierce them with the poisonous horn on its forehead. Its wings are so strong that they allow it to reach incredible speeds when diving.", + "author": "fiordaliso" + }, { "sprite": "18.332a.png", "entry": "It protects its domain with sharp claws and by unleashing electric bolts from the sky. Those who win its trust are rewarded with a loyal companion.", @@ -29864,6 +30364,11 @@ "entry": "After fusion, this Pokémon has a calmer attitude, but increased power. It's a bad idea to swim with it around.", "author": "creeps_jr" }, + { + "sprite": "181.131a.png", + "entry": "With its shell glowing brightly like a beacon, this kind Pokémon guides ships during dark nights, helping them maneuver between sea rocks and moor to the shore. Underwater, small Pokémon gather around POKENAME's light for protection.", + "author": "milchik" + }, { "sprite": "181.138.png", "entry": "When POKENAME meet at the sea floor, they communicate by flashing the orbs in their shells at each other. Mass gatherings of POKENAME can cause glows of light visible even above the water's surface.", @@ -30324,6 +30829,11 @@ "entry": "While POKENAME may appear intimidating at first glance, they are gentle giants at heart. As they move through the forest, smaller Pokémon in the area are calmed by their presence.", "author": "sirg44" }, + { + "sprite": "182.34.png", + "entry": "POKENAME constantly challenges others of its kind by performing dazzling dances that scatter flower petals everywhere. By powerfully stomping its feet and tail, it can create vibrations strong enough to split the ground in two.", + "author": "fiordaliso" + }, { "sprite": "182.364.png", "entry": "POKENAME may appear to be a harmless plant, but its entire body is crafted from lightweight, coloured metal that resists weathering. Its ‘blossoms' rotate gently to absorb sunlight, though no one is sure why it mimics photosynthesis.", @@ -31729,6 +32239,11 @@ "entry": "POKENAME flutters down from trees by using the propeller-like leaves atop its head. The leaves can be made into kites with a couple of branches and twine.", "author": "quackquackattack" }, + { + "sprite": "187.532.png", + "entry": "POKENAME's positive electric charge allows it to rise about a meter off the ground. Though it cannot sustain this for long, it helps POKENAME avoid Bug-type Pokémon that would try to munch on its tail.", + "author": "dyanz0" + }, { "sprite": "187.54.png", "entry": "It pulls off and consumes its own leaves to help soothe its aching head. It's only a curative for POKENAME, however; others consuming its leaves will develop a strong headache instead.", @@ -32729,6 +33244,11 @@ "entry": "POKENAME is unable to reach the bulb on its back, so it relies on other POKENAME to help take care of it. The bulb gets sticky from when it burrows into trash cans.", "author": "quackquackattack" }, + { + "sprite": "19.2.png", + "entry": "POKENAME releases a putrid scent that comes from the bulb on its back. It also releases spores that age food faster, making it more palatable for itself.", + "author": "quackquackattack" + }, { "sprite": "19.20.png", "entry": "The average Raticate's hiss is intimidating and ear-piercing, while this Pokémon's cry is neither of those. More often than not, this Pokémon will be forced to go first in a life-and-death situation for the pack.", @@ -32859,6 +33379,11 @@ "entry": "Known as both a Rattata of great size and the scourge of city landfills, POKENAME has a sixth sense to avoid Trainers. When cornered, it lets loose a blood-curdling howl before fighting tooth and fist.", "author": "ghostslythe" }, + { + "sprite": "19.3.png", + "entry": "POKENAME gathers groups of Rattata to topple trash cans by releasing a foul-smelling scent. It gets the moldiest foods first because the other Rattata recognize its leadership.", + "author": "quackquackattack" + }, { "sprite": "19.30.png", "entry": "If POKENAME eats cheese, a highly toxic fluid oozes from its tail. Even a small amount triggers hours of slow, continuous leakage.", @@ -32904,6 +33429,11 @@ "entry": "POKENAME crawls out once night falls in order to steal some food to ensure its survival. It is capable of carrying an entire fridge out of somebody's home.", "author": "9000" }, + { + "sprite": "19.349.png", + "entry": "Rattata flock to POKENAME on instinct if they sense its presence, looking up to it and following its commands. POKENAME has an honest and honorable personality, so its influence makes the Rattata more well-behaved.", + "author": "sk372" + }, { "sprite": "19.35.png", "entry": "POKENAME chews on rocks to find Moonstone dust deposits. While the dust is tasty, the rocks chip off part of its fangs, leaving them sharp and jagged.", @@ -33199,6 +33729,11 @@ "entry": "It grabs petals off of flowers an uneven pattern. It methodically counts them on a tree top after it collects a handful.", "author": ".izik" }, + { + "sprite": "190.122.png", + "entry": "POKENAME has a docile temperament and enjoys socializing with others. In recent years it has been taught sign language, allowing it to act as an interpreter for those who are hard of hearing.", + "author": "mepp." + }, { "sprite": "190.139.png", "entry": "POKENAME has an extremely stretchy tongue that is shaped like a hand. It is able to extend and retract this hand at will.", @@ -33684,11 +34219,21 @@ "entry": "This Pokémon frolicks and plays on bright sunny days, but digs a burrow and hides on cloudy days. Sometimes, the sprout on POKENAME's head is visible above the ground.", "author": "bobosmith01" }, + { + "sprite": "191.322.png", + "entry": "POKENAME tends to rest on the shores of ponds to absorb as much sunlight as possible, as it is essential for its evolution. After the sun sets, it hides underwater to avoid fighting other Pokémon and wasting energy.", + "author": "fiordaliso" + }, { "sprite": "191.327.png", "entry": "POKENAME's body consists largely of a sharpened seed. They use this edge to plant themself into the flesh of a Pokémon and take root, feeding off of its life energy until they can evolve.", "author": ".fedoraman" }, + { + "sprite": "191.349.png", + "entry": "POKENAME only comes out in the early morning, to bask in the first rays of the sunrise for nourishment. As it photosynthesizes, it radiates a strong warmth around it that evaporates the morning dew.", + "author": "sk372" + }, { "sprite": "191.392.png", "entry": "It creates a hole in the soil and covers it with leaves to trap prey. Unfortunately, the small sprout on top of its head pokes out, leaving this tactic less effective than POKENAME realizes.", @@ -34149,6 +34694,11 @@ "entry": "POKENAME loves to strike poses dramatically with the sun behind it before leaping into battle. The more it is allowed to bask in the sun before a fight, the more bombastic its moves become.", "author": "sk372" }, + { + "sprite": "192.463.png", + "entry": "As long as it receives sunlight, POKENAME is always very nice and friendly. However, as soon as night turns, its demeanor turns violent and angry, lashing out its frustration by using Razor Leaf against objects.", + "author": "soup1900" + }, { "sprite": "192.470.png", "entry": "Known as 'Devourer of the Sun' in ancient myths, POKENAME reflects sunlight off its body as it blots the sun, causing floral mutations and anomalies to sprout from all living beings near it.", @@ -34564,6 +35114,11 @@ "entry": "While POKENAME has a shell to defend itself from enemies, it can also flee quickly using its wings, making small waves as it darts across the sea.", "author": "bobosmith01" }, + { + "sprite": "193.95.png", + "entry": "Due to its massive weight, POKENAME's wings are some of the strongest of all Pokémon. However, it still only flies short distances, frequently grabbing onto rocks or cliffsides with its many small legs to rest.", + "author": "bee4082" + }, { "sprite": "193.96.png", "entry": "POKENAME vibrates its wings in a hypnotic tone that causes drowsiness. It feeds only on pleasant dreams, ignoring nightmares entirely.", @@ -36979,6 +37534,11 @@ "entry": "POKENAME lives near large rivers, scooping up fish from the water's surface. It is always in a good mood and can be seen peacefully taking naps in the shallow water.", "author": "mistymagius" }, + { + "sprite": "195.156.png", + "entry": "POKENAME lives and sleeps in deep mud banks. While under the mud, the only evidence of a POKENAME's presence is often the bubbles it creates rising to the surface.", + "author": "bee4082" + }, { "sprite": "195.165.png", "entry": "It can spit clumps of mud and gushes of water to deter foes from approaching. It prefers to feast on the nectar from flowers growing by still lakes and small rivers.", @@ -37054,6 +37614,11 @@ "entry": "A POKENAME slowly follows prey across river bottoms, releasing poison into the water. Their mouth opens wide to catch the meal when it stops moving.", "author": "peachesparfait" }, + { + "sprite": "195.249.png", + "entry": "It is said a single yawn from POKENAME could cause a tsunami. POKENAME lives placidly at the bottom of the sea, completely undisturbed by any physical contact it receives.", + "author": "bobosmith01" + }, { "sprite": "195.251.png", "entry": "POKENAME are little fairies who protect the forest with their combined magics. While dopey and carefree, they never forget what happens in the forest.", @@ -37359,6 +37924,11 @@ "entry": "Even while asleep, POKENAME's tail wags steadily. It slaps the mud or water with its tail, sending rhythmic signals to friends nearby in ponds or swamps.", "author": ".izik" }, + { + "sprite": "195.94.png", + "entry": "POKENAME is an easygoing and dim-witted Pokémon. It leaves its mouth open in the water and waits for prey to wander inside, eating their life force and leaving the physical body behind.", + "author": "bee4082" + }, { "sprite": "195.96.png", "entry": "Whenever POKENAME are nearby, people report feeling sleepy or groggy. This is because the mucous membrane around their skin releases pheromones that cling to receptors in people's noses.", @@ -37564,6 +38134,11 @@ "entry": "Images of POKENAME appear on many types of clothing from the ancient past. It's thought people would wear these clothes in hopes of becoming as wise and elegant as POKENAME.", "author": "chibitales" }, + { + "sprite": "196.339a.png", + "entry": "POKENAME can communicate with its Trainer through telepathy when it wraps its ribbons around them. It only shares this gift with Trainers with a deep, mutual bond.", + "author": "operativevalkyrie" + }, { "sprite": "196.349.png", "entry": "POKENAME's gems allow them to sense if someone's words or actions are genuine. They wander the world, endlessly seeking the truth.", @@ -37689,6 +38264,11 @@ "entry": "The spoon it carries channels sunlight directly into its body, amplifying its psychic abilities. This radiant energy makes its powers more potent in daylight.", "author": ".izik" }, + { + "sprite": "196.73.png", + "entry": "POKENAME entices prey by twinkling the orbs on its head as it floats on the surface of the water. Once close, it ensnares its meal with its many tentacles and drags them underwater.", + "author": "mepp." + }, { "sprite": "196.83.png", "entry": "Found inside hollowed-out pine trees, POKENAME studies its orb, attempting to see all possible futures. When it sees a specific Trainer, it immediately flies to its destiny.", @@ -37844,6 +38424,11 @@ "entry": "POKENAME only comes out of its den to forage during the darkest part of the night. In even the faintest of moonlight, the markings on its body will glow in the darkness.", "author": "sk372" }, + { + "sprite": "197.22.png", + "entry": "POKENAME is a nocturnal hunter that is adept at moving silently in the dark. The patterns on its wings ominously glow to distract prey before it uses its sharp beak to strike with deadly precision.", + "author": "mepp." + }, { "sprite": "197.225.png", "entry": "They can often be found gazing at the moon when it's at its brightest. It collects Moon Stones in its tail.", @@ -37939,6 +38524,16 @@ "entry": "Unlike its fellow Eevedge evolutions, POKENAME doesn't like being held. It instead protects its Trainer from the shadows.", "author": "abstrusepaladin" }, + { + "sprite": "197.329.png", + "entry": "POKENAME radiates yellow light from the three rings on its shield that surges throughout its spectral barrier. It ejects a poisonous sweat from its shield to counterattack anyone who tries to physically attack it.", + "author": "soup1900" + }, + { + "sprite": "197.329a.png", + "entry": "POKENAME use their powers to secretly manipulate people and Pokémon to do their deeds while hiding under the covers of darkness. Conspiracy theorists believe that these Pokémon are the ones who actually control our governments today.", + "author": "soup1900" + }, { "sprite": "197.330.png", "entry": "POKENAME are silent warriors that are said to have mastered fighting techniques from ancient Johto. They are fiercely loyal to their Trainers, operating in the shadows to deliver decisive blows to their opponents when they least expect it. ", @@ -38019,6 +38614,11 @@ "entry": "It is said that POKENAME's shell is a crystallized manifestation of the moon's aura. A friend to many cave Pokémon, POKENAME is able to make the rings on its body glow, bouncing light off its shell to provide moonlight even in the darkest caverns.", "author": "sara886a" }, + { + "sprite": "197.4.png", + "entry": "POKENAME meditates every night under the moonlight to store its energy and become stronger. When it exhales small flames from its mouth, the effort makes the golden rings across its body glow brightly.", + "author": "fiordaliso" + }, { "sprite": "197.406.png", "entry": "Moonlight absorbed by the liquid surrounding POKENAME's body strengthens its psychic powers. This Pokémon can communicate through telepathy, and its body can glow in the dark.", @@ -38164,6 +38764,11 @@ "entry": "POKENAME produces a sweet yet tart powder that candy confectioners mix into their recipes. Its diet influences the level of tartness in the powder, so candy confectioners control its diet to ensure consistency.", "author": "quackquackattack" }, + { + "sprite": "197.500.png", + "entry": "POKENAME's golden crystals radiate beautifully when under the light of the moon. Superstition claims that these crystals have the power to ward away evil spirits.", + "author": "mepp." + }, { "sprite": "197.52.png", "entry": "POKENAME sneaks into houses at night and steals anything that shimmers. Because of this, many people shoo it away if it is found in populated areas.", @@ -38739,6 +39344,11 @@ "entry": "It has incredible intellect which allows it to remember the best locations to catch fish and soar through the sky to reach those places. Its sleek and aerodynamic wings allow it to travel silently, so it can fish without being noticed.", "author": "quackquackattack" }, + { + "sprite": "199.326.png", + "entry": "Although at first glance it seems that POKENAME has abandoned its Shellder, it's actually sitting inside of it. It isn't as smart as Slowking, but it is more protected since the Shellder has become sturdier.", + "author": "jangodiot" + }, { "sprite": "199.327.png", "entry": "Wise in the art of swordsmanship, POKENAME readily teaches others how to fight. The advent of modern weaponry has made POKENAME's teachings only valued among hobbyists.", @@ -38914,6 +39524,11 @@ "entry": "POKENAME use the leaves on their back to help them steer as they glide along the air. They scatter leaves as they flap their wings, collecting them with gusts of wind and directing them back to their nests.", "author": "wildheartrazorfangs" }, + { + "sprite": "2.19.png", + "entry": "POKENAME spends its entire day searching for food to nourish the flower blooming on its back, making it grow even more beautiful. When it is happy, it naturally releases a strong fragrance that can lift the spirits of anyone who breathes it in.", + "author": "fiordaliso" + }, { "sprite": "2.194.png", "entry": "POKENAME live in marshy areas covered with flora, using its large leaves to float on the water without being seen. The flower on its head releases poisonous spores when agitated. ", @@ -38954,6 +39569,11 @@ "entry": "POKENAME hovers gracefully, its broad leaves capturing sunlight for energy. When it captures enough light, it radiates heat to nearby plants.", "author": "jaminmcready" }, + { + "sprite": "2.21.png", + "entry": "Flocks of POKENAME take over fields of flowers for weeks, sipping nectar to fuel their journey to the next field. They will guard their chosen site with flurries of intense Razor Leaf attacks, driving away anything that comes too close.", + "author": "chibitales" + }, { "sprite": "2.22.png", "entry": "POKENAME's feathers have a pleasant herbal scent. As a result, keeping these feathers in one's home is popular among rich business owners.", @@ -39159,6 +39779,11 @@ "entry": "POKENAME use their ivy-like tails to swing from branch to branch, often picking up items and money dropped in forests while they travel. They carry Bulbath from the lower branches where they are born to the canopies where they mature.", "author": "alextheperson" }, + { + "sprite": "2.53.png", + "entry": "Moving gracefully and almost without sound, POKENAME blends perfectly into the undergrowth. Its whiskers detect warmth from sunlight, allowing it to pinpoint clearings where it can absorb solar energy to nourish the flower on its back.", + "author": "fiordaliso" + }, { "sprite": "2.54.png", "entry": "POKENAME relies on the bulb on its head to speak with plants. Prolonged communication with plants causes strong headaches that may take hours to recover from.", @@ -39239,6 +39864,11 @@ "entry": "POKENAME uses a combination of Hypnosis and powders when battling. Its playful disposition and green thumb make it a popular pick for rural families.", "author": "noel5229" }, + { + "sprite": "2.99.png", + "entry": "POKENAME lives along rocky coastlines, as the flower on its back needs seawater to keep blooming. A generally peaceful creature, it produces bubbles from its mouth to communicate with others of its kind.", + "author": "fiordaliso" + }, { "sprite": "20.1.png", "entry": "POKENAME gnaw away at the frames and doors to cellars or pantries. While it is common belief that they are after the cheese stored within, they actually break down the wood grain of the structures to gather nutrients for their bulbs.", @@ -39534,6 +40164,11 @@ "entry": "Its head grows a spongy cheese-like substance. Should anyone get too close to its head, it will use telekinesis to fling them away. ", "author": ".izik" }, + { + "sprite": "20.2.png", + "entry": "POKENAME topples over trash cans by shooting vines from the bulb on its back. It rummages through the resulting pile of trash in search of rotten food.", + "author": "quackquackattack" + }, { "sprite": "20.20.png", "entry": "Reports state POKENAME commands small legions of Raticate in secret. These legions work together to assert control over routes.", @@ -39689,6 +40324,11 @@ "entry": "It refuses to bathe. When exposed to even the smallest amount of water, it cries uncontrollably for hours.", "author": ".izik" }, + { + "sprite": "20.26.png", + "entry": "POKENAME has a short temper, especially when hungry, so only the most patient Trainers can raise it. It strikes ferociously, biting its foes after jolting them with electricity.", + "author": "fiordaliso" + }, { "sprite": "20.260.png", "entry": "POKENAME's diet consists entirely of cheese, eating up to 5 times their body weight in cheese a day. Due to their limited diet, hordes of POKENAME have been seen raiding supermarkets of their entire cheese supply. ", @@ -39749,6 +40389,11 @@ "entry": "POKENAME is generally considered a very dangerous Pokémon. There is, however, a niche community that greatly enjoys caring for them.", "author": "mossybanana" }, + { + "sprite": "20.31.png", + "entry": "POKENAME uses its sharp fangs to tear down the doors of warehouses from which it voraciously steals food. It can violently shake the ground by powerfully slamming its legs and tail against it.", + "author": "fiordaliso" + }, { "sprite": "20.310.png", "entry": "POKENAME will stand dramatically at cliff tops and howl. However, if it sees another POKENAME nearby, it gets self-conscious and runs away.", @@ -39949,6 +40594,11 @@ "entry": "POKENAME form small packs that roam around towns and cities, they prefer to stick to abandoned areas where they don't get disturbed by too many humans. Trainers that manage to tame one find them to be surprisingly loyal companions.", "author": "katie" }, + { + "sprite": "20.47.png", + "entry": "With its sharp teeth, POKENAME can pierce even the bark of the toughest trees to reach their soft core and feed on it. The fungus growing on its body controls its mind and drives it to attack anyone who comes too close.", + "author": "fiordaliso" + }, { "sprite": "20.48.png", "entry": "Due to POKENAME's habit of gnawing on wooden objects, its fur is covered in sawdust. When it is attacked, it will shake off the sawdust to allow for an easy getaway. ", @@ -39999,6 +40649,11 @@ "entry": "POKENAME's fangs heat up enough to melt stone. It chews on rocks late into the night to maintain their sharpness and strength.", "author": ".izik" }, + { + "sprite": "20.6.png", + "entry": "POKENAME gnaws on the bones of dead Pokémon to sharpen its teeth. Afterwards it melts the bone marrow by roasting it with its powerful flames, leaving behind a soft meal made out of bones.", + "author": "quackquackattack" + }, { "sprite": "20.60a.png", "entry": "Using the spiral on its belly, POKENAME can put even the strongest-willed opponents to sleep. It does so while angrily hopping.", @@ -40724,6 +41379,11 @@ "entry": "POKENAME gather together in places where the most stars are visible in the night sky. Their positioning suggests an attempt to relay a message of some kind, but what and to whom is still unknown.", "author": "sk372" }, + { + "sprite": "201.177.png", + "entry": "POKENAME always stares at the sun and only seems to notice others if they block its view. At night, it cries when the sun is gone from sight.", + "author": "jangodiot" + }, { "sprite": "201.178.png", "entry": "It stares at the sun until it sets. At night, it looks at the ground, as if detecting the sun through the planet.", @@ -40944,6 +41604,11 @@ "entry": "POKENAME's eye gives it flawless night vision, but makes it uniquely vulnerable to snow blindness. It lives in fear of the sun as a result.", "author": "griddle" }, + { + "sprite": "201.264.png", + "entry": "POKENAME holds an extraordinary amount of power within its eye, and some say it has a sixth sense within it. POKENAME can leave their eye behind and still track it down from miles away.", + "author": "jangodiot" + }, { "sprite": "201.268.png", "entry": "It shoots Unown from its cannons, spelling its attacks. Strong POKENAME have been known to fire sentences; the strongest will actually fire rhymes.", @@ -41529,6 +42194,21 @@ "entry": "In fusing with a Xatu, the tail of Wobbuffet asserts itself as the new master of its body, puppeteering it around with grace. POKENAME's shadow always strikes before its host does.", "author": "hortensia_xxiii" }, + { + "sprite": "202.18.png", + "entry": "POKENAME can take many hits from other Pokémon because of its stretchy body. This feature keeps them safe when they obliviously fly into a dangerous Pokémon's territory.", + "author": "quackquackattack" + }, + { + "sprite": "202.194.png", + "entry": "Wild POKENAME are difficult to find since they make their homes in cold, dark, underwater caves. Due to their extreme pickiness of outside conditions, they rarely leave their homes and often end up starving themselves because of this.", + "author": "soup1900" + }, + { + "sprite": "202.194a.png", + "entry": "POKENAME tries to keep itself hidden from people since they often mistake it for a real burger and try to eat it. Many people have ended up in the hospital due to getting a mouthful of its poisonous film.", + "author": "soup1900" + }, { "sprite": "202.204.png", "entry": "POKENAME sticks to dark cave ceilings, camouflaging itself in the shadows. If a light is shined on it, it will drop and self-destruct, using its body as a last-ditch defense.", @@ -41549,11 +42229,6 @@ "entry": "This Pokémon has a single weak point, this being the eye in the middle of its stomach. The blue form is nothing but a shell for the real body inside.", "author": "themicelegion" }, - { - "sprite": "202.25b.png", - "entry": "POKENAME is said to be the result of a Pikachu that wouldn't stop making silly faces until its expression froze. It doesn't seem to mind.", - "author": "atlas333" - }, { "sprite": "202.260.png", "entry": "POKENAME is typically friendly. The only time it will get aggressive is when you take its food.", @@ -42024,6 +42699,11 @@ "entry": "In dense forests, POKENAME telekinetically steals jewelry from travelers. It prowls silently, leaving its victims unaware of their loss.", "author": ".izik" }, + { + "sprite": "203.56.png", + "entry": "POKENAME is a surprisingly well-mannered Pokémon, as all the usual aggression appears to have been funneled into the tail. As a result, the tail gnashes and swings at anything approaching it, even when POKENAME sleeps.", + "author": "sk372" + }, { "sprite": "203.58.png", "entry": "POKENAME's second head reads its Trainer's emotions. It barks joyfully when it senses its owner's pride, eager to deepen their bond.", @@ -43589,6 +44269,16 @@ "entry": "POKENAME uses its massive claws to pull huge boulders out of the wall. It throws these with enormous strength to crush its opponents.", "author": "chorb33" }, + { + "sprite": "208.373.png", + "entry": "After having so much trouble being hugged by trainers for its rocky exterior, POKENAME worked night and day to make itself a new costume of steel instead. After seeing that metal was equally as hard to hug, POKENAME's depression only got worse.", + "author": "redmagecole" + }, + { + "sprite": "208.373a.png", + "entry": "POKENAME has modeled its outer shell after popular fashion for young women in the hopes that it will be popular in turn. Its dress is startlingly resilient, and its barrettes are denser than tungsten.", + "author": "griddle" + }, { "sprite": "208.376.png", "entry": "POKENAME feeds on metal ores, preferring strong metals like iron and lead. The two heads hate sharing and will often fight over who gets the better meal.", @@ -43694,6 +44384,16 @@ "entry": "POKENAME covers itself in gold, constantly flaunting it to the other cave denizens. However, it can't distinguish between gold and pyrite, so most of its bling is actually just fool's gold.", "author": "mistymagius" }, + { + "sprite": "208.533.png", + "entry": "POKENAME consumes a rich variety of minerals that give its tail the ability to emit light. Because of this, they are popular companions for miners deep underground.", + "author": "mepp." + }, + { + "sprite": "208.533.png", + "entry": "This Pokémon catches and refracts the light of the moon with its tail gem, projecting it onto the surrounding surfaces, painting them in all the colors of the rainbow. Such colorful performance attracts the potential mates and confuses predators.", + "author": "milchik" + }, { "sprite": "208.6.png", "entry": "The tempered steel that makes up POKENAME's armor can withstand extremely high temperatures. It sets ablaze anything it strikes with its large hammer.", @@ -43774,6 +44474,11 @@ "entry": "POKENAME is very proud of its big blue tongue, presenting it to any who would bear witness. It is prone to pouting if people do not compliment its size and hue.", "author": "sk372" }, + { + "sprite": "209.143.png", + "entry": "Despite its scary face and large size, POKENAME is actually very kind and likes to have people play with or on it. It loves to eat a lot, but it can easily be scared into giving up food by any intimidating Pokémon.", + "author": "soup1900" + }, { "sprite": "209.16.png", "entry": "POKENAME grooms its Trainer and young with careful beak strokes. Despite its scowl, it is calm and nurturing by nature.", @@ -43939,6 +44644,11 @@ "entry": "POKENAME tends to bully flocks of Spearow, yet at the same time defends them from larger Pokémon picking fights. It seems to believe that only it is allowed to pick on the little birds.", "author": "sk372" }, + { + "sprite": "21.13.png", + "entry": "POKENAME marks its territory by dripping venom from its stinger onto the base of its tree. If another POKENAME enters its territory, they will wrestle until one becomes tired and leaves the tree.", + "author": "quackquackattack" + }, { "sprite": "21.151a.png", "entry": "POKENAME is a very playful tiny bird Pokémon. It will attempt to play hide and seek with anyone coming near.", @@ -45334,6 +46044,11 @@ "entry": "POKENAME seeks to consume the sweet sap from forest trees. It won't hesitate to knock over the trees with its charge, just to more easily suck the sap from their bark.", "author": "sk372" }, + { + "sprite": "214.112.png", + "entry": "POKENAME's body is covered by an exoskeleton harder than rock. It feeds on the sap of trees to make itself stronger, and it constantly challenges other members of its species, clashing with its titanic horn to prove dominance.", + "author": "fiordaliso" + }, { "sprite": "214.113.png", "entry": "It tenderly cares for the precious bulb in its pouch, defending it fiercely with its powerful horn from any who dare to approach.", @@ -45839,6 +46554,11 @@ "entry": "POKENAME skitters up to enemies to poke them with its little blades. It loves destruction.", "author": "themicelegion" }, + { + "sprite": "215.169.png", + "entry": "POKENAME clings to arctic cliff faces, listening for passerby from whom it can drain blood. It has a suspicious disposition, only really trusting one other being at a time and losing faith in them at the slightest betrayal.", + "author": "pjporwoll" + }, { "sprite": "215.21.png", "entry": "POKENAME flock around bakeries in the hopes of getting a few pieces from customers that leave. In response, bakeries have a sign to discourage feeding wild Pokémon.", @@ -45949,6 +46669,11 @@ "entry": "The tail feathers of POKENAME crackle with electricity when it wags. Sparks light up the snow around it like a static storm.", "author": ".izik" }, + { + "sprite": "215.39.png", + "entry": "POKENAME's cute appearance hides a cunning demeanor. POKENAME uses its sweet voice to lure Pokémon to sleep, then sneaks into their nests to steal eggs to eat.", + "author": "bee4082" + }, { "sprite": "215.399.png", "entry": "POKENAME are incredibly cunning, often tricking stronger Pokémon into letting their guard down before swiftly striking their weak spot. It hunts in the darkness of night, targeting weak Pokémon wandering the forest alone.", @@ -46594,6 +47319,16 @@ "entry": "POKENAME lives in volcanic caves, using its molten body to cling to the cave walls. It can fire a beam of intense heat from its eye powerful enough to melt through lead.", "author": "mistymagius" }, + { + "sprite": "218.123.png", + "entry": "POKENAME's body is made of searing lava, and even brushing against it can cause severe burns. Its pair of wings allows it to dart close to its foes, which it then slashes with blazing magma scythes.", + "author": "fiordaliso" + }, + { + "sprite": "218.123a.png", + "entry": "Since its body is composed of magma, it rarely strays far from volcanic areas where it can recover its strength. Its two scythes are so scorching and sharp that it can slice any obstacle in half.", + "author": "fiordaliso" + }, { "sprite": "218.141.png", "entry": "While typically slow-moving, POKENAME can make sudden and swift movements in battle. As its amorphous body is composed of extremely hot material, even getting hit with small flung droplets can cause severe burns.", @@ -46829,6 +47564,16 @@ "entry": "POKENAME are drawn to the light of active volcanoes to feed on the fresh lava they produce. Droplets of hot lava drip off this Pokémon as it flies, slowly reducing their body size until they can feed again.", "author": "mistymagius" }, + { + "sprite": "218.501.png", + "entry": "It is a common sight in volcanic areas where POKENAME will congregate in fresh magma. Hikers will often seek them out, believing that it will bless them with an eternal love.", + "author": "sakuraneko" + }, + { + "sprite": "218.501.png", + "entry": "When a volcano erupts, countless POKENAME can be seen gathered there for spawning season. Hikers will often seek them out believing that they will bless them with an eternal love.", + "author": "sakuraneko" + }, { "sprite": "218.56.png", "entry": "As POKENAME's fury builds, so too does the temperature of its skin. At high levels of rage, its magma-like form will bubble and spit, damaging its surroundings with the cast-off material.", @@ -46944,6 +47689,11 @@ "entry": "POKENAME are typically found stuck to the walls of volcano craters, just below the magma's surface. When out of lava, they must constantly spin the flaming arms on their backs to prevent themselves from hardening.", "author": "imademyselfdothis" }, + { + "sprite": "219.123.png", + "entry": "POKENAME's lava-body has solidified into a protective armor that shields it from the elements. With its wings, it maneuvers swiftly through its hunting grounds, ambushing prey and finishing them with decisive strikes from its molten scythes.", + "author": "fiordaliso" + }, { "sprite": "219.126.png", "entry": "POKENAME makes its home in deep volcanic tunnels. Its molten body keeps the narrow caves perpetually glowing.", @@ -46994,6 +47744,11 @@ "entry": "Its lava-like body contains molten metals that conduct electricity. When excited, it may accidentally erupt, startling it into crying. ", "author": "hophoppip" }, + { + "sprite": "219.177.png", + "entry": "Because its wings are too small, POKENAME cannot fly long distances. Instead, it can leap high into the air to unleash scorching flames from above. When the fiery plume on its forehead weakens, it returns to the magma to restore its strength.", + "author": "fiordaliso" + }, { "sprite": "219.189.png", "entry": "It fills its rocky arms with hot air, allowing it to lift off the ground. If one of its arms is damaged, it will spit hot lava on it, then patiently wait for it to cool back into rock.", @@ -47089,6 +47844,11 @@ "entry": "POKENAME are rare, typically found in groups of up to three called covens, and inhabit volcanic calderas. Folklore says that it is best to leave them alone as angering them may lead to a fiery curse being laid upon you.", "author": "pjporwoll" }, + { + "sprite": "219.264.png", + "entry": "POKENAME loves to play the instrument it carries around. People pay to see it perform at a safe distance, so as not to be burned by magma it spits out. Its music is said to sound like a saxophone mixed with a didgeridoo.", + "author": "jangodiot" + }, { "sprite": "219.271.png", "entry": "The plant life on its ears and tail have been severely burned. It still retains a strong connection with nature through the hardened mud on its feet.", @@ -47584,6 +48344,11 @@ "entry": "Depictions of POKENAME were found in ancient tombs of kings. Due to their ability to read auras, they were kept close to prevent assassinations. In modern times, they dig through forest soil with their staves in order to control pest populations.", "author": "ghostslythe" }, + { + "sprite": "22.3.png", + "entry": "POKENAME are home to many small bird Pokémon that nest in their wings. The flower on their back release calming spores that calm angry predators.", + "author": "quackquackattack" + }, { "sprite": "22.30.png", "entry": "It soars gracefully over prairies using its large wings. From its beak, it can fire tiny barbed needles with surprising accuracy to fend off attackers.", @@ -47789,6 +48554,11 @@ "entry": "When it doesn't get its way, it becomes uncontrollably enraged. By focusing its anger, its attacks gain enough strength to break bones.", "author": ".izik" }, + { + "sprite": "22.6.png", + "entry": "POKENAME latches onto bulky Pokémon with its talons to whisk them away back to its nest. Once it returns home, it roasts the Pokémon into a meal with its powerful flames. The resulting meal is then eaten by its chicks.", + "author": "quackquackattack" + }, { "sprite": "22.65.png", "entry": "Normally found guarding desert temples, POKENAME descends psychically from above and hits intruders with its staff. Archaeologists who catch it find all their socks woven into a nest while it wears one of their hoodies.", @@ -48079,11 +48849,6 @@ "entry": "POKENAME loves to collect Ice Stones, as it likes the way they twinkle under the winter stars. Groups of them like to gather at the mountain's peak to watch auroras streak across the sky.", "author": "mistymagius" }, - { - "sprite": "220.373a.png", - "entry": "POKENAME carefully carves the ice block it carries on its head to look like a Pokémon. It uses it as a decoy to escape when threatened. ", - "author": "atlas333" - }, { "sprite": "220.375.png", "entry": "It constantly sniffs the ground as it shuffles forward, smashing through obstacles it cannot see. Its snout picks up the scent of buried roots and cave-dwelling prey with unnerving precision.", @@ -48644,6 +49409,11 @@ "entry": "The rigid branches of POKENAME provide useful cover for Tynamo. Together they combine their electricity to deliver nasty shocks to attackers.", "author": "mepp." }, + { + "sprite": "222.26.png", + "entry": "POKENAME dwells in the ocean depths, feeding on algae near coral reefs. When threatened, it electrifies its coral tail and lashes out at enemies with brutal force.", + "author": "fiordaliso" + }, { "sprite": "222.264.png", "entry": "The fish Pokémon in POKENAME's water-filled sac serve as vital organs; when they eat, POKENAME is also fed. It fiercely guards its internal ecosystem.", @@ -49184,6 +49954,11 @@ "entry": "POKENAME can use their ink-jet mouths to control water around them and swim efficiently. They also use that ink to mark other Pokémon in the wild and even decorate patterns on their own bodies.", "author": "entomoxie" }, + { + "sprite": "224.273.png", + "entry": "Referred to by many as 'Sea Demons', POKENAME are cold, calculated killers of the water. If a Pokémon encounters one, it is immediately grabbed and devoured in what seems like an instant.", + "author": "jangodiot" + }, { "sprite": "224.281.png", "entry": "Coated over POKENAME's body is dozens of tentacles. It fights by first delivering powerful kicks to knock their opponent down, then finishing the battle with a swift tentacle whip.", @@ -49639,6 +50414,11 @@ "entry": "It constantly produces snow-like material inside its bubble that leaves it cold to the touch. POKENAME enjoys being held by others in need of cooling down, cooing softly as it shares its temperature.", "author": "sk372" }, + { + "sprite": "225.421.png", + "entry": "It collects gemstones from caves and gives them out to humans that it trusts. People used to sell these stones for astronomically high prices, so ever since, gemstones given out by POKENAME are worth much less than their original value.", + "author": "jangodiot" + }, { "sprite": "225.421a.png", "entry": "Once a year, POKENAME looks for children nearby to visit and bring gifts. Well-behaved and pure-hearted kids get glistening gems, while naughty children get coal and, in extreme cases, brimstone.", @@ -49854,6 +50634,11 @@ "entry": "Powered by an aquatic ecosystem within its body, POKENAME tears through the waves at a wicked pace. Its wings cut like blades; remorseless and fierce.", "author": "rooboid" }, + { + "sprite": "226.26.png", + "entry": "POKENAME uses its manta-shaped tail like a surfboard, riding turbulent waves with expert skill. It can absorb the power of lightning and channel it into even bolder stunts, earning the admiration of many sea creatures that gather to watch.", + "author": "fiordaliso" + }, { "sprite": "226.261.png", "entry": "POKENAME happily jumps out of the water alongside yachts, enjoying the spray and the attention it garners. It is often seen playing near the coastline in the presence of boats.", @@ -50199,6 +50984,16 @@ "entry": "Its thick fur is made of thousands of sharp metal shards, making it incredibly hazardous to touch. It sheds these shards frequently, making them a good source of iron for metalsmiths.", "author": "mistymagius" }, + { + "sprite": "227.223.png", + "entry": "It swiftly swims through the sea, cutting the water with its sleek, pointed metallic body. POKENAME is a skilled sharpshooter and can fire water projectiles with pinpoint accuracy even from great distances, stunning its opponents.", + "author": "fiordaliso" + }, + { + "sprite": "227.224.png", + "entry": "POKENAME anchors itself to any surface with its steel tentacles, keeping stable while firing powerful projectiles from its oblong beak. Its armored body and hostile temperament drive most marine Pokémon away from the territory it claims as its own.", + "author": "fiordaliso" + }, { "sprite": "227.225.png", "entry": "POKENAME like to hang around post offices and act as loyal guards. Their blades also act as box cutters for hard-to-open boxes.", @@ -50214,6 +51009,11 @@ "entry": "POKENAME's body is made of rustproof metal plates that exude deadly venom. In anger, it raises the crimson spikes on its back and grinds its coils, releasing piercing shrieks that unsettle anyone nearby.", "author": "fiordaliso" }, + { + "sprite": "227.256.png", + "entry": "POKENAME uses the toughness of its steel feathers to overpower nearby Honchkrow, seizing not only their territory but also their underlings. Its broad wings let it fly for long periods, and their edges are sharp enough to slice through solid stone.", + "author": "fiordaliso" + }, { "sprite": "227.259.png", "entry": "Despite its size, POKENAME have murderous intent and can be quite violent. Be very careful if you meet it in the wild. ", @@ -50454,6 +51254,11 @@ "entry": "POKENAME calms down by punching metal plates. If its fists aren't enough, it will tear them apart thanks to its sharp beak.", "author": "fouguri" }, + { + "sprite": "227.59.png", + "entry": "POKENAME's legendary iron armor is considered to be sacred by blacksmiths because it never seems to rust. The armor is also very lightweight, allowing POKENAME to dash and glide at very high speeds.", + "author": "soup1900" + }, { "sprite": "227.67.png", "entry": "Fusion has caused POKENAME to trade its brawn for incredibly impressive fencing skills. Despite its prowess, it does not seem to enjoy this change.", @@ -50584,6 +51389,11 @@ "entry": "While POKENAME typically stick together in large packs, some can be seen splitting from the pack to befriend travelers. They speak in rough chirps.", "author": "pankiwi" }, + { + "sprite": "228.227.png", + "entry": "The bony wings on POKENAME's body are actually made of a lightweight metal. Young pups hone their hunting skills while sparring with each other mid-flight. ", + "author": "mepp." + }, { "sprite": "228.228.png", "entry": "Only one head is able to use fire attacks at a time, but this fire is vastly hotter than anything even a Houndoom is capable of producing.", @@ -50829,6 +51639,11 @@ "entry": "If you hear an eerie howl in the dead of night, it may be a POKENAME looking for food. When frightened, it will attempt to flee while belching hot flames and thick smog before transforming into another Pokémon.", "author": "sajochi" }, + { + "sprite": "229.134.png", + "entry": "These Pokémon were once thought to be servants of the underworld, patrolling rivers for unsuspecting souls to devour. They use their spade-shaped tail to propel themselves in water.", + "author": "chibitales" + }, { "sprite": "229.172.png", "entry": "POKENAME is considered quite dangerous despite its cute and friendly appearance. Its small body cannot properly contain the toxins that cause lingering burns, so an errant touch could have excruciating results.", @@ -50869,6 +51684,16 @@ "entry": "Most POKENAME seen in the wild are the leaders of their pack. They carry heated rocks to aid their young as well as travelers lost in the cold. ", "author": "pankiwi" }, + { + "sprite": "229.24.png", + "entry": "POKENAME towers over smaller Pokémon to assert dominance over them. Whenever it gets upset, it breathes out a plume of fire in frustration.", + "author": "quackquackattack" + }, + { + "sprite": "229.254.png", + "entry": "A scrappy fighter by nature, POKENAME constantly challenges passersby that are far bigger than it to fisticuffs. Its tails are strong enough to crush bone— requiring POKENAME to have to mend its tails after every fight.", + "author": "redmagecole" + }, { "sprite": "229.265.png", "entry": "POKENAME creates so much fire within its body, it cannot fully contain it. It shoots flames from its arms hot enough to melt a mountain in minutes.", @@ -50934,6 +51759,16 @@ "entry": "POKENAME is believed to be a sword possessed by an evil spirit. Trainers who have held POKENAME reported seeing hallucinations and hearing whispers.", "author": "w1ndowsxp" }, + { + "sprite": "229.333.png", + "entry": "POKENAME's large, menacing stature makes it rule over the volcanoes in which they were born. Packs of POKENAME will compete to become king of the volcano by ramming their two great horns into each other to knock each other into the magma.", + "author": "redmagecole" + }, + { + "sprite": "229.333a.png", + "entry": "Once a POKENAME is knocked into a volcano by another POKENAME, it emerges with its internal flame burning hotter than ever. It roams the land training this new firepower, hoping to seek revenge on the POKENAME that humiliated it.", + "author": "redmagecole" + }, { "sprite": "229.334.png", "entry": "POKENAME summons large clouds of volcanic ash to conceal itself in battle. When it gets especially angry, the bony parts of its body will glow red hot.", @@ -50974,11 +51809,6 @@ "entry": "Folklore speaks of POKENAME as the gatekeeper of the underworld, opening the way for the souls of the departed and locking the gates behind them. Their bodies are always burning hot, as if they had been left in an oven.", "author": "knilk" }, - { - "sprite": "229.376.png", - "entry": "Legend says that POKENAME guards the gate to the underworld. Despite its fearsome appearance, it is known to spare those who show it kindness.", - "author": "atlas333" - }, { "sprite": "229.38.png", "entry": "This majestic yet menacing Pokémon commands both fire and shadow with its multiple tails. Its piercing red eyes and elegant movements make POKENAME a captivating yet dangerous presence in the wild.", @@ -51074,6 +51904,11 @@ "entry": "The tar-like substance that comprises its body is horrifically acidic and deadly. The bones seen within POKENAME's body are all that remains of prey it has engulfed and consumed.", "author": "sk372" }, + { + "sprite": "229.95.png", + "entry": "Terrified trainers warn others of caves where they claim \"freakish snake-dogs\" will tunnel in through the walls to bark loudly at them. In reality, these are just POKENAME ferociously demanding to be petted.", + "author": "redmagecole" + }, { "sprite": "23.1.png", "entry": "POKENAME coil their tails on their back while they hop across the forest. If they're startled or approaching prey, they will rapidly extend their tails to propel themselves forward.", @@ -51599,6 +52434,11 @@ "entry": "POKENAME wander the icy waters in search of patches of ice to turn into their hunting grounds. Their black ink has a unique scent that marks the territory of each POKENAME.", "author": "quackquackattack" }, + { + "sprite": "230.99.png", + "entry": "POKENAME makes its den in underwater caves, driving out former occupants after defeating them in battle. Its massive claw can fracture even steel, while its jaws unleash water blasts strong enough to stir violent whirlpools.", + "author": "fiordaliso" + }, { "sprite": "231.100.png", "entry": "It flaps its ears to generate electricity stored within its body. It releases bolts of lightning from its trunk in self-defense. Occasionally sparks fly out when it trumpets normally.", @@ -52904,6 +53744,11 @@ "entry": "POKENAME are popular pets among artists. Unfortunately, they tend to leave paint everywhere they go, making them a serious commitment.", "author": "cristata" }, + { + "sprite": "235.145.png", + "entry": "The multicolored plumage of POKENAME's wings summons forth lightning in a multitude of colors. The thunderstorms it summons are technicolor marvels as awe-inspiring as they are devastating.", + "author": "sk372" + }, { "sprite": "235.149.png", "entry": "Many artists have POKENAME as an assistant, always eager to fetch supplies and aid in artistry. If asked for advice, it points to the color on its stomach it feels would most complement the work-in-progress.", @@ -53014,11 +53859,6 @@ "entry": "The ink POKENAME secrete is a side effect of the colorful mushrooms they eat. Their resting grounds are often repurposed and sold as abstract art.", "author": "hampterbychoice" }, - { - "sprite": "235.221a.png", - "entry": "POKENAME's coat is perpetually covered in a paint-like substance. It leaves a paint trail wherever it goes.", - "author": "atlas333" - }, { "sprite": "235.235.png", "entry": "For the price of a few Berries, POKENAME will paint any commission asked of it with a skill that rivals the most talented of humans. ", @@ -53059,6 +53899,11 @@ "entry": "POKENAME refuses to let go of its tail, even while painting. As a result, it often gets its own paint smeared across its face.", "author": "jaminmcready" }, + { + "sprite": "235.307.png", + "entry": "POKENAME uses its paws to crush berries, precious stones, and other materials into pigments then mixes them with its own saliva to create paint. It uses its forehead as a palette for mixing colors and marks its territory with various paintings.", + "author": "milchik" + }, { "sprite": "235.309.png", "entry": "While most look at POKENAME's artwork and see laziness, some art appraisers swear that there is a unique meaning and deeper symbolism behind the lack of effort.", @@ -53099,6 +53944,11 @@ "entry": "Speedy and stealthy while airborne, POKENAME quickly draws art across the landscape before darting away. It's believed these markings are meant to serve as communicative markers to others of its kind.", "author": "sk372" }, + { + "sprite": "235.371.png", + "entry": "Whenever it finds a pigment it likes, POKENAME will add it to its palette. Each POKENAME has its own unique collection of colors.", + "author": "bee4082" + }, { "sprite": "235.382.png", "entry": "The territory of a POKENAME is marked by unique patterns painted on trees, plants and rocks. Disputes over these territories are settled through graffiti battles. ", @@ -53409,6 +54259,11 @@ "entry": "It hones its fists and legs as well as its capacity to control aura. Though its capability is still developing, it can create small bursts of aura power at the end of every punch or kick.", "author": "sk372" }, + { + "sprite": "236.4.png", + "entry": "Though inexperienced, POKENAME constantly seeks out scuffles to hone its skills. Each victory makes the flame on its tail blaze brighter, while defeat causes it to flicker weakly.", + "author": "fiordaliso" + }, { "sprite": "236.408.png", "entry": "POKENAME's cotton is commonly used to make gym clothing, as it is both breathable and sweat absorbent. It will often hide in bushes and ambush anyone it deems a strong enough opponent.", @@ -53544,6 +54399,11 @@ "entry": "POKENAME is able to warp, reshape and extend its limbs. When rotating on its head, this allows it to turn its arms and legs into powerful whips with a massive range in combat.", "author": "sk372" }, + { + "sprite": "237.430.png", + "entry": "POKENAME's dances contain lots of spins and twirls, both on the ground and in grand leaping movements. It can easily create tornadoes of fire to menace opponents in combat.", + "author": "sk372" + }, { "sprite": "237.448.png", "entry": "POKENAME traverses polar tundra by rapidly spinning while extending its arms to brace against impacts that may harm its icy body. While a poor swimmer, it is very buoyant and can be found bobbing anywhere in the seas if trapped in a strong current.", @@ -54264,6 +55124,11 @@ "entry": "Its serpentine body moves with grace while it exudes a lethal aura. POKENAME uses its toxic aura to deter any threats and protect its territory.", "author": "sheogorath" }, + { + "sprite": "24.3.png", + "entry": "POKENAME sprays its prey with blinding spores to prevent escape. Once cornered, it wraps its prey with vines before dragging it back to its burrow.", + "author": "quackquackattack" + }, { "sprite": "24.300.png", "entry": "This Pokémon has exceptional constriction power. If luring foes in does not work, it will give chase by riding its snake-like appendage.", @@ -54334,6 +55199,11 @@ "entry": "POKENAME winds its two tails around beams or drainpipes in abandoned buildings. Anyone passing underneath it is roasted by a flame from its maw.", "author": "chorb33" }, + { + "sprite": "24.372.png", + "entry": "When it spreads its broad wings, POKENAME terrifies foes by revealing the eye-like patterns on its dark feathers. It dives with its streamlined body to sink its serpentine fangs, dripping with deadly venom, into its prey.", + "author": "fiordaliso" + }, { "sprite": "24.38.png", "entry": "Like Hydreigon, its many tails are false heads. If one of the \"heads\" touches something they all wrap around it, giving POKENAME a chance to attack.", @@ -54454,6 +55324,11 @@ "entry": "The scales on the wings of an POKENAME were once used in Cerulean City to create charms for jewelry. These charms were said to bring luck with love.", "author": ".izik" }, + { + "sprite": "24.6.png", + "entry": "POKENAME is an apex predator that sinks its venomous fangs into prey before roasting them with blazing flames. It lives atop cliffs of mountains where few Trainers venture.", + "author": "quackquackattack" + }, { "sprite": "24.62.png", "entry": "POKENAME's favorite exercise is curl-ups. Those who stare too long at the markings on its chest grow incredibly weary.", @@ -55764,6 +56639,11 @@ "entry": "Over time, POKENAME's crown hardens into a volcano-like structure, constantly venting smoke and sparks. It reigns over volcanic lands, its every step leaving smoldering footprints in its wake.", "author": "eiskitsune" }, + { + "sprite": "244.244.png", + "entry": "It is said that a single roar from POKENAME can trigger violent volcanic eruptions. The extreme heat of its body, made of pure fire, constantly turns the moisture in the air into hot steam.", + "author": "fiordaliso" + }, { "sprite": "244.255.png", "entry": "Sightings of POKENAME are always feared since they only appear right before a volcanic eruption. If they are attacked, they spew tons of hot ash that can suffocate anyone in minutes.", @@ -55884,6 +56764,11 @@ "entry": "This Pokémon is born from volcanic mudpots. When using flame attacks, POKENAME's body temperature increases, and its toxic stench becomes unbearable.", "author": "ziggaway" }, + { + "sprite": "244.99.png", + "entry": "POKENAME steams its own body during battle, causing its shell and claw to brightly glow. Plumes of white-hot steam billow from its claw with every superheated swing.", + "author": "griddle" + }, { "sprite": "245.123.png", "entry": "Its icy claws are so sharp, the edges are a mere three micrometers wide. Despite this, these blades are virtually indestructible.", @@ -55964,6 +56849,11 @@ "entry": "POKENAME is said to bring rain to villages that surround its lake. If anyone betrays its trust by ruining its lakes, it will summon massive rainstorms to completely flood the area. ", "author": "mistymagius" }, + { + "sprite": "245.430.png", + "entry": "POKENAME has been observed in the wild dancing around the edges of dirty lakes and ponds. Once its dance ends, copious amounts of thick steam rise from the water's surface, and once it dissipates, the filthy water is pristine.", + "author": "sk372" + }, { "sprite": "245.433.png", "entry": "If anything disturbs the lake where POKENAME lives, it will drop its calm demeanor and call on the spirits of the drowned to curse the trespasser.", @@ -56104,6 +56994,11 @@ "entry": "Orange spinel gems run along POKENAME's spine and trunk, glowing when it rolls. The light pulses somehow increase its rolling speed dramatically.", "author": ".izik" }, + { + "sprite": "246.246.png", + "entry": "POKENAME's body has hardened into a layer of pure carbon, tougher than diamonds. The rocky plates of its small armor have turned a vivid shade of black.", + "author": "fiordaliso" + }, { "sprite": "246.247.png", "entry": "POKENAME burrows under cave moss to protect its shell while it hardens. Long periods of rest accelerate its eventual evolution.", @@ -56399,6 +57294,11 @@ "entry": "When POKENAME touches food, water, or an element of comfort, it turns into sand. This leads it to great anger.", "author": "elevn." }, + { + "sprite": "248.145a.png", + "entry": "Territorial yet constantly on the move, POKENAME claims mountains all across the land for itself. If it finds others encroaching on a mountain it considers its own, it will reduce it to rubble via thunderbolts rather than share its domain.", + "author": "sk372" + }, { "sprite": "248.169.png", "entry": "POKENAME claims entire cave systems as its territory and will relentlessly pursue anyone that enters it. It is almost unstoppable in flight, able to smash through large boulders without losing speed.", @@ -56659,6 +57559,11 @@ "entry": "POKENAME are only spotted in Paldea after a long, dangerous flood. Others say this is only a myth, though.", "author": "dodoowner_" }, + { + "sprite": "249.219.png", + "entry": "Its liquid body retains its shape even underwater. POKENAME makes its home in geothermal vents on the ocean floor, where it pierces the darkness of the deep with its glowing belly.", + "author": "griddle" + }, { "sprite": "249.249.png", "entry": "Its dark coloration and red eyes is said to be the result of exposure to rare energy waves. The phenomenon was first recorded in the Orre region.", @@ -56734,6 +57639,11 @@ "entry": "POKENAME disguises itself to stalk people who harm the ocean. Once the timing is right, it attacks with great force.", "author": "themicelegion" }, + { + "sprite": "249.340.png", + "entry": "When POKENAME becomes enraged, it unleashes overwhelmingly violent torrents of rain. As a result, sailors steer clear of waters where POKENAME slumbers.", + "author": "mepp." + }, { "sprite": "249.341.png", "entry": "POKENAME often resides by underwater volcanoes. It can cause great earthquakes with its psychic powers and bring about great droughts.", @@ -57134,6 +58044,11 @@ "entry": "After using its fairy powers to help control its electricity, Pichu becomes friends with the Mimikyu possessing it. This newfound bond causes it to evolve into POKENAME.", "author": "adoster" }, + { + "sprite": "25.374.png", + "entry": "When POKENAME finds a large source of energy, it recklessly drains it, even if the amount of energy will make it sick. When it becomes overcharged, it flies uncontrollably fast, appearing as streaks of light in photographs.", + "author": "pjporwoll" + }, { "sprite": "25.384.png", "entry": "While electricity is stored in its cheeks, POKENAME can also unleash powerful bursts from its fists. Its aura grows stronger when it feels fear or sadness, acting as a warning to nearby Pokémon.", @@ -57174,6 +58089,16 @@ "entry": "POKENAME can rarely form in the wild if a Yamask discards its own mask in exchange for a Pikachu mask. As its tail is now less dexterous, the mask is instead held in place with an electric charge.", "author": "crumple_2" }, + { + "sprite": "25.417.png", + "entry": "People living in areas with regular thunderstorms have come to welcome POKENAME's presence. Superstitions say that its chirping song is a ward against lightning strikes, keeping home and property safe from harm.", + "author": "sk372" + }, + { + "sprite": "25.419.png", + "entry": "POKENAME clambers through ducts of buildings, searching for electronic devices from which to sap energy. It is sociable, so if one finds an abundance of electrical energy, it will seek to gather a group to infest the location.", + "author": "pjporwoll" + }, { "sprite": "25.423.png", "entry": "Electricity courses through POKENAME's armored body, making each segment a live wire. Its rapid rotations not only protect it but also generate a static field.", @@ -57459,6 +58384,11 @@ "entry": "Seeing a POKENAME is regarded as a good omen throughout Johto. They are said to bless those setting out on a journey and bring good fortune to those returning.", "author": "katie" }, + { + "sprite": "250.251.png", + "entry": "POKENAME burns down old forests in order to grow and flourish new, healthy flora. Legends say that those who follow this Pokémon through seven different eras of time will be given eternal life.", + "author": "soup1900" + }, { "sprite": "250.255.png", "entry": "This benevolent Pokémon will grant blessing to Trainers that are pure of heart. Its singing voice is said to bring any listeners pure euphoria.", @@ -57499,6 +58429,11 @@ "entry": "POKENAME is often referred to as \"The Princess of the Sun\". Legends say that it can grow a desert oasis from a single tumbleweed.", "author": "kittyluv090" }, + { + "sprite": "250.304.png", + "entry": "POKENAME's six eyes cast scarlet rays wherever they dart. These rays are extremely hot and can burn a Pokémon with ease. Its feathers glow different colours based on the time of day, but this only helps with telling the time.", + "author": "operativevalkyrie" + }, { "sprite": "250.306.png", "entry": "POKENAME never truly dies and will loyally serve its master until the end. It remains an endangered species despite its ability to be reborn upon demise.", @@ -57509,6 +58444,11 @@ "entry": "Upon seeing someone in danger, POKENAME swoops down from the clouds, placing itself between the victim and the attacker. It creates dazzling rainbows as it flies, which it draws power from to breathe devastating, multicoloured flames.", "author": "evilgammon" }, + { + "sprite": "250.318.png", + "entry": "Since ancient times, POKENAME have been seen as symbols of comfort and rebirth. Once a POKENAME has found a Trainer it trusts, it will allow them to sit on its back while it rings the bell in its tower, easing their worries with its melodic chime.", + "author": "wildheartrazorfangs" + }, { "sprite": "250.322.png", "entry": "The largest known colony of POKENAME is found at the southern tip of the world. They gather every evening and fly high, playing with the final rays of light, transforming them into a kaleidoscopic aurora.", @@ -57554,6 +58494,11 @@ "entry": "POKENAME's fiery dances are said to be truly miraculous displays of rainbow-colored flames swirling in fantastic patterns. It refuses to let its dances be recorded, wanting its performances to be truly special.", "author": "sk372" }, + { + "sprite": "250.478.png", + "entry": "POKENAME is a Flying-Type Pokémon reminiscent of a phoenix. It protects its body from larger birds using its wings, which are stronger than diamond and can slice right through an enemy.", + "author": "operativevalkyrie" + }, { "sprite": "250.482.png", "entry": "The colorful POKENAME has long been regarded as a symbol of authority. In ancient times, if a wild POKENAME was ever found, it was expected that it would be caught and given to the emperor.", @@ -57799,6 +58744,11 @@ "entry": "Whenever it hops between timelines, it has a chance to drop a Silver Leaf. The Leaf does nothing at the time it is dropped in, yet some people believe it could be an omen to something sinister on the horizon.", "author": "quackquackattack" }, + { + "sprite": "251.492.png", + "entry": "The peculiar scent produced by POKENAME's bulb quells hostile emotions. Because of this, it is often used by counselors to mediate conflicts between trainers.", + "author": "mepp." + }, { "sprite": "251.50.png", "entry": "It's thought that sightings of POKENAME are all of the same Pokémon, digging its way through time. What era it is aiming for and what it hopes to achieve when it arrives are still subjects of intense research.", @@ -58034,6 +58984,11 @@ "entry": "POKENAME's rock-solid body glows bright blue when using Mirror Coat. The sudden flash often startles foes before the counterattack lands.", "author": ".izik" }, + { + "sprite": "253.268.png", + "entry": "POKENAME live in pairs in old volcanic craters. Together, they bring back Berries to roast and eat. POKENAME will occasionally congregate with other pairs to share different types of food.", + "author": "bee4082" + }, { "sprite": "253.316.png", "entry": "POKENAME is small, cute, but not very smart, which pleases Trainers. The shell is durable and flexible, which protects POKENAME from most attacks. ", @@ -58184,6 +59139,11 @@ "entry": "It uses the antlers on its head to sense the fears of its prey. Using the mouths on its hands, it mimics its prey's greatest terror.", "author": ".izik" }, + { + "sprite": "254.229.png", + "entry": "Warnings get passed around to not be fooled by POKENAME's grin and silly tail claps. One bite from POKENAME is enough to require paramedics, while POKENAME laughs at the injured being taken away in an ambulance.", + "author": "redmagecole" + }, { "sprite": "254.237.png", "entry": "POKENAME's spins are slower due to its tails affecting its balance. However, the impact of them is powerful enough to send a sumo wrestler flying.", @@ -58509,6 +59469,11 @@ "entry": "Old occult records depict POKENAME as a fiendish figure. According to the tales, if summoned it would create a cursed thunderstorm across the region, twisting people's hearts towards malevolence.", "author": "sk372" }, + { + "sprite": "255.352.png", + "entry": "The bewitching aroma that wafts from POKENAME's roses weakens any foe's will to fight. Once subdued, POKENAME unleashes a frightening assault with its thorny vines and fatal toxins.", + "author": "mepp." + }, { "sprite": "255.354d.png", "entry": "This variant of POKENAME has seemingly lost its power to lose by leaving all the pain. That's according to a certain song, anyway.", @@ -59629,6 +60594,11 @@ "entry": "POKENAME can imbue some of its gentle aura into the stone it carries. When shared with others, those gifted the stone will feel more calm and peaceful while carrying it.", "author": "sk372" }, + { + "sprite": "259.386.png", + "entry": "POKENAME jealously guards the smooth white stone it balances on its head. Anyone who tries to steal it faces its sharp claws in a furious assault. Fond of fruit, it roams the forest in search of ripe delicacies.", + "author": "fiordaliso" + }, { "sprite": "259.388.png", "entry": "POKENAME loves physical touch. When its fur is stroked, little sparks fly out of its tail.", @@ -59824,6 +60794,11 @@ "entry": "This Pokémon's electrified vines are employed in construction to lift and manipulate metal beams. Its calming hum helps workers stay focused in high-stress environments.", "author": "jaminmcready" }, + { + "sprite": "26.20.png", + "entry": "Its long whiskers quiver near large sources of electricity, which it eagerly consumes. When fully charged, its tail glows as brightly as a street lamp.", + "author": "fiordaliso" + }, { "sprite": "26.201.png", "entry": "Its tail attracts strange signals from the environment, causing it to spark violently when overloaded. These sparks leave marks that look like fragments of a forgotten writing.", @@ -60054,11 +61029,21 @@ "entry": "POKENAME uses its tail as a lightning rod to absorb electricity. It then flings itself at opponents to violently electrocute them.", "author": "gamertag1001." }, + { + "sprite": "26.417.png", + "entry": "Flocks communicate with each other through a combination of chirps and electrical sparks from their tails. If they get agitated, POKENAME will not hesitate to shock the source of their anger.", + "author": "chibitales" + }, { "sprite": "26.418.png", "entry": "It will grab any prey it lays eyes on. Once captured, POKENAME sends a small electric current through its talons to keep its meal from moving.", "author": "char_latte3412" }, + { + "sprite": "26.419.png", + "entry": "POKENAME is possessive of the building it has designated as its feeding ground, aggressively chasing away other energy-consuming Pokémon. Some workspaces will leave burner devices out as treats to placate the inadvertent POKENAME guardian.", + "author": "pjporwoll" + }, { "sprite": "26.42.png", "entry": "POKENAME's sharp fangs are charged with electricity, shocking its prey until they become paralyzed. Despite its electrical power, POKENAME is very friendly and loves to playfully nuzzle its Trainer.", @@ -60124,6 +61109,11 @@ "entry": "POKENAME has grown to like the attention its fur gets. It understands people's love for the fluff, and is much less likely to shock those who try to touch it.", "author": "chaotic_aspergers" }, + { + "sprite": "26.6.png", + "entry": "POKENAME shoots blazing flames and potent lightning from its mouth, which makes quick work of anything standing in its way. Its proud and defiant personality makes it difficult to catch.", + "author": "quackquackattack" + }, { "sprite": "26.64.png", "entry": "POKENAME channels its psychic and electrical powers through the thunderstone it clutches. It mixes these energies in battle, throwing its opponents around with telekinesis, followed by shocking them with powerful thunderbolts. ", @@ -60174,6 +61164,11 @@ "entry": "POKENAME builds up internal stores of electricity as it races across the land. When it finally stops, it releases the stored-up energy in a powerful burst, creating vicious electric storms all around it.", "author": "sk372" }, + { + "sprite": "26.9.png", + "entry": "POKENAME blasts torrents of electrified water towards opponents in a Pokémon battle, soaking and paralyzing them in the process. When needed, it withdraws into its sturdy shell to repel attacks.", + "author": "quackquackattack" + }, { "sprite": "26.97.png", "entry": "By charging its pendulum with static, it can use it as a makeshift compass to find the closest source of electricity, which it feeds on.", @@ -60234,6 +61229,16 @@ "entry": "POKENAME flies between Occa Berry trees, gathering berries to eat later. When full, its belly jiggles as it flies, making it a comical and endearing sight.", "author": ".izik" }, + { + "sprite": "260.173.png", + "entry": "POKENAME gather under the night sky to snack while watching the moon and stars. Their diet ranges from berries to evolution stones, so they can be quite a nuisance to Trainers.", + "author": "pjporwoll" + }, + { + "sprite": "260.173a.png", + "entry": "POKENAME gather under the night sky to snack while watching the moon and stars. Their diet ranges from berries to evolution stones, so they can be quite a nuisance to Trainers.", + "author": "pjporwoll" + }, { "sprite": "260.18.png", "entry": "Their absentminded flying causes them to catch onto kites as they glide past. They are known to rest atop cliffs and ask for help when this happens, unable to untangle themselves.", @@ -60334,6 +61339,11 @@ "entry": "POKENAME ravages homes, farms, restaurants, and warehouses for their food. It absorbs food particles through its spoon and forked blade.", "author": "abstrusepaladin" }, + { + "sprite": "260.35.png", + "entry": "Farmers that live in POKENAME territory train Pokémon like Lucario to drive off these voracious food thieves under the moonlight. They will even break into homes to devour food if they smell it.", + "author": "pjporwoll" + }, { "sprite": "260.36.png", "entry": "During full moons, POKENAME gathers with others of its kind to feast on Nomel Berries. Entire orchards can be wiped out in one night, with even unripened berries being devoured.", @@ -60619,6 +61629,11 @@ "entry": "On full moon nights, large numbers of POKENAME are known to swim in beautiful patterns along the surface of the ocean. Many Trainers looking to compete in Pokémon Contests will study these movements in order to replicate them with their Pokémon.", "author": "agentyoshi" }, + { + "sprite": "261.370.png", + "entry": "POKENAME can safely let Remoraid inside its body for their shelter and protection and eject them back out unharmed. In return, the Remoraid will help carry it around the ocean and scavenge food for it.", + "author": "soup1900" + }, { "sprite": "261.387.png", "entry": "POKENAME's large body floats just inches above the sea's surface. It travels at sunrise, appearing like a drifting island.", @@ -60854,6 +61869,11 @@ "entry": "POKENAME encases itself in thick ice as it sleeps. The longer the slumber, the tougher its frozen shell becomes.", "author": ".izik" }, + { + "sprite": "262.41.png", + "entry": "Groups of POKENAME fly above the snowy tundra in search of large prey like Mamoswine from which to suck blood. After consuming blood, their feathered crest glows brighter, and the POKENAME with the brightest glow leads the next hunt.", + "author": "pjporwoll" + }, { "sprite": "262.415.png", "entry": "POKENAME's tusks coat themselves in ice during combat. Each strike carries enough force to leave deep dents in solid steel.", @@ -60974,6 +61994,11 @@ "entry": "POKENAME have been seen clumping together to amplify their strength. Researchers believe these clumps to be the origin of modern sentence structures. ", "author": "hampterbychoice" }, + { + "sprite": "263.204.png", + "entry": "POKENAME hangs from the trees found within urban areas, looking for prey. The risk of it exploding has led to POKENAME removal being a priority.", + "author": "notsaying." + }, { "sprite": "263.215.png", "entry": "POKENAME are notorious thieves around cities and factories. They can activate their magnets at will, grabbing tools or pieces of metal from long range to try and create their own mechanisms. They escape by repelling themselves off of machinery.", @@ -61449,6 +62474,11 @@ "entry": "It can use its tendrils to lift huge boulders and crack them like eggs. Even solid bedrock cannot withstand sustained drilling from its mighty horn.", "author": "wigglypon" }, + { + "sprite": "265.36.png", + "entry": "POKENAME digs along tough mountain ranges using its oversized arm to search for fallen meteorites. When it finds a promising rock, it drills into the rock with its horn to see if the interior has the chrome-like shine it desires.", + "author": "pjporwoll" + }, { "sprite": "265.361.png", "entry": "POKENAME is commonly spotted at construction sites, helping the workers carry large loads and moving large mounds of earth. Its rocky hide is tough enough to withstand an entire building falling on it. ", @@ -62004,6 +63034,11 @@ "entry": "POKENAME's final evolved state marks it perfecting its exoskeleton through endlessly shedding. The result is a pristine, solid exterior. To compensate for the extra weight of its shell, it has developed much stronger wings in order to fly smoothly.", "author": "richardcareylol" }, + { + "sprite": "269.215.png", + "entry": "Its wings hide two sickle-like claws that are coated in ice when attacking. It swoops down to steal eggs from bird Pokémon, but often ends up dropping them into the arms of Trainers as it flies away.", + "author": "chibitales" + }, { "sprite": "269.243.png", "entry": "Wild POKENAME have very high IQ and had mastered the art of strategy when battling foes. Their thundering presence commands the field as they let out a shocking Roar.", @@ -62304,6 +63339,11 @@ "entry": "A potent venom can be injected from its horn. If threatened, POKENAME curls up into a ball shape and tries to pass itself off as a rock.", "author": "bobosmith01" }, + { + "sprite": "27.132.png", + "entry": "POKENAME's body is made of liquid sand which it can manipulate to transform into almost any form, but it prefers to turn into spherical shapes. It loves Passho Berries because it has an intense fear of water.", + "author": "pjporwoll" + }, { "sprite": "27.139.png", "entry": "Only found deep within deserts, POKENAME can sleep for years on end if left undisturbed. If one is bothered enough to wake up, it will move enough sand to sweep up a sandstorm, lashing out in all directions to launch trespassers away.", @@ -62539,6 +63579,11 @@ "entry": "POKENAME are mysterious Pokémon found in ancient desert temples. Their unique shape allows them to activate old mechanisms to help explorers pass.", "author": "_snakeywakey_" }, + { + "sprite": "27.4.png", + "entry": "The flame at the end of a POKENAME's tail grows brighter when underground so it can see. It protects this flame by tossing rocks and mud at threatening Pokémon.", + "author": "quackquackattack" + }, { "sprite": "27.400.png", "entry": "These small POKENAME are harmless and enjoy being picked up. Don't try to take it home without a Poké Ball, though, as they are known to track sand everywhere, no matter what.", @@ -62559,6 +63604,11 @@ "entry": "POKENAME hides from the desert heat by hanging out in its cave for most of the day. It is able to filter sand out of its mouth, so while hunting, it will often swoop into the sand and swallow anything hiding in there.", "author": "mistymagius" }, + { + "sprite": "27.421.png", + "entry": "POKENAME will replace one of its eyes with a gem it likes more, with its body taking around twenty-four hours to integrate as a functioning eye. It is rare to find one with mismatched eyes, but Ruin Maniacs obsessively search for such a prize.", + "author": "pjporwoll" + }, { "sprite": "27.43.png", "entry": "Usually found burrowed inside orchards, POKENAME symbiotically connects itself to the trees' roots. It feels vibrations from tunneling pests and protects the grove by releasing a foul-smelling Pokémon repellant.", @@ -62574,6 +63624,11 @@ "entry": "Unable to grow feathers itself, POKENAME crafts fans from ones it finds. After a few weeks they fray, and it patiently searches for new feathers to rebuild them.", "author": "jaminmcready" }, + { + "sprite": "27.437.png", + "entry": "POKENAME can swim swiftly through desert dunes, cutting through them with its pointed head and tough fins. It constantly hunts for other creatures to satisfy its hunger, using its sharp fangs to bring down its prey.", + "author": "fiordaliso" + }, { "sprite": "27.45.png", "entry": "POKENAME block sand from their eyes with their leaves, helping them travel in harsh sandstorms. When they sleep, they wrap their leaves around themselves to disguise as tumbleweeds, waking up in the morning in a burst of sand as their leaves unfurl.", @@ -62649,6 +63704,11 @@ "entry": "POKENAME wields immense psychic powers, allowing it to lift chunks of earth and hurl them at its foes. Legends claim it unearthed its silver spoon while digging deep beneath the ground.", "author": "fiordaliso" }, + { + "sprite": "27.7.png", + "entry": "POKENAME spins through caves while curled in its shell because it is faster than relying on its stubby legs. Sometimes its shell cracks when barrelling through caves, which forces it to take a break while it heals.", + "author": "quackquackattack" + }, { "sprite": "27.74.png", "entry": "POKENAME rolls down hills in order to wear down its rocky skin, and then rests to heal and reinforce it. Sometimes, POKENAME struggles to fully curl up into a ball due to its limbs and circular body.", @@ -62729,6 +63789,11 @@ "entry": "POKENAME pursues prey with blinding speed before pinning them down with its razor-sharp claws. It never lets a target escape.", "author": ".izik" }, + { + "sprite": "270.290.png", + "entry": "Its eyes are capable of seeing colors that the human eye can't perceive. It uses its superior vision to prey on smaller Pokémon that rely on camouflage to avoid predators.", + "author": "griddle" + }, { "sprite": "270.300.png", "entry": "POKENAME lies in wait until groups of smaller prey gather together. It then takes to the air, stunning them with shockwaves generated from its powerful wingbeat before snatching them up into its false jaws.", @@ -62859,6 +63924,11 @@ "entry": "It grows leaves from the joints of its shell, which causes it great discomfort if not trimmed. Chefs will adopt a POKENAME and use its leaves to make spiced stew such as gumbo.", "author": "quackquackattack" }, + { + "sprite": "271.113.png", + "entry": "POKENAME instinctively protects its egg and soon offspring by releasing a sweet aroma. This aroma can calm predators, but it might attract unwanted attention.", + "author": "operativevalkyrie" + }, { "sprite": "271.124.png", "entry": "Naturally shy, it is a rare sight to see a POKENAME. They are drawn to the soothing melody of wind chimes.", @@ -63054,6 +64124,11 @@ "entry": "POKENAME produces a tea-flavored nectar that is incorporated into baked goods. It can be quite mischievous and is known to pull small pranks in the kitchen.", "author": "quackquackattack" }, + { + "sprite": "271.504.png", + "entry": "POKENAME runs around to generate momentum, then cleaves through opponents with its sharp crest and defends itself with its spiky tail. It is much more dangerous than its appearance suggests.", + "author": "operativevalkyrie" + }, { "sprite": "271.52.png", "entry": "POKENAME are commonly spotted in gardens, basking in the sunlight. If in a good mood, they will smell similar to catnip when their fur is stroked.", @@ -63064,6 +64139,11 @@ "entry": "POKENAME is found in temperate and tropical rivers, where it primarily sustains itself by absorbing sunlight in the shallows. It hunts fish Pokémon when there has been little sunlight by lying in wait in reeds or under driftwood.", "author": "pjporwoll" }, + { + "sprite": "271.6.png", + "entry": "POKENAME's wings cause tornadoes that scatter sharp leaves capable of piercing skin, rock, and bark. It lives in dense forests and hibernates in winter, when the leaves have fallen.", + "author": "operativevalkyrie" + }, { "sprite": "271.60.png", "entry": "In a factory during the bagging process, it finds its way into a Pack of Potatoes before napping. When it wakes up, it devours the potatoes before escaping from the bag.", @@ -63389,6 +64469,11 @@ "entry": "It dwells in rocky mountain caves, rarely emerging except to hunt. It is the subject of many stories where it is said to prey on disobedient children.", "author": "bostroms" }, + { + "sprite": "272.58.png", + "entry": "POKENAME will stand and protect its territory when approached, freezing the atmosphere around it. Police use this Pokémon in extremely cold environments to track down criminals because of its exceptional sense of smell.", + "author": "krivaswell" + }, { "sprite": "272.59a.png", "entry": "Because of its magnificent and dazzling mane, akin to an eternally blazing flame, POKENAME is quite popular among Pokémon collectors. Those who treat it with abuse and disrespect, however, will be frozen alive, eternally encased in ice.", @@ -63669,6 +64754,11 @@ "entry": "Using its wings, POKENAME can glide over large gaps spanning over 10 miles wide. It is feared by many due to ancient legends detailing horrific accounts of this species draining blood from humans.", "author": "soup1900" }, + { + "sprite": "273.6.png", + "entry": "POKENAME is an extremely competitive Pokémon that flies across the desert in search of strong opponents to engage in all-out battles. It uses its huge pincers to immobilize its enemies, then finishes them with devastating strikes from its tail.", + "author": "fiordaliso" + }, { "sprite": "273.63.png", "entry": "POKENAME spend most of their time sleeping upside-down inside caves. Using their psychic powers, they can detect anyone approaching and teleport away.", @@ -63719,6 +64809,11 @@ "entry": "POKENAME herds have been recorded in the coldest places on the planet. Males sport greater tusks and spikes to defend the child-bearing mothers.", "author": "vaporvenator" }, + { + "sprite": "274.145.png", + "entry": "POKENAME fossils were thought to be an undiscovered Pokémon species until modern specimens were seen. A vicious and fast-moving hunter, it freezes prey with bolts of ice before crushing them with its powerful beak.", + "author": "sk372" + }, { "sprite": "274.219.png", "entry": "A POKENAME remains stationary its whole life if it can. If something attacks it, it has two forms of retaliation. It will either leak magma from its body or break the ice off its shell and make it fall on the predator. It can live millions of years.", @@ -63869,6 +64964,11 @@ "entry": "POKENAME is both quick to anger and mentally unpredictable. Only patient and skilled Trainers and ranchers are able to tame their bizarre nature.", "author": "trismon55555" }, + { + "sprite": "275.130.png", + "entry": "POKENAME forcefully ejects large amounts of data from the openings in its body to dash through different dimensions. If kept in digital realms, it would attack every fragment of data until the entire network collapses.", + "author": "soup1900" + }, { "sprite": "275.135.png", "entry": "POKENAME are frequently found on malware-infected computers, offering to speed up your PC for free. It's not recommended to feed them.", @@ -64094,6 +65194,11 @@ "entry": "Similar to how Giratina resides in the Distortion World, POKENAME partitions off storage in computer devices to live within an empty space. If agitated, files on the device may rapidly become corrupted and unrecoverable.", "author": "pixlhoopa" }, + { + "sprite": "275.347.png", + "entry": "POKENAME were once only a mere hypothetical for a fusion, but out of nowhere they began to appear in people's computer systems. As soon as it gets in, it shuts the PC down permanently, no visuals, no fanfare, just an unfixable black screen.", + "author": "jangodiot" + }, { "sprite": "275.348a.png", "entry": "An experiment by Team Plasma gone wrong. It only knows destruction, firing its cannon randomly and leaving nothing behind.", @@ -64469,6 +65574,11 @@ "entry": "With a leaf blade and additional leaves used for camouflage, POKENAME brutally protects the forest's trees with cover of the underbrush.", "author": "abstrusepaladin" }, + { + "sprite": "277.33.png", + "entry": "The leaves growing out of POKENAME's body help them camouflage in dense forests. A pack will sneak up on large prey before pouncing with poisoned claws. They will only stick together for a meal before splitting off again.", + "author": "chibitales" + }, { "sprite": "277.38.png", "entry": "POKENAME lives deep in the thickest jungles. It is said that those who touch its leafy tails will be cursed and stolen away.", @@ -64484,11 +65594,21 @@ "entry": "POKENAME live most of their lives hopping from tree branch to tree branch. They rarely ever touch the ground.", "author": "cobalt0135" }, + { + "sprite": "277.425.png", + "entry": "Despite their bulkiness, POKENAME are surprisingly agile. These Pokémon are often raised for the leaves and scales that shed from their body, which are collected for use in herbal medications. The pampering brings out their vain attitudes.", + "author": "chibitales" + }, { "sprite": "277.429.png", "entry": "POKENAME has been puzzling scientists for years. While leaves keep growing out of it's body, POKENAME seems to be hollow.", "author": "astral_1447" }, + { + "sprite": "277.484.png", + "entry": "POKENAME can harness the nature around it and grows grass wherever it steps. It travels to badlands, turning them into lush meadows in under a week and sustains itself on the vegetables it grows.", + "author": "operativevalkyrie" + }, { "sprite": "278.105a.png", "entry": "POKENAME's blades are made of sturdy leaves and the helmet it wears is made of layered plant stems. Those who fell trees have reported being attacked by this Pokémon.", @@ -64649,6 +65769,11 @@ "entry": "Only found in dense tropical rainforests, it seeds and grows poisonous flora so its territory better suits itself. The yellow balls on its body can be detached and dropped in an emergency, releasing a cloud of highly concentrated poisonous gas.", "author": "snileaf" }, + { + "sprite": "278.425.png", + "entry": "POKENAME lived in primeval jungles over 100 million years ago. Its powerful jaws are capable of ripping through steel plates with ease.", + "author": "mepp." + }, { "sprite": "278.441.png", "entry": "POKENAME is a very territorial Pokémon. Using its ears, POKENAME can detect an intruder on the other side of its forest and hunt them down in seconds.", @@ -64704,6 +65829,11 @@ "entry": "The rear head of POKENAME spews fire far hotter than the front. It occasionally unleashes these flames behind itself to boost its speed.", "author": ".izik" }, + { + "sprite": "279.21.png", + "entry": "Very protective of its territory, POKENAME flies around with others to find insects to eat. Multiple POKENAME will unleash a loud cry before using their internal flame sacs to launch fireballs if threatened.", + "author": "sakuraneko" + }, { "sprite": "279.215.png", "entry": "POKENAME dislikes staying still, no matter the environment, and they especially love the outdoors. Incredibly intelligent, they will light small fires to keep themselves warm on chilly nights.", @@ -64949,6 +66079,11 @@ "entry": "POKENAME is one of very few Ursaring species to not hibernate. While interesting, this unfortunately makes it vulnerable to fur hunters.", "author": "patch_bros" }, + { + "sprite": "28.229.png", + "entry": "POKENAME is a loyal companion for desert travelers since its keen sense of smell helps it find sustenance. It launches its bone spikes and fireballs at opponents too dangerous to fight with its claws.", + "author": "pjporwoll" + }, { "sprite": "28.232.png", "entry": "POKENAME extends its spiked scales while rolling to plow through obstacles. It can reach 60 mph when barreling downhill.", @@ -64964,6 +66099,11 @@ "entry": "POKENAME guards isolated desert oases from would-be tourists and explorers. If a harsh sandstorm suddenly appears, odds are an unfortunate traveler has stumbled into its domain.", "author": "agentyoshi" }, + { + "sprite": "28.249.png", + "entry": "When POKENAME flaps its strange wings, it stirs up sandstorms and dust devils. It doesn't seem to be doing this on purpose, though.", + "author": "bee4082" + }, { "sprite": "28.25.png", "entry": "POKENAME can channel a strong electrical current through the spikes on its back. If someone gets too close, it turns its back on them and shoots its spikes.", @@ -66354,6 +67494,11 @@ "entry": "Its appetite grows when it is fused, motivating it to eat several hundreds of pounds of food each day. This food fuels its unmatched psychic powers.", "author": "skymaster426" }, + { + "sprite": "287.150c.png", + "entry": "Any shred of compassion that these Pokémon still possess is distorted through their innately violent disposition. A POKENAME acting in defense of its Trainer is a fearsome sight, as it uses its powers to swiftly dispatch opponents.", + "author": "thatlittletwerp" + }, { "sprite": "287.167.png", "entry": "With four eyes and the lower half of a spider, POKENAME is a frightful sight to many. Though it tries to be helpful, many are scared away by it.", @@ -66469,6 +67614,11 @@ "entry": "POKENAME is as elegant as it is dangerous. Its hypnotic, stony gaze has transformed countless souls into statues, which it displays in its abode.", "author": "_snakeywakey_" }, + { + "sprite": "287.265.png", + "entry": "POKENAME manipulates the drills floating around it with Psychic energy to bore through stone. To defend itself, it will do the same with the armored plates on its dress.", + "author": "kduffradio" + }, { "sprite": "287.267.png", "entry": "Able to perfectly control the voltage from its twin tails, many hospitals employ POKENAME to help with defibrillation. Highly intelligent and compassionate, it always knows precisely the right amount of intensity to apply.", @@ -66674,6 +67824,11 @@ "entry": "POKENAME adjusts the sensitivity of its empathic horn to assess the feelings of entire cities. It helps improving the mood of the people using its ears to broadcast high amplitude ultrasounds that contain subliminal messages.", "author": "epping_forest" }, + { + "sprite": "287.447.png", + "entry": "Some say POKENAME was created with magic and stone to be a guardian of humanity. Several tales exist of it suddenly appearing and psychically stopping landslides and rockfalls that would have taken the lives of unfortunate travelers.", + "author": "sk372" + }, { "sprite": "287.465.png", "entry": "Known to gather together in packs to howl at the full moon, POKENAME refuses to back down from challengers. They have been seen throwing boulders with their psychic might, and could pull the moon from the sky to protect bonded Trainers.", @@ -67229,6 +68384,11 @@ "entry": "The shell that contains POKENAME's spirit is made up of discarded burlap, cloth, and straw from ranches. Since the ranch no longer has a use for it, POKENAME wanders aimlessly through the desert in search of a new home.", "author": "skittytales" }, + { + "sprite": "289.466.png", + "entry": "POKENAME's sonorous song is an eerie and discordant tune. According to legend, those that hear it will soon meet a swift demise.", + "author": "mepp." + }, { "sprite": "289.466c.png", "entry": "Legend says POKENAME was once a guide who used songs to send spirits off to the afterlife. Now, it feeds off the souls of those who hear its song.", @@ -67629,6 +68789,11 @@ "entry": "POKENAME attacks by charging recklessly, its powerful strikes made even more lethal by its poison-tipped horn. ", "author": "theartemis1" }, + { + "sprite": "29.426.png", + "entry": "POKENAME's enormous maw contains one big tooth, so it swallows its meals whole, then sleeps to digest. Its mane and jagged bone-growths are coated in a noxious toxin that wards away predators while it rests.", + "author": "pjporwoll" + }, { "sprite": "29.43.png", "entry": "It roams actively at night, foraging Berries with its sharp front teeth. It protects itself during the day by secreting poison through its leaves.", @@ -67734,6 +68899,11 @@ "entry": "POKENAME tends to be standoffish when first meeting new humans, even causing its fur to excrete a toxin that causes a rash. However, with care and training, it will become loyal and loving to those it considers its pack.", "author": "pjporwoll" }, + { + "sprite": "29.59.png", + "entry": "POKENAME struggles to control its abundant energy, often damaging property by gnawing on it or zooming through rooms. It cares deeply for its packmates, curling up nearby to keep them warm.", + "author": "pjporwoll" + }, { "sprite": "29.6.png", "entry": "Although POKENAME has not yet fully developed the toxins produced by its body, it is still a formidable opponent. Its greatest strength lies in flight, using its broad wings to move swiftly across the battlefield and deliver powerful strikes.", @@ -67744,6 +68914,11 @@ "entry": "Typically found in grassy and hilly areas, POKENAME must avoid many other Pokémon in order to not become prey. As a result, many otherwise unrelated POKENAME may stick together to look after one another.", "author": "bobosmith01" }, + { + "sprite": "29.7.png", + "entry": "Timid by nature, POKENAME usually hides inside its shell when frightened. It only fights to protect its family, firing poisonous spines in the hope of driving foes away.", + "author": "fiordaliso" + }, { "sprite": "29.71.png", "entry": "POKENAME's leaves smell of Leppa Berries to attract bug Pokémon. It spits poison onto them before devouring the paralyzed prey, using its toxins to immobilize and prepare them for consumption.", @@ -69054,6 +70229,11 @@ "entry": "Its resilient teeth are its pride and joy. POKENAME gnaws up boulders and steel beams and licks up the shavings to keep its teeth in top condition.", "author": "theradrad" }, + { + "sprite": "294.375.png", + "entry": "Due to POKENAME's poor eyesight, it finds itself getting stuck in narrow cave passages. It relies on explorers for help and thanks them with an excited bite.", + "author": "mepp." + }, { "sprite": "294.383.png", "entry": "POKENAME slaps mud onto logs to reinforce its lodge. Once its home is complete, it plants flowers on the roof as a finishing touch.", @@ -70469,6 +71649,11 @@ "entry": "No matter how many flower petals POKENAME scatter while they dance, they will grow back almost instantly. POKENAME dance slowly and elegantly, soothed by the fragrance of their flower petals and allowing the wind to guide them.", "author": "wildheartrazorfangs" }, + { + "sprite": "3.19.png", + "entry": "POKENAME steals seeds from flowerbeds and hides them in its mouth. It propagates its own seeds instead, which produce a flower that has musky and earthy scents.", + "author": "quackquackattack" + }, { "sprite": "3.194.png", "entry": "The crown-like flower blooming atop POKENAME is purely coincidental, as the shape helps prevent the oversized plant unbalancing POKENAME. Despite this, it was a custom for a POKENAME to be present at a coronation.", @@ -70604,6 +71789,11 @@ "entry": "The flower on its tail emits a sweet smell that is used to draw in its prey. It then causes vines to erupt from the ground, entangling its chosen meal. ", "author": "flickeredflame" }, + { + "sprite": "3.338.png", + "entry": "POKENAME release large clouds of spores from their flowers to hide their presence. Inhaling a POKENAME's spores will cause hallucinations and nausea, giving POKENAME the perfect chance to strike.", + "author": "wildheartrazorfangs" + }, { "sprite": "3.339.png", "entry": "The floral parasol of POKENAME acts both as a source of nutrients when conducting photosynthesis and as a way to gather water during rain.", @@ -70639,6 +71829,11 @@ "entry": "The being seen inside the outer layer of a POKENAME is not independent of the jelly-like substance that coats it. The crown atop its head is actually a catalyst for the being to be mind-controlled by the potent substance that coats it.", "author": "chaos_emblemx" }, + { + "sprite": "3.36.png", + "entry": "POKENAME has a special flower that only blooms on the night of the full moon. The spores that are released cause Pokémon to fall asleep. This allows it to join together with other POKENAME to dance under the moonlight.", + "author": "quackquackattack" + }, { "sprite": "3.361.png", "entry": "POKENAME are crafty Pokémon that hate humans and often attack them. Most people think POKENAME are evil, but they just want to protect nature.", @@ -70659,6 +71854,11 @@ "entry": "POKENAME is a shy Pokémon that relies on sunlight to keep its flower alive. When night falls, it becomes dormant, sustaining its flower with the dim light from its flame.", "author": "imaginaryneon" }, + { + "sprite": "3.367.png", + "entry": "POKENAME blends in with foliage to lure in prey with the sweet scent of its bouquet. If another Pokémon lands on one of its flowers, POKENAME will ignite a series of flames to drain away their soul.", + "author": "wildheartrazorfangs" + }, { "sprite": "3.369.png", "entry": "POKENAME guards overgrown ruins. Its mighty stature strike fear into the hearts of all who dare to trespass in its domain.", @@ -71169,6 +72369,11 @@ "entry": "The oil on POKENAME's fur is extremely toxic, but if washed carefully, it can be used in extremely warm scarves. Many shops across Kalos sell these scarves, made from the carefully processed fur of this Pokémon.", "author": ".izik" }, + { + "sprite": "30.59.png", + "entry": "POKENAME are often trained as livestock protection Pokémon since they swiftly bond to their charges and defend them fiercely. Ones kept as housepets need extensive exercise and training to keep them from wrecking their home.", + "author": "pjporwoll" + }, { "sprite": "30.6.png", "entry": "After evolving, the toxins within POKENAME's body have become far more potent, making it an even more formidable opponent. With its broad wings, it soars over the skies around its nest, defending it even at the cost of its own life.", @@ -71714,6 +72919,16 @@ "entry": "POKENAME float either near the water's surface or at the seafloor through use of specialized air pockets inside of its body. When a small Pokémon approaches what seems to be an odd stone or plant, they are devoured by the maw on POKENAME's back.", "author": "bobosmith01" }, + { + "sprite": "300.73.png", + "entry": "POKENAME likes to pose as docile and harmless to passersby, despite its obvious claws and fangs. The purpose of this deception is purely for entertainment.", + "author": "griddle" + }, + { + "sprite": "300.73a.png", + "entry": "POKENAME likes to pose as docile and harmless to passersby, despite its obvious claws and fangs. The purpose of this deception is purely for entertainment.", + "author": "griddle" + }, { "sprite": "300.79.png", "entry": "POKENAME's tail-jaws remain in constant awareness for food and danger, even as the rest of the body remains oblivious. Researchers initially thought the tail-maw was the main head of the Pokémon, until they witnessed the actual head begin snoring.", @@ -71839,6 +73054,11 @@ "entry": "POKENAME is formed when the spirits of 108 ancient Pokémon congregate into one fossil. It is envious of the Pokémon that are alive in the modern era.", "author": "themicelegion" }, + { + "sprite": "301.303.png", + "entry": "Resurrected from prehistoric fossils, POKENAME once lived in warm seas. It is thought to be an ancestor to some Bug-Type Pokémon like Wimpod.", + "author": "mepp." + }, { "sprite": "301.318.png", "entry": "It is carrying an entire ecosystem on its back. Many Pokémon that are not allowed entry into this region are finding refuge here.", @@ -72509,6 +73729,11 @@ "entry": "POKENAME's armor is tougher than steel. It slams its head into cave walls to dislodge ores, which it then consumes to reinforce its body.", "author": ".izik" }, + { + "sprite": "307.327.png", + "entry": "POKENAME sharpens its blade by rubbing it against trees and rocks. While its eye is on its handle, the soul inhabiting it lies inside the face plate where the eyes of a Shieldon would be.", + "author": "soup1900" + }, { "sprite": "307.330.png", "entry": "A well-organized group of POKENAME can take on enemies much larger than their individual size. They congregate primarily in rocky plateaus.", @@ -72919,6 +74144,11 @@ "entry": "POKENAME are renowned for their ability to mimic sounds, keeping their nests safe by copying predator growls. They imprint onto objects that make sounds, and follow Trainers to defend those objects with venomous pecks.", "author": "ghostslythe" }, + { + "sprite": "31.2.png", + "entry": "The flower on POKENAME's back can release a fine powder that puts anyone who breathes it to sleep; this dust is even used to make strong sleeping agents. Its spines are laced with potent toxins to protect the flower's petals from other Pokémon.", + "author": "fiordaliso" + }, { "sprite": "31.201.png", "entry": "The massive arm at the end of its body carves intricate symbols into rock or soil. These markings seem to serve as territorial warnings, though some suspect they hold deeper meanings tied to ancient knowledge.", @@ -73004,6 +74234,11 @@ "entry": "Packs of POKENAME patrol storm-tossed badlands with their young. They absorb the ambient ozone in the air and use it to help replenish the venom they spend on hunting.", "author": ".realthree" }, + { + "sprite": "31.333.png", + "entry": "POKENAME's body is covered in a stone armor that shields it from tearing blows during territorial battles. If one of its venom-soaked horns breaks, it hides away in its den until it grows back.", + "author": "fiordaliso" + }, { "sprite": "31.339.png", "entry": "Extremely protective of those it cares about, this Pokémon will stake its life to ensure the safety of its young and Trainer.", @@ -73049,6 +74284,11 @@ "entry": "There is only one female POKENAME in each colony of Nidopuff, where it acts as their leader. They can inflate their bodies to many times their normal size. When they exhale, poison gas is emitted from their orifices.", "author": "bobosmith01" }, + { + "sprite": "31.425.png", + "entry": "POKENAME is aggressive and will attack anything to prove its strength to itself. When defeated, it often returns to fight the same opponent until it finds a way to be victorious.", + "author": "pjporwoll" + }, { "sprite": "31.426.png", "entry": "POKENAME viciously attacks any perceived threat to its offspring. When it leaves its nest to hunt, it rubs its young with its mane which has a low-level toxin that wards off predators.", @@ -73124,6 +74364,16 @@ "entry": "Living in eroded caves made by raging rivers, POKENAME are strong enough to swim up rapids. If threatened, they dig their venom-laced claws into the foe and peck viciously.", "author": "ghostslythe" }, + { + "sprite": "31.58.png", + "entry": "POKENAME is spunky and opinionated, refusing to follow orders that it disagrees with. It loves to play, sassily barking at its Trainer so they will give chase and it can run away in a flash of fire.", + "author": "pjporwoll" + }, + { + "sprite": "31.59.png", + "entry": "POKENAME is willing to lay down its life to guard the flocks in its care. As it grows older and becomes more of a pet than a worker, its Trainer should still let it patrol the fields occasionally so its pride is not hurt.", + "author": "pjporwoll" + }, { "sprite": "31.6.png", "entry": "Ancient drawings in Kalos depict POKENAME barreling through armies of knights. When faced in the modern age, most assume it will use flaming attacks, only to be shocked with poisonous breath.", @@ -74514,6 +75764,11 @@ "entry": "It is said that POKENAME is tasked with bringing others to the afterlife, but feels honor-bound to give its targets a fair fight for their soul. If defeated, it bows out with grace, never to bother its foe again.", "author": "sk372" }, + { + "sprite": "313.309.png", + "entry": "Wild POKENAME often dwell in haunted locations, where they try to rule over the spirits in the area by force. If their reign is challenged, they will go into a destructive frenzy.", + "author": "n3cr0_" + }, { "sprite": "313.327.png", "entry": "It's said to do the bidding of the dead, slaying those who have wronged them and delivering them straight to the darkest corner of the spirit world.", @@ -74999,6 +76254,11 @@ "entry": "POKENAME controls the law of gravity, allowing it to crush threats from individual Pokémon to entire villages. While elusive, it has been known to bond strongly with Trainers and protect them by taking them through wormholes.", "author": "ghostslythe" }, + { + "sprite": "315.288.png", + "entry": "POKENAME was once thought to exist solely in folklore as the steadfast guardians of Arceus. It can dispatch hordes of hostile foes with one swing of its golden arm-blades.", + "author": "mepp." + }, { "sprite": "315.289.png", "entry": "Most beings who bear witness to POKENAME are too overwhelmed by its foreboding aura to attack. Its body remains completely still, floating in the sky.", @@ -75114,6 +76374,11 @@ "entry": "It can let out a ray of light that can calm and even control other Legendary Pokémon and force them into slumber. When it flees back into the skies, it vanishes without a trace.", "author": "bobosmith01" }, + { + "sprite": "315.342c.png", + "entry": "POKENAME is a highly aggressive Pokémon found at high altitudes that attacks others by using powerful blasts of wind. These wind blasts are powerful enough to blow through the sturdiest vault door.", + "author": "operativevalkyrie" + }, { "sprite": "315.346.png", "entry": "It is said that POKENAME created the Pokémon world in seven days. It's also said that it started another project, which is still unknown to this day.", @@ -75129,6 +76394,11 @@ "entry": "Legends say this Pokémon is given by Arceus after sending someone the Sinnoh region's past. POKENAME looks like a phone but can be used as a map.", "author": "gamelord64" }, + { + "sprite": "315.374.png", + "entry": "It is said that POKENAME has been around since the dawn of antiquity. POKENAME only obeys worthy trainers it can trust to do good with its nearly limitless power.", + "author": "mepp." + }, { "sprite": "315.374a.png", "entry": "POKENAME can be found within people's dreams, appearing as a bright light. Anyone who witnesses it can be found in a trance after waking.", @@ -75959,6 +77229,11 @@ "entry": "POKENAME throws its poisonous quills like throwing darts, mischievously pinning other Pokémon to tree trunks. While these quills are poisonous, they are only strong enough to cause mild nausea in humans.", "author": "mistymagius" }, + { + "sprite": "32.259.png", + "entry": "POKENAME nervously protects a small white stone to train for protecting eggs later in life. Its ears swivel around at any noise so it can stay alert for danger.", + "author": "pjporwoll" + }, { "sprite": "32.27.png", "entry": "POKENAME hides beneath the sand, keeping its ears exposed to sense for danger. If someone ends up stepping on POKENAME, they will be met with tons of poisonous spines in their foot.", @@ -76029,6 +77304,11 @@ "entry": "POKENAME's ears have grown too big and inhibit its eyesight, so it must rely on its senses of smell and sound. It plays rough with its siblings, and sometimes gets into fights with much stronger Pokémon once it's on its own.", "author": "pjporwoll" }, + { + "sprite": "32.376.png", + "entry": "The appendages on POKENAME's back help it detect vibration shifts in its environment, allowing it to defend itself in combat. If one head makes a decision that messes up the other one, the two heads will bicker, even when in a dire situation.", + "author": "pjporwoll" + }, { "sprite": "32.384.png", "entry": "POKENAME can see a combatant's aura. If it deems the enemy as evil, its poison becomes twice as deadly, adding a layer of justice to its venomous attacks.", @@ -76569,6 +77849,11 @@ "entry": "POKENAME lives in small herds, traveling across the frozen tundra to find its next fishing spot. They are great companions for ice fishers, as their long necks and beaks help catch fish from under the ice.", "author": "mistymagius" }, + { + "sprite": "322.52.png", + "entry": "POKENAME hoard shiny objects and line their nests with them. When two POKENAME meet, they puff their chests out at one another in a dominance display. The winner takes what they want of the loser's hoard.", + "author": "chibitales" + }, { "sprite": "322.55.png", "entry": "POKENAME swims at high speed using webbed limbs. When upset, it lashes out with its beak, flinging driftwood aside with bursts of psychic force.", @@ -76659,6 +77944,11 @@ "entry": "POKENAME love the attention they get after a good Pokémon battle. They demand lots of attention from their Trainer and can have a hard time working with other Pokémon.", "author": "quackquackattack" }, + { + "sprite": "323.4.png", + "entry": "These solitary Pokémon patrol their icy territories with diligence. The flame on their tail can withstand several hours underwater before they must surface.", + "author": "chibitales" + }, { "sprite": "323.404.png", "entry": "If you live near the coast, you may see wild POKENAME in the forests when the temperature dips. These proud Pokémon prefer damp places, so they come out to play in the snow.", @@ -76759,6 +78049,11 @@ "entry": "Said to have been born from a fallen sailor lost at sea, POKENAME wanders the open ocean. It is known to rescue people from sinking ships, guiding them safely to the surface.", "author": "mistymagius" }, + { + "sprite": "324.367.png", + "entry": "POKENAME are often seen as a sign of luxury and are usually owned by either those who are successful or those who are simply lucky. POKENAME are usually sent out during classy celebrations.", + "author": "jangodiot" + }, { "sprite": "324.379.png", "entry": "Using psychokinetic pulses, POKENAME can propel themselves through water at speeds rivaling even those of a fully-grown Sharpedo.", @@ -76919,16 +78214,6 @@ "entry": "Although blind, POKENAME can use its sixth sense of direction to guide it. Planes use it as a compass if the GPS breaks or loses connection.", "author": "dodoowner_" }, - { - "sprite": "325.411.png", - "entry": "Said to be the spirits of a lost traveler, POKENAME now seek to guide others who have lost their way. The stone it holds is always pointing north. ", - "author": "atlas333" - }, - { - "sprite": "325.411.png", - "entry": "POKENAME is said to be the soul of a traveler who lost their way. Now they carry a stone that always points north, so they'll never be lost again.", - "author": "atlas333" - }, { "sprite": "325.418.png", "entry": "POKENAME leech material out of rock faces to eat. In olden times, POKENAME were used to deliver messages due to their impeccable sense of direction.", @@ -77214,6 +78499,11 @@ "entry": "POKENAME's steel fangs quickly drain the life from its victims. The sack on its back is thought to hold its unfinished food.", "author": "abstrusepaladin" }, + { + "sprite": "327.106.png", + "entry": "POKENAME are known to quickly stretch their bladed leg at others and slice them down without warning. It is believed that these Pokémon taught pirates how to walk with peg legs.", + "author": "soup1900" + }, { "sprite": "327.107.png", "entry": "Each time POKENAME stabs a foe, it drains a bit of their life energy from them. Anyone who survives three minutes of POKENAME volleying stabs at them at bullet-like speeds will honorably have all their life force returned back to them.", @@ -77334,6 +78624,11 @@ "entry": "In days of yore, POKENAME served as the loyal guards of desert kings. They wield the swords in their trunks with the dexterity of an expert fencer, moving as if it has a mind of its own.", "author": "ozydamians" }, + { + "sprite": "327.235.png", + "entry": "Using its blade, POKENAME hacks symbols into the bodies of prey it has drained life energy from. Depending on its emotions, the symbols are either really clear or extremely messy and unrecognizable.", + "author": "soup1900" + }, { "sprite": "327.23c.png", "entry": "POKENAME bears a striking resemblance to a Pokémon native to the Hoenn region. It uses the blade on the end of its tail to mark its territory on boulders and trees.", @@ -77404,6 +78699,16 @@ "entry": "POKENAME will always have its blade gripped by its small claw and its sheath held by its long ribbon claw. It has to constantly swim upwards in order to not sink due to these two large weights.", "author": "soup1900" }, + { + "sprite": "327.305.png", + "entry": "POKENAME avoids headbutting things, as its eye makes up the entirety of the top of its head. It instead must slash with the blade on the back of its head to slice down trees and prey.", + "author": "soup1900" + }, + { + "sprite": "327.307.png", + "entry": "When POKENAME charges at enemies, it uses its armored face to block all attacks while its blade stabs the opponent once it collides. The blue ribbon on its back flows like a superhero cape while it is running around.", + "author": "soup1900" + }, { "sprite": "327.309.png", "entry": "The sheer determination of POKENAME has made it able to withstand its normally fatal wound. The sword in its neck can influence the body nonetheless.", @@ -78379,6 +79684,11 @@ "entry": "POKENAME are well-trained soldiers who patrol the desert in small squads. They drive out any intruder they come upon.", "author": "kiwikelly" }, + { + "sprite": "329.416.png", + "entry": "In ancient arenas, POKENAME fought alongside underdog warriors. In the present, these Pokémon are driven to seek battle with strong opponents.", + "author": "mepp." + }, { "sprite": "329.421.png", "entry": "POKENAME lives in luxury, covered in riches. It will hoard its loot from other Pokémon and Trainers. POKENAME will defend the loot with its life.", @@ -78544,6 +79854,11 @@ "entry": "POKENAME is territorial, charging with the force of a freight train and smashing obstacles in its path. It is used in quarries to shatter boulders, but its stubborn nature makes it unreliable.", "author": "pjporwoll" }, + { + "sprite": "33.112.png", + "entry": "POKENAME's drill-horn is coated in a corrosive venom, which aids it in drilling into solid rock in search of burrowing prey like Onix. It begins combat by rotating the horn to spray the venom on foes before charging them with devastating force.", + "author": "pjporwoll" + }, { "sprite": "33.113.png", "entry": "The egg POKENAME protects is believed to be a potent cure-all, but only for Pokémon resistant to its poison. A chef in Fuchsia City perfected the art of cracking the egg so none of the dangerous whites touched them while extracting the yolk intact.", @@ -78664,11 +79979,26 @@ "entry": "POKENAME's horn glows as it uses telepathy to search the surrounding area for threats. If it senses any aggression, it will hide in the brush, using its keen senses to avoid potential danger.", "author": ".izik" }, + { + "sprite": "33.242.png", + "entry": "POKENAME usually carries around an egg which can be eaten to improve one's health, but it will leave that egg behind if it finds an abandoned Pokémon egg. It will carry the new egg until it can find a person or Pokémon to care for it.", + "author": "pjporwoll" + }, { "sprite": "33.246.png", "entry": "The poison leaking from POKENAME's rocky skin contains a numbing agent. When mixed with other herbs, it becomes a salve for minor aches and pains, making this natural remedy highly valued by those who know how to harvest it.", "author": ".izik" }, + { + "sprite": "33.259.png", + "entry": "POKENAME trains itself to protect eggs by carrying around various round objects to be prepared for any shaped egg. It sometimes picks up valuable items like Life Orbs and Toxic Orbs during this training, making it a target for competitive Trainers.", + "author": "pjporwoll" + }, + { + "sprite": "33.259a.png", + "entry": "POKENAME trains itself to protect eggs by carrying around various round objects to be prepared for any shaped egg. It sometimes picks up valuable items like Life Orbs and Toxic Orbs during this training, making it a target for competitive Trainers.", + "author": "pjporwoll" + }, { "sprite": "33.27.png", "entry": "Should POKENAME find a hard stone slab while tunneling, it will ram its horn to shatter it. Its tunnels have been observed reaching over 100 ft below the surface of the earth.", @@ -78724,6 +80054,11 @@ "entry": "POKENAME's hearing is amazing, making up for its terrible eyesight. Its ears flit about in every direction should it hear a predator, allowing it to react quickly and evade danger despite its poor vision.", "author": ".izik" }, + { + "sprite": "33.376.png", + "entry": "POKENAME's two heads will cooperate to defeat an opponent or secure food, but will immediately begin to fight with each other afterwards. Its acute sense of smell and ability to sense vibrations in the air make up for its lack of sight.", + "author": "pjporwoll" + }, { "sprite": "33.386.png", "entry": "Despite being extremely energetic during the day, a single drop of POKENAME's poison can cause extreme fatigue. This paradox makes it an unpredictable adversary, balancing bursts of energy with the power to drain opponents.", @@ -78989,6 +80324,11 @@ "entry": "Many would take a look at POKENAME's pointy body and claws and resolve to keep a distance in battle, but this would be ineffective; the extendable tongue within its mouth is also a sharp blade just ready to strike and slice opponents.", "author": "sk372" }, + { + "sprite": "330.296.png", + "entry": "It spends its entire life training to perfect its swordsmanship, wielding its blade like a skilled fencer. When it faces a powerful foe, it coats its weapon in aura to make its strikes even sharper and deadlier.", + "author": "fiordaliso" + }, { "sprite": "330.310.png", "entry": "Gracefully striding across the mountainside, POKENAME only leaves cuts in areas it wants to mark as a warning of an approaching disaster. The different patterns of the slashes can indicate the time, location, and intensity of the threat.", @@ -79004,6 +80344,11 @@ "entry": "POKENAME slaughter their victims in groups. After a successful hunt, they sharpen themselves on stones by a river.", "author": "abstrusepaladin" }, + { + "sprite": "330.33.png", + "entry": "Notoriously aggressive, POKENAME will often attack at the slightest provocation. Coating its blade-like horn in a layer of poisonous ooze, it charges its foes with a repeated series of Horn Attacks.", + "author": "theartemis1" + }, { "sprite": "330.330c.png", "entry": "POKENAME are formed by two hostile Pawniard. If they happen to pass another one, they strike without mercy.", @@ -79469,6 +80814,11 @@ "entry": "It pounces on prey, paralyzing them with electric claws and horns. They like picking fights with almost anything, and will even shock itself to get excited. ", "author": "frokachu" }, + { + "sprite": "332.215.png", + "entry": "This smug Pokémon is able to run at high speeds, surpassing even Johto's Magnet Train. Its feathers spark with electricity when it gets excited.", + "author": "chibitales" + }, { "sprite": "332.217.png", "entry": "POKENAME tries to get struck by lightning to store charge in its fur. When fully charged, the fur releases a honey-like scent.", @@ -79509,6 +80859,11 @@ "entry": "POKENAME is highly protective of its forest, conducting nightly patrols. It uses its special eyesight to peer through foliage, noting any anomalies.", "author": "char_latte3412" }, + { + "sprite": "332.294.png", + "entry": "Despite its calm appearance, POKENAME is fiercely protective of the dam it spends its life building. It can charge its massive teeth with electricity, delivering shocks to its enemies they won't soon forget.", + "author": "fiordaliso" + }, { "sprite": "332.295.png", "entry": "POKENAME was freed from its imprisonment when a lightning strike shattered the seal containing the malevolent spirits that compose it. It roams the skies, always accompanied by the roar of thunder, creating violent storms to take revenge on humans.", @@ -79674,6 +81029,11 @@ "entry": "It's so sensitive to changes in the air that it can even sense the movement of things well out of its sight. This is why people mistakenly believe that it can see through anything.", "author": "archserpent" }, + { + "sprite": "332.503.png", + "entry": "POKENAME is a solitary creature that spends long nights howling to keep strangers away from its den. In battle, it lunges at its foes with merciless fangs and doesn't hesitate to unleash devastating bursts of electricity to secure victory.", + "author": "fiordaliso" + }, { "sprite": "332.6.png", "entry": "POKENAME soars across mountain skies on its powerful wings, claiming territory by defeating rivals of its own kind. It is said that when it fights at full strength, the sky turns stormy, and its thunderous roars can be heard from afar.", @@ -79779,6 +81139,11 @@ "entry": "POKENAME is near indestructible and can survive a collision with a semi-truck. It achieves this by flattening itself to maximize its armor coverage. It feeds on natural sweets such as nectar and tree sap.", "author": "mindrivet" }, + { + "sprite": "333.229.png", + "entry": "POKENAME scrounges up bits of bone and steel to fashion itself a set of armor that can withstand its internal heat. The last and most important piece is its helmet, which POKENAME fashions from the bones of an Aggron.", + "author": "redmagecole" + }, { "sprite": "333.232.png", "entry": "POKENAME roams around manmade tunnels to eat loose rocks and debris to strengthen its metallic tusks. It is also known to aid in rescuing miners when tunnels cave in.", @@ -79829,6 +81194,11 @@ "entry": "POKENAME claims an entire mountain as its territory, which it vigilantly maintains. Chips in its blade are worn with pride as mementos from battles.", "author": "abstrusepaladin" }, + { + "sprite": "333.332.png", + "entry": "POKENAME stores large amounts of electricity in its steel armor, releasing it only in combat. It gores enemies with its iron horns and finishes them off with bursts of high-voltage energy.", + "author": "fiordaliso" + }, { "sprite": "333.333a.png", "entry": "POKENAME fully plates itself with iron sheets to be able to withstand any attack. Iron in the mountains where this Pokémon claims its territory is scarce due to it being all dug up.", @@ -80024,6 +81394,11 @@ "entry": "By combining its buzzing wings and voice, POKENAME can emit sound waves that can shatter stone. It roams the desert to hunt down prey at night.", "author": "awiralonprime" }, + { + "sprite": "334.28.png", + "entry": "By vibrating the countless colorful quills on its back in unison, POKENAME can summon powerful sandstorms. Since the prey it feeds on often hides underground, it uses its claws to quickly dig holes in search of them.", + "author": "fiordaliso" + }, { "sprite": "334.296.png", "entry": "During sandstorms, POKENAME flap their wings to extend their aura and find others. It defends weak Pokémon in its territory from poachers and hunters.", @@ -80054,6 +81429,11 @@ "entry": "POKENAME can be seen flying through desert skies, even without wings.", "author": "themicelegion" }, + { + "sprite": "334.336.png", + "entry": "These Pokémon are most often seen during intense sandstorms hunting the Pokémon that get lost within. When night falls, they burrow into the sand to rest, leaving only their antennae exposed.", + "author": "chibitales" + }, { "sprite": "334.339.png", "entry": "The green light from POKENAME's body draws in bug Pokémon before incinerating them with its flames. It seems to enjoy making glass sculptures by melting and shaping sand.", @@ -80084,6 +81464,11 @@ "entry": "POKENAME rapidly flaps the leaves on its head to whip up whirlwinds. The blinding sand that this stirs up allows it to make its escape.", "author": ".realthree" }, + { + "sprite": "334.543.png", + "entry": "When POKENAME hunts, it stealthily moves below the sand's surface. It then ambushes its prey, biting down with pointed fangs before injecting it with deadly venom.", + "author": "mepp." + }, { "sprite": "334.97.png", "entry": "By subtly flapping its wings, POKENAME emits soothing vibrations. Those who have experienced this sensation have described it as a caressing lullaby.", @@ -80299,6 +81684,11 @@ "entry": "It often brings itself to tears with its own performances. POKENAME gets emotionally overwhelmed very easily and is not advised as a companion to first-time Trainers.", "author": "ferdirenz" }, + { + "sprite": "335.436.png", + "entry": "Despite its beautiful appearance, POKENAME has a nasty temperament. Some people carry their scales as good luck charms.", + "author": "mepp." + }, { "sprite": "335.439.png", "entry": "Groups of these Pokémon hang around coral reefs and provide protection for smaller fish Pokémon. However, if any boats come near their reef, they will violently attack it until there is nothing left.", @@ -80449,6 +81839,11 @@ "entry": "Despite its loss of wings, POKENAME is still blindingly fast. It can jump at incredibly high as well, making it still a formidable aerial predator.", "author": "patch_bros" }, + { + "sprite": "336.305.png", + "entry": "When enraged, POKENAME will attack without pause. Using its mighty wings, it will fly skyward before crashing down with a devastating Head Smash. ", + "author": "theartemis1" + }, { "sprite": "336.306.png", "entry": "An enraged POKENAME is incredibly difficult to stop. What it fails to destroy with its ironclad head, it melts with fiery breath, leaving only ruin in its wake.", @@ -80464,6 +81859,11 @@ "entry": "When a foe sees the otherworldly glow from its blades alight, it is already too late. POKENAME swoops down, steals their soul, extinguishes its flames again, and disappears into the night.", "author": ".fedoraman" }, + { + "sprite": "336.334.png", + "entry": "When POKENAME flaps its wings, a menacing growl is created. It uses this ability to chase weaker Pokémon into its territory, where a fierce sandstorm awaits. They get lost in the harsh winds and become POKENAME's prey.", + "author": "chibitales" + }, { "sprite": "336.336.png", "entry": "POKENAME is unfazed by any threat or danger that comes across its flight. Its wings have fused together to create a crescent shape. ", @@ -80509,6 +81909,11 @@ "entry": "POKENAME was long believed to be a fable. Its power is truly legendary, able to distort space-time around itself to render it in a form incomprehensible to humans. When angry it breathes fire at temperatures that seem to make the air around it melt.", "author": "whatagooddaytodie" }, + { + "sprite": "336.354.png", + "entry": "Its ears are strong enough to take flight and glide through the sky, realizing POKENAME's long-held dream. Kicks from its muscled legs can shatter boulders.", + "author": "chibitales" + }, { "sprite": "336.36.png", "entry": "POKENAME stand at the top of mountains under the full moon to gather mystical energy. Once they are fully charged, the tips of their wings will glow pink as they fly away into the night, disappearing until the next full moon.", @@ -80524,6 +81929,11 @@ "entry": "POKENAME strives to find the perfect composition for its disguise that will allow it to soar through the air. After failed attempts, it thrashes about in a petulant tantrum.", "author": "sk372" }, + { + "sprite": "336.377.png", + "entry": "POKENAME is very similar to a Pokémon described in the Scarlet Book. The heads on its arms are very weak, but the main head is much stronger in comparison and delivers a devastating bite.", + "author": "operativevalkyrie" + }, { "sprite": "336.379.png", "entry": "POKENAME was once used in war as an aerial intelligence and combat unit. In the modern day, it excels in battle and makes a powerful partner for a trusted Trainer. POKENAME is unlikely to obey a Trainer it has been traded to.", @@ -80834,6 +82244,11 @@ "entry": "POKENAME scampers about searching for precious gems that it can make into valuable decorative gears. What purpose this behaviour serves is unknown.", "author": "phantom640" }, + { + "sprite": "337.426.png", + "entry": "When POKENAME clamps down with its massive steel jaws, it can crush anything between its fangs. If it needs extra power to bite, the gear with the red core spins rapidly, releasing hissing bursts of steam.", + "author": "fiordaliso" + }, { "sprite": "337.431.png", "entry": "It has learned to twirl the ring around its waist by gyrating its lower body. The sounds of clinking metal as it dances produces a satisfying rhythm.", @@ -81164,6 +82579,11 @@ "entry": "Underwater, POKENAME mimics scuba divers swimming in groups. It isolates victims with charm before poisoning and dragging them into the deep.", "author": ".izik" }, + { + "sprite": "338.484.png", + "entry": "POKENAME has the capability to shapeshift into any human or Pokémon. It leads humans into traps that it crafted until none remain. It attacks anyone or anything that sees its true form.", + "author": "operativevalkyrie" + }, { "sprite": "338.49.png", "entry": "POKENAME mimics lone hikers with eerie accuracy. When confronted, it bursts into a cloud of violet powder and escapes into the air.", @@ -81559,6 +82979,11 @@ "entry": "When Trainers see this Pokémon's floppy ears in the wild, they cannot help but pet it.", "author": "themadcactus" }, + { + "sprite": "339.400.png", + "entry": "The pollen released from POKENAME's bud has a calming effect. This unique capability allows it to evade predators with ease.", + "author": "mepp." + }, { "sprite": "339.402.png", "entry": "Like Drifloon, POKENAME still takes children. Its ribbonlike feelers calm down the children so that they won't scream or fight back.", @@ -81734,6 +83159,21 @@ "entry": "POKENAME is a gentle creature that fights only to protect the Pokémon sharing its territory. The bulb on its back is surrounded by thorns and brambles filled with toxins of extreme potency.", "author": "fiordaliso" }, + { + "sprite": "34.111.png", + "entry": "POKENAME recklessly charges intruders to its domain, although few can endure a direct impact from it. Pokémon Rangers keep close tracking systems on the locations of known wild POKENAME.", + "author": "pjporwoll" + }, + { + "sprite": "34.112.png", + "entry": "POKENAME's drill can shred even the strongest armor of the hardiest Steel-type Pokémon. A Pokéstar Studios film series about a Tyranitar forming a contentious alliance with a POKENAME is said to be inspired by territorial interactions on Mt. Silver.", + "author": "pjporwoll" + }, + { + "sprite": "34.113.png", + "entry": "POKENAME seeks a community of people and Pokémon it can trust while it helps care for abandoned Pokémon Eggs. Whenever its pouch does not contain an egg, it begins to grow one that contains a dangerous toxin, which it throws at threats.", + "author": "pjporwoll" + }, { "sprite": "34.124.png", "entry": "The mysteries of Jynx carry over into POKENAME. It kisses foes first before biting them.", @@ -81789,16 +83229,31 @@ "entry": "Despite its powerful body that is well suited for combat, wild POKENAME do not fight very often. Instead, POKENAME typically paralyze prey with a sudden Glare and then devour them whole.", "author": "bobosmith01" }, + { + "sprite": "34.242.png", + "entry": "A wild POKENAME is often seen followed by a group of newly hatched Pokémon of various species. It appears annoyed by the group, but also protects against even perceived dangers, leading researchers to believe it loves those it hatches.", + "author": "pjporwoll" + }, { "sprite": "34.256.png", "entry": "As aggressive as it is strong, wild POKENAME will often form large territories that they jealously guard from rivals. Its sharp beak and talons are said to be hard enough to cut through diamond.", "author": "theunholyhandgrenade" }, + { + "sprite": "34.259.png", + "entry": "POKENAME has refused to evolve until it perfects its ability to fight off egg thieves. Its tail packs a wallop for its small stature, but even that does not deter many egg-seeking predators.", + "author": "pjporwoll" + }, { "sprite": "34.26.png", "entry": "POKENAME move through hopping. Each hop causes the ground to shake, making other nearby Pokémon flee in fear of its might. They only eat flora.", "author": "bobosmith01" }, + { + "sprite": "34.265.png", + "entry": "POKENAME primarily fights with its destructively strong tail since its arms have lost some of their reach and mobility with its increased armor. When it needs to descend in its mountainous habitat, it rolls while protected by its hide.", + "author": "pjporwoll" + }, { "sprite": "34.288.png", "entry": "The blades on POKENAME's arms and its horn are highly poisonous. It's prone to bursts of anger if its Trainer doesn't make it fight enough.", @@ -81854,6 +83309,21 @@ "entry": "The power of Moon Stones has made POKENAME completely nocturnal. They are extremely rare, possess incredible hearing and jumping ability, and have hundreds of microscopic poisonous spines across their bodies.", "author": "bobosmith01" }, + { + "sprite": "34.375.png", + "entry": "POKENAME charges recklessly whenever it becomes angry or threatened. It stops to sleep in the debris of its rampage. This Pokémon is not advised for inexperienced Trainers.", + "author": "pjporwoll" + }, + { + "sprite": "34.376.png", + "entry": "POKENAME's two heads each have different battle tactics, one preferring offense and the other preferring defense. If the two heads stop arguing to coordinate, it is dangerous in battle.", + "author": "pjporwoll" + }, + { + "sprite": "34.377.png", + "entry": "Researchers believe POKENAME's territorial nature is due to it being attacked often when it did not have sight at previous stages. It uses its wings to conduct surprise attacks, closing the membranes and striking with the venomous spikes.", + "author": "pjporwoll" + }, { "sprite": "34.40.png", "entry": "Male POKENAME are easily wooed into joining other colonies by one colony singing in better harmony than their own. They act as bodyguards for female POKENAME and act as conductors for Nidopuff.", @@ -81934,6 +83404,11 @@ "entry": "POKENAME's poison is concentrated entirely in its tail. In a fight, it will use the tail as a bludgeoning tool, sapping their foe's strength as it pummels them relentlessly.", "author": "celio_0230" }, + { + "sprite": "34.47.png", + "entry": "POKENAME's mushroom is harvested as an ingredient in the production of X Defense. It uses its powerful arms to topple trees so it can feed on the roots.", + "author": "pjporwoll" + }, { "sprite": "34.490.png", "entry": "While its movement speed is quite slow, POKENAME is a relentless foe who will take anything as a challenge. Its thick hide and powerful arms allow it to rip apart those that try to oppose it. ", @@ -82136,19 +83611,34 @@ }, { "sprite": "340.340.png", - "entry": "Using the full power of the ocean, POKENAME can summon floating waterways to swim to any location it wants. Its fins are made entirely out of water, some say can't be evaporated by even a Groudon.", + "entry": "Using the full power of the ocean, POKENAME can summon floating waterways to swim to any location it wants. Its fins are made entirely out of water, which some say can't be evaporated by even a Groudon.", "author": "soup1900" }, + { + "sprite": "340.340.png", + "entry": "In myths, POKENAME was formed at the genesis of the primordial sea. With full command of the oceans, it could plunge the world into an endless deluge, leaving no traces of land.", + "author": "mepp." + }, { "sprite": "340.340d.png", "entry": "According to ancient mythology, POKENAME is said to lie within the deepest parts of the ocean. With the full power of the sea, POKENAME could drown the entire world, leaving no land above sea level.", "author": "soup1900" }, + { + "sprite": "340.341.png", + "entry": "POKENAME walks along the ocean floor like a beast roams the land. Pokémon which reside in the ocean follow it to find where land is, as POKENAME tends to visit the coasts of regions and roar in anger from beneath the surface.", + "author": "jangodiot" + }, { "sprite": "340.341b.png", "entry": "Historical accounts associate strange weather with sightings of POKENAME. Clashing hurricanes, volcanic lightning, and flooded deserts are attributed to its presence.", "author": "kingd8" }, + { + "sprite": "340.345.png", + "entry": "It slumbers in the deepest oceanic trenches of the world. Legends claim that POKENAME will one day drench the world in endless torrents of rain.", + "author": "mepp." + }, { "sprite": "340.348.png", "entry": "When Genesect are infused with the DNA of Kyogre, a POKENAME is made. It is the ultimate hunter and dominates air, land, and sea with immense power.", @@ -82199,6 +83689,11 @@ "entry": "POKENAME lives quite a wild life, not unlike a tsunami. It surfs from wave to wave; discovering treasure on the ocean floor as it flows. ", "author": "trakito" }, + { + "sprite": "340.436.png", + "entry": "Recent ocean expeditions have discovered POKENAME living 30,000 feet deep underwater. They are scavengers, patiently waiting for leftover scraps to fall from the waters above.", + "author": "mepp." + }, { "sprite": "340.451.png", "entry": "Don't be fooled by its grin. This Pokémon has been known to sink entire islands.", @@ -82329,6 +83824,11 @@ "entry": "It is said that POKENAME can dig from one side of the world to the other in under an hour, going straight through the mantle and core.", "author": "cyprexx" }, + { + "sprite": "341.212.png", + "entry": "Dwelling in the mouths of active volcanoes, POKENAME's markings burn with incandescent energy. It attacks by swinging its super-heated pincers, swiftly incapacitating any foe.", + "author": "mepp." + }, { "sprite": "341.22.png", "entry": "POKENAME is known for its sharp and sturdy beak that it uses to impale its prey. It can be found resting near volcanic ecosystems.", @@ -82394,6 +83894,11 @@ "entry": "POKENAME is a Pokémon feared by many mountain climbers. It uses its tail to chuck huge boulders across the valley. Its jaw is so powerful that it is capable of biting through sturdy mountain rocks, creating its own tunnel systems.", "author": "9000" }, + { + "sprite": "341.340.png", + "entry": "POKENAME digs through the earth as if it was swimming through water. When aggressive, it can cause earthquakes that split entire regions in half.", + "author": "jangodiot" + }, { "sprite": "341.341b.png", "entry": "According to ancient mythology, POKENAME is said to live deep within the mantle layer of the planet. With the full power of the land and magma, POKENAME could cover the entire world in a landmass, leaving no traces of water left.", @@ -82634,6 +84139,11 @@ "entry": "These Pokémon are heralds of disaster, descending from the sky to warn both people and Pokémon of world-changing events. Their horns are said to hold the power to split the sky in two.", "author": "flickeredflame" }, + { + "sprite": "342.315.png", + "entry": "POKENAME's resplendent majesty evokes a sense of awe and reverence from any onlookers as it soars above. Many stories hail it as a guardian of the planet, patrolling the heavens for any cosmic threats.", + "author": "mepp." + }, { "sprite": "342.316.png", "entry": "POKENAME is incredibly sad when it remembers that its tower is in ruins. Sometimes its sadness is so great that it blows the wind harder.", @@ -82724,6 +84234,11 @@ "entry": "POKENAME can stop time, and is constantly using this power to look up for reflections and to tidy up its looks without anyone noticing. However, it becomes too shy and nervous to stop time during a battle.", "author": "epping_forest" }, + { + "sprite": "343.250.png", + "entry": "POKENAME is spoken of in legends as the keeper of time, capable of creating new timelines of history. Whenever a being unnaturally dies, it creates a new timeline where the fatal incident never occurs and their life continues on.", + "author": "soup1900" + }, { "sprite": "343.251.png", "entry": "Those who have reported seeing POKENAME always describe it playing the same song. They also claim the song sounds nostalgically familiar.", @@ -82914,6 +84429,11 @@ "entry": "Despite its diminutive stature, POKENAME is known to pick fights with Pokémon many times its size. Ironically, it wins most of these fights, as it can create rifts in space and will often send its opponent onto the surface of nearby comets.", "author": "agentyoshi" }, + { + "sprite": "344.251.png", + "entry": "POKENAME is thought to have been born on distant constellations. A benevolent Pokémon, it watches over this world as it flies with stardust-cloaked wings.", + "author": "mepp." + }, { "sprite": "344.265.png", "entry": "Its abdomen is lined with mysterious grenade-like objects. Studies suggest that opponents impacted by the detonation of these objects are transported to another dimension. ", @@ -83144,6 +84664,11 @@ "entry": "Born from a cursed game, POKENAME now haunts our world. It speeds around tall grass, hunting down fox Pokémon and their Trainers.", "author": "ethewriter" }, + { + "sprite": "345.295.png", + "entry": "POKENAME was formed by 108 renegade spirits. Bound to ancient crystals, its frightening form twists and writhes like sinister shadows.", + "author": "mepp." + }, { "sprite": "345.314.png", "entry": "Inside this Pokémon's huge mouth is a portal to another twisted dimension. Everything that gets swallowed by POKENAME vanishes for an unknown amount of time, with few ever returning.", @@ -83739,6 +85264,11 @@ "entry": "The cannon on its back has the potential to shoot out high-power water jets, but it prefers to only use lower settings to play with others. It's particularly fond of joining water gun fights with children.", "author": "sk372" }, + { + "sprite": "348.3.png", + "entry": "Although POKENAME's turbine may seem inefficient, it can produce enough energy to power over 5,000 homes in a year. It also uses this turbine in battle, blowing large gusts of wind powerful enough to throw an Onix into the air.", + "author": "operativevalkyrie" + }, { "sprite": "348.315.png", "entry": "Some claim the cannon attached to POKENAME's back can create entire galaxies with a single shot. In battle, it can be switched in order to function as an elemental weapon.", @@ -83784,6 +85314,11 @@ "entry": "POKENAME was first discovered clinging to the exterior of a shuttle returning from space. It is very adaptable, having been found in multiple environments where it has self-modified to acclimate and survive.", "author": "pjporwoll" }, + { + "sprite": "348.38.png", + "entry": "POKENAME's key redeeming factor is its triple energy blaster. It delivers a powerful Techno Blast to any enemies unfortunate enough to get in its way, and its heat drive strengthens the sunlight. The smaller tails function as its ears.", + "author": "operativevalkyrie" + }, { "sprite": "348.4.png", "entry": "Its cannon-like tail can emit short yet potent bursts of flame. The type of fire it emits can be adjusted to allow it to be more effective against an opponent.", @@ -83829,11 +85364,26 @@ "entry": "POKENAME can warm surrounding water with its tail and favors hot springs. Its tail can also assist it while swimming via underwater propulsion.", "author": "final_courtesy" }, + { + "sprite": "349.135.png", + "entry": "Lightning courses across POKENAME's regal white fur at all times, though it will not harm those it trusts. Those that incite its ire will face its wrath in the form of a searing flame breath with electricity mixed within.", + "author": "sk372" + }, + { + "sprite": "349.147.png", + "entry": "POKENAME is rarely spotted in the wild, as it seems to only inhabit lakes with the most pristine of waters. It's said that it will appear before those with honest hearts and grant them a mysterious boon.", + "author": "sk372" + }, { "sprite": "349.164.png", "entry": "A wise Pokémon that is said to know the ultimate truth of the universe. It rarely interacts with others or shares its wisdom, flying away in a burst of flame to roost somewhere in solitude.", "author": "sk372" }, + { + "sprite": "349.175.png", + "entry": "Because its small body is still growing, POKENAME's powers are not fully contained, leading one wing to be perpetually on fire. POKENAME tries hard to maintain discipline and control so as not to burn those it cares about.", + "author": "sk372" + }, { "sprite": "349.194.png", "entry": "A terribly vindictive Pokémon, it demands all that see it to wholly embrace a truth it presents, otherwise, it obliterates them to smithereens with a Flame Charge. These truths are not always correct though and can be dangerous to pursue.", @@ -83854,6 +85404,11 @@ "entry": "With proper control, a POKENAME's flames could hold the power to change the world's weather. Fortunately, they only seem intent on using this immense power to illuminate large areas in order to more easily find sparkling objects to fixate on.", "author": "herrskorpion" }, + { + "sprite": "349.203.png", + "entry": "POKENAME's back half has a distinctly different appearance, and most of the time seems to be at odds with the front half. The tail fires what looks like lightning from its mouth, but it is actually concentrated bursts of fire.", + "author": "sk372" + }, { "sprite": "349.233.png", "entry": "POKENAME was created to automatically search for and test truth conditionals in code. However, because there were more truths to find in the real world than in virtual space, the species escaped its artificial environment.", @@ -83864,6 +85419,16 @@ "entry": "The claws and the white orb floating above its back are connected by a scorching-hot fluid. It's said that wounds caused by the claws don't heal.", "author": "raptorroocool" }, + { + "sprite": "349.284.png", + "entry": "The physical strength of POKENAME is near-unparalleled. It is said that it can both level a city, and drag the weight of the land it sits upon.", + "author": "theartemis1" + }, + { + "sprite": "349.287.png", + "entry": "POKENAME wanders the region in search of a worthy trainer, leaving trails of fire behind in forests. Its image is still revered as a symbol of loyalty in many societies.", + "author": "hinochi." + }, { "sprite": "349.296.png", "entry": "Liars and schemers will never befriend this Pokémon. In fact, they should avoid it at all costs, lest they suffer the fiery consequences. ", @@ -83934,6 +85499,11 @@ "entry": "Those who cross the seas seeking truth may catch a glimpse of this legendary Pokémon. The fiery opals on its fins can alter the world's weather.", "author": ".realthree" }, + { + "sprite": "349.342.png", + "entry": "POKENAME soars above the clouds, its white flames burning bright against the endless sky. Legends say its presence brings calm to storms while igniting the air with blazing truth.", + "author": "_harmedx" + }, { "sprite": "349.345.png", "entry": "This terrifying behemoth resides primarily in the Distortion World. The heat emitted by POKENAME burns brighter than a thousand stars. Its numerous teeth and incredible speed make it a relentless predator.", @@ -84084,6 +85654,11 @@ "entry": "POKENAME gallops across the world in pursuit of truth. It is said that it tends to appear before those who search for their own truth.", "author": "nellnast42" }, + { + "sprite": "349.79.png", + "entry": "POKENAME has a placid, simple mind and behaves in a friendly manner to all, unless it senses a dishonest heart. It shuns them, refusing to interact with them until they change their ways.", + "author": "sk372" + }, { "sprite": "349.84.png", "entry": "POKENAME's faux head serves a dual purpose: It blocks attacks aimed at the real head, and it charges heat for attacks.", @@ -84494,6 +86069,11 @@ "entry": "Able to generate endless electric energy on its legs, which function as generators, POKENAME races across the land at lighting speed. Its powerful, thunderous kicks obliterate anything, inspiring the creation of a global hit shonen manga!", "author": "leeto64" }, + { + "sprite": "350.13.png", + "entry": "It stores over five billion volts in its body. POKENAME has a short temper and has been known to cause entire forests to burn down over simple disputes with other Pokémon.", + "author": "jangodiot" + }, { "sprite": "350.130a.png", "entry": "A dire leviathan that dwells in the utmost depths of the ocean, only ever spotted when its lightning tears through the black.", @@ -84509,11 +86089,21 @@ "entry": "POKENAME's cocoon crackles with blue lightning, its body generating more and more electricity as it changes. When evolution is imminent, it is a veritable maelstrom of crackling bolts firing in all directions.", "author": "sk372" }, + { + "sprite": "350.18.png", + "entry": "POKENAME can accelerate to a massive top speed almost instantly, cutting through the air like a thunderbolt. Military institutions are considering developing fighter jets based on its design.", + "author": "sk372" + }, { "sprite": "350.186.png", "entry": "A powerful toad from legend, POKENAME appears in a flash of thunder and lightning to aid those in need.", "author": "togetik" }, + { + "sprite": "350.203.png", + "entry": "POKENAME's back half has a distinctly different appearance, and most of the time seems to be at odds with the front half. The tail breathes what appears to be bright fire, but is in actuality dispelled electrical energy.", + "author": "sk372" + }, { "sprite": "350.205.png", "entry": "A faint whirring noise can be constantly heard from POKENAME generating electricity inside its shell. It discharges this electricity as incredibly devastating lightning bolts when it needs to defend itself.", @@ -84584,6 +86174,11 @@ "entry": "POKENAME is only ever seen flying in the sky during lunar eclipses. It only allows those it shares a close bond with to ride on its back.", "author": "kittyluv090" }, + { + "sprite": "350.34.png", + "entry": "Aggressive and domineering, POKENAME rarely hesitates to show off its massive strength. It has a habit of draining electricity from power lines before knocking down the poles with its powerful tail.", + "author": "sk372" + }, { "sprite": "350.360.png", "entry": "Despite the immense power it holds within, it mostly uses it for harmless pranks. It has immaculate skill in regulating voltage output due to this.", @@ -84594,6 +86189,11 @@ "entry": "Discovered in Unova, this Pokémon seems to mimic both the form and function of a generator. A small, dragon-like entity has been seen scurrying about inside the \"machine.\" providing power to those it serves.", "author": "moopse" }, + { + "sprite": "350.38.png", + "entry": "Each of POKENAME's tails is tipped with a potent electricity generator. Tapping all nine tips together at once creates lightning bursts strong enough to leave large craters behind.", + "author": "sk372" + }, { "sprite": "350.380.png", "entry": "POKENAME feeds off of radio waves and other small frequencies to charge electrical energy. In some respects, POKENAME acts like a satellite.", @@ -84624,11 +86224,26 @@ "entry": "Work to adapt the noir novel \"Then I Saw the POKENAME\" into a film was halted due to the film crew being unable to locate an actual POKENAME. Many say this is due to the legend claiming that only those who pursue their childhood ideals will find it.", "author": ".realthree" }, + { + "sprite": "350.47.png", + "entry": "The giant mushroom generates electricity in POKENAME's claws that it uses to fire small bolts of lightning that carve holes in old trees. After being zapped, the holes will grow countless fungi in the following weeks.", + "author": "sk372" + }, + { + "sprite": "350.57.png", + "entry": "Every swing of POKENAME's fists is accompanied with lightning fueled by its own incessant anger. It yearns to fight combatants with strong enough ideals to withstand or even best its raging flurries of punches.", + "author": "sk372" + }, { "sprite": "350.76.png", "entry": "This Pokémon is a living generator, able to make energy from nothing. It is highly sought after, as less than 20 are known to exist.", "author": "toxicrown" }, + { + "sprite": "350.9.png", + "entry": "It is said that none can even approach POKENAME's lair unless it allows them to. The powerful cannons on its shell fire lightning with great accuracy up to several miles, ensuring it can deter any potential intruders.", + "author": "sk372" + }, { "sprite": "351.105.png", "entry": "Studies have shown that the bones carried by POKENAME often date back to ancient times. The ice it shapes into the axe blade never melts.", @@ -84774,6 +86389,11 @@ "entry": "The thorny vines wrapped around POKENAME's arms can loosen and extend out to grab and constrict prey. Once it ensnares a victim, it pounces quickly and delivers a crushing and venomous bite with its powerful jaws.", "author": "sk372" }, + { + "sprite": "352.160.png", + "entry": "POKENAME has long been renowned for its dashing appearance and attitude. Gardeners often use it for its sharp claws, which can replace tools like gardening forks and shears.", + "author": "mepp." + }, { "sprite": "352.169.png", "entry": "With its powerful wings, POKENAME can reach upwards of 100 mph during flight even in the most cramped of caves. Its fangs can pierce an Aggron's hide.", @@ -85839,6 +87459,11 @@ "entry": "POKENAME is intensely rivalrous with other Pokémon. It will engage in mid-air jousting matches to determine dominance, using its speed and agility to assert its position as the superior fighter.", "author": ".izik" }, + { + "sprite": "356.331.png", + "entry": "People must work hard to show their worth and earn the ability to command these proud Pokémon. Even POKENAME hatched and evolved by their Trainers can abandon them at the first sign of weakness.", + "author": "milchik" + }, { "sprite": "356.339.png", "entry": "POKENAME has sharp ribbons that it uses to cut through steel. Those ribbons move almost all the time but they move so fast that the human eye doesn't detect the movement, giving the illusion of blurry blades.", @@ -86059,11 +87684,6 @@ "entry": "It emits an aura while it rolls that can cause negative feelings in adults. This can cause crying, fits of rage, or even a deep depression.", "author": ".izik" }, - { - "sprite": "357.254b.png", - "entry": "POKENAME inhabits an abandoned puppet. By pulling its own strings it can manipulate its body in impossible ways.", - "author": "atlas333" - }, { "sprite": "357.276.png", "entry": "It spends its days gathering dead flowers and bringing them back to its den. It can eat a pound of flowers for a single meal.", @@ -86579,11 +88199,6 @@ "entry": "Combining two POKENAME with a DNA splicer revealed Rotom's truest form: Pure energy.", "author": "xtjs2018x" }, - { - "sprite": "358.358d.png", - "entry": "POKENAME was designed as the perfect household appliance, able to handle every task. However, after being possessed by a Rotom, it now enjoys the powers of all its forms at once.", - "author": "atlas333" - }, { "sprite": "358.360.png", "entry": "POKENAME is super energetic and chaotic. Wild POKENAME can be seen hanging around power lines.", @@ -87574,6 +89189,11 @@ "entry": "It burrows underground, using tufts of its own fur to line its den. The cotton retains warmth, making its nest one of the coziest hiding spots in the wild.", "author": ".izik" }, + { + "sprite": "360.254.png", + "entry": "Once, a poaching ring attempted to obtain POKENAME's prized cotton fluff for luxury coats. This was quickly shut down when POKENAME proved impossible to reach in the tallest trees and poachers kept getting fruit-related injuries.", + "author": "redmagecole" + }, { "sprite": "360.270.png", "entry": "POKENAME flits through the breeze sowing seeds of mischief and joy. It brings whimsy to the skies, enchanting all who witness its ethereal dance.", @@ -87639,6 +89259,11 @@ "entry": "The hair of POKENAME is not this flowing by default. Instead, this is the result of many hours of its Trainer rubbing shampoo into its scalp.", "author": "funkytomate" }, + { + "sprite": "360.333.png", + "entry": "When children get lost in the mountains, POKENAME will float by on the wind to help guide them to safety. These good deeds backfired, as its big, cute, and fluffy appearance has made children get lost on purpose just to meet a POKENAME.", + "author": "redmagecole" + }, { "sprite": "360.338.png", "entry": "This sneaky Pokémon is known to disguise itself in fields of cotton. When the time is right, it jumps out and strikes.", @@ -87649,6 +89274,11 @@ "entry": "The cotton from POKENAME is so soft that even it can't resist sleeping on its own fluff. Harvesting POKENAME's cotton is said to be an easy job.", "author": "xenophacilus" }, + { + "sprite": "360.374.png", + "entry": "As POKENAME floats along whirlwinds, cotton from its wings breaks off and blows away. The cotton contains pollen from flowers POKENAME pollinated and often causes allergy outbreaks when it floats through cities.", + "author": "chibitales" + }, { "sprite": "360.374d.png", "entry": "Due to its cottony wings, POKENAME only takes to the air on great gusts of wind. Many Trainers are found cuddling them on the ground due to the pleasant heat they give off.", @@ -87669,6 +89299,11 @@ "entry": "POKENAME can produce up to 500 pounds of silk a day, using its excess silk to coat its body. Forests where it lives are coated head-to-toe in its thick silk.", "author": "mistymagius" }, + { + "sprite": "360.42.png", + "entry": "Riding along the night winds, POKENAME goes around cotton fields to bite off cotton from the plants. Unfortunately, if POKENAME gets too much cotton stuck in its teeth, it will become too heavy to fly.", + "author": "soup1900" + }, { "sprite": "360.420.png", "entry": "POKENAME enjoy riding the wind using their soft, light tails to stay airborne. If they see a passerby, they enjoy giving a mischievous shock.", @@ -87721,8 +89356,8 @@ }, { "sprite": "360.496.png", - "entry": "In groups of this POKENAME, those with the largest hair are considered the leaders. In battle, it will often protect its hair over itself. ", - "author": "atlas333" + "entry": "POKENAME stores large amounts of water in the cotton on its head. It submerges itself in ponds for hours, as drying out can prove fatal.", + "author": ".izik" }, { "sprite": "360.5.png", @@ -87749,6 +89384,11 @@ "entry": "It is wonderful to ride on a fluffy POKENAME. However, be far away during battle: the regenerative cotton will explode when ignited by its fire!", "author": "bobosmith01" }, + { + "sprite": "360.95.png", + "entry": "POKENAME's large body is made of cotton fluff and tightly-packed dirt. Due to difficulties tunneling through cavern walls, POKENAME contents itself with traveling warm climates and exploring various cotton mills.", + "author": "redmagecole" + }, { "sprite": "360.97.png", "entry": "POKENAME likes to help any weary Trainers it finds throughout the night. It makes soft beds out of cotton, and hypnotises Trainers to help them sleep.", @@ -87809,6 +89449,11 @@ "entry": "A Pokémon known for its quick temper and destructive capabilities. Although they are rash, they are vital in protecting their surrounding ecosystems.", "author": "rawthorn" }, + { + "sprite": "361.235.png", + "entry": "This Pokémon roams places with heavy foot traffic but only appears when few people are around, secretly painting. POKENAME practice their graffiti where everyone can later see their work.", + "author": "jangodiot" + }, { "sprite": "361.25.png", "entry": "POKENAME's glasses protect its vision from the intense light caused by its Electric-type attacks. This Pokémon is known for its swaggering attitude.", @@ -87934,6 +89579,11 @@ "entry": "POKENAME soars through the skies singing in a rumbling baritone until it dive-bombs prey into the desert sands or mountainous soil. After eating its meal, POKENAME must spend hours preening to clean its cloud-like wings of dirt.", "author": "pjporwoll" }, + { + "sprite": "361.464.png", + "entry": "POKENAME will spit sand into the eyes of its opponents to confuse and blind them. It will wear them down using fast attacks and the obsidian spikes in its mane until it can finish them with a Crunch.", + "author": "chibitales" + }, { "sprite": "361.494.png", "entry": "POKENAME fiercely guards its sun-drenched dune territory. Its massive jaws can crush vehicles, and it bites without warning if approached.", @@ -88239,6 +89889,11 @@ "entry": "The tip of its horn has tiny, wall-crawling legs. It suspends itself from ceilings before ambushing prey with an expertly aimed web.", "author": ".izik" }, + { + "sprite": "363.216.png", + "entry": "When it hatches, its mother uses web and honey to knit a toy that resembles a baby POKENAME. It carries the toy wherever it goes. The sweet scent of honey combined with how soft the toy is helps this timid Pokémon to calm down whenever it's stressed.", + "author": "milchik" + }, { "sprite": "363.242.png", "entry": "It carries its young in the pouch on its belly. If there is nothing in its pouch, it will adopt and carry any Pokémon or Egg that will fit.", @@ -88374,11 +90029,6 @@ "entry": "Electricians incorporate its silk into power lines for tall buildings. The material's incredible strength ensures long-lasting stability.", "author": ".izik" }, - { - "sprite": "363.421a.png", - "entry": "POKENAME carries a giant crystal that holds a strong magnetic charge like those found in Unova. It uses this gem as a battery to unleash its electric powers. ", - "author": "atlas333" - }, { "sprite": "363.428.png", "entry": "Having grown beyond its icy shell, a POKENAME is reborn as an unnerving creature. Most are unable to stand its sight for long.", @@ -89239,6 +90889,11 @@ "entry": "POKENAME is most frequently seen in cities with canals, where it supposedly leads recently deceased souls out of the city and into the afterlife. The material of the shell is incredibly dense, especially in contrast to its glass face and belly.", "author": "pjporwoll" }, + { + "sprite": "366.73.png", + "entry": "POKENAME's singular purple orb will start flashing if someone who is nearing death is nearby. It then wraps around them with its tentacles and doesn't let go until they pass on.", + "author": "soup1900" + }, { "sprite": "366.8.png", "entry": "Groups of POKENAME are seen swimming near the sites of water disasters. The ghostly tail gets larger over time, and urban legends say it increases in size with the amount of souls POKENAME has eaten.", @@ -89414,6 +91069,11 @@ "entry": "It sits motionless for hours at a time, waiting for prey to be attracted by its flame. When a victim gets close, its jaws snap shut around them.", "author": "wigglypon" }, + { + "sprite": "367.306.png", + "entry": "POKENAME is coated in a thick hide resistant to its fire. It charges into opponents headfirst and can burn even the most resilient Pokémon, but it sometimes burns itself when its hide is damaged.", + "author": "operativevalkyrie" + }, { "sprite": "367.313a.png", "entry": "POKENAME is a brawler of great renown in its habitat. It vows to always be there for its tribe in times of need. Few can match the strength it has.", @@ -89719,11 +91379,21 @@ "entry": "Lying still in murky waters for hours on end, passing Trainers mistake POKENAME for a drifting log. Its halberd-like pincers act as a secondary jaw. ", "author": "stormknight20" }, + { + "sprite": "368.164.png", + "entry": "Even in the darkness of night, POKENAME's blood-red eyes glow fiercely. Any prey is swiftly taken down with one strike from its sharp crest or talons.", + "author": "mepp." + }, { "sprite": "368.182.png", "entry": "POKENAME dances with swift twirls and rapid darting movements, moving with surprising speed for its size. The blades around its neck are used as a defence mechanism, cutting through almost anything they come into contact with.", "author": "katie" }, + { + "sprite": "368.185.png", + "entry": "Contrary to how Sudowoodo mimic trees, POKENAME go out of their way to destroy them. This Pokémon is, ironically, usually caught by climate activists to prevent them from causing terror in the wild.", + "author": "jangodiot" + }, { "sprite": "368.195.png", "entry": "Despite their appearance, POKENAME are actually very docile and incredibly kind to strangers.", @@ -90049,6 +91719,11 @@ "entry": "The runes on POKENAME's wings help their heavy body levitate. They avoid battling to protect their vulnerable core.", "author": "ohok3441" }, + { + "sprite": "369.411.png", + "entry": "Legends claim that POKENAME come from a civilization so old that it can't be found on any map. It's theorized that the reason they possess globes is to try and show people where their homes used to be.", + "author": "wildheartrazorfangs" + }, { "sprite": "369.415.png", "entry": "POKENAME uses its razor-sharp tusks to fend off intruders near temples it guards. Its blades are so strong they can cleave a pickup truck clean in two.", @@ -90279,6 +91954,11 @@ "entry": "POKENAME's tails emit such intense heat that they must stay close to ice-cold water to prevent themselves from drying out. They are able to hold their tails in such a way that they can hold water and can hurl this scalding liquid at foes.", "author": "whatagooddaytodie" }, + { + "sprite": "37.198.png", + "entry": "In medieval times, POKENAME were thought to be the sly familiars of witches. Superstitions surrounding these Pokémon as bringers of misfortune persist to this day.", + "author": "mepp." + }, { "sprite": "37.20.png", "entry": "POKENAME marks its territory by branding nearby trees with its hot incisors. When the weather gets too cold, its tails produce thick clouds of smoke that give it difficulty breathing.", @@ -90684,6 +92364,11 @@ "entry": "While swimming, POKENAME inflates the white sacs on its body to allow it to float on the water. When threatened, POKENAME sprays a white ink from its trunk that can cause permanent blindness. ", "author": "mistymagius" }, + { + "sprite": "370.235.png", + "entry": "The hand on its tail is constantly soaked in fluid. POKENAME use markings from their tail's fingertips to communicate messages with each other.", + "author": "jangodiot" + }, { "sprite": "370.238.png", "entry": "It has a fixation on kissing other creatures. Escaping POKENAME's affection is difficult, as it will expel parts of its body from its mouth in order to let it kiss things from a distance.", @@ -90704,6 +92389,11 @@ "entry": "POKENAME uses its internal organs to grab wild Berries and food, as well as to regurgitate the eaten food to eat once more.", "author": "floweronbread" }, + { + "sprite": "370.261.png", + "entry": "Schools of Remoraid often get stuck onto POKENAME's body due to the sticky mucous that covers it. It must then eject and use its internal organs to gently free the Remoraid and itself from this sticky situation.", + "author": "soup1900" + }, { "sprite": "370.27.png", "entry": "From the sea's embrace, it ejects its organs to ensnare foes. It's considered a symbol of the ocean's wrath and verdant life.", @@ -91129,6 +92819,11 @@ "entry": "With wings shaped like jagged keys, POKENAME strikes prey in quick, darting bursts. Its metallic slashes leave deep cuts.", "author": ".izik" }, + { + "sprite": "371.212.png", + "entry": "POKENAME are known to break into mayoral offices to steal their giant \"key to the city\" awards. Instead of actually using the keys to open doors, they simply smash through any door in their way instead.", + "author": "soup1900" + }, { "sprite": "371.213.png", "entry": "POKENAME loves collecting keys and will go to extreme lengths to obtain them. It is so protective of its keys, it stores them in its rock-hard shell to protect them from thieves like Murkrow.", @@ -91454,6 +93149,11 @@ "entry": "POKENAME's neck flower produces a spicy aroma that irritates the nose. It uses its large wings to blow this scent towards opponents to disorient them before attacking.", "author": "chibitales" }, + { + "sprite": "372.16.png", + "entry": "It uses the feathers that fall from its wings to build warm nests, keeping itself safe from cold and rain. Though not yet fully developed, this Pokémon fears nothing and faces every challenge with unwavering determination.", + "author": "fiordaliso" + }, { "sprite": "372.166.png", "entry": "POKENAME is fire resistant and has a goggle-like film that protects its eyes from smoke, so it is a valuable partner for any Ranger involved in fighting wildfires. It flies with precise maneuvers, fearlessly darting into danger and around obstacles.", @@ -91529,6 +93229,11 @@ "entry": "POKENAME snaps branches off trees with its burning-hot beak. It stacks them with uncanny precision to help build sturdy creek dams.", "author": ".izik" }, + { + "sprite": "372.40.png", + "entry": "Its vibrant plumage is praised by the judges of the most prestigious Pokémon Contests. POKENAME sings jolly melodies, and when it takes flight, it dances gracefully among the flames it conjures and controls around its wide wings.", + "author": "fiordaliso" + }, { "sprite": "372.424.png", "entry": "Despite its wings being located on its head, POKENAME soars with the utmost elegance. This phenomenon is still being studied. ", @@ -91609,6 +93314,11 @@ "entry": "It is very protective of its stuffing and hates when anything touches it. Poachers who try to steal its stuffing will be cursed to have an itchy sensation over their body for the rest of their life. ", "author": "typhloquil" }, + { + "sprite": "373.190.png", + "entry": "When wandering the woods at night, some trainers believe they hear guttural screeching that vaguely sounds like an Aipom's cry. This is actually a POKENAME attempting to help the woodlands sound more alive.", + "author": "redmagecole" + }, { "sprite": "373.198.png", "entry": "POKENAME sets up decoy facsimiles of itself to confuse those it wishes to ambush. As its target stumbles to avoid the fakes scattered around, the real one sneaks up and swipes any shiny valuables it can.", @@ -91624,6 +93334,11 @@ "entry": "The wooden figure it clutches is rumored to speak with the voices of the dead. Those who dare look under its rag are said to hear their own terrified voices echoing back.", "author": "amiel997" }, + { + "sprite": "373.208.png", + "entry": "After all of the difficulties with mimicking Onix, the Mimikyu got together to perfect a costume based on Steelix. POKENAME conceals the several Mimikyu hiding inside of it perfectly, and uses its steel jaw to excavate dirt.", + "author": "redmagecole" + }, { "sprite": "373.209.png", "entry": "It loves to play with others, but often scares people and Pokémon away. If spotted, it is recommended to give a POKENAME positive attention.", @@ -91649,6 +93364,11 @@ "entry": "It runs up to dogs and dog-like Pokémon, wanting to play amongst them, but is often rejected. It can be heard wailing sadly at night.", "author": "abstrusepaladin" }, + { + "sprite": "373.229.png", + "entry": "The eyes on POKENAME's head are false eyes made of will-o-the-wisps. Staring too long at the flame causes strong feelings of anxiety. Despite its scary appearance, POKENAME craves affection.", + "author": "chibitales" + }, { "sprite": "373.24a.png", "entry": "POKENAME bears a smiling hood pattern to befriend human and Pokémon alike. It's often confused when it doesn't work. ", @@ -91664,6 +93384,11 @@ "entry": "Stories say Mimikyu wear Pikachu disguises to attempt to make friends. These stories have gotten so popular that nowadays, we often see the opposite.", "author": "faelocke" }, + { + "sprite": "373.254.png", + "entry": "POKENAME can't walk, as its nubby wooden legs are mostly there for decoration. Instead, POKENAME uses its two giant hands to mimic Ambipom's swinging tails until it gets frustrated when there are a lack of trees to swing on.", + "author": "redmagecole" + }, { "sprite": "373.255.png", "entry": "POKENAME disguises itself as a handmade marionette of Mismagius. It will happily perform for delighted audiences, but will curse anyone who tries to look at its true form inside the puppet.", @@ -91764,6 +93489,16 @@ "entry": "POKENAME pitifully whacks passersby with its draped stick. At first seeming to be unharmed, they eventually pass out, their life force sucked away.", "author": "abstrusepaladin" }, + { + "sprite": "373.333.png", + "entry": "After fashioning itself a suit of armor based on Aggron, POKENAME excitedly waits in museums for collectors to buy it. When they dismiss its suit as mere rocks rather than genuine metal, POKENAME follows them home at night to seek vengeance.", + "author": "redmagecole" + }, + { + "sprite": "373.333a.png", + "entry": "Though POKENAME's appearance resembles Aggron, this is merely a coincidence. Abandoning its old Pikachu costume, POKENAME's new body was fashioned in a rampage to search and destroy any Pikachu it finds.", + "author": "redmagecole" + }, { "sprite": "373.338.png", "entry": "POKENAME may attempt to integrate into society, masquerading as a human. Those who befriend this Pokémon may never be seen again.", @@ -91834,6 +93569,11 @@ "entry": "The powerful energy it emanates scares away Pokémon and Trainer alike. To block this aura, it covers itself with a drab costume.", "author": "hampterbychoice" }, + { + "sprite": "373.390a.png", + "entry": "When POKENAME found a hockey mask to complete its Aron costume, it was overjoyed. Teenagers at summer camps will frequently run away screaming in fear that POKENAME is going to get them, which confuses POKENAME to no end.", + "author": "redmagecole" + }, { "sprite": "373.40.png", "entry": "POKENAME uses household products to maintain its disguise, desperately trying to patch any holes or tears to keep its true body hidden.", @@ -91914,16 +93654,31 @@ "entry": "POKENAME trots about as fast as it can, its disguise flopping around as it does. It dreams of one day being able to run as fast as Rapidash, and race alongside it.", "author": "sk372" }, + { + "sprite": "373.79.png", + "entry": "Despite the costume getting soaked, POKENAME likes to fish exactly like a real Slowpoke. Most Slowpoke don't even notice that POKENAME isn't one of them, and if they do notice, they usually forget a minute later anyway.", + "author": "jangodiot" + }, { "sprite": "373.8.png", "entry": "POKENAME can be found in cities and towns near bodies of water. It constantly begs for water since it is unable to produce its own.", "author": "skymaster426" }, + { + "sprite": "373.80.png", + "entry": "Unlike real Slowbro, POKENAME is actually quite active. The Slowbro it accompanies usually doesn't mind, but the Shellder on their tails become confused when they spot a POKENAME.", + "author": "jangodiot" + }, { "sprite": "373.87.png", "entry": "Inspired by Trainers' love for squishy plushies, POKENAME has gathered as much soft scrap material as possible to make itself extremely squishy and huggable. Despite their loving nature, they are armed and will defend themselves when attacked.", "author": "moopse" }, + { + "sprite": "373.95.png", + "entry": "POKENAME is made of several Mimikyu who shared the common goal to mimic Onix. Even after replacing the top-heavy head with a balloon, and deciding to forgo the rocks in the costume, POKENAME is always struggling to stay up.", + "author": "redmagecole" + }, { "sprite": "374.121.png", "entry": "POKENAME absorbs solar energy on sunny days. It is said its gem can reach temperatures close to the Sun's.", @@ -92179,6 +93934,11 @@ "entry": "Unbelievable heat smolders within POKENAME's body while it waits for evolution. Touching one without suitable gloves could result in a nasty burn.", "author": "bee4082" }, + { + "sprite": "374.3b.png", + "entry": "POKENAME lives in cold climates, and can always sustain a high temperature thanks to the rare volcanic plant on its back. To catch prey, it rolls over in the snow until it is walked upon, then strikes with its claws.", + "author": "operativevalkyrie" + }, { "sprite": "374.404.png", "entry": "POKENAME can't fly and instead uses its wings to scatter spores whenever it senses danger. These spores cause a severe allergic reaction upon contact, making the damaged area look like a high-degree burn.", @@ -92714,6 +94474,11 @@ "entry": "The orbs are believed to be the spirits of Trainers who owned POKENAME. It takes great pleasure in watching weaker Pokémon suffer.", "author": "geminib" }, + { + "sprite": "377.296a.png", + "entry": "POKENAME use their dark auras to attack and punish the people who they believe have justice in their hearts. Because of this, many movies and TV shows use these Pokémon as their villains.", + "author": "soup1900" + }, { "sprite": "377.318.png", "entry": "POKENAME grows new heads constantly. It can only feed two at a time, however, so it discards spare heads. It's thought the spares are used like seeds.", @@ -92784,6 +94549,11 @@ "entry": "It holds onto the remains of its sibling to feel safe. The psychic powers that remain on the skull protect it.", "author": "el_gord0" }, + { + "sprite": "378.131.png", + "entry": "POKENAME is a mythical Pokémon that releases a strange mist wherever it swims. It is believed by many that looking into the mist causes optical illusions depicting past memories, but this has never been proven.", + "author": "operativevalkyrie" + }, { "sprite": "378.137.png", "entry": "POKENAME were primarily used to infiltrate enemy computers via cyberspace due to their near-undetectability. They are now considered obsolete.", @@ -92984,6 +94754,11 @@ "entry": "POKENAME dislike the feel of asphalt on its paws and prefers soft textures that are easy to press into. Urban parks satisfy both its paws feeling comfy, and its desire to spend time with people.", "author": "quackquackattack" }, + { + "sprite": "38.164.png", + "entry": "POKENAME builds its nest atop the tallest trees in the forest to keep other creatures from touching the tails it guards at all costs. When angered, it can breathe flames so intense that they scorch everything growing nearby.", + "author": "fiordaliso" + }, { "sprite": "38.182.png", "entry": "Its nine tails wrap around itself until there is enough light to conduct photosynthesis. It hides a Heat Rock in one of its tails to ensure the sun gives it plenty of energy.", @@ -93174,6 +94949,11 @@ "entry": "POKENAME flies towards streetlights at night. Whenever the light turns off at dawn, it will attempt to reignite the streetlight with its own flames.", "author": "quackquackattack" }, + { + "sprite": "38.53.png", + "entry": "Anyone who dares to touch and mess with POKENAME's neatly groomed fur and tail will be cursed for life. This vicious Pokémon uses the gem on its forehead to hypnotize its prey into standing still or even willingly approaching the hungry POKENAME.", + "author": "milchik" + }, { "sprite": "38.59b.png", "entry": "POKENAME are cruel-natured, with a tendency to toy with their opponents before incinerating them. Old legends say they bear the hatred of 99 vengeful spirits.", @@ -93259,6 +95039,11 @@ "entry": "Despite being endowed with incredible psychic power that does not necessitate movement to use, POKENAME generally chops and kicks while using these powerful long-ranged psychic attacks, perhaps due to its Tyrogue DNA.", "author": "bobosmith01" }, + { + "sprite": "380.287.png", + "entry": "A strange and powerful psychic being that supposedly originated from the deepest reaches of space. POKENAME is able to create black holes, meteors, and other celestial phenomena seemingly at whim with little effort.", + "author": "sk372" + }, { "sprite": "380.308.png", "entry": "Its body is composed entirely of layered sheets of an extremely durable extraterrestrial polymer. ", @@ -93709,6 +95494,11 @@ "entry": "POKENAME is often mistaken for a shooting star due to how fast it moves through the night sky, and the trail of cosmic light it leaves behind.", "author": "kingd8" }, + { + "sprite": "381.388.png", + "entry": "Whenever POKENAME shakes its fur, it spreads a small smattering of stardust laced with faint electricity. The particles glow faintly in the dark, making them a popular accessory for clothing and the like.", + "author": "sk372" + }, { "sprite": "381.392.png", "entry": "It has a joyful nature, but eats and sleeps very often. Disturbing it during its long slumbers will likely result in painful bites.", @@ -94954,6 +96744,11 @@ "entry": "Tricksters by nature, POKENAME revel in pulling pranks on others. It's thought that the extravagance of their pranks reflects their fondness for the victim. Unfortunately, these fusions are often abandoned due to such shenanigans.", "author": "howlingstarr" }, + { + "sprite": "384.98.png", + "entry": "Although this Pokémon's paw-like pincers are soft to the touch, they are powerful enough to crush through rocks. POKENAME trains tirelessly to learn how to channel its aura into its pincers and form its very first Aura Sphere.", + "author": "milchik" + }, { "sprite": "385.11.png", "entry": "Because its metabolism is so slow, POKENAME takes an inordinate amount of time to evolve. It hides itself deep in trees to wait out the weeks to months it may take to emerge from its shell.", @@ -95279,6 +97074,11 @@ "entry": "It uses the claw-like appendage on its head to dig holes in the dirt to hide in. POKENAME enjoys surprising passersby by popping out of its hole and \"waving\" its claw at them playfully.", "author": "sk372" }, + { + "sprite": "386.177.png", + "entry": "Despite POKENAME's small size, it is unafraid of any threat. It valiantly patrols the forest, punishing unruly Pokémon with its powerful red appendages.", + "author": "mepp." + }, { "sprite": "386.179.png", "entry": "Herds of POKENAME sprint across fields, buzzing with energy. They transfer mild charges to each other as they run in sync.", @@ -96009,6 +97809,11 @@ "entry": "POKENAME is skittish and shy, sending spores out at any creature who comes too close. It has multiple methods of paralyzing its foes. It seems to have lost the confidence it had when it was small.", "author": "leonian1586" }, + { + "sprite": "388.476.png", + "entry": "POKENAME uses its photosynthetic fur to take in sunlight to generate electricity. When threatened, a POKENAME will release a pleasant aroma that can blind its foes so that it may run away.", + "author": "sakuraneko" + }, { "sprite": "388.495.png", "entry": "POKENAME uses the lily pad on its head to absorb lightning during storms. It stores the energy to shock predators that get too close.", @@ -96489,6 +98294,11 @@ "entry": "POKENAME makes its burrows amongst tree roots, using the extra structure of the roots to reinforce its underground home. At night, they often come to the mouth of their burrows and sing out to one another to communicate.", "author": "katie" }, + { + "sprite": "39.273.png", + "entry": "POKENAME trains with others of its kind, boxing with its puffy claws and racing across tree branches. When it feels prepared to strike out on its own, it travels into the mountains in search of a Moon Stone to evolve.", + "author": "pjporwoll" + }, { "sprite": "39.275.png", "entry": "POKENAME adores repeating music it hears with a variety of boops and beeps. It likes to insert itself into different mediums to continue singing.", @@ -96694,6 +98504,21 @@ "entry": "POKENAME is extremely affectionate and cuddly, which makes it a popular pet. When it feels comfortable, it hums gently to itself.", "author": "chorb33" }, + { + "sprite": "39.74.png", + "entry": "POKENAME is confident in its singing and will not hesitate to use its powerful fists to wallop anything it thinks is mocking or ignoring it. Its vocalizations invigorate listeners, pumping them up for physical feats of strength.", + "author": "pjporwoll" + }, + { + "sprite": "39.75.png", + "entry": "POKENAME's fur clumps up with dirt and stones as it wanders about its habitat, leading to a rough, bumpy appearance. When it rolls downhill, the clumps become dislodged and are collected by nesting Pokémon, like Geotto.", + "author": "pjporwoll" + }, + { + "sprite": "39.76.png", + "entry": "POKENAME's lack of care for its coat has turned the clumps of fur into dense tufts that impede its movement but aid in protection. It is lighter than its appearance indicates, which can be witnessed as it bounces along mountain ranges.", + "author": "pjporwoll" + }, { "sprite": "39.8.png", "entry": "POKENAME accompanies its soporific singing with a rhythmic dragging of its tail. It protects its flexible body with a hard shell.", @@ -97004,6 +98829,11 @@ "entry": "Its metallic body is sturdy, but the heavy weight leaves POKENAME with little ability to move. For locomotion, it ejects its innards, which are also coated in a metal shell, in order to forcibly drag itself around slowly.", "author": "sk372" }, + { + "sprite": "390.373.png", + "entry": "POKENAME's costume is made out of actual steel that Aron sheds when it evolves. POKENAME does this in the hopes that one day, it will evolve into a Lairon as well.", + "author": "redmagecole" + }, { "sprite": "390.382.png", "entry": "Its heavy, sturdy body means that it cannot jump very far on its own power. It digs through and consumes soft soil for nutrients that keep its shell strong and resilient.", @@ -97064,6 +98894,16 @@ "entry": "The circle on its chest is actually an eye. It is thought that this Pokémon was supposed to act as a surveillance robot for its master long ago.", "author": "incognito1234" }, + { + "sprite": "390.417.png", + "entry": "POKENAME has heavy wings made of steel that prevent it from taking flight. Instead, it burrows just below the ground and eats plant roots.", + "author": "quackquackattack" + }, + { + "sprite": "390.418.png", + "entry": "POKENAME can deflect rocks thrown at it by rowdy kids. This is because its metallic wings cause the rocks to bounce off harmlessly.", + "author": "quackquackattack" + }, { "sprite": "390.421.png", "entry": "POKENAME rarely leave their caves. Any instance that they do is purely for scavenging for the metal they feed on.", @@ -97314,6 +99154,11 @@ "entry": "Their tails resemble a morningstar or flail, which they use to slam into opponents in battle. Each tail is able to act independently to smash rocks or other obstacles in quick succession.", "author": "quackquackattack" }, + { + "sprite": "391.372.png", + "entry": "POKENAME are an apex predator that eat large rodent Pokémon such as Raticate. Their metallic wings cannot be pierced by a Raticate's teeth, so the rodent Pokémon have little to no defenses against this avian Pokémon.", + "author": "quackquackattack" + }, { "sprite": "391.376.png", "entry": "POKENAME's two heads are made of dense iron. While sleeping in its cave, the two heads unintentionally alternate snoring, the sound echoing deep through the tunnels.", @@ -97409,6 +99254,11 @@ "entry": "POKENAME move their bodies in a sidewinding motion to bury themselves in the sand. They leave the tip of their tail exposed, resembling a worm to lure in small, unsuspecting bird Pokémon to ambush.", "author": "ultrazombie930" }, + { + "sprite": "392.15.png", + "entry": "POKENAME hides in rocky crevasses, waiting for any prey that passes by. When it strikes, it mercilessly injects a powerful poison into its victim.", + "author": "mepp." + }, { "sprite": "392.154.png", "entry": "Hiding amongst the foliage until only its flower is visible, POKENAME uses a sweet scent to lure in bug Pokémon to pollinate the flower before devouring them in a single bite.", @@ -98219,6 +100069,11 @@ "entry": "For the longest period of time, the only proof of this Pokémon's existence was a single photograph in a magazine. It is quite striking.", "author": "barthandelus_real" }, + { + "sprite": "395.354.png", + "entry": "The muscles in POKENAME's legs allow it to kick with destructive force and bound away quickly if in a rough spot. It stares at bird Pokémon in the sky, envious of their ability to fly.", + "author": "chibitales" + }, { "sprite": "395.375.png", "entry": "Its skin can dry out quickly and crack. Due to this, wild POKENAME tend to stay close to rivers, creeks, and other bodies of water.", @@ -98239,6 +100094,11 @@ "entry": "The helmet on its body is made of an extremely hard metal. It smashes its helmet into trees to break branches off and eat the fruit.", "author": ".izik" }, + { + "sprite": "395.403.png", + "entry": "The muscles in POKENAME's ears are so strong, a single punch can knock the wind out of a Snorlax. Its cotton-like fur often gets matted and must be groomed to maintain its health.", + "author": "chibitales" + }, { "sprite": "395.414.png", "entry": "Since ancient times, blacksmiths have used POKENAME to forcibly shape metal. This is due to the Pokémon's high tolerance to heat.", @@ -98284,6 +100144,11 @@ "entry": "POKENAME emits telekinetic waves through its antennae, using them to levitate discarded toys in an effort to simulate flight. It nests near toy stores, hoping to find the perfect abandoned toy.", "author": ".izik" }, + { + "sprite": "395.5.png", + "entry": "POKENAME is a hot-tempered Pokémon that breathes searing flames at anyone who approaches. Its anger stems from shame over its inability to take flight.", + "author": "fiordaliso" + }, { "sprite": "395.50.png", "entry": "It can burrow through solid rock with ease. It hunts its prey by burrowing under them and launching them into the air with a powerful headbutt.", @@ -98369,6 +100234,11 @@ "entry": "A thick iron shell shields POKENAME's head from cave-ins and ambushes. It constantly searches for iron ore, which it consumes to reinforce its armor.", "author": ".izik" }, + { + "sprite": "396.354.png", + "entry": "The heavy plating on its hands and ears makes it hard for POKENAME to move quickly. Instead, it uses these plates to bat away threats and moves to a safer location.", + "author": "chibitales" + }, { "sprite": "396.369.png", "entry": "Ancient records tell of POKENAME aiding in mountain rescues. Its heavy plating allowed it to march through avalanches unscathed, carrying survivors to safety.", @@ -99544,6 +101414,11 @@ "entry": "The flower bud on its back resembles a flame-tinged blossom. The bud releases a fragrant smell full of toxins that will burn your eyes.", "author": "soup1900" }, + { + "sprite": "4.20.png", + "entry": "POKENAME has a habit of gnawing on charcoal. Chewing on the hard stone helps keep its teeth strong, and consuming the charcoal itself keeps its fire, both on its tail and within its body, healthy and stoked.", + "author": "sk372" + }, { "sprite": "4.200.png", "entry": "POKENAME feeds its flames with the solar energy stored within the crystals along its body. Once it charges enough energy, it can keep burning brightly even on rainy days.", @@ -99749,11 +101624,21 @@ "entry": "POKENAME are greatly mischievous. It is recorded that in ancient times, they would burn down villages for fun.", "author": "theartemis1" }, + { + "sprite": "4.360.png", + "entry": "POKENAME's fluffy cotton mane retains its warmth even when detached from its cute body. For this reason, its fur is used to make padded clothing and blankets that stay cozy at all times.", + "author": "fiordaliso" + }, { "sprite": "4.368.png", "entry": "POKENAME is overenthusiastic when using its tusks, resulting in it cutting down too many trees or damaging metal beams if improperly trained. It seeks to please those it respects, so it is easy to teach for Trainers that can gain its trust.", "author": "pjporwoll" }, + { + "sprite": "4.37.png", + "entry": "POKENAME experiences pain whenever any of its tails are put out, so it avoids places where there is a lot of water. It spends a long time carefully grooming each of its tails that it rarely has time to play with other Pokémon.", + "author": "quackquackattack" + }, { "sprite": "4.370.png", "entry": "The flames on POKENAME's back deter foes from trying to touch this Pokémon. Its skin is often very dry due to the intense heat it always endures from its own flames. ", @@ -99869,6 +101754,11 @@ "entry": "POKENAME is overconfident in its abilities in battle because its armored crest has extended down its back. The tusks are beginning to harden under the flames, so if its diet is disrupted, the tusks may insufficiently grow before evolution.", "author": "pjporwoll" }, + { + "sprite": "4.417.png", + "entry": "POKENAME's tail is extremely warm to the touch, and heats up if excited or frightened. It communicates with others of its kind by tapping tails together in a series of patterns.", + "author": "sk372" + }, { "sprite": "4.421.png", "entry": "Mischievous in nature, POKENAME love to play pranks on other Pokémon, usually by startling them. If it does not eat enough jewels, the fire on its tail will grow dim and weak.", @@ -99884,6 +101774,11 @@ "entry": "Pokémon researchers have observed POKENAME moving across their glacial homes in huddled groups of four or more. The current theory is that they do so to protect their flames from abrupt gusts of wind or blizzards, letting them stay warm as a group.", "author": "katie" }, + { + "sprite": "4.43.png", + "entry": "POKENAME relies on its brightly colored leaves to signal to predators that it is poisonous. It releases toxic spores that make it sneeze out embers, which in turn causes it to release more spores.", + "author": "quackquackattack" + }, { "sprite": "4.45.png", "entry": "The flower of flame that burns atop POKENAME's head isn't very hot. However, the large stem in the middle can project flaming-hot noxious toxins.", @@ -100414,11 +102309,21 @@ "entry": "POKENAME's inflatable body gives it the ability to appear as large and muscular as it wants. Those not intimidated by the display will find it does nothing to enhance its actual middling level of physical strength.", "author": "sk372" }, + { + "sprite": "40.74.png", + "entry": "POKENAME's fine fur easily picks up dirt, so it often swings from tree branches with its arms to avoid the ground. It tackles foes with crushing hugs while singing, leading the opponent to inevitable unconsciousness.", + "author": "pjporwoll" + }, { "sprite": "40.75.png", "entry": "POKENAME is covered in a highly coveted, soft fur that it sheds heavily quarterly, when clumps of fur become easily pluckable. Since it rolls everywhere, its habitat is covered in stray tufts of fur caught on the landscape during these seasons.", "author": "pjporwoll" }, + { + "sprite": "40.76.png", + "entry": "Since it rolls most places, POKENAME's fur has become matted with dirt and grime to the point of being like armor, shrugging off most direct attacks. It must be guarded by others if the fur is shorn since its body is not used to being unprotected.", + "author": "pjporwoll" + }, { "sprite": "40.78.png", "entry": "POKENAME is a mythical creature that few people, if any, have ever seen. Its mane is said to have the taste and texture of cotton candy.", @@ -100804,6 +102709,11 @@ "entry": "POKENAME's tentacles are as flimsy as cabbage but snap like cucumbers. They regrow quickly, making it both a reliable food source and a surprisingly tasty snack.", "author": "jaminmcready" }, + { + "sprite": "401.12.png", + "entry": "As POKENAME drifts gently over flower fields, it scatters a shimmering powder from its wings. This dust protects blossoms from pests, making the Pokémon highly valued by gardeners as a natural helper.", + "author": "fiordaliso" + }, { "sprite": "401.123.png", "entry": "POKENAME lures its enemies into a trap with its roses and slashes them with its scythes. It flies at high speed and leaves a trail of fragrance that disappears in a blink after a few moments.", @@ -100834,11 +102744,6 @@ "entry": "In the early morning, the flowers on POKENAME's tail emit a strong sweet scent. Some believe that inhaling this aroma enough times in life will awaken psychic powers in one's mind.", "author": "sk372" }, - { - "sprite": "401.203.png", - "entry": "POKENAME's second head has taken the form of a beautiful flower. This flower gets most of the attention and the main head often feels ignored.", - "author": "atlas333" - }, { "sprite": "401.207.png", "entry": "Underneath the rose buds hide POKENAME's poisonous claws. They can frequently be seen jumping from tree branches, ambushing prey by stabbing them with their toxic thorns.", @@ -101044,11 +102949,6 @@ "entry": "POKENAME is a thing of beauty and can be seen playfully galloping around flower fields. The flames on its body curiously cannot burn other plant life.", "author": "mistymagius" }, - { - "sprite": "401.83.png", - "entry": "POKENAME is quite the charmer. It uses its good looks to amuse allies and unsettle enemies.", - "author": "atlas333" - }, { "sprite": "401.95.png", "entry": "As POKENAME tunnels beneath forests, its flower-covered segments churn the soil into fertile beds. Villagers say lush gardens always seem to sprout over the paths it's traveled.", @@ -101449,6 +103349,11 @@ "entry": "POKENAME lobs its heavy tail at opponents when it is in a fight. Its tail is deceptively heavy and can knock out small Pokémon with a hit or two.", "author": "quackquackattack" }, + { + "sprite": "403.287b.png", + "entry": "POKENAME gets lonely easily and needs constant companionship to feel at ease. It will get very antsy if it goes even an hour without at least holding someone's hand.", + "author": "sk372" + }, { "sprite": "403.317.png", "entry": "With a combination of thick wool and a sturdy shell, POKENAME have powerful defenses They prefer eating cottonweeds and cattail plants.", @@ -101949,6 +103854,11 @@ "entry": "POKENAME roam around abandoned homes looking for children. They long for companionship and will jump in tall grass in the hopes of getting attention.", "author": "quackquackattack" }, + { + "sprite": "405.152.png", + "entry": "The orbs that float around POKENAME are a strange type of spectral seed it creates. It plants the seeds in soil largely bereft of light, where it will grow into a uniquely pale type of flower.", + "author": "sk372" + }, { "sprite": "405.161.png", "entry": "POKENAME can remain at vigil for up to 20 hours before it needs rest. Because of this, it is a popular choice among police officers who patrol city streets.", @@ -101974,11 +103884,6 @@ "entry": "POKENAME are rumored to harbor the spirit of an artist who enjoyed stitching flowers to his art. They tend to focus more on the past than living in the present for the most part.", "author": "entomoxie" }, - { - "sprite": "405.190.png", - "entry": "POKENAME uses its hand-like appendage to manipulate a puppet. It sometimes seems like the puppet itself is alive.", - "author": "atlas333" - }, { "sprite": "405.194.png", "entry": "The gills on POKENAME grow as it absorbs negative emotions through its horn. Though born from malice, it's surprisingly affable. It often bumps into things; researchers believe that brief flashes of darkness cloud its vision when emotions surge.", @@ -102004,6 +103909,11 @@ "entry": "During the night, POKENAME will possess pieces of clothing and torment its victims while they try to sleep. Its victims are often left in a state of paranoia, thinking every cast shadow is a disguised POKENAME.", "author": "mistymagius" }, + { + "sprite": "405.258.png", + "entry": "Wandering the roads at night, POKENAME will mimic and mock any foes it comes across. It is typically the only one who finds this amusing, as the foe will usually attack POKENAME in the middle of its show.", + "author": "notsaying." + }, { "sprite": "405.282.png", "entry": "If it senses envy in someone, POKENAME blasts them with water to shift their mood. If this fails, it slowly drains that energy through prolonged exposure.", @@ -102014,6 +103924,11 @@ "entry": "It collects vengeful souls in its keystone. Some old legends tell of people who sold their souls to POKENAME to get revenge on others.", "author": "cait_sith" }, + { + "sprite": "405.296.png", + "entry": "POKENAME are believed to be pacifist Pokémon, only attacking when provoked. They use ghostly energy to create spectral bones and attack their foes.", + "author": "chibitales" + }, { "sprite": "405.312.png", "entry": "POKENAME wears a strange cloak that saps strength from anything it touches. It uses floating hands to press prey against the fabric and drain their energy away.", @@ -102064,6 +103979,11 @@ "entry": "POKENAME burrows beneath the homes of envious people. While they sleep, it feeds off their negative emotions through the floorboards.", "author": ".izik" }, + { + "sprite": "405.384.png", + "entry": "POKENAME is able to sense negative auras of those around it, following and absorbing the negativity from sources. It darts through shadows to remain unseen.", + "author": "chibitales" + }, { "sprite": "405.39.png", "entry": "A POKENAME uses its song to lull people into a deep sleep. It then uses this opportunity to feast on their upsetting dreams.", @@ -102114,6 +104034,21 @@ "entry": "When near jealous people, POKENAME develops severe headaches. The pain soon radiates outward, causing dizziness in anyone nearby.", "author": ".izik" }, + { + "sprite": "405.56.png", + "entry": "Old superstitions say that POKENAME was born from the strong emotions of childish tantrums. It has a very petulant personality, screeching angrily at every minor thing that troubles it.", + "author": "sk372" + }, + { + "sprite": "405.66.png", + "entry": "POKENAME is always training, both its physical strength and its ghostly powers. It's most proud of itself when it's able to lift up heavy objects using its spiritual strength alone.", + "author": "sk372" + }, + { + "sprite": "405.83.png", + "entry": "POKENAME uses its stick to cast minor hexes on others, usually to invoke clumsiness or nausea. Its preferred victims to cast a curse upon are other avian Pokémon.", + "author": "sk372" + }, { "sprite": "405.92.png", "entry": "It looks malevolent, but POKENAME is actually a lonely spirit in search of companionship. It often resorts to hypnotizing people, assuming few would be friendly to it because of its appearance.", @@ -102209,6 +104144,11 @@ "entry": "POKENAME lift themselves into the air by generating matching currents of electricity throughout their gel and the ground beneath them, directing the charges with their tails to steer. The excess gel around their bodies helps cushion their landings.", "author": "wildheartrazorfangs" }, + { + "sprite": "406.182.png", + "entry": "The liquid around POKENAME's head is full of chlorophyll, and aids in photosynthesis. Excess energy from the sun is converted into psychic power.", + "author": "bee4082" + }, { "sprite": "406.187.png", "entry": "The slime from a POKENAME can be condensed and used in pharmaceuticals. Many modern-day allergy medications use this slime.", @@ -102379,6 +104319,11 @@ "entry": "POKENAME's body is composed of a gelatinous substance that emits a faint glow. Some say looking into its eyes will curse you.", "author": "willuna" }, + { + "sprite": "406.511.png", + "entry": "POKENAME uses its acorn-shaped helmet to absorb solar energy, which fuels its psychic powers. Through telepathy, it emits frequencies that drive away Pokémon who might mistake the special fluid covering its body for a fruit.", + "author": "fiordaliso" + }, { "sprite": "406.54.png", "entry": "POKENAME floats around placidly, trying to avoid contact with others. This is because anything stimulating its gelatinous exterior gives the core body a splitting headache.", @@ -102809,11 +104754,21 @@ "entry": "Though it appears soft, the cotton on POKENAME's body is filled with steel shrapnel. Some companies have crafted heavy-duty cleaning utensils from it.", "author": "char_latte3412" }, + { + "sprite": "408.335a.png", + "entry": "POKENAME's iridescent cotton saves most of its fluffiness even when wet, making it excellent for water-resistant clothes. Its tail is so soft and downy that hugging it can wash negative emotions from one's heart.", + "author": "milchik" + }, { "sprite": "408.37.png", "entry": "Its tails expel large amounts of pollen, which it uses to mark its territory. The dense clouds of pollen often leave trails through the air as it moves.", "author": ".izik" }, + { + "sprite": "408.374.png", + "entry": "POKENAME are raised for the cotton their wings shed daily, which is used in clothing and blankets. They spread cotton in battle, igniting it to burn foes. Ecologists are helping POKENAME recover their dwindling population.", + "author": "chibitales" + }, { "sprite": "408.382.png", "entry": "POKENAME spend their days weaving through the grass of lush meadows. No predator cares to hunt them due to the dirt strewn throughout their cotton.", @@ -102964,6 +104919,11 @@ "entry": "Each of POKENAME's heads prioritize their own safety, so they will pull off each other's cotton to use for themselves. If one head gets too greedy, the cotton will start to impair its vision.", "author": "mistymagius" }, + { + "sprite": "409.100.png", + "entry": "POKENAME buries itself in the sand save for its nostrils, almost completely hidden from view. When it smells prey coming near, it uses an explosion to propel itself out of the sand and careen towards its prospective meal.", + "author": "sk372" + }, { "sprite": "409.109.png", "entry": "POKENAME spews clouds of sand to mask its approach on prey and to distract foes while it hides. Because of its mischievous streak, thieves partner with it to take advantage of the blinding sand sprays while absconding with valuables.", @@ -102974,6 +104934,11 @@ "entry": "When overheated, stone flaps along POKENAME's back lift up to release internal heat. This keeps it cool enough to keep hunting in the sun.", "author": ".izik" }, + { + "sprite": "409.130.png", + "entry": "POKENAME makes its home in large divots in the undersea sand. A curious sort, it often pokes its head out to observe its surroundings, but is quick to retreat back home unless food is involved.", + "author": "sk372" + }, { "sprite": "409.134.png", "entry": "The bane of Swimmers, POKENAME blends perfectly with the mud and silt at the bottom of lakes. It lies motionless until anything blocks the sunlight, causing it to explode to the surface and bite with enough force to bend steel.", @@ -103019,6 +104984,11 @@ "entry": "POKENAME sleep during the day, basking in the warm desert sun. Once night falls, they go out hunting for small insects, using their powerful noses to sniff them out from under the sand.", "author": "mistymagius" }, + { + "sprite": "409.228.png", + "entry": "Scampering through the desert, POKENAME pulls its prey out of burrows with its narrow maw. When the burrow is deeper than its snout, it sneezes out embers in frustration.", + "author": "quackquackattack" + }, { "sprite": "409.23.png", "entry": "It slithers into backpacks or bags during dimly lit conditions to gain shelter from the cold. Trainers who attempt to use an Escape Rope may find a POKENAME instead.", @@ -103114,6 +105084,16 @@ "entry": "POKENAME uses Scary Face to intimidate travelers into giving it coins. These are dragged back to its desert den and hoarded like treasure.", "author": ".izik" }, + { + "sprite": "409.58.png", + "entry": "One of POKENAME's favorite habits is to snatch something of its Trainer's and play tug-of-war with it. Due to its strong jaw strength, these sessions can last for a while before it'll give up the stolen object.", + "author": "sk372" + }, + { + "sprite": "409.71.png", + "entry": "POKENAME buries itself in the sand save for its tail, which dangles a false fruit to lure others close. Once a hapless hungry creature takes the bait, it rises up and clamps its jaws shut around its foolish quarry.", + "author": "sk372" + }, { "sprite": "409.81.png", "entry": "POKENAME floats through the desert at night. During the day, it lies flat on the sand to absorb sunlight and recharge its electrical core.", @@ -103444,6 +105424,11 @@ "entry": "POKENAME is very fond of Sandshrew and sometimes delivers rocks it finds on the roofs of caves to it. However, its wings are not very strong, so the rocks often fall and break.", "author": "rumia_archer" }, + { + "sprite": "41.28.png", + "entry": "While flying, POKENAME curls into a ball, exposing its sharp violet spikes to keep others at bay. Though not especially ferocious, it won't hesitate to bite creatures it perceives as prey.", + "author": "fiordaliso" + }, { "sprite": "41.29.png", "entry": "During summer nights, hundreds of POKENAME appear to find a mate. During this period, its poison becomes ten times more potent in preparation to protect its young.", @@ -103764,6 +105749,11 @@ "entry": "POKENAME can usually be found near polluted waters. It covers its body in a slippery, poisonous film that allows it to escape from predators. ", "author": "mistymagius" }, + { + "sprite": "41.55.png", + "entry": "POKENAME will attract mates late at night by screeching at the top of its lungs. Ships will actively avoid waters teeming with POKENAME, as this screeching regularly disrupts navigational equipment.", + "author": "griddle" + }, { "sprite": "41.56.png", "entry": "POKENAME ambushes its prey with unsettling fury, ripping small Pokémon apart with its sharp fangs. It flies into a primal rage if its prey somehow escapes.", @@ -104209,6 +106199,11 @@ "entry": "Some say that should anyone touch POKENAME's golden mask, they will be cursed forever. The ghostly hands emerging from its back are thought to be the amount of people it has cursed.", "author": "archserpent" }, + { + "sprite": "411.332.png", + "entry": "Due to a steady diet of gold nuggets, POKENAME's yellow fur faintly glimmers. It guards the tombs of ancient rulers, and mercilessly hunts down any trespassers.", + "author": "mepp." + }, { "sprite": "411.333.png", "entry": "Nobody dares look within POKENAME's armor. Not even its own Trainers.", @@ -105554,6 +107549,11 @@ "entry": "POKENAME fights using the core on its head, which expels blasts of ancient energy. Sometimes, the core breaks off on impact, deactivating the stone creature.", "author": "nexusshenanigans" }, + { + "sprite": "416.478.png", + "entry": "POKENAME is found near the ruins of ancient civilizations. During evening hours, its core glows to act as a guiding light and can be used to send signals across long distances.", + "author": "mepp." + }, { "sprite": "416.493.png", "entry": "Ancient tomes tell of POKENAME guarding villages in coordinated packs. They pounced on invaders with Beat Up to drive them out together.", @@ -105564,6 +107564,16 @@ "entry": "POKENAME is often found drifting near sunken ships, as if still guarding some long-lost treasure. Divers cling to its jagged frame as it glides through the water, guiding them swiftly past coral and wreckage.", "author": "jaminmcready" }, + { + "sprite": "416.53.png", + "entry": "Many ancient civilisations are believed to have treated POKENAME as deities, with religious iconography being dedicated to them. They work together with Golenine to trap evil spirits, able to send ghostly signals from their whiskers to pacify them.", + "author": "whatagooddaytodie" + }, + { + "sprite": "416.59.png", + "entry": "POKENAME were kept in royal cities in ancient kingdoms, serving as status symbols. They work together with Golesian to trap evil spirits, rapidly running in circles to trap them and keep them in place.", + "author": "whatagooddaytodie" + }, { "sprite": "416.60.png", "entry": "Their tails are equally good at digging and swimming. They eagerly helped people and inspired the creation of shovels and oars in ancient civilizations.", @@ -105639,6 +107649,11 @@ "entry": "The vines covering its body are feathered, allowing it to flick them for lift. This peculiar motion gives it the ability to fly for short bursts.", "author": ".izik" }, + { + "sprite": "417.12.png", + "entry": "POKENAME typically comes out during the sunrise, to feed on early-morning nectar for the day. Farm folk say that having one flutter by the window in the morning is a sign of good luck.", + "author": "sk372" + }, { "sprite": "417.13.png", "entry": "Their camouflage enables these POKENAME freedom in the forest, as other Pokémon assume they are poisonous. They communicate about where to find the best berries to consume, and travel in small groups to maintain a sense of direction.", @@ -107414,6 +109429,11 @@ "entry": "POKENAME form groups called \"kaleidoscopes\" with fellow POKENAME, pilfering abandoned mines for valuable gemstones.", "author": "fivetailedfurret" }, + { + "sprite": "421.120.png", + "entry": "Whenever POKENAME loses one of its appendages during a battle, it eats gems to accelerate the regrowth process. What typically takes days or weeks is shortened to a matter of hours.", + "author": "quackquackattack" + }, { "sprite": "421.127.png", "entry": "It's said that POKENAME lurks in the shadows with razor-sharp claws and glowing gem-like eyes. It's a fearsome adversary in the darkness of the night.", @@ -107444,6 +109464,11 @@ "entry": "Archaeological evidence indicates that POKENAME was sacred to many prehistoric cave-dwelling humans. Today, it is highly endangered and fervently protected.", "author": "dylonk27" }, + { + "sprite": "421.16.png", + "entry": "When POKENAME spots a jewel, it can't resist snatching it with its tiny beak. In its excitement, it sometimes swallows precious gems, later spitting them out to decorate its nest with treasures.", + "author": "fiordaliso" + }, { "sprite": "421.163.png", "entry": "It is theorized that the secret to POKENAME's impeccable timekeeping lies in its quartz eyes, which vibrate at an extremely exact and regular rate.", @@ -107454,6 +109479,11 @@ "entry": "It hides in shadows, its eyes glimmering. Those who stare into them out of even simple curiosity fall asleep. Once POKENAME steals anything shiny on their person, they disappear without a trace.", "author": "bobosmith01" }, + { + "sprite": "421.169.png", + "entry": "POKENAME enjoys finding valuable, shiny objects to give to those with whom it feels a close bond. Its wings are mostly translucent except for the gemstone webbing, through which it refracts light to disorient opponents.", + "author": "pjporwoll" + }, { "sprite": "421.173.png", "entry": "POKENAME has not developed teeth yet and so must suck nutrients from the exterior of stones it finds. Moonstones are especially nutritious for POKENAME, so they cry happily when they spot one.", @@ -107464,6 +109494,11 @@ "entry": "POKENAME is known for its intense greed of gems, hoarding them alongside their eggs in cliffside nests. Their sharp eyesight allows for POKENAME to spot gemstones from nearly three miles away! ", "author": "rakunk" }, + { + "sprite": "421.190.png", + "entry": "They populate the forests and jungles near ancient temples. These mischievous Pokémon are a living nightmare for treasure hunters; one of POKENAME's favorite activities is to stalk the explorers in order to steal and eat their precious finds.", + "author": "milchik" + }, { "sprite": "421.202.png", "entry": "The jewel that POKENAME carries around has some sort of spirit living inside of it. Since POKENAME isn't that aware of its surroundings, the jewel will often alert POKENAME of incoming threats.", @@ -107494,6 +109529,11 @@ "entry": "POKENAME hides in caves while fermenting berries into juice inside its bedazzled shell. While it uses the juice to aid in digesting gemstones, a small portion of the juice is actually an excellent polishing solution.", "author": "pjporwoll" }, + { + "sprite": "421.216.png", + "entry": "POKENAME exploits its adorable appearance to steal gems and jewelry from Trainers. People are advised to secure their belongings and avoid POKENAME to ensure nothing important gets stolen.", + "author": "quackquackattack" + }, { "sprite": "421.217.png", "entry": "POKENAME collects gems from deep underground to adorn the ring in its torso. If two POKENAME meet, they immediately compare gem collections to see who has the greater amount of precious jewels.", @@ -109179,6 +111219,11 @@ "entry": "POKENAME is a fierce protector of its land and the Pokémon in it, brutally mauling any trespassers. However, due to its short and stubby legs, it often ends up falling over and struggles to get back up.", "author": "mistymagius" }, + { + "sprite": "426.494.png", + "entry": "Infamous delinquents since ancient times, POKENAME bully entire herds of Pokémon into following their commands. When two POKENAME clash, they scatter scales from their horns, with the winner adding the loser's scales to their cape.", + "author": "wildheartrazorfangs" + }, { "sprite": "426.498.png", "entry": "POKENAME was a lot more common in ancient times, as all the ash in the skies helped to build up its shell. It falls from the sky at tremendous speeds, leaving molten craters over 50 feet wide.", @@ -109254,6 +111299,11 @@ "entry": "POKENAME's saliva is cold enough to freeze skin on contact. If it licks the same spot multiple times, even large creatures can be immobilized.", "author": ".izik" }, + { + "sprite": "427.114.png", + "entry": "POKENAME's vines are chilling to the touch. This frigidity renders them extremely brittle, snapping off at even the lightest touch - though this doesn't cause it any pain.", + "author": "theartemis1" + }, { "sprite": "427.124.png", "entry": "POKENAME tends to take a liking to lost travelers, often letting them stay in its den until the snow passes. However, if the traveler stays too long, POKENAME will have a tough time letting them go. ", @@ -110244,6 +112294,11 @@ "entry": "POKENAME is a nocturnal creature. At the flap of its wings, it releases a mix of snow and powder that can freeze, paralyze, or poison opponents.", "author": "tr3bles" }, + { + "sprite": "429.500.png", + "entry": "POKENAME is an extremely rare mutation of Froslass, growing crystal ice underneath its Snow Cloak. It is treated like a princess by other Froslass, and is recognised as a strong unifier within the group. Those frozen by its crystals will never thaw.", + "author": "operativevalkyrie" + }, { "sprite": "429.52.png", "entry": "POKENAME endears itself to humans, then leads them out into the cold to perish. If you see a POKENAME beckoning to you, never follow it.", @@ -110594,6 +112649,11 @@ "entry": "POKENAME continually grows a semi-sweet leafy green plant which is a popular salad base. As long as it has access to clean water and moonlight, the leaves will grow back within a week, regardless of how often they are harvested.", "author": "pjporwoll" }, + { + "sprite": "43.361.png", + "entry": "POKENAME is a formidable nocturnal hunter that dwells in forests where it can blend in perfectly. From its wide jaws it secretes an herbal sap that can be used to soothe the pain caused by burns and abrasions.", + "author": "fiordaliso" + }, { "sprite": "43.37.png", "entry": "The leaves on POKENAME's body grow in the moonlight. It has the power to control both plant life and fire at will.", @@ -110949,11 +113009,21 @@ "entry": "It will use silky string to assist in its elaborate dances. If it dances too quickly, it may accidentally light the strings on fire.", "author": ".izik" }, + { + "sprite": "430.107.png", + "entry": "In combat, POKENAME's swaying motions make for an unpredictable opponent. A foe is never certain if POKENAME's next move will be an elegant feinting sway of its wings, or a fist of flame careening towards them.", + "author": "sk372" + }, { "sprite": "430.11.png", "entry": "The silk it shoots from its body is extremely hot. If it ever lands in dried leaves, it can cause a massive forest fire.", "author": ".izik" }, + { + "sprite": "430.115.png", + "entry": "Much of POKENAME's time is spent teaching its young the coordination and focus needed to perfect their trademark combat dance. Though the child is still learning, it is capable of creating tiny fire tornadoes with its moves.", + "author": "sk372" + }, { "sprite": "430.12.png", "entry": "Abundant in springtime, POKENAME arrange in dazzling waves of red above fields of flowers. Their intricate and graceful mid-air dances are a sign that pollen production is exceptionally high.", @@ -110994,6 +113064,11 @@ "entry": "POKENAME is a striking combination of beauty and deadliness. It dances as it fights, moving to a rhythm only it hears, weaving through the battlefield with dangerous gracefulness. If you can beat POKENAME in dance, you will win its allegiance.", "author": "nyoomymph" }, + { + "sprite": "430.143.png", + "entry": "Despite its large rotund body, POKENAME's dance routines contain a surprising level of elegance to them. Its perpetually-warm belly is considered a quite pleasant place to nap against.", + "author": "sk372" + }, { "sprite": "430.15.png", "entry": "POKENAME have a strong preference for red flowers, the pigments of which are extracted and used for vibrant plumage coloration. Their flight patterns, though erratic to the human eye, are carefully measured and precise.", @@ -111059,6 +113134,11 @@ "entry": "POKENAME howls while spinning during its dance. The flames it produces are so intense that they're hot enough to melt steel, showcasing its strength and passion.", "author": ".izik" }, + { + "sprite": "430.249.png", + "entry": "Whether beneath the water or in the air, POKENAME's movements are twisting and elegant. With a single flap of its wings, it can create a rising geyser of scalding liquid to erupt from any body of water near it.", + "author": "sk372" + }, { "sprite": "430.25.png", "entry": "POKENAME's feathers on its tail crackle with electricity as it dances. If ignored, it will unleash lightning bolts from its tail to ensure its presence is known.", @@ -111089,6 +113169,11 @@ "entry": "POKENAME appears intimidating at first, and for good reason. Instilled with rage for the loss of its wings, any Pokémon that fly near it are subject to a brutal combination of flames and lethal fog to strike it down.", "author": "pixlhoopa" }, + { + "sprite": "430.31.png", + "entry": "For POKENAME, its dance is everything, a facet of life that cannot be lived without. It won't even entertain the thought of obeying a Trainer unwilling to dance with it regularly.", + "author": "sk372" + }, { "sprite": "430.318.png", "entry": "POKENAME is a very slow walker outside of battle. Wild Oricorio seem to flock to perform on the stage on its back whenever they can.", @@ -111139,6 +113224,11 @@ "entry": "The pattern on each wing of POKENAME is entirely unique. This Pokémon will unfurl its wings both as a defense mechanism and as part of its courting ritual.", "author": "dragon_hunter_70" }, + { + "sprite": "430.38.png", + "entry": "As POKENAME prances around, its many tails swish through the air in a light and elegantly flowing manner. Those who attempt to touch its tails will be blown away by a wave of fire it creates with a single swishing motion.", + "author": "sk372" + }, { "sprite": "430.394.png", "entry": "POKENAME can often be seen flopping on lake shores. Its flailing is actually an intentional dance routine.", @@ -111479,6 +113569,11 @@ "entry": "POKENAME enthusiastically dances, rubbing its pom-poms against the stone it carries after every performance. It's presumed that this act is practice for nurturing and stimulating real eggs once it matures.", "author": "sk372" }, + { + "sprite": "431.287.png", + "entry": "POKENAME loves to happily cheer on its friends' battles with its dances, but is a very sore loser. If a cheered friend doesn't win the fight, POKENAME stomps around and throws lightning in a tantrum.", + "author": "sk372" + }, { "sprite": "431.287a.png", "entry": "The face of this specific POKENAME resembles the mascot of a certain chip brand. Because of this, it is usually featured in their commercials.", @@ -111699,6 +113794,11 @@ "entry": "POKENAME's round nose twitches as it dances between flowers. It performs this as a mating ritual, using its movements to attract potential mates with the delicate swaying of its body.", "author": ".izik" }, + { + "sprite": "432.134.png", + "entry": "POKENAME are popular in theaters for their graceful moves and psychic abilities that help in creating sound effects. By subtly moving their tail feathers, they produce a sound of water trickling over stones.", + "author": "chibitales" + }, { "sprite": "432.14.png", "entry": "POKENAME spits silk on the ground in beautiful patterns as it does a slow hopping and spinning dance. Its movements are slow and deliberate, creating intricate webbed patterns with each hop.", @@ -111749,6 +113849,11 @@ "entry": "POKENAME dances on tree branches when it sees visitors. If anyone stops watching it dance for even a short moment, it will get angry and explode, trying to use its sudden burst of energy to protect itself and its territory.", "author": ".izik" }, + { + "sprite": "432.215.png", + "entry": "POKENAME dances for humans and Pokémon alike, filling the air with a chilly calm. As soon as its audience disregards it as a threat, it scoops up any food it can grab and runs off.", + "author": "chibitales" + }, { "sprite": "432.217a.png", "entry": "Each dance POKENAME performs seems to correspond with a type of weather; it appears it can forecast the next day's weather. What other psychic abilities POKENAME has are not well understood.", @@ -112459,6 +114564,11 @@ "entry": "POKENAME's psychic powers make it acutely aware of others' distaste for its stench. The result is a meek, shameful Pokémon, quick to form an attachment to anyone who can tolerate its presence.", "author": "dylonk25" }, + { + "sprite": "434.301.png", + "entry": "POKENAME resides in polluted waters, disguising itself as trash caught on rocks. It filter-feeds on harmful plastics and pollutants, helping clean reefs so other Pokémon can live comfortably.", + "author": "kduffradio" + }, { "sprite": "434.307.png", "entry": "POKENAME fills its bag head with scrap metal, making it durable against most physical attacks. However, POKENAME is careful to avoid the bag splitting, as it would leave it with little to no protection.", @@ -112899,11 +115009,26 @@ "entry": "POKENAME lives in lakes and rivers, attacking boats that cross its path. Fighting back against them is difficult due to its hardened shell.", "author": "_snakeywakey_" }, + { + "sprite": "436.32.png", + "entry": "Though not yet fully evolved, POKENAME shows a fiery disposition, snapping at outsiders who approach too closely. Its frame is armored with poisonous spikes and jagged horns that let it repel intruders larger and stronger than itself.", + "author": "fiordaliso" + }, + { + "sprite": "436.33.png", + "entry": "It attacks anyone who dares approach its territory, charging forward with its horn coated in venom. Though ruthless toward intruders, it shows great affection to its own kind, letting the young ones play with the bubbles it blows from its mouth.", + "author": "fiordaliso" + }, { "sprite": "436.332.png", "entry": "POKENAME is a formidable predator that hunts along the shores in the company of its pack. It uses its powerful jaws to deliver lethal blows, often finishing off its prey with ease. The largest specimen is recognized as the leader of the group.", "author": "fiordaliso" }, + { + "sprite": "436.34.png", + "entry": "Highly territorial, POKENAME uses its sheer brute strength to drive away ships that venture too close to its coastal den. When it slams its massive tail against the ground, it can shake the earth with enough force to trigger violent quakes.", + "author": "fiordaliso" + }, { "sprite": "436.370.png", "entry": "It clings to the sides of boats, waiting for scraps to fall overboard. Mariners often mistake it for debris until it sinks its teeth into an unsuspecting hand.", @@ -112999,6 +115124,11 @@ "entry": "It's been discovered that POKENAME are highly receptive to chocolate. Ships now often carry surplus containers to toss overboard and placate schools of POKENAME to keep them from becoming aggressive.", "author": "sk372" }, + { + "sprite": "436.502.png", + "entry": "POKENAME lives by the shore with its pack, which not only protects it but also helps refine its hunting skills. In battle, it relentlessly snaps at its foe, but if it realizes it has been left alone, it quickly loses the will to fight.", + "author": "fiordaliso" + }, { "sprite": "436.52.png", "entry": "It slips through canals with ease, navigating narrow waterways to hunt. Trainers in cities must remain cautious, as it has been known to nibble on unattended belongings.", @@ -113209,6 +115339,11 @@ "entry": "Found replacing the figurehead on sunken ships, POKENAME sings a lilting melody, attracting Water-types. When they close in, it confuses its prey with a Water Pulse before finishing them with a vicious bite.", "author": "ghostslythe" }, + { + "sprite": "437.287b.png", + "entry": "Despite it having great hunting instincts, POKENAME's personality is sweet and almost childish. The sight of it happily singing next to freshly-caught prey has been described as disconcerting to many.", + "author": "sk372" + }, { "sprite": "437.288.png", "entry": "POKENAME is usually seen in the ocean, harassing ships but ultimately not harming anyone. It's said pirates followed POKENAME in the past.", @@ -113299,11 +115434,6 @@ "entry": "POKENAME is also called \"the Grim Reaper of The Seven Seas\". Whenever POKENAME is spotted in a body of water, it is recommended to stay on land. Their razor-sharp claws can effortlessly sink even the most armored ship.", "author": "sottiwotti" }, - { - "sprite": "437.347.png", - "entry": "POKENAME is said to be the manifestion of hatred of every sailor lost at sea. It can be seen watching sailors from afar when the moon is new.", - "author": "atlas333" - }, { "sprite": "437.368.png", "entry": "POKENAME are fairly kindhearted on land, but turn incredibly vicious when in water. By using both its fangs and sturdy tusks, POKENAME can cut through almost anything.", @@ -113804,6 +115934,11 @@ "entry": "POKENAME rests on fallen logs, lazily chewing bark. If threatened, it pounces toward its foe and bites with venom-laced fangs.", "author": ".izik" }, + { + "sprite": "438.427.png", + "entry": "POKENAME can only be found in forests covered in heavy snow during the winter. In ancient folklore, houses visited by these Pokémon will prosper and their leaves can cure any illness.", + "author": "sakuraneko" + }, { "sprite": "438.428.png", "entry": "Despite how large and intimidating its mask is, the ghost inside is actually small and timid. POKENAME chooses the creepiest, most crooked stump to possess in order to scare away predators, but if it's too heavy, the Pokémon may struggle to get up.", @@ -113959,6 +116094,11 @@ "entry": "Due to this fusion's parental instincts, wild POKENAME often care for young Phantump until they're strong enough to survive on their own.", "author": "phantom640" }, + { + "sprite": "439.122.png", + "entry": "POKENAME lurk in forests, creating barriers between trees. POKENAME like to mess with people travelling through the woods, creating elaborate mazes in the forest for them to get stuck in.", + "author": "jangodiot" + }, { "sprite": "439.131.png", "entry": "These Pokémon are sometimes mistaken for floating driftwood atop lakes. They lie motionless, only waking when fog coats their habitat.", @@ -114004,6 +116144,11 @@ "entry": "If you see a cluster of tree branches in a web-like shape, it is best not to approach. Fully under POKENAME's control, the branches will ensnare its prey before draining their life force.", "author": "mistymagius" }, + { + "sprite": "439.169.png", + "entry": "POKENAME flies about the forest in search of a tree that is unprotected and bonds with it. It will work closely with an arborist or other Pokémon that it trusts to tend to the tree, leaving in search of a new tree to protect once satisfied.", + "author": "pjporwoll" + }, { "sprite": "439.178.png", "entry": "If POKENAME foresees an intruder with ill intent, it commands the forest trees to attack. The onslaught continues until the foe flees or falls unconscious.", @@ -114264,6 +116409,11 @@ "entry": "POKENAME make their home on the borders between deserts and lush forests. They ambush prey with their roots and jaws. They also love apples.", "author": "totodile." }, + { + "sprite": "439.41.png", + "entry": "Colonies of POKENAME inhabit large trees and defend them against any threat by biting with their jaws or scaring with their shrill chittering. They sense shifts in the leaves of the grove their tree is in and investigate suspicious changes in trios.", + "author": "pjporwoll" + }, { "sprite": "439.410.png", "entry": "POKENAME pretend to be trees until prey gets too close. They can grow up to eight branches to chase prey, and never forget faces, favors, or slights.", @@ -114274,6 +116424,11 @@ "entry": "POKENAME spins conductive silk between trees to form a living circuit with itself. Once prey is near, it channels shocks through bark and branch alike.", "author": ".izik" }, + { + "sprite": "439.42.png", + "entry": "POKENAME relentlessly harasses threats to the tree it has made its home. Its howling cry sounds like an intense wind blowing through tree branches. When digesting a meal, it is unable to fly, so it curls up and pretends to be a bush.", + "author": "pjporwoll" + }, { "sprite": "439.420.png", "entry": "It appears when a piece of bark is peeled from a Trevenant. Each POKENAME contains a fraction of the original Trevenant's power.", @@ -114339,6 +116494,11 @@ "entry": "POKENAME will remain peaceful towards those that don't threaten its forest. Should an intruder be foolish enough to endanger its territory, this Pokémon will animate every plant to imprison them.", "author": "._term." }, + { + "sprite": "439.484.png", + "entry": "In folklore, POKENAME are the mystical guardians of sacred forests. They are merciless against those who would ravage these forests, swiftly punishing them with a whirlwind of fire and thorns.", + "author": "mepp." + }, { "sprite": "439.49.png", "entry": "POKENAME hates anything entering its territory and will relentlessly pursue them until it catches them. You can determine which trees are its territory by the bodies slowly being consumed by their roots. ", @@ -115009,6 +117169,11 @@ "entry": "POKENAME tunnels underground, using echolocation to look for small jewels for it to eat. If it finds a gemstone that is too big for its jaws to crush, it will bring it back to its hoard for safekeeping.", "author": "mistymagius" }, + { + "sprite": "440.30.png", + "entry": "POKENAME builds endurance by engaging in shrieking matches with its kin until it can withstand a scream from a Noiqueen. It patrols the area around its family's den, alerting the others with battle screeches.", + "author": "pjporwoll" + }, { "sprite": "440.300.png", "entry": "POKENAME hides in caves for most of the day, only revealing itself at night. When in danger, its back head releases a deafening screech loud enough to burst eardrums if exposed for too long.", @@ -115024,16 +117189,31 @@ "entry": "POKENAME's flat face is excellent at reflecting sound waves which makes echolocation easy for it. They are quite docile Pokémon, only ever attacking if its defensive prowess fails.", "author": "mistymagius" }, + { + "sprite": "440.31.png", + "entry": "POKENAME leaves the safety of its nest to begin building its own family. It challenges young Noiking to team up with it against a larger foe, bonding the pair together.", + "author": "pjporwoll" + }, { "sprite": "440.318.png", "entry": "As POKENAME grow older, they grow in size, mimicking mountains and letting hundreds of Pokémon rest inside their caves. When provoked, their supersonic soundwaves create local earthquakes.", "author": "leandermalurt" }, + { + "sprite": "440.32.png", + "entry": "POKENAME's ears are still developing resilience to loud noises, so a fully grown Noiking keeps it safely contained in its den. It makes tiny squeaks to help it strengthen its echolocation skills.", + "author": "pjporwoll" + }, { "sprite": "440.338.png", "entry": "POKENAME's hallucinogenic cries are pitched so high only other Pokémon can hear them. Ironically, their best defense against trainers attracts Zubat.", "author": "ghostslythe" }, + { + "sprite": "440.34.png", + "entry": "POKENAME leaves the safety of its nest in search of a safe place to begin its own family. When it finds a Noiqueen of an equivalent age, it combines forces to become a bonded pair.", + "author": "pjporwoll" + }, { "sprite": "440.373.png", "entry": "POKENAME was originally made by a tailor long ago. It was eventually abandoned, and the spirit inside wants revenge.", @@ -115359,6 +117539,11 @@ "entry": "POKENAME is a gentle giant that always lets smaller Pokémon land on its tree to rest. Although it looks heavy, it can fly without making a sound.", "author": "zerocipher" }, + { + "sprite": "441.32.png", + "entry": "POKENAME joins the adult Noiqueen of its nest to learn about how to hunt and what berries are safe to harvest. It also assists by scouting around for larger prey and signalling the Noiqueen with whistles.", + "author": "pjporwoll" + }, { "sprite": "441.321.png", "entry": "It is able to counter attacks from every direction. It can detect even the slightest movement in a mile radius.", @@ -116234,6 +118419,11 @@ "entry": "The white substance on its body may look like cotton, but it is actually millions of tiny bubbles. It uses the bubbles to camouflage its nest.", "author": ".izik" }, + { + "sprite": "443.489.png", + "entry": "Depending on its body size, the pitch of its melodious voice can vary greatly, ranging from a celestial soprano to a powerful tenor. The cotton surrounding its body vaguely resembles a pumpkin, making it easy to spot in fields at night.", + "author": "fiordaliso" + }, { "sprite": "443.498.png", "entry": "POKENAME surround themselves with clouds to cushion themselves while they travel low to the ground. When they're startled, POKENAME will expand the clouds that surround them into a fog to help them escape.", @@ -116269,6 +118459,11 @@ "entry": "A wool-like substance covers its body. There is a seamstress in Hutber Port that utilizes the fluff from an POKENAME to create scuba gear.", "author": ".izik" }, + { + "sprite": "443.59.png", + "entry": "It can run across the sky by forming cloud-like cushions beneath its majestic paws. Each morning, it fills the valleys with its angelic song carried by the wind, believed to be a blessing. Living near POKENAME is considered a sign of great fortune.", + "author": "fiordaliso" + }, { "sprite": "443.6.png", "entry": "POKENAME can blend into a cloudy sky thanks to the shape of its soft wings, and its tail flames are often mistaken for sunlight. It warns others about its territory by singing loudly and attacks anyone who dares to ignore its vocal warnings.", @@ -116889,6 +119084,11 @@ "entry": "POKENAME hides in ancient ruins, disguising itself as a normal rock. Its body cannot be damaged by any modern weapon.", "author": "themicelegion" }, + { + "sprite": "447.287.png", + "entry": "Composed of sand and stone held together via a psychic consciousness, POKENAME can separate and manipulate its rocky parts at will. It's said that as long as its core stone is intact, it can reform itself from any damage.", + "author": "sk372" + }, { "sprite": "447.306.png", "entry": "Its thickened skull resembles a Polished Mud Ball in smoothness and color. To maintain its smoothness, it rubs its head against rocks to polish its skull.", @@ -117154,6 +119354,11 @@ "entry": "POKENAME can be seen flopping around in melted glaciers. Impurities and debris can be seen inside their crystalline structure.", "author": ".towerxvi" }, + { + "sprite": "448.416.png", + "entry": "POKENAME's body is made of a unique ice that cannot be melted. It often appears to those lost in intense blizzards to guide them back to safety.", + "author": "mepp." + }, { "sprite": "448.423.png", "entry": "It barrels down icy mountains at incredible speeds. Many daredevil skiers have met unfortunate ends trying to outmaneuver them.", @@ -117424,6 +119629,11 @@ "entry": "Capable of transporting people across long distances, it was thought that POKENAME would be considered the flying car of the future. Due to a malfunction in its systems, however, it very seldom takes people to their desired location.", "author": "foolish_weasel" }, + { + "sprite": "449.355.png", + "entry": "Wherever POKENAME wanders, strange metal mushrooms grow. It strikes foes with its iron fists with the same skill as professional boxers.", + "author": "bee4082" + }, { "sprite": "449.368.png", "entry": "POKENAME are machines made for nothing but slaughter and destruction. It is a crime to merely own one in most regions after what happened in the war.", @@ -117669,6 +119879,11 @@ "entry": "When threatened, it releases an incredibly odorous musk. The arms on its sides are vestigial, and have no real strength.", "author": ".realthree" }, + { + "sprite": "45.256.png", + "entry": "As it soars over farmlands, POKENAME scatters toxic powder from the bloom on its head, preventing crops from sprouting. With its vengeful and maleficent nature, it devastates harvests near its domain.", + "author": "fiordaliso" + }, { "sprite": "45.264.png", "entry": "POKENAME are shy and usually stay away from humans. Its tongue can sense whether something is poisoned or not, so it's used by many detectives.", @@ -117774,6 +119989,11 @@ "entry": "POKENAME twirls through moonlit groves in near silence, each step stirring the air with a ghostly grace. Audiences often forget to applaud, too mesmerized to do anything but watch.", "author": "jaminmcready" }, + { + "sprite": "45.435.png", + "entry": "Some businesses will outright deny services to a trainer who owns a POKENAME, even if its Pokéball is sealed. This Pokémon releases a stench so foul it can make smaller surrounding Pokémon pass out.", + "author": "jangodiot" + }, { "sprite": "45.446a.png", "entry": "Despite drawing energy from the sun through its flowery \"hat\", it prefers to keep the rest of its body submerged in mud or water to keep cool and wet.", @@ -117819,6 +120039,11 @@ "entry": "POKENAME always keeps its flower on the water's surface as it swims, absorbing sunlight that shines down on the water. If touched, the flower sprays a mist-like pungent pollen to deter predators.", "author": "sk372" }, + { + "sprite": "45.65.png", + "entry": "When POKENAME is threatened, it releases debilitating pollen that induces amnesia. A solitary Pokémon, it spends its day meditating to hone its psychic powers.", + "author": "mepp." + }, { "sprite": "45.71.png", "entry": "Wild POKENAME release a strong aroma from the leaf over their mouths to attract prey. These leaves have been used to make a kind of herbal tea that helps treat indigestion and constipation.", @@ -117869,6 +120094,11 @@ "entry": "Long ago, a Necrozma absorbed an Electrode, creating POKENAME. Its upper hemisphere is light energy, while the lower hemisphere is dark energy.", "author": "planatical" }, + { + "sprite": "450.111.png", + "entry": "POKENAME generates large amounts of kinetic energy when it runs. Reports of POKENAME encounters claim it can reach speeds of roughly 200 kilometres an hour, enough to power an entire city for two weeks.", + "author": "operativevalkyrie" + }, { "sprite": "450.129.png", "entry": "In a strange twist of fate, This Magikarp was chosen by Necrozma as a vessel for transportation in water. Dark crystals grew out from where its fins used to be, becoming terrible claws.", @@ -117889,6 +120119,11 @@ "entry": "Its armor was built to harness solar power, but failed. Instead, it travels to power plants, absorbing large quantities of man-made light. ", "author": "hampterbychoice" }, + { + "sprite": "450.151b.png", + "entry": "POKENAME absorbs and stores photoenergy within the fissures on its body and releases it upon prey. The resulting flash can instantly blind humans and Pokémon alike.", + "author": "operativevalkyrie" + }, { "sprite": "450.181.png", "entry": "POKENAME will primarily use the bulb on its tail to send powerful light signals. If it steals enough light from other sources, its tail becomes blinding, visible from across the world.", @@ -117909,6 +120144,11 @@ "entry": "This Pokémon becomes stronger in moonlight. People have seen a brighter version of POKENAME that is said to have the power of causing a solar eclipse.", "author": "bucklin" }, + { + "sprite": "450.2.png", + "entry": "POKENAME has a unique, bulb shaped energy core on its back that absorbs photoenergy and undergoes photosynthesis, like plants. The large metal plates are very flexible yet sturdy, and they will conceal its core when it senses danger.", + "author": "operativevalkyrie" + }, { "sprite": "450.204.png", "entry": "POKENAME typically hang onto solar panels, absorbing all the light energy for themselves. Anyone who tries to disturb them while they are absorbing light energy will be crushed by their giant hands.", @@ -117929,6 +120169,11 @@ "entry": "It has been updated by a file upload from the Internet. Trainers often get into fights about if it looks better in dark or light form.", "author": "b_megamaths" }, + { + "sprite": "450.245.png", + "entry": "POKENAME's body temperature is cold enough to completely numb any pain, and as a result, it is very peaceful. It lives in boreal forests and absorbs the light around it, making it difficult for predators to hunt down the native Pokémon.", + "author": "operativevalkyrie" + }, { "sprite": "450.249.png", "entry": "This Pokémon is also known as Eternal Wave Necrozma. With its combined psychic powers, it is able to cause the ocean itself to split apart.", @@ -117954,6 +120199,16 @@ "entry": "POKENAME is able to bend both time and light. However, it appears to lack the same time travel abilities as Celebi.", "author": "ohok3441" }, + { + "sprite": "450.271.png", + "entry": "POKENAME is docile during daylight, choosing to absorb sunlight instead of hunting. However, it cannot produce energy through photosynthesis. It instead grows inside of its otherwise fragile crest and tail to function as a weapon for hunting.", + "author": "operativevalkyrie" + }, + { + "sprite": "450.272.png", + "entry": "POKENAME can be found in regions where the ozone layer has been damaged. It absorbs unfiltered ultraviolet rays from sunlight, and in return it releases a unique mist that neutralizes carbon dioxide and methane.", + "author": "operativevalkyrie" + }, { "sprite": "450.275a.png", "entry": "It began acting oddly after receiving an update from the Internet. Its appearance mimics an infamous internet website.", @@ -118019,6 +120274,11 @@ "entry": "POKENAME hides its body in Ultra Space, using its psychic energy to create ultra wormholes. Those who wander too close are bombarded with slashes.", "author": "munchyaxolotls" }, + { + "sprite": "450.338.png", + "entry": "POKENAME lives in snowy mountains and ambushes prey at sunrise using camouflage tactics. Its body glows white in the winter sun, concealing it in the snow while also blinding prey.", + "author": "operativevalkyrie" + }, { "sprite": "450.339.png", "entry": "Sylveon's affable nature has loosened up Necrozma's viciousness. Now it thrives off of harmony and gentle sunlight.", @@ -118054,6 +120314,11 @@ "entry": "Any location POKENAME appears at becomes shrouded in darkness, as its skin absorbs light for energy. Its clawed ears are strong enough to cause devastating earthquakes, whereas its psychic mind can crush continents.", "author": "ghostslythe" }, + { + "sprite": "450.361a.png", + "entry": "POKENAME fires laser blasts from its eyes to exterminate anything it sees. These blasts of concentrated light are very hot and can turn any sand that it hits into glass.", + "author": "soup1900" + }, { "sprite": "450.362.png", "entry": "This obelisk is thought to be a Pokémon, but there is no proof it even is a living being. Archeologists all seem to go missing shortly after contact.", @@ -118084,6 +120349,11 @@ "entry": "POKENAME's body is composed of an unknown crystalline structure that has the ability to absorb light. This light can then be shot out as pure energy.", "author": "puppetmaster64" }, + { + "sprite": "450.377.png", + "entry": "POKENAME's commanding head is constantly in pain and takes its frustration out on the wild Pokémon. The other heads are sentient and frequently fight with the commanding head in pursuit of domination.", + "author": "operativevalkyrie" + }, { "sprite": "450.38.png", "entry": "According to legend, POKENAME is said to possess the ability to cross dimensions through its powers. Each of its nine tails has taken on a different color by absorbing light particles from every reality it has visited throughout its lifetime.", @@ -118144,6 +120414,11 @@ "entry": "POKENAME seeks out sources of light, which give it sustenance. If something tries to move it from a light source, it will aggressively bite and poison them, its toxins causing intense internal burning sensations.", "author": "sk372" }, + { + "sprite": "450.426.png", + "entry": "POKENAME lives in wastelands, far from human settlements. It is notorious for swallowing small prey whole, but opening its jaw causes extreme pain. Because of this, it often relies on brute force with its claws in battle.", + "author": "operativevalkyrie" + }, { "sprite": "450.429.png", "entry": "In high-latitude areas, one may encounter POKENAME endlessly wandering as it follows the pattern of auroras it sees in the sky. Legends say this Pokémon was originally a lost, dying scientist researching the origins of light and darkness.", @@ -118159,6 +120434,16 @@ "entry": "POKENAME are said to have been otherworldly children, accidentally transported to this timeline. They're said to harness dark magic we cannot control.", "author": "dodoowner_" }, + { + "sprite": "450.463.png", + "entry": "POKENAME spends its infancy running around in the sunlight with its siblings, absorbing ultraviolet rays. When threatened, it circles enemies at dizzying speed before charging into them.", + "author": "operativevalkyrie" + }, + { + "sprite": "450.464.png", + "entry": "POKENAME sometimes evolves from Necroruff that bask in sunlight at every waking moment. Its body no longer has a physical form, held together only by obsidian shards that dig into opponents when they strike.", + "author": "operativevalkyrie" + }, { "sprite": "450.465.png", "entry": "The pink body of POKENAME is not actually physical. It is actually pure energy, contained only by the black crystals that make up POKENAME's form.", @@ -119044,11 +121329,6 @@ "entry": "POKENAME make their homes in trees to shield themselves from rain. Preferring small wintersweet trees, they use their ears to slap and scare away other POKENAME, defending their territory.", "author": "maximus10k" }, - { - "sprite": "452.408a.png", - "entry": "POKENAME appears to be the decapitated head of a larger Pokémon. It doesn't seem to mind but continues to search for the rest of its body.", - "author": "atlas333" - }, { "sprite": "452.412.png", "entry": "POKENAME's fluffy fur builds up static electricity as it moves. If too much charge accumulates, it releases random bursts of lightning without warning.", @@ -119339,6 +121619,11 @@ "entry": "Sailors report seeing schools of POKENAME on stormy nights, their eyes shining through the rain like ghostly headlights. When a storm is particularly bad, POKENAME will use the anchor on their tail to pin themselves in place above the ocean.", "author": "katie" }, + { + "sprite": "453.229.png", + "entry": "Said to be the combined spirits of sailors who passed away at sea, packs of POKENAME skulk around massive shipwrecks. They superheat the water around the ship to drive away curious divers and predatory Pokémon.", + "author": "chibitales" + }, { "sprite": "453.242.png", "entry": "This Pokémon makes its home among sea buoys, finding peace in the open ocean. The gentle swaying of the waves keeps it content.", @@ -119994,6 +122279,11 @@ "entry": "POKENAME lays on shorelines with toxic spikes sticking upward which are designed to entrap beachgoers. The spikes release a toxic substance that makes escape difficult for any intruders.", "author": ".izik" }, + { + "sprite": "454.461.png", + "entry": "The arms on POKENAME's head change color according to its mood, most often being a content blue. It can manipulate these arms to jab at opponents with poisoned tips. The poison chills the opponent until they can no longer move.", + "author": "chibitales" + }, { "sprite": "454.469.png", "entry": "POKENAME has tentacles on its head that can paralyze prey. It then bites them to finish the hunt, using its sharp teeth to pierce through the prey's defenses.", @@ -120934,6 +123224,11 @@ "entry": "POKENAME's tongue secretes a sticky sap that smells like cactus nectar. It uses this to coat its spines, trapping insects before consuming them.", "author": ".izik" }, + { + "sprite": "457.11.png", + "entry": "POKENAME's shell has hardened so much that it limits its movements, so it uses its thin spines to ward off predators and other nuisances. It can survive for months without water thanks to the nutrients it stores within its cocoon.", + "author": "fiordaliso" + }, { "sprite": "457.111.png", "entry": "It buries its body in the sand and peaks its face out to absorb nutrients from the sun. Should it begin to rain, it will open its mouth wide to inhale any falling water.", @@ -121884,11 +124179,6 @@ "entry": "At night when the tide is low, these mysterious Pokémon will appear and rearrange the left behind shells and stones into constellations on the sand.", "author": "cristata" }, - { - "sprite": "459.366a.png", - "entry": "In ancient times, POKENAME helped keep track of time with its unique rhythms. It is said to become agitated when surrounded by tardiness.", - "author": "atlas333" - }, { "sprite": "459.367.png", "entry": "POKENAME may leave glass shards in its wake. It was reported that a Trainer's Pokémon once had a limb encased in glass after an encounter.", @@ -121904,11 +124194,6 @@ "entry": "POKENAME tunnels beneath beach sands, feasting on discarded food left by tourists. Its networks of tunnels stretch for miles, connecting to nests of others in its colony.", "author": ".izik" }, - { - "sprite": "459.385.png", - "entry": "POKENAME can often be found napping peacefully on beaches. Thankfully, its sandy body is immune to sunburns!", - "author": "atlas333" - }, { "sprite": "459.396.png", "entry": "Its core and legs are made of hardened sand. The sand that makes up its shell falls off frequently, so it has to place more.", @@ -122654,6 +124939,11 @@ "entry": "The result of a Charmander being infected with the tochukaso mushroom. The mushroom, meanwhile, protects its host from water.", "author": "zedsmith64" }, + { + "sprite": "46.40.png", + "entry": "As the mushroom grows in size and its mycelium spreads more, POKENAME becomes less active. It sits near a pond in a forest or cave and emits a quiet humming sound to attract Pokémon near enough to hit with a Spore attack and consume.", + "author": "pjporwoll" + }, { "sprite": "46.400.png", "entry": "The mushroom growing from the top of POKENAME's leafy head is used in a spicy stew, first conceptualized in the Kanto region. It is cheap to make and quick to regrow if spores are left behind, making it a sustainable ingredient.", @@ -124204,6 +126494,11 @@ "entry": "A pleasant cakelike aroma wafts from POKENAME's rocky fur, attracting prey to its cave where its pack will attack in unison.", "author": ".izik" }, + { + "sprite": "464.68.png", + "entry": "With its four rocky arms, POKENAME battles valiantly against its foes. Its tough claws can crack even iron, and its powerful muscles seem never to tire.", + "author": "fiordaliso" + }, { "sprite": "464.71.png", "entry": "POKENAME's furry vines waft a pleasant Chesto Berry scent. It dangles them over den entrances to lure prey out. Once exposed, it will dispatch the prey with a Vine Whip.", @@ -124414,11 +126709,21 @@ "entry": "It has spent years training alone in the harsh wilderness, improving its voice. POKENAME releases aura shockwaves by singing.", "author": "dylonk25" }, + { + "sprite": "466.300.png", + "entry": "POKENAME dance and sing with their entire soul, giving their all for their performances. During particularly energetic melodies, they whip about their hair as it seems to take on a life of its own, gnashing its sharp teeth along the beat.", + "author": "wildheartrazorfangs" + }, { "sprite": "466.315.png", "entry": "POKENAME are said to be deities of rhythm and song. Their singing is capable of creating anything from continents to hurricanes.", "author": "iolitetigerdragon" }, + { + "sprite": "466.335.png", + "entry": "POKENAME lives at the bottom of serene lakes, but occasionally comes to the surface to sing. This sound brings joy and blessings to the souls of listeners.", + "author": "mepp." + }, { "sprite": "466.354.png", "entry": "POKENAME often sing in groups similar to idols. Because of this, they gain devoted followers who enjoy listening to their music.", @@ -125284,6 +127589,11 @@ "entry": "When POKENAME is a host-parasite relationship, the mushroom drains the bug except to leave it strong enough to topple trees with its horns. Regardless of the damage to the host, POKENAME will only stop fighting if the mushroom becomes unattached.", "author": "pjporwoll" }, + { + "sprite": "47.128.png", + "entry": "POKENAME is controlled by the mushrooms that have taken root inside its brain. It will defend the tree it feeds on to the bitter end, charging at any intruder it spots.", + "author": "fiordaliso" + }, { "sprite": "47.129.png", "entry": "Considered by many as a rare Johto delicacy, POKENAME's meat when filleted is pre-seasoned by its internal spores. Unfortunately for the Chefs, its bite is paralytic in nature, allowing it to Splash back into the rivers it calls home.", @@ -125359,6 +127669,11 @@ "entry": "POKENAME can be found on beaches and in tidepools. The mushroom on its back is in full control of its movements. POKENAME now seeks to spread its spores to other Pokémon, often through battle.", "author": "nyoomymph" }, + { + "sprite": "47.174.png", + "entry": "POKENAME's singing sounds as if multiple voices are contributing to the music, but it always is wandering alone. Campers are warned to keep at least one bright light nearby if they wander into territory where one has been spotted.", + "author": "pjporwoll" + }, { "sprite": "47.178.png", "entry": "The spores it produces can be used to stun threats before running away. Inhaling the spores causes victims to experience visions of the future.", @@ -125664,6 +127979,11 @@ "entry": "POKENAME is territorial and marks its territory using mushroom spores. It sends jolts of electricity through the mycelium network to shock intruders within its territory.", "author": "quackquackattack" }, + { + "sprite": "47.39.png", + "entry": "POKENAME floats through forests leaving a trail of sleep-inducing spores. It is attracted to music, with many campers reporting their surprise upon finding one silently watching them from the edge of their campsite after playing music.", + "author": "pjporwoll" + }, { "sprite": "47.391.png", "entry": "As they infest tree roots, their fungal armor amplifies the echoing sound of their collisions, signaling their presence in the forest depths.", @@ -125939,6 +128259,11 @@ "entry": "It appears docile to some before it opens its eyes. Although POKENAME doesn't move much, its incredibly powerful light makes up for that tenfold.", "author": "aberry8286" }, + { + "sprite": "470.145.png", + "entry": "After years of absorbing and discharging energy, POKENAME's body becomes overloaded, causing thunderstorms within a two-kilometer radius. It often clashes with others of its kind over territory.", + "author": "operativevalkyrie" + }, { "sprite": "470.155.png", "entry": "All the light POKENAME produces gets concentrated and poured out of its back. If it becomes startled, the light from its back grows and flashes extremely brightly, blinding its enemies.", @@ -125999,6 +128324,11 @@ "entry": "Even with trusted Trainers, POKENAME are hard to manage. Their overpowering energy wreaks havoc whether they intend to or not.", "author": "ohok3441" }, + { + "sprite": "470.315b.png", + "entry": "Said to be the embodiment of light itself, POKENAME is suspected to be responsible for the creation of light and darkness. Despite all of its light having been consumed, it has since regained its true power.", + "author": "operativevalkyrie" + }, { "sprite": "470.362.png", "entry": "After POKENAME has finally found the light it desires, it transforms. POKENAME is now moderately peaceful and can be approached by Trainers. It enjoys exploring the universe in search of treasures to collect. Its golden coffin emits an infinite glow.", @@ -126069,6 +128399,11 @@ "entry": "The light that pours out of this Pokémon is actually icy-cold, completely freezing its surroundings. It surrounds its opponents with auroras, trapping them inside a beautiful light prison.", "author": "soup1900" }, + { + "sprite": "470.463.png", + "entry": "When POKENAME are exposed to unfiltered ultraviolet rays for long periods, they mutate and develop features prematurely, most notably a jaw. They can run at speeds of up to 150 kilometres an hour.", + "author": "operativevalkyrie" + }, { "sprite": "470.466.png", "entry": "Now unleashed from its prismatic prison, POKENAME will wreak havoc through its songs. It is said to be the most beautiful death one could receive.", @@ -126964,6 +129299,11 @@ "entry": "The leaf-frills on POKENAME's back emit a pleasant Sweet Scent to lure others close. It then stabs them with a venomous thorn that causes severe paralysis.", "author": ".izik" }, + { + "sprite": "477.290.png", + "entry": "POKENAME's sickle-shaped petals swiftly take down prey and enemies. Its vivid shed scales are collected and used as decorative inlay.", + "author": "mepp." + }, { "sprite": "477.30.png", "entry": "Once its male packmates leave to hunt, it is left in charge of monitoring the nest, especially the baby Pokémon in its care. If any of the babies try to leave the nest during this time, it guides the baby back using its soft petals.", @@ -127094,6 +129434,11 @@ "entry": "Living deep in frigid caves, POKENAME is rarely seen. This is due to it sealing the cave entrances with impenetrable walls of ice to protect slumbering Carbink.", "author": "mepp." }, + { + "sprite": "478.148.png", + "entry": "POKENAME lives deep in underground lakes and is rarely seen. It is said to only appear to kind-hearted people, bathing them in a light from their crystalline horn to bless them with prosperity.", + "author": "mepp." + }, { "sprite": "478.169.png", "entry": "POKENAME flutters up to cave walls in search of precious gems, particularly sapphires and topaz. Once it locates a cluster, it chips away at the minerals with its sharp fangs, consuming them to strengthen its shimmering form.", @@ -127294,6 +129639,11 @@ "entry": "POKENAME flock to abandoned mineshafts to eat shards of gems miners leave behind. The gem shards get absorbed into their bodies, which gives their wings a reflective shimmer.", "author": "quackquackattack" }, + { + "sprite": "478.419.png", + "entry": "POKENAME was recently discovered living deep inside volcanic caverns. It defends itself by shooting scorching beams from the crystalline parts of its body.", + "author": "mepp." + }, { "sprite": "478.42.png", "entry": "Its large wings sparkle in the light as though a sculptor wedged a thousand pieces of Beach Glass into them. The reality is not far off, as it takes pieces of glass or crystal and adds the pieces to its wings.", @@ -128119,6 +130469,11 @@ "entry": "POKENAME shed the armor from their bodies in favor of fashioning it into a weapon to use directly in battle. Despite the bulk of their new mace, POKENAME are dexterous and calculating, always landing precise blows.", "author": "wildheartrazorfangs" }, + { + "sprite": "482.12.png", + "entry": "POKENAME often flies among tree branches in search of spicy berries that can strengthen its still-weak flames. The fur growing from its ears is so soft and fluffy that other Pokémon try to steal it to build their nests.", + "author": "fiordaliso" + }, { "sprite": "482.126.png", "entry": "POKENAME's fur constantly smolders, leaving faint scorch marks wherever it walks. It is fiercely territorial and has been seen drawing glowing patterns in the dirt to warn intruders away.", @@ -128314,6 +130669,11 @@ "entry": "The mesmerizing flame at the end of POKENAME's tail draws onlookers in. Though those who have stared at it claim that they were on the verge of receiving a vision, nobody has ever reached such a point due to being attacked by the Pokémon.", "author": ".realthree" }, + { + "sprite": "484.500.png", + "entry": "Legends claim that POKENAME was born from the flames and ore nestled deep inside the world's volcanoes. Those who peer into its incandescent flames are said to witness revelations of their futures.", + "author": "mepp." + }, { "sprite": "484.6.png", "entry": "The branches growing from POKENAME thrive in extremely hot and arid climates, turning absorbed heat into blazing fire. If the wood experiences too much moisture, it can rot and fall off, hindering a POKENAME's ability to survive.", @@ -128399,6 +130759,11 @@ "entry": "POKENAME continually dribbles a cloud of bubbles which can be blasted to entrap foes, allowing for either a quick escape or follow-up pinches. Its hardiness has helped it to survive and spread to multiple regions.", "author": "pjporwoll" }, + { + "sprite": "485.57.png", + "entry": "POKENAME secretes a pliable film of bubbles to protect its meaty fists. Should this padding be damaged in battle, it will fly into a blind rage.", + "author": "theartemis1" + }, { "sprite": "485.73.png", "entry": "POKENAME floats near the ocean surface, releasing toxic bubbles at prey. Once stunned, it strikes with lashing tentacles.", @@ -128509,11 +130874,6 @@ "entry": "POKENAME uses its sticky tongue to scale cliffs and walls. As it does so, it leaves scorch marks behind, as its saliva causes a chemical reaction that raises the temperature.", "author": ".realthree" }, - { - "sprite": "488.109.png", - "entry": "POKENAME expels hot smoke from pours all over its body. This allows it to fly, but this method doesn't work as well in warm environments. ", - "author": "atlas333" - }, { "sprite": "488.110.png", "entry": "The clouds of smoke emanated from POKENAME have an ashy and earthen scent to them. The smell has been used by some to help Pokémon from volcanic areas feel more comfortable when away from their natural habitat.", @@ -128659,6 +131019,11 @@ "entry": "It pokes its head out of the stone body in order to eat or release large amounts of steam. Some resorts in Hoenn have taken to employing them as a part of their saunas.", "author": "sk372" }, + { + "sprite": "488.327.png", + "entry": "POKENAME produces its smoke by burning collected life energy inside of its mace. These souls then inhabit and control this smoke, using it as their hand to wield POKENAME for their own purposes.", + "author": "soup1900" + }, { "sprite": "488.330.png", "entry": "Groups of POKENAME work together to collect large amounts of coal for them to burn. They use jets of pressurized smoke to effortlessly cut through the rocks.", @@ -128934,6 +131299,11 @@ "entry": "Legends claim that consuming the goo brewed in POKENAME's pumpkin cauldron bestows visions of the future. A splash of the liquid is sometimes added to dessert frostings or beverages to induce a woozy feeling.", "author": "pjporwoll" }, + { + "sprite": "489.184.png", + "entry": "Its tail is a lantern; one look at the light from the hole of this lantern can put one under its control. POKENAME can easily detect spirits with its ears' sensitive hearing.", + "author": "doctorjazznumber6215" + }, { "sprite": "489.187.png", "entry": "Flocks of POKENAME drift along the wind, the light from their lanterns only visible during the night. Spectators describe POKENAME sightings as looking like small stars moving across the night sky.", @@ -129039,6 +131409,16 @@ "entry": "POKENAME gathers pumpkin innards and smears them around its riverside lodge. The scent marks its territory and keeps other Pokémon at bay.", "author": ".izik" }, + { + "sprite": "489.30.png", + "entry": "POKENAME spits sharp seeds which inject foes with an endurance-sapping poison. It prowls farm fields near harvest season, looking for prey scavenging the last of the crops.", + "author": "pjporwoll" + }, + { + "sprite": "489.302.png", + "entry": "POKENAME slumbers during the day, covering its eyes with its large leaves. At night, its eyes glow with a mysterious but welcoming light, inviting all who see it to join in POKENAME's festivities.", + "author": "wildheartrazorfangs" + }, { "sprite": "489.311.png", "entry": "POKENAME floats through graveyards, blinking its chest lights in eerie patterns. Local legends claim staring too long can curse your family line.", @@ -129859,6 +132239,11 @@ "entry": "POKENAME flies high above crop fields with a yellow glow pulsing from its body. It patrols the skies swiftly, seeking intruders from above.", "author": ".izik" }, + { + "sprite": "490.500.png", + "entry": "Its sugary sweet innards harden into edible candy pieces when exposed to the open air. POKENAME enjoys gifting the candied pieces of its body to any well-behaved children it sees.", + "author": "griddle" + }, { "sprite": "490.53.png", "entry": "POKENAME masquerades as a spooky decoration, using its bowl-like tail to lure in unsuspecting trick or treaters. Some say that once they grab a coin, it swiftly snatches them as they become more coins for its hoard.", @@ -129899,6 +132284,11 @@ "entry": "It slices through opponents using hardened scythes made of apricots and cream. On the rare occasion its scythes are eaten, it regenerates the scythes in one day.", "author": "quackquackattack" }, + { + "sprite": "491.133.png", + "entry": "When in battle, POKENAME will tangle its opponent in sweet and sticky threads before striking with a Headbutt. It enjoys eating any sweets it can find, often finding itself in trouble when it ends up stealing said sweets.", + "author": "chibitales" + }, { "sprite": "491.152.png", "entry": "The small berries that grow from POKENAME's neck are packed with sugar, which makes them highly addictive amongst young children. The berries have been commonly used as a natural sweetening agent.", @@ -129914,11 +132304,6 @@ "entry": "POKENAME runs around with an outburst of hyper energy, the sticky strings that compose its body clinging to all surfaces it touches. Without warning, it crashes to the ground, asleep.", "author": "pjporwoll" }, - { - "sprite": "491.179.png", - "entry": "Shepherds in Kalos keep herds of POKENAME for their sweet wool. It's so sugary that it immediately dissolves in your mouth. ", - "author": "atlas333" - }, { "sprite": "491.190.png", "entry": "Known as \"The Baker's Nightmare\". POKENAME are mischievous creatures that love sneaking into bakeries at dawn to rummage for new delicacies. If discovered in the act, they tend to throw handfuls of flour into the eyes of pursuers.", @@ -129969,6 +132354,11 @@ "entry": "POKENAME's fur coat is made of sweets; it creates so much candy fluff that it will not notice or care if clumps are taken and eaten by others. Its candy tusks are brittle and regenerate, so they too can be eaten by its friends.", "author": "sk372" }, + { + "sprite": "491.28.png", + "entry": "POKENAME is found in deserts where it can avoid water, which is dangerous to its sugary, protective coat. It can be found meticulously brushing grit and sugar clumps from its coat, which scavengers snap up once it moves on.", + "author": "pjporwoll" + }, { "sprite": "491.30.png", "entry": "The sweet-smelling fluff that POKENAME produces is only mildly toxic when ingested. However, its taste is so addictive that many make themselves seriously sick because they can't stop eating it.", @@ -129979,6 +132369,11 @@ "entry": "POKENAME's maw is made of cotton candy, attracting predators. To defend itself, it spits out a very sweet and sticky substance before running away.", "author": "nugamallow" }, + { + "sprite": "491.317.png", + "entry": "POKENAME's body and vital organs are in the shell. It is most known for the cotton that grows from it, which can be used to make clothing without harm. When its cotton is harvested, it regrows after two weeks.", + "author": "operativevalkyrie" + }, { "sprite": "491.37.png", "entry": "POKENAME's fluffy body radiates gentle warmth when tending to gardens. This warmth is a sign of joy accompanied by a soft candy corn fragrance that lingers in the air.", @@ -130044,6 +132439,11 @@ "entry": "POKENAME disguises itself as cotton candy to lure unsuspecting victims. Once they are close enough, it latches on with its anchor and feeds on their positive emotions— leaving them with a nasty bellyache.", "author": "vlavoc" }, + { + "sprite": "491.489.png", + "entry": "POKENAME's are often seen around the fall, trying to find any form of pumpkin flavored sweets. some candy stores use this Pokémon as a means to advertise their candy during October.", + "author": "shadeofblu" + }, { "sprite": "491.493.png", "entry": "POKENAME loves sweet treats and will often break into candy stores to grab as many as it can carry. If it eats too much sugar, it will become so hyper that it starts breaking things without thinking.", @@ -130179,6 +132579,11 @@ "entry": "Though usually living in forests, POKENAME heads to nearby towns to hunt for food. Hiding all but its tail, it lures small Pokémon with the sweet, cake-like smell, then pounces on them.", "author": "_antiblitzyt" }, + { + "sprite": "492.28.png", + "entry": "POKENAME licks the edges of its claws to hone them to sharp points useful for combat, digging, and foraging. It periodically sheds its crystallized sugar spines, which are collected by humans for desserts.", + "author": "pjporwoll" + }, { "sprite": "492.286.png", "entry": "POKENAME can usually be found at festivals, gifting sweet treats to those it likes. However, it is quite timid and will flee back into the woods if someone tries to take its treats by force.", @@ -130324,6 +132729,11 @@ "entry": "Its shell is similarly composed to a popular dessert called \"pastafrola\". It has a warm and sweet smell and taste, but strangely, anyone who dares to take a bite will have its intestines instantly blown up from the inside in a glitter explosion.", "author": "epping_forest" }, + { + "sprite": "492.490.png", + "entry": "While they are rather docile in nature normally, on a full moon, POKENAME will try to curse anyone who it can smell has sweets, forcing them to hand them over to undo the curse. It has a tendency to target the same individuals when this happens.", + "author": "shadeofblu" + }, { "sprite": "492.494.png", "entry": "Slurpuff's influence has mellowed the usually rude Scrafty. While POKENAME often appear lazily blowing bubbles, swings of their rock candy clubs can break boulders.", @@ -131159,6 +133569,11 @@ "entry": "POKENAME bellow out melodic tones loud enough to ripple water around them. The bubbles that surround their bodies echo with the notes of their songs, creating a chorus singing along to their tunes.", "author": "wildheartrazorfangs" }, + { + "sprite": "497.145.png", + "entry": "When POKENAME hears the sound of a Rain Dance, it jets swiftly from a thundercloud to join in the frolic, bringing a downpour with it.", + "author": "pattybgoode" + }, { "sprite": "497.19.png", "entry": "Though exceedingly rare to find in the wild, POKENAME appear to be comfortable living just about anywhere, from the rockiest mountains to the busiest cities. It is highly social and often lives with other Pokémon.", @@ -131504,11 +133919,21 @@ "entry": "Even after landing, POKENAME's blue-glowing wings continue to flutter. It sheds luminous feathers prized by jewelers and collectors alike.", "author": ".izik" }, + { + "sprite": "499.174.png", + "entry": "POKENAME is durable, allowing it to bounce off of objects it impacts while floating around in space. It is easily upset, and when it cries, it hurtles to the ground at an intense speed.", + "author": "pjporwoll" + }, { "sprite": "499.180.png", "entry": "While floating through thunderstorms, POKENAME redirects lightning to predators. It uses this ability to protect itself and its fellow Pokémon from danger.", "author": ".izik" }, + { + "sprite": "499.190.png", + "entry": "Often mistaken for a shooting star, POKENAME fly through the sky so fast that it glows. When it reaches the ground, it uses its tail to spring back into the air. Newborn POKENAME do not have the strength, and rely on other Pokémon taking them in.", + "author": "whatagooddaytodie" + }, { "sprite": "499.201.png", "entry": "It's said that gazing into POKENAME's core gives a glimpse through time and space, possibly even dimensions. Research is inconclusive, as all who look for protracted periods fall unconscious and remember little of what they saw once awake.", @@ -131624,6 +134049,11 @@ "entry": "To heighten the effects of X Sp. Atk, scientists have begun using stardust from a POKENAME. Because of its naturally high attack speed, the dust carries traces of its power.", "author": "jaminmcready" }, + { + "sprite": "499.374.png", + "entry": "The colors from POKENAME's wings radiate as splendidly as the sun. As it soars, dazzling multi-colored embers are scattered.", + "author": "mepp." + }, { "sprite": "499.38.png", "entry": "Only found deep in space, POKENAME are thought to bring very good luck to interstellar travelers. On occasion, these Pokémon try to use their supernatural powers to help these travelers return home safely.", @@ -131649,6 +134079,11 @@ "entry": "When POKENAMEf sings, its heavy, rocky shell steadily breaks away. The louder and longer it sings, the higher it flies, making this Pokémon a popular symbol for young artists.", "author": "pjporwoll" }, + { + "sprite": "499.40.png", + "entry": "POKENAME rises from its shattered shell towards the sky while singing loudly. The shattered shell of POKENAME is collected by space enthusiasts and luxury jewelers alike due to the beautiful flecks of its rainbow coat.", + "author": "pjporwoll" + }, { "sprite": "499.421.png", "entry": "With its protective layer shattered, POKENAME hastily hunts down rocky Pokémon to eat to stave off its body burning up and fading away. Reforming its rocky coat will protect it for some time, but the shell is unstable and steadily crumbles.", @@ -131824,6 +134259,16 @@ "entry": "POKENAME is said to have acquired its brilliant pink glow from nanoparticles that surrounded it when it fell from space. When this curious Pokémon spins its tail, a strange musical sound can be heard.", "author": "skittytales" }, + { + "sprite": "499.546.png", + "entry": "POKENAME gather in large numbers in surface waters during starry nights. During the daytime, they live underground, illuminating underground lakes with their glow.", + "author": "bee4082" + }, + { + "sprite": "499.546a.png", + "entry": "The soft body of a shell-less POKENAME is very vulnerable, but very slippery. For this reason, POKENAME will sometimes shed their shells to make a quick getaway.", + "author": "bee4082" + }, { "sprite": "499.55b.png", "entry": "POKENAME loves showing off its aerial acrobatics on cloudless nights. It leaves behind a trail of rocky particles that glow faintly and quickly disintegrate.", @@ -131924,6 +134369,11 @@ "entry": "When upset, POKENAME sheds molten tears to ignite its club for battle. These searing tears leave deep scars across the nearby landscape.", "author": "mbo1064." }, + { + "sprite": "5.106.png", + "entry": "POKENAME battles with brutal precision, relying on lethal kicks. In moments of peak intensity, it channels fire into its legs, scorching enemies with searing blows.", + "author": "fiordaliso" + }, { "sprite": "5.11.png", "entry": "POKENAME wander around rocky crags outside volcanoes, using the flame on their tails to defend themselves. They harden the scales around their body to endure attacks before swinging around their tails to set their foes ablaze.", @@ -132104,6 +134554,11 @@ "entry": "POKENAME can stay afloat with little effort, as its broad wings catch the hot air rising from its tail. A sting from this Pokémon will burn for days.", "author": "robosoup" }, + { + "sprite": "5.276.png", + "entry": "POKENAME fearlessly uses its blazing tail to smash and drive away intruders who might endanger its family or the tree it lives in. It also cares for the forest trees, removing and burning dead or rotten branches with great attention.", + "author": "fiordaliso" + }, { "sprite": "5.278.png", "entry": "On exceptionally warm fall days, POKENAME are found darting through the undergrowth. Unless it's been rainy, these appearances can lead to wildfires.", @@ -132319,6 +134774,11 @@ "entry": "The interior of POKENAME's body is as hot as a blacksmith's forge, with its tusks being hot enough to instantly cauterize wounds it inflicts. It gets frustrated easily when it makes a mistake, so it requires a patient Trainer to raise it.", "author": "pjporwoll" }, + { + "sprite": "5.417.png", + "entry": "An aggressive avian species, POKENAME's hot tail swings its tail at those that get too close, potentially leaving nasty burn marks. Particularly aggressive POKENAME can even ignite their tail to cause further damage.", + "author": "sk372" + }, { "sprite": "5.421.png", "entry": "Lost miners will follow a distant glimmer of torchlight hoping to find the surface, but POKENAME is leading them astray, deeper into the earth.", @@ -132484,6 +134944,21 @@ "entry": "POKENAME loves to antagonize people by setting things like their clothes or hair on fire. Even if you put out the flames, they have a chance of reigniting weeks later.", "author": "mistymagius" }, + { + "sprite": "5.98.png", + "entry": "POKENAME swarms tropical bays with large groups, feeding on seaweed and corals washed ashore by the tide. It flares up its fiery pincers to ward off intruders, striking fiercely if it feels endangered.", + "author": "fiordaliso" + }, + { + "sprite": "5.99.png", + "entry": "POKENAME lives only along the shores of warm seas, as colder waters would drive it into hibernation. To fight, it ignites its mighty pincers and uses them to scorch, seize, and crush its prey without mercy.", + "author": "fiordaliso" + }, + { + "sprite": "50.1.png", + "entry": "POKENAME carries a clump of especially fertile soil on its back that can greatly accelerate the growth of plants. For this reason, it is often used in farms and Pokémon Daycares so that its soil can help seeds, flowers, and berries grow.", + "author": "fiordaliso" + }, { "sprite": "50.101.png", "entry": "POKENAME is said to be the remnants of Poké Balls that failed to capture a Pokémon. They can be found in garbage dumps and polluted areas.", @@ -132569,6 +135044,11 @@ "entry": "It is known to dig and meander for miles at a time in a straight line, leaving a trail of debris behind it. Construction workers have trained it to dig a ditch alongside roads to prevent flooding.", "author": "quackquackattack" }, + { + "sprite": "50.214.png", + "entry": "POKENAME uses the shovel-like horn on its forehead to bore tunnels stretching for hundreds of meters. This sturdy appendage can pierce even through the hardest rock and is often wielded in brutal duels against wild foes.", + "author": "fiordaliso" + }, { "sprite": "50.22.png", "entry": "It swings its head rapidly, flinging sharp stone horns at enemies. This tactic disorients attackers and provides an opening for escape.", @@ -133549,6 +136029,11 @@ "entry": "POKENAME only gives its letter to Trainers it has put its trust into. The letter is filled with hearts and paw prints.", "author": "nugamallow" }, + { + "sprite": "501.466.png", + "entry": "POKENAME is an amphibious Pokémon found at densely populated beaches and is often seen mimicking human behaviour. It wears clothes, sunbathes, and interacts with both humans and Pokémon.", + "author": "operativevalkyrie" + }, { "sprite": "501.468.png", "entry": "POKENAME can turn the hearts of those who were once sad into happiness. No one understands why it can do this, as only those blessed by its love have encountered it.", @@ -133809,6 +136294,11 @@ "entry": "Unlike their cousins, POKENAME are lone hunters, stalking prey in the darkness. When their target's guard is down, they stun them with a mind-numbing howl before dragging them into the night.", "author": "ghostslythe" }, + { + "sprite": "503.515.png", + "entry": "Each flock of POKENAME has a designated leader whose orders are never disobeyed. With an aggressive nature and perfect coordination, these flocks will bully other Flying-Type Pokémon out of their territory.", + "author": "mepp." + }, { "sprite": "503.526.png", "entry": "POKENAME is strictly nocturnal in the wild and almost never follows the orders of others. It simply goes wherever it pleases and fights whoever it deems as getting in its way. However, some Trainers love its adventurous and rebellious personality.", @@ -133874,6 +136364,11 @@ "entry": "POKENAME moves with short hops that always follow a zigzagging pattern. Whenever it leaps or lands, small sparks can be seen emitting from its paws.", "author": "sk372" }, + { + "sprite": "504.530.png", + "entry": "POKENAME is an extremely lively creature that can never stay still in one place for too long. By rubbing its spiky fur, it builds static and fires devastating Electric attacks that overwhelm its foes.", + "author": "fiordaliso" + }, { "sprite": "504.74.png", "entry": "It uses its arms to hop around in a zigzagging pattern, patrolling around its mountaintop homes. Because of this, its arms are incredibly powerful, able to shatter stone in its grip with ease.", @@ -134009,6 +136504,11 @@ "entry": "POKENAME's bright eyes, bushy tail, and colorful wings make it a popular choice for Trainers looking to enter Pokémon Contests. It quickly turns aggressive if it does not get its way, however.", "author": "skittytales" }, + { + "sprite": "509.100.png", + "entry": "When in danger, POKENAME explodes and releases copious amounts of silk across its surroundings to immobilize predators. This destroys most of its cocoon, so it must find safety immediately so it can regenerate.", + "author": "sk372" + }, { "sprite": "509.315.png", "entry": "Though POKENAME seems weaker than Arceus, it harbors great power under its hardened silk shell. Scientific equipment has detected waves of immense energy within its body.", @@ -134414,6 +136914,11 @@ "entry": "Brave and bold, POKENAME often accompanies sailors south of Hoenn. It can eat all sorts of food, so it is generally easy to take care of. However, it also detests blizzards and will flee if snow and ice litter the ground.", "author": "bobosmith01" }, + { + "sprite": "516.514a.png", + "entry": "POKENAME can soar confidently even during violent storms, and because it never loses its sense of direction, sailors rely on it to guide them safely back to port. Playful by nature, it enjoys splashing both Pokémon and humans it takes a liking to.", + "author": "fiordaliso" + }, { "sprite": "516.529.png", "entry": "POKENAME always makes sure it has plenty of room to build up speed before it leaps into the air to take flight. The running generates internal electricity, and lets it leave a trail of sparking lightning behind as it glides through the air.", @@ -134469,6 +136974,11 @@ "entry": "POKENAME skates playfully in circles over shallow waters. It uses the waving, plant-like ends of its tail to attract prey.", "author": "skittytales" }, + { + "sprite": "519.506.png", + "entry": "POKENAME extends its wings to seem larger and intimidate enemies. It then immobilizes them with strands of sticky silk so it can make its escape.", + "author": "mepp." + }, { "sprite": "519.525.png", "entry": "When it feels threatened, POKENAME lowers the wide, mask-like end of its tail over its face to intimidate foes. This tail can also be used to shield its face from rain, as POKENAME hates getting wet.", @@ -134509,6 +137019,11 @@ "entry": "POKENAME's furry tentacles partially conceal an eerie, mysterious head silhouette within. However, they also serve another purpose: nabbing treasure.", "author": "ziggaway" }, + { + "sprite": "52.116.png", + "entry": "POKENAME will roam their ocean homes looking for shiny objects. They will hold onto objects they like with their paws, using their mouth to propel themselves backward instead. Fishermen covet the coin on their head as a good luck charm.", + "author": "chibitales" + }, { "sprite": "52.129.png", "entry": "In the past, unscrupulous sorts sold large amounts of POKENAME, scamming others who believed they were shiny Magikarp. Since then, \"buying a POKENAME\" has become slang for foolish purchases in some regions.", @@ -136099,6 +138614,11 @@ "entry": "POKENAME's aggressive combat style has been dubbed the \"Fist of the Beast King.\" It's popularity resulted in a supporting role in a popular television franchise, though its roles often suffer an unfortunate fate.", "author": "sk372" }, + { + "sprite": "53.7.png", + "entry": "POKENAME protects its precious silky fur by retreating into its shell whenever it senses danger that might threaten its beauty. Though it dislikes fighting, it won't hesitate to scratch anyone it dislikes with its small claws.", + "author": "fiordaliso" + }, { "sprite": "53.77.png", "entry": "POKENAME will gallop wildly if lured with a shiny object. Trainers sometimes toss coins to coax it into races with others of its kind.", @@ -136154,6 +138674,11 @@ "entry": "POKENAME's body consists of battery acid, powering its electrical attacks. It's friendly in nature, but Trainers should approach it with caution.", "author": "hophoppip" }, + { + "sprite": "531.287.png", + "entry": "POKENAME cheers on allies from the sidelines, its dances and chants creating psychic pulses to boost them. POKENAME's cheers are said to make an ally's greatest strengths even greater.", + "author": "sk372" + }, { "sprite": "531.4.png", "entry": "Bursting with positive energy, being around POKENAME has been proven to raise the serotonin levels of those nearby, improving their mood as a result. While the exact reason has yet to be pinned down, POKENAME's cheerful attitude may help contribute.", @@ -136189,6 +138714,11 @@ "entry": "POKENAME are powered by negatively charged electrons after bathing in moonlight. The radiation of the moonlight converts into electricity within their bodies as though they are living panels.", "author": "cobalt0135" }, + { + "sprite": "532.287.png", + "entry": "POKENAME cheers on allies from the sidelines, its dances and chants creating psychic pulses to boost them. POKENAME's cheers are said to boost an ally's weaker traits and reduce their shortcomings in combat.", + "author": "sk372" + }, { "sprite": "532.43.png", "entry": "POKENAME have a negative electric charge that repel other POKENAME. Despite this, they form spacious groups to protect themselves from predators.", @@ -136209,6 +138739,11 @@ "entry": "POKENAME wander through tall grass to eat batteries and other electronics trainers throw away. Its cheeks develop a negative charge when it is full.", "author": "quackquackattack" }, + { + "sprite": "533.504.png", + "entry": "POKENAME zigzag everywhere in search of the sweet aroma of Illumise. They light their tail with others of their kind to draw geometric shapes, but because they always zigzag when walking, it is difficult for them to create straight lines.", + "author": "soup1900" + }, { "sprite": "533.535b.png", "entry": "During mating season, hordes of POKENAME gather together in the dark of night and demonstrate their glowing oral cavity to one another. The wider one can open its mouth and the brighter it glows, the more attractive POKENAME is to its fellows.", @@ -136254,6 +138789,11 @@ "entry": "The volcano on POKENAME's back is always active, constantly spewing lava. When the lava cools and turns into stone, it creates a layer of protection for POKENAME against enemy attacks.", "author": "soup1900" }, + { + "sprite": "539.511.png", + "entry": "By leaping constantly, POKENAME charges the jewel on its head with stored energy. It feeds on sunlight through photosynthesis, always seeking out the brightest treetops to bask in.", + "author": "fiordaliso" + }, { "sprite": "54.1.png", "entry": "The only cure for POKENAME's headaches is the herbs growing on its bulb, which it is unable to reach on its own. As a result, it often follows Trainers with the hope they will help ease its pain.", @@ -136284,6 +138824,11 @@ "entry": "A delusional fusion, POKENAME believes itself to be a world-renowed boxer. Despite its mediocrity, its skill increases with its headaches.", "author": "pory" }, + { + "sprite": "54.11.png", + "entry": "POKENAME gets headaches whenever it is itchy for long enough, but it has no limbs to scratch that itch. It can only wobble hoping another Pokémon comes to help alleviate the itch.", + "author": "quackquackattack" + }, { "sprite": "54.110.png", "entry": "POKENAME produces a unique gas that causes severe migraines in anyone exposed to it. However, POKENAME is in constant pain because of its own gas.", @@ -136309,6 +138854,11 @@ "entry": "It gets lost easily because of its short-term memory, which lasts for 12 hours in the wild. It can extend its memory span through intense mental training, which also causes it to develop headaches.", "author": "quackquackattack" }, + { + "sprite": "54.12.png", + "entry": "POKENAME coats its wings with sticky pollen and refuses to let Trainers clean its wings. This is because the pollen helps it calm down and neutralizes the pain that comes from a headache.", + "author": "quackquackattack" + }, { "sprite": "54.123.png", "entry": "The blades of POKENAME's arms are actually soft membranes akin to webbed feet. Though ineffective at cutting, those struck by its swings develop crushingly painful migraines shortly after.", @@ -136704,6 +139254,11 @@ "entry": "The bubble POKENAME floats in is a protective barrier from external stimuli. Its head is extremely sensitive, so if the barrier is popped, it suffers excruciating migraines until it regenerates.", "author": "sk372" }, + { + "sprite": "54.409.png", + "entry": "The desert sun often gives it a headache, which it solves by submerging it in the sand. It's not uncommon to see a small group of POKENAME together, all with their heads, and only their heads, underground.", + "author": "sk372" + }, { "sprite": "54.41.png", "entry": "POKENAME emits supersonic bursts from its beak to stun prey. Once they're immobilized, it drains them slowly, remaining motionless the entire time.", @@ -137059,6 +139614,11 @@ "entry": "When retracted into its shell, POKENAME moves and spins around with a haphazard series of motions. When it comes back out, it appears quite dizzy, and its walking style is no less off-kilter.", "author": "sk372" }, + { + "sprite": "542.287.png", + "entry": "POKENAME has a prickly personality, often taking a swipe with its large claws at anything coming too close. It takes a long time to warm up to others, but when it does, it is fiercely protective.", + "author": "sk372" + }, { "sprite": "542.319.png", "entry": "POKENAME has an abundance of energy, with its fiery tail slowly burning down to nothing as it expends its stamina. It is a prankster and especially targets Seviper as the victim of its practical jokes.", @@ -137084,6 +139644,16 @@ "entry": "The darker the purple of the Poison-type marking on its chest, the stronger and more venomous POKENAME is. Hardcore Poison-type trainers use this Pokémon as a symbol of pride and strength.", "author": "soup1900" }, + { + "sprite": "543.287.png", + "entry": "POKENAME is sly and can be rather deceitful and manipulative. It is not uncommon for it to use a soft voice and kind gestures to lure others into false senses of security before taking a swing with its sharp and poison-tipped tail.", + "author": "sk372" + }, + { + "sprite": "543.310.png", + "entry": "The moment POKENAME's eyes catch sight of prey, it pounces with astounding speed. Its sharpened horn and tail secrete a deadly poison.", + "author": "mepp." + }, { "sprite": "543.373.png", "entry": "POKENAME crafts a disguise to mimic the fierce countenance of Seviper, but its small body cannot imitate the serpentine silhouette. It will play dead if it sees anything resembling Zangoose, even though the disguise is ignored by the rival Pokémon.", @@ -137119,6 +139689,11 @@ "entry": "Though POKENAME's claws have exceptional gripping power, it more often uses them for fisticuffs and as bludgeoning tools. It scoops up and smashes shellfish from shallow waters to get most of its sustenance.", "author": "sk372" }, + { + "sprite": "548.98.png", + "entry": "POKENAME can be commonly found in rivers and wetlands. Its pincers are strong enough to shatter rocks, allowing it to take down any prey with ease.", + "author": "mepp." + }, { "sprite": "55.105.png", "entry": "POKENAME will find and wield a sturdy stick. It usies it both for battle and to steady itself while swimming through strong currents.", @@ -137434,6 +140009,11 @@ "entry": "POKENAME waddles slowly along the banks of rivers and bays. It channels unusual powers and moves through the jewel-tipped pincers it has.", "author": "bobosmith01" }, + { + "sprite": "551.255.png", + "entry": "POKENAME's spells are so strong they shatter the clay guarding its purple spirit core. Wary of humans, it tends to remain in desert depths, hiding among dunes and forgotten ruins.", + "author": "fiordaliso" + }, { "sprite": "551.551.png", "entry": "POKENAME's eyes, except the central one, constantly move and are believed to be looking into different times and dimensions. Ancient records indicate one first appeared descending from the night sky and hovered over a town before disappearing.", @@ -137479,6 +140059,11 @@ "entry": "Appearing only when raining, metallic chiming sounds emanate from POKENAME's scales as they are struck by raindrops. Groups of them are sometimes recorded to create pleasant, meditative soundtracks.", "author": "pjporwoll" }, + { + "sprite": "555.555.png", + "entry": "Commonly found during snowstorms, POKENAME is perpetually cloaked in an icy mist. It is capable of controlling the frigid air around it to freeze enemies in place.", + "author": "mepp." + }, { "sprite": "556.419.png", "entry": "A tropical insect, POKENAME grows horns in its mane which it uses to defend itself from bird Pokémon. These horns have a chewy texture and a sweet, caramelized flavor, most likely due to its intense internal heat.", @@ -137504,6 +140089,11 @@ "entry": "POKENAME uses the small bell at the back of its throat as a distraction when it is in danger. Some believe that these bells can help plants grow.", "author": "notsaying." }, + { + "sprite": "557.381.png", + "entry": "Any pure-hearted trainer who makes a wish to a POKENAME will have a faint ringing sound play around them. However, anyone with malicious or selfish intentions will instead be tormented by deafening screeches.", + "author": "soup1900" + }, { "sprite": "557.525.png", "entry": "When POKENAME is feeling playful, its wagging tail emits a clear ringing sound. The orb in the back of POKENAME's throat, however, can produce sounds loud enough to deafen its foes.", @@ -137944,6 +140534,11 @@ "entry": "Without a pearl on its tail, POKENAME can't easily control fire, resulting in them becoming erratic and weak in power. Its skin is made of a glossy, shell-like material that, if not routinely maintained, will result in many scratches all over.", "author": "soup1900" }, + { + "sprite": "563.287.png", + "entry": "POKENAME is a predator that uses its uniquely alluring tail to bait unsuspecting prey. Once they're close, it viciously shreds them with its pointed fangs.", + "author": "mepp." + }, { "sprite": "565.127.png", "entry": "POKENAME captures its prey by hiding in underwater sand with its pincers sticking out, appearing to be two pointy rocks. When unsuspecting fish Pokémon swim between them, POKENAME grabs them in its pincers and eagerly eats them.", @@ -138104,6 +140699,11 @@ "entry": "Even while enraged, POKENAME maintains balance and precision. Its fury sharpens its focus, allowing it to strike weak points with brutal efficiency.", "author": ".izik" }, + { + "sprite": "57.241.png", + "entry": "Ill-tempered and violent, POKENAME are nonetheless highly desirable by ranchers for being steadfastly loyal to their herd. Trespassers who invoke the wrath of a POKENAME never do so again.", + "author": "griddle" + }, { "sprite": "57.242.png", "entry": "Though less outwardly aggressive than Primeape, POKENAME is incredibly protective of the eggs it carries. Even a single crack, and it will lay waste to all its surroundings in a rage.", @@ -138169,6 +140769,11 @@ "entry": "When furious, POKENAME channels all of its venom into its foremost horn. A single charge can pierce armor and inflict a lasting poison.", "author": ".izik" }, + { + "sprite": "57.349.png", + "entry": "Nominally well-behaved, POKENAME loses all sense of reason in the presence of dishonesty. It thrashes its heavy arms about, flames building up inside it until it becomes a raging inferno striking down those that defile truth.", + "author": "sk372" + }, { "sprite": "57.352.png", "entry": "The pollen from POKENAME's flowers is extremely irritating, so anytime it swings it arms it only intensifies its primal rage.", @@ -138304,6 +140909,11 @@ "entry": "POKENAME spits out toxic gas when anyone gets too close to its Trainer. The gas is then ignited with an Ember attack, showcasing its perfect control of its emissions.", "author": ".izik" }, + { + "sprite": "58.12.png", + "entry": "POKENAME sits at the bottom of hot springs, where it regulates water temperatures using its natural body heat. It lets out small barks of distress whenever it detects impurities in the water.", + "author": "quackquackattack" + }, { "sprite": "58.124.png", "entry": "Thanks to its sense of smell, it can easily find others of its kind. It sways its hips while tracking and often salutes people while passing by.", @@ -138414,6 +141024,11 @@ "entry": "In cold regions, young Trainers collect POKENAME for their loyalty and cuddly nature. Their warm fur is perfect for nightly snuggles during harsh winters.", "author": ".izik" }, + { + "sprite": "58.216.png", + "entry": "POKENAME loves being praised by their Trainers, so they always do their best during a Pokémon battle. Whenever they feel scared, they whimper and try to find their Trainer.", + "author": "quackquackattack" + }, { "sprite": "58.228.png", "entry": "Law enforcement agencies have begun training POKENAME for special units and operations. Their sense of smell and natural-born teamwork skills make them efficient partners, particularly for search parties.", @@ -138614,6 +141229,11 @@ "entry": "POKENAME gallops through meadows, playing games of fetch with others of its kind. Tiny embers spark from its mane, creating a beautiful display at night.", "author": ".izik" }, + { + "sprite": "58.81.png", + "entry": "POKENAME floats around factories to ensure devices remain at a safe temperature. If any device begins to overheat, it will attempt to absorb the excess heat by pressing itself against the device.", + "author": "quackquackattack" + }, { "sprite": "58.88.png", "entry": "POKENAME like to hang around waste disposal areas, helping with getting rid of trash. It burns up piles of garbage before gobbling up the smoldering refuse that remains.", @@ -138649,6 +141269,11 @@ "entry": "The nest of an POKENAME is usually found in coal-powered power plants. It is made up of barbed wire, soot, and construction insulation.", "author": ".izik" }, + { + "sprite": "59.17.png", + "entry": "From POKENAME's large beak, it can unleash scorching flames capable of melting even the toughest metals. It is an absolutely loyal Pokémon that would do anything to protect its Trainer, even at the cost of its own life.", + "author": "fiordaliso" + }, { "sprite": "59.184.png", "entry": "With its long ears, POKENAME can pick up even the faintest whispers. It uses this ability to rush to the aid of people calling for help, even from far away. Its fur is always warm, and when it becomes angry, it turns scorching hot.", @@ -138664,6 +141289,11 @@ "entry": "Trustworthy and intelligent, POKENAME tries to become a mentor to its Trainer's other Pokémon. It often confuses them instead.", "author": "bobosmith01" }, + { + "sprite": "59.20.png", + "entry": "POKENAME is fiercely protective of its Trainer and will not hesitate to attack anyone who dares come too close. Its fangs can grow scorching hot in an instant, making its bites devastatingly powerful.", + "author": "fiordaliso" + }, { "sprite": "59.214.png", "entry": "POKENAME propels itself by shooting intense flames from its wings. It can fly up to 180 mph, impaling its opponents with its powerful horn.", @@ -138819,6 +141449,11 @@ "entry": "Although POKENAME is small, it runs at incredible speeds, leaping over vast expanses of land in a single bound as if flying. It is very proud of its appearance and protective of its thick, luxurious tail.", "author": "skittytales" }, + { + "sprite": "59.53.png", + "entry": "POKENAME always carries itself with elegance and pride. A trainer of POKENAME must dedicate time to grooming its thick coat or risk facing its ire.", + "author": "mepp." + }, { "sprite": "59.68.png", "entry": "During combat, POKENAME's body temperature rises rapidly, the flame inside its body reacting to the Pokémon's determination. This raises the intensity and speed of its punches, but this can lead to overheating if not managed.", @@ -138849,6 +141484,11 @@ "entry": "With every kick POKENAME makes in battle, the flame on its tail grows, flaring in tune with its fighting spirit. A battle between rival POKENAME can turn into a blazing inferno of fire and feet.", "author": "sk372" }, + { + "sprite": "6.107.png", + "entry": "Its body burns so hot that even the gloves covering its fists scorch its foes. The wings on its back help it reposition swiftly, giving it an edge in dodging and counterattacking.", + "author": "fiordaliso" + }, { "sprite": "6.11.png", "entry": "POKENAME leap great distances through the air, rapidly swirling their fiery tails to create updrafts to carry them. They harden their bodies to help brace for landing.", @@ -139044,6 +141684,11 @@ "entry": "POKENAME's flaming claws are hot enough to slice through a tanker hull like butter. If its target is too far away however, it has a tendency to throw molten debris at its target.", "author": "mistymagius" }, + { + "sprite": "6.259.png", + "entry": "The warmth from POKENAME's body keeps the egg in its pouch safe and filled with healing power. With its wide wings, it can dart swiftly through the air, a skill it uses to move quickly across the cities it visits.", + "author": "fiordaliso" + }, { "sprite": "6.273.png", "entry": "POKENAME roosts atop castle towers at night, and can hear interlopers from miles away. This makes them a favorite companion of royalty.", @@ -139274,6 +141919,11 @@ "entry": "The zipper on its mouth contains a powerful blaze within its body. It hesitates to unzip its mouth, because the blast is uncontrollably powerful.", "author": "skymaster426" }, + { + "sprite": "6.36.png", + "entry": "POKENAME soars through the sky during the full moon to absorb moonlight. It lights the night sky with beautiful displays of fire and ash because of its excitement.", + "author": "quackquackattack" + }, { "sprite": "6.361.png", "entry": "Its massive jaws deliver bites strong enough to shatter even metal. POKENAME is a territorial and brutal creature; after wearing down its foe with the power of its teeth, it finishes the battle by unleashing the full force of its searing flames.", @@ -139344,6 +141994,11 @@ "entry": "POKENAME's wings are too small to allow it to fly, which often frustrates it, and it vents this anger on its opponents in battle. Despite its small size, POKENAME is renowned for being highly energetic and powerful.", "author": "fiordaliso" }, + { + "sprite": "6.397.png", + "entry": "The two gears are separate from the body, allowing POKENAME to strike at prey that seem far enough away to be safe. The edges of the gears are so sharp that POKENAME uses them to sharpen its fangs.", + "author": "whatagooddaytodie" + }, { "sprite": "6.4.png", "entry": "Its wingspan is six times the size of its body. It can fly even higher than Charizard thanks to its small size and low weight.", @@ -139449,6 +142104,11 @@ "entry": "POKENAME fights its foes by raining slashing claw strikes upon them, and its wings allow it to cover great distances in flight. Despite its fierce and gruff temperament, it is highly sought after for beauty competitions due to its velvety red fur.", "author": "fiordaliso" }, + { + "sprite": "6.54.png", + "entry": "POKENAME has major temper tantrums whenever it has a headache. The pain it experiences is expressed through blazing flames and flailing wings.", + "author": "quackquackattack" + }, { "sprite": "6.56.png", "entry": "POKENAME is a highly irritable Pokémon that spends most of its life battling others in its pack. Each victory strengthens the flames on its tail, bringing it ever closer to evolution.", @@ -139559,6 +142219,11 @@ "entry": "POKENAME waves and spins its baton to send messages to other POKENAME from a long distance. Whenever it spins its baton, it is a sign of joy or happiness.", "author": "quackquackattack" }, + { + "sprite": "6.85.png", + "entry": "POKENAME's three heads each has a will of its own and often squabble with each other. It is feared for its aggressive disposition and the searing flames it bellows.", + "author": "mepp." + }, { "sprite": "6.89.png", "entry": "POKENAME's body melts everything in its path as it searches garbage to eat. The smoke it emits can incapacitate any Trainer that breathes it.", @@ -140949,6 +143614,11 @@ "entry": "POKENAME gnaws on its favorite chew toys, metal spoons, bending them as its psychic powers supplement its bites. When a spoon bends too much and becomes ruined, POKENAME chews a new one, but levitates its favorite ones alongside it for comfort.", "author": "pjporwoll" }, + { + "sprite": "65.139.png", + "entry": "Since ancient times, POKENAME have focused their psychic energy through their spoons to carve out rock formations and create new waterways. A spoon recovered from a POKENAME fossil is considered a valuable artifact.", + "author": "wildheartrazorfangs" + }, { "sprite": "65.169.png", "entry": "The citizens on Tarroco Island recently had to deal with flocks of POKENAME making nests in their sea caves. The reason for their arrival is unknown.", @@ -140989,6 +143659,11 @@ "entry": "The large purple crystals on its body glow brightly when it is using its psychic abilities. While it sleeps, it levitates slightly off the ground.", "author": ".izik" }, + { + "sprite": "65.215.png", + "entry": "POKENAME are constantly performing precise calculations, so they require frequent meals to keep up their energy. They fling out their spoons to swipe food off of people's plates before telekinetically pulling them back for their feasts.", + "author": "wildheartrazorfangs" + }, { "sprite": "65.227.png", "entry": "Having lost its wings, POKENAME uses its psychic powers to hone blades of metal. It makes itself new wings out of these that double as projectiles.", @@ -141549,6 +144224,11 @@ "entry": "The ridges on POKENAME's head vibrate when near iron ore. It digs down rapidly, tearing through stone to reach its metallic feast.", "author": ".izik" }, + { + "sprite": "66.409.png", + "entry": "POKENAME often pair into small groups to train and strengthen themselves as a team. This usually takes the form of using their noses to lift and toss large heavy rocks to each other in turn.", + "author": "sk372" + }, { "sprite": "66.41.png", "entry": "POKENAME releases Supersonic waves from the ridges on its head. It uses the resulting confusion to feed on weakened prey.", @@ -141594,6 +144274,11 @@ "entry": "By clapping its hands together, POKENAME emits stunning sound waves. The force can knock smaller foes off their feet instantly.", "author": ".izik" }, + { + "sprite": "66.459.png", + "entry": "Construction crews in beachfront areas must be wary of POKENAME, as it has a bad habit of stealing concrete powder from their stores. It's thought that it does this under the belief that consuming the powder will strengthen its sand-like body.", + "author": "sk372" + }, { "sprite": "66.478.png", "entry": "POKENAME uses its powerful arms to smash through hard stones, looking for tough gemstones. It replaces the gems on its body with new ones to make its body even stronger.", @@ -142759,6 +145444,11 @@ "entry": "It prefers swimming to flying, able to swim across entire oceans in a few hours. It follows along ships it comes across, watching over them and guiding them through rough waters.", "author": "sk372" }, + { + "sprite": "7.15.png", + "entry": "POKENAME has a small stinger that is soft and underdeveloped. It instead shoots streams of water or venom to deter threats.", + "author": "quackquackattack" + }, { "sprite": "7.150.png", "entry": "The bubble that POKENAME forms around itself is created by its psychic power. Attempting to disrupt this bubble results in a powerful concussive blast, incapacitating any who are unprepared for this attack.", @@ -142909,6 +145599,11 @@ "entry": "POKENAME has the ability to sense people's emotions. If it senses hostility, it sprays foam powerfully from its mouth.", "author": "brapollo" }, + { + "sprite": "7.29.png", + "entry": "When the weather is hot outside, POKENAME sprays its nestmates with water to keep cool. This activity helps it develop bonds with its nestmates by encouraging social play.", + "author": "quackquackattack" + }, { "sprite": "7.294.png", "entry": "The shell on POKENAME's back is only partly natural. It gnaws on wood to fashion flexible armour pieces, which help to protect it from attacks. The older a POKENAME is, the more armour it will gather along its shell.", @@ -142919,6 +145614,11 @@ "entry": "POKENAME can often be found sleeping in shallow ponds and rivers. As it slumbers, other wild Pokémon come to feed off the plant on its back.", "author": "kandyman" }, + { + "sprite": "7.30.png", + "entry": "POKENAME likes to take mud baths alongside its nestmates. If weather conditions are too dry, it makes its own mud by spraying a dirt patch with water.", + "author": "quackquackattack" + }, { "sprite": "7.300.png", "entry": "POKENAME is considered a very cute Pokémon. However, Trainers should be cautious, as it doesn't know its own strength yet.", @@ -143004,11 +145704,21 @@ "entry": "POKENAME nests along riverbanks, where it carves shallow dens into the soil with its claws. It spends most of its time submerged nearby, watching over its nest from the water.", "author": "eiskitsune" }, + { + "sprite": "7.43.png", + "entry": "POKENAME waddles in marshes and swamps to find reeds to eat. Its small size and tough body make it unappealing to predators that would eat it.", + "author": "quackquackattack" + }, { "sprite": "7.430.png", "entry": "POKENAME creates mesmerizing bubble displays by dancing with others of its kind. Its shell is too small to hide in, so it unleashes a stream of bubbles from its beak to protect itself.", "author": "robbery_666" }, + { + "sprite": "7.43a.png", + "entry": "POKENAME eats reeds in swamplands to turn the color of their leaves into a bright color. This signals to predators that it is poisonous, which results in them leaving it alone.", + "author": "quackquackattack" + }, { "sprite": "7.46.png", "entry": "The growths on POKENAME's back are symbiotic trilobites which feed on its nutrients in exchange for added defense from predators. ", @@ -143229,11 +145939,6 @@ "entry": "POKENAME lives in muddy terrain coated with a clear, sticky poison which it produces. It remains unaffected as it lounges in the toxic muck.", "author": ".izik" }, - { - "sprite": "70.199.png", - "entry": "Eager for battle, the plant on top supposedly gives orders to the larger body. It always obeys without question.", - "author": "atlas333" - }, { "sprite": "70.20.png", "entry": "POKENAME uses its sharp leaves to cut up molding garbage in dumpsters before eating. The sharpness of its leaves helps it efficiently cut and consume the discarded food.", @@ -143559,6 +146264,11 @@ "entry": "Its roots are insufficient for draining nutrients from the soil and require help from a Trainer through a Big Root or other item. It integrates the item with its body, which provides an extra kick to help it absorb all the nutrients it requires.", "author": "quackquackattack" }, + { + "sprite": "70.71.png", + "entry": "POKENAME has a voracious appetite, often consuming prey almost as large as it is, but because of its weak stomach acids, it will spend weeks digesting its meal before it has to hunt again.", + "author": "sk372" + }, { "sprite": "70.75.png", "entry": "POKENAME releases a Payapa Berry scent to attract prey like Sandshrew before using Rock Throw to incapacitate them. The scent lures them close, ensuring a quick and easy capture.", @@ -143864,6 +146574,11 @@ "entry": "POKENAME looks like its fearless and mean, but if confronted, it will escape immediately and build a nest in a place where it feels safer. The new nests become increasingly harder to find every time it moves.", "author": "daidalos" }, + { + "sprite": "71.55.png", + "entry": "A hunter inhabiting dense jungles and swampy areas, POKENAME uses a combination of faint psychic powers and a noxious miasma breath to incapacitate prey before hoisting them into its wide mouth.", + "author": "sk372" + }, { "sprite": "71.60.png", "entry": "POKENAME float along rivers covering its mouth with its tail. It lures smaller Pokémon into its gaping maw with its sweet, scented saliva.", @@ -143879,6 +146594,11 @@ "entry": "The sweet syrup-like venom that POKENAME produces to lure in prey has been used to create anesthesia. The paralyzing agent in the venom gets refined into a solution that helps put hospital patients to sleep and block pain.", "author": "cobalt0135" }, + { + "sprite": "71.80.png", + "entry": "Despite having been physically blinded by the Victreebell on its head, Slowbro functions just fine. The plant's secretions actually seem to enhance the host's psychic abilities slightly, making it moderately more aware of its surroundings.", + "author": "sk372" + }, { "sprite": "71.94.png", "entry": "POKENAME sprays an irresistible scent from the opening on its head. If prey gets too close, it unleashes powerful dark magic to strike them down.", @@ -144139,6 +146859,11 @@ "entry": "POKENAME quietly flutters through caves to find its next meal. Once in range, it wraps its tentacles around its prey to make injecting venom easier.", "author": "quackquackattack" }, + { + "sprite": "72.417.png", + "entry": "POKENAME makes for excellent household pest control, as it perches on high ground out of sight, before swooping down and lashing quickly with stunning tentacles. It then dutifully tosses away or consumes the downed prey.", + "author": "sk372" + }, { "sprite": "72.43.png", "entry": "POKENAME can live amphibiously, walking on land with its feet and navigating the sea with its tentacles. It attacks anglers with its venomous beak.", @@ -144554,6 +147279,11 @@ "entry": "POKENAME are actually too heavy to swim in water, simply laying on the ocean floor with their mouth open in order to catch prey instead.", "author": "the.the.the.the.the.the" }, + { + "sprite": "74.133.png", + "entry": "POKENAME is found on the paths of mountains, jumping from rock to rock. It rarely ever falls, due to the rocky hand on its tail.", + "author": "notsaying." + }, { "sprite": "74.16.png", "entry": "Due to its robust body, POKENAME is unable to fly. Instead, it uses its strong arms to pull itself up cliffs and trees.", @@ -144694,6 +147424,11 @@ "entry": "Struggling to move, it consumes surrounding dirt and boulders, forming a pit. Hikers will occasionally fall in, irritating POKENAME to no end.", "author": "char_latte3412" }, + { + "sprite": "74.403.png", + "entry": "POKENAME is born underground and hibernates in its birth cave for months. During this time, it grows a strong bond with its parents and often stays with them even past evolution.", + "author": "operativevalkyrie" + }, { "sprite": "74.404.png", "entry": "POKENAME thrives in lush mountainside forests, drawing nutrients from the rocky soil to nourish itself and harden its exterior. It remains motionless for hours while feeding, often mistaken for a boulder by inexperienced passersby.", @@ -144719,6 +147454,11 @@ "entry": "When POKENAME discovers a gemstone, its topaz-like eyes light up with excitement. These precious stones are an essential part of its diet.", "author": ".izik" }, + { + "sprite": "74.430.png", + "entry": "POKENAME's dances are equal parts elegance and grandstanding. If it senses an onlooker isn't impressed with either its moves or its build, it maneuvers itself closer through innocuous dance steps before delivering a stone-fisted backhand.", + "author": "sk372" + }, { "sprite": "74.442.png", "entry": "POKENAME is convinced it can fly if it tries hard enough, despite lacking the necessary attributes. Trainers are warned to watch for falling POKENAME as it leaps from cliffs and plummets while flapping its arms rapidly.", @@ -145279,6 +148019,11 @@ "entry": "Flying through deep caverns and abandoned mines, it hunts stealthily. While resting, it tucks its wings in tightly, resembling an ordinary boulder.", "author": ".izik" }, + { + "sprite": "76.178.png", + "entry": "POKENAME is often spotted atop mountain peaks, living as a hermit far from the chaos of large cities. It is said to have a deeply peaceful nature, guiding lost travelers down the right path.", + "author": "fiordaliso" + }, { "sprite": "76.194.png", "entry": "POKENAME is sometimes mistaken for a Caterpie from a distance. There are many reports of young Trainers attempting to battle POKENAME, only to be rushed to the nearest Pokémon Center. After a battle, wild POKENAME celebrate by jumping into water.", @@ -145349,6 +148094,11 @@ "entry": "While its secondary set of jaws sharpens its crystals while mining ores, POKENAME's main body is forced to subsist on subterranean mushrooms. When threatened, it allows hits to bounce off its rock armor before using a deadly Crunch.", "author": "ghostslythe" }, + { + "sprite": "76.308a.png", + "entry": "POKENAME has exposed bones that make it appear deceased, but it still rummages through rocks. Its skeletal body is tough enough to withstand blows from the strongest of forces without getting scratched.", + "author": "jangodiot" + }, { "sprite": "76.31.png", "entry": "It clads itself in the highest-quality rocks it can find, wearing them like royal regalia. When it replaces a rock, it gifts the rock being replaced to one of its young.", @@ -145439,6 +148189,11 @@ "entry": "POKENAME carefully remove, crush and reshape parts of the mountains they reside in over time. It is thought that they are attempting to turn these mountains into vast temples for a civilization that no longer exists.", "author": "sk372" }, + { + "sprite": "76.373.png", + "entry": "POKENAME has to carry its costume, which is made of rocks, at all times on its head, since the costume is too heavy to balance upright. It makes for a good defense when in battle.", + "author": "jangodiot" + }, { "sprite": "76.374.png", "entry": "The hot rocks covering its body lose their heat when out of direct sunlight. Under sunlight, however, they can reach searing temperatures hotter than a stovetop within seconds.", @@ -145509,6 +148264,11 @@ "entry": "Wherever this Pokémon walks, a quake can be felt, along with a drop in temperature. Its rocky scales are cold to the touch.", "author": "houndrys." }, + { + "sprite": "76.468.png", + "entry": "The many stones that cover POKENAME's body hold a mystical power. Those lucky enough to find one are said to be blessed with peaceful slumber.", + "author": "mepp." + }, { "sprite": "76.478.png", "entry": "When using its powers in battle, the seams between the stone plates of POKENAME's body glow brightly. Its said that beneath the stone is a crystal so radiant it would blind a person instantly if beheld.", @@ -145869,6 +148629,11 @@ "entry": "Its wings are composed entirely of flames, spreading sparks with every flap. It has complete control over these flames, so the sparks and embers will not burn anything unless POKENAME wills it.", "author": "sk372" }, + { + "sprite": "78.122.png", + "entry": "It craves speed in all its forms, and is particularly fascinated by vehicles. Some POKENAME will try to cause car crashes by creating invisible walls on roads and raceways.", + "author": "griddle" + }, { "sprite": "78.128.png", "entry": "Enterprising Trainers occasionally attempt to use POKENAME as a beast of burden, hoping to combine the strength of a Tauros with the speed of a Rapidash. Unfortunately, they usually overlook Tauros's bad temper and Rapidash's flames.", @@ -146014,6 +148779,11 @@ "entry": "POKENAME challenges others of its kind to digging races. Its fiery spines ignite as it digs, lighting the tunnels it carves.", "author": ".izik" }, + { + "sprite": "78.287.png", + "entry": "POKENAME's flames have minor healing properties that it bestows to its loved ones. Against hostile enemies, POKENAME uses its fire to burn them to ash.", + "author": "mepp." + }, { "sprite": "78.296.png", "entry": "POKENAME runs across open plains, leaving flaming trails in its wake. Its fiery mane symbolizes its unwavering spirit and unmatched agility in battle.", @@ -146554,6 +149324,11 @@ "entry": "POKENAME is a constant danger to itself. If the fire on its tail goes out it dies, but it constantly desires to try to go fishing with it. Trainers need have constant supervision over POKENAME, though thankfully it doesn't do anything quickly.", "author": "foolish_weasel" }, + { + "sprite": "79.405.png", + "entry": "When POKENAME tires of flying, it turns invisible and rests itself on the head of another creature. Those currently serving as POKENAME's perch feel their minds become clouded and find it difficult to think straight.", + "author": "sk372" + }, { "sprite": "79.406.png", "entry": "The sweet white film POKENAME secretes is rumored to cause psychic visions when consumed in excess. No verified cases exist, but demand remains high among Psychics.", @@ -146829,6 +149604,11 @@ "entry": "POKENAME can both inject venom at close range and spray venom from a distance. Its body is covered with a thin carapace that protects itself from attacks.", "author": "quackquackattack" }, + { + "sprite": "8.15.png", + "entry": "POKENAME is highly territorial and aggressive. With multiple stingers as sharp as steel, many run in fear at the sight of one.", + "author": "mepp." + }, { "sprite": "8.157.png", "entry": "When POKENAME feels relaxed, it emits hot steam from its fluffy neck. The steam is said to have therapeutic effects, so some spas use it for their sauna.", @@ -146859,6 +149639,11 @@ "entry": "POKENAME is easily excitable and may accidentally shock other Trainers or Pokémon. After this happens, it hides in its shell and curls its tail around itself in shame.", "author": "quackquackattack" }, + { + "sprite": "8.173.png", + "entry": "POKENAME perches on stones near rocky beaches. They gather in groups on the night of a shooting star before retreating back to the ocean or underwater caves.", + "author": "dyanz0" + }, { "sprite": "8.19.png", "entry": "POKENAME swims just below a pond's surface, with its ears barely visible above. It uses this stealthy approach to avoid predators.", @@ -146899,6 +149684,11 @@ "entry": "POKENAME variably retracts its head and limbs into its shell as it continues to spin, making it difficult for opponents to judge where the next attack will come from. Trainers should buff and shine its shell as a form of bonding.", "author": "pjporwoll" }, + { + "sprite": "8.29.png", + "entry": "POKENAME shoots down cocoons that hang in trees with jets of water. The water is mixed with a poisonous gel that eats through silk, which causes cocoons to fall to the ground and become its nest meal.", + "author": "quackquackattack" + }, { "sprite": "8.29a.png", "entry": "When angered, POKENAME's horn releases a strong torrent of tainted water. This water is horribly poisonous, and can prove dangerous even with simple contact with skin.", @@ -146909,6 +149699,11 @@ "entry": "Despite their size, POKENAME are excellent swimmers. The plant on its back is always hydrated, and thus it's impossible for it to wilt.", "author": "imagine1." }, + { + "sprite": "8.30.png", + "entry": "POKENAME stands between its younger nestmates and predators, relying on its shell to block attacks. It remains between its siblings and the predator until the predator leaves.", + "author": "quackquackattack" + }, { "sprite": "8.300.png", "entry": "POKENAME are often seen cleaning and maintaining their fur. They do not usually engage in battle unless their fur has been \"attacked\" by the opponent.", @@ -146939,6 +149734,11 @@ "entry": "It uses its tail in water to act as a rudder and its ears to detect the directions of currents.", "author": "melodydelune" }, + { + "sprite": "8.36.png", + "entry": "POKENAME are most active during the full moon because they want to absorb moonlight. They get excited during the night of the full moon, so much so that they shoot a beautiful display of sparkling water into the air.", + "author": "quackquackattack" + }, { "sprite": "8.37.png", "entry": "The older POKENAME gets, the darker its six tails become. It can also wind and release them while swimming to get a little boost.", @@ -147214,6 +150014,11 @@ "entry": "POKENAME are exceptionally lazy Pokémon that will sleep for weeks on end before waking to gorge themselves, then going back to sleep. Despite their laziness they have an immense temper if disturbed and are incredibly strong.", "author": "katie" }, + { + "sprite": "80.326.png", + "entry": "POKENAME emits a strong magnetic force from the Shellder on its face. It uses this force to carry pieces of Slowpoke tails that have broken off, which it plans to fish with, but they regularly get stolen by carnivorous Pokémon.", + "author": "jangodiot" + }, { "sprite": "80.327.png", "entry": "When a Shellder bit down on this Pokémon's sheath, it rapidly evolved to encompass it. It now likes to occasionally bite POKENAME's hilt, but POKENAME doesn't seem to mind.", @@ -147694,6 +150499,11 @@ "entry": "Formed from weather vanes broken in storms, POKENAME has the uncanny ability to sense Flying-type flight patterns. Farmers station them in the middle of fields, where they call down the thunder on crop-eating pests.", "author": "ghostslythe" }, + { + "sprite": "81.367.png", + "entry": "Despite the voltage of POKENAME's electricity ranging from two to five volts, even an indirect hit can cause severe injury to opposing trainers. If it likes them, POKENAME's trainers will be unaffected.", + "author": "notsaying." + }, { "sprite": "81.371.png", "entry": "POKENAME uses magnetism in order to steal and hoard any keys from any people it comes across. Curiously, its magnetism only affects keys, as no other metallic objects will cling to it.", @@ -148329,6 +151139,11 @@ "entry": "Its body is harder than stone and grows even harder while it rests. The shell will be shed when it becomes too hard and can be used for soup broth.", "author": ".izik" }, + { + "sprite": "83.145.png", + "entry": "POKENAME funnels all its electricity into the leek it carries when in combat. Every swing of the charged-up weapon creates arcs of powerful lightning that let it dominate the battlefield.", + "author": "sk372" + }, { "sprite": "83.151.png", "entry": "POKENAME's leek is packed full of its own psychic energy, and able to manipulate the flavors of food with just a touch. It distracts travelers in order to stir their food with its leek and make it much more delectable.", @@ -148569,6 +151384,11 @@ "entry": "A group of POKENAME is known as a battalion, with one member acting as the tactical leader. Their coordinated attacks are highly strategic and efficient.", "author": ".izik" }, + { + "sprite": "83.417.png", + "entry": "POKENAME is often seen pecking at its leek-like tail, and was first thought by observers to be an attempt to constantly preen itself. It's now believed that it does this simply because it likes the taste of its own tail.", + "author": "sk372" + }, { "sprite": "83.419.png", "entry": "It often makes its home in abandoned farm silos, feeding on leftover grain. These secluded shelters keep it safe and well-fed.", @@ -149329,6 +152149,11 @@ "entry": "It has the ability to split into three separate globs, each with its own personality. However, it must rejoin within a day, or it will perish due to overwhelming loneliness.", "author": ".izik" }, + { + "sprite": "85.177.png", + "entry": "POKENAME cannot fly very well, so it relies on hopping long distances at great speed. However, this requires great coordination between each head, as they possess individual brains. Therefore, newly evolved POKENAME are clumsy.", + "author": "bobosmith01" + }, { "sprite": "85.178.png", "entry": "POKENAME can peek into the future. Unfortunately, each of its heads report different instances of the future, making predictions extremely erratic.", @@ -149509,6 +152334,11 @@ "entry": "When a POKENAME is excessively hungry, its other heads will emerge from the feathers on its chest. When food is found, only the main head will eat.", "author": ".izik" }, + { + "sprite": "85.430.png", + "entry": "Extremely skilled POKENAME can create copies of itself made of flame to serve as backup dancers to its performance. Notably, the two simulacra exhibit differing personalities and dance moves compared to their creator.", + "author": "sk372" + }, { "sprite": "85.430b.png", "entry": "A well-fed POKENAME will never need to have its other heads emerge. If it is too full it will dance emphatically to lose weight.", @@ -149989,6 +152819,11 @@ "entry": "POKENAME races through icy waters while using Aurora Beam from its gem. It fends off predators like Sharpedo with precise blasts.", "author": ".izik" }, + { + "sprite": "86.559.png", + "entry": "The body of a POKENAME is mostly made of blubber, which helps it warm in frigid temperatures. When it reaches the point where it trusts with its Trainer, it will expose its soft and vulnerable underbelly for belly rubs.", + "author": "quackquackattack" + }, { "sprite": "86.56.png", "entry": "POKENAME is a mischievous nuisance in port cities because it hangs out near docks and gets in the way while begging for food and attention. If it is ignored, it flies into a tantrum where it seeks to cause destruction until its demands are met.", @@ -150514,6 +153349,11 @@ "entry": "This sluggish Pokémon is made out of toxic sludge that seeps into the ground beneath it. It rarely moves, preferring to sleep and consume mass amounts of waste surrounding it.", "author": "motion_09" }, + { + "sprite": "88.145.png", + "entry": "POKENAME was first discovered in what remained of an old power plant infamous for its pollution amount. Machines touched by its goop will malfunction as the goo seeps within and overcharges them with electricity.", + "author": "sk372" + }, { "sprite": "88.146.png", "entry": "When POKENAME flies, it drapes the skies in a cape of murky smog. Many remote villages blame this Pokémon for periods of acid rain. ", @@ -151309,6 +154149,11 @@ "entry": "POKENAME can be seen performing for children at water parks. The sack on its back is filled with all sorts of water-themed party tricks.", "author": "patch" }, + { + "sprite": "9.123.png", + "entry": "POKENAME is difficult to pin down, since it is a versatile fighter. If the blades on its arms aren't enough to finish an opponent, it bombards them with water projectiles from its twin cannons.", + "author": "fiordaliso" + }, { "sprite": "9.127.png", "entry": "When this brutal Pokémon eats, it lays flat on its stomach, shredding apart anything remaining underneath it with one thousand teeth.", @@ -152279,11 +155124,6 @@ "entry": "POKENAME is frequently seen in abandoned areas where it seeks to pull pranks on youths snooping around the location. Its impish demeanor makes it a common trickster character in stories.", "author": "pjporwoll" }, - { - "sprite": "92.203.png", - "entry": "POKENAME's tail appears to be possessed by a malevolent spirit. The second head seems content to watch, for now.", - "author": "atlas333" - }, { "sprite": "92.206.png", "entry": "Tales tell of it burrowing into headstones to absorb memories of the deceased. If it deems the person cruel in their past life, it shatters their grave marker in disdain.", @@ -152664,11 +155504,6 @@ "entry": "POKENAME feeds on fear, so it maliciously haunts urban areas with dangerous tricks. The red orb necklace glows brighter as it absorbs more fear, making it harder to hide until it consumes the stored fear.", "author": "pjporwoll" }, - { - "sprite": "93.203.png", - "entry": "After evolution, POKENAME's previous possession has worsened. Now the two fight for control of the body.", - "author": "atlas333" - }, { "sprite": "93.239.png", "entry": "Childlike in demeanor, POKENAME often trick Trainers into holding their hand under the guise of seeking comfort. They then administer a harmless electric shock and run away chortling.", @@ -152859,11 +155694,6 @@ "entry": "After living together as a single ghastly entity, as the mother POKENAME got stronger, the child inside its pouch eventually became its own ghostly entity, becoming closer with its mother and stronger in death.", "author": "beatdoof" }, - { - "sprite": "94.12.png", - "entry": "POKENAME's primary defense mechanism is the face-like pattern on it's wings. Few predators can withstand its soul piercing gaze.", - "author": "atlas333" - }, { "sprite": "94.12.png", "entry": "POKENAME roams during the night, releasing spores into the air. These spores cause those who are asleep to experience horrible nightmares.", @@ -152964,11 +155794,6 @@ "entry": "POKENAME no longer is content with scaring only in the physical world, so it invades dreams and turns them into nightmares to devour. It has a soft spot for the elderly, so it instead makes their dreams more pleasant and scares off other Pokémon.", "author": "pjporwoll" }, - { - "sprite": "94.203.png", - "entry": "Now fully evolved, POKENAME's possession is complete. Now all that remains is a spirit that takes pleasure in the pain of others. ", - "author": "atlas333" - }, { "sprite": "94.206.png", "entry": "When you hear whispers beneath you, POKENAME may be there. It is waiting for prey to fall into a nearby pit, where it will feast on their soul.", @@ -153229,6 +156054,16 @@ "entry": "Fusion has awakened POKENAME's dormant genes. It constantly emanates unstable spectral energy from its small body.", "author": "8xviktor" }, + { + "sprite": "94.424.png", + "entry": "POKENAME is even more ruthless than the sum of its parts. The venom from its horns drains its victims' life force, siphoning it away to POKENAME.", + "author": "bee4082" + }, + { + "sprite": "94.424b.png", + "entry": "POKENAME is even more ruthless than the sum of its parts. The venom from its horns drains its victims' life force, siphoning it away to POKENAME.", + "author": "bee4082" + }, { "sprite": "94.427.png", "entry": "POKENAME travels with the spirit of its deceased kin. They work in tandem to take down any threat before them.", @@ -153584,6 +156419,11 @@ "entry": "POKENAME carves specific scratches into the walls of its cavernous homes to designate its territory. For young Pokémon this also designates safe zones, as POKENAME protects them from predators.", "author": "sk372" }, + { + "sprite": "95.22.png", + "entry": "Though its body is composed entirely of solid rock, POKENAME can soar gracefully through the skies, able to fly for a full day without tiring. To strike prey or intruders in its territory, it drops stone feathers from above.", + "author": "fiordaliso" + }, { "sprite": "95.220.png", "entry": "POKENAME's stone-covered body is very cold. Even rain that hits it instantly freezes, making it highly resistant to temperature changes and allowing it to thrive in frigid environments.", @@ -153594,6 +156434,11 @@ "entry": "POKENAME live in small packs in caverns across the land. It primarily feeds on stones rich in minerals, but packs have been known to work together and hunt Geodude on rare occasions.", "author": "sk372" }, + { + "sprite": "95.229.png", + "entry": "POKENAME leads packs of similarly-shaped Pokémon through caves and deserts. Its body is constantly cracking due to its internal body temperature, which can reach levels of heat that can melt rocks.", + "author": "redmagecole" + }, { "sprite": "95.23.png", "entry": "It nests in the tunnels dug by Onix, and feeds off the leftover minerals Onix deposit in their wake. POKENAME's mouth is awash in toxic chemicals and infectious bacteria.", @@ -153724,6 +156569,11 @@ "entry": "Many hikers across the world have an affinity for POKENAME, as its tools are very equipped to help those traversing mountains. Wild specimens have even saved travelers in peril with their ropes and pick.", "author": "sk372" }, + { + "sprite": "95.373.png", + "entry": "POKENAME buries itself in cavern floors and pops up to ask for hugs from passing trainers. When a trainer is unable to hug POKENAME due to it being made of solid rock, POKENAME gets depressed and burrows further into its hole.", + "author": "redmagecole" + }, { "sprite": "95.382.png", "entry": "POKENAME digs deep into cave walls to sleep for years at a time, eating roots it finds if it gets hungry. It remains hidden in the darkness, living off the minerals and roots in its subterranean home.", @@ -153899,6 +156749,11 @@ "entry": "POKENAME produces a powerful sleeping gas that is treasured by people suffering from insomnia. However, long-term exposure to the gas could cause them to be put into a coma.", "author": "mistymagius" }, + { + "sprite": "96.120.png", + "entry": "POKENAME releases psychic waves from its appendages to lull people to sleep. It latches onto people while they are sleeping to consume their dreams.", + "author": "quackquackattack" + }, { "sprite": "96.122.png", "entry": "By creating illusionary props like comfy beds and pillows, POKENAME can lull others to sleep so it can eat their dreams. It slaps anyone who refuses to go to bed. ", @@ -153999,6 +156854,11 @@ "entry": "POKENAME use their long noses to collect honey from hives, messily scooping it into their paws. After they've eaten their fill, they will use any remaining honey to create a strange mist that ensures sweet dreams for everyone nearby.", "author": "wildheartrazorfangs" }, + { + "sprite": "96.216.png", + "entry": "POKENAME hypnotizes Trainers and Pokémon to put them to sleep. Once it has finished eating their dreams, it joins them in a brief nap.", + "author": "quackquackattack" + }, { "sprite": "96.23.png", "entry": "Its venom lingers in the body for months, causing vivid nightmares whenever the victim sleeps. This cruel effect ensures it is feared in the wild.", @@ -154264,6 +157124,11 @@ "entry": "It runs alongside trains, absorbing the dreams of passengers as it keeps pace. Its flames turn a vivid blue when it is full.", "author": ".izik" }, + { + "sprite": "96.81.png", + "entry": "POKENAME sways back and forth like a coin from a hypnotist. Its arc is always smooth and symmetrical due to its ability to calculate the perfect path.", + "author": "quackquackattack" + }, { "sprite": "96.90.png", "entry": "They sleep with only their nose sticking out of their shell. It continues to sniff for food and predators while it slumbers.", @@ -155054,6 +157919,11 @@ "entry": "POKENAME are a popular delicacy in island regions as their flesh has been described as sweet and tender. They are often cooked with their scales as they have a nice, crunchy texture when soaked.", "author": "mistymagius" }, + { + "sprite": "98.488.png", + "entry": "POKENAME spend days patrolling thermal vent ecosystems for food, often picking fights with larger prey than they should.", + "author": "noblenobody" + }, { "sprite": "98.54.png", "entry": "POKENAME are docile and calm, communicating using quacks and waving their claws. This method of communication is sophisticated enough that local sailors can tell if a storm is coming by observing POKENAME that are on beaches.", @@ -155064,6 +157934,11 @@ "entry": "POKENAME is more than eager to throw its weight around with its large size and strong claws. Because of its bullying nature, it's not held in high regard by the Krabby or Corphish lines.", "author": "sk372" }, + { + "sprite": "98.548.png", + "entry": "POKENAME lives in warm seas. It is considered a delicacy, but its powerful pincers and sturdy shell make catching it no easy feat.", + "author": "mepp." + }, { "sprite": "98.55.png", "entry": "POKENAME are friendly and clever, using their quacking and claws to guide each other to patches of litter. POKENAME then clean up that area so that they can invite tourists to their beaches, beckoning ships from their sandy shores.", @@ -155324,6 +158199,11 @@ "entry": "Natural hydraulics allow POKENAME to launch its sturdy body at speeds exceeding 150km/h. Due to this strength, few are willing to disturb the calm, peaceful life POKENAME leads.", "author": "turron_turron" }, + { + "sprite": "99.488.png", + "entry": "The intense heat within the shell of POKENAME creates thermal vent systems as they rest on the seafloor, waiting for prey to stray too close.", + "author": "noblenobody" + }, { "sprite": "99.54.png", "entry": "POKENAME are cunning, as they wave their claws and quack to communicate when ships are arriving. When ships dock at the port, POKENAME wave their claws, hoping for snacks from various sailors or tourists.", diff --git a/Graphics/Pictures/hallfamebg.png b/Graphics/Pictures/HallOfFame/hallfamebg.png similarity index 100% rename from Graphics/Pictures/hallfamebg.png rename to Graphics/Pictures/HallOfFame/hallfamebg.png diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_1.png b/Graphics/Pictures/HallOfFame/hallfamebg_1.png new file mode 100644 index 000000000..ebea40ba8 Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_1.png differ diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_2.png b/Graphics/Pictures/HallOfFame/hallfamebg_2.png new file mode 100644 index 000000000..b6fcb3e46 Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_2.png differ diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_3.png b/Graphics/Pictures/HallOfFame/hallfamebg_3.png new file mode 100644 index 000000000..5ef3e6289 Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_3.png differ diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_4.png b/Graphics/Pictures/HallOfFame/hallfamebg_4.png new file mode 100644 index 000000000..2b124d34d Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_4.png differ diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_5.png b/Graphics/Pictures/HallOfFame/hallfamebg_5.png new file mode 100644 index 000000000..297ac6bc3 Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_5.png differ diff --git a/Graphics/Pictures/hallfamebg_multiline.png b/Graphics/Pictures/HallOfFame/hallfamebg_multiline.png similarity index 100% rename from Graphics/Pictures/hallfamebg_multiline.png rename to Graphics/Pictures/HallOfFame/hallfamebg_multiline.png diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_multiline_1.png b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_1.png new file mode 100644 index 000000000..a675d0a24 Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_1.png differ diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_multiline_2.png b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_2.png new file mode 100644 index 000000000..47995059b Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_2.png differ diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_multiline_3.png b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_3.png new file mode 100644 index 000000000..dffd5dd8c Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_3.png differ diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_multiline_4.png b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_4.png new file mode 100644 index 000000000..efc7c3c83 Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_4.png differ diff --git a/Graphics/Pictures/HallOfFame/hallfamebg_multiline_5.png b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_5.png new file mode 100644 index 000000000..6d5f1ddcb Binary files /dev/null and b/Graphics/Pictures/HallOfFame/hallfamebg_multiline_5.png differ