Restored method that was accidentally deleted

This commit is contained in:
Maruno17
2020-12-13 16:16:12 +00:00
parent 508b3fdf50
commit d4b5aa0ce7

View File

@@ -39,6 +39,10 @@ class PBTypes
return GameData::Type.get(type).pseudo_type
end
def PBTypes.isPhysicalType?(type)
return GameData::Type.get(type).physical?
end
def PBTypes.isSpecialType?(type)
return GameData::Type.get(type).special?
end