mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
3591 individual conflicts Update build.js Update install_node.sh Update byond.js oh my fucking god hat slow huh holy shit we all fall down 2 more I missed 2900 individual conflicts 2700 Individual conflicts replaces yarn file with tg version, bumping us down to 2200-ish Down to 2000 individual conflicts 140 down mmm aaaaaaaaaaaaaaaaaaa not yt 575 soon 900 individual conflicts 600 individual conflicts, 121 file conflicts im not okay 160 across 19 files 29 in 4 files 0 conflicts, compiletime fix time some minor incap stuff missed ticks weird dupe definition stuff missed ticks 2 incap fixes undefs and pie fix Radio update and some extra minor stuff returns a single override no more dupe definitions, 175 compiletime errors Unticked file fix sound and emote stuff honk and more radio stuff
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
/// Time between fold out
|
|
#define HOLOCHASSIS_COOLDOWN (5 SECONDS)
|
|
/// Time it takes a new pAI to fold out
|
|
#define HOLOCHASSIS_INIT_TIME (40 SECONDS)
|
|
/// Overloaded or emagged foldout cooldown
|
|
#define HOLOCHASSIS_OVERLOAD_COOLDOWN (10 SECONDS)
|
|
/// Regeneration rate for the holochassis
|
|
#define HOLOCHASSIS_REGEN_PER_SECOND 1.25
|
|
/// The max health of the holochassis
|
|
#define HOLOCHASSIS_MAX_HEALTH 20
|
|
/// The amount of time between spamming for pAI candidates
|
|
#define PAI_SPAM_TIME (40 SECONDS)
|
|
|
|
/// Maximum distance you can set the holoform leash
|
|
#define HOLOFORM_MAX_RANGE 25 // SKYRAT EDIT CHANGE - ORIGINAL: #define HOLOFORM_MAX_RANGE 9
|
|
/// Minimum distance you can set the holoform leash
|
|
#define HOLOFORM_MIN_RANGE 3
|
|
/// Default holoform leash distance
|
|
#define HOLOFORM_DEFAULT_RANGE HOLOFORM_MAX_RANGE
|
|
|
|
/// UI action to toggle huds
|
|
#define PAI_TOGGLE_MEDICAL_HUD 0
|
|
#define PAI_TOGGLE_SECURITY_HUD 1
|
|
|
|
/// UI action to use integrated scanner on target
|
|
#define PAI_SCAN_TARGET 0
|
|
#define PAI_SCAN_MASTER 1
|
|
|
|
/// UI actions for door jack
|
|
#define PAI_DOOR_JACK_CABLE 0
|
|
#define PAI_DOOR_JACK_HACK 1
|
|
#define PAI_DOOR_JACK_CANCEL 2
|
|
|
|
/// UI actions for photography module
|
|
#define PAI_PHOTO_MODE_CAMERA 0
|
|
#define PAI_PHOTO_MODE_PRINTER 1
|
|
#define PAI_PHOTO_MODE_ZOOM 2
|
|
|