Add more entries

This commit is contained in:
zontreck 2025-03-22 22:31:19 -07:00
parent 0fb6f422fa
commit 47164c1b67
27 changed files with 63 additions and 5 deletions

BIN
assets/sprites/arcanine.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
assets/sprites/diglett.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

BIN
assets/sprites/dugtrio.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/sprites/gloom.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
assets/sprites/golbat.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
assets/sprites/golduck.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
assets/sprites/mankey.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

BIN
assets/sprites/meowth.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
assets/sprites/oddish.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
assets/sprites/paras.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
assets/sprites/parasect.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
assets/sprites/persian.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/sprites/poliwag.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/sprites/primeape.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
assets/sprites/psyduck.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
assets/sprites/venomoth.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

BIN
assets/sprites/venonat.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/sprites/zubat.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1,7 +1,7 @@
import 'dart:io';
class Constants {
static const VERSION = "1.0.032225+2127";
static const VERSION = "1.0.032225+2230";
static bool get isMobile => Platform.isAndroid || Platform.isIOS;
}

View file

@ -39,12 +39,12 @@ enum Generation {
enum Type {
Normal(Color.fromARGB(255, 192, 192, 192), Colors.black),
Fire(Color.fromARGB(255, 255, 0, 0), Colors.black),
Fire(Color.fromARGB(255, 255, 0, 0), Color.fromARGB(255, 255, 255, 255)),
Water(Color.fromARGB(255, 0, 174, 255), Colors.black),
Electric(Color(0xffFFD700), Colors.black),
Grass(Color.fromARGB(255, 0, 255, 0), Colors.black),
Ice(Color.fromARGB(255, 0, 255, 255), Colors.black),
Fighting(Color.fromARGB(255, 255, 0, 0), Colors.black),
Fighting(Color.fromARGB(255, 255, 0, 0), Color.fromARGB(255, 255, 255, 255)),
Poison(Color.fromARGB(255, 128, 0, 128), Colors.black),
Ground(Color.fromARGB(255, 128, 126, 0), Colors.black),
Flying(Color.fromARGB(255, 128, 128, 255), Colors.black),
@ -69,6 +69,7 @@ enum EvolutionCondition {
Trading,
MoonStone,
FireStone,
LeafStone,
}
class Evolution {
@ -169,7 +170,40 @@ enum Pokemon {
Vulpix(37, Generation.One, [
Type.Fire,
], Evolution(38, -1, condition: EvolutionCondition.FireStone)),
NineTales(38, Generation.One, [Type.Fire], null);
NineTales(38, Generation.One, [Type.Fire], null),
Jigglypuff(39, Generation.One, [
Type.Fairy,
], Evolution(40, -1, condition: EvolutionCondition.MoonStone)),
WigglyTuff(40, Generation.One, [Type.Fairy], null),
Zubat(41, Generation.One, [Type.Poison, Type.Flying], Evolution(42, 22)),
Golbat(42, Generation.One, [Type.Poison, Type.Flying], null),
Oddish(43, Generation.One, [Type.Poison, Type.Grass], Evolution(44, 21)),
Gloom(44, Generation.One, [
Type.Poison,
Type.Grass,
], Evolution(45, -1, condition: EvolutionCondition.LeafStone)),
Vileplume(45, Generation.One, [Type.Poison, Type.Grass], null),
Paras(46, Generation.One, [Type.Bug, Type.Grass], Evolution(47, 24)),
Parasect(47, Generation.One, [Type.Bug, Type.Grass], null),
Venonat(48, Generation.One, [Type.Bug, Type.Poison], Evolution(49, 31)),
Venomoth(49, Generation.One, [Type.Bug, Type.Poison], null),
Diglett(50, Generation.One, [Type.Ground], Evolution(51, 26)),
Dugtrio(51, Generation.One, [Type.Ground], null),
Meowth(52, Generation.One, [Type.Normal], Evolution(53, 28)),
Persian(53, Generation.One, [Type.Normal], null),
Psyduck(54, Generation.One, [Type.Water], Evolution(55, 33)),
Golduck(55, Generation.One, [Type.Water], null),
Mankey(56, Generation.One, [Type.Fighting], Evolution(57, 28)),
Primeape(57, Generation.One, [Type.Fighting], null),
Growlithe(58, Generation.One, [
Type.Fire,
], Evolution(59, -1, condition: EvolutionCondition.FireStone)),
Arcanine(59, Generation.One, [Type.Fire], null),
Poliwag(60, Generation.One, [Type.Water], Evolution(61, 25)),
Poliwhirl(61, Generation.One, [
Type.Water,
], Evolution(62, -1, condition: EvolutionCondition.WaterStone)),
Poliwrath(62, Generation.One, [Type.Water], null);
final int id;
final Generation generation;

View file

@ -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.032225+2127
version: 1.0.032225+2230
environment:
sdk: ^3.7.0
@ -102,6 +102,30 @@ flutter:
- assets/sprites/clefable.png
- assets/sprites/vulpix.png
- assets/sprites/ninetales.png
- assets/sprites/jigglypuff.png
- assets/sprites/wigglytuff.png
- assets/sprites/zubat.png
- assets/sprites/golbat.png
- assets/sprites/oddish.png
- assets/sprites/gloom.png
- assets/sprites/vileplume.png
- assets/sprites/paras.png
- assets/sprites/parasect.png
- assets/sprites/venonat.png
- assets/sprites/venomoth.png
- assets/sprites/diglett.png
- assets/sprites/dugtrio.png
- assets/sprites/meowth.png
- assets/sprites/persian.png
- assets/sprites/psyduck.png
- assets/sprites/golduck.png
- assets/sprites/mankey.png
- assets/sprites/primeape.png
- assets/sprites/growlithe.png
- assets/sprites/arcanine.png
- assets/sprites/poliwag.png
- assets/sprites/poliwhirl.png
- assets/sprites/poliwrath.png
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/to/resolution-aware-images