Add more entries

This commit is contained in:
zontreck 2025-03-25 13:46:34 -07:00
parent 925a1f35c4
commit a214124869
11 changed files with 68 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
assets/sprites/cascoon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

BIN
assets/sprites/dustox.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
assets/sprites/lombre.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
assets/sprites/lotad.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
assets/sprites/ludicolo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
assets/sprites/silcoon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

BIN
assets/sprites/wurmple.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.032525+0339";
static const VERSION = "1.0.032525+1346";
static bool get isMobile => Platform.isAndroid || Platform.isIOS;
}

View file

@ -93,6 +93,8 @@ enum EvolutionCondition {
BlackAugurite,
DragonScale,
Upgrade,
Random,
Personality,
}
abstract class Evolution {
@ -1280,7 +1282,62 @@ enum Pokemon {
Poochyena(261, Generation.Three, [Type.Dark], SingleEvolution(262, 18)),
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);
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 String properName;

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.032525+0339
version: 1.0.032525+1346
environment:
sdk: ^3.7.0
@ -363,6 +363,14 @@ flutter:
- assets/sprites/zigzagoon-galarian.png
- assets/sprites/linoone.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
# https://flutter.dev/to/resolution-aware-images