mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-09 14:14:59 +00:00
12 lines
266 B
Ruby
12 lines
266 B
Ruby
module PBSpecies
|
|
#couldn't figure out how to get the size of GameData::Species so fuck it, here's the hardcoded value
|
|
def PBSpecies.maxValue
|
|
return 176832
|
|
end
|
|
|
|
def PBSpecies.getName(species)
|
|
return GameData::Species.get(species).real_name
|
|
end
|
|
end
|
|
|