mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-10 08:54:15 +00:00
Alright, update the changelog and body of the PR, and comment here when that's done. This should be ready for merge then.
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
// PDA defines //
|
|
#define CART_SECURITY (1<<0)
|
|
#define CART_ENGINE (1<<1)
|
|
#define CART_ATMOS (1<<2)
|
|
#define CART_MEDICAL (1<<3)
|
|
#define CART_MANIFEST (1<<4)
|
|
#define CART_CLOWN (1<<5)
|
|
#define CART_MIME (1<<6)
|
|
#define CART_JANITOR (1<<7)
|
|
#define CART_REAGENT_SCANNER (1<<8)
|
|
#define CART_NEWSCASTER (1<<9)
|
|
#define CART_REMOTE_DOOR (1<<10)
|
|
#define CART_STATUS_DISPLAY (1<<11)
|
|
#define CART_QUARTERMASTER (1<<12)
|
|
#define CART_HYDROPONICS (1<<13)
|
|
#define CART_DRONEPHONE (1<<14)
|
|
#define CART_DRONEACCESS (1<<15)
|
|
|
|
// Used by PDA and cartridge code to reduce repetitiveness of spritesheets
|
|
#define PDAIMG(what) {"<span class="pda16x16 [#what]"></span>"}
|
|
|
|
//N-spect scanner defines
|
|
#define INSPECTOR_PRINT_SOUND_MODE_NORMAL 1
|
|
#define INSPECTOR_PRINT_SOUND_MODE_CLASSIC 2
|
|
#define INSPECTOR_PRINT_SOUND_MODE_HONK 3
|
|
#define INSPECTOR_PRINT_SOUND_MODE_FAFAFOGGY 4
|
|
#define BANANIUM_CLOWN_INSPECTOR_PRINT_SOUND_MODE_LAST 4
|
|
#define CLOWN_INSPECTOR_PRINT_SOUND_MODE_LAST 4
|
|
#define INSPECTOR_POWER_USAGE_HONK 15
|
|
#define INSPECTOR_POWER_USAGE_NORMAL 5
|
|
#define INSPECTOR_TIME_MODE_SLOW 1
|
|
#define INSPECTOR_TIME_MODE_FAST 2
|
|
#define INSPECTOR_TIME_MODE_HONK 3
|