Adds more entries
BIN
assets/sprites/gen1/pidgeot.png
Normal file
After Width: | Height: | Size: 503 B |
BIN
assets/sprites/gen1/pidgeotto.png
Normal file
After Width: | Height: | Size: 447 B |
BIN
assets/sprites/gen1/pidgey.png
Normal file
After Width: | Height: | Size: 293 B |
BIN
assets/sprites/gen2/pidgeot.png
Normal file
After Width: | Height: | Size: 493 B |
BIN
assets/sprites/gen2/pidgeotto.png
Normal file
After Width: | Height: | Size: 482 B |
BIN
assets/sprites/gen2/pidgey.png
Normal file
After Width: | Height: | Size: 324 B |
BIN
assets/sprites/gen3/pidgeot.png
Normal file
After Width: | Height: | Size: 944 B |
BIN
assets/sprites/gen3/pidgeotto.png
Normal file
After Width: | Height: | Size: 641 B |
BIN
assets/sprites/gen3/pidgey.png
Normal file
After Width: | Height: | Size: 581 B |
BIN
assets/sprites/gen4/pidgeot.png
Normal file
After Width: | Height: | Size: 756 B |
BIN
assets/sprites/gen4/pidgeotto.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
assets/sprites/gen4/pidgey.png
Normal file
After Width: | Height: | Size: 535 B |
BIN
assets/sprites/gen5/pidgeot.png
Normal file
After Width: | Height: | Size: 809 B |
BIN
assets/sprites/gen5/pidgeotto.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/sprites/gen5/pidgey.png
Normal file
After Width: | Height: | Size: 498 B |
BIN
assets/sprites/gen6/pidgeot.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
assets/sprites/gen6/pidgeotto.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
assets/sprites/gen6/pidgey.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
assets/sprites/gen7/pidgeot.png
Normal file
After Width: | Height: | Size: 625 B |
BIN
assets/sprites/gen7/pidgeotto.png
Normal file
After Width: | Height: | Size: 383 B |
BIN
assets/sprites/gen7/pidgey.png
Normal file
After Width: | Height: | Size: 355 B |
BIN
assets/sprites/gen8/pidgeot.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
assets/sprites/gen8/pidgeotto.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
assets/sprites/gen8/pidgey.png
Normal file
After Width: | Height: | Size: 9.7 KiB |
|
@ -1,7 +1,7 @@
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
class Constants {
|
class Constants {
|
||||||
static const VERSION = "1.0.032225+2020";
|
static const VERSION = "1.0.032225+2037";
|
||||||
|
|
||||||
static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,7 +118,10 @@ enum Pokemon {
|
||||||
Butterfree(12, Generation.One, [Type.Bug, Type.Flying], null),
|
Butterfree(12, Generation.One, [Type.Bug, Type.Flying], null),
|
||||||
Weedle(13, Generation.One, [Type.Bug, Type.Poison], Evolution(14, 7)),
|
Weedle(13, Generation.One, [Type.Bug, Type.Poison], Evolution(14, 7)),
|
||||||
Kakuna(14, Generation.One, [Type.Bug, Type.Poison], Evolution(15, 10)),
|
Kakuna(14, Generation.One, [Type.Bug, Type.Poison], Evolution(15, 10)),
|
||||||
Beedrill(15, Generation.One, [Type.Bug, Type.Poison], null);
|
Beedrill(15, Generation.One, [Type.Bug, Type.Poison], null),
|
||||||
|
Pidgey(16, Generation.One, [Type.Normal, Type.Flying], Evolution(17, 18)),
|
||||||
|
Pidgeotto(17, Generation.One, [Type.Normal, Type.Flying], Evolution(18, 36)),
|
||||||
|
Pidgeot(18, Generation.One, [Type.Normal, Type.Flying], null);
|
||||||
|
|
||||||
final int id;
|
final int id;
|
||||||
final Generation generation;
|
final Generation generation;
|
||||||
|
|
29
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.032225+2020
|
version: 1.0.032225+2037
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.7.0
|
sdk: ^3.7.0
|
||||||
|
@ -208,6 +208,33 @@ flutter:
|
||||||
- assets/sprites/gen7/beedrill.png
|
- assets/sprites/gen7/beedrill.png
|
||||||
- assets/sprites/gen8/beedrill.png
|
- assets/sprites/gen8/beedrill.png
|
||||||
|
|
||||||
|
- assets/sprites/gen1/pidgey.png
|
||||||
|
- assets/sprites/gen2/pidgey.png
|
||||||
|
- assets/sprites/gen3/pidgey.png
|
||||||
|
- assets/sprites/gen4/pidgey.png
|
||||||
|
- assets/sprites/gen5/pidgey.png
|
||||||
|
- assets/sprites/gen6/pidgey.png
|
||||||
|
- assets/sprites/gen7/pidgey.png
|
||||||
|
- assets/sprites/gen8/pidgey.png
|
||||||
|
|
||||||
|
- assets/sprites/gen1/pidgeotto.png
|
||||||
|
- assets/sprites/gen2/pidgeotto.png
|
||||||
|
- assets/sprites/gen3/pidgeotto.png
|
||||||
|
- assets/sprites/gen4/pidgeotto.png
|
||||||
|
- assets/sprites/gen5/pidgeotto.png
|
||||||
|
- assets/sprites/gen6/pidgeotto.png
|
||||||
|
- assets/sprites/gen7/pidgeotto.png
|
||||||
|
- assets/sprites/gen8/pidgeotto.png
|
||||||
|
|
||||||
|
- assets/sprites/gen1/pidgeot.png
|
||||||
|
- assets/sprites/gen2/pidgeot.png
|
||||||
|
- assets/sprites/gen3/pidgeot.png
|
||||||
|
- assets/sprites/gen4/pidgeot.png
|
||||||
|
- assets/sprites/gen5/pidgeot.png
|
||||||
|
- assets/sprites/gen6/pidgeot.png
|
||||||
|
- assets/sprites/gen7/pidgeot.png
|
||||||
|
- assets/sprites/gen8/pidgeot.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
|
||||||
|
|
||||||
|
|