pmd-sky/include/moves_1.h
2026-01-09 10:00:14 -08:00

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