2023-12-15 23:07:32 -05:00
|
|
|
import SoundFade from "phaser3-rex-plugins/plugins/soundfade";
|
2024-06-24 09:14:18 +09:00
|
|
|
import i18next from "i18next";
|
2024-02-21 23:57:49 -05:00
|
|
|
import { Phase } from "./phase";
|
2023-12-15 23:07:32 -05:00
|
|
|
import BattleScene, { AnySound } from "./battle-scene";
|
|
|
|
import * as Utils from "./utils";
|
|
|
|
import { Mode } from "./ui/ui";
|
2024-06-22 02:19:56 +02:00
|
|
|
import { EGG_SEED, Egg } from "./data/egg";
|
2023-12-15 23:07:32 -05:00
|
|
|
import EggHatchSceneHandler from "./ui/egg-hatch-scene-handler";
|
2024-02-29 20:08:50 -05:00
|
|
|
import { PlayerPokemon } from "./field/pokemon";
|
2023-12-19 23:51:48 -05:00
|
|
|
import { achvs } from "./system/achv";
|
2024-03-07 22:43:15 -05:00
|
|
|
import PokemonInfoContainer from "./ui/pokemon-info-container";
|
2024-06-11 09:20:00 +08:00
|
|
|
import EggCounterContainer from "./ui/egg-counter-container";
|
|
|
|
import { EggCountChangedEvent } from "./events/egg";
|
2023-12-15 23:07:32 -05:00
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/**
|
|
|
|
* Class that represents egg hatching
|
|
|
|
*/
|
2024-02-21 23:57:49 -05:00
|
|
|
export class EggHatchPhase extends Phase {
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The egg that is hatching */
|
2023-12-15 23:07:32 -05:00
|
|
|
private egg: Egg;
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The number of eggs that are hatching */
|
2024-05-30 06:17:41 +08:00
|
|
|
private eggsToHatchCount: integer;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The container that lists how many eggs are hatching */
|
2024-06-11 09:20:00 +08:00
|
|
|
private eggCounterContainer: EggCounterContainer;
|
2024-05-30 06:17:41 +08:00
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The scene handler for egg hatching */
|
2024-04-05 14:04:01 -04:00
|
|
|
private eggHatchHandler: EggHatchSceneHandler;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser gameobject container that holds everything */
|
2023-12-15 23:07:32 -05:00
|
|
|
private eggHatchContainer: Phaser.GameObjects.Container;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser image that is the background */
|
2023-12-15 23:07:32 -05:00
|
|
|
private eggHatchBg: Phaser.GameObjects.Image;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser rectangle that overlays during the scene */
|
2023-12-15 23:07:32 -05:00
|
|
|
private eggHatchOverlay: Phaser.GameObjects.Rectangle;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser container that holds the egg */
|
2023-12-15 23:07:32 -05:00
|
|
|
private eggContainer: Phaser.GameObjects.Container;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser sprite of the egg */
|
2023-12-15 23:07:32 -05:00
|
|
|
private eggSprite: Phaser.GameObjects.Sprite;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser sprite of the cracks in an egg */
|
2023-12-15 23:07:32 -05:00
|
|
|
private eggCrackSprite: Phaser.GameObjects.Sprite;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser sprite that represents the overlaid light rays */
|
2023-12-15 23:07:32 -05:00
|
|
|
private eggLightraysOverlay: Phaser.GameObjects.Sprite;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser sprite of the hatched Pokemon */
|
2023-12-15 23:07:32 -05:00
|
|
|
private pokemonSprite: Phaser.GameObjects.Sprite;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The phaser sprite for shiny sparkles */
|
2023-12-26 12:29:18 -05:00
|
|
|
private pokemonShinySparkle: Phaser.GameObjects.Sprite;
|
2023-12-15 23:07:32 -05:00
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The {@link PokemonInfoContainer} of the newly hatched Pokemon */
|
2024-03-07 22:43:15 -05:00
|
|
|
private infoContainer: PokemonInfoContainer;
|
2023-12-19 23:51:48 -05:00
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The newly hatched {@link PlayerPokemon} */
|
2024-02-20 00:24:39 -05:00
|
|
|
private pokemon: PlayerPokemon;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The index of which egg move is unlocked. 0-2 is common, 3 is rare */
|
2024-02-25 12:45:41 -05:00
|
|
|
private eggMoveIndex: integer;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** Internal booleans representing if the egg is hatched, able to be skipped, or skipped */
|
2024-04-04 18:54:50 -04:00
|
|
|
private hatched: boolean;
|
2024-02-20 00:24:39 -05:00
|
|
|
private canSkip: boolean;
|
|
|
|
private skipped: boolean;
|
2024-05-31 17:34:02 -04:00
|
|
|
/** The sound effect being played when the egg is hatched */
|
2024-02-20 00:24:39 -05:00
|
|
|
private evolutionBgm: AnySound;
|
|
|
|
|
2024-05-30 06:17:41 +08:00
|
|
|
constructor(scene: BattleScene, egg: Egg, eggsToHatchCount: integer) {
|
2023-12-15 23:07:32 -05:00
|
|
|
super(scene);
|
|
|
|
|
|
|
|
this.egg = egg;
|
2024-05-30 06:17:41 +08:00
|
|
|
this.eggsToHatchCount = eggsToHatchCount;
|
2023-12-15 23:07:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
super.start();
|
|
|
|
|
|
|
|
this.scene.ui.setModeForceTransition(Mode.EGG_HATCH_SCENE).then(() => {
|
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
if (!this.egg) {
|
2023-12-15 23:07:32 -05:00
|
|
|
return this.end();
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
|
2023-12-19 23:51:48 -05:00
|
|
|
const eggIndex = this.scene.gameData.eggs.findIndex(e => e.id === this.egg.id);
|
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
if (eggIndex === -1) {
|
2023-12-19 23:51:48 -05:00
|
|
|
return this.end();
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-19 23:51:48 -05:00
|
|
|
|
|
|
|
this.scene.gameData.eggs.splice(eggIndex, 1);
|
|
|
|
|
2023-12-15 23:07:32 -05:00
|
|
|
this.scene.fadeOutBgm(null, false);
|
|
|
|
|
2024-04-05 14:04:01 -04:00
|
|
|
this.eggHatchHandler = this.scene.ui.getHandler() as EggHatchSceneHandler;
|
2023-12-15 23:07:32 -05:00
|
|
|
|
2024-04-05 14:04:01 -04:00
|
|
|
this.eggHatchContainer = this.eggHatchHandler.eggHatchContainer;
|
2023-12-15 23:07:32 -05:00
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
this.eggHatchBg = this.scene.add.image(0, 0, "default_bg");
|
2023-12-15 23:07:32 -05:00
|
|
|
this.eggHatchBg.setOrigin(0, 0);
|
|
|
|
this.eggHatchContainer.add(this.eggHatchBg);
|
|
|
|
|
|
|
|
this.eggContainer = this.scene.add.container(this.eggHatchBg.displayWidth / 2, this.eggHatchBg.displayHeight / 2);
|
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
this.eggSprite = this.scene.add.sprite(0, 0, "egg", `egg_${this.egg.getKey()}`);
|
|
|
|
this.eggCrackSprite = this.scene.add.sprite(0, 0, "egg_crack", "0");
|
2023-12-15 23:07:32 -05:00
|
|
|
this.eggCrackSprite.setVisible(false);
|
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
this.eggLightraysOverlay = this.scene.add.sprite((-this.eggHatchBg.displayWidth / 2) + 4, -this.eggHatchBg.displayHeight / 2, "egg_lightrays", "3");
|
2023-12-15 23:07:32 -05:00
|
|
|
this.eggLightraysOverlay.setOrigin(0, 0);
|
|
|
|
this.eggLightraysOverlay.setVisible(false);
|
|
|
|
|
|
|
|
this.eggContainer.add(this.eggSprite);
|
|
|
|
this.eggContainer.add(this.eggCrackSprite);
|
|
|
|
this.eggContainer.add(this.eggLightraysOverlay);
|
|
|
|
this.eggHatchContainer.add(this.eggContainer);
|
|
|
|
|
2024-06-11 09:20:00 +08:00
|
|
|
this.eggCounterContainer = new EggCounterContainer(this.scene, this.eggsToHatchCount);
|
|
|
|
this.eggHatchContainer.add(this.eggCounterContainer);
|
2024-05-30 06:17:41 +08:00
|
|
|
|
2024-04-21 18:22:33 -04:00
|
|
|
const getPokemonSprite = () => {
|
2024-05-23 17:03:10 +02:00
|
|
|
const ret = this.scene.add.sprite(this.eggHatchBg.displayWidth / 2, this.eggHatchBg.displayHeight / 2, "pkmn__sub");
|
2024-04-21 18:22:33 -04:00
|
|
|
ret.setPipeline(this.scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], ignoreTimeTint: true });
|
|
|
|
return ret;
|
|
|
|
};
|
2023-12-15 23:07:32 -05:00
|
|
|
|
|
|
|
this.eggHatchContainer.add((this.pokemonSprite = getPokemonSprite()));
|
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
this.pokemonShinySparkle = this.scene.add.sprite(this.pokemonSprite.x, this.pokemonSprite.y, "shiny");
|
2023-12-26 12:29:18 -05:00
|
|
|
this.pokemonShinySparkle.setVisible(false);
|
|
|
|
|
|
|
|
this.eggHatchContainer.add(this.pokemonShinySparkle);
|
|
|
|
|
2023-12-15 23:07:32 -05:00
|
|
|
this.eggHatchOverlay = this.scene.add.rectangle(0, -this.scene.game.canvas.height / 6, this.scene.game.canvas.width / 6, this.scene.game.canvas.height / 6, 0xFFFFFF);
|
|
|
|
this.eggHatchOverlay.setOrigin(0, 0);
|
|
|
|
this.eggHatchOverlay.setAlpha(0);
|
|
|
|
this.scene.fieldUI.add(this.eggHatchOverlay);
|
|
|
|
|
2024-03-07 22:43:15 -05:00
|
|
|
this.infoContainer = new PokemonInfoContainer(this.scene);
|
|
|
|
this.infoContainer.setup();
|
2024-01-05 22:24:05 -05:00
|
|
|
|
2023-12-19 23:51:48 -05:00
|
|
|
this.eggHatchContainer.add(this.infoContainer);
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
// The game will try to unfuse any Pokemon even though eggs should not generate fused Pokemon in the first place
|
2023-12-15 23:07:32 -05:00
|
|
|
const pokemon = this.generatePokemon();
|
2024-05-23 17:03:10 +02:00
|
|
|
if (pokemon.fusionSpecies) {
|
2023-12-31 13:20:28 -05:00
|
|
|
pokemon.clearFusionSpecies();
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
|
|
|
|
this.pokemonSprite.setVisible(false);
|
|
|
|
|
2024-02-20 00:24:39 -05:00
|
|
|
this.pokemon = pokemon;
|
2023-12-15 23:07:32 -05:00
|
|
|
|
|
|
|
pokemon.loadAssets().then(() => {
|
2024-04-04 18:54:50 -04:00
|
|
|
this.canSkip = true;
|
|
|
|
|
2024-02-20 00:24:39 -05:00
|
|
|
this.scene.time.delayedCall(1000, () => {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (!this.hatched) {
|
|
|
|
this.evolutionBgm = this.scene.playSoundWithoutBgm("evolution");
|
|
|
|
}
|
2024-02-20 00:24:39 -05:00
|
|
|
});
|
2023-12-15 23:07:32 -05:00
|
|
|
|
|
|
|
this.scene.time.delayedCall(2000, () => {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (this.hatched) {
|
2024-02-20 00:24:39 -05:00
|
|
|
return;
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
this.eggCrackSprite.setVisible(true);
|
|
|
|
this.doSpray(1, this.eggSprite.displayHeight / -2);
|
|
|
|
this.doEggShake(2).then(() => {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (this.hatched) {
|
2024-04-06 21:48:48 -04:00
|
|
|
return;
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
this.scene.time.delayedCall(1000, () => {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (this.hatched) {
|
2024-02-20 00:24:39 -05:00
|
|
|
return;
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
this.doSpray(2, this.eggSprite.displayHeight / -4);
|
2024-05-23 17:03:10 +02:00
|
|
|
this.eggCrackSprite.setFrame("1");
|
|
|
|
this.scene.time.delayedCall(125, () => this.eggCrackSprite.setFrame("2"));
|
2023-12-15 23:07:32 -05:00
|
|
|
this.doEggShake(4).then(() => {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (this.hatched) {
|
2024-02-20 00:24:39 -05:00
|
|
|
return;
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
this.scene.time.delayedCall(1000, () => {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (this.hatched) {
|
2024-02-20 00:24:39 -05:00
|
|
|
return;
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
|
|
|
this.scene.playSound("egg_crack");
|
2023-12-15 23:07:32 -05:00
|
|
|
this.doSpray(4);
|
2024-05-23 17:03:10 +02:00
|
|
|
this.eggCrackSprite.setFrame("3");
|
|
|
|
this.scene.time.delayedCall(125, () => this.eggCrackSprite.setFrame("4"));
|
2023-12-15 23:07:32 -05:00
|
|
|
this.doEggShake(8, 2).then(() => {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (!this.hatched) {
|
2024-02-20 00:24:39 -05:00
|
|
|
this.doHatch();
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2024-05-23 17:03:10 +02:00
|
|
|
});
|
2023-12-15 23:07:32 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2024-04-06 21:48:48 -04:00
|
|
|
|
2024-04-05 14:04:01 -04:00
|
|
|
end() {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (this.scene.findPhase((p) => p instanceof EggHatchPhase)) {
|
2024-04-05 17:50:01 -04:00
|
|
|
this.eggHatchHandler.clear();
|
2024-05-23 17:03:10 +02:00
|
|
|
} else {
|
2024-04-06 21:48:48 -04:00
|
|
|
this.scene.time.delayedCall(250, () => this.scene.setModifiersVisible(true));
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2024-04-05 17:50:01 -04:00
|
|
|
super.end();
|
2024-04-05 14:04:01 -04:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/**
|
|
|
|
* Function that animates egg shaking
|
|
|
|
* @param intensity of horizontal shaking. Doubled on the first call (where count is 0)
|
|
|
|
* @param repeatCount the number of times this function should be called (asynchronous recursion?!?)
|
|
|
|
* @param count the current number of times this function has been called.
|
|
|
|
* @returns nothing since it's a Promise<void>
|
|
|
|
*/
|
2023-12-15 23:07:32 -05:00
|
|
|
doEggShake(intensity: number, repeatCount?: integer, count?: integer): Promise<void> {
|
|
|
|
return new Promise(resolve => {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (repeatCount === undefined) {
|
2023-12-15 23:07:32 -05:00
|
|
|
repeatCount = 0;
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
|
|
|
if (count === undefined) {
|
2023-12-15 23:07:32 -05:00
|
|
|
count = 0;
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
|
|
|
this.scene.playSound("pb_move");
|
2023-12-15 23:07:32 -05:00
|
|
|
this.scene.tweens.add({
|
|
|
|
targets: this.eggContainer,
|
|
|
|
x: `-=${intensity / (count ? 1 : 2)}`,
|
2024-05-23 17:03:10 +02:00
|
|
|
ease: "Sine.easeInOut",
|
2023-12-15 23:07:32 -05:00
|
|
|
duration: 125,
|
|
|
|
onComplete: () => {
|
|
|
|
this.scene.tweens.add({
|
|
|
|
targets: this.eggContainer,
|
|
|
|
x: `+=${intensity}`,
|
2024-05-23 17:03:10 +02:00
|
|
|
ease: "Sine.easeInOut",
|
2023-12-15 23:07:32 -05:00
|
|
|
duration: 250,
|
|
|
|
onComplete: () => {
|
|
|
|
count++;
|
2024-05-23 17:03:10 +02:00
|
|
|
if (count < repeatCount) {
|
2023-12-15 23:07:32 -05:00
|
|
|
return this.doEggShake(intensity, repeatCount, count).then(() => resolve());
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2023-12-15 23:07:32 -05:00
|
|
|
this.scene.tweens.add({
|
|
|
|
targets: this.eggContainer,
|
|
|
|
x: `-=${intensity / 2}`,
|
2024-05-23 17:03:10 +02:00
|
|
|
ease: "Sine.easeInOut",
|
2023-12-15 23:07:32 -05:00
|
|
|
duration: 125,
|
|
|
|
onComplete: () => resolve()
|
|
|
|
});
|
|
|
|
}
|
2024-05-23 17:03:10 +02:00
|
|
|
});
|
2023-12-15 23:07:32 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/**
|
|
|
|
* Tries to skip the hatching animation
|
|
|
|
* @returns false if cannot be skipped or already skipped. True otherwise
|
|
|
|
*/
|
2024-02-20 00:24:39 -05:00
|
|
|
trySkip(): boolean {
|
2024-05-23 17:03:10 +02:00
|
|
|
if (!this.canSkip || this.skipped) {
|
2024-02-20 00:24:39 -05:00
|
|
|
return false;
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2024-06-16 00:48:09 -04:00
|
|
|
if (this.eggCounterContainer.eggCountText?.data === undefined) {
|
|
|
|
return false;
|
|
|
|
}
|
2024-02-20 00:24:39 -05:00
|
|
|
this.skipped = true;
|
2024-05-23 17:03:10 +02:00
|
|
|
if (!this.hatched) {
|
2024-04-04 18:54:50 -04:00
|
|
|
this.doHatch();
|
2024-05-23 17:03:10 +02:00
|
|
|
} else {
|
2024-04-04 18:54:50 -04:00
|
|
|
this.doReveal();
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2024-02-20 00:24:39 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/**
|
|
|
|
* Plays the animation of an egg hatch
|
|
|
|
*/
|
2024-02-20 00:24:39 -05:00
|
|
|
doHatch(): void {
|
|
|
|
this.canSkip = false;
|
2024-04-04 18:54:50 -04:00
|
|
|
this.hatched = true;
|
2024-05-23 17:03:10 +02:00
|
|
|
if (this.evolutionBgm) {
|
2024-04-04 18:54:50 -04:00
|
|
|
SoundFade.fadeOut(this.scene, this.evolutionBgm, Utils.fixedInt(100));
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
|
|
|
for (let e = 0; e < 5; e++) {
|
|
|
|
this.scene.time.delayedCall(Utils.fixedInt(375 * e), () => this.scene.playSound("egg_hatch", { volume: 1 - (e * 0.2) }));
|
|
|
|
}
|
2024-02-20 00:24:39 -05:00
|
|
|
this.eggLightraysOverlay.setVisible(true);
|
2024-05-23 17:03:10 +02:00
|
|
|
this.eggLightraysOverlay.play("egg_lightrays");
|
2024-02-20 00:24:39 -05:00
|
|
|
this.scene.tweens.add({
|
|
|
|
duration: Utils.fixedInt(125),
|
|
|
|
targets: this.eggHatchOverlay,
|
|
|
|
alpha: 1,
|
2024-05-23 17:03:10 +02:00
|
|
|
ease: "Cubic.easeIn",
|
2024-04-04 18:54:50 -04:00
|
|
|
onComplete: () => {
|
|
|
|
this.skipped = false;
|
|
|
|
this.canSkip = true;
|
|
|
|
}
|
2024-02-20 00:24:39 -05:00
|
|
|
});
|
|
|
|
this.scene.time.delayedCall(Utils.fixedInt(1500), () => {
|
2024-04-04 18:54:50 -04:00
|
|
|
this.canSkip = false;
|
2024-05-23 17:03:10 +02:00
|
|
|
if (!this.skipped) {
|
2024-04-04 18:54:50 -04:00
|
|
|
this.doReveal();
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2024-04-04 18:54:50 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/**
|
|
|
|
* Function to do the logic and animation of completing a hatch and revealing the Pokemon
|
|
|
|
*/
|
2024-04-04 18:54:50 -04:00
|
|
|
doReveal(): void {
|
|
|
|
const isShiny = this.pokemon.isShiny();
|
2024-05-23 17:03:10 +02:00
|
|
|
if (this.pokemon.species.subLegendary) {
|
2024-05-05 11:05:22 -04:00
|
|
|
this.scene.validateAchv(achvs.HATCH_SUB_LEGENDARY);
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
|
|
|
if (this.pokemon.species.legendary) {
|
2024-04-04 18:54:50 -04:00
|
|
|
this.scene.validateAchv(achvs.HATCH_LEGENDARY);
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
|
|
|
if (this.pokemon.species.mythical) {
|
2024-05-05 11:05:22 -04:00
|
|
|
this.scene.validateAchv(achvs.HATCH_MYTHICAL);
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
|
|
|
if (isShiny) {
|
2024-04-04 18:54:50 -04:00
|
|
|
this.scene.validateAchv(achvs.HATCH_SHINY);
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2024-04-04 18:54:50 -04:00
|
|
|
this.eggContainer.setVisible(false);
|
|
|
|
this.pokemonSprite.play(this.pokemon.getSpriteKey(true));
|
2024-05-23 17:03:10 +02:00
|
|
|
this.pokemonSprite.setPipelineData("ignoreTimeTint", true);
|
|
|
|
this.pokemonSprite.setPipelineData("spriteKey", this.pokemon.getSpriteKey());
|
|
|
|
this.pokemonSprite.setPipelineData("shiny", this.pokemon.shiny);
|
|
|
|
this.pokemonSprite.setPipelineData("variant", this.pokemon.variant);
|
2024-04-04 18:54:50 -04:00
|
|
|
this.pokemonSprite.setVisible(true);
|
|
|
|
this.scene.time.delayedCall(Utils.fixedInt(250), () => {
|
2024-06-11 09:20:00 +08:00
|
|
|
this.eggsToHatchCount--;
|
|
|
|
this.eggHatchHandler.eventTarget.dispatchEvent(new EggCountChangedEvent(this.eggsToHatchCount));
|
2024-04-04 18:54:50 -04:00
|
|
|
this.pokemon.cry();
|
|
|
|
if (isShiny) {
|
|
|
|
this.scene.time.delayedCall(Utils.fixedInt(500), () => {
|
2024-05-23 17:03:10 +02:00
|
|
|
this.pokemonShinySparkle.play(`sparkle${this.pokemon.variant ? `_${this.pokemon.variant + 1}` : ""}`);
|
|
|
|
this.scene.playSound("sparkle");
|
2024-02-20 00:24:39 -05:00
|
|
|
});
|
2024-04-04 18:54:50 -04:00
|
|
|
}
|
|
|
|
this.scene.time.delayedCall(Utils.fixedInt(!this.skipped ? !isShiny ? 1250 : 1750 : !isShiny ? 250 : 750), () => {
|
|
|
|
this.infoContainer.show(this.pokemon, false, this.skipped ? 2 : 1);
|
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
this.scene.playSoundWithoutBgm("evolution_fanfare");
|
2024-05-24 01:45:04 +02:00
|
|
|
|
2024-06-24 09:14:18 +09:00
|
|
|
this.scene.ui.showText(i18next.t("egg:hatchFromTheEgg", { pokemonName: this.pokemon.name }), null, () => {
|
2024-04-04 18:54:50 -04:00
|
|
|
this.scene.gameData.updateSpeciesDexIvs(this.pokemon.species.speciesId, this.pokemon.ivs);
|
|
|
|
this.scene.gameData.setPokemonCaught(this.pokemon, true, true).then(() => {
|
|
|
|
this.scene.gameData.setEggMoveUnlocked(this.pokemon.species, this.eggMoveIndex).then(() => {
|
|
|
|
this.scene.ui.showText(null, 0);
|
|
|
|
this.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}, null, true, 3000);
|
|
|
|
//this.scene.time.delayedCall(Utils.fixedInt(4250), () => this.scene.playBgm());
|
2024-02-20 00:24:39 -05:00
|
|
|
});
|
2024-04-04 18:54:50 -04:00
|
|
|
});
|
|
|
|
this.scene.tweens.add({
|
|
|
|
duration: Utils.fixedInt(this.skipped ? 500 : 3000),
|
|
|
|
targets: this.eggHatchOverlay,
|
|
|
|
alpha: 0,
|
2024-05-23 17:03:10 +02:00
|
|
|
ease: "Cubic.easeOut"
|
2024-02-20 00:24:39 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/**
|
|
|
|
* Helper function to generate sine. (Why is this not a Utils?!?)
|
|
|
|
* @param index random number from 0-7 being passed in to scale pi/128
|
|
|
|
* @param amplitude Scaling
|
|
|
|
* @returns a number
|
|
|
|
*/
|
2023-12-15 23:07:32 -05:00
|
|
|
sin(index: integer, amplitude: integer): number {
|
|
|
|
return amplitude * Math.sin(index * (Math.PI / 128));
|
|
|
|
}
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/**
|
|
|
|
* Animates spraying
|
|
|
|
* @param intensity number of times this is repeated (this is a badly named variable)
|
|
|
|
* @param offsetY how much to offset the Y coordinates
|
|
|
|
*/
|
2023-12-15 23:07:32 -05:00
|
|
|
doSpray(intensity: integer, offsetY?: number) {
|
|
|
|
this.scene.tweens.addCounter({
|
|
|
|
repeat: intensity,
|
|
|
|
duration: Utils.getFrameMs(1),
|
|
|
|
onRepeat: () => {
|
|
|
|
this.doSprayParticle(Utils.randInt(8), offsetY || 0);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
/**
|
|
|
|
* Animates a particle used in the spray animation
|
|
|
|
* @param trigIndex Used to modify the particle's vertical speed, is a random number from 0-7
|
|
|
|
* @param offsetY how much to offset the Y coordinate
|
|
|
|
*/
|
2023-12-15 23:07:32 -05:00
|
|
|
doSprayParticle(trigIndex: integer, offsetY: number) {
|
|
|
|
const initialX = this.eggHatchBg.displayWidth / 2;
|
|
|
|
const initialY = this.eggHatchBg.displayHeight / 2 + offsetY;
|
2024-05-23 17:03:10 +02:00
|
|
|
const shardKey = !this.egg.isManaphyEgg() ? this.egg.tier.toString() : "1";
|
|
|
|
const particle = this.scene.add.image(initialX, initialY, "egg_shard", `${shardKey}_${Math.floor(trigIndex / 2)}`);
|
2023-12-15 23:07:32 -05:00
|
|
|
this.eggHatchContainer.add(particle);
|
|
|
|
|
|
|
|
let f = 0;
|
|
|
|
let yOffset = 0;
|
2024-05-23 17:03:10 +02:00
|
|
|
const speed = 3 - Utils.randInt(8);
|
|
|
|
const amp = 24 + Utils.randInt(32);
|
2023-12-15 23:07:32 -05:00
|
|
|
|
|
|
|
const particleTimer = this.scene.tweens.addCounter({
|
|
|
|
repeat: -1,
|
|
|
|
duration: Utils.getFrameMs(1),
|
|
|
|
onRepeat: () => {
|
|
|
|
updateParticle();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const updateParticle = () => {
|
2024-04-04 18:54:50 -04:00
|
|
|
const speedMultiplier = this.skipped ? 6 : 1;
|
|
|
|
yOffset += speedMultiplier;
|
2023-12-15 23:07:32 -05:00
|
|
|
if (trigIndex < 160) {
|
|
|
|
particle.setPosition(initialX + (speed * f) / 3, initialY + yOffset);
|
|
|
|
particle.y += -this.sin(trigIndex, amp);
|
2024-05-23 17:03:10 +02:00
|
|
|
if (f > 108) {
|
2023-12-15 23:07:32 -05:00
|
|
|
particle.setScale((1 - (f - 108) / 20));
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|
2024-04-04 18:54:50 -04:00
|
|
|
trigIndex += 2 * speedMultiplier;
|
|
|
|
f += speedMultiplier;
|
2023-12-15 23:07:32 -05:00
|
|
|
} else {
|
|
|
|
particle.destroy();
|
|
|
|
particleTimer.remove();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
updateParticle();
|
|
|
|
}
|
|
|
|
|
2024-05-31 17:34:02 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a Pokemon to be hatched by the egg
|
|
|
|
* @returns the hatched PlayerPokemon
|
|
|
|
*/
|
2023-12-31 13:20:28 -05:00
|
|
|
generatePokemon(): PlayerPokemon {
|
|
|
|
let ret: PlayerPokemon;
|
2023-12-19 23:51:48 -05:00
|
|
|
|
2024-03-01 22:18:39 -05:00
|
|
|
this.scene.executeWithSeedOffset(() => {
|
2024-06-22 02:19:56 +02:00
|
|
|
ret = this.egg.generatePlayerPokemon(this.scene);
|
|
|
|
this.eggMoveIndex = this.egg.eggMoveIndex;
|
2024-03-03 21:30:11 -05:00
|
|
|
|
2024-02-25 12:45:41 -05:00
|
|
|
}, this.egg.id, EGG_SEED.toString());
|
2024-05-24 01:45:04 +02:00
|
|
|
|
2023-12-19 23:51:48 -05:00
|
|
|
return ret;
|
2023-12-15 23:07:32 -05:00
|
|
|
}
|
2024-05-23 17:03:10 +02:00
|
|
|
}
|