Example #1
0
 def move3(self):
     return lookup.moves[convertWord(self.data, 0x5E)]
Example #2
0
 def move4(self):
     return lookup.moves[convertWord(self.data, 0x60)]
Example #3
0
 def TID(self):
     return convertWord(self.data, 0xC)
Example #4
0
 def SID(self):
     return convertWord(self.data, 0xE)
Example #5
0
 def Spe(self):
     return convertWord(self.data, 0xF8)
Example #6
0
 def heldItem(self):
     return lookup.items[convertWord(self.data, 0xA)]
Example #7
0
 def SpA(self):
     return convertWord(self.data, 0xFA)
Example #8
0
 def SpD(self):
     return convertWord(self.data, 0xFC)
Example #9
0
 def Def(self):
     return convertWord(self.data, 0xF6)
Example #10
0
 def speciesNum(self):
     return convertWord(self.data, 0x8)
Example #11
0
 def Atk(self):
     return convertWord(self.data, 0xF4)
Example #12
0
 def HP(self):
     return convertWord(self.data, 0xF2)
Example #13
0
 def HPCurrent(self):
     return convertWord(self.data, 0xF0)