Compare commits
7 Commits
6216eeae60
...
0a7de5e6a9
Author | SHA1 | Date | |
---|---|---|---|
|
0a7de5e6a9 | ||
|
028deedd59 | ||
|
0f97000cb3 | ||
|
845ed61ee8 | ||
|
8b9a37137e | ||
|
5b620fc846 | ||
|
3761ccf539 |
Before Width: | Height: | Size: 237 B After Width: | Height: | Size: 225 B |
BIN
public/images/ui/champion_ribbon_bronze.png
Normal file
After Width: | Height: | Size: 200 B |
BIN
public/images/ui/champion_ribbon_diamond.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
public/images/ui/champion_ribbon_silver.png
Normal file
After Width: | Height: | Size: 222 B |
Before Width: | Height: | Size: 237 B After Width: | Height: | Size: 225 B |
BIN
public/images/ui/legacy/champion_ribbon_bronze.png
Normal file
After Width: | Height: | Size: 200 B |
BIN
public/images/ui/legacy/champion_ribbon_diamond.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
public/images/ui/legacy/champion_ribbon_silver.png
Normal file
After Width: | Height: | Size: 222 B |
@ -1865,27 +1865,43 @@ export const trainerConfigs: TrainerConfigs = {
|
||||
.setPartyMemberFunc(
|
||||
0,
|
||||
getRandomPartyMemberFunc([
|
||||
SpeciesId.METAPOD,
|
||||
SpeciesId.LEDYBA,
|
||||
SpeciesId.CLEFFA,
|
||||
SpeciesId.WOOPER,
|
||||
SpeciesId.TEDDIURSA,
|
||||
SpeciesId.REMORAID,
|
||||
SpeciesId.HOUNDOUR,
|
||||
SpeciesId.SILCOON,
|
||||
SpeciesId.PLUSLE,
|
||||
SpeciesId.VOLBEAT,
|
||||
SpeciesId.PACHIRISU,
|
||||
SpeciesId.SILCOON,
|
||||
SpeciesId.METAPOD,
|
||||
SpeciesId.IGGLYBUFF,
|
||||
SpeciesId.SPINDA,
|
||||
SpeciesId.BONSLY,
|
||||
SpeciesId.PETILIL,
|
||||
SpeciesId.EEVEE,
|
||||
SpeciesId.SPRITZEE,
|
||||
SpeciesId.MILCERY,
|
||||
SpeciesId.PICHU,
|
||||
]),
|
||||
)
|
||||
.setPartyMemberFunc(
|
||||
1,
|
||||
getRandomPartyMemberFunc(
|
||||
[
|
||||
SpeciesId.KAKUNA,
|
||||
SpeciesId.SPINARAK,
|
||||
SpeciesId.IGGLYBUFF,
|
||||
SpeciesId.PALDEA_WOOPER,
|
||||
SpeciesId.PHANPY,
|
||||
SpeciesId.MANTYKE,
|
||||
SpeciesId.ELECTRIKE,
|
||||
SpeciesId.CASCOON,
|
||||
SpeciesId.MINUN,
|
||||
SpeciesId.ILLUMISE,
|
||||
SpeciesId.EMOLGA,
|
||||
SpeciesId.CASCOON,
|
||||
SpeciesId.KAKUNA,
|
||||
SpeciesId.CLEFFA,
|
||||
SpeciesId.SPINDA,
|
||||
SpeciesId.MIME_JR,
|
||||
SpeciesId.COTTONEE,
|
||||
SpeciesId.SWIRLIX,
|
||||
SpeciesId.FIDOUGH,
|
||||
SpeciesId.EEVEE,
|
||||
],
|
||||
TrainerSlot.TRAINER_PARTNER,
|
||||
|