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