mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-21 17:25:15 -05:00
24 lines
699 B
C
24 lines
699 B
C
#ifndef PMDSKY_MOVES_H
|
|
#define PMDSKY_MOVES_H
|
|
|
|
#include "move.h"
|
|
|
|
// Gets the maximum PP for a given move.
|
|
// return: max PP for the given move, capped at 99
|
|
u32 GetMaxPp(struct move *move);
|
|
|
|
// Gets the maximum Ginseng Boost for a given move
|
|
// return: max ginseng boost for the given move, capped at 15
|
|
u8 GetMoveMaxGinsengBoost(struct move* move);
|
|
|
|
// Gets the maximum Ginseng Boost for a given move
|
|
// return: max ginseng boost for the given move, capped at 15
|
|
u8 GetMoveMaxGinsengBoostGround(struct move* move);
|
|
|
|
// Gets the critical hit chance for a given move.
|
|
// return: critical hit chance for the given move, capped at 15
|
|
u8 GetMoveCritChance(struct move *move);
|
|
|
|
|
|
#endif //PMDSKY_MOVES_H
|