Another dex entry

This commit is contained in:
zontreck 2025-03-26 18:07:37 -07:00
parent f48bea7776
commit c18bb238a6

View file

@ -1737,6 +1737,81 @@ enum Pokemon {
[Type.Normal, Type.Flying],
null,
previousPokemon: 17,
locations: [
Location(
Game.Red,
[GameRoute.Evolve],
Generation.One,
additionalGames: [Game.Blue, Game.Yellow],
),
Location(
Game.Gold,
[GameRoute.Evolve],
Generation.Two,
additionalGames: [Game.Silver, Game.Crystal],
),
Location(
Game.Ruby,
[GameRoute.TradeOrMigrate],
Generation.Three,
additionalGames: [Game.Sapphire, Game.Emerald],
),
Location(
Game.FireRed,
[GameRoute.Evolve],
Generation.Three,
additionalGames: [Game.LeafGreen],
),
],
dexEntries: [
DexEntry(
Game.Red,
"When hunting, it skims the surface of water at high speed to pick off unwary prey such as MAGIKARP.",
Generation.One,
additionalGames: [Game.Blue],
),
DexEntry(
Game.Yellow,
"This POKéMON flies at Mach 2 speed, seeking prey. Its large talons are feared as wicked weapons.",
Generation.One,
),
DexEntry(
Game.Gold,
"Its well-developed chest muscles make it strong enough to whip up a gusty windstorm with just a few flaps.",
Generation.Two,
),
DexEntry(
Game.Silver,
"It spreads its beautiful wings wide to frighten its enemies. It can fly at Mach 2 speed.",
Generation.Two,
),
DexEntry(
Game.Crystal,
"Its outstanding vision allows it to spot splashing MAGIKARP, even while flying at 3300 feet.",
Generation.Two,
),
DexEntry(
Game.Ruby,
"This POKéMON has a dazzling plumage of beautifully glossy feathers. Many TRAINERS are captivated by the striking beauty of the feathers on its head, compelling them to choose PIDGEOT as their POKéMON.",
Generation.Three,
additionalGames: [Game.Sapphire],
),
DexEntry(
Game.FireRed,
"It spreads its gorgeous wings widely to intimidate enemies. It races through the skies at Mach-2 speed.",
Generation.Three,
),
DexEntry(
Game.LeafGreen,
"When hunting, it skims the surface of water at high speed to pick off unwary prey such as MAGIKARP.",
Generation.Three,
),
DexEntry(
Game.Emerald,
"This POKéMON has gorgeous, glossy feathers. Many TRAINERS are so captivated by the beautiful feathers on its head that they choose PIDGEOT as their POKéMON.",
Generation.Three,
),
],
),
Rattata(19, Generation.One, [Type.Normal], SingleEvolution(20, 20)),
Raticate(20, Generation.One, [Type.Normal], null, previousPokemon: 19),