Add a few more entries

This commit is contained in:
zontreck 2025-03-24 02:39:32 -07:00
parent 03246aad71
commit 50a3c588ba
12 changed files with 51 additions and 3 deletions

View file

@ -1237,7 +1237,46 @@ enum Pokemon {
null,
properName: "Ho-Oh",
),
Celebi(251, Generation.Two, [Type.Psychic, Type.Grass], null);
Celebi(251, Generation.Two, [Type.Psychic, Type.Grass], null),
Treecko(252, Generation.Three, [Type.Grass], SingleEvolution(253, 16)),
Grovyle(
253,
Generation.Three,
[Type.Grass],
SingleEvolution(254, 36),
previousPokemon: 252,
),
Sceptile(254, Generation.Three, [Type.Grass], null, previousPokemon: 253),
Torchic(255, Generation.Three, [Type.Fire], SingleEvolution(256, 16)),
Combusken(
256,
Generation.Three,
[Type.Fire, Type.Fighting],
SingleEvolution(257, 36),
previousPokemon: 255,
),
Blaziken(
257,
Generation.Three,
[Type.Fire, Type.Fighting],
null,
previousPokemon: 256,
),
Mudkip(258, Generation.Three, [Type.Water], SingleEvolution(259, 16)),
Marshtomp(
259,
Generation.Three,
[Type.Water, Type.Ground],
SingleEvolution(260, 36),
previousPokemon: 258,
),
Swampert(
260,
Generation.Three,
[Type.Water, Type.Ground],
null,
previousPokemon: 259,
);
final int id;
final String properName;