10 lines
279 B
ActionScript
10 lines
279 B
ActionScript
|
shared interface Species {
|
||
|
const constString& Name { get const; }
|
||
|
uint16 Id { get const; }
|
||
|
float GenderRate { get const; }
|
||
|
uint8 CaptureRate { get const; }
|
||
|
Gender GetRandomGender() const;
|
||
|
const Forme@ GetForme(string key) const;
|
||
|
const Forme@ DefaultForme { get const; }
|
||
|
}
|