mirror of
https://github.com/pret/pmd-sky.git
synced 2026-08-06 03:03:38 -05:00
15 lines
349 B
C
15 lines
349 B
C
#include "moves_2.h"
|
|
#include "move_data.h"
|
|
|
|
extern struct move_data_table_outer DUNGEON_MOVE_TABLES;
|
|
|
|
s16 GetMoveTargetAndRange(struct move *move, bool8 is_ai)
|
|
{
|
|
return DUNGEON_MOVE_TABLES.moves->moves[move->id].target_range[is_ai];
|
|
}
|
|
|
|
enum type_id GetMoveType(struct move* move)
|
|
{
|
|
return DUNGEON_MOVE_TABLES.moves->moves[move->id].type;
|
|
}
|