mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-24 23:09:54 -05:00
14 lines
328 B
C
14 lines
328 B
C
#include "moves_4.h"
|
|
|
|
extern struct move_data_table_outer DUNGEON_MOVE_TABLES;
|
|
|
|
u8 GetMoveAccuracyOrAiChance(struct move *move, enum accuracy_type which)
|
|
{
|
|
return DUNGEON_MOVE_TABLES.moves->moves[move->id].accuracy[which];
|
|
}
|
|
|
|
u8 GetMoveBasePp(struct move* move)
|
|
{
|
|
return DUNGEON_MOVE_TABLES.moves->moves[move->id].pp;
|
|
}
|