pmd-sky/include/main_02014CEC.h
2026-07-11 17:18:26 -04:00

29 lines
790 B
C

#ifndef PMDSKY_MAIN_02014CEC_H
#define PMDSKY_MAIN_02014CEC_H
#include "enums.h"
#include "util.h"
// Checks if a move ID is MOVE_REGULAR_ATTACK or MOVE_PROJECTILE.
bool8 IsRegularAttackOrProjectile(enum move_id move_id);
// Checks if the move is a two turn move
bool8 Is2TurnsMove(enum move_id move_id);
// Checks if the move is a punch move
bool8 IsPunchMove(enum move_id move_id);
// Checks if the move is a Healing Wish or Lunar Dance
bool8 IsHealingWishOrLunarDance(enum move_id move_id);
// Checks if the move is a copying move
bool8 IsCopyingMove(enum move_id move_id);
// Checks if the move is a trapping move
bool8 IsTrappingMove(enum move_id move_id);
// Checks if the move is a one hit KO move
bool8 IsOneHitKoMove(enum move_id move_id);
#endif //PMDSKY_MAIN_02014CEC_H