-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.m4
35 lines (30 loc) · 1.44 KB
/
common.m4
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
30
31
32
33
34
35
define(`TARGET', `shape=oval')
define(`PROJECT', `shape=box')
define(`OPS', `style="", fillcolor=""')
define(`CLIPS', `style=filled, fillcolor=""')
define(`CREAT', `style=filled, fillcolor=mediumpurple')
define(`MONEY', `style=filled, fillcolor=darkolivegreen4')
define(`YOMI', `style=filled, fillcolor=lightblue2')
define(`WIRE', `style=filled, fillcolor=lightsteelblue')
define(`DARK', `style=filled, fillcolor=grey20, fontcolor=grey80')
define(`MEGACREAT', `style=filled, fillcolor=mediumorchid')
define(`QUANTUM', `style=filled, fillcolor=grey40, fontcolor=white')
define(`RESET', `style=filled, fillcolor=orange')
define(`POWERGRID', `style=filled, fillcolor=gold')
define(`DRONE', `style=filled, fillcolor=darkseagreen')
define(`FACTORY', `CLIPS()')
define(`COMBAT', `DARK()')
define(`THEORY_OF_MIND_CLUSTER', `
subgraph $1_cluster_theory_of_mind {
// Repeating targets: Theory of Mind and Auto-Tourney
label="Theory of Mind / Autotourney"
$1_25k_creat[label="25,000 creat", CREAT(), TARGET()]
$1_50k_creat[label="50,000 creat", CREAT(), TARGET()]
$1_all_strats[label="All strats unlocked", YOMI(), TARGET()]
$1_project119[label="Theory of Mind\n(Double tournament\n cost and reward)", YOMI(), PROJECT()]
$1_project118[label="AutoTourney ", YOMI(), PROJECT()]
$1_25k_creat -> $1_50k_creat
{ $1_25k_creat, $1_all_strats } -> $1_project119
{ $1_50k_creat } -> $1_project118
}
')