pokeemerald/include/slot_machine.h

22 lines
585 B
C
Raw Normal View History

2017-10-12 09:06:19 +02:00
#ifndef GUARD_SLOT_MACHINE_H
#define GUARD_SLOT_MACHINE_H
2019-02-22 22:03:35 +01:00
#define NUM_REELS 3
#define REEL_NUM_TAGS 21
#define REEL_TAG_HEIGHT 24
2019-09-14 02:22:09 +02:00
#define SLOT_MACHINE_COUNT 12
2019-02-07 17:24:09 +01:00
2019-02-15 05:44:18 +01:00
// Lucky Flags
2019-02-22 22:27:49 +01:00
#define LUCKY_BIAS_REPLAY (1 << 0)
#define LUCKY_BIAS_CHERRY (1 << 1)
#define LUCKY_BIAS_LOTAD (1 << 2)
#define LUCKY_BIAS_AZURILL (1 << 3)
#define LUCKY_BIAS_POWER (1 << 4)
#define LUCKY_BIAS_REELTIME (1 << 5)
#define LUCKY_BIAS_MIXED_777 (1 << 6)
#define LUCKY_BIAS_777 (1 << 7)
2019-02-15 05:44:18 +01:00
2018-08-11 17:57:20 +02:00
void PlaySlotMachine(u8, void (callback)(void));
2017-10-12 09:06:19 +02:00
#endif // GUARD_SLOT_MACHINE_H