Пример #1
0
 def move4PP(self):
     return convertByte(self.data, 0x65)
Пример #2
0
 def EVDef(self):
     return convertByte(self.data, 0x20)
Пример #3
0
 def EVSpe(self):
     return convertByte(self.data, 0x21)
Пример #4
0
 def EVHP(self):
     return convertByte(self.data, 0x1E)
Пример #5
0
 def EVAtk(self):
     return convertByte(self.data, 0x1F)
Пример #6
0
 def nature(self):
     return lookup.natures[convertByte(self.data, 0x1C)]
Пример #7
0
 def genderNum(self):
     return (convertByte(self.data, 0x1D) >> 1) & 3
Пример #8
0
 def ability(self):
     return lookup.abilities[convertByte(self.data, 0x14)]
Пример #9
0
 def level(self):
     return convertByte(self.data, 0xEC)
Пример #10
0
 def OTFriendship(self):
     return convertByte(self.data, 0xCA)
Пример #11
0
 def HTFriendship(self):
     return convertByte(self.data, 0xA2)
Пример #12
0
 def currentHandler(self):
     return convertByte(self.data, 0x93)