mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
18 lines
347 B
Plaintext
18 lines
347 B
Plaintext
// Object level.
|
|
#define LEVEL_BELOW_FLOOR 1
|
|
#define LEVEL_ABOVE_FLOOR 2
|
|
|
|
//supermatter_act() severity values
|
|
#define SUPERMATTER_DELETE 0
|
|
#define SUPERMATTER_DUST 1
|
|
|
|
//Alpha
|
|
#define TRANSPARENT 0
|
|
#define SEMI_TRANSPARENT 128
|
|
#define OPAQUE 255
|
|
|
|
// For atom.blob_act()
|
|
|
|
#define BLOB_ACT_WEAK 3
|
|
#define BLOB_ACT_MEDIUM 2
|
|
#define BLOB_ACT_STRONG 1 |