-
-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathtraitor.dm
29 lines (28 loc) · 1.53 KB
/
traitor.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#define TRAITOR_FACTION_BLACK_MARKET "black_market"
#define TRAITOR_FACTION_SYNDICATE "syndicate"
#define TRAITOR_FACTION_INDEPENDENT "independent"
#define TRAITOR_FACTION_DONK "donk_co"
#define TRAITOR_FACTION_WAFFLE "waffle_co"
#define TRAITOR_FACTION_CYBERSUN "cybersun_industries"
#define TRAITOR_FACTION_VAHLEN "vahlen_pharmaceuticals"
#define TRAITOR_FACTION_GORLEX "gorlex marauders"
#define TRAITOR_FACTION_SELF "self"
#define TRAITOR_FACTION_BOSYN "bosyn_powell_front"
/// If this backstory involves being forced into the job
#define TRAITOR_MOTIVATION_FORCED "Forced Into It"
/// If this backstory does not involve being forced into the job
#define TRAITOR_MOTIVATION_NOT_FORCED "Not Forced Into It"
/// If this backstory is motivated by money or personal gain
#define TRAITOR_MOTIVATION_MONEY "Money"
/// If this backstory is politically motivated, wanting to "change the world".
#define TRAITOR_MOTIVATION_POLITICAL "Political"
/// If this backstory is motivated through the power of love (your family, friends, etc)
#define TRAITOR_MOTIVATION_LOVE "Love"
/// If this backstory is motivated by your reputation, or by knowledge (blackmail)
#define TRAITOR_MOTIVATION_REPUTATION "Reputation"
/// If this backstory is motivated by the threat of death or personal harm
#define TRAITOR_MOTIVATION_DEATH_THREAT "Death Threat"
/// If this backstory is motivated by their faction or presence in an organization
#define TRAITOR_MOTIVATION_AUTHORITY "Authority"
/// If this backstory is motivated by themselves or the activity
#define TRAITOR_MOTIVATION_FUN "Fun"