mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-09 22:24:58 +00:00
20 lines
439 B
Ruby
20 lines
439 B
Ruby
module PBEggGroups
|
|
Undiscovered = 0 # NoEggs, None, NA
|
|
Monster = 1
|
|
Water1 = 2
|
|
Bug = 3
|
|
Flying = 4
|
|
Field = 5 # Ground
|
|
Fairy = 6
|
|
Grass = 7 # Plant
|
|
Humanlike = 8 # Humanoid, Humanshape, Human
|
|
Water3 = 9
|
|
Mineral = 10
|
|
Amorphous = 11 # Indeterminate
|
|
Water2 = 12
|
|
Ditto = 13
|
|
Dragon = 14
|
|
|
|
def self.maxValue; 14; end
|
|
end
|