Skip to content

Commit 38d29ff

Browse files
committed
Update Pokemon icons sheet
1 parent dd3dc08 commit 38d29ff

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

play.pokemonshowdown.com/src/battle-dex-data.ts

+2
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,8 @@ const BattlePokemonIconIndexes: {[id: string]: number} = {
622622
cresceidon: 1512 + 73,
623623
chuggalong: 1512 + 74,
624624
shox: 1512 + 75,
625+
chuggon: 1512 + 76,
626+
draggalong: 1512 + 77,
625627
};
626628

627629
const BattlePokemonIconIndexesLeft: {[id: string]: number} = {

play.pokemonshowdown.com/src/battle-dex.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ const Dex = new class implements ModdedDex {
732732
let top = Math.floor(num / 12) * 30;
733733
let left = (num % 12) * 40;
734734
let fainted = ((pokemon as Pokemon | ServerPokemon)?.fainted ? `;opacity:.3;filter:grayscale(100%) brightness(.5)` : ``);
735-
return `background:transparent url(${Dex.resourcePrefix}sprites/pokemonicons-sheet.png?v17) no-repeat scroll -${left}px -${top}px${fainted}`;
735+
return `background:transparent url(${Dex.resourcePrefix}sprites/pokemonicons-sheet.png?v18) no-repeat scroll -${left}px -${top}px${fainted}`;
736736
}
737737

738738
getTeambuilderSpriteData(pokemon: any, gen: number = 0): TeambuilderSpriteData {

0 commit comments

Comments
 (0)