Fix Furfrou sprite names

pull/12/head
Flashfyre 2023-12-08 18:01:30 -05:00
parent e7ec5b4f88
commit c3244cfdc3
10 changed files with 4 additions and 12 deletions

View File

@ -1,7 +1,7 @@
{ {
"textures": [ "textures": [
{ {
"image": "676_1.png", "image": "676.png",
"format": "RGBA8888", "format": "RGBA8888",
"size": { "size": {
"w": 62, "w": 62,

View File

Before

Width:  |  Height:  |  Size: 745 B

After

Width:  |  Height:  |  Size: 745 B

View File

@ -1,7 +1,7 @@
{ {
"textures": [ "textures": [
{ {
"image": "676_1b.png", "image": "676.png",
"format": "RGBA8888", "format": "RGBA8888",
"size": { "size": {
"w": 62, "w": 62,

View File

Before

Width:  |  Height:  |  Size: 754 B

After

Width:  |  Height:  |  Size: 754 B

View File

@ -1,7 +1,7 @@
{ {
"textures": [ "textures": [
{ {
"image": "676_1sb.png", "image": "676.png",
"format": "RGBA8888", "format": "RGBA8888",
"size": { "size": {
"w": 62, "w": 62,

View File

Before

Width:  |  Height:  |  Size: 754 B

After

Width:  |  Height:  |  Size: 754 B

View File

@ -1,7 +1,7 @@
{ {
"textures": [ "textures": [
{ {
"image": "676_1s.png", "image": "676.png",
"format": "RGBA8888", "format": "RGBA8888",
"size": { "size": {
"w": 62, "w": 62,

View File

Before

Width:  |  Height:  |  Size: 745 B

After

Width:  |  Height:  |  Size: 745 B

View File

@ -2108,13 +2108,6 @@ export function initSpecies() {
), ),
new PokemonSpecies(Species.PALDEA_WOOPER, "Wooper", 9, false, false, false, "Water Fish Pokémon", Type.POISON, Type.GROUND, 0.4, 11, Abilities.POISON_POINT, Abilities.WATER_ABSORB, Abilities.UNAWARE, 210, 55, 45, 45, 25, 25, 15, 255, 50, null, GrowthRate.MEDIUM_FAST, 50, true), new PokemonSpecies(Species.PALDEA_WOOPER, "Wooper", 9, false, false, false, "Water Fish Pokémon", Type.POISON, Type.GROUND, 0.4, 11, Abilities.POISON_POINT, Abilities.WATER_ABSORB, Abilities.UNAWARE, 210, 55, 45, 45, 25, 25, 15, 255, 50, null, GrowthRate.MEDIUM_FAST, 50, true),
); );
var s = '';
for (let species of allSpecies.filter(s => s.generation >= 6 && !pokemonPrevolutions.hasOwnProperty(s.speciesId))) {
s += ` [Species.${Species[species.speciesId]}]: 3,\n`
}
console.log(s)
} }
export const speciesStarters = { export const speciesStarters = {

View File

@ -57,7 +57,6 @@ export default class PokemonIconAnimHandler {
: 0; : 0;
const yDelta = this.getModeYDelta(mode); const yDelta = this.getModeYDelta(mode);
i.y += yDelta + lastYDelta; i.y += yDelta + lastYDelta;
console.log(yDelta - lastYDelta)
} }
this.icons.set(i, mode); this.icons.set(i, mode);
} }