Add more entries
This commit is contained in:
parent
9b4b7dba33
commit
bde3934e9c
4 changed files with 113 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
import 'dart:io';
|
||||
|
||||
class Constants {
|
||||
static const VERSION = "1.0.032625+1842";
|
||||
static const VERSION = "1.0.032625+1915";
|
||||
|
||||
//static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
||||
}
|
||||
|
|
|
@ -84,6 +84,7 @@ enum GameRoute {
|
|||
RuinValley(commonName: "Ruin Valley"),
|
||||
TreasureBeach(commonName: "Treasure Beach"),
|
||||
WaterPath(commonName: "Water Path"),
|
||||
SevaultCanyon(commonName: "Sevault Canyon"),
|
||||
|
||||
// The following mark the pokemon as not usually obtainable
|
||||
TradeOrMigrate(commonName: "Trade or Migrate from another game"),
|
||||
|
|
110
lib/pokemon.dart
110
lib/pokemon.dart
|
@ -2280,6 +2280,116 @@ enum Pokemon {
|
|||
[Type.Normal, Type.Flying],
|
||||
null,
|
||||
previousPokemon: 21,
|
||||
locations: [
|
||||
Location(
|
||||
Game.Red,
|
||||
[GameRoute.RT17, GameRoute.RT18, GameRoute.RT23],
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
Location(Game.Yellow, [
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT16,
|
||||
GameRoute.RT17,
|
||||
GameRoute.RT18,
|
||||
GameRoute.RT23,
|
||||
], Generation.One),
|
||||
Location(
|
||||
Game.Gold,
|
||||
[
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT16,
|
||||
GameRoute.RT17,
|
||||
GameRoute.RT18,
|
||||
GameRoute.RT22,
|
||||
],
|
||||
Generation.Two,
|
||||
additionalGames: [Game.Silver],
|
||||
),
|
||||
Location(Game.Crystal, [
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT16,
|
||||
GameRoute.RT17,
|
||||
GameRoute.RT18,
|
||||
GameRoute.RT22,
|
||||
GameRoute.RT42,
|
||||
], Generation.Two),
|
||||
Location(
|
||||
Game.Ruby,
|
||||
[GameRoute.TradeOrMigrate],
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire, Game.Emerald],
|
||||
),
|
||||
Location(
|
||||
Game.FireRed,
|
||||
[
|
||||
GameRoute.RT17,
|
||||
GameRoute.RT18,
|
||||
GameRoute.RT23,
|
||||
GameRoute.CanyonEntrance,
|
||||
GameRoute.CapeBrink,
|
||||
GameRoute.KindleRoad,
|
||||
GameRoute.MtEmber,
|
||||
GameRoute.RuinValley,
|
||||
GameRoute.SevaultCanyon,
|
||||
GameRoute.TreasureBeach,
|
||||
GameRoute.WaterPath,
|
||||
],
|
||||
Generation.Three,
|
||||
additionalGames: [Game.LeafGreen],
|
||||
),
|
||||
],
|
||||
dexEntries: [
|
||||
DexEntry(
|
||||
Game.Red,
|
||||
"With its huge and magnificent wings, it can keep aloft without ever having to land for rest.",
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Yellow,
|
||||
"A POKéMON that dates back many years. If it senses danger, it flies high and away, instantly.",
|
||||
Generation.One,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Gold,
|
||||
"It shoots itself suddenly high into the sky, then plummets down in one fell swoop to strike its prey.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Silver,
|
||||
"It cleverly uses its thin, long beak to pluck and eat small insects that hide under the ground.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Crystal,
|
||||
"It uses its long beak to attack. It has a surprisingly long reach, so it must be treated with caution.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Ruby,
|
||||
"FEAROW is recognized by its long neck and elongated beak. They are conveniently shaped for catching prey in soil or water. It deftly moves its long and skinny beak to pluck prey.",
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Emerald,
|
||||
"Its long neck and elongated beak are ideal for catching prey in soil or water. It deftly moves this extended and skinny beak to pluck prey.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.FireRed,
|
||||
"Its huge and magnificent wings can keep it aloft in the sky. It can remain flying a whole day without landing.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.LeafGreen,
|
||||
"With its huge and magnificent wings, it can keep aloft without ever having to land for rest.",
|
||||
Generation.Three,
|
||||
),
|
||||
],
|
||||
),
|
||||
Ekans(23, Generation.One, [Type.Poison], SingleEvolution(24, 22)),
|
||||
Arbok(24, Generation.One, [Type.Poison], null, previousPokemon: 23),
|
||||
|
|
|
@ -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+1842
|
||||
version: 1.0.032625+1915
|
||||
|
||||
environment:
|
||||
sdk: ^3.7.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue