mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13.git
synced 2026-08-20 20:56:43 +01:00
* Clean up all sorts of crap, mostly defines * fixes compile errors
13 lines
577 B
Plaintext
13 lines
577 B
Plaintext
//Cleaning tool strength
|
|
// 1 is also a valid cleaning strength but completely unused so left undefined
|
|
#define CLEAN_WEAK 2
|
|
#define CLEAN_MEDIUM 3 // Acceptable tools
|
|
#define CLEAN_STRONG 4 // Industrial strength
|
|
#define CLEAN_IMPRESSIVE 5 // Cleaning strong enough your granny would be proud
|
|
#define CLEAN_GOD 6 // Cleans things spotless down to the atomic structure
|
|
|
|
//How strong things have to be to wipe forensic evidence...
|
|
#define CLEAN_STRENGTH_FINGERPRINTS CLEAN_IMPRESSIVE
|
|
#define CLEAN_STRENGTH_BLOOD CLEAN_WEAK
|
|
#define CLEAN_STRENGTH_FIBERS CLEAN_IMPRESSIVE
|