mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-21 17:25:15 -05:00
20 lines
553 B
C
20 lines
553 B
C
#ifndef PMDSKY_MOVES_1_H
|
|
#define PMDSKY_MOVES_1_H
|
|
|
|
#include "move.h"
|
|
#include "common.h"
|
|
|
|
// Initializes a move info struct.
|
|
// This sets f_exists and f_enabled_for_ai on the flags, the ID to the given ID, the PP to the max PP for the move ID, and the ginseng boost to 0.
|
|
// move: pointer to move to initialize
|
|
// move_id: move ID
|
|
void InitMove(struct move *move, enum move_id move_id);
|
|
|
|
void InitMoveCheckId(struct move* move, enum move_id move_id);
|
|
|
|
void GetInfoMoveGround(struct ground_move* move, enum move_id move_id);
|
|
|
|
|
|
|
|
#endif //PMDSKY_MOVES_1_H
|