mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-10 15:36:47 +01:00
0c7ab8baa7
changes: - refactor: "Refactors Gravity Generator UI from HTML to TGUI." - rscadd: "Adds sector-based modifier var 'overmap_hazards_multiplier' for generating total overmap hazard count." - soundadd: "Adds new Lemurian Sea 'welcome' announcements." - rscadd: "Added Lemurian Sea gravitic anomalies as overmap hazards and random events." - rscadd: "Adds ADPI/The Voices." - rscadd: "Adds ADPI Panel for modmins to send ADPI messages to a single character or all characters from their respective pools, or custom messages." - balance: "Vaurca Hivenet communication, the Hivenet Manifest, and Hivenet Echoes are now disabled while the ship is in Lemurian Sea sectors."
14 lines
560 B
Plaintext
14 lines
560 B
Plaintext
// Gravity behavior.
|
|
// Discomfort and disorientation begin to occur when you exceed a 1/3 deviation from what you're used to.
|
|
// Mechanically, this is set to a 35% deviation, so that staying within one adjacent 'step' of these gravity defines keeps you feeling okay.
|
|
|
|
/// Zero gravity.
|
|
#define ZERO_GRAVITY 0.00
|
|
/// Low gravity. Hop from z-level to z-level, no fall damage.
|
|
#define LOW_GRAVITY 0.33
|
|
/// Reduced gravity. Somewhat safer falls, easier movement, etc.
|
|
#define REDUCED_GRAVITY 0.67
|
|
/// Earth standard bay-bee.
|
|
#define STANDARD_GRAVITY 1.00
|
|
|