13 lines
580 B
Plaintext
13 lines
580 B
Plaintext
//Cleaning tool strength
|
|
#define CLEAN_VERY_WEAK 1 // What are you scrubbing the ground with a toothpick?
|
|
#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
|