mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
Added Gen 8 PBS files
This commit is contained in:
@@ -609,7 +609,6 @@ GameData::Evolution.register({
|
||||
#===============================================================================
|
||||
GameData::Evolution.register({
|
||||
:id => :Event,
|
||||
:parameter => Integer,
|
||||
:event_proc => proc { |pkmn, parameter, value|
|
||||
next true
|
||||
}
|
||||
|
||||
@@ -73,7 +73,7 @@ module GameData
|
||||
|
||||
def self.species_count
|
||||
ret = 0
|
||||
self.species_count { |species| ret += 1 }
|
||||
self.each_species { |species| ret += 1 }
|
||||
return ret
|
||||
end
|
||||
|
||||
|
||||
@@ -209,15 +209,15 @@ class PokeBattle_Battler
|
||||
# Darmanitan - Zen Mode
|
||||
if isSpecies?(:DARMANITAN) && self.ability == :ZENMODE
|
||||
if @hp<=@totalhp/2
|
||||
if @form!=1
|
||||
if (@form % 2) == 0
|
||||
@battle.pbShowAbilitySplash(self,true)
|
||||
@battle.pbHideAbilitySplash(self)
|
||||
pbChangeForm(1,_INTL("{1} triggered!",abilityName))
|
||||
pbChangeForm(@form + 1, _INTL("{1} triggered!", abilityName))
|
||||
end
|
||||
elsif @form!=0
|
||||
elsif (@form % 2) != 0
|
||||
@battle.pbShowAbilitySplash(self,true)
|
||||
@battle.pbHideAbilitySplash(self)
|
||||
pbChangeForm(0,_INTL("{1} triggered!",abilityName))
|
||||
pbChangeForm(@form - 1, _INTL("{1} triggered!", abilityName))
|
||||
end
|
||||
end
|
||||
# Minior - Shields Down
|
||||
|
||||
@@ -79,6 +79,8 @@ end
|
||||
#===============================================================================
|
||||
# Burns the target if any of its stats were increased this round.
|
||||
# (Burning Jealousy)
|
||||
# TODO: Is the burn an effect or an additional effect? Regardless, I think this
|
||||
# code is wrong as it's a damaging move.
|
||||
#===============================================================================
|
||||
class PokeBattle_Move_177 < PokeBattle_BurnMove
|
||||
def pbEffectAgainstTarget(user, target)
|
||||
@@ -675,6 +677,8 @@ end
|
||||
# behind a substitute. (Corrosive Gas)
|
||||
#===============================================================================
|
||||
class PokeBattle_Move_193 < PokeBattle_Move
|
||||
def canMagicCoat?; return true; end
|
||||
|
||||
def pbFailsAgainstTarget?(user, target)
|
||||
if !target.item || target.unlosableItem?(target.item) ||
|
||||
target.effects[PBEffects::Substitute] > 0
|
||||
@@ -709,6 +713,8 @@ end
|
||||
#===============================================================================
|
||||
# The user takes recoil damage equal to 1/2 of its total HP (rounded up, min. 1
|
||||
# damage). (Steel Beam)
|
||||
# TODO: This recoil is not affected by Rock Head/Reckless. Damage is taken even
|
||||
# if the move is protected against/misses.
|
||||
#===============================================================================
|
||||
class PokeBattle_Move_194 < PokeBattle_RecoilMove
|
||||
def pbRecoilDamage(user, target)
|
||||
|
||||
@@ -197,7 +197,7 @@ def pbDayCareGenerateEgg
|
||||
newForm = 0 if mother.isSpecies?(:MOTHIM)
|
||||
egg.form = newForm
|
||||
end
|
||||
# Inheriting Alolan form
|
||||
# Inheriting regional form
|
||||
if [:RATTATA, :SANDSHREW, :VULPIX, :DIGLETT, :MEOWTH, :GEODUDE, :GRIMER].include?(babyspecies)
|
||||
if mother.form==1
|
||||
egg.form = 1 if mother.hasItem?(:EVERSTONE)
|
||||
|
||||
@@ -319,7 +319,7 @@ MultipleForms.register(:BASCULIN,{
|
||||
|
||||
MultipleForms.register(:DARMANITAN,{
|
||||
"getFormOnLeavingBattle" => proc { |pkmn,battle,usedInBattle,endBattle|
|
||||
next 0
|
||||
next 2 * (pkmn.form / 2)
|
||||
}
|
||||
})
|
||||
|
||||
@@ -589,10 +589,10 @@ MultipleForms.register(:NECROZMA,{
|
||||
})
|
||||
|
||||
#===============================================================================
|
||||
# Alolan forms
|
||||
# Regional forms
|
||||
#===============================================================================
|
||||
|
||||
# These species don't have visually different Alolan forms, but they need to
|
||||
# These species don't have visually different regional forms, but they need to
|
||||
# evolve into different forms depending on the location where they evolved.
|
||||
MultipleForms.register(:PIKACHU, {
|
||||
"getForm" => proc { |pkmn|
|
||||
|
||||
@@ -9,14 +9,13 @@ The game records, for each species, how many have been caught or defeated
|
||||
species because of this. This value is also shown in the Pokédex entry screen.
|
||||
|
||||
Some moves have changed properties/effects:
|
||||
- Multi-Attack's power changed to 120.
|
||||
- Rapid Spin's power changed to 50, and it now raises the user's Speed by 1
|
||||
stage (100% additional effect chance).
|
||||
- Rapid Spin now raises the user's Speed by 1 stage (100% additional effect
|
||||
chance).
|
||||
- Howl's target changed to UserAndAllies, and is now a sound move. It is now
|
||||
blocked by Soundproof (I don't know if it should be checking the allies for
|
||||
pbImmunityByAbility, but leaning towards yes; will Volt Absorb block an
|
||||
Electrified Howl?).
|
||||
- Vice Grip renamed to Vise Grip.
|
||||
Electrified Howl?). Needs a new function code, since it now affects targets
|
||||
rather than the user.
|
||||
- Teleport switches the user out. If the user is a wild Pokémon, ends the battle
|
||||
instead.
|
||||
- Curse's Ghost effect now targets a random foe (don't know if it can be non-
|
||||
@@ -46,7 +45,7 @@ Some abilities have changed effects:
|
||||
|
||||
Some items have changed properties/effects:
|
||||
- Zygarde Cube now changes a Zygarde's ability.
|
||||
- Ability Capsule/Ability Patch fail if used on Zygarde.
|
||||
- Ability Capsule/Ability Patch should fail if used on Zygarde.
|
||||
- If Leppa Berry is forced to be consumed, it will first try to work on a move
|
||||
with 0 PP left (preferring the earliest such move in the list of moves), and
|
||||
failing that, the earliest move in the list of moves which has any PP missing
|
||||
@@ -63,12 +62,9 @@ Other notes:
|
||||
- Look at Sweet Scent's out of battle effect, namely whether it should try to
|
||||
cause a horde battle (and what does that mean in Essentials?).
|
||||
- Maybe have multiple sets of Pickup items for multiple Gens.
|
||||
- Dive Ball should have an increased catch rate if surfing or fishing(?).
|
||||
- Dive Ball should have an increased catch rate if surfing or fishing(?). Nah.
|
||||
- Add a newer type of berry tree mechanics? Have a separate setting that
|
||||
prevents deterioration?
|
||||
- King's Rock/Razor Fang should probably stop using a flag to determine if a
|
||||
move is boosted by it, and instead check def flinchingMove?.
|
||||
- Skipped looking at TMs and HMs.
|
||||
- If a battle ends because of Rocky Helmet damage, the side that the Rocky
|
||||
Helmet holder is on should lose (Gen 7+) or win (Gen 6-).
|
||||
- Maybe the N-Solarizer/N-Lunarizer/that other fusion item that changes
|
||||
@@ -82,20 +78,32 @@ Can use Fly from within the Town Map if possible. (Good QoL, add if possible.)
|
||||
Make example event that combines the Gen 8 fossils.
|
||||
|
||||
New evolution methods:
|
||||
- Galarian Farfetch'd: performing 3 critical hits in a single battle
|
||||
|
||||
PBS file data:
|
||||
- Form differences.
|
||||
- Moveset changes.
|
||||
- Changes to evolutions due to removal of moss rock/ice rock/magnetic field.
|
||||
- Some (12) existing species changed egg groups.
|
||||
- Aegislash's stats changed.
|
||||
- 2 existing Pokémon gained new abilities.
|
||||
- Vice Grip becomes Vise Grip.
|
||||
- Some items change names (Stick -> Leek, Bicycle -> Bike in Gen 6+, etc.).
|
||||
- Galarian Farfetch'd: performing 3 critical hits in a single battle.
|
||||
|
||||
Add AI for new moves/items/abilities.
|
||||
|
||||
Code for the form differences:
|
||||
- Cramorant (in battle only)
|
||||
- Toxel/Toxtricity (depends on nature)
|
||||
- Sinistea/Polteageist (form 1 is rare and not inheritable by breeding)
|
||||
- Milcery (depends on held item and random number)
|
||||
- Alcremie (random)
|
||||
- Eiscue (in battle only)
|
||||
- Indeedee (gender)
|
||||
- Morpeko (in battle only)
|
||||
- Zacian
|
||||
- Zamazenta
|
||||
- Kubfu (no code needed; form is manually set just before evolution)
|
||||
- Urshifu
|
||||
- Calyrex (fising, learns move upon fusion/defusion)
|
||||
- Galarian forms (make sure breeding inherits them)(Koffing and Mime Jr. are the
|
||||
same)
|
||||
|
||||
I think there are some alternate forms which don't have a hidden ability while
|
||||
their base forms do. I don't think the compiler supports this, and instead
|
||||
treats Abilities and HiddenAbilities separately. Can work around this by setting
|
||||
HiddenAbilities to be the same as Abilities. I'm not too happy with this.
|
||||
|
||||
#===============================================================================
|
||||
# Low priority or ignorable
|
||||
#===============================================================================
|
||||
@@ -145,4 +153,24 @@ Escape Rope's code now supports both consumable and non-consumable versions,
|
||||
depending on whether it is a key item. All it needs is a proper definition in
|
||||
items.txt.
|
||||
|
||||
- Multi-Attack's power changed to 120.
|
||||
- Rapid Spin's power changed to 50.
|
||||
- Vice Grip renamed to Vise Grip.
|
||||
- King's Rock/Razor Fang should probably stop using a flag to determine if a
|
||||
move is boosted by it, and instead check def flinchingMove?.
|
||||
- Moveset changes.
|
||||
- Some (12) existing species changed egg groups:
|
||||
Ralts, Kirlia, Gardevoir, and Gallade: Amorphous to Humanlike/Amorphous
|
||||
Trapinch, Vibrava, and Flygon: Bug to Bug/Dragon
|
||||
Hawlucha: Human-Like to Flying/Humanlike
|
||||
Bergmite and Avalugg: Monster to Monster/Mineral
|
||||
Noibat and Noivern: Flying to Flying/Dragon
|
||||
- Aegislash's stats changed.
|
||||
- Koffing/Weezing gained new abilities.
|
||||
- Vice Grip becomes Vise Grip.
|
||||
- Some items change names (Stick -> Leek, Bicycle -> Bike in Gen 6+, etc.). Only
|
||||
Stick changed.
|
||||
- Changes to evolutions due to removal of moss rock/ice rock/magnetic field.
|
||||
- Form differences.
|
||||
|
||||
=end
|
||||
|
||||
1718
PBS/Gen 7/items.txt
1718
PBS/Gen 7/items.txt
File diff suppressed because it is too large
Load Diff
@@ -1483,6 +1483,7 @@ Generation = 7
|
||||
FormName = Complete Forme
|
||||
BaseStats = 216,100,121,85,91,95
|
||||
Abilities = POWERCONSTRUCT
|
||||
HiddenAbilities = POWERCONSTRUCT
|
||||
Height = 4.5
|
||||
Weight = 610.0
|
||||
Color = Black
|
||||
@@ -1494,6 +1495,7 @@ Generation = 7
|
||||
PokedexForm = 2
|
||||
BaseStats = 216,100,121,85,91,95
|
||||
Abilities = POWERCONSTRUCT
|
||||
HiddenAbilities = POWERCONSTRUCT
|
||||
Height = 4.5
|
||||
Weight = 610.0
|
||||
Color = Black
|
||||
|
||||
1065
PBS/Gen 8/abilities.txt
Normal file
1065
PBS/Gen 8/abilities.txt
Normal file
File diff suppressed because it is too large
Load Diff
304
PBS/Gen 8/encounters.txt
Normal file
304
PBS/Gen 8/encounters.txt
Normal file
@@ -0,0 +1,304 @@
|
||||
# See the documentation on the wiki to learn how to edit this file.
|
||||
#-------------------------------
|
||||
[002] # Lappet Town
|
||||
Water,2
|
||||
60,TENTACOOL,14,19
|
||||
30,MANTYKE,15,16
|
||||
10,REMORAID,14,16
|
||||
OldRod
|
||||
100,MAGIKARP,16,19
|
||||
GoodRod
|
||||
60,BARBOACH,17,18
|
||||
20,KRABBY,15,16
|
||||
20,SHELLDER,16,19
|
||||
SuperRod
|
||||
40,CHINCHOU,17,19
|
||||
40,QWILFISH,16,19
|
||||
15,CORSOLA,15,18
|
||||
5,STARYU,15,17
|
||||
#-------------------------------
|
||||
[005] # Route 1
|
||||
Land,21
|
||||
40,PIDGEY,11,14
|
||||
40,RATTATA,11,14
|
||||
9,PIDGEY,11,13
|
||||
9,RATTATA,11,13
|
||||
1,PIDGEY,14
|
||||
1,RATTATA,14
|
||||
LandNight,21
|
||||
39,RATTATA,10,14
|
||||
30,HOOTHOOT,10,13
|
||||
20,SPINARAK,8,12
|
||||
9,HOOTHOOT,10,14
|
||||
1,HOOTHOOT,14
|
||||
1,RATTATA,15
|
||||
#-------------------------------
|
||||
[005,1] # Route 1
|
||||
Land,21
|
||||
40,PIDGEY,15,18
|
||||
40,RATTATA,14,18
|
||||
10,SENTRET,13,17
|
||||
5,PIDGEY,14,16
|
||||
5,RATTATA,13,16
|
||||
LandNight,21
|
||||
40,RATTATA,14,18
|
||||
30,HOOTHOOT,14,17
|
||||
20,SPINARAK,12,16
|
||||
10,CLEFAIRY,11,15
|
||||
#-------------------------------
|
||||
[021] # Route 2
|
||||
Land,21
|
||||
50,RATTATA,12,15
|
||||
30,POOCHYENA,11,15
|
||||
10,SHINX,10,12
|
||||
10,SHINX,10,11
|
||||
Water,2
|
||||
60,MAGIKARP,7,10
|
||||
30,GOLDEEN,11,14
|
||||
10,STARYU,12,15
|
||||
OldRod
|
||||
70,MAGIKARP,7,10
|
||||
30,MAGIKARP,9,15
|
||||
GoodRod
|
||||
60,GOLDEEN,12,14
|
||||
20,FINNEON,12,15
|
||||
20,MAGIKARP,12,17
|
||||
SuperRod
|
||||
40,FINNEON,12,15
|
||||
40,GOLDEEN,12,14
|
||||
15,STARYU,12,15
|
||||
5,STARYU,14,17
|
||||
HeadbuttLow
|
||||
50,PINECO,11,13
|
||||
30,LEDYBA,6,8
|
||||
19,SPINARAK,9,12
|
||||
1,MUNCHLAX,11,14
|
||||
HeadbuttHigh
|
||||
50,PINECO,11,13
|
||||
30,WURMPLE,6,8
|
||||
20,SPINARAK,9,12
|
||||
#-------------------------------
|
||||
[028] # Natural Park
|
||||
Land,21
|
||||
20,CATERPIE,10
|
||||
20,SUNKERN,12
|
||||
20,WEEDLE,10
|
||||
15,PIDGEY,10,14
|
||||
15,PIDGEY,12,14
|
||||
5,KAKUNA,10
|
||||
5,METAPOD,10
|
||||
LandNight,21
|
||||
30,HOOTHOOT,10,14
|
||||
30,SPINARAK,10,15
|
||||
20,PINECO,9,13
|
||||
10,DROWZEE,9,15
|
||||
10,NATU,12,14
|
||||
LandMorning,21
|
||||
25,CATERPIE,10,12
|
||||
25,WEEDLE,10,12
|
||||
20,PIDGEY,10,14
|
||||
15,KAKUNA,10
|
||||
15,METAPOD,10
|
||||
BugContest,21
|
||||
20,CATERPIE,7,18
|
||||
20,WEEDLE,7,18
|
||||
10,KAKUNA,9,18
|
||||
10,METAPOD,9,18
|
||||
10,PARAS,10,17
|
||||
10,VENONAT,10,16
|
||||
5,BEEDRILL,12,15
|
||||
5,BUTTERFREE,12,15
|
||||
5,PINSIR,13,14
|
||||
5,SCYTHER,13,14
|
||||
#-------------------------------
|
||||
[031] # Route 3
|
||||
Land,21
|
||||
30,NIDORANfE,12,15
|
||||
30,NIDORANmA,12,15
|
||||
20,PIKACHU,14,17
|
||||
10,EEVEE,15
|
||||
10,PONYTA,13,15
|
||||
Water,2
|
||||
60,SURSKIT,13,14
|
||||
35,LOTAD,14
|
||||
5,LOTAD,15
|
||||
OldRod
|
||||
70,MAGIKARP,6,11
|
||||
30,MAGIKARP,10,17
|
||||
GoodRod
|
||||
60,POLIWAG,12,15
|
||||
20,PSYDUCK,11,14
|
||||
20,WOOPER,13,17
|
||||
SuperRod
|
||||
40,CHINCHOU,11,12
|
||||
40,REMORAID,12,14
|
||||
20,LUVDISC,10,16
|
||||
RockSmash,50
|
||||
60,NOSEPASS,13,14
|
||||
40,GEODUDE,12,15
|
||||
HeadbuttLow
|
||||
30,PINECO,14,17
|
||||
25,COMBEE,15,17
|
||||
20,PINECO,14,16
|
||||
10,HERACROSS,16,18
|
||||
9,HERACROSS,16,17
|
||||
5,COMBEE,15,16
|
||||
1,MUNCHLAX,13,18
|
||||
HeadbuttHigh
|
||||
50,SEEDOT,14,17
|
||||
30,SHROOMISH,14,17
|
||||
20,BURMY,12,15
|
||||
#-------------------------------
|
||||
[034] # Ice Cave
|
||||
Cave,5
|
||||
40,SWINUB,16,18
|
||||
20,SNEASEL,14,16
|
||||
20,SNORUNT,12,15
|
||||
10,SMOOCHUM,11,14
|
||||
10,SNOVER,14
|
||||
#-------------------------------
|
||||
[039] # Route 4
|
||||
Land,21
|
||||
50,SHELLOS_1,12,15
|
||||
40,GRIMER,13,15
|
||||
10,MURKROW,12,14
|
||||
#-------------------------------
|
||||
[041] # Route 5
|
||||
Land,21
|
||||
50,GRIMER,13,15
|
||||
40,SPEAROW,13,16
|
||||
10,SLUGMA,13,14
|
||||
#-------------------------------
|
||||
[044] # Route 6
|
||||
Land,21
|
||||
50,SHELLOS_1,12,15
|
||||
40,GRIMER,13,15
|
||||
10,MURKROW,12,14
|
||||
#-------------------------------
|
||||
[047] # Route 7
|
||||
Land,21
|
||||
50,SHELLOS,12,15
|
||||
30,BIDOOF,14,17
|
||||
10,MURKROW,12,14
|
||||
10,WURMPLE,9,12
|
||||
RockSmash,50
|
||||
90,NOSEPASS,13,14
|
||||
10,GEODUDE,12,15
|
||||
#-------------------------------
|
||||
[049] # Rock Cave
|
||||
Cave,5
|
||||
20,MAGNETON,14,16
|
||||
20,MAGNETON,14,17
|
||||
20,NOSEPASS,14,15
|
||||
20,NOSEPASS,13,14
|
||||
10,GEODUDE,13,15
|
||||
10,MAWILE,14,16
|
||||
#-------------------------------
|
||||
[050] # Rock Cave
|
||||
Cave,5
|
||||
20,MAGNETON,14,16
|
||||
20,MAGNETON,14,17
|
||||
20,NOSEPASS,14,15
|
||||
20,NOSEPASS,13,14
|
||||
10,BURMY,14,16
|
||||
10,GEODUDE,13,15
|
||||
#-------------------------------
|
||||
[051] # Dungeon
|
||||
Cave,5
|
||||
20,CHINGLING,1
|
||||
20,CLEFFA,1
|
||||
20,IGGLYBUFF,1
|
||||
20,PICHU,1
|
||||
10,RIOLU,1
|
||||
10,TYROGUE,1
|
||||
#-------------------------------
|
||||
[066] # Safari Zone
|
||||
Land,21
|
||||
20,ABRA,12,15
|
||||
20,DODUO,13,15
|
||||
20,NIDORANfE,15,16
|
||||
20,NIDORANmA,15,16
|
||||
10,HOPPIP,13,17
|
||||
10,TANGELA,14,16
|
||||
#-------------------------------
|
||||
[068] # Safari Zone
|
||||
Land,21
|
||||
20,EXEGGCUTE,15,18
|
||||
20,RHYHORN,16,18
|
||||
10,AIPOM,14,17
|
||||
10,GIRAFARIG,16,17
|
||||
10,VENONAT,15,17
|
||||
10,VENONAT,15,18
|
||||
5,HERACROSS,15,17
|
||||
5,TAUROS,15,16
|
||||
4,PINSIR,16
|
||||
4,SCYTHER,16
|
||||
1,CHANSEY,17
|
||||
1,KANGASKHAN,19
|
||||
Water,2
|
||||
60,PSYDUCK,16,18
|
||||
30,MARILL,15,18
|
||||
5,BUIZEL,15,17
|
||||
5,SLOWPOKE,14,16
|
||||
OldRod
|
||||
70,MAGIKARP,17,21
|
||||
30,MAGIKARP,17,20
|
||||
GoodRod
|
||||
60,MAGIKARP,16,20
|
||||
20,FEEBAS,16,20
|
||||
20,POLIWAG,17,18
|
||||
SuperRod
|
||||
40,GOLDEEN,16,18
|
||||
40,REMORAID,17,19
|
||||
15,CARVANHA,16,17
|
||||
4,FINNEON,15,18
|
||||
1,DRATINI,17
|
||||
#-------------------------------
|
||||
[069] # Route 8
|
||||
Land,21
|
||||
20,MAREEP,16,18
|
||||
20,ODDISH,15,17
|
||||
13,BONSLY,14,16
|
||||
10,DITTO,15,17
|
||||
10,DITTO,16,18
|
||||
10,LOTAD,15,18
|
||||
10,LOTAD,15,17
|
||||
5,BONSLY,14,17
|
||||
1,BONSLY,15,16
|
||||
1,BONSLY,15
|
||||
Water,2
|
||||
60,TENTACOOL,14,19
|
||||
30,MANTYKE,15,16
|
||||
10,REMORAID,14,16
|
||||
OldRod
|
||||
100,MAGIKARP,16,19
|
||||
GoodRod
|
||||
60,BARBOACH,17,18
|
||||
20,KRABBY,15,16
|
||||
20,SHELLDER,16,19
|
||||
SuperRod
|
||||
40,CHINCHOU,17,19
|
||||
40,QWILFISH,16,19
|
||||
15,CORSOLA,15,18
|
||||
5,STARYU,15,17
|
||||
#-------------------------------
|
||||
[070] # Underwater
|
||||
Land,21
|
||||
20,CHINCHOU,17,21
|
||||
20,CLAMPERL,18,20
|
||||
20,SHELLDER,18,20
|
||||
10,CLAMPERL,18,19
|
||||
10,CORSOLA,17,20
|
||||
10,RELICANTH,16,19
|
||||
10,SHELLDER,18,19
|
||||
#-------------------------------
|
||||
[075] # Tiall Region
|
||||
Land,21
|
||||
20,GEODUDE_1,11,14
|
||||
20,RATTATA_1,11,14
|
||||
10,CUBONE,11,14
|
||||
10,DIGLETT_1,11,14
|
||||
10,MEOWTH_1,11,14
|
||||
10,PIKACHU,11,14
|
||||
10,SANDSHREW_1,11,14
|
||||
10,VULPIX_1,11,14
|
||||
6401
PBS/Gen 8/items.txt
Normal file
6401
PBS/Gen 8/items.txt
Normal file
File diff suppressed because it is too large
Load Diff
8716
PBS/Gen 8/moves.txt
Normal file
8716
PBS/Gen 8/moves.txt
Normal file
File diff suppressed because it is too large
Load Diff
28792
PBS/Gen 8/pokemon.txt
Normal file
28792
PBS/Gen 8/pokemon.txt
Normal file
File diff suppressed because it is too large
Load Diff
2316
PBS/Gen 8/pokemon_forms.txt
Normal file
2316
PBS/Gen 8/pokemon_forms.txt
Normal file
File diff suppressed because it is too large
Load Diff
129
PBS/Gen 8/types.txt
Normal file
129
PBS/Gen 8/types.txt
Normal file
@@ -0,0 +1,129 @@
|
||||
# See the documentation on the wiki to learn how to edit this file.
|
||||
#-------------------------------
|
||||
[NORMAL]
|
||||
Name = Normal
|
||||
IconPosition = 0
|
||||
Weaknesses = FIGHTING
|
||||
Immunities = GHOST
|
||||
#-------------------------------
|
||||
[FIGHTING]
|
||||
Name = Fighting
|
||||
IconPosition = 1
|
||||
Weaknesses = FLYING,PSYCHIC,FAIRY
|
||||
Resistances = ROCK,BUG,DARK
|
||||
#-------------------------------
|
||||
[FLYING]
|
||||
Name = Flying
|
||||
IconPosition = 2
|
||||
Weaknesses = ROCK,ELECTRIC,ICE
|
||||
Resistances = FIGHTING,BUG,GRASS
|
||||
Immunities = GROUND
|
||||
#-------------------------------
|
||||
[POISON]
|
||||
Name = Poison
|
||||
IconPosition = 3
|
||||
Weaknesses = GROUND,PSYCHIC
|
||||
Resistances = FIGHTING,POISON,BUG,GRASS,FAIRY
|
||||
#-------------------------------
|
||||
[GROUND]
|
||||
Name = Ground
|
||||
IconPosition = 4
|
||||
Weaknesses = WATER,GRASS,ICE
|
||||
Resistances = POISON,ROCK
|
||||
Immunities = ELECTRIC
|
||||
#-------------------------------
|
||||
[ROCK]
|
||||
Name = Rock
|
||||
IconPosition = 5
|
||||
Weaknesses = FIGHTING,GROUND,STEEL,WATER,GRASS
|
||||
Resistances = NORMAL,FLYING,POISON,FIRE
|
||||
#-------------------------------
|
||||
[BUG]
|
||||
Name = Bug
|
||||
IconPosition = 6
|
||||
Weaknesses = FLYING,ROCK,FIRE
|
||||
Resistances = FIGHTING,GROUND,GRASS
|
||||
#-------------------------------
|
||||
[GHOST]
|
||||
Name = Ghost
|
||||
IconPosition = 7
|
||||
Weaknesses = GHOST,DARK
|
||||
Resistances = POISON,BUG
|
||||
Immunities = NORMAL,FIGHTING
|
||||
#-------------------------------
|
||||
[STEEL]
|
||||
Name = Steel
|
||||
IconPosition = 8
|
||||
Weaknesses = FIGHTING,GROUND,FIRE
|
||||
Resistances = NORMAL,FLYING,ROCK,BUG,STEEL,GRASS,PSYCHIC,ICE,DRAGON,FAIRY
|
||||
Immunities = POISON
|
||||
#-------------------------------
|
||||
[QMARKS]
|
||||
Name = ???
|
||||
IconPosition = 9
|
||||
IsPseudoType = true
|
||||
#-------------------------------
|
||||
[FIRE]
|
||||
Name = Fire
|
||||
IconPosition = 10
|
||||
IsSpecialType = true
|
||||
Weaknesses = GROUND,ROCK,WATER
|
||||
Resistances = BUG,STEEL,FIRE,GRASS,ICE,FAIRY
|
||||
#-------------------------------
|
||||
[WATER]
|
||||
Name = Water
|
||||
IconPosition = 11
|
||||
IsSpecialType = true
|
||||
Weaknesses = GRASS,ELECTRIC
|
||||
Resistances = STEEL,FIRE,WATER,ICE
|
||||
#-------------------------------
|
||||
[GRASS]
|
||||
Name = Grass
|
||||
IconPosition = 12
|
||||
IsSpecialType = true
|
||||
Weaknesses = FLYING,POISON,BUG,FIRE,ICE
|
||||
Resistances = GROUND,WATER,GRASS,ELECTRIC
|
||||
#-------------------------------
|
||||
[ELECTRIC]
|
||||
Name = Electric
|
||||
IconPosition = 13
|
||||
IsSpecialType = true
|
||||
Weaknesses = GROUND
|
||||
Resistances = FLYING,STEEL,ELECTRIC
|
||||
#-------------------------------
|
||||
[PSYCHIC]
|
||||
Name = Psychic
|
||||
IconPosition = 14
|
||||
IsSpecialType = true
|
||||
Weaknesses = BUG,GHOST,DARK
|
||||
Resistances = FIGHTING,PSYCHIC
|
||||
#-------------------------------
|
||||
[ICE]
|
||||
Name = Ice
|
||||
IconPosition = 15
|
||||
IsSpecialType = true
|
||||
Weaknesses = FIGHTING,ROCK,STEEL,FIRE
|
||||
Resistances = ICE
|
||||
#-------------------------------
|
||||
[DRAGON]
|
||||
Name = Dragon
|
||||
IconPosition = 16
|
||||
IsSpecialType = true
|
||||
Weaknesses = ICE,DRAGON,FAIRY
|
||||
Resistances = FIRE,WATER,GRASS,ELECTRIC
|
||||
#-------------------------------
|
||||
[DARK]
|
||||
Name = Dark
|
||||
IconPosition = 17
|
||||
IsSpecialType = true
|
||||
Weaknesses = FIGHTING,BUG,FAIRY
|
||||
Resistances = GHOST,DARK
|
||||
Immunities = PSYCHIC
|
||||
#-------------------------------
|
||||
[FAIRY]
|
||||
Name = Fairy
|
||||
IconPosition = 18
|
||||
IsSpecialType = true
|
||||
Weaknesses = POISON,STEEL
|
||||
Resistances = FIGHTING,BUG,DARK
|
||||
Immunities = DRAGON
|
||||
@@ -931,3 +931,135 @@ Description = Reduces damage from super-effective attacks.
|
||||
[NEUROFORCE]
|
||||
Name = Neuroforce
|
||||
Description = Powers up moves that are super-effective.
|
||||
#-------------------------------
|
||||
[INTREPIDSWORD]
|
||||
Name = Intrepid Sword
|
||||
Description = Boosts the Pokémon's Attack stat when the Pokémon enters a battle.
|
||||
#-------------------------------
|
||||
[DAUNTLESSSHIELD]
|
||||
Name = Dauntless Shield
|
||||
Description = Boosts the Pokémon's Defense stat when the Pokémon enters a battle.
|
||||
#-------------------------------
|
||||
[LIBERO]
|
||||
Name = Libero
|
||||
Description = Changes the Pokémon's type to the type of the move it's about to use.
|
||||
#-------------------------------
|
||||
[BALLFETCH]
|
||||
Name = Ball Fetch
|
||||
Description = If the Pokémon is not holding an item, it will fetch the Poké Ball from the first failed throw of the battle.
|
||||
#-------------------------------
|
||||
[COTTONDOWN]
|
||||
Name = Cotton Down
|
||||
Description = When the Pokémon is hit by an attack, it scatters cotton fluff around and lowers the Speed stat of all Pokémon except itself.
|
||||
#-------------------------------
|
||||
[PROPELLERTAIL]
|
||||
Name = Propeller Tail
|
||||
Description = Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.
|
||||
#-------------------------------
|
||||
[MIRRORARMOR]
|
||||
Name = Mirror Armor
|
||||
Description = Bounces back only the stat-lowering effects that the Pokémon receives.
|
||||
#-------------------------------
|
||||
[GULPMISSILE]
|
||||
Name = Gulp Missile
|
||||
Description = When the Pokémon uses Surf or Dive, it will come back with prey. When it takes damage, it will spit out the prey to attack.
|
||||
#-------------------------------
|
||||
[STALWART]
|
||||
Name = Stalwart
|
||||
Description = Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.
|
||||
#-------------------------------
|
||||
[STEAMENGINE]
|
||||
Name = Steam Engine
|
||||
Description = Boosts the Pokémon's Speed stat drastically if hit by a Fire- or Water-type move.
|
||||
#-------------------------------
|
||||
[PUNKROCK]
|
||||
Name = Punk Rock
|
||||
Description = Boosts the power of sound-based moves. The Pokémon also takes half the damage from these kinds of moves.
|
||||
#-------------------------------
|
||||
[SANDSPIT]
|
||||
Name = Sand Spit
|
||||
Description = The Pokémon creates a sandstorm when it's hit by an attack.
|
||||
#-------------------------------
|
||||
[ICESCALES]
|
||||
Name = Ice Scales
|
||||
Description = The Pokémon is protected by ice scales, which halve the damage taken from special moves.
|
||||
#-------------------------------
|
||||
[RIPEN]
|
||||
Name = Ripen
|
||||
Description = Ripens Berries and doubles their effect.
|
||||
#-------------------------------
|
||||
[ICEFACE]
|
||||
Name = Ice Face
|
||||
Description = The Pokémon's ice head can take a physical attack as a substitute, but the attack also changes the Pokémon's appearance. The ice will be restored when it hails.
|
||||
#-------------------------------
|
||||
[POWERSPOT]
|
||||
Name = Power Spot
|
||||
Description = Just being next to the Pokémon powers up moves.
|
||||
#-------------------------------
|
||||
[MIMICRY]
|
||||
Name = Mimicry
|
||||
Description = Changes the Pokémon's type depending on the terrain.
|
||||
#-------------------------------
|
||||
[SCREENCLEANER]
|
||||
Name = Screen Cleaner
|
||||
Description = When the Pokémon enters a battle, the effects of Light Screen, Reflect, and Aurora Veil are nullified for both opposing and ally Pokémon.
|
||||
#-------------------------------
|
||||
[STEELYSPIRIT]
|
||||
Name = Steely Spirit
|
||||
Description = Powers up ally Pokémon's Steel-type moves.
|
||||
#-------------------------------
|
||||
[PERISHBODY]
|
||||
Name = Perish Body
|
||||
Description = When hit by a move that makes direct contact, the Pokémon and the attacker will faint after three turns unless they switch out of battle.
|
||||
#-------------------------------
|
||||
[WANDERINGSPIRIT]
|
||||
Name = Wandering Spirit
|
||||
Description = The Pokémon exchanges Abilities with a Pokémon that hits it with a move that makes direct contact.
|
||||
#-------------------------------
|
||||
[GORILLATACTICS]
|
||||
Name = Gorilla Tactics
|
||||
Description = Boosts the Pokémon's Attack stat but only allows the use of the first selected move.
|
||||
#-------------------------------
|
||||
[NEUTRALIZINGGAS]
|
||||
Name = Neutralizing Gas
|
||||
Description = If the Pokémon with Neutralizing Gas is in the battle, the effects of all Pokémon's Abilities will be nullified or will not be triggered.
|
||||
#-------------------------------
|
||||
[PASTELVEIL]
|
||||
Name = Pastel Veil
|
||||
Description = Protects the Pokémon and its ally Pokémon from being poisoned.
|
||||
#-------------------------------
|
||||
[HUNGERSWITCH]
|
||||
Name = Hunger Switch
|
||||
Description = The Pokémon changes its form, alternating between its Full Belly Mode and Hangry Mode after the end of each turn.
|
||||
#-------------------------------
|
||||
[QUICKDRAW]
|
||||
Name = Quick Draw
|
||||
Description = Enables the Pokémon to move first occasionally.
|
||||
#-------------------------------
|
||||
[UNSEENFIST]
|
||||
Name = Unseen Fist
|
||||
Description = If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself.
|
||||
#-------------------------------
|
||||
[CURIOUSMEDICINE]
|
||||
Name = Curious Medicine
|
||||
Description = When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies.
|
||||
#-------------------------------
|
||||
[TRANSISTOR]
|
||||
Name = Transistor
|
||||
Description = Powers up Electric-type moves.
|
||||
#-------------------------------
|
||||
[DRAGONSMAW]
|
||||
Name = Dragon's Maw
|
||||
Description = Powers up Dragon-type moves.
|
||||
#-------------------------------
|
||||
[CHILLINGNEIGH]
|
||||
Name = Chilling Neigh
|
||||
Description = When the Pokémon knocks out a target, it utters a chilling neigh, which boosts its Attack stat.
|
||||
#-------------------------------
|
||||
[GRIMNEIGH]
|
||||
Name = Grim Neigh
|
||||
Description = When the Pokémon knocks out a target, it utters a terrifying neigh, which boosts its Sp. Atk stat.
|
||||
#-------------------------------
|
||||
[ASONE]
|
||||
Name = As One
|
||||
Description = This Ability combines the effects of both Calyrex's Unnerve Ability and Glastrier's Chilling Neigh Ability/Spectrier's Grim Neigh Ability.
|
||||
3660
PBS/items.txt
3660
PBS/items.txt
File diff suppressed because it is too large
Load Diff
785
PBS/moves.txt
785
PBS/moves.txt
@@ -4261,7 +4261,7 @@ Description = The user lets loose a horribly echoing shout with the power to inf
|
||||
Name = Multi-Attack
|
||||
Type = NORMAL
|
||||
Category = Physical
|
||||
BaseDamage = 90
|
||||
BaseDamage = 120
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
@@ -4616,8 +4616,8 @@ FunctionCode = 0A5
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = Star-shaped rays are shot at the opposing team. This attack never misses.
|
||||
#-------------------------------
|
||||
[VICEGRIP]
|
||||
Name = Vice Grip
|
||||
[VISEGRIP]
|
||||
Name = Vise Grip
|
||||
Type = NORMAL
|
||||
Category = Physical
|
||||
BaseDamage = 55
|
||||
@@ -4841,7 +4841,7 @@ Description = As long as this move is in use, the user's Attack rises each time
|
||||
Name = Rapid Spin
|
||||
Type = NORMAL
|
||||
Category = Physical
|
||||
BaseDamage = 20
|
||||
BaseDamage = 50
|
||||
Accuracy = 100
|
||||
TotalPP = 40
|
||||
Target = NearOther
|
||||
@@ -5491,8 +5491,9 @@ Type = NORMAL
|
||||
Category = Status
|
||||
Accuracy = 0
|
||||
TotalPP = 40
|
||||
Target = User
|
||||
Target = UserAndAllies
|
||||
FunctionCode = 01C
|
||||
Flags = Sound
|
||||
Description = The user howls loudly to raise its spirit, boosting its Attack stat.
|
||||
#-------------------------------
|
||||
[LASERFOCUS]
|
||||
@@ -7939,3 +7940,777 @@ TotalPP = 40
|
||||
Target = User
|
||||
FunctionCode = 01D
|
||||
Description = The user withdraws its body into its hard shell, raising its Defense stat.
|
||||
#-------------------------------
|
||||
[DYNAMAXCANNON]
|
||||
Name = Dynamax Cannon
|
||||
Type = DRAGON
|
||||
Category = Special
|
||||
BaseDamage = 100
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 000
|
||||
Flags = CanProtect
|
||||
Description = The user unleashes a strong beam from its core.
|
||||
#-------------------------------
|
||||
[SNIPESHOT]
|
||||
Name = Snipe Shot
|
||||
Type = WATER
|
||||
Category = Special
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 15
|
||||
Target = NearOther
|
||||
FunctionCode = 187
|
||||
Flags = CanProtect,CanMirrorMove,HighCriticalHitRate
|
||||
Description = The user ignores the effects of opposing Pokémon's moves and Abilities that draw in moves, allowing this move to hit the chosen target.
|
||||
#-------------------------------
|
||||
[JAWLOCK]
|
||||
Name = Jaw Lock
|
||||
Type = DARK
|
||||
Category = Physical
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 190
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = This move prevents the user and the target from switching out until either of them faints. The effect goes away if either of the Pokémon leaves the field.
|
||||
#-------------------------------
|
||||
[STUFFCHEEKS]
|
||||
Name = Stuff Cheeks
|
||||
Type = NORMAL
|
||||
Category = Status
|
||||
Accuracy = 0
|
||||
TotalPP = 10
|
||||
Target = User
|
||||
FunctionCode = 191
|
||||
Description = The user eats its held Berry, then sharply raises its Defense stat.
|
||||
#-------------------------------
|
||||
[NORETREAT]
|
||||
Name = No Retreat
|
||||
Type = FIGHTING
|
||||
Category = Status
|
||||
Accuracy = 0
|
||||
TotalPP = 5
|
||||
Target = User
|
||||
FunctionCode = 179
|
||||
Description = This move raises all the user's stats but prevents the user from switching out or fleeing.
|
||||
#-------------------------------
|
||||
[TARSHOT]
|
||||
Name = Tar Shot
|
||||
Type = ROCK
|
||||
Category = Status
|
||||
Accuracy = 100
|
||||
TotalPP = 15
|
||||
Target = NearOther
|
||||
FunctionCode = 17E
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user pours sticky tar over the target, lowering the target's Speed stat. The target becomes weaker to Fire-type moves.
|
||||
#-------------------------------
|
||||
[MAGICPOWDER]
|
||||
Name = Magic Powder
|
||||
Type = PSYCHIC
|
||||
Category = Status
|
||||
Accuracy = 100
|
||||
TotalPP = 20
|
||||
Target = NearOther
|
||||
FunctionCode = 17F
|
||||
Flags = CanProtect,CanMirrorMove,Powder
|
||||
Description = The user scatters a cloud of magic powder that changes the target to Psychic type.
|
||||
#-------------------------------
|
||||
[DRAGONDARTS]
|
||||
Name = Dragon Darts
|
||||
Type = DRAGON
|
||||
Category = Physical
|
||||
BaseDamage = 50
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 188
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks twice using Dreepy. If there are two targets, this move hits each target once.
|
||||
#-------------------------------
|
||||
[TEATIME]
|
||||
Name = Teatime
|
||||
Type = NORMAL
|
||||
Category = Status
|
||||
Accuracy = 0
|
||||
TotalPP = 10
|
||||
Target = AllBattlers
|
||||
FunctionCode = 192
|
||||
Description = The user has teatime with all the Pokémon in the battle. Each Pokémon eats its held Berry.
|
||||
#-------------------------------
|
||||
[OCTOLOCK]
|
||||
Name = Octolock
|
||||
Type = FIGHTING
|
||||
Category = Status
|
||||
Accuracy = 100
|
||||
TotalPP = 15
|
||||
Target = NearOther
|
||||
FunctionCode = 18F
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user locks the target in and prevents it from fleeing. This move also lowers the target's Defense and Sp. Def every turn.
|
||||
#-------------------------------
|
||||
[BOLTBEAK]
|
||||
Name = Bolt Beak
|
||||
Type = ELECTRIC
|
||||
Category = Physical
|
||||
BaseDamage = 85
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 183
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user stabs the target with its electrified beak. If the user attacks before the target, the power of this move is doubled.
|
||||
#-------------------------------
|
||||
[FISHIOUSREND]
|
||||
Name = Fishious Rend
|
||||
Type = WATER
|
||||
Category = Physical
|
||||
BaseDamage = 85
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 183
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user rends the target with its hard gills. If the user attacks before the target, the power of this move is doubled.
|
||||
#-------------------------------
|
||||
[COURTCHANGE]
|
||||
Name = Court Change
|
||||
Type = NORMAL
|
||||
Category = Status
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = BothSides
|
||||
FunctionCode = 198
|
||||
Flags = CanMirrorMove
|
||||
Description = With its mysterious power, the user swaps the effects on either side of the field.
|
||||
#-------------------------------
|
||||
[CLANGOROUSSOUL]
|
||||
Name = Clangorous Soul
|
||||
Type = DRAGON
|
||||
Category = Status
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = User
|
||||
FunctionCode = 17A
|
||||
Flags = Sound
|
||||
Description = The user raises all its stats by using some of its HP.
|
||||
#-------------------------------
|
||||
[BODYPRESS]
|
||||
Name = Body Press
|
||||
Type = FIGHTING
|
||||
Category = Physical
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 197
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user attacks by slamming its body into the target. The higher the user's Defense, the more damage it can inflict on the target.
|
||||
#-------------------------------
|
||||
[DECORATE]
|
||||
Name = Decorate
|
||||
Type = FAIRY
|
||||
Category = Status
|
||||
Accuracy = 0
|
||||
TotalPP = 15
|
||||
Target = NearOther
|
||||
FunctionCode = 17C
|
||||
Description = The user sharply raises the target's Attack and Sp. Atk stats by decorating the target.
|
||||
#-------------------------------
|
||||
[DRUMBEATING]
|
||||
Name = Drum Beating
|
||||
Type = GRASS
|
||||
Category = Physical
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 044
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
EffectChance = 100
|
||||
Description = The user plays its drum, controlling the drum's roots to attack the target. This also lowers the target's Speed stat.
|
||||
#-------------------------------
|
||||
[SNAPTRAP]
|
||||
Name = Snap Trap
|
||||
Type = GRASS
|
||||
Category = Physical
|
||||
BaseDamage = 35
|
||||
Accuracy = 100
|
||||
TotalPP = 15
|
||||
Target = NearOther
|
||||
FunctionCode = 0CF
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user snares the target in a snap trap for four to five turns.
|
||||
#-------------------------------
|
||||
[PYROBALL]
|
||||
Name = Pyro Ball
|
||||
Type = FIRE
|
||||
Category = Physical
|
||||
BaseDamage = 120
|
||||
Accuracy = 90
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 00A
|
||||
Flags = CanProtect,CanMirrorMove,ThawsUser,Bomb
|
||||
EffectChance = 10
|
||||
Description = The user attacks by igniting a small stone and launching it as a fiery ball at the target. This may also leave the target with a burn.
|
||||
#-------------------------------
|
||||
[BEHEMOTHBLADE]
|
||||
Name = Behemoth Blade
|
||||
Type = STEEL
|
||||
Category = Physical
|
||||
BaseDamage = 100
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 000
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user becomes a gigantic sword and cuts the target.
|
||||
#-------------------------------
|
||||
[BEHEMOTHBASH]
|
||||
Name = Behemoth Bash
|
||||
Type = STEEL
|
||||
Category = Physical
|
||||
BaseDamage = 100
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 000
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user becomes a gigantic shield and slams into the target.
|
||||
#-------------------------------
|
||||
[AURAWHEEL]
|
||||
Name = Aura Wheel
|
||||
Type = ELECTRIC
|
||||
Category = Physical
|
||||
BaseDamage = 110
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 178
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
EffectChance = 100
|
||||
Description = Morpeko attacks and raises its Speed with the energy stored in its cheeks. This move's type changes depending on the user's form.
|
||||
#-------------------------------
|
||||
[BREAKINGSWIPE]
|
||||
Name = Breaking Swipe
|
||||
Type = DRAGON
|
||||
Category = Physical
|
||||
BaseDamage = 60
|
||||
Accuracy = 100
|
||||
TotalPP = 15
|
||||
Target = AllNearFoes
|
||||
FunctionCode = 042
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
EffectChance = 100
|
||||
Description = The user swings its tough tail wildly and attacks opposing Pokémon. This also lowers their Attack stats.
|
||||
#-------------------------------
|
||||
[BRANCHPOKE]
|
||||
Name = Branch Poke
|
||||
Type = GRASS
|
||||
Category = Physical
|
||||
BaseDamage = 40
|
||||
Accuracy = 100
|
||||
TotalPP = 40
|
||||
Target = NearOther
|
||||
FunctionCode = 000
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user attacks the target by poking it with a sharply pointed branch.
|
||||
#-------------------------------
|
||||
[OVERDRIVE]
|
||||
Name = Overdrive
|
||||
Type = ELECTRIC
|
||||
Category = Special
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = AllNearFoes
|
||||
FunctionCode = 000
|
||||
Flags = CanProtect,CanMirrorMove,Sound
|
||||
Description = The user attacks opposing Pokémon by twanging a guitar or bass guitar, causing a huge echo and strong vibration.
|
||||
#-------------------------------
|
||||
[APPLEACID]
|
||||
Name = Apple Acid
|
||||
Type = GRASS
|
||||
Category = Special
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 046
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
EffectChance = 100
|
||||
Description = The user attacks the target with an acidic liquid created from tart apples. This also lowers the target's Sp. Def stat.
|
||||
#-------------------------------
|
||||
[GRAVAPPLE]
|
||||
Name = Grav Apple
|
||||
Type = GRASS
|
||||
Category = Physical
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 17D
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
EffectChance = 100
|
||||
Description = The user inflicts damage by dropping an apple from high above. This also lowers the target's Defense stat.
|
||||
#-------------------------------
|
||||
[SPIRITBREAK]
|
||||
Name = Spirit Break
|
||||
Type = FAIRY
|
||||
Category = Physical
|
||||
BaseDamage = 75
|
||||
Accuracy = 100
|
||||
TotalPP = 15
|
||||
Target = NearOther
|
||||
FunctionCode = 045
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
EffectChance = 100
|
||||
Description = The user attacks the target with so much force that it could break the target's spirit. This also lowers the target's Sp. Atk stat.
|
||||
#-------------------------------
|
||||
[STRANGESTEAM]
|
||||
Name = Strange Steam
|
||||
Type = FAIRY
|
||||
Category = Special
|
||||
BaseDamage = 90
|
||||
Accuracy = 95
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 013
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
EffectChance = 20
|
||||
Description = The user attacks the target by emitting steam. This may also confuse the target.
|
||||
#-------------------------------
|
||||
[LIFEDEW]
|
||||
Name = Life Dew
|
||||
Type = WATER
|
||||
Category = Status
|
||||
Accuracy = 0
|
||||
TotalPP = 10
|
||||
Target = UserAndAllies
|
||||
FunctionCode = 18C
|
||||
Description = The user scatters mysterious water around and restores the HP of itself and its ally Pokémon in the battle.
|
||||
#-------------------------------
|
||||
[OBSTRUCT]
|
||||
Name = Obstruct
|
||||
Type = DARK
|
||||
Category = Status
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = User
|
||||
Priority = 4
|
||||
FunctionCode = 186
|
||||
Description = This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession. Direct contact harshly lowers the attacker's Defense stat.
|
||||
#-------------------------------
|
||||
[FALSESURRENDER]
|
||||
Name = False Surrender
|
||||
Type = DARK
|
||||
Category = Physical
|
||||
BaseDamage = 80
|
||||
Accuracy = 0
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 0A5
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user pretends to bow its head, but then it stabs the target with its disheveled hair. This attack never misses.
|
||||
#-------------------------------
|
||||
[METEORASSAULT]
|
||||
Name = Meteor Assault
|
||||
Type = FIGHTING
|
||||
Category = Physical
|
||||
BaseDamage = 150
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 0C2
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks wildly with its thick leek. The user can't move on the next turn, because the force of this move makes it stagger.
|
||||
#-------------------------------
|
||||
[ETERNABEAM]
|
||||
Name = Eternabeam
|
||||
Type = DRAGON
|
||||
Category = Special
|
||||
BaseDamage = 160
|
||||
Accuracy = 90
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 0C2
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = This is Eternatus's most powerful attack in its original form. The user can't move on the next turn.
|
||||
#-------------------------------
|
||||
[STEELBEAM]
|
||||
Name = Steel Beam
|
||||
Type = STEEL
|
||||
Category = Special
|
||||
BaseDamage = 140
|
||||
Accuracy = 95
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 194
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user fires a beam of steel that it collected from its entire body. This also damages the user.
|
||||
#-------------------------------
|
||||
[EXPANDINGFORCE]
|
||||
Name = Expanding Force
|
||||
Type = PSYCHIC
|
||||
Category = Special
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 181
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks the target with its psychic power. This move's power goes up and damages all opposing Pokémon on Psychic Terrain.
|
||||
#-------------------------------
|
||||
[STEELROLLER]
|
||||
Name = Steel Roller
|
||||
Type = STEEL
|
||||
Category = Physical
|
||||
BaseDamage = 130
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 199
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user attacks while destroying the terrain. This move fails when the ground hasn't turned into a terrain.
|
||||
#-------------------------------
|
||||
[SCALESHOT]
|
||||
Name = Scale Shot
|
||||
Type = DRAGON
|
||||
Category = Physical
|
||||
BaseDamage = 25
|
||||
Accuracy = 90
|
||||
TotalPP = 20
|
||||
Target = NearOther
|
||||
FunctionCode = 18A
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks by shooting scales two to five times in a row. This move boosts the user's Speed stat but lowers its Defense stat.
|
||||
#-------------------------------
|
||||
[METEORBEAM]
|
||||
Name = Meteor Beam
|
||||
Type = ROCK
|
||||
Category = Special
|
||||
BaseDamage = 120
|
||||
Accuracy = 90
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 18B
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = In this two-turn attack, the user gathers space power and boosts its Sp. Atk stat, then attacks the target on the next turn.
|
||||
#-------------------------------
|
||||
[SHELLSIDEARM]
|
||||
Name = Shell Side Arm
|
||||
Type = POISON
|
||||
Category = Special
|
||||
BaseDamage = 90
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 176
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
EffectChance = 20
|
||||
Description = This move inflicts physical or special damage, whichever will be more effective. This may also poison the target.
|
||||
#-------------------------------
|
||||
[MISTYEXPLOSION]
|
||||
Name = Misty Explosion
|
||||
Type = FAIRY
|
||||
Category = Special
|
||||
BaseDamage = 100
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = AllNearOthers
|
||||
FunctionCode = 18E
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks everything around it and faints upon using this move. This move's power is increased on Misty Terrain.
|
||||
#-------------------------------
|
||||
[GRASSYGLIDE]
|
||||
Name = Grassy Glide
|
||||
Type = GRASS
|
||||
Category = Physical
|
||||
BaseDamage = 70
|
||||
Accuracy = 100
|
||||
TotalPP = 20
|
||||
Target = NearOther
|
||||
FunctionCode = 185
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = Gliding on the ground, the user attacks the target. This move always goes first on Grassy Terrain.
|
||||
#-------------------------------
|
||||
[RISINGVOLTAGE]
|
||||
Name = Rising Voltage
|
||||
Type = ELECTRIC
|
||||
Category = Special
|
||||
BaseDamage = 70
|
||||
Accuracy = 100
|
||||
TotalPP = 20
|
||||
Target = NearOther
|
||||
FunctionCode = 180
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks with electric voltage rising from the ground. This move's power doubles when the target is on Electric Terrain.
|
||||
#-------------------------------
|
||||
[TERRAINPULSE]
|
||||
Name = Terrain Pulse
|
||||
Type = NORMAL
|
||||
Category = Special
|
||||
BaseDamage = 50
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 182
|
||||
Flags = CanProtect,CanMirrorMove,Pulse
|
||||
Description = The user utilizes the power of the terrain to attack. This move's type and power changes depending on the terrain when it's used.
|
||||
#-------------------------------
|
||||
[SKITTERSMACK]
|
||||
Name = Skitter Smack
|
||||
Type = BUG
|
||||
Category = Physical
|
||||
BaseDamage = 70
|
||||
Accuracy = 90
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 045
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
EffectChance = 100
|
||||
Description = The user skitters behind the target to attack. This also lowers the target's Sp. Atk stat.
|
||||
#-------------------------------
|
||||
[BURNINGJEALOUSY]
|
||||
Name = Burning Jealousy
|
||||
Type = FIRE
|
||||
Category = Special
|
||||
BaseDamage = 70
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = AllNearFoes
|
||||
FunctionCode = 177
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks with energy from jealousy. This leaves all opposing Pokémon that have had their stats boosted during the turn with a burn.
|
||||
#-------------------------------
|
||||
[LASHOUT]
|
||||
Name = Lash Out
|
||||
Type = DARK
|
||||
Category = Physical
|
||||
BaseDamage = 75
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 184
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user lashes out to vent its frustration toward the target. If its stats were lowered during the turn, the power of this move is doubled.
|
||||
#-------------------------------
|
||||
[POLTERGEIST]
|
||||
Name = Poltergeist
|
||||
Type = GHOST
|
||||
Category = Physical
|
||||
BaseDamage = 110
|
||||
Accuracy = 90
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 196
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks the target by controlling the target's item. The move fails if the target doesn't have an item.
|
||||
#-------------------------------
|
||||
[CORROSIVEGAS]
|
||||
Name = Corrosive Gas
|
||||
Type = POISON
|
||||
Category = Status
|
||||
Accuracy = 100
|
||||
TotalPP = 40
|
||||
Target = AllNearOthers
|
||||
FunctionCode = 193
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user surrounds everything around it with highly acidic gas and melts away items they hold.
|
||||
#-------------------------------
|
||||
[COACHING]
|
||||
Name = Coaching
|
||||
Type = FIGHTING
|
||||
Category = Status
|
||||
Accuracy = 0
|
||||
TotalPP = 10
|
||||
Target = UserAndAllies
|
||||
FunctionCode = 17B
|
||||
Flags = CanMirrorMove
|
||||
Description = The user properly coaches its ally Pokémon, boosting their Attack and Defense stats.
|
||||
#-------------------------------
|
||||
[FLIPTURN]
|
||||
Name = Flip Turn
|
||||
Type = WATER
|
||||
Category = Physical
|
||||
BaseDamage = 60
|
||||
Accuracy = 100
|
||||
TotalPP = 20
|
||||
Target = NearOther
|
||||
FunctionCode = 0EE
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting.
|
||||
#-------------------------------
|
||||
[TRIPLEAXEL]
|
||||
Name = Triple Axel
|
||||
Type = ICE
|
||||
Category = Physical
|
||||
BaseDamage = 20
|
||||
Accuracy = 90
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 0BF
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = A consecutive three-kick attack that becomes more powerful with each successful hit.
|
||||
#-------------------------------
|
||||
[DUALWINGBEAT]
|
||||
Name = Dual Wingbeat
|
||||
Type = FLYING
|
||||
Category = Physical
|
||||
BaseDamage = 40
|
||||
Accuracy = 90
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 0BD
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user slams the target with its wings. The target is hit twice in a row.
|
||||
#-------------------------------
|
||||
[SCORCHINGSANDS]
|
||||
Name = Scorching Sands
|
||||
Type = GROUND
|
||||
Category = Special
|
||||
BaseDamage = 70
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 00A
|
||||
Flags = CanProtect,CanMirrorMove,ThawsUser
|
||||
EffectChance = 30
|
||||
Description = The user throws scorching sand at the target to attack. This may also leave the target with a burn.
|
||||
#-------------------------------
|
||||
[JUNGLEHEALING]
|
||||
Name = Jungle Healing
|
||||
Type = GRASS
|
||||
Category = Status
|
||||
Accuracy = 0
|
||||
TotalPP = 10
|
||||
Target = UserAndAllies
|
||||
FunctionCode = 18D
|
||||
Description = The user becomes one with the jungle, restoring HP and healing any status conditions of itself and its ally Pokémon in battle.
|
||||
#-------------------------------
|
||||
[WICKEDBLOW]
|
||||
Name = Wicked Blow
|
||||
Type = DARK
|
||||
Category = Physical
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 0A0
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user, having mastered the Dark style, strikes the target with a fierce blow. This attack always results in a critical hit.
|
||||
#-------------------------------
|
||||
[SURGINGSTRIKES]
|
||||
Name = Surging Strikes
|
||||
Type = WATER
|
||||
Category = Physical
|
||||
BaseDamage = 25
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 189
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
Description = The user, having mastered the Water style, strikes the target with a flowing motion three times in a row. This attack always results in a critical hit.
|
||||
#-------------------------------
|
||||
[THUNDERCAGE]
|
||||
Name = Thunder Cage
|
||||
Type = ELECTRIC
|
||||
Category = Special
|
||||
BaseDamage = 80
|
||||
Accuracy = 90
|
||||
TotalPP = 15
|
||||
Target = NearOther
|
||||
FunctionCode = 0CF
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user traps the target in a cage of sparking electricity for four to five turns.
|
||||
#-------------------------------
|
||||
[DRAGONENERGY]
|
||||
Name = Dragon Energy
|
||||
Type = DRAGON
|
||||
Category = Special
|
||||
BaseDamage = 150
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = AllNearFoes
|
||||
FunctionCode = 08B
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = Converting its life-force into power, the user attacks opposing Pokémon. The lower the user's HP, the lower the move's power.
|
||||
#-------------------------------
|
||||
[FREEZINGGLARE]
|
||||
Name = Freezing Glare
|
||||
Type = PSYCHIC
|
||||
Category = Special
|
||||
BaseDamage = 90
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 00C
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
EffectChance = 10
|
||||
Description = The user shoots its psychic power from its eyes to attack. This may also leave the target frozen.
|
||||
#-------------------------------
|
||||
[FIERYWRATH]
|
||||
Name = Fiery Wrath
|
||||
Type = DARK
|
||||
Category = Special
|
||||
BaseDamage = 90
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = AllNearFoes
|
||||
FunctionCode = 00F
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
EffectChance = 20
|
||||
Description = The user transforms its wrath into a fire-like aura to attack. This may also make opposing Pokémon flinch.
|
||||
#-------------------------------
|
||||
[THUNDEROUSKICK]
|
||||
Name = Thunderous Kick
|
||||
Type = FIGHTING
|
||||
Category = Physical
|
||||
BaseDamage = 90
|
||||
Accuracy = 100
|
||||
TotalPP = 10
|
||||
Target = NearOther
|
||||
FunctionCode = 043
|
||||
Flags = Contact,CanProtect,CanMirrorMove
|
||||
EffectChance = 100
|
||||
Description = The user overwhelms the target with lightning-like movement before delivering a kick. This also lowers the target's Defense stat.
|
||||
#-------------------------------
|
||||
[GLACIALLANCE]
|
||||
Name = Glacial Lance
|
||||
Type = ICE
|
||||
Category = Physical
|
||||
BaseDamage = 130
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = AllNearFoes
|
||||
FunctionCode = 000
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks by hurling a blizzard-cloaked icicle lance at opposing Pokémon.
|
||||
#-------------------------------
|
||||
[ASTRALBARRAGE]
|
||||
Name = Astral Barrage
|
||||
Type = GHOST
|
||||
Category = Special
|
||||
BaseDamage = 120
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = AllNearFoes
|
||||
FunctionCode = 000
|
||||
Flags = CanProtect,CanMirrorMove
|
||||
Description = The user attacks by sending a frightful amount of small ghosts at opposing Pokémon.
|
||||
#-------------------------------
|
||||
[EERIESPELL]
|
||||
Name = Eerie Spell
|
||||
Type = PSYCHIC
|
||||
Category = Special
|
||||
BaseDamage = 80
|
||||
Accuracy = 100
|
||||
TotalPP = 5
|
||||
Target = NearOther
|
||||
FunctionCode = 195
|
||||
Flags = CanProtect,CanMirrorMove,Sound
|
||||
Description = The user attacks with its tremendous psychic power. This also removes 3 PP from the target's last move.
|
||||
|
||||
5552
PBS/pokemon.txt
5552
PBS/pokemon.txt
File diff suppressed because it is too large
Load Diff
@@ -210,6 +210,21 @@ Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Train
|
||||
Generation = 7
|
||||
Evolutions = PERSIAN,Happiness,
|
||||
#-------------------------------
|
||||
[MEOWTH,2]
|
||||
FormName = Galarian
|
||||
Type1 = STEEL
|
||||
BaseStats = 50,65,55,40,40,40
|
||||
Abilities = PICKUP,TOUGHCLAWS
|
||||
Moves = 1,FAKEOUT,1,GROWL,4,HONECLAWS,8,SCRATCH,12,PAYDAY,16,METALCLAW,20,TAUNT,24,SWAGGER,29,FURYSWIPES,32,SCREECH,36,SLASH,40,METALSOUND,44,THRASH
|
||||
TutorMoves = AMNESIA,ASSURANCE,ATTRACT,BODYSLAM,CRUNCH,DARKPULSE,DIG,ENDURE,FACADE,FOULPLAY,GUNKSHOT,GYROBALL,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASHOUT,NASTYPLOT,PAYBACK,PAYDAY,PLAYROUGH,PROTECT,RAINDANCE,REST,RETALIATE,ROUND,SCREECH,SEEDBOMB,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNORE,STEELBEAM,SUBSTITUTE,SUNNYDAY,SWORDSDANCE,TAUNT,THIEF,THROATCHOP,THUNDER,THUNDERBOLT,UPROAR,UTURN,WORKUP
|
||||
EggMoves = COVET,CURSE,DOUBLEEDGE,FLAIL,NIGHTSLASH,SPITE
|
||||
Weight = 7.5
|
||||
Color = Brown
|
||||
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.
|
||||
Generation = 8
|
||||
Evolutions = PERRSERKER,Level,28
|
||||
#-------------------------------
|
||||
[PERSIAN,1]
|
||||
FormName = Alolan
|
||||
Type1 = DARK
|
||||
@@ -278,7 +293,57 @@ Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired
|
||||
Generation = 7
|
||||
WildItemCommon = CELLBATTERY
|
||||
#-------------------------------
|
||||
[PONYTA,1]
|
||||
FormName = Galarian
|
||||
Type1 = PSYCHIC
|
||||
Abilities = RUNAWAY,PASTELVEIL
|
||||
HiddenAbilities = ANTICIPATION
|
||||
Moves = 1,TACKLE,1,GROWL,5,TAILWHIP,10,CONFUSION,15,FAIRYWIND,20,AGILITY,25,PSYBEAM,30,STOMP,35,HEALPULSE,41,TAKEDOWN,45,DAZZLINGGLEAM,50,PSYCHIC,55,HEALINGWISH
|
||||
TutorMoves = AGILITY,ALLYSWITCH,ATTRACT,BODYSLAM,BOUNCE,CALMMIND,CHARM,DAZZLINGGLEAM,ENDURE,EXPANDINGFORCE,FACADE,FUTURESIGHT,HIGHHORSEPOWER,IMPRISON,IRONTAIL,LOWKICK,MYSTICALFIRE,PLAYROUGH,PROTECT,PSYCHIC,REST,ROUND,SLEEPTALK,SNORE,STOREDPOWER,SUBSTITUTE,SWIFT,WILDCHARGE,ZENHEADBUTT
|
||||
Height = 0.8
|
||||
Weight = 24.0
|
||||
Color = White
|
||||
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.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[RAPIDASH,1]
|
||||
FormName = Galarian
|
||||
Type1 = PSYCHIC
|
||||
Type2 = FAIRY
|
||||
Abilities = RUNAWAY,PASTELVEIL
|
||||
HiddenAbilities = ANTICIPATION
|
||||
Moves = 0,PSYCHOCUT,1,PSYCHOCUT,1,MEGAHORN,1,TACKLE,1,QUICKATTACK,1,GROWL,1,TAILWHIP,1,CONFUSION,15,FAIRYWIND,20,AGILITY,25,PSYBEAM,30,STOMP,35,HEALPULSE,43,TAKEDOWN,49,DAZZLINGGLEAM,56,PSYCHIC,63,HEALINGWISH
|
||||
TutorMoves = AGILITY,ALLYSWITCH,ATTRACT,BATONPASS,BODYSLAM,BOUNCE,CALMMIND,CHARM,DAZZLINGGLEAM,DRILLRUN,ENDURE,EXPANDINGFORCE,FACADE,FUTURESIGHT,GIGAIMPACT,HIGHHORSEPOWER,HYPERBEAM,IMPRISON,IRONTAIL,LOWKICK,MAGICROOM,MEGAHORN,MISTYTERRAIN,MYSTICALFIRE,PAYDAY,PLAYROUGH,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYCHOCUT,REST,ROUND,SLEEPTALK,SMARTSTRIKE,SNORE,STOREDPOWER,SUBSTITUTE,SWIFT,SWORDSDANCE,THROATCHOP,TRICKROOM,WILDCHARGE,WONDERROOM,ZENHEADBUTT
|
||||
Weight = 80.0
|
||||
Color = White
|
||||
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.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[SLOWPOKE,1]
|
||||
FormName = Galarian
|
||||
Type1 = PSYCHIC
|
||||
Abilities = GLUTTONY,OWNTEMPO
|
||||
Moves = 1,TACKLE,1,CURSE,3,GROWL,6,ACID,9,YAWN,12,CONFUSION,15,DISABLE,18,WATERPULSE,21,HEADBUTT,24,ZENHEADBUTT,27,AMNESIA,30,SURF,33,SLACKOFF,36,PSYCHIC,39,PSYCHUP,42,RAINDANCE,45,HEALPULSE
|
||||
TutorMoves = AMNESIA,ATTRACT,BLIZZARD,BODYSLAM,BRINE,BULLDOZE,CALMMIND,DIG,DIVE,EARTHQUAKE,ENDURE,EXPANDINGFORCE,FACADE,FIREBLAST,FLAMETHROWER,FOULPLAY,FUTURESIGHT,GRASSKNOT,HAIL,HYDROPUMP,ICEBEAM,ICYWIND,IMPRISON,IRONTAIL,LIGHTSCREEN,LIQUIDATION,MUDSHOT,PAYDAY,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,RAINDANCE,REST,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SURF,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.
|
||||
Generation = 8
|
||||
Evolutions = SLOWBRO,Item,GALARICACUFF,SLOWKING,Item,GALARICAWREATH
|
||||
#-------------------------------
|
||||
[SLOWBRO,1]
|
||||
FormName = Galarian
|
||||
Type1 = POISON
|
||||
Type2 = PSYCHIC
|
||||
BaseStats = 95,100,95,30,100,70
|
||||
Abilities = QUICKDRAW,OWNTEMPO
|
||||
Moves = 0,SHELLSIDEARM,1,SHELLSIDEARM,1,WITHDRAW,1,TACKLE,1,CURSE,1,GROWL,1,ACID,9,YAWN,12,CONFUSION,15,DISABLE,18,WATERPULSE,21,HEADBUTT,24,ZENHEADBUTT,27,AMNESIA,30,SURF,33,SLACKOFF,36,PSYCHIC,39,PSYCHUP,42,RAINDANCE,45,HEALPULSE
|
||||
TutorMoves = AMNESIA,ATTRACT,AVALANCHE,BLIZZARD,BODYSLAM,BRICKBREAK,BRINE,BRUTALSWING,BULLDOZE,CALMMIND,DIG,DIVE,DRAINPUNCH,EARTHQUAKE,ENDURE,EXPANDINGFORCE,FACADE,FIREBLAST,FLAMETHROWER,FLING,FOCUSBLAST,FOULPLAY,FUTURESIGHT,GIGAIMPACT,GRASSKNOT,HAIL,HYDROPUMP,HYPERBEAM,ICEBEAM,ICEPUNCH,ICYWIND,IMPRISON,IRONDEFENSE,IRONTAIL,LIGHTSCREEN,LIQUIDATION,MEGAKICK,MEGAPUNCH,MUDDYWATER,MUDSHOT,NASTYPLOT,PAYDAY,POISONJAB,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,RAINDANCE,RAZORSHELL,REST,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SKILLSWAP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SNORE,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SURF,SWIFT,THUNDERWAVE,TRIATTACK,TRICK,TRICKROOM,VENOSHOCK,WEATHERBALL,WHIRLPOOL,WONDERROOM,ZENHEADBUTT
|
||||
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.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[SLOWBRO,2]
|
||||
FormName = Mega Slowbro
|
||||
MegaStone = SLOWBRONITE
|
||||
BaseStats = 95,75,180,30,130,80
|
||||
@@ -290,6 +355,21 @@ Shape = HeadArms
|
||||
Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too.
|
||||
Generation = 6
|
||||
#-------------------------------
|
||||
[FARFETCHD,1]
|
||||
FormName = Galarian
|
||||
Type1 = FIGHTING
|
||||
BaseStats = 52,95,55,55,58,62
|
||||
Abilities = STEADFAST
|
||||
HiddenAbilities = SCRAPPY
|
||||
Moves = 1,PECK,1,SANDATTACK,5,LEER,10,FURYCUTTER,15,ROCKSMASH,20,BRUTALSWING,25,DETECT,30,KNOCKOFF,35,DEFOG,40,BRICKBREAK,45,SWORDSDANCE,50,SLAM,55,LEAFBLADE,60,FINALGAMBIT,65,BRAVEBIRD
|
||||
TutorMoves = ASSURANCE,ATTRACT,BODYSLAM,BRAVEBIRD,BRICKBREAK,BRUTALSWING,CLOSECOMBAT,DUALWINGBEAT,ENDURE,FACADE,FOCUSENERGY,HELPINGHAND,LEAFBLADE,POISONJAB,PROTECT,REST,RETALIATE,REVENGE,ROUND,SLEEPTALK,SNORE,SOLARBLADE,STEELWING,SUBSTITUTE,SUNNYDAY,SUPERPOWER,SWORDSDANCE,THROATCHOP,WORKUP
|
||||
EggMoves = COUNTER,COVET,CURSE,DOUBLEEDGE,FEINT,FLAIL,NIGHTSLASH,QUICKATTACK,QUICKGUARD,SIMPLEBEAM,SKYATTACK
|
||||
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.
|
||||
Generation = 8
|
||||
WildItemCommon = LEEK
|
||||
Evolutions = SIRFETCHD,HoldItem,DIREHIT
|
||||
#-------------------------------
|
||||
[GRIMER,1]
|
||||
FormName = Alolan
|
||||
Type1 = POISON
|
||||
@@ -359,6 +439,20 @@ Color = Purple
|
||||
Pokedex = Its custom is to mourn its lost companions. Mounds of dirt by the side of the road mark the graves of the Marowak.
|
||||
Generation = 7
|
||||
#-------------------------------
|
||||
[WEEZING,1]
|
||||
FormName = Galarian
|
||||
Type1 = POISON
|
||||
Type2 = FAIRY
|
||||
HiddenAbilities = MISTYSURGE
|
||||
Moves = 0,DOUBLEHIT,1,DOUBLEHIT,1,STRANGESTEAM,1,DEFOG,1,HEATWAVE,1,SMOG,1,SMOKESCREEN,1,HAZE,1,POISONGAS,1,TACKLE,1,FAIRYWIND,1,AROMATICMIST,12,CLEARSMOG,16,ASSURANCE,20,SLUDGE,24,AROMATHERAPY,28,SELFDESTRUCT,32,SLUDGEBOMB,38,TOXIC,44,BELCH,50,EXPLOSION,56,MEMENTO,62,DESTINYBOND,68,MISTYTERRAIN
|
||||
TutorMoves = ASSURANCE,ATTRACT,BRUTALSWING,CORROSIVEGAS,DARKPULSE,DAZZLINGGLEAM,ENDURE,FACADE,FIREBLAST,FLAMETHROWER,GIGAIMPACT,GYROBALL,HEATWAVE,HYPERBEAM,MISTYEXPLOSION,MISTYTERRAIN,OVERHEAT,PAYBACK,PLAYROUGH,PROTECT,RAINDANCE,REST,ROUND,SCREECH,SELFDESTRUCT,SHADOWBALL,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SNORE,SUBSTITUTE,SUNNYDAY,TAUNT,THIEF,THUNDER,THUNDERBOLT,TOXICSPIKES,UPROAR,VENOMDRENCH,VENOSHOCK,WILLOWISP,WONDERROOM
|
||||
Height = 3.0
|
||||
Weight = 16.0
|
||||
Color = Gray
|
||||
Pokedex = This Pokémon consumes particles that contaminate the air. Instead of leaving droppings, it expels clean air.
|
||||
Generation = 8
|
||||
WildItemUncommon = MISTYSEED
|
||||
#-------------------------------
|
||||
[KANGASKHAN,1]
|
||||
FormName = Mega Kangaskhan
|
||||
MegaStone = KANGASKHANITE
|
||||
@@ -369,6 +463,24 @@ Weight = 100.0
|
||||
Pokedex = The explosive energy the child is bathed in causes temporary growth. The mother is beside herself with worry about it.
|
||||
Generation = 6
|
||||
#-------------------------------
|
||||
[MRMIME,1]
|
||||
FormName = Galarian
|
||||
Type1 = ICE
|
||||
Type2 = PSYCHIC
|
||||
BaseStats = 50,65,65,100,90,90
|
||||
EVs = 0,0,0,2,0,0
|
||||
Abilities = VITALSPIRIT,SCREENCLEANER
|
||||
HiddenAbilities = ICEBODY
|
||||
Moves = 1,COPYCAT,1,ENCORE,1,ROLEPLAY,1,PROTECT,1,RECYCLE,1,MIMIC,1,LIGHTSCREEN,1,REFLECT,1,SAFEGUARD,1,DAZZLINGGLEAM,1,MISTYTERRAIN,1,POUND,1,RAPIDSPIN,1,BATONPASS,1,ICESHARD,12,CONFUSION,16,ALLYSWITCH,20,ICYWIND,24,DOUBLEKICK,28,PSYBEAM,32,HYPNOSIS,36,MIRRORCOAT,40,SUCKERPUNCH,44,FREEZEDRY,48,PSYCHIC,52,TEETERDANCE
|
||||
TutorMoves = ALLYSWITCH,ATTRACT,AVALANCHE,BATONPASS,BLIZZARD,BODYSLAM,BRICKBREAK,CALMMIND,CHARM,DAZZLINGGLEAM,DRAINPUNCH,ENCORE,ENDURE,ENERGYBALL,EXPANDINGFORCE,FACADE,FLING,FOCUSBLAST,FOULPLAY,FUTURESIGHT,GIGAIMPACT,GRASSKNOT,GUARDSWAP,HAIL,HELPINGHAND,HYPERBEAM,ICEBEAM,ICEPUNCH,ICICLESPEAR,ICYWIND,IRONDEFENSE,LIGHTSCREEN,MAGICROOM,MEGAKICK,MEGAPUNCH,METRONOME,MISTYTERRAIN,NASTYPLOT,PAYBACK,POWERSWAP,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,RAINDANCE,REFLECT,REST,ROUND,SAFEGUARD,SCREECH,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNORE,SOLARBEAM,STOMPINGTANTRUM,STOREDPOWER,SUBSTITUTE,SUNNYDAY,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERWAVE,TRICK,TRICKROOM,TRIPLEAXEL,UPROAR,WONDERROOM,ZENHEADBUTT
|
||||
Height = 1.4
|
||||
Weight = 56.8
|
||||
Color = White
|
||||
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.
|
||||
Generation = 8
|
||||
Evolutions = MRRIME,Level,42
|
||||
#-------------------------------
|
||||
[PINSIR,1]
|
||||
FormName = Mega Pinsir
|
||||
MegaStone = PINSIRITE
|
||||
@@ -406,6 +518,53 @@ Weight = 79.0
|
||||
Pokedex = When it Mega Evolves, it becomes more vicious than ever before. Some say that's because its excess of power is causing it pain.
|
||||
Generation = 6
|
||||
#-------------------------------
|
||||
[ARTICUNO,1]
|
||||
FormName = Galarian
|
||||
Type1 = PSYCHIC
|
||||
Type2 = FLYING
|
||||
BaseStats = 90,85,85,95,125,100
|
||||
EVs = 0,0,0,0,3,0
|
||||
Abilities = COMPETITIVE
|
||||
HiddenAbilities = COMPETITIVE
|
||||
Moves = 1,GUST,1,PSYCHOSHIFT,5,CONFUSION,10,REFLECT,15,HYPNOSIS,20,AGILITY,25,ANCIENTPOWER,30,TAILWIND,35,PSYCHOCUT,40,RECOVER,45,FREEZINGGLARE,50,DREAMEATER,55,HURRICANE,60,MINDREADER,65,FUTURESIGHT,70,TRICKROOM
|
||||
TutorMoves = AGILITY,AIRSLASH,ALLYSWITCH,BRAVEBIRD,CALMMIND,DUALWINGBEAT,ENDURE,EXPANDINGFORCE,FACADE,FLY,FUTURESIGHT,GIGAIMPACT,GUARDSWAP,HURRICANE,HYPERBEAM,HYPERVOICE,IMPRISON,LIGHTSCREEN,POWERSWAP,PROTECT,PSYCHIC,PSYCHOCUT,PSYSHOCK,REFLECT,REST,ROUND,SCARYFACE,SLEEPTALK,SHADOWBALL,SKILLSWAP,SNORE,STEELWING,STOREDPOWER,SUBSTITUTE,SWIFT,TRICKROOM,UTURN
|
||||
Weight = 50.9
|
||||
Color = Purple
|
||||
Category = Cruel
|
||||
Pokedex = Its feather-like blades are composed of psychic energy and can shear through thick iron sheets as if they were paper.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[ZAPDOS,1]
|
||||
FormName = Galarian
|
||||
Type1 = FIGHTING
|
||||
Type2 = FLYING
|
||||
BaseStats = 90,125,90,100,85,90
|
||||
EVs = 0,3,0,0,0,0
|
||||
Abilities = DEFIANT
|
||||
HiddenAbilities = DEFIANT
|
||||
Moves = 1,PECK,1,FOCUSENERGY,5,ROCKSMASH,10,LIGHTSCREEN,15,PLUCK,20,AGILITY,25,ANCIENTPOWER,30,BRICKBREAK,35,DRILLPECK,40,QUICKGUARD,45,THUNDEROUSKICK,50,BULKUP,55,COUNTER,60,DETECT,65,CLOSECOMBAT,70,REVERSAL
|
||||
TutorMoves = ACROBATICS,AGILITY,ASSURANCE,BLAZEKICK,BOUNCE,BRAVEBIRD,BRICKBREAK,BULKUP,CLOSECOMBAT,COACHING,DUALWINGBEAT,ENDURE,FACADE,FLY,FOCUSENERGY,GIGAIMPACT,HURRICANE,HYPERBEAM,LIGHTSCREEN,LOWKICK,LOWSWEEP,MEGAKICK,PAYBACK,PROTECT,REST,RETALIATE,REVENGE,REVERSAL,ROUND,SCARYFACE,SCREECH,SLEEPTALK,SNORE,STEELWING,STOMPINGTANTRUM,SUBSTITUTE,SUPERPOWER,SWIFT,TAUNT,THROATCHOP,UTURN
|
||||
Weight = 58.2
|
||||
Category = Strong Legs
|
||||
Pokedex = When its feathers rub together, they produce a crackling sound like the zapping of electricity. That's why this Pokémon is called Zapdos.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[MOLTRES,1]
|
||||
FormName = Galarian
|
||||
Type1 = DARK
|
||||
Type2 = FLYING
|
||||
BaseStats = 90,85,90,90,100,125
|
||||
EVs = 0,0,0,0,0,3
|
||||
Abilities = BERSERK
|
||||
HiddenAbilities = BERSERK
|
||||
Moves = 1,GUST,1,LEER,5,PAYBACK,10,SAFEGUARD,15,WINGATTACK,20,AGILITY,25,ANCIENTPOWER,30,SUCKERPUNCH,35,AIRSLASH,40,AFTERYOU,45,FIERYWRATH,50,NASTYPLOT,55,HURRICANE,60,ENDURE,65,MEMENTO,70,SKYATTACK
|
||||
TutorMoves = AGILITY,AIRSLASH,ASSURANCE,BRAVEBIRD,DARKPULSE,DUALWINGBEAT,ENDURE,FACADE,FLY,FOULPLAY,GIGAIMPACT,HEX,HURRICANE,HYPERBEAM,HYPERVOICE,IMPRISON,LASHOUT,NASTYPLOT,PAYBACK,PROTECT,REST,ROUND,SAFEGUARD,SCARYFACE,SHADOWBALL,SLEEPTALK,SNARL,SNORE,STEELWING,SUBSTITUTE,SWIFT,TAUNT,UTURN
|
||||
Weight = 66.0
|
||||
Color = Red
|
||||
Category = Malevolent
|
||||
Pokedex = This Pokémon's sinister, flame-like aura will consume the spirit of any creature it hits. Victims become burned-out shadows of themselves.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[MEWTWO,1]
|
||||
FormName = Mega Mewtwo X
|
||||
MegaStone = MEWTWONITEX
|
||||
@@ -447,6 +606,19 @@ HiddenAbilities = MOLDBREAKER
|
||||
Pokedex = Massive amounts of energy intensely stimulated Ampharos's cells, apparently awakening its long-sleeping dragon's blood.
|
||||
Generation = 6
|
||||
#-------------------------------
|
||||
[SLOWKING,1]
|
||||
FormName = Galarian
|
||||
Type1 = POISON
|
||||
Type2 = PSYCHIC
|
||||
BaseStats = 95,65,80,30,110,110
|
||||
Abilities = CURIOUSMEDICINE,OWNTEMPO
|
||||
Moves = 0,EERIESPELL,1,EERIESPELL,1,POWERGEM,1,NASTYPLOT,1,SWAGGER,1,TACKLE,1,CURSE,1,GROWL,1,ACID,9,YAWN,12,CONFUSION,15,DISABLE,18,WATERPULSE,21,HEADBUTT,24,ZENHEADBUTT,27,AMNESIA,30,SURF,33,SLACKOFF,36,PSYCHIC,39,PSYCHUP,42,RAINDANCE,45,HEALPULSE
|
||||
TutorMoves = AMNESIA,ATTRACT,AVALANCHE,BLIZZARD,BODYSLAM,BRICKBREAK,BRINE,BULLDOZE,CALMMIND,DIG,DIVE,DRAINPUNCH,EARTHQUAKE,ENDURE,EXPANDINGFORCE,FACADE,FIREBLAST,FLAMETHROWER,FLING,FOCUSBLAST,FOULPLAY,FUTURESIGHT,GIGAIMPACT,GRASSKNOT,HAIL,HEX,HYDROPUMP,HYPERBEAM,ICEBEAM,ICEPUNCH,ICYWIND,IMPRISON,IRONDEFENSE,IRONTAIL,LIGHTSCREEN,LIQUIDATION,MEGAKICK,MEGAPUNCH,MUDDYWATER,MUDSHOT,NASTYPLOT,PAYDAY,POWERGEM,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,RAINDANCE,RAZORSHELL,REST,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SKILLSWAP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SNORE,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SURF,SWIFT,THUNDERWAVE,TRIATTACK,TRICK,TRICKROOM,VENOMDRENCH,VENOSHOCK,WEATHERBALL,WHIRLPOOL,WONDERROOM,ZENHEADBUTT
|
||||
Height = 1.8
|
||||
Category = Hexpert
|
||||
Pokedex = While chanting strange spells, this Pokémon combines its internal toxins with what it's eaten, creating strange potions.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[UNOWN,1]
|
||||
FormName = B
|
||||
#-------------------------------
|
||||
@@ -562,6 +734,21 @@ Weight = 62.5
|
||||
Pokedex = A tremendous influx of energy builds it up, but when Mega Evolution ends, Heracross is bothered by terrible soreness in its muscles.
|
||||
Generation = 6
|
||||
#-------------------------------
|
||||
[CORSOLA,1]
|
||||
FormName = Galarian
|
||||
Type1 = GHOST
|
||||
BaseStats = 60,55,100,30,65,100
|
||||
Abilities = WEAKARMOR
|
||||
HiddenAbilities = CURSEDBODY
|
||||
Moves = 1,TACKLE,1,HARDEN,5,ASTONISH,10,DISABLE,15,SPITE,20,ANCIENTPOWER,25,HEX,30,CURSE,35,STRENGTHSAP,40,POWERGEM,45,NIGHTSHADE,50,GRUDGE,55,MIRRORCOAT
|
||||
TutorMoves = AMNESIA,ATTRACT,BLIZZARD,BODYSLAM,BRINE,BULLDOZE,CALMMIND,DIG,EARTHPOWER,EARTHQUAKE,ENDURE,FACADE,GIGADRAIN,HAIL,HEX,HYDROPUMP,ICEBEAM,ICICLESPEAR,ICYWIND,IRONDEFENSE,LIGHTSCREEN,LIQUIDATION,METEORBEAM,POWERGEM,PROTECT,PSYCHIC,RAINDANCE,REFLECT,REST,ROCKBLAST,ROCKSLIDE,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SCALD,SCREECH,SELFDESTRUCT,SHADOWBALL,SLEEPTALK,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SUNNYDAY,SURF,THROATCHOP,WHIRLPOOL,WILLOWISP
|
||||
EggMoves = CONFUSERAY,DESTINYBOND,HAZE,HEADSMASH,NATUREPOWER,WATERPULSE
|
||||
Weight = 0.5
|
||||
Color = White
|
||||
Pokedex = Sudden climate change wiped out this ancient kind of Corsola. This Pokémon absorbs others' life-force through its branches.
|
||||
Generation = 8
|
||||
Evolutions = CURSOLA,Level,38
|
||||
#-------------------------------
|
||||
[HOUNDOOM,1]
|
||||
FormName = Mega Houndoom
|
||||
MegaStone = HOUNDOOMINITE
|
||||
@@ -612,6 +799,27 @@ Height = 1.9
|
||||
Weight = 102.0
|
||||
Generation = 6
|
||||
#-------------------------------
|
||||
[ZIGZAGOON,1]
|
||||
FormName = Galarian
|
||||
Type1 = DARK
|
||||
Type2 = NORMAL
|
||||
Moves = 1,TACKLE,1,LEER,3,SANDATTACK,6,LICK,9,SNARL,12,HEADBUTT,15,BABYDOLLEYES,18,PINMISSILE,21,REST,24,TAKEDOWN,27,SCARYFACE,30,COUNTER,33,TAUNT,36,DOUBLEEDGE
|
||||
TutorMoves = ASSURANCE,ATTRACT,BLIZZARD,BODYSLAM,DIG,ENDURE,FACADE,FAKETEARS,FLING,GRASSKNOT,GUNKSHOT,HELPINGHAND,HYPERVOICE,ICEBEAM,ICYWIND,IRONTAIL,LASHOUT,MUDSHOT,PAYBACK,PINMISSILE,PROTECT,RAINDANCE,REST,RETALIATE,ROUND,SCARYFACE,SCREECH,SEEDBOMB,SHADOWBALL,SLEEPTALK,SNARL,SNORE,SUBSTITUTE,SUNNYDAY,SURF,SWIFT,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERWAVE,TRICK,WHIRLPOOL,WORKUP
|
||||
EggMoves = KNOCKOFF,PARTINGSHOT,QUICKGUARD
|
||||
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.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[LINOONE,1]
|
||||
FormName = Galarian
|
||||
Type1 = DARK
|
||||
Type2 = NORMAL
|
||||
Moves = 0,NIGHTSLASH,1,NIGHTSLASH,1,SWITCHEROO,1,PINMISSILE,1,BABYDOLLEYES,1,TACKLE,1,LEER,1,SANDATTACK,1,LICK,9,SNARL,12,HEADBUTT,15,HONECLAWS,18,FURYSWIPES,23,REST,28,TAKEDOWN,33,SCARYFACE,38,COUNTER,43,TAUNT,48,DOUBLEEDGE
|
||||
TutorMoves = ASSURANCE,ATTRACT,BLIZZARD,BODYPRESS,BODYSLAM,DIG,ENDURE,FACADE,FAKETEARS,FLING,GIGAIMPACT,GRASSKNOT,GUNKSHOT,HELPINGHAND,HYPERBEAM,HYPERVOICE,ICEBEAM,ICYWIND,IRONTAIL,LASHOUT,MUDSHOT,PAYBACK,PINMISSILE,PROTECT,RAINDANCE,REST,RETALIATE,ROUND,SCARYFACE,SCREECH,SEEDBOMB,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNARL,SNORE,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SURF,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.
|
||||
Generation = 8
|
||||
Evolutions = OBSTAGOON,LevelNight,35
|
||||
#-------------------------------
|
||||
[GARDEVOIR,1]
|
||||
FormName = Mega Gardevoir
|
||||
MegaStone = GARDEVOIRITE
|
||||
@@ -1125,6 +1333,19 @@ Abilities = ROCKHEAD,ADAPTABILITY
|
||||
Pokedex = Even Basculin, which devours everything it can with its huge jaws, is nothing more than food to organisms stronger than itself.
|
||||
WildItemUncommon = DEEPSEASCALE
|
||||
#-------------------------------
|
||||
[DARUMAKA,2]
|
||||
FormName = Galarian
|
||||
Type1 = ICE
|
||||
Moves = 1,POWDERSNOW,1,TACKLE,4,TAUNT,8,BITE,12,AVALANCHE,16,WORKUP,20,ICEFANG,24,HEADBUTT,28,ICEPUNCH,32,UPROAR,36,BELLYDRUM,40,BLIZZARD,44,THRASH,48,SUPERPOWER
|
||||
TutorMoves = ATTRACT,AVALANCHE,BLIZZARD,BRICKBREAK,DIG,ENCORE,ENDURE,FACADE,FIREBLAST,FIREFANG,FIREPUNCH,FIRESPIN,FLAMETHROWER,FLAREBLITZ,FLING,FOCUSENERGY,GRASSKNOT,GYROBALL,HEATWAVE,ICEBEAM,ICEFANG,ICEPUNCH,MEGAKICK,MEGAPUNCH,OVERHEAT,PROTECT,REST,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNORE,SOLARBEAM,SUBSTITUTE,SUNNYDAY,SUPERPOWER,TAUNT,THIEF,UPROAR,UTURN,WILLOWISP,WORKUP,ZENHEADBUTT
|
||||
EggMoves = FLAMEWHEEL,FOCUSPUNCH,FREEZEDRY,HAMMERARM,INCINERATE,POWERUPPUNCH,TAKEDOWN,YAWN
|
||||
Height = 0.7
|
||||
Weight = 40.0
|
||||
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.
|
||||
Generation = 8
|
||||
Evolutions = DARMANITAN,Item,ICESTONE
|
||||
#-------------------------------
|
||||
[DARMANITAN,1]
|
||||
FormName = Zen Mode
|
||||
Type1 = FIRE
|
||||
@@ -1137,6 +1358,46 @@ BattlerPlayerX = 1
|
||||
BattlerEnemyY = 30
|
||||
BattlerShadowSize = 2
|
||||
#-------------------------------
|
||||
[DARMANITAN,2]
|
||||
FormName = Galarian
|
||||
Type1 = ICE
|
||||
Abilities = GORILLATACTICS
|
||||
Moves = 0,ICICLECRASH,1,ICICLECRASH,1,POWDERSNOW,1,TACKLE,1,TAUNT,1,BITE,12,AVALANCHE,16,WORKUP,20,ICEFANG,24,HEADBUTT,28,ICEPUNCH,32,UPROAR,38,BELLYDRUM,44,BLIZZARD,50,THRASH,56,SUPERPOWER
|
||||
TutorMoves = ATTRACT,AVALANCHE,BLIZZARD,BODYPRESS,BODYSLAM,BRICKBREAK,BULKUP,BULLDOZE,BURNINGJEALOUSY,DIG,EARTHQUAKE,ENCORE,ENDURE,FACADE,FIREBLAST,FIREFANG,FIREPUNCH,FIRESPIN,FLAMETHROWER,FLAREBLITZ,FLING,FOCUSBLAST,FOCUSENERGY,GIGAIMPACT,GRASSKNOT,GYROBALL,HEATWAVE,HYPERBEAM,ICEBEAM,ICEFANG,ICEPUNCH,IRONDEFENSE,IRONHEAD,LASHOUT,MEGAKICK,MEGAPUNCH,OVERHEAT,PAYBACK,PROTECT,PSYCHIC,REST,REVERSAL,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNORE,SOLARBEAM,STONEEDGE,SUBSTITUTE,SUNNYDAY,SUPERPOWER,TAUNT,THIEF,UPROAR,UTURN,WILLOWISP,WORKUP,ZENHEADBUTT
|
||||
Height = 1.7
|
||||
Weight = 120.0
|
||||
Color = White
|
||||
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.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[DARMANITAN,3]
|
||||
FormName = Galarian
|
||||
Type1 = ICE
|
||||
Type2 = FIRE
|
||||
BaseStats = 105,160,55,135,30,55
|
||||
EVs = 0,0,0,0,2,0
|
||||
Abilities = GORILLATACTICS
|
||||
Moves = 0,ICICLECRASH,1,ICICLECRASH,1,POWDERSNOW,1,TACKLE,1,TAUNT,1,BITE,12,AVALANCHE,16,WORKUP,20,ICEFANG,24,HEADBUTT,28,ICEPUNCH,32,UPROAR,38,BELLYDRUM,44,BLIZZARD,50,THRASH,56,SUPERPOWER
|
||||
TutorMoves = ATTRACT,AVALANCHE,BLIZZARD,BODYPRESS,BODYSLAM,BRICKBREAK,BULKUP,BULLDOZE,BURNINGJEALOUSY,DIG,EARTHQUAKE,ENCORE,ENDURE,FACADE,FIREBLAST,FIREFANG,FIREPUNCH,FIRESPIN,FLAMETHROWER,FLAREBLITZ,FLING,FOCUSBLAST,FOCUSENERGY,GIGAIMPACT,GRASSKNOT,GYROBALL,HEATWAVE,HYPERBEAM,ICEBEAM,ICEFANG,ICEPUNCH,IRONDEFENSE,IRONHEAD,LASHOUT,MEGAKICK,MEGAPUNCH,OVERHEAT,PAYBACK,PROTECT,PSYCHIC,REST,REVERSAL,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNORE,SOLARBEAM,STONEEDGE,SUBSTITUTE,SUNNYDAY,SUPERPOWER,TAUNT,THIEF,UPROAR,UTURN,WILLOWISP,WORKUP,ZENHEADBUTT
|
||||
Height = 1.7
|
||||
Weight = 120.0
|
||||
Color = White
|
||||
Category = Zen Charm
|
||||
Pokedex = Anger has reignited its atrophied flame sac. This Pokémon spews fire everywhere as it rampages indiscriminately.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[YAMASK,1]
|
||||
FormName = Galarian
|
||||
Type1 = GROUND
|
||||
Type2 = GHOST
|
||||
BaseStats = 38,55,85,30,30,65
|
||||
Abilities = WANDERINGSPIRIT
|
||||
Moves = 1,ASTONISH,1,PROTECT,4,HAZE,8,NIGHTSHADE,12,DISABLE,16,BRUTALSWING,20,CRAFTYSHIELD,24,HEX,28,MEANLOOK,32,SLAM,36,CURSE,40,SHADOWBALL,44,EARTHQUAKE,48,POWERSPLIT,48,GUARDSPLIT,52,DESTINYBOND
|
||||
TutorMoves = ALLYSWITCH,ATTRACT,BRUTALSWING,CALMMIND,DARKPULSE,EARTHPOWER,EARTHQUAKE,ENDURE,ENERGYBALL,FACADE,FAKETEARS,HEX,IMPRISON,IRONDEFENSE,NASTYPLOT,PAYBACK,POLTERGEIST,PROTECT,PSYCHIC,RAINDANCE,REST,ROCKSLIDE,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SHADOWBALL,SLEEPTALK,SNORE,SUBSTITUTE,THIEF,TOXICSPIKES,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.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[DEERLING,1]
|
||||
FormName = Summer Form
|
||||
Color = Green
|
||||
@@ -1158,6 +1419,21 @@ FormName = Autumn Form
|
||||
[SAWSBUCK,3]
|
||||
FormName = Winter Form
|
||||
#-------------------------------
|
||||
[STUNFISK,1]
|
||||
FormName = Galarian
|
||||
Type1 = GROUND
|
||||
Type2 = STEEL
|
||||
BaseStats = 109,81,99,32,66,84
|
||||
Abilities = MIMICRY
|
||||
HiddenAbilities = MIMICRY
|
||||
Moves = 1,MUDSLAP,1,TACKLE,1,WATERGUN,1,METALCLAW,5,ENDURE,10,MUDSHOT,15,REVENGE,20,METALSOUND,25,SUCKERPUNCH,30,IRONDEFENSE,35,BOUNCE,40,MUDDYWATER,45,SNAPTRAP,50,FLAIL,55,FISSURE
|
||||
TutorMoves = ATTRACT,BOUNCE,BULLDOZE,CRUNCH,DIG,EARTHPOWER,EARTHQUAKE,ENDURE,FACADE,FLASHCANNON,FOULPLAY,ICEFANG,IRONDEFENSE,LASHOUT,MUDDYWATER,MUDSHOT,PAYBACK,PROTECT,RAINDANCE,REST,REVENGE,ROCKSLIDE,ROCKTOMB,ROUND,SANDSTORM,SCALD,SCREECH,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SNORE,STEALTHROCK,STEELBEAM,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SURF,TERRAINPULSE,THUNDERWAVE,UPROAR
|
||||
EggMoves = ASTONISH,BIND,COUNTER,CURSE,PAINSPLIT,REFLECTTYPE,SPITE,YAWN
|
||||
Weight = 20.5
|
||||
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.
|
||||
Generation = 8
|
||||
#-------------------------------
|
||||
[TORNADUS,1]
|
||||
FormName = Therian Forme
|
||||
BaseStats = 79,100,80,121,110,90
|
||||
@@ -1417,7 +1693,7 @@ Color = White
|
||||
#-------------------------------
|
||||
[AEGISLASH,1]
|
||||
FormName = Blade Forme
|
||||
BaseStats = 60,150,50,60,150,50
|
||||
BaseStats = 60,140,50,60,140,50
|
||||
EVs = 0,2,0,0,1,0
|
||||
#-------------------------------
|
||||
[PUMPKABOO,1]
|
||||
@@ -1483,6 +1759,7 @@ Generation = 7
|
||||
FormName = Complete Forme
|
||||
BaseStats = 216,100,121,85,91,95
|
||||
Abilities = POWERCONSTRUCT
|
||||
HiddenAbilities = POWERCONSTRUCT
|
||||
Height = 4.5
|
||||
Weight = 610.0
|
||||
Color = Black
|
||||
@@ -1494,6 +1771,7 @@ Generation = 7
|
||||
PokedexForm = 2
|
||||
BaseStats = 216,100,121,85,91,95
|
||||
Abilities = POWERCONSTRUCT
|
||||
HiddenAbilities = POWERCONSTRUCT
|
||||
Height = 4.5
|
||||
Weight = 610.0
|
||||
Color = Black
|
||||
@@ -1754,3 +2032,285 @@ Color = Yellow
|
||||
FormName = Original Color
|
||||
Color = Red
|
||||
Pokedex = This gorgeous Magearna looks as it did at the time of its invention. Its luxurious decoration pleased the king's daughter.
|
||||
#-------------------------------
|
||||
[CRAMORANT,1]
|
||||
FormName = Gulping Form
|
||||
Pokedex = Cramorant's gluttony led it to try to swallow an Arrokuda whole, which in turn led to Cramorant getting an Arrokuda stuck in its throat.
|
||||
#-------------------------------
|
||||
[CRAMORANT,2]
|
||||
FormName = Gorging Form
|
||||
Pokedex = This Cramorant has accidentally gotten a Pikachu lodged in its gullet. Cramorant is choking a little, but it isn't really bothered.
|
||||
#-------------------------------
|
||||
[TOXTRICITY,1]
|
||||
FormName = Low Key Form
|
||||
Abilities = PUNKROCK,MINUS
|
||||
Moves = 0,SPARK,1,SPARK,1,EERIEIMPULSE,1,BELCH,1,TEARFULLOOK,1,NUZZLE,1,GROWL,1,FLAIL,1,ACID,1,THUNDERSHOCK,1,ACIDSPRAY,1,LEER,1,NOBLEROAR,4,CHARGE,8,SHOCKWAVE,12,SCARYFACE,16,TAUNT,20,VENOMDRENCH,24,SCREECH,28,SWAGGER,32,TOXIC,36,DISCHARGE,40,POISONJAB,44,OVERDRIVE,48,BOOMBURST,52,MAGNETICFLUX
|
||||
TutorMoves = ATTRACT,DRAINPUNCH,EERIEIMPULSE,ELECTROBALL,ENCORE,ENDURE,FACADE,FIREPUNCH,FLING,GIGAIMPACT,GUNKSHOT,HEX,HYPERBEAM,HYPERVOICE,MEGAKICK,MEGAPUNCH,PAYBACK,POISONJAB,PROTECT,REST,RISINGVOLTAGE,ROUND,SCARYFACE,SCREECH,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SNARL,SNORE,STOREDPOWER,SUBSTITUTE,SWIFT,TAUNT,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,UPROAR,VENOMDRENCH,VOLTSWITCH,WILDCHARGE
|
||||
Pokedex = Capable of generating 15,000 volts of electricity, this Pokémon looks down on all that would challenge it.
|
||||
#-------------------------------
|
||||
[SINISTEA,1]
|
||||
FormName = Antique Form
|
||||
Pokedex = The swirl pattern in this Pokémon's body is its weakness. If it gets stirred, the swirl loses its shape, and Sinistea gets dizzy.
|
||||
Evolutions = POLTEAGEIST,Item,CHIPPEDPOT
|
||||
#-------------------------------
|
||||
[POLTEAGEIST,1]
|
||||
FormName = Antique Form
|
||||
Pokedex = Trainers Polteageist trusts will be allowed to experience its distinctive flavor and aroma firsthand by sampling just a tiny bit of its tea.
|
||||
#-------------------------------
|
||||
[ALCREMIE,7]
|
||||
FormName = Ruby Cream
|
||||
Pokedex = The cells that compose its cream fluctuated suddenly during evolution, giving the cream a sweet and tart flavor.
|
||||
#-------------------------------
|
||||
[ALCREMIE,8]
|
||||
PokedexForm = 7
|
||||
#-------------------------------
|
||||
[ALCREMIE,9]
|
||||
PokedexForm = 7
|
||||
#-------------------------------
|
||||
[ALCREMIE,10]
|
||||
PokedexForm = 7
|
||||
#-------------------------------
|
||||
[ALCREMIE,11]
|
||||
PokedexForm = 7
|
||||
#-------------------------------
|
||||
[ALCREMIE,12]
|
||||
PokedexForm = 7
|
||||
#-------------------------------
|
||||
[ALCREMIE,13]
|
||||
PokedexForm = 7
|
||||
#-------------------------------
|
||||
[ALCREMIE,14]
|
||||
FormName = Matcha Cream
|
||||
Color = Green
|
||||
Pokedex = The cells that compose its cream fluctuated suddenly during evolution, giving the cream an aromatic flavor.
|
||||
#-------------------------------
|
||||
[ALCREMIE,15]
|
||||
PokedexForm = 14
|
||||
#-------------------------------
|
||||
[ALCREMIE,16]
|
||||
PokedexForm = 14
|
||||
#-------------------------------
|
||||
[ALCREMIE,17]
|
||||
PokedexForm = 14
|
||||
#-------------------------------
|
||||
[ALCREMIE,18]
|
||||
PokedexForm = 14
|
||||
#-------------------------------
|
||||
[ALCREMIE,19]
|
||||
PokedexForm = 14
|
||||
#-------------------------------
|
||||
[ALCREMIE,20]
|
||||
PokedexForm = 14
|
||||
#-------------------------------
|
||||
[ALCREMIE,21]
|
||||
FormName = Mint Cream
|
||||
Color = Blue
|
||||
Pokedex = The cells that compose its cream fluctuated suddenly during evolution, giving the cream a refreshing flavor.
|
||||
#-------------------------------
|
||||
[ALCREMIE,22]
|
||||
PokedexForm = 21
|
||||
#-------------------------------
|
||||
[ALCREMIE,23]
|
||||
PokedexForm = 21
|
||||
#-------------------------------
|
||||
[ALCREMIE,24]
|
||||
PokedexForm = 21
|
||||
#-------------------------------
|
||||
[ALCREMIE,25]
|
||||
PokedexForm = 21
|
||||
#-------------------------------
|
||||
[ALCREMIE,26]
|
||||
PokedexForm = 21
|
||||
#-------------------------------
|
||||
[ALCREMIE,27]
|
||||
PokedexForm = 21
|
||||
#-------------------------------
|
||||
[ALCREMIE,28]
|
||||
FormName = Lemon Cream
|
||||
Color = Yellow
|
||||
Pokedex = The cells that compose its cream fluctuated suddenly during evolution, giving the cream a sour flavor.
|
||||
#-------------------------------
|
||||
[ALCREMIE,29]
|
||||
PokedexForm = 28
|
||||
#-------------------------------
|
||||
[ALCREMIE,30]
|
||||
PokedexForm = 28
|
||||
#-------------------------------
|
||||
[ALCREMIE,31]
|
||||
PokedexForm = 28
|
||||
#-------------------------------
|
||||
[ALCREMIE,32]
|
||||
PokedexForm = 28
|
||||
#-------------------------------
|
||||
[ALCREMIE,33]
|
||||
PokedexForm = 28
|
||||
#-------------------------------
|
||||
[ALCREMIE,34]
|
||||
PokedexForm = 28
|
||||
#-------------------------------
|
||||
[ALCREMIE,35]
|
||||
FormName = Salted Cream
|
||||
Pokedex = The cells that compose its cream fluctuated suddenly during evolution, giving the cream a salty flavor.
|
||||
#-------------------------------
|
||||
[ALCREMIE,36]
|
||||
PokedexForm = 35
|
||||
#-------------------------------
|
||||
[ALCREMIE,37]
|
||||
PokedexForm = 35
|
||||
#-------------------------------
|
||||
[ALCREMIE,38]
|
||||
PokedexForm = 35
|
||||
#-------------------------------
|
||||
[ALCREMIE,39]
|
||||
PokedexForm = 35
|
||||
#-------------------------------
|
||||
[ALCREMIE,40]
|
||||
PokedexForm = 35
|
||||
#-------------------------------
|
||||
[ALCREMIE,41]
|
||||
PokedexForm = 35
|
||||
#-------------------------------
|
||||
[ALCREMIE,42]
|
||||
FormName = Ruby Swirl
|
||||
Color = Yellow
|
||||
Pokedex = The cells that compose its cream fluctuated suddenly during evolution, giving the cream a mixed flavor.
|
||||
#-------------------------------
|
||||
[ALCREMIE,43]
|
||||
PokedexForm = 42
|
||||
#-------------------------------
|
||||
[ALCREMIE,44]
|
||||
PokedexForm = 42
|
||||
#-------------------------------
|
||||
[ALCREMIE,45]
|
||||
PokedexForm = 42
|
||||
#-------------------------------
|
||||
[ALCREMIE,46]
|
||||
PokedexForm = 42
|
||||
#-------------------------------
|
||||
[ALCREMIE,47]
|
||||
PokedexForm = 42
|
||||
#-------------------------------
|
||||
[ALCREMIE,48]
|
||||
PokedexForm = 42
|
||||
#-------------------------------
|
||||
[ALCREMIE,49]
|
||||
FormName = Caramel Swirl
|
||||
Color = Brown
|
||||
Pokedex = The cells that compose its cream fluctuated suddenly during evolution, giving the cream a bitter flavor.
|
||||
#-------------------------------
|
||||
[ALCREMIE,50]
|
||||
PokedexForm = 49
|
||||
#-------------------------------
|
||||
[ALCREMIE,51]
|
||||
PokedexForm = 49
|
||||
#-------------------------------
|
||||
[ALCREMIE,52]
|
||||
PokedexForm = 49
|
||||
#-------------------------------
|
||||
[ALCREMIE,53]
|
||||
PokedexForm = 49
|
||||
#-------------------------------
|
||||
[ALCREMIE,54]
|
||||
PokedexForm = 49
|
||||
#-------------------------------
|
||||
[ALCREMIE,55]
|
||||
PokedexForm = 49
|
||||
#-------------------------------
|
||||
[ALCREMIE,56]
|
||||
FormName = Rainbow Swirl
|
||||
Color = Yellow
|
||||
Pokedex = The cells that compose its cream fluctuated suddenly during evolution, giving the cream a complex flavor.
|
||||
#-------------------------------
|
||||
[ALCREMIE,57]
|
||||
PokedexForm = 56
|
||||
#-------------------------------
|
||||
[ALCREMIE,58]
|
||||
PokedexForm = 56
|
||||
#-------------------------------
|
||||
[ALCREMIE,59]
|
||||
PokedexForm = 56
|
||||
#-------------------------------
|
||||
[ALCREMIE,60]
|
||||
PokedexForm = 56
|
||||
#-------------------------------
|
||||
[ALCREMIE,61]
|
||||
PokedexForm = 56
|
||||
#-------------------------------
|
||||
[ALCREMIE,62]
|
||||
PokedexForm = 56
|
||||
#-------------------------------
|
||||
[EISCUE,1]
|
||||
FormName = Noice Face
|
||||
BaseStats = 75,80,70,130,65,50
|
||||
Pokedex = The ice covering this Pokémon's face has shattered, revealing a slightly worried expression that many people are enamored with.
|
||||
#-------------------------------
|
||||
[INDEEDEE,1]
|
||||
FormName = Female
|
||||
BaseStats = 70,55,65,85,95,105
|
||||
EVs = 0,0,0,0,0,2
|
||||
Abilities = OWNTEMPO,SYNCHRONIZE
|
||||
Moves = 1,STOREDPOWER,1,PLAYNICE,5,BATONPASS,10,DISARMINGVOICE,15,PSYBEAM,20,HELPINGHAND,25,FOLLOWME,30,AROMATHERAPY,35,PSYCHIC,40,CALMMIND,45,GUARDSPLIT,50,PSYCHICTERRAIN,55,HEALINGWISH
|
||||
TutorMoves = ALLYSWITCH,ATTRACT,BATONPASS,CALMMIND,DAZZLINGGLEAM,DRAININGKISS,DRAINPUNCH,ENDURE,ENERGYBALL,EXPANDINGFORCE,FACADE,FUTURESIGHT,GUARDSWAP,HELPINGHAND,HYPERVOICE,IMPRISON,LIGHTSCREEN,MAGICALLEAF,METRONOME,MYSTICALFIRE,PAYDAY,PLAYROUGH,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,REFLECT,REST,ROUND,SAFEGUARD,SHADOWBALL,SLEEPTALK,SNORE,STOREDPOWER,SUBSTITUTE,SWIFT,TERRAINPULSE,TRICK,ZENHEADBUTT
|
||||
EggMoves = FAKEOUT,HEALPULSE,PSYCHUP,PSYCHOSHIFT
|
||||
Pokedex = They diligently serve people and Pokémon so they can gather feelings of gratitude. The females are particularly good at babysitting.
|
||||
#-------------------------------
|
||||
[MORPEKO,1]
|
||||
FormName = Hangry Mode
|
||||
Color = Purple
|
||||
Pokedex = Hunger hormones affect its temperament. Until its hunger is appeased, it gets up to all manner of evil deeds.
|
||||
#-------------------------------
|
||||
[ZACIAN,1]
|
||||
FormName = Crowned Sword
|
||||
Type1 = FAIRY
|
||||
Type2 = STEEL
|
||||
BaseStats = 92,170,115,148,80,115
|
||||
Weight = 355.0
|
||||
Pokedex = Able to cut down anything with a single strike, it became known as the Fairy King's Sword, and it inspired awe in friend and foe alike.
|
||||
#-------------------------------
|
||||
[ZAMAZENTA,1]
|
||||
FormName = Crowned Shield
|
||||
Type1 = FIGHTING
|
||||
Type2 = STEEL
|
||||
BaseStats = 92,130,145,128,80,145
|
||||
Weight = 785.0
|
||||
Pokedex = Its ability to deflect any attack led to it being known as the Fighting Master's Shield. It was feared and respected by all.
|
||||
#-------------------------------
|
||||
[URSHIFU,1]
|
||||
FormName = Rapid Strike Style
|
||||
Type1 = FIGHTING
|
||||
Type2 = WATER
|
||||
Moves = 0,SURGINGSTRIKES,1,SURGINGSTRIKES,1,AQUAJET,1,ROCKSMASH,1,LEER,1,ENDURE,1,FOCUSENERGY,12,AERIALACE,16,SCARYFACE,20,HEADBUTT,24,BRICKBREAK,28,DETECT,32,BULKUP,36,IRONHEAD,40,DYNAMICPUNCH,44,COUNTER,48,CLOSECOMBAT,52,FOCUSPUNCH
|
||||
TutorMoves = ACROBATICS,ATTRACT,AURASPHERE,BODYPRESS,BODYSLAM,BRICKBREAK,BRINE,BULKUP,CLOSECOMBAT,COACHING,DIG,DIVE,DRAINPUNCH,ENDURE,FACADE,FALSESWIPE,FIREPUNCH,FOCUSBLAST,FOCUSENERGY,GIGAIMPACT,HELPINGHAND,ICEPUNCH,IRONDEFENSE,IRONHEAD,LIQUIDATION,LOWKICK,LOWSWEEP,MEGAKICK,MEGAPUNCH,POISONJAB,PROTECT,RAINDANCE,REST,RETALIATE,REVENGE,REVERSAL,ROCKSLIDE,ROCKTOMB,ROUND,SCALD,SCARYFACE,SLEEPTALK,SNORE,STONEEDGE,SUBSTITUTE,SUPERPOWER,SWIFT,TAUNT,THUNDERPUNCH,UTURN,WATERFALL,WHIRLPOOL,WORKUP,ZENHEADBUTT
|
||||
Pokedex = It's believed that this Pokémon modeled its fighting style on the flow of a river—sometimes rapid, sometimes calm.
|
||||
#-------------------------------
|
||||
[CALYREX,1]
|
||||
FormName = Ice Rider
|
||||
Type1 = PSYCHIC
|
||||
Type2 = ICE
|
||||
BaseStats = 100,165,150,50,85,130
|
||||
EVs = 0,3,0,0,0,0
|
||||
Abilities = ASONE
|
||||
Moves = 1,GLACIALLANCE,1,TACKLE,1,TAILWHIP,1,DOUBLEKICK,1,AVALANCHE,1,STOMP,1,TORMENT,1,MIST,1,ICICLECRASH,1,TAKEDOWN,1,IRONDEFENSE,1,THRASH,1,TAUNT,1,DOUBLEEDGE,1,SWORDSDANCE,1,POUND,1,MEGADRAIN,1,CONFUSION,1,GROWTH,8,LIFEDEW,16,GIGADRAIN,24,PSYSHOCK,32,HELPINGHAND,40,AROMATHERAPY,48,ENERGYBALL,56,PSYCHIC,64,LEECHSEED,72,HEALPULSE,80,SOLARBEAM,88,FUTURESIGHT
|
||||
TutorMoves = AGILITY,ALLYSWITCH,ASSURANCE,AVALANCHE,BATONPASS,BLIZZARD,BODYPRESS,BODYSLAM,BULLDOZE,BULLETSEED,CALMMIND,CLOSECOMBAT,CRUNCH,DRAININGKISS,ENCORE,ENDURE,ENERGYBALL,EXPANDINGFORCE,FACADE,FUTURESIGHT,GIGADRAIN,GIGAIMPACT,GRASSKNOT,GRASSYTERRAIN,GUARDSWAP,HAIL,HEAVYSLAM,HELPINGHAND,HIGHHORSEPOWER,HYPERBEAM,ICEBEAM,ICICLESPEAR,ICYWIND,IMPRISON,IRONDEFENSE,LASHOUT,LEAFSTORM,LIGHTSCREEN,MAGICALLEAF,MAGICROOM,MEGAHORN,METRONOME,MUDSHOT,OUTRAGE,PAYBACK,PAYDAY,POLLENPUFF,POWERSWAP,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYSHOCK,REFLECT,REST,ROUND,SAFEGUARD,SCARYFACE,SEEDBOMB,SKILLSWAP,SLEEPTALK,SMARTSTRIKE,SNARL,SNORE,SOLARBEAM,SOLARBLADE,SPEEDSWAP,STOMPINGTANTRUM,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SUPERPOWER,SWIFT,SWORDSDANCE,TAUNT,THROATCHOP,TRIATTACK,TRICK,TRICKROOM,UPROAR,WONDERROOM,ZENHEADBUTT
|
||||
Height = 2.4
|
||||
Weight = 809.1
|
||||
Color = White
|
||||
Shape = Quadruped
|
||||
Category = High King
|
||||
Pokedex = According to lore, this Pokémon showed no mercy to those who got in its way, yet it would heal its opponents' wounds after battle.
|
||||
#-------------------------------
|
||||
[CALYREX,2]
|
||||
FormName = Shadow Rider
|
||||
Type1 = PSYCHIC
|
||||
Type2 = GHOST
|
||||
BaseStats = 100,85,80,150,165,100
|
||||
EVs = 0,0,0,0,3,0
|
||||
Abilities = ASONE
|
||||
Moves = 1,ASTRALBARRAGE,1,TACKLE,1,TAILWHIP,1,DOUBLEKICK,1,HEX,1,STOMP,1,CONFUSERAY,1,HAZE,1,SHADOWBALL,1,TAKEDOWN,1,AGILITY,1,THRASH,1,DISABLE,1,DOUBLEEDGE,1,NASTYPLOT,1,POUND,1,MEGADRAIN,1,CONFUSION,1,GROWTH,8,LIFEDEW,16,GIGADRAIN,24,PSYSHOCK,32,HELPINGHAND,40,AROMATHERAPY,48,ENERGYBALL,56,PSYCHIC,64,LEECHSEED,72,HEALPULSE,80,SOLARBEAM,88,FUTURESIGHT
|
||||
TutorMoves = AGILITY,ALLYSWITCH,ASSURANCE,BATONPASS,BODYSLAM,BULLDOZE,BULLETSEED,CALMMIND,CRUNCH,DARKPULSE,DRAININGKISS,ENCORE,ENDURE,ENERGYBALL,EXPANDINGFORCE,FACADE,FOULPLAY,FUTURESIGHT,GIGADRAIN,GIGAIMPACT,GRASSKNOT,GRASSYTERRAIN,GUARDSWAP,HELPINGHAND,HEX,HYPERBEAM,IMPRISON,LASHOUT,LEAFSTORM,LIGHTSCREEN,MAGICALLEAF,MAGICROOM,METRONOME,MUDSHOT,NASTYPLOT,PAYBACK,PAYDAY,PHANTOMFORCE,POLLENPUFF,POWERSWAP,PROTECT,PSYCHIC,PSYCHICTERRAIN,PSYCHOCUT,PSYSHOCK,REFLECT,REST,ROUND,SAFEGUARD,SCARYFACE,SEEDBOMB,SHADOWBALL,SKILLSWAP,SLEEPTALK,SNARL,SNORE,SOLARBEAM,SOLARBLADE,SPEEDSWAP,STOMPINGTANTRUM,STOREDPOWER,SUBSTITUTE,SUNNYDAY,SWIFT,TAUNT,TRIATTACK,TRICK,TRICKROOM,UPROAR,WILLOWISP,WONDERROOM,ZENHEADBUTT
|
||||
Height = 2.4
|
||||
Weight = 53.6
|
||||
Color = Black
|
||||
Shape = Quadruped
|
||||
Category = High King
|
||||
Pokedex = Legend says that by using its power to see all events from past to future, this Pokémon saved the creatures of a forest from a meteorite strike.
|
||||
|
||||
Reference in New Issue
Block a user