mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 13:15:01 +00:00
Fixed location signpost not appearing properly when using Fly, fixed wild/trainer Pokémon with a "getForm" handler not using it
This commit is contained in:
@@ -15,8 +15,6 @@
|
|||||||
# 4096px -> 65536px (enough to load pretty much any tileset)
|
# 4096px -> 65536px (enough to load pretty much any tileset)
|
||||||
# 8192px -> 262144px
|
# 8192px -> 262144px
|
||||||
# 16384px -> 1048576px (what most people have at this point)
|
# 16384px -> 1048576px (what most people have at this point)
|
||||||
#
|
|
||||||
# ~Roza/Zoroark
|
|
||||||
#===============================================================================
|
#===============================================================================
|
||||||
class TilemapRenderer
|
class TilemapRenderer
|
||||||
module TilesetWrapper
|
module TilesetWrapper
|
||||||
|
|||||||
@@ -131,10 +131,7 @@ module GameData
|
|||||||
pkmn = Pokemon.new(species, pkmn_data[:level], trainer, false)
|
pkmn = Pokemon.new(species, pkmn_data[:level], trainer, false)
|
||||||
trainer.party.push(pkmn)
|
trainer.party.push(pkmn)
|
||||||
# Set Pokémon's properties if defined
|
# Set Pokémon's properties if defined
|
||||||
if pkmn_data[:form]
|
pkmn.form_simple = pkmn_data[:form] if pkmn_data[:form]
|
||||||
pkmn.forced_form = pkmn_data[:form] if MultipleForms.hasFunction?(species, "getForm")
|
|
||||||
pkmn.form_simple = pkmn_data[:form]
|
|
||||||
end
|
|
||||||
pkmn.item = pkmn_data[:item]
|
pkmn.item = pkmn_data[:item]
|
||||||
if pkmn_data[:moves] && pkmn_data[:moves].length > 0
|
if pkmn_data[:moves] && pkmn_data[:moves].length > 0
|
||||||
pkmn_data[:moves].each { |move| pkmn.learn_move(move) }
|
pkmn_data[:moves].each { |move| pkmn.learn_move(move) }
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ class LocationWindow
|
|||||||
@window.viewport.z = 99999
|
@window.viewport.z = 99999
|
||||||
@currentmap = $game_map.map_id
|
@currentmap = $game_map.map_id
|
||||||
@timer_start = System.uptime
|
@timer_start = System.uptime
|
||||||
|
@delayed = !$game_temp.fly_destination.nil?
|
||||||
end
|
end
|
||||||
|
|
||||||
def disposed?
|
def disposed?
|
||||||
@@ -25,7 +26,11 @@ class LocationWindow
|
|||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
return if @window.disposed?
|
return if @window.disposed? || $game_temp.fly_destination
|
||||||
|
if @delayed
|
||||||
|
@timer_start = System.uptime
|
||||||
|
@delayed = false
|
||||||
|
end
|
||||||
@window.update
|
@window.update
|
||||||
if $game_temp.message_window_showing || @currentmap != $game_map.map_id
|
if $game_temp.message_window_showing || @currentmap != $game_map.map_id
|
||||||
@window.dispose
|
@window.dispose
|
||||||
|
|||||||
@@ -443,6 +443,7 @@ def pbGenerateWildPokemon(species, level, isRoamer = false)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
# Trigger events that may alter the generated Pokémon further
|
# Trigger events that may alter the generated Pokémon further
|
||||||
|
genwildpoke.form_simple = genwildpoke.form if MultipleForms.hasFunction?(genwildpoke.species, "getForm")
|
||||||
EventHandlers.trigger(:on_wild_pokemon_created, genwildpoke)
|
EventHandlers.trigger(:on_wild_pokemon_created, genwildpoke)
|
||||||
return genwildpoke
|
return genwildpoke
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -487,7 +487,6 @@ def pbFlyToNewLocation(pkmn = nil, move = :FLY)
|
|||||||
$game_temp.player_new_x = $game_temp.fly_destination[1]
|
$game_temp.player_new_x = $game_temp.fly_destination[1]
|
||||||
$game_temp.player_new_y = $game_temp.fly_destination[2]
|
$game_temp.player_new_y = $game_temp.fly_destination[2]
|
||||||
$game_temp.player_new_direction = 2
|
$game_temp.player_new_direction = 2
|
||||||
$game_temp.fly_destination = nil
|
|
||||||
pbDismountBike
|
pbDismountBike
|
||||||
$scene.transfer_player
|
$scene.transfer_player
|
||||||
$game_map.autoplay
|
$game_map.autoplay
|
||||||
@@ -496,6 +495,7 @@ def pbFlyToNewLocation(pkmn = nil, move = :FLY)
|
|||||||
pbWait(0.25)
|
pbWait(0.25)
|
||||||
end
|
end
|
||||||
pbEraseEscapePoint
|
pbEraseEscapePoint
|
||||||
|
$game_temp.fly_destination = nil
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ class Scene_Credits
|
|||||||
ret.push("")
|
ret.push("")
|
||||||
ret.push(_INTL("\"mkxp-z\" by:"))
|
ret.push(_INTL("\"mkxp-z\" by:"))
|
||||||
add_names_to_credits(ret, [
|
add_names_to_credits(ret, [
|
||||||
"Roza",
|
"Anon",
|
||||||
_INTL("Based on \"mkxp\" by Ancurio et al.")
|
_INTL("Based on \"mkxp\" by Ancurio et al.")
|
||||||
])
|
])
|
||||||
ret.push(_INTL("\"RPG Maker XP\" by:"))
|
ret.push(_INTL("\"RPG Maker XP\" by:"))
|
||||||
|
|||||||
@@ -348,7 +348,7 @@ def pbTrainerTypeEditor
|
|||||||
if tr_type
|
if tr_type
|
||||||
case button
|
case button
|
||||||
when Input::ACTION
|
when Input::ACTION
|
||||||
if tr_type.is_a?(Symbol) && pbConfirmMessageSerious("Delete this trainer type?")
|
if tr_type.is_a?(Symbol) && pbConfirmMessageSerious(_INTL("Delete this trainer type?"))
|
||||||
GameData::TrainerType::DATA.delete(tr_type)
|
GameData::TrainerType::DATA.delete(tr_type)
|
||||||
GameData::TrainerType.save
|
GameData::TrainerType.save
|
||||||
pbConvertTrainerData
|
pbConvertTrainerData
|
||||||
@@ -481,7 +481,7 @@ def pbTrainerBattleEditor
|
|||||||
if trainer_id
|
if trainer_id
|
||||||
case button
|
case button
|
||||||
when Input::ACTION
|
when Input::ACTION
|
||||||
if trainer_id.is_a?(Array) && pbConfirmMessageSerious("Delete this trainer battle?")
|
if trainer_id.is_a?(Array) && pbConfirmMessageSerious(_INTL("Delete this trainer battle?"))
|
||||||
tr_data = GameData::Trainer::DATA[trainer_id]
|
tr_data = GameData::Trainer::DATA[trainer_id]
|
||||||
GameData::Trainer::DATA.delete(trainer_id)
|
GameData::Trainer::DATA.delete(trainer_id)
|
||||||
modified = true
|
modified = true
|
||||||
@@ -825,7 +825,7 @@ def pbItemEditor
|
|||||||
if item
|
if item
|
||||||
case button
|
case button
|
||||||
when Input::ACTION
|
when Input::ACTION
|
||||||
if item.is_a?(Symbol) && pbConfirmMessageSerious("Delete this item?")
|
if item.is_a?(Symbol) && pbConfirmMessageSerious(_INTL("Delete this item?"))
|
||||||
GameData::Item::DATA.delete(item)
|
GameData::Item::DATA.delete(item)
|
||||||
GameData::Item.save
|
GameData::Item.save
|
||||||
Compiler.write_items
|
Compiler.write_items
|
||||||
@@ -929,7 +929,7 @@ def pbPokemonEditor
|
|||||||
if species
|
if species
|
||||||
case button
|
case button
|
||||||
when Input::ACTION
|
when Input::ACTION
|
||||||
if species.is_a?(Symbol) && pbConfirmMessageSerious("Delete this species?")
|
if species.is_a?(Symbol) && pbConfirmMessageSerious(_INTL("Delete this species?"))
|
||||||
GameData::Species::DATA.delete(species)
|
GameData::Species::DATA.delete(species)
|
||||||
GameData::Species.save
|
GameData::Species.save
|
||||||
Compiler.write_pokemon
|
Compiler.write_pokemon
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ Weight = 3.8
|
|||||||
Color = Black
|
Color = Black
|
||||||
Pokedex = With its incisors, it gnaws through doors and infiltrates people's homes. Then, with a twitch of its whiskers, it steals whatever food it finds.
|
Pokedex = With its incisors, it gnaws through doors and infiltrates people's homes. Then, with a twitch of its whiskers, it steals whatever food it finds.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = PECHABERRY
|
WildItemUncommon = PECHABERRY
|
||||||
Evolution = RATICATE,LevelNight,20
|
Evolution = RATICATE,LevelNight,20
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -97,7 +97,7 @@ Weight = 25.5
|
|||||||
Color = Black
|
Color = Black
|
||||||
Pokedex = It forms a group of Rattata, which it assumes command of. Each group has its own territory, and disputes over food happen often.
|
Pokedex = It forms a group of Rattata, which it assumes command of. Each group has its own territory, and disputes over food happen often.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = PECHABERRY
|
WildItemUncommon = PECHABERRY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAICHU,1]
|
[RAICHU,1]
|
||||||
@@ -128,7 +128,7 @@ Weight = 40.0
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = The skin on its back is as hard as steel. Predators go after its soft belly, so it clings to the ground desperately.
|
Pokedex = The skin on its back is as hard as steel. Predators go after its soft belly, so it clings to the ground desperately.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = SANDSLASH,Item,ICESTONE
|
Evolution = SANDSLASH,Item,ICESTONE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SANDSLASH,1]
|
[SANDSLASH,1]
|
||||||
@@ -144,7 +144,7 @@ Weight = 55.0
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It runs across snow-covered plains at high speeds. It developed thick, sharp claws to plow through the snow.
|
Pokedex = It runs across snow-covered plains at high speeds. It developed thick, sharp claws to plow through the snow.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[VULPIX,1]
|
[VULPIX,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -157,7 +157,7 @@ EggMoves = AGILITY,CHARM,DISABLE,ENCORE,EXTRASENSORY,FLAIL,FREEZEDRY,HOWL,HYPNOS
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = In hot weather, this Pokémon makes ice shards with its six tails and sprays them around to cool itself off.
|
Pokedex = In hot weather, this Pokémon makes ice shards with its six tails and sprays them around to cool itself off.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = SNOWBALL
|
WildItemUncommon = SNOWBALL
|
||||||
Evolution = NINETALES,Item,ICESTONE
|
Evolution = NINETALES,Item,ICESTONE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -173,7 +173,7 @@ TutorMoves = AQUATAIL,ATTRACT,AURORAVEIL,BLIZZARD,BODYSLAM,CALMMIND,CAPTIVATE,CO
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It lives on mountains perpetually covered in snow and is revered as a deity incarnate. It appears draped in a blizzard.
|
Pokedex = It lives on mountains perpetually covered in snow and is revered as a deity incarnate. It appears draped in a blizzard.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = SNOWBALL
|
WildItemUncommon = SNOWBALL
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DIGLETT,1]
|
[DIGLETT,1]
|
||||||
@@ -187,7 +187,7 @@ EggMoves = ANCIENTPOWER,BEATUP,ENDURE,FEINTATTACK,FINALGAMBIT,HEADBUTT,MEMENTO,M
|
|||||||
Weight = 1.0
|
Weight = 1.0
|
||||||
Pokedex = Its head sports an altered form of whiskers made of metal. When in communication with its comrades, its whiskers wobble to and fro.
|
Pokedex = Its head sports an altered form of whiskers made of metal. When in communication with its comrades, its whiskers wobble to and fro.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DUGTRIO,1]
|
[DUGTRIO,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -200,7 +200,7 @@ TutorMoves = AERIALACE,ATTRACT,BODYSLAM,BULLDOZE,CAPTIVATE,CONFIDE,CUT,DIG,DOUBL
|
|||||||
Weight = 66.6
|
Weight = 66.6
|
||||||
Pokedex = Its shining gold hair provides it with protection. It's reputed that keeping any of its fallen hairs will bring bad luck.
|
Pokedex = Its shining gold hair provides it with protection. It's reputed that keeping any of its fallen hairs will bring bad luck.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MEOWTH,1]
|
[MEOWTH,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -213,7 +213,7 @@ EggMoves = AMNESIA,ASSIST,CHARM,COVET,FLAIL,FLATTER,FOULPLAY,HYPNOSIS,PARTINGSHO
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Trainers who like giving it the attention it needs.
|
Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Trainers who like giving it the attention it needs.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = PERSIAN,Happiness
|
Evolution = PERSIAN,Happiness
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PERSIAN,1]
|
[PERSIAN,1]
|
||||||
@@ -229,7 +229,7 @@ Weight = 33.0
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = Its round face is a symbol of wealth. Persian that have bigger, plumper faces are considered more beautiful.
|
Pokedex = Its round face is a symbol of wealth. Persian that have bigger, plumper faces are considered more beautiful.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ALAKAZAM,1]
|
[ALAKAZAM,1]
|
||||||
FormName = Mega Alakazam
|
FormName = Mega Alakazam
|
||||||
@@ -254,7 +254,7 @@ Weight = 20.3
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = Geodude compete against each other with headbutts. The iron sand on their heads will stick to whichever one has stronger magnetism.
|
Pokedex = Geodude compete against each other with headbutts. The iron sand on their heads will stick to whichever one has stronger magnetism.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = CELLBATTERY
|
WildItemUncommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GRAVELER,1]
|
[GRAVELER,1]
|
||||||
@@ -268,7 +268,7 @@ Weight = 110.0
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = They eat rocks and often get into a scrap over them. The shock of Graveler smashing together causes a flash of light and a booming noise.
|
Pokedex = They eat rocks and often get into a scrap over them. The shock of Graveler smashing together causes a flash of light and a booming noise.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = CELLBATTERY
|
WildItemUncommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GOLEM,1]
|
[GOLEM,1]
|
||||||
@@ -283,7 +283,7 @@ Weight = 316.0
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired that accurately, just grazing an opponent will cause numbness and fainting.
|
Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired that accurately, just grazing an opponent will cause numbness and fainting.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemCommon = CELLBATTERY
|
WildItemCommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SLOWBRO,1]
|
[SLOWBRO,1]
|
||||||
@@ -312,7 +312,7 @@ Weight = 42.0
|
|||||||
Color = Green
|
Color = Green
|
||||||
Pokedex = A Grimer, which had been brought in to solve a problem with garbage, developed over time into this form.
|
Pokedex = A Grimer, which had been brought in to solve a problem with garbage, developed over time into this form.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MUK,1]
|
[MUK,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -326,7 +326,7 @@ Weight = 52.0
|
|||||||
Color = Green
|
Color = Green
|
||||||
Pokedex = The garbage it eats causes continuous chemical changes in its body, which produce its exceedingly vivid coloration.
|
Pokedex = The garbage it eats causes continuous chemical changes in its body, which produce its exceedingly vivid coloration.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GENGAR,1]
|
[GENGAR,1]
|
||||||
FormName = Mega Gengar
|
FormName = Mega Gengar
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ Weight = 3.8
|
|||||||
Color = Black
|
Color = Black
|
||||||
Pokedex = With its incisors, it gnaws through doors and infiltrates people's homes. Then, with a twitch of its whiskers, it steals whatever food it finds.
|
Pokedex = With its incisors, it gnaws through doors and infiltrates people's homes. Then, with a twitch of its whiskers, it steals whatever food it finds.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = PECHABERRY
|
WildItemUncommon = PECHABERRY
|
||||||
Evolution = RATICATE,LevelNight,20
|
Evolution = RATICATE,LevelNight,20
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -97,7 +97,7 @@ Weight = 25.5
|
|||||||
Color = Black
|
Color = Black
|
||||||
Pokedex = It forms a group of Rattata, which it assumes command of. Each group has its own territory, and disputes over food happen often.
|
Pokedex = It forms a group of Rattata, which it assumes command of. Each group has its own territory, and disputes over food happen often.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = PECHABERRY
|
WildItemUncommon = PECHABERRY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAICHU,1]
|
[RAICHU,1]
|
||||||
@@ -128,7 +128,7 @@ Weight = 40.0
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = The skin on its back is as hard as steel. Predators go after its soft belly, so it clings to the ground desperately.
|
Pokedex = The skin on its back is as hard as steel. Predators go after its soft belly, so it clings to the ground desperately.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = SANDSLASH,Item,ICESTONE
|
Evolution = SANDSLASH,Item,ICESTONE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SANDSLASH,1]
|
[SANDSLASH,1]
|
||||||
@@ -144,7 +144,7 @@ Weight = 55.0
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It runs across snow-covered plains at high speeds. It developed thick, sharp claws to plow through the snow.
|
Pokedex = It runs across snow-covered plains at high speeds. It developed thick, sharp claws to plow through the snow.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[VULPIX,1]
|
[VULPIX,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -157,7 +157,7 @@ EggMoves = AGILITY,CHARM,DISABLE,ENCORE,EXTRASENSORY,FLAIL,FREEZEDRY,HOWL,HYPNOS
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = In hot weather, this Pokémon makes ice shards with its six tails and sprays them around to cool itself off.
|
Pokedex = In hot weather, this Pokémon makes ice shards with its six tails and sprays them around to cool itself off.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = SNOWBALL
|
WildItemUncommon = SNOWBALL
|
||||||
Evolution = NINETALES,Item,ICESTONE
|
Evolution = NINETALES,Item,ICESTONE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -173,7 +173,7 @@ TutorMoves = AGILITY,AQUATAIL,ATTRACT,AURORAVEIL,AVALANCHE,BLIZZARD,BODYSLAM,CAL
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It lives on mountains perpetually covered in snow and is revered as a deity incarnate. It appears draped in a blizzard.
|
Pokedex = It lives on mountains perpetually covered in snow and is revered as a deity incarnate. It appears draped in a blizzard.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = SNOWBALL
|
WildItemUncommon = SNOWBALL
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DIGLETT,1]
|
[DIGLETT,1]
|
||||||
@@ -187,7 +187,7 @@ EggMoves = ANCIENTPOWER,BEATUP,ENDURE,FEINTATTACK,FINALGAMBIT,HEADBUTT,MEMENTO,M
|
|||||||
Weight = 1.0
|
Weight = 1.0
|
||||||
Pokedex = Its head sports an altered form of whiskers made of metal. When in communication with its comrades, its whiskers wobble to and fro.
|
Pokedex = Its head sports an altered form of whiskers made of metal. When in communication with its comrades, its whiskers wobble to and fro.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DUGTRIO,1]
|
[DUGTRIO,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -200,7 +200,7 @@ TutorMoves = AERIALACE,AGILITY,ALLYSWITCH,ASSURANCE,ATTRACT,BEATUP,BODYSLAM,BULL
|
|||||||
Weight = 66.6
|
Weight = 66.6
|
||||||
Pokedex = Its shining gold hair provides it with protection. It's reputed that keeping any of its fallen hairs will bring bad luck.
|
Pokedex = Its shining gold hair provides it with protection. It's reputed that keeping any of its fallen hairs will bring bad luck.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MEOWTH,1]
|
[MEOWTH,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -213,7 +213,7 @@ EggMoves = AMNESIA,ASSIST,CHARM,COVET,FLAIL,FLATTER,FOULPLAY,HYPNOSIS,PARTINGSHO
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Trainers who like giving it the attention it needs.
|
Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Trainers who like giving it the attention it needs.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = PERSIAN,Happiness
|
Evolution = PERSIAN,Happiness
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MEOWTH,2]
|
[MEOWTH,2]
|
||||||
@@ -229,7 +229,7 @@ Color = Brown
|
|||||||
Shape = BipedalTail
|
Shape = BipedalTail
|
||||||
Pokedex = Living with a savage, seafaring people has toughened this Pokémon's body so much that parts of it have turned to iron.
|
Pokedex = Living with a savage, seafaring people has toughened this Pokémon's body so much that parts of it have turned to iron.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = PERRSERKER,Level,28
|
Evolution = PERRSERKER,Level,28
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PERSIAN,1]
|
[PERSIAN,1]
|
||||||
@@ -245,7 +245,7 @@ Weight = 33.0
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = Its round face is a symbol of wealth. Persian that have bigger, plumper faces are considered more beautiful.
|
Pokedex = Its round face is a symbol of wealth. Persian that have bigger, plumper faces are considered more beautiful.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ALAKAZAM,1]
|
[ALAKAZAM,1]
|
||||||
FormName = Mega Alakazam
|
FormName = Mega Alakazam
|
||||||
@@ -270,7 +270,7 @@ Weight = 20.3
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = Geodude compete against each other with headbutts. The iron sand on their heads will stick to whichever one has stronger magnetism.
|
Pokedex = Geodude compete against each other with headbutts. The iron sand on their heads will stick to whichever one has stronger magnetism.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = CELLBATTERY
|
WildItemUncommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GRAVELER,1]
|
[GRAVELER,1]
|
||||||
@@ -284,7 +284,7 @@ Weight = 110.0
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = They eat rocks and often get into a scrap over them. The shock of Graveler smashing together causes a flash of light and a booming noise.
|
Pokedex = They eat rocks and often get into a scrap over them. The shock of Graveler smashing together causes a flash of light and a booming noise.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = CELLBATTERY
|
WildItemUncommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GOLEM,1]
|
[GOLEM,1]
|
||||||
@@ -299,7 +299,7 @@ Weight = 316.0
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired that accurately, just grazing an opponent will cause numbness and fainting.
|
Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired that accurately, just grazing an opponent will cause numbness and fainting.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemCommon = CELLBATTERY
|
WildItemCommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PONYTA,1]
|
[PONYTA,1]
|
||||||
@@ -315,7 +315,7 @@ Color = White
|
|||||||
Category = Unique Horn
|
Category = Unique Horn
|
||||||
Pokedex = Its small horn hides a healing power. With a few rubs from this Pokémon's horn, any slight wound you have will be healed.
|
Pokedex = Its small horn hides a healing power. With a few rubs from this Pokémon's horn, any slight wound you have will be healed.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAPIDASH,1]
|
[RAPIDASH,1]
|
||||||
FormName = Galarian
|
FormName = Galarian
|
||||||
@@ -329,7 +329,7 @@ Color = White
|
|||||||
Category = Unique Horn
|
Category = Unique Horn
|
||||||
Pokedex = Little can stand up to its psycho cut. Unleashed from this Pokémon's horn, the move will punch a hole right through a thick metal sheet.
|
Pokedex = Little can stand up to its psycho cut. Unleashed from this Pokémon's horn, the move will punch a hole right through a thick metal sheet.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SLOWPOKE,1]
|
[SLOWPOKE,1]
|
||||||
FormName = Galarian
|
FormName = Galarian
|
||||||
@@ -339,7 +339,7 @@ Moves = 1,TACKLE,1,CURSE,3,GROWL,6,ACID,9,YAWN,12,CONFUSION,15,DISABLE,18,WATERP
|
|||||||
TutorMoves = AMNESIA,ATTRACT,BLIZZARD,BODYSLAM,BRINE,BULLDOZE,CALMMIND,CAPTIVATE,CONFIDE,DIG,DIVE,DOUBLEEDGE,DOUBLETEAM,EARTHQUAKE,ENDURE,EXPANDINGFORCE,FACADE,FIREBLAST,FLAMETHROWER,FOULPLAY,FRUSTRATION,FUTURESIGHT,GRASSKNOT,HAIL,HIDDENPOWER,HYDROPUMP,ICEBEAM,ICYWIND,IMPRISON,IRONTAIL,LIGHTSCREEN,LIQUIDATION,MIMIC,MUDSHOT,NATURALGIFT,PAYDAY,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,RAINDANCE,REST,RETURN,ROUND,SAFEGUARD,SCALD,SECRETPOWER,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SURF,SWAGGER,SWIFT,THUNDERWAVE,TRIATTACK,TRICK,TRICKROOM,WEATHERBALL,WHIRLPOOL,WONDERROOM,ZENHEADBUTT
|
TutorMoves = AMNESIA,ATTRACT,BLIZZARD,BODYSLAM,BRINE,BULLDOZE,CALMMIND,CAPTIVATE,CONFIDE,DIG,DIVE,DOUBLEEDGE,DOUBLETEAM,EARTHQUAKE,ENDURE,EXPANDINGFORCE,FACADE,FIREBLAST,FLAMETHROWER,FOULPLAY,FRUSTRATION,FUTURESIGHT,GRASSKNOT,HAIL,HIDDENPOWER,HYDROPUMP,ICEBEAM,ICYWIND,IMPRISON,IRONTAIL,LIGHTSCREEN,LIQUIDATION,MIMIC,MUDSHOT,NATURALGIFT,PAYDAY,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,RAINDANCE,REST,RETURN,ROUND,SAFEGUARD,SCALD,SECRETPOWER,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SURF,SWAGGER,SWIFT,THUNDERWAVE,TRIATTACK,TRICK,TRICKROOM,WEATHERBALL,WHIRLPOOL,WONDERROOM,ZENHEADBUTT
|
||||||
Pokedex = Although this Pokémon is normally zoned out, its expression abruptly sharpens on occasion. The cause for this seems to lie in Slowpoke's diet.
|
Pokedex = Although this Pokémon is normally zoned out, its expression abruptly sharpens on occasion. The cause for this seems to lie in Slowpoke's diet.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = SLOWBRO,Item,GALARICACUFF
|
Evolution = SLOWBRO,Item,GALARICACUFF
|
||||||
Evolution = SLOWKING,Item,GALARICAWREATH
|
Evolution = SLOWKING,Item,GALARICAWREATH
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -353,7 +353,7 @@ TutorMoves = AMNESIA,ATTRACT,AVALANCHE,BLIZZARD,BODYSLAM,BRICKBREAK,BRINE,BRUTAL
|
|||||||
Weight = 70.5
|
Weight = 70.5
|
||||||
Pokedex = If this Pokémon squeezes the tongue of the Shellder biting it, the Shellder will launch a toxic liquid from the tip of its shell.
|
Pokedex = If this Pokémon squeezes the tongue of the Shellder biting it, the Shellder will launch a toxic liquid from the tip of its shell.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SLOWBRO,2]
|
[SLOWBRO,2]
|
||||||
FormName = Mega Slowbro
|
FormName = Mega Slowbro
|
||||||
@@ -380,7 +380,7 @@ EggMoves = COUNTER,COVET,CURSE,DOUBLEEDGE,FEINT,FLAIL,NIGHTSLASH,QUICKATTACK,QUI
|
|||||||
Weight = 42.0
|
Weight = 42.0
|
||||||
Pokedex = The stalks of leeks are thicker and longer in the Galar region. Farfetch'd that adapted to these stalks took on a unique form.
|
Pokedex = The stalks of leeks are thicker and longer in the Galar region. Farfetch'd that adapted to these stalks took on a unique form.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemCommon = LEEK
|
WildItemCommon = LEEK
|
||||||
Evolution = SIRFETCHD,BattleDealCriticalHit,3
|
Evolution = SIRFETCHD,BattleDealCriticalHit,3
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -397,7 +397,7 @@ Weight = 42.0
|
|||||||
Color = Green
|
Color = Green
|
||||||
Pokedex = A Grimer, which had been brought in to solve a problem with garbage, developed over time into this form.
|
Pokedex = A Grimer, which had been brought in to solve a problem with garbage, developed over time into this form.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MUK,1]
|
[MUK,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -411,7 +411,7 @@ Weight = 52.0
|
|||||||
Color = Green
|
Color = Green
|
||||||
Pokedex = The garbage it eats causes continuous chemical changes in its body, which produce its exceedingly vivid coloration.
|
Pokedex = The garbage it eats causes continuous chemical changes in its body, which produce its exceedingly vivid coloration.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GENGAR,1]
|
[GENGAR,1]
|
||||||
FormName = Mega Gengar
|
FormName = Mega Gengar
|
||||||
@@ -491,7 +491,7 @@ Color = White
|
|||||||
Category = Dancing
|
Category = Dancing
|
||||||
Pokedex = Its talent is tap-dancing. It can also manipulate temperatures to create a floor of ice, which this Pokémon can kick up to use as a barrier.
|
Pokedex = Its talent is tap-dancing. It can also manipulate temperatures to create a floor of ice, which this Pokémon can kick up to use as a barrier.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = MRRIME,Level,42
|
Evolution = MRRIME,Level,42
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PINSIR,1]
|
[PINSIR,1]
|
||||||
@@ -628,7 +628,7 @@ Height = 1.8
|
|||||||
Category = Hexpert
|
Category = Hexpert
|
||||||
Pokedex = While chanting strange spells, this Pokémon combines its internal toxins with what it's eaten, creating strange potions.
|
Pokedex = While chanting strange spells, this Pokémon combines its internal toxins with what it's eaten, creating strange potions.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[UNOWN,1]
|
[UNOWN,1]
|
||||||
FormName = B
|
FormName = B
|
||||||
@@ -761,7 +761,7 @@ Weight = 0.5
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = Sudden climate change wiped out this ancient kind of Corsola. This Pokémon absorbs others' life-force through its branches.
|
Pokedex = Sudden climate change wiped out this ancient kind of Corsola. This Pokémon absorbs others' life-force through its branches.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = CURSOLA,Level,38
|
Evolution = CURSOLA,Level,38
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[HOUNDOOM,1]
|
[HOUNDOOM,1]
|
||||||
@@ -827,7 +827,7 @@ EggMoves = KNOCKOFF,PARTINGSHOT,QUICKGUARD
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = Its restlessness has it constantly running around. If it sees another Pokémon, it will purposely run into them in order to start a fight.
|
Pokedex = Its restlessness has it constantly running around. If it sees another Pokémon, it will purposely run into them in order to start a fight.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LINOONE,1]
|
[LINOONE,1]
|
||||||
FormName = Galarian
|
FormName = Galarian
|
||||||
@@ -836,7 +836,7 @@ Moves = 0,NIGHTSLASH,1,SWITCHEROO,1,PINMISSILE,1,BABYDOLLEYES,1,TACKLE,1,LEER,1,
|
|||||||
TutorMoves = ASSURANCE,ATTRACT,BLIZZARD,BODYPRESS,BODYSLAM,CAPTIVATE,CONFIDE,DIG,DOUBLEEDGE,DOUBLETEAM,ENDURE,FACADE,FAKETEARS,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GUNKSHOT,HELPINGHAND,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICEBEAM,ICYWIND,IRONTAIL,LASHOUT,MIMIC,MUDSHOT,NATURALGIFT,PAYBACK,PINMISSILE,PROTECT,RAINDANCE,REST,RETALIATE,RETURN,ROUND,SCARYFACE,SCREECH,SECRETPOWER,SEEDBOMB,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNARL,SNORE,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SURF,SWAGGER,SWIFT,TAUNT,THIEF,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TRICK,WHIRLPOOL,WORKUP
|
TutorMoves = ASSURANCE,ATTRACT,BLIZZARD,BODYPRESS,BODYSLAM,CAPTIVATE,CONFIDE,DIG,DOUBLEEDGE,DOUBLETEAM,ENDURE,FACADE,FAKETEARS,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GUNKSHOT,HELPINGHAND,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICEBEAM,ICYWIND,IRONTAIL,LASHOUT,MIMIC,MUDSHOT,NATURALGIFT,PAYBACK,PINMISSILE,PROTECT,RAINDANCE,REST,RETALIATE,RETURN,ROUND,SCARYFACE,SCREECH,SECRETPOWER,SEEDBOMB,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNARL,SNORE,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SURF,SWAGGER,SWIFT,TAUNT,THIEF,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TRICK,WHIRLPOOL,WORKUP
|
||||||
Pokedex = It uses its long tongue to taunt opponents. Once the opposition is enraged, this Pokémon hurls itself at the opponent, tackling them forcefully.
|
Pokedex = It uses its long tongue to taunt opponents. Once the opposition is enraged, this Pokémon hurls itself at the opponent, tackling them forcefully.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = OBSTAGOON,LevelNight,35
|
Evolution = OBSTAGOON,LevelNight,35
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GARDEVOIR,1]
|
[GARDEVOIR,1]
|
||||||
@@ -1340,7 +1340,7 @@ Weight = 40.0
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = The colder they get, the more energetic they are. They freeze their breath to make snowballs, using them as ammo for playful snowball fights.
|
Pokedex = The colder they get, the more energetic they are. They freeze their breath to make snowballs, using them as ammo for playful snowball fights.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = DARMANITAN,Item,ICESTONE
|
Evolution = DARMANITAN,Item,ICESTONE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DARMANITAN,1]
|
[DARMANITAN,1]
|
||||||
@@ -1364,7 +1364,7 @@ Color = White
|
|||||||
Category = Zen Charm
|
Category = Zen Charm
|
||||||
Pokedex = On days when blizzards blow through, it comes down to where people live. It stashes food in the snowball on its head, taking it home for later.
|
Pokedex = On days when blizzards blow through, it comes down to where people live. It stashes food in the snowball on its head, taking it home for later.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DARMANITAN,3]
|
[DARMANITAN,3]
|
||||||
FormName = Galarian Zen Mode
|
FormName = Galarian Zen Mode
|
||||||
@@ -1391,7 +1391,7 @@ Moves = 1,ASTONISH,1,PROTECT,4,HAZE,8,NIGHTSHADE,12,DISABLE,16,BRUTALSWING,20,CR
|
|||||||
TutorMoves = ALLYSWITCH,ATTRACT,BRUTALSWING,CALMMIND,CAPTIVATE,CONFIDE,DARKPULSE,DOUBLEEDGE,DOUBLETEAM,EARTHPOWER,EARTHQUAKE,ENDURE,ENERGYBALL,FACADE,FAKETEARS,FRUSTRATION,HEX,HIDDENPOWER,IMPRISON,IRONDEFENSE,MIMIC,NASTYPLOT,NATURALGIFT,PAYBACK,POLTERGEIST,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SECRETPOWER,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SWAGGER,THIEF,TOXIC,TOXICSPIKES,TRICK,TRICKROOM,WILLOWISP,WONDERROOM,ZENHEADBUTT
|
TutorMoves = ALLYSWITCH,ATTRACT,BRUTALSWING,CALMMIND,CAPTIVATE,CONFIDE,DARKPULSE,DOUBLEEDGE,DOUBLETEAM,EARTHPOWER,EARTHQUAKE,ENDURE,ENERGYBALL,FACADE,FAKETEARS,FRUSTRATION,HEX,HIDDENPOWER,IMPRISON,IRONDEFENSE,MIMIC,NASTYPLOT,NATURALGIFT,PAYBACK,POLTERGEIST,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SECRETPOWER,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SWAGGER,THIEF,TOXIC,TOXICSPIKES,TRICK,TRICKROOM,WILLOWISP,WONDERROOM,ZENHEADBUTT
|
||||||
Pokedex = A clay slab with cursed engravings took possession of a Yamask. The slab is said to be absorbing the Yamask's dark power.
|
Pokedex = A clay slab with cursed engravings took possession of a Yamask. The slab is said to be absorbing the Yamask's dark power.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = RUNERIGUS,EventAfterDamageTaken,2
|
Evolution = RUNERIGUS,EventAfterDamageTaken,2
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DEERLING,1]
|
[DEERLING,1]
|
||||||
@@ -1428,7 +1428,7 @@ Weight = 20.5
|
|||||||
Color = Green
|
Color = Green
|
||||||
Pokedex = Its conspicuous lips lure prey in as it lies in wait in the mud. When prey gets close, Stunfisk clamps its jagged steel fins down on them.
|
Pokedex = Its conspicuous lips lure prey in as it lies in wait in the mud. When prey gets close, Stunfisk clamps its jagged steel fins down on them.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[TORNADUS,1]
|
[TORNADUS,1]
|
||||||
FormName = Therian Forme
|
FormName = Therian Forme
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ Weight = 3.8
|
|||||||
Color = Black
|
Color = Black
|
||||||
Pokedex = With its incisors, it gnaws through doors and infiltrates people's homes. Then, with a twitch of its whiskers, it steals whatever food it finds.
|
Pokedex = With its incisors, it gnaws through doors and infiltrates people's homes. Then, with a twitch of its whiskers, it steals whatever food it finds.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = PECHABERRY
|
WildItemUncommon = PECHABERRY
|
||||||
Evolution = RATICATE,LevelNight,20
|
Evolution = RATICATE,LevelNight,20
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -97,7 +97,7 @@ Weight = 25.5
|
|||||||
Color = Black
|
Color = Black
|
||||||
Pokedex = It forms a group of Rattata, which it assumes command of. Each group has its own territory, and disputes over food happen often.
|
Pokedex = It forms a group of Rattata, which it assumes command of. Each group has its own territory, and disputes over food happen often.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = PECHABERRY
|
WildItemUncommon = PECHABERRY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAICHU,1]
|
[RAICHU,1]
|
||||||
@@ -128,7 +128,7 @@ Weight = 40.0
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = The skin on its back is as hard as steel. Predators go after its soft belly, so it clings to the ground desperately.
|
Pokedex = The skin on its back is as hard as steel. Predators go after its soft belly, so it clings to the ground desperately.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = SANDSLASH,Item,ICESTONE
|
Evolution = SANDSLASH,Item,ICESTONE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SANDSLASH,1]
|
[SANDSLASH,1]
|
||||||
@@ -144,7 +144,7 @@ Weight = 55.0
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It runs across snow-covered plains at high speeds. It developed thick, sharp claws to plow through the snow.
|
Pokedex = It runs across snow-covered plains at high speeds. It developed thick, sharp claws to plow through the snow.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[VULPIX,1]
|
[VULPIX,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -157,7 +157,7 @@ EggMoves = AGILITY,CHARM,DISABLE,ENCORE,EXTRASENSORY,FLAIL,FREEZEDRY,HOWL,HYPNOS
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = In hot weather, this Pokémon makes ice shards with its six tails and sprays them around to cool itself off.
|
Pokedex = In hot weather, this Pokémon makes ice shards with its six tails and sprays them around to cool itself off.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = SNOWBALL
|
WildItemUncommon = SNOWBALL
|
||||||
Evolution = NINETALES,Item,ICESTONE
|
Evolution = NINETALES,Item,ICESTONE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -173,7 +173,7 @@ TutorMoves = AGILITY,AQUATAIL,ATTRACT,AURORAVEIL,AVALANCHE,BLIZZARD,BODYSLAM,CAL
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It lives on mountains perpetually covered in snow and is revered as a deity incarnate. It appears draped in a blizzard.
|
Pokedex = It lives on mountains perpetually covered in snow and is revered as a deity incarnate. It appears draped in a blizzard.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = SNOWBALL
|
WildItemUncommon = SNOWBALL
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DIGLETT,1]
|
[DIGLETT,1]
|
||||||
@@ -187,7 +187,7 @@ EggMoves = ANCIENTPOWER,BEATUP,ENDURE,FEINTATTACK,FINALGAMBIT,HEADBUTT,MEMENTO,M
|
|||||||
Weight = 1.0
|
Weight = 1.0
|
||||||
Pokedex = Its head sports an altered form of whiskers made of metal. When in communication with its comrades, its whiskers wobble to and fro.
|
Pokedex = Its head sports an altered form of whiskers made of metal. When in communication with its comrades, its whiskers wobble to and fro.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DUGTRIO,1]
|
[DUGTRIO,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -200,7 +200,7 @@ TutorMoves = AERIALACE,AGILITY,ALLYSWITCH,ASSURANCE,ATTRACT,BEATUP,BODYSLAM,BULL
|
|||||||
Weight = 66.6
|
Weight = 66.6
|
||||||
Pokedex = Its shining gold hair provides it with protection. It's reputed that keeping any of its fallen hairs will bring bad luck.
|
Pokedex = Its shining gold hair provides it with protection. It's reputed that keeping any of its fallen hairs will bring bad luck.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MEOWTH,1]
|
[MEOWTH,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -213,7 +213,7 @@ EggMoves = AMNESIA,ASSIST,CHARM,COVET,FLAIL,FLATTER,FOULPLAY,HYPNOSIS,PARTINGSHO
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Trainers who like giving it the attention it needs.
|
Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Trainers who like giving it the attention it needs.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = PERSIAN,Happiness
|
Evolution = PERSIAN,Happiness
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MEOWTH,2]
|
[MEOWTH,2]
|
||||||
@@ -229,7 +229,7 @@ Color = Brown
|
|||||||
Shape = BipedalTail
|
Shape = BipedalTail
|
||||||
Pokedex = Living with a savage, seafaring people has toughened this Pokémon's body so much that parts of it have turned to iron.
|
Pokedex = Living with a savage, seafaring people has toughened this Pokémon's body so much that parts of it have turned to iron.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = PERRSERKER,Level,28
|
Evolution = PERRSERKER,Level,28
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PERSIAN,1]
|
[PERSIAN,1]
|
||||||
@@ -245,7 +245,7 @@ Weight = 33.0
|
|||||||
Color = Blue
|
Color = Blue
|
||||||
Pokedex = Its round face is a symbol of wealth. Persian that have bigger, plumper faces are considered more beautiful.
|
Pokedex = Its round face is a symbol of wealth. Persian that have bigger, plumper faces are considered more beautiful.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ALAKAZAM,1]
|
[ALAKAZAM,1]
|
||||||
FormName = Mega Alakazam
|
FormName = Mega Alakazam
|
||||||
@@ -270,7 +270,7 @@ Weight = 20.3
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = Geodude compete against each other with headbutts. The iron sand on their heads will stick to whichever one has stronger magnetism.
|
Pokedex = Geodude compete against each other with headbutts. The iron sand on their heads will stick to whichever one has stronger magnetism.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = CELLBATTERY
|
WildItemUncommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GRAVELER,1]
|
[GRAVELER,1]
|
||||||
@@ -284,7 +284,7 @@ Weight = 110.0
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = They eat rocks and often get into a scrap over them. The shock of Graveler smashing together causes a flash of light and a booming noise.
|
Pokedex = They eat rocks and often get into a scrap over them. The shock of Graveler smashing together causes a flash of light and a booming noise.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemUncommon = CELLBATTERY
|
WildItemUncommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GOLEM,1]
|
[GOLEM,1]
|
||||||
@@ -299,7 +299,7 @@ Weight = 316.0
|
|||||||
Color = Gray
|
Color = Gray
|
||||||
Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired that accurately, just grazing an opponent will cause numbness and fainting.
|
Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired that accurately, just grazing an opponent will cause numbness and fainting.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemCommon = CELLBATTERY
|
WildItemCommon = CELLBATTERY
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PONYTA,1]
|
[PONYTA,1]
|
||||||
@@ -315,7 +315,7 @@ Color = White
|
|||||||
Category = Unique Horn
|
Category = Unique Horn
|
||||||
Pokedex = Its small horn hides a healing power. With a few rubs from this Pokémon's horn, any slight wound you have will be healed.
|
Pokedex = Its small horn hides a healing power. With a few rubs from this Pokémon's horn, any slight wound you have will be healed.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAPIDASH,1]
|
[RAPIDASH,1]
|
||||||
FormName = Galarian
|
FormName = Galarian
|
||||||
@@ -329,7 +329,7 @@ Color = White
|
|||||||
Category = Unique Horn
|
Category = Unique Horn
|
||||||
Pokedex = Little can stand up to its psycho cut. Unleashed from this Pokémon's horn, the move will punch a hole right through a thick metal sheet.
|
Pokedex = Little can stand up to its psycho cut. Unleashed from this Pokémon's horn, the move will punch a hole right through a thick metal sheet.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SLOWPOKE,1]
|
[SLOWPOKE,1]
|
||||||
FormName = Galarian
|
FormName = Galarian
|
||||||
@@ -339,7 +339,7 @@ Moves = 1,TACKLE,1,CURSE,3,GROWL,6,ACID,9,YAWN,12,CONFUSION,15,DISABLE,18,WATERP
|
|||||||
TutorMoves = AMNESIA,ATTRACT,BLIZZARD,BODYSLAM,BRINE,BULLDOZE,CALMMIND,CAPTIVATE,CONFIDE,DIG,DIVE,DOUBLEEDGE,DOUBLETEAM,EARTHQUAKE,ENDURE,EXPANDINGFORCE,FACADE,FIREBLAST,FLAMETHROWER,FOULPLAY,FRUSTRATION,FUTURESIGHT,GRASSKNOT,HAIL,HIDDENPOWER,HYDROPUMP,ICEBEAM,ICYWIND,IMPRISON,IRONTAIL,LIGHTSCREEN,LIQUIDATION,MIMIC,MUDSHOT,NATURALGIFT,PAYDAY,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,RAINDANCE,REST,RETURN,ROUND,SAFEGUARD,SCALD,SECRETPOWER,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SURF,SWAGGER,SWIFT,THUNDERWAVE,TRIATTACK,TRICK,TRICKROOM,WEATHERBALL,WHIRLPOOL,WONDERROOM,ZENHEADBUTT
|
TutorMoves = AMNESIA,ATTRACT,BLIZZARD,BODYSLAM,BRINE,BULLDOZE,CALMMIND,CAPTIVATE,CONFIDE,DIG,DIVE,DOUBLEEDGE,DOUBLETEAM,EARTHQUAKE,ENDURE,EXPANDINGFORCE,FACADE,FIREBLAST,FLAMETHROWER,FOULPLAY,FRUSTRATION,FUTURESIGHT,GRASSKNOT,HAIL,HIDDENPOWER,HYDROPUMP,ICEBEAM,ICYWIND,IMPRISON,IRONTAIL,LIGHTSCREEN,LIQUIDATION,MIMIC,MUDSHOT,NATURALGIFT,PAYDAY,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,RAINDANCE,REST,RETURN,ROUND,SAFEGUARD,SCALD,SECRETPOWER,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SURF,SWAGGER,SWIFT,THUNDERWAVE,TRIATTACK,TRICK,TRICKROOM,WEATHERBALL,WHIRLPOOL,WONDERROOM,ZENHEADBUTT
|
||||||
Pokedex = Although this Pokémon is normally zoned out, its expression abruptly sharpens on occasion. The cause for this seems to lie in Slowpoke's diet.
|
Pokedex = Although this Pokémon is normally zoned out, its expression abruptly sharpens on occasion. The cause for this seems to lie in Slowpoke's diet.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = SLOWBRO,Item,GALARICACUFF
|
Evolution = SLOWBRO,Item,GALARICACUFF
|
||||||
Evolution = SLOWKING,Item,GALARICAWREATH
|
Evolution = SLOWKING,Item,GALARICAWREATH
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -353,7 +353,7 @@ TutorMoves = AMNESIA,ATTRACT,AVALANCHE,BLIZZARD,BODYSLAM,BRICKBREAK,BRINE,BRUTAL
|
|||||||
Weight = 70.5
|
Weight = 70.5
|
||||||
Pokedex = If this Pokémon squeezes the tongue of the Shellder biting it, the Shellder will launch a toxic liquid from the tip of its shell.
|
Pokedex = If this Pokémon squeezes the tongue of the Shellder biting it, the Shellder will launch a toxic liquid from the tip of its shell.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SLOWBRO,2]
|
[SLOWBRO,2]
|
||||||
FormName = Mega Slowbro
|
FormName = Mega Slowbro
|
||||||
@@ -380,7 +380,7 @@ EggMoves = COUNTER,COVET,CURSE,DOUBLEEDGE,FEINT,FLAIL,NIGHTSLASH,QUICKATTACK,QUI
|
|||||||
Weight = 42.0
|
Weight = 42.0
|
||||||
Pokedex = The stalks of leeks are thicker and longer in the Galar region. Farfetch'd that adapted to these stalks took on a unique form.
|
Pokedex = The stalks of leeks are thicker and longer in the Galar region. Farfetch'd that adapted to these stalks took on a unique form.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
WildItemCommon = LEEK
|
WildItemCommon = LEEK
|
||||||
Evolution = SIRFETCHD,BattleDealCriticalHit,3
|
Evolution = SIRFETCHD,BattleDealCriticalHit,3
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
@@ -397,7 +397,7 @@ Weight = 42.0
|
|||||||
Color = Green
|
Color = Green
|
||||||
Pokedex = A Grimer, which had been brought in to solve a problem with garbage, developed over time into this form.
|
Pokedex = A Grimer, which had been brought in to solve a problem with garbage, developed over time into this form.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MUK,1]
|
[MUK,1]
|
||||||
FormName = Alolan
|
FormName = Alolan
|
||||||
@@ -411,7 +411,7 @@ Weight = 52.0
|
|||||||
Color = Green
|
Color = Green
|
||||||
Pokedex = The garbage it eats causes continuous chemical changes in its body, which produce its exceedingly vivid coloration.
|
Pokedex = The garbage it eats causes continuous chemical changes in its body, which produce its exceedingly vivid coloration.
|
||||||
Generation = 7
|
Generation = 7
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GENGAR,1]
|
[GENGAR,1]
|
||||||
FormName = Mega Gengar
|
FormName = Mega Gengar
|
||||||
@@ -491,7 +491,7 @@ Color = White
|
|||||||
Category = Dancing
|
Category = Dancing
|
||||||
Pokedex = Its talent is tap-dancing. It can also manipulate temperatures to create a floor of ice, which this Pokémon can kick up to use as a barrier.
|
Pokedex = Its talent is tap-dancing. It can also manipulate temperatures to create a floor of ice, which this Pokémon can kick up to use as a barrier.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = MRRIME,Level,42
|
Evolution = MRRIME,Level,42
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PINSIR,1]
|
[PINSIR,1]
|
||||||
@@ -628,7 +628,7 @@ Height = 1.8
|
|||||||
Category = Hexpert
|
Category = Hexpert
|
||||||
Pokedex = While chanting strange spells, this Pokémon combines its internal toxins with what it's eaten, creating strange potions.
|
Pokedex = While chanting strange spells, this Pokémon combines its internal toxins with what it's eaten, creating strange potions.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[UNOWN,1]
|
[UNOWN,1]
|
||||||
FormName = B
|
FormName = B
|
||||||
@@ -761,7 +761,7 @@ Weight = 0.5
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = Sudden climate change wiped out this ancient kind of Corsola. This Pokémon absorbs others' life-force through its branches.
|
Pokedex = Sudden climate change wiped out this ancient kind of Corsola. This Pokémon absorbs others' life-force through its branches.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = CURSOLA,Level,38
|
Evolution = CURSOLA,Level,38
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[HOUNDOOM,1]
|
[HOUNDOOM,1]
|
||||||
@@ -827,7 +827,7 @@ EggMoves = KNOCKOFF,PARTINGSHOT,QUICKGUARD
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = Its restlessness has it constantly running around. If it sees another Pokémon, it will purposely run into them in order to start a fight.
|
Pokedex = Its restlessness has it constantly running around. If it sees another Pokémon, it will purposely run into them in order to start a fight.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LINOONE,1]
|
[LINOONE,1]
|
||||||
FormName = Galarian
|
FormName = Galarian
|
||||||
@@ -836,7 +836,7 @@ Moves = 0,NIGHTSLASH,1,SWITCHEROO,1,PINMISSILE,1,BABYDOLLEYES,1,TACKLE,1,LEER,1,
|
|||||||
TutorMoves = ASSURANCE,ATTRACT,BLIZZARD,BODYPRESS,BODYSLAM,CAPTIVATE,CONFIDE,DIG,DOUBLEEDGE,DOUBLETEAM,ENDURE,FACADE,FAKETEARS,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GUNKSHOT,HELPINGHAND,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICEBEAM,ICYWIND,IRONTAIL,LASHOUT,MIMIC,MUDSHOT,NATURALGIFT,PAYBACK,PINMISSILE,PROTECT,RAINDANCE,REST,RETALIATE,RETURN,ROUND,SCARYFACE,SCREECH,SECRETPOWER,SEEDBOMB,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNARL,SNORE,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SURF,SWAGGER,SWIFT,TAUNT,THIEF,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TRICK,WHIRLPOOL,WORKUP
|
TutorMoves = ASSURANCE,ATTRACT,BLIZZARD,BODYPRESS,BODYSLAM,CAPTIVATE,CONFIDE,DIG,DOUBLEEDGE,DOUBLETEAM,ENDURE,FACADE,FAKETEARS,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GUNKSHOT,HELPINGHAND,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICEBEAM,ICYWIND,IRONTAIL,LASHOUT,MIMIC,MUDSHOT,NATURALGIFT,PAYBACK,PINMISSILE,PROTECT,RAINDANCE,REST,RETALIATE,RETURN,ROUND,SCARYFACE,SCREECH,SECRETPOWER,SEEDBOMB,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNARL,SNORE,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SURF,SWAGGER,SWIFT,TAUNT,THIEF,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TRICK,WHIRLPOOL,WORKUP
|
||||||
Pokedex = It uses its long tongue to taunt opponents. Once the opposition is enraged, this Pokémon hurls itself at the opponent, tackling them forcefully.
|
Pokedex = It uses its long tongue to taunt opponents. Once the opposition is enraged, this Pokémon hurls itself at the opponent, tackling them forcefully.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = OBSTAGOON,LevelNight,35
|
Evolution = OBSTAGOON,LevelNight,35
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GARDEVOIR,1]
|
[GARDEVOIR,1]
|
||||||
@@ -1340,7 +1340,7 @@ Weight = 40.0
|
|||||||
Color = White
|
Color = White
|
||||||
Pokedex = The colder they get, the more energetic they are. They freeze their breath to make snowballs, using them as ammo for playful snowball fights.
|
Pokedex = The colder they get, the more energetic they are. They freeze their breath to make snowballs, using them as ammo for playful snowball fights.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = DARMANITAN,Item,ICESTONE
|
Evolution = DARMANITAN,Item,ICESTONE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DARMANITAN,1]
|
[DARMANITAN,1]
|
||||||
@@ -1364,7 +1364,7 @@ Color = White
|
|||||||
Category = Zen Charm
|
Category = Zen Charm
|
||||||
Pokedex = On days when blizzards blow through, it comes down to where people live. It stashes food in the snowball on its head, taking it home for later.
|
Pokedex = On days when blizzards blow through, it comes down to where people live. It stashes food in the snowball on its head, taking it home for later.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DARMANITAN,3]
|
[DARMANITAN,3]
|
||||||
FormName = Galarian Zen Mode
|
FormName = Galarian Zen Mode
|
||||||
@@ -1391,7 +1391,7 @@ Moves = 1,ASTONISH,1,PROTECT,4,HAZE,8,NIGHTSHADE,12,DISABLE,16,BRUTALSWING,20,CR
|
|||||||
TutorMoves = ALLYSWITCH,ATTRACT,BRUTALSWING,CALMMIND,CAPTIVATE,CONFIDE,DARKPULSE,DOUBLEEDGE,DOUBLETEAM,EARTHPOWER,EARTHQUAKE,ENDURE,ENERGYBALL,FACADE,FAKETEARS,FRUSTRATION,HEX,HIDDENPOWER,IMPRISON,IRONDEFENSE,MIMIC,NASTYPLOT,NATURALGIFT,PAYBACK,POLTERGEIST,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SECRETPOWER,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SWAGGER,THIEF,TOXIC,TOXICSPIKES,TRICK,TRICKROOM,WILLOWISP,WONDERROOM,ZENHEADBUTT
|
TutorMoves = ALLYSWITCH,ATTRACT,BRUTALSWING,CALMMIND,CAPTIVATE,CONFIDE,DARKPULSE,DOUBLEEDGE,DOUBLETEAM,EARTHPOWER,EARTHQUAKE,ENDURE,ENERGYBALL,FACADE,FAKETEARS,FRUSTRATION,HEX,HIDDENPOWER,IMPRISON,IRONDEFENSE,MIMIC,NASTYPLOT,NATURALGIFT,PAYBACK,POLTERGEIST,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SECRETPOWER,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SWAGGER,THIEF,TOXIC,TOXICSPIKES,TRICK,TRICKROOM,WILLOWISP,WONDERROOM,ZENHEADBUTT
|
||||||
Pokedex = A clay slab with cursed engravings took possession of a Yamask. The slab is said to be absorbing the Yamask's dark power.
|
Pokedex = A clay slab with cursed engravings took possession of a Yamask. The slab is said to be absorbing the Yamask's dark power.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
Evolution = RUNERIGUS,EventAfterDamageTaken,2
|
Evolution = RUNERIGUS,EventAfterDamageTaken,2
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DEERLING,1]
|
[DEERLING,1]
|
||||||
@@ -1428,7 +1428,7 @@ Weight = 20.5
|
|||||||
Color = Green
|
Color = Green
|
||||||
Pokedex = Its conspicuous lips lure prey in as it lies in wait in the mud. When prey gets close, Stunfisk clamps its jagged steel fins down on them.
|
Pokedex = Its conspicuous lips lure prey in as it lies in wait in the mud. When prey gets close, Stunfisk clamps its jagged steel fins down on them.
|
||||||
Generation = 8
|
Generation = 8
|
||||||
Flags = InheritFormWithEverStone
|
Flags = InheritFormWithEverstone
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[TORNADUS,1]
|
[TORNADUS,1]
|
||||||
FormName = Therian Forme
|
FormName = Therian Forme
|
||||||
|
|||||||
Reference in New Issue
Block a user