mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-24 04:16:49 +01:00
19 lines
551 B
Plaintext
19 lines
551 B
Plaintext
//How far from the edge of overmap zlevel could randomly placed objects spawn
|
|
#define OVERMAP_EDGE 2
|
|
|
|
#define SHIP_SIZE_TINY 1
|
|
#define SHIP_SIZE_SMALL 2
|
|
#define SHIP_SIZE_LARGE 3
|
|
|
|
//multipliers for max_speed to find 'slow' and 'fast' speeds for the ship
|
|
#define SHIP_SPEED_SLOW 1/(40 SECONDS)
|
|
/// 15 speed
|
|
#define SHIP_SPEED_FAST 3/(20 SECONDS)
|
|
#define OVERMAP_WEAKNESS_NONE 0
|
|
#define OVERMAP_WEAKNESS_FIRE 1
|
|
#define OVERMAP_WEAKNESS_EMP 2
|
|
#define OVERMAP_WEAKNESS_MINING 4
|
|
#define OVERMAP_WEAKNESS_EXPLOSIVE 8
|
|
|
|
#define DEFAULT_OVERMAP_RANGE 4
|