Add more data entries
This commit is contained in:
parent
5350ef0b79
commit
ad9978473f
4 changed files with 118 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
import 'dart:io';
|
||||
|
||||
class Constants {
|
||||
static const VERSION = "1.0.032625+1410";
|
||||
static const VERSION = "1.0.032625+1752";
|
||||
|
||||
//static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
||||
}
|
||||
|
|
|
@ -29,6 +29,7 @@ enum GameRoute {
|
|||
RT37,
|
||||
RT38,
|
||||
RT39,
|
||||
RT43,
|
||||
RT204,
|
||||
ViridianForest(commonName: "Viridian Forest"),
|
||||
AzaleaTown(commonName: "Azalea Town"),
|
||||
|
|
115
lib/pokemon.dart
115
lib/pokemon.dart
|
@ -1615,6 +1615,121 @@ enum Pokemon {
|
|||
[Type.Normal, Type.Flying],
|
||||
SingleEvolution(18, 36),
|
||||
previousPokemon: 16,
|
||||
locations: [
|
||||
Location(
|
||||
Game.Red,
|
||||
[GameRoute.RT14, GameRoute.RT15, GameRoute.RT21],
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
Location(Game.Yellow, [
|
||||
GameRoute.RT5,
|
||||
GameRoute.RT6,
|
||||
GameRoute.RT7,
|
||||
GameRoute.RT8,
|
||||
GameRoute.RT11,
|
||||
GameRoute.RT12,
|
||||
GameRoute.RT13,
|
||||
GameRoute.RT14,
|
||||
GameRoute.RT15,
|
||||
GameRoute.RT21,
|
||||
GameRoute.RT24,
|
||||
GameRoute.RT25,
|
||||
GameRoute.ViridianForest,
|
||||
], Generation.One),
|
||||
Location(
|
||||
Game.Gold,
|
||||
[
|
||||
GameRoute.RT2,
|
||||
GameRoute.RT8,
|
||||
GameRoute.RT13,
|
||||
GameRoute.RT14,
|
||||
GameRoute.RT15,
|
||||
GameRoute.RT25,
|
||||
GameRoute.RT37,
|
||||
GameRoute.RT43,
|
||||
],
|
||||
Generation.Two,
|
||||
additionalGames: [Game.Silver],
|
||||
),
|
||||
Location(Game.Crystal, [
|
||||
GameRoute.RT2,
|
||||
GameRoute.RT5,
|
||||
GameRoute.RT8,
|
||||
GameRoute.RT11,
|
||||
GameRoute.RT13,
|
||||
GameRoute.RT14,
|
||||
GameRoute.RT15,
|
||||
GameRoute.RT25,
|
||||
GameRoute.RT37,
|
||||
GameRoute.RT38,
|
||||
GameRoute.RT39,
|
||||
GameRoute.RT43,
|
||||
], Generation.Two),
|
||||
Location(
|
||||
Game.Ruby,
|
||||
[GameRoute.TradeOrMigrate],
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire, Game.Emerald],
|
||||
),
|
||||
Location(Game.FireRed, [
|
||||
GameRoute.RT13,
|
||||
GameRoute.RT14,
|
||||
GameRoute.RT15,
|
||||
GameRoute.BerryForest,
|
||||
GameRoute.BondBridge,
|
||||
GameRoute.FiveIsleMeadow,
|
||||
], Generation.Three),
|
||||
],
|
||||
dexEntries: [
|
||||
DexEntry(
|
||||
Game.Red,
|
||||
"Very protective of its sprawling territorial area, this POKéMON will fiercely peck at any intruder.",
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Yellow,
|
||||
"This POKéMON is full of vitality. It constantly flies around its large territory in search of prey.",
|
||||
Generation.One,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Gold,
|
||||
"It has outstanding vision. However high it flies, it is able to distinguish the movements of its prey.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Silver,
|
||||
"It immobilizes its prey using well-developed claws, then carries the prey more than 60 miles to its nest.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Crystal,
|
||||
"It slowly flies in a circular pattern, all the while keeping a sharp lookout for prey.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Ruby,
|
||||
"PIDGEOTTO claims a large area as its own territory. This POKéMON flies around, patrolling its living space. If its territory is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws.",
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire],
|
||||
),
|
||||
DexEntry(
|
||||
Game.FireRed,
|
||||
"The claws on its feet are well developed. It can carry prey such as an EXEGGCUTE to its nest over 60 miles away.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.LeafGreen,
|
||||
"Very protective of its sprawling territorial area, this POKéMON will fiercely peck at any intruder.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Emerald,
|
||||
"This POKéMON flies around, patrolling its large territory. If its living space is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws.",
|
||||
Generation.Three,
|
||||
),
|
||||
],
|
||||
),
|
||||
Pidgeot(
|
||||
18,
|
||||
|
|
|
@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
|||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
# In Windows, build-name is used as the major, minor, and patch parts
|
||||
# of the product and file versions while build-number is used as the build suffix.
|
||||
version: 1.0.032625+1410
|
||||
version: 1.0.032625+1752
|
||||
|
||||
environment:
|
||||
sdk: ^3.7.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue