Add more entries
This commit is contained in:
parent
330508fffa
commit
925a1f35c4
7 changed files with 9 additions and 3 deletions
BIN
assets/sprites/linoone-galarian.png
Normal file
BIN
assets/sprites/linoone-galarian.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.1 KiB |
BIN
assets/sprites/linoone.png
Normal file
BIN
assets/sprites/linoone.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.2 KiB |
BIN
assets/sprites/zigzagoon-galarian.png
Normal file
BIN
assets/sprites/zigzagoon-galarian.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
assets/sprites/zigzagoon.png
Normal file
BIN
assets/sprites/zigzagoon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.6 KiB |
|
@ -1,7 +1,7 @@
|
|||
import 'dart:io';
|
||||
|
||||
class Constants {
|
||||
static const VERSION = "1.0.032525+0335";
|
||||
static const VERSION = "1.0.032525+0339";
|
||||
|
||||
static bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
||||
}
|
||||
|
|
|
@ -1278,7 +1278,9 @@ enum Pokemon {
|
|||
previousPokemon: 259,
|
||||
),
|
||||
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)),
|
||||
Linoone(264, Generation.Three, [Type.Normal], null, previousPokemon: 263);
|
||||
|
||||
final int id;
|
||||
final String properName;
|
||||
|
|
|
@ -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.032525+0335
|
||||
version: 1.0.032525+0339
|
||||
|
||||
environment:
|
||||
sdk: ^3.7.0
|
||||
|
@ -359,6 +359,10 @@ flutter:
|
|||
- assets/sprites/swampert.png
|
||||
- assets/sprites/poochyena.png
|
||||
- assets/sprites/mightyena.png
|
||||
- assets/sprites/zigzagoon.png
|
||||
- assets/sprites/zigzagoon-galarian.png
|
||||
- assets/sprites/linoone.png
|
||||
- assets/sprites/linoone-galarian.png
|
||||
|
||||
# An image asset can refer to one or more resolution-specific "variants", see
|
||||
# https://flutter.dev/to/resolution-aware-images
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue