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