Fix Furfrou sprite names
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"textures": [
|
"textures": [
|
||||||
{
|
{
|
||||||
"image": "676_1.png",
|
"image": "676.png",
|
||||||
"format": "RGBA8888",
|
"format": "RGBA8888",
|
||||||
"size": {
|
"size": {
|
||||||
"w": 62,
|
"w": 62,
|
Before Width: | Height: | Size: 745 B After Width: | Height: | Size: 745 B |
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"textures": [
|
"textures": [
|
||||||
{
|
{
|
||||||
"image": "676_1b.png",
|
"image": "676.png",
|
||||||
"format": "RGBA8888",
|
"format": "RGBA8888",
|
||||||
"size": {
|
"size": {
|
||||||
"w": 62,
|
"w": 62,
|
Before Width: | Height: | Size: 754 B After Width: | Height: | Size: 754 B |
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"textures": [
|
"textures": [
|
||||||
{
|
{
|
||||||
"image": "676_1sb.png",
|
"image": "676.png",
|
||||||
"format": "RGBA8888",
|
"format": "RGBA8888",
|
||||||
"size": {
|
"size": {
|
||||||
"w": 62,
|
"w": 62,
|
Before Width: | Height: | Size: 754 B After Width: | Height: | Size: 754 B |
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"textures": [
|
"textures": [
|
||||||
{
|
{
|
||||||
"image": "676_1s.png",
|
"image": "676.png",
|
||||||
"format": "RGBA8888",
|
"format": "RGBA8888",
|
||||||
"size": {
|
"size": {
|
||||||
"w": 62,
|
"w": 62,
|
Before Width: | Height: | Size: 745 B After Width: | Height: | Size: 745 B |
|
@ -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 = {
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|