2017-10-12 07:06:19 +00:00
|
|
|
#ifndef GUARD_SLOT_MACHINE_H
|
|
|
|
#define GUARD_SLOT_MACHINE_H
|
|
|
|
|
2019-02-22 21:03:35 +00:00
|
|
|
#define NUM_REELS 3
|
|
|
|
#define REEL_NUM_TAGS 21
|
|
|
|
#define REEL_TAG_HEIGHT 24
|
2019-09-14 00:22:09 +00:00
|
|
|
#define SLOT_MACHINE_COUNT 12
|
2019-02-07 16:24:09 +00:00
|
|
|
|
2019-02-15 04:44:18 +00:00
|
|
|
// Lucky Flags
|
2019-02-22 21:27:49 +00: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 04:44:18 +00:00
|
|
|
|
2018-08-11 15:57:20 +00:00
|
|
|
void PlaySlotMachine(u8, void (callback)(void));
|
2017-10-12 07:06:19 +00:00
|
|
|
|
|
|
|
#endif // GUARD_SLOT_MACHINE_H
|