mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-09-25 19:00:04 -05:00
a quick function to set pokemon hp in battle
This commit is contained in:
@@ -523,6 +523,13 @@ class crystal(object):
|
||||
self.vba.write_memory_at(0xd216, 0)
|
||||
self.vba.write_memory_at(0xd217, 1)
|
||||
|
||||
def set_battle_mon_hp(self, hp):
|
||||
"""
|
||||
Set the BattleMonHP variable to the given hp.
|
||||
"""
|
||||
self.vba.write_memory_at(0xc63c, hp / 0x100)
|
||||
self.vba.write_memory_at(0xc63c + 1, hp % 0x100)
|
||||
|
||||
def nstep(self, steplimit=500):
|
||||
"""
|
||||
Steps the CPU forward and calls some functions in between each step.
|
||||
|
||||
Reference in New Issue
Block a user