mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
#ifndef POKEPLATINUM_ENC_EFFECTS_H
|
|
#define POKEPLATINUM_ENC_EFFECTS_H
|
|
|
|
#include "field_battle_data_transfer.h"
|
|
|
|
enum EncEffectCutIn {
|
|
ENCEFF_CUTIN_TALL_GRASS_LOWER_LEVEL = 0,
|
|
ENCEFF_CUTIN_TALL_GRASS_HIGHER_LEVEL,
|
|
ENCEFF_CUTIN_WATER_LOWER_LEVEL,
|
|
ENCEFF_CUTIN_WATER_HIGHER_LEVEL,
|
|
ENCEFF_CUTIN_CAVE_LOWER_LEVEL,
|
|
ENCEFF_CUTIN_CAVE_HIGHER_LEVEL,
|
|
|
|
ENCEFF_CUTIN_TRAINER_TALL_GRASS_LOWER_LEVEL,
|
|
ENCEFF_CUTIN_TRAINER_TALL_GRASS_HIGHER_LEVEL,
|
|
ENCEFF_CUTIN_TRAINER_WATER_LOWER_LEVEL,
|
|
ENCEFF_CUTIN_TRAINER_WATER_HIGHER_LEVEL,
|
|
ENCEFF_CUTIN_TRAINER_CAVE_LOWER_LEVEL,
|
|
ENCEFF_CUTIN_TRAINER_CAVE_HIGHER_LEVEL,
|
|
|
|
ENCEFF_CUTIN_LEADER_ROARK,
|
|
ENCEFF_CUTIN_LEADER_GARDENIA,
|
|
ENCEFF_CUTIN_LEADER_WAKE,
|
|
ENCEFF_CUTIN_LEADER_MAYLENE,
|
|
ENCEFF_CUTIN_LEADER_FANTINA,
|
|
ENCEFF_CUTIN_LEADER_CANDICE,
|
|
ENCEFF_CUTIN_LEADER_BYRON,
|
|
ENCEFF_CUTIN_LEADER_VOLKNER,
|
|
|
|
ENCEFF_CUTIN_ELITE_FOUR_AARON,
|
|
ENCEFF_CUTIN_ELITE_FOUR_BERTHA,
|
|
ENCEFF_CUTIN_ELITE_FOUR_FLINT,
|
|
ENCEFF_CUTIN_ELITE_FOUR_LUCIAN,
|
|
ENCEFF_CUTIN_CHAMPION_CYNTHIA,
|
|
|
|
ENCEFF_CUTIN_MYTHICAL,
|
|
ENCEFF_CUTIN_LEGENDARY,
|
|
|
|
ENCEFF_CUTIN_GALACTIC_GRUNT,
|
|
ENCEFF_CUTIN_GALACTIC_BOSS,
|
|
|
|
ENCEFF_CUTIN_FRONTIER,
|
|
ENCEFF_CUTIN_DOUBLE,
|
|
|
|
ENCEFF_CUTIN_USE_LOCAL = 0xFFFF,
|
|
};
|
|
|
|
/**
|
|
* Get the cut-in effect ID applied as a transition from the overworld
|
|
* to the battle UI.
|
|
*
|
|
* @param dto
|
|
* @return Cut-in effect ID
|
|
*/
|
|
u32 EncEffects_CutInEffect(const FieldBattleDTO *dto);
|
|
|
|
/**
|
|
* Get the SEQ ID pointing to this encounter's background music.
|
|
*
|
|
* @param dto
|
|
* @return SEQ ID
|
|
*/
|
|
u32 EncEffects_BGM(const FieldBattleDTO *dto);
|
|
|
|
#endif // POKEPLATINUM_ENC_EFFECTS_H
|