summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-06-13 12:30:58 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-06-13 12:30:58 -0400
commit3646495249e8e553fb0335ffd287f979499204ce (patch)
treeae982bd185d32f70f59a68adf6fdfd683eb785d1 /include
parente81dfc98e26bece01763110254648d7c20cb198d (diff)
Through AddBoxMonData
Diffstat (limited to 'include')
-rw-r--r--include/move_data.h2
-rw-r--r--include/pokemon.h5
2 files changed, 4 insertions, 3 deletions
diff --git a/include/move_data.h b/include/move_data.h
index d4e3c128..975bcf8d 100644
--- a/include/move_data.h
+++ b/include/move_data.h
@@ -1,6 +1,6 @@
#ifndef POKEDIAMOND_MOVE_DATA_H
#define POKEDIAMOND_MOVE_DATA_H
-u32 FUN_0206AB30(u16 move, u8 ppUp);
+int FUN_0206AB30(u16 move, u8 ppUp);
#endif //POKEDIAMOND_MOVE_DATA_H
diff --git a/include/pokemon.h b/include/pokemon.h
index 451c7d1b..d2166c22 100644
--- a/include/pokemon.h
+++ b/include/pokemon.h
@@ -504,7 +504,8 @@ void SetMonDataInternal(struct Pokemon * pokemon, int attr, void * ptr);
void SetMonData(struct Pokemon * pokemon, int attr, void * ptr);
void SetBoxMonDataInternal(struct BoxPokemon * pokemon, int attr, void * ptr);
void SetBoxMonData(struct BoxPokemon * pokemon, int attr, void * ptr);
-void AddMonData(struct Pokemon * pokemon, int attr, u32 amount);
-void AddBoxMonData(struct Pokemon * pokemon, int attr, u32 amount);
+void AddMonData(struct Pokemon * pokemon, int attr, int amount);
+void AddMonDataInternal(struct Pokemon * pokemon, int attr, int amount);
+void AddBoxMonData(struct BoxPokemon * pokemon, int attr, int amount);
#endif //POKEDIAMOND_POKEMON_H