Add more dex entries
This commit is contained in:
parent
e39db6676e
commit
a3608b7398
3 changed files with 131 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
import 'dart:io';
|
||||
|
||||
class Constants {
|
||||
static const VERSION = "1.0.032625+1752";
|
||||
static const VERSION = "1.0.032625+1842";
|
||||
|
||||
//static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
||||
}
|
||||
|
|
130
lib/pokemon.dart
130
lib/pokemon.dart
|
@ -1995,7 +1995,135 @@ enum Pokemon {
|
|||
),
|
||||
],
|
||||
),
|
||||
Raticate(20, Generation.One, [Type.Normal], null, previousPokemon: 19),
|
||||
Raticate(
|
||||
20,
|
||||
Generation.One,
|
||||
[Type.Normal],
|
||||
null,
|
||||
previousPokemon: 19,
|
||||
locations: [
|
||||
Location(
|
||||
Game.Red,
|
||||
[GameRoute.RT16, GameRoute.RT17, GameRoute.RT18, GameRoute.RT21],
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
Location(Game.Yellow, [
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT11,
|
||||
GameRoute.RT16,
|
||||
GameRoute.RT18,
|
||||
GameRoute.RT21,
|
||||
GameRoute.PokemonMansion,
|
||||
], Generation.One),
|
||||
Location(
|
||||
Game.Gold,
|
||||
[
|
||||
GameRoute.RT7,
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT26,
|
||||
GameRoute.RT27,
|
||||
GameRoute.RT38,
|
||||
GameRoute.RT39,
|
||||
GameRoute.BurnedTower,
|
||||
GameRoute.MtMortar,
|
||||
GameRoute.TohjoFalls,
|
||||
GameRoute.UnionCave,
|
||||
],
|
||||
Generation.Two,
|
||||
additionalGames: [Game.Silver],
|
||||
),
|
||||
Location(Game.Crystal, [
|
||||
GameRoute.RT1,
|
||||
GameRoute.RT3,
|
||||
GameRoute.RT4,
|
||||
GameRoute.RT6,
|
||||
GameRoute.RT7,
|
||||
GameRoute.RT9,
|
||||
GameRoute.RT10,
|
||||
GameRoute.RT11,
|
||||
GameRoute.RT21,
|
||||
GameRoute.RT26,
|
||||
GameRoute.RT27,
|
||||
GameRoute.RT38,
|
||||
GameRoute.RT39,
|
||||
GameRoute.RT42,
|
||||
GameRoute.RT43,
|
||||
GameRoute.BurnedTower,
|
||||
GameRoute.MtMortar,
|
||||
GameRoute.TohjoFalls,
|
||||
GameRoute.UnionCave,
|
||||
], Generation.Two),
|
||||
Location(
|
||||
Game.Ruby,
|
||||
[GameRoute.TradeOrMigrate],
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire, Game.Emerald],
|
||||
),
|
||||
Location(
|
||||
Game.FireRed,
|
||||
[
|
||||
GameRoute.RT16,
|
||||
GameRoute.RT17,
|
||||
GameRoute.RT18,
|
||||
GameRoute.PokemonMansion,
|
||||
],
|
||||
Generation.Three,
|
||||
additionalGames: [Game.LeafGreen],
|
||||
),
|
||||
],
|
||||
dexEntries: [
|
||||
DexEntry(
|
||||
Game.Red,
|
||||
"It uses its whiskers to maintain its balance. It apparently slows down if they are cut off.",
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Yellow,
|
||||
"Its hind feet are webbed. They act as flippers, so it can swim in rivers and hunt for prey.",
|
||||
Generation.One,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Gold,
|
||||
"Gnaws on anything with its tough fangs. It can even topple concrete buildings by gnawing on them.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Silver,
|
||||
"Its whiskers help it to maintain balance. Its fangs never stop growing, so it gnaws to pare them down.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Crystal,
|
||||
"The webs on its hind legs enable it to cross rivers. It searches wide areas for food.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Ruby,
|
||||
"RATICATE’s sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses.",
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Emerald,
|
||||
"A RATICATE’s sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.FireRed,
|
||||
"Its rear feet have three toes each. They are webbed, enabling it to swim across rivers.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.LeafGreen,
|
||||
"It uses its whiskers to maintain its balance. It apparently slows down if they are cut off.",
|
||||
Generation.Three,
|
||||
),
|
||||
],
|
||||
),
|
||||
Spearow(21, Generation.One, [
|
||||
Type.Normal,
|
||||
Type.Flying,
|
||||
|
|
|
@ -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+1752
|
||||
version: 1.0.032625+1842
|
||||
|
||||
environment:
|
||||
sdk: ^3.7.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue