pub trait DungeonMonsterSpeciesIdExt {
    // Required methods
    fn is_satisfying_scenario_condition_to_spawn(
        &self,
        _ov29: &OverlayLoadLease<29>
    ) -> bool;
    fn is_in_spawn_list(
        &self,
        spawn_list: &mut undefined,
        _ov29: &OverlayLoadLease<29>
    ) -> bool;
}
Expand description

Extension trait for MonsterSpeciesId specific to dungeon mode.

Required Methods§

source

fn is_satisfying_scenario_condition_to_spawn( &self, _ov29: &OverlayLoadLease<29> ) -> bool

Note: unverified, ported from Irdkwia’s notes

source

fn is_in_spawn_list( &self, spawn_list: &mut undefined, _ov29: &OverlayLoadLease<29> ) -> bool

Note: unverified, ported from Irdkwia’s notes

Safety

The caller must make sure the undefined params are valid for this function.

Implementors§