Add another entry
This commit is contained in:
parent
4ae48bdd47
commit
9b4b7dba33
2 changed files with 160 additions and 4 deletions
154
lib/pokemon.dart
154
lib/pokemon.dart
|
@ -2124,10 +2124,156 @@ enum Pokemon {
|
|||
),
|
||||
],
|
||||
),
|
||||
Spearow(21, Generation.One, [
|
||||
Type.Normal,
|
||||
Type.Flying,
|
||||
], SingleEvolution(22, 20)),
|
||||
Spearow(
|
||||
21,
|
||||
Generation.One,
|
||||
[Type.Normal, Type.Flying],
|
||||
SingleEvolution(22, 20),
|
||||
locations: [
|
||||
Location(
|
||||
Game.Red,
|
||||
[
|
||||
GameRoute.RT3,
|
||||
GameRoute.RT4,
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT11,
|
||||
GameRoute.RT16,
|
||||
GameRoute.RT17,
|
||||
GameRoute.RT18,
|
||||
GameRoute.RT22,
|
||||
GameRoute.RT23,
|
||||
],
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
Location(Game.Yellow, [
|
||||
GameRoute.RT3,
|
||||
GameRoute.RT4,
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT16,
|
||||
GameRoute.RT18,
|
||||
GameRoute.RT22,
|
||||
], Generation.One),
|
||||
Location(
|
||||
Game.Gold,
|
||||
[
|
||||
GameRoute.RT3,
|
||||
GameRoute.RT4,
|
||||
GameRoute.RT7,
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT22,
|
||||
GameRoute.RT29,
|
||||
GameRoute.RT30,
|
||||
GameRoute.RT31,
|
||||
GameRoute.RT32,
|
||||
GameRoute.RT33,
|
||||
GameRoute.RT35,
|
||||
GameRoute.RT42,
|
||||
GameRoute.RT43,
|
||||
GameRoute.RT44,
|
||||
GameRoute.RT45,
|
||||
GameRoute.RT46,
|
||||
],
|
||||
Generation.Two,
|
||||
additionalGames: [Game.Silver],
|
||||
),
|
||||
Location(Game.Crystal, [
|
||||
GameRoute.RT3,
|
||||
GameRoute.RT4,
|
||||
GameRoute.RT7,
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT22,
|
||||
GameRoute.RT33,
|
||||
GameRoute.RT35,
|
||||
GameRoute.RT42,
|
||||
GameRoute.RT44,
|
||||
GameRoute.RT46,
|
||||
GameRoute.AzaleaTown,
|
||||
], Generation.Two),
|
||||
Location(
|
||||
Game.Ruby,
|
||||
[GameRoute.TradeOrMigrate],
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire, Game.Emerald],
|
||||
),
|
||||
Location(
|
||||
Game.FireRed,
|
||||
[
|
||||
GameRoute.RT3,
|
||||
GameRoute.RT4,
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT11,
|
||||
GameRoute.RT16,
|
||||
GameRoute.RT17,
|
||||
GameRoute.RT18,
|
||||
GameRoute.RT22,
|
||||
GameRoute.RT23,
|
||||
GameRoute.CanyonEntrance,
|
||||
GameRoute.CapeBrink,
|
||||
GameRoute.KindleRoad,
|
||||
GameRoute.MtEmber,
|
||||
GameRoute.RuinValley,
|
||||
GameRoute.TreasureBeach,
|
||||
GameRoute.WaterPath,
|
||||
],
|
||||
Generation.Three,
|
||||
additionalGames: [Game.LeafGreen],
|
||||
),
|
||||
],
|
||||
dexEntries: [
|
||||
DexEntry(
|
||||
Game.Red,
|
||||
"Eats bugs in grassy areas. It has to flap its short wings at high speed to stay airborne.",
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Yellow,
|
||||
"Inept at flying high. However, it can fly around very fast to protect its territory.",
|
||||
Generation.One,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Gold,
|
||||
"It flaps its short wings to flush out insects from tall grass. It then plucks them with its stubby beak.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Silver,
|
||||
"Very protective of its territory, it flaps its short wings busily to dart around at high speed.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Crystal,
|
||||
"To protect its territory, it flies around ceaselessly, making high-pitched cries.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Ruby,
|
||||
"SPEAROW has a very loud cry that can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger.",
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Emerald,
|
||||
"Its loud cry can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.FireRed,
|
||||
"It busily flits around here and there. Even if it is frail, it can be a tough foe that uses MIRROR MOVE.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.LeafGreen,
|
||||
"Eats bugs in grassy areas. It has to flap its short wings at high speed to stay airborne.",
|
||||
Generation.Three,
|
||||
),
|
||||
],
|
||||
),
|
||||
Fearow(
|
||||
22,
|
||||
Generation.One,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue