Adds a bunch of abilities
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-11-19 18:12:10 +01:00
parent 67762af0e7
commit 6302ca9809
14 changed files with 378 additions and 3 deletions

View File

@@ -8,7 +8,6 @@ type Pokemon {
bool Shiny { get const; };
const Item@ HeldItem { get const; };
uint CurrentHealth { get const; };
const constString& ActiveAbility { get const; };
bool IsFainted { get const; };
uint MaxHealth { get const; };
const Species@ DisplaySpecies { get const; };
@@ -19,6 +18,7 @@ type Pokemon {
const narray<LearnedMove@>@ Moves { get const; };
float Weight { get const; set; };
float Height { get const; set; };
const constString& ActiveAbility { get const; };
bool HasHeldItem(const constString &in name) const;
void SetHeldItem(const constString &in name);
void SetHeldItem(const Item@ item);