Gen7Data/Scripts/Interfaces/Species.astypedef

10 lines
293 B
Plaintext
Raw Normal View History

2021-10-23 12:20:18 +00:00
type Species {
const constString& Name { get const; };
uint16 Id { get const; };
float GenderRate { get const; };
uint8 CaptureRate { get const; };
const Forme@ DefaultForme { get const; };
Gender GetRandomGender() const;
const Forme@ GetForme(string key) const;
}