Add more entries
BIN
assets/sprites/beautifly.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
assets/sprites/cascoon.png
Normal file
After Width: | Height: | Size: 8.1 KiB |
BIN
assets/sprites/dustox.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/sprites/lombre.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
assets/sprites/lotad.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/sprites/ludicolo.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
assets/sprites/silcoon.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
assets/sprites/wurmple.png
Normal file
After Width: | Height: | Size: 11 KiB |
|
@ -1,7 +1,7 @@
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
class Constants {
|
class Constants {
|
||||||
static const VERSION = "1.0.032525+0339";
|
static const VERSION = "1.0.032525+1346";
|
||||||
|
|
||||||
static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,6 +93,8 @@ enum EvolutionCondition {
|
||||||
BlackAugurite,
|
BlackAugurite,
|
||||||
DragonScale,
|
DragonScale,
|
||||||
Upgrade,
|
Upgrade,
|
||||||
|
Random,
|
||||||
|
Personality,
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract class Evolution {
|
abstract class Evolution {
|
||||||
|
@ -1280,7 +1282,62 @@ enum Pokemon {
|
||||||
Poochyena(261, Generation.Three, [Type.Dark], SingleEvolution(262, 18)),
|
Poochyena(261, Generation.Three, [Type.Dark], SingleEvolution(262, 18)),
|
||||||
Mightyena(262, Generation.Three, [Type.Dark], null, previousPokemon: 261),
|
Mightyena(262, Generation.Three, [Type.Dark], null, previousPokemon: 261),
|
||||||
Zigzagoon(263, Generation.Three, [Type.Normal], SingleEvolution(264, 20)),
|
Zigzagoon(263, Generation.Three, [Type.Normal], SingleEvolution(264, 20)),
|
||||||
Linoone(264, Generation.Three, [Type.Normal], null, previousPokemon: 263);
|
Linoone(264, Generation.Three, [Type.Normal], null, previousPokemon: 263),
|
||||||
|
Wurmple(
|
||||||
|
265,
|
||||||
|
Generation.Three,
|
||||||
|
[Type.Bug],
|
||||||
|
BranchedEvolution([266, 268], [7, 7], [
|
||||||
|
[EvolutionCondition.Random, EvolutionCondition.Personality],
|
||||||
|
[EvolutionCondition.Random, EvolutionCondition.Personality],
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
Silcoon(
|
||||||
|
266,
|
||||||
|
Generation.Three,
|
||||||
|
[Type.Bug],
|
||||||
|
SingleEvolution(267, 10),
|
||||||
|
previousPokemon: 265,
|
||||||
|
),
|
||||||
|
Beautifly(
|
||||||
|
267,
|
||||||
|
Generation.Three,
|
||||||
|
[Type.Bug, Type.Flying],
|
||||||
|
null,
|
||||||
|
previousPokemon: 266,
|
||||||
|
),
|
||||||
|
Cascoon(
|
||||||
|
268,
|
||||||
|
Generation.Three,
|
||||||
|
[Type.Bug],
|
||||||
|
SingleEvolution(269, 10),
|
||||||
|
previousPokemon: 265,
|
||||||
|
),
|
||||||
|
Dustox(
|
||||||
|
269,
|
||||||
|
Generation.Three,
|
||||||
|
[Type.Bug, Type.Poison],
|
||||||
|
null,
|
||||||
|
previousPokemon: 268,
|
||||||
|
),
|
||||||
|
Lotad(270, Generation.Three, [
|
||||||
|
Type.Water,
|
||||||
|
Type.Grass,
|
||||||
|
], SingleEvolution(271, 14)),
|
||||||
|
Lombre(
|
||||||
|
271,
|
||||||
|
Generation.Three,
|
||||||
|
[Type.Water, Type.Grass],
|
||||||
|
SingleEvolution(272, -1, condition: [EvolutionCondition.WaterStone]),
|
||||||
|
previousPokemon: 270,
|
||||||
|
),
|
||||||
|
Ludicolo(
|
||||||
|
272,
|
||||||
|
Generation.Three,
|
||||||
|
[Type.Water, Type.Grass],
|
||||||
|
null,
|
||||||
|
previousPokemon: 271,
|
||||||
|
);
|
||||||
|
|
||||||
final int id;
|
final int id;
|
||||||
final String properName;
|
final String properName;
|
||||||
|
|
10
pubspec.yaml
|
@ -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.032525+0339
|
version: 1.0.032525+1346
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.7.0
|
sdk: ^3.7.0
|
||||||
|
@ -363,6 +363,14 @@ flutter:
|
||||||
- assets/sprites/zigzagoon-galarian.png
|
- assets/sprites/zigzagoon-galarian.png
|
||||||
- assets/sprites/linoone.png
|
- assets/sprites/linoone.png
|
||||||
- assets/sprites/linoone-galarian.png
|
- assets/sprites/linoone-galarian.png
|
||||||
|
- assets/sprites/wurmple.png
|
||||||
|
- assets/sprites/silcoon.png
|
||||||
|
- assets/sprites/cascoon.png
|
||||||
|
- assets/sprites/beautifly.png
|
||||||
|
- assets/sprites/dustox.png
|
||||||
|
- assets/sprites/lotad.png
|
||||||
|
- assets/sprites/lombre.png
|
||||||
|
- assets/sprites/ludicolo.png
|
||||||
|
|
||||||
# An image asset can refer to one or more resolution-specific "variants", see
|
# An image asset can refer to one or more resolution-specific "variants", see
|
||||||
# https://flutter.dev/to/resolution-aware-images
|
# https://flutter.dev/to/resolution-aware-images
|
||||||
|
|