Add more data entries
This commit is contained in:
parent
6b392e7b09
commit
4cb51f9dac
3 changed files with 77 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
class Constants {
|
class Constants {
|
||||||
static const VERSION = "1.0.032625+0207";
|
static const VERSION = "1.0.032625+0222";
|
||||||
|
|
||||||
//static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
//static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -673,6 +673,81 @@ enum Pokemon {
|
||||||
[Type.Water],
|
[Type.Water],
|
||||||
SingleEvolution(9, 36),
|
SingleEvolution(9, 36),
|
||||||
previousPokemon: 7,
|
previousPokemon: 7,
|
||||||
|
locations: [
|
||||||
|
Location(
|
||||||
|
Game.Red,
|
||||||
|
[GameRoute.Evolve],
|
||||||
|
Generation.One,
|
||||||
|
additionalGames: [Game.Blue, Game.Yellow],
|
||||||
|
),
|
||||||
|
Location(
|
||||||
|
Game.Gold,
|
||||||
|
[GameRoute.TradeOrMigrate],
|
||||||
|
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,
|
||||||
|
"Often hides in water to stalk unwary prey. For swimming fast, it moves its ears to maintain balance.",
|
||||||
|
Generation.One,
|
||||||
|
additionalGames: [Game.Blue],
|
||||||
|
),
|
||||||
|
DexEntry(
|
||||||
|
Game.Yellow,
|
||||||
|
"When tapped, this POKéMON will pull in its head, but its tail will still stick out a little bit.",
|
||||||
|
Generation.One,
|
||||||
|
),
|
||||||
|
DexEntry(
|
||||||
|
Game.Gold,
|
||||||
|
"It is recognized as a symbol of longevity. If its shell has algae on it, that WARTORTLE is very old.",
|
||||||
|
Generation.Two,
|
||||||
|
),
|
||||||
|
DexEntry(
|
||||||
|
Game.Silver,
|
||||||
|
"It cleverly controls its furry ears and tail to maintain its balance while swimming.",
|
||||||
|
Generation.Two,
|
||||||
|
),
|
||||||
|
DexEntry(
|
||||||
|
Game.Crystal,
|
||||||
|
"Its long, furry tail is a symbol of longevity, making it quite popular among older people.",
|
||||||
|
Generation.Two,
|
||||||
|
),
|
||||||
|
DexEntry(
|
||||||
|
Game.Ruby,
|
||||||
|
"Its tail is large and covered with a rich, thick fur. The tail becomes increasingly deeper in color as WARTORTLE ages. The scratches on its shell are evidence of this POKéMON’s toughness as a battler.",
|
||||||
|
Generation.Three,
|
||||||
|
additionalGames: [Game.Sapphire],
|
||||||
|
),
|
||||||
|
DexEntry(
|
||||||
|
Game.FireRed,
|
||||||
|
"This POKéMON is very popular as a pet. Its fur-covered tail is a symbol of its longevity.",
|
||||||
|
Generation.Three,
|
||||||
|
),
|
||||||
|
DexEntry(
|
||||||
|
Game.LeafGreen,
|
||||||
|
"It often hides in water to stalk unwary prey. For fast swimming, it moves its ears to maintain balance.",
|
||||||
|
Generation.Three,
|
||||||
|
),
|
||||||
|
DexEntry(
|
||||||
|
Game.Emerald,
|
||||||
|
"Its large tail is covered with rich, thick fur that deepens in color with age. The scratches on its shell are evidence of this POKéMON’s toughness in battle.",
|
||||||
|
Generation.Three,
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
Blastoise(9, Generation.One, [Type.Water], null, previousPokemon: 8),
|
Blastoise(9, Generation.One, [Type.Water], null, previousPokemon: 8),
|
||||||
Caterpie(
|
Caterpie(
|
||||||
|
|
|
@ -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
|
# 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
|
# 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.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 1.0.032625+0207
|
version: 1.0.032625+0222
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.7.0
|
sdk: ^3.7.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue