Update pokemon.ts

This commit is contained in:
PsychedelicSeal 2024-10-29 22:17:32 -06:00
parent b3b439a03b
commit f5e260bee4

View File

@ -89,13 +89,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
public exp: integer; public exp: integer;
public levelExp: integer; public levelExp: integer;
public gender: Gender; public gender: Gender;
private _hp: number; public hp: integer;
public get hp() {
return this._hp;
}
public set hp(hp: number) {
this._hp = hp;
}
public stats: integer[]; public stats: integer[];
public ivs: integer[]; public ivs: integer[];
public nature: Nature; public nature: Nature;