Add more data entries
This commit is contained in:
parent
281b3bfeaa
commit
748d13bc56
3 changed files with 198 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
import 'dart:io';
|
||||
|
||||
class Constants {
|
||||
static const VERSION = "1.0.032625+0251";
|
||||
static const VERSION = "1.0.032625+0312";
|
||||
|
||||
//static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
||||
}
|
||||
|
|
197
lib/pokemon.dart
197
lib/pokemon.dart
|
@ -1055,8 +1055,203 @@ enum Pokemon {
|
|||
[Type.Bug, Type.Flying],
|
||||
null,
|
||||
previousPokemon: 11,
|
||||
locations: [
|
||||
Location(
|
||||
Game.Red,
|
||||
[GameRoute.Evolve],
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue, Game.Yellow],
|
||||
),
|
||||
Location(Game.Gold, [
|
||||
GameRoute.RT2,
|
||||
GameRoute.RT26,
|
||||
GameRoute.RT27,
|
||||
GameRoute.RT34,
|
||||
GameRoute.RT35,
|
||||
GameRoute.RT37,
|
||||
GameRoute.RT38,
|
||||
GameRoute.RT39,
|
||||
GameRoute.AzaleaTown,
|
||||
GameRoute.IlexForest,
|
||||
GameRoute.LakeOfRage,
|
||||
GameRoute.NationalPark,
|
||||
], Generation.Two),
|
||||
Location(Game.Silver, [GameRoute.NationalPark], Generation.Two),
|
||||
Location(Game.Crystal, [
|
||||
GameRoute.RT2,
|
||||
GameRoute.RT24,
|
||||
GameRoute.RT25,
|
||||
GameRoute.IlexForest,
|
||||
GameRoute.NationalPark,
|
||||
], Generation.Two),
|
||||
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,
|
||||
"In battle, it flaps its wings at high speed to release highly toxic dust into the air.",
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Yellow,
|
||||
"Its wings, covered with poisonous powders, repel water. This allows it to fly in the rain.",
|
||||
Generation.One,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Gold,
|
||||
"It collects honey every day. It rubs honey onto the hairs on its legs to carry it back to its nest.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Silver,
|
||||
"Water-repellent powder on its wings enables it to collect honey, even in the heaviest of rains.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Crystal,
|
||||
"It flits from flower to flower, collecting honey. It can even identify distant flowers in bloom.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Ruby,
|
||||
"BUTTERFREE has a superior ability to search for delicious honey from flowers. It can even search out, extract, and carry honey from flowers that are blooming over six miles from its nest.",
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire],
|
||||
),
|
||||
DexEntry(
|
||||
Game.FireRed,
|
||||
"The wings are protected by rain-repellent dust. As a result, this POKéMON can fly about even in rain.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.LeafGreen,
|
||||
"In battle, it flaps its wings at great speed to release highly toxic dust into the air.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Emerald,
|
||||
"It has a superior ability to search for delicious honey from flowers. It can seek, extract, and carry honey from flowers blooming over six miles away.",
|
||||
Generation.Three,
|
||||
),
|
||||
],
|
||||
),
|
||||
Weedle(
|
||||
13,
|
||||
Generation.One,
|
||||
[Type.Bug, Type.Poison],
|
||||
SingleEvolution(14, 7),
|
||||
locations: [
|
||||
Location(Game.Red, [
|
||||
GameRoute.RT2,
|
||||
GameRoute.RT24,
|
||||
GameRoute.RT25,
|
||||
GameRoute.ViridianForest,
|
||||
], Generation.One),
|
||||
Location(Game.Blue, [
|
||||
GameRoute.RT25,
|
||||
GameRoute.ViridianForest,
|
||||
], Generation.One),
|
||||
Location(Game.Yellow, [GameRoute.TradeOrMigrate], Generation.One),
|
||||
Location(Game.Gold, [GameRoute.NationalPark], Generation.Two),
|
||||
Location(Game.Silver, [
|
||||
GameRoute.RT2,
|
||||
GameRoute.RT26,
|
||||
GameRoute.RT27,
|
||||
GameRoute.RT30,
|
||||
GameRoute.RT31,
|
||||
GameRoute.RT34,
|
||||
GameRoute.RT35,
|
||||
GameRoute.RT36,
|
||||
GameRoute.RT37,
|
||||
GameRoute.RT38,
|
||||
GameRoute.RT39,
|
||||
GameRoute.AzaleaTown,
|
||||
GameRoute.IlexForest,
|
||||
GameRoute.LakeOfRage,
|
||||
GameRoute.NationalPark,
|
||||
], Generation.Two),
|
||||
Location(Game.Crystal, [
|
||||
GameRoute.RT30,
|
||||
GameRoute.RT31,
|
||||
GameRoute.IlexForest,
|
||||
GameRoute.NationalPark,
|
||||
], Generation.Two),
|
||||
Location(
|
||||
Game.Ruby,
|
||||
[GameRoute.TradeOrMigrate],
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire, Game.Emerald],
|
||||
),
|
||||
Location(Game.FireRed, [
|
||||
GameRoute.RT2,
|
||||
GameRoute.RT24,
|
||||
GameRoute.RT25,
|
||||
GameRoute.PatternBush,
|
||||
GameRoute.ViridianForest,
|
||||
], Generation.Three),
|
||||
],
|
||||
dexEntries: [
|
||||
DexEntry(
|
||||
Game.Red,
|
||||
"Often found in forests, eating leaves. It has a sharp venomous stinger on its head.",
|
||||
Generation.One,
|
||||
additionalGames: [Game.Blue],
|
||||
),
|
||||
DexEntry(
|
||||
Game.Yellow,
|
||||
"Beware of the sharp stinger on its head. It hides in grass and bushes where it eats leaves.",
|
||||
Generation.One,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Gold,
|
||||
"Its poison stinger is very powerful. Its bright-colored body is intended to warn off its enemies.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Silver,
|
||||
"It attacks using a two-inch poison barb on its head. It can usually be found under the leaves it eats.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Crystal,
|
||||
"The barb on top of its head secretes a strong poison. It uses this toxic barb to protect itself.",
|
||||
Generation.Two,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Ruby,
|
||||
"WEEDLE has an extremely acute sense of smell. It is capable of distinguishing its favorite kinds of leaves from those it dislikes just by sniffing with its big red proboscis (nose).",
|
||||
Generation.Three,
|
||||
additionalGames: [Game.Sapphire],
|
||||
),
|
||||
DexEntry(
|
||||
Game.FireRed,
|
||||
"Often found in forests and grasslands. It has a sharp, toxic barb of around two inches on top of its head.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.LeafGreen,
|
||||
"Often found in forests, eating leaves. It has a sharp stinger on its head that injects poison.",
|
||||
Generation.Three,
|
||||
),
|
||||
DexEntry(
|
||||
Game.Emerald,
|
||||
"A WEEDLE has an extremely acute sense of smell. It distinguishes its favorite kinds of leaves from those it dislikes by sniffing with its big red proboscis (nose).",
|
||||
Generation.Three,
|
||||
),
|
||||
],
|
||||
),
|
||||
Weedle(13, Generation.One, [Type.Bug, Type.Poison], SingleEvolution(14, 7)),
|
||||
Kakuna(
|
||||
14,
|
||||
Generation.One,
|
||||
|
|
|
@ -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+0251
|
||||
version: 1.0.032625+0312
|
||||
|
||||
environment:
|
||||
sdk: ^3.7.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue