ethanp55 commited on
Commit
da3874c
·
verified ·
1 Parent(s): 9490c13

Create classes.py

Browse files
Files changed (1) hide show
  1. classes.py +126 -0
classes.py ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ classes = [
2
+ "Friends?",
3
+ "Let's form a group",
4
+ "Let's form a secret group",
5
+ "{player_names}, would you like to join our group?",
6
+ "Can {player_names} join your group?",
7
+ "Send {token_amount} to {player_names}",
8
+ "Send {token_amount} to {player_names}?",
9
+ "{player_names} send {token_amount} to {player_names}",
10
+ "{player_names} send {token_amount} to {player_names}?",
11
+ "Sending you {token_amount}",
12
+ "Sending {token_amount} to {player_names}",
13
+ "Sending you each {token_amount}",
14
+ "{player_names} need to give",
15
+ "Add {player_names} to the group?",
16
+ "Add {player_names} to the group",
17
+ "To boost {player_names}",
18
+ "To grow stronger",
19
+ "To make more friends",
20
+ "I haven't been receiving",
21
+ "Talk with {player_names}",
22
+ "I'll talk with {player_names}",
23
+ "I talked with {player_names}",
24
+ "Don't send {token_amount} to {player_names}",
25
+ "Attack {player_names}",
26
+ "Attack {player_names}?",
27
+ "Don't attack {player_names}",
28
+ "Steal {token_amount}",
29
+ "Steal {token_amount} from {player_names}",
30
+ "Stealing {token_amount} from {player_names}",
31
+ "Drop {player_names} from the group",
32
+ "Drop {player_names} from the group?",
33
+ "Replace {player_names} with {player_names}?",
34
+ "Leave the group?",
35
+ "{player_names} need to attack {player_names}",
36
+ "I am not stealing",
37
+ "Keep {token_amount} {player_names}",
38
+ "Keep {token_amount} {player_names}?",
39
+ "I am keeping {token_amount}",
40
+ "Help {player_names}",
41
+ "Help {player_names}?",
42
+ "{player_names} need to defend",
43
+ "To protect {player_names}",
44
+ "To be subtle",
45
+ "Before {player_names} attack",
46
+ "{player_names} are a group",
47
+ "{player_names} don't belong to a group",
48
+ "{player_names} want to join",
49
+ "{player_names} don't want to join",
50
+ "{player_names} are plotting an attack against {player_names}",
51
+ "{player_names} are not plotting an attack against {player_names}",
52
+ "{player_names} might attack {player_names}",
53
+ "{player_names} attacked {player_names}",
54
+ "{player_names} gave to {player_names}",
55
+ "{player_names} boosted {player_names}",
56
+ "{player_names} recruited {player_names}",
57
+ "{player_names} tried to recruit {player_names}",
58
+ "{player_names} might hold {token_amount}",
59
+ "{player_names} held",
60
+ "{player_names} has been giving",
61
+ "{player_names} is cheap",
62
+ "{player_names} is untrustworthy",
63
+ "{player_names} is violent",
64
+ "{player_names} is bad",
65
+ "{player_names} is good",
66
+ "{player_names} is peaceful",
67
+ "{player_names} is friendly",
68
+ "{player_names} is honest",
69
+ "{player_names} is strong",
70
+ "{player_names} is weak",
71
+ "{player_names} is connected",
72
+ "{player_names} is isolated",
73
+ "{player_names} is the strongest group",
74
+ "{player_names} would get stronger",
75
+ "Why?",
76
+ "{player_names} how much are you sending?",
77
+ "{player_names} how much are you stealing?",
78
+ "{player_names} how much are you keeping?",
79
+ "{player_names} why aren't you giving?",
80
+ "{player_names} why aren't you attacking?",
81
+ "{player_names} why are you giving less?",
82
+ "How can I trust {player_names}?",
83
+ "How much are you sending to {player_names}?",
84
+ "Why are you helping {player_names}?",
85
+ "Why are you attacking {player_names}?",
86
+ "Are {player_names} trading with {player_names}?",
87
+ "Are {player_names} talking with {player_names}?",
88
+ "Are {player_names} friends?",
89
+ "Who should I give to?",
90
+ "Who should I attack?",
91
+ "What happened {player_names}?",
92
+ "What now?",
93
+ "What is {player_names} doing?",
94
+ "{player_names} thoughts?",
95
+ "What are {player_names} doing this round?",
96
+ "Are {player_names} sure?",
97
+ "I don't have enough tokens",
98
+ "I missed the message",
99
+ "The time ran out",
100
+ "I forgot to submit",
101
+ "I messed up",
102
+ "I misunderstood",
103
+ "I misspoke",
104
+ "Wrong group message",
105
+ "Sorry",
106
+ "Yes",
107
+ "Agreed",
108
+ "Sounds good",
109
+ "Next round",
110
+ "Not now",
111
+ "Later",
112
+ "No",
113
+ "Thanks",
114
+ "All good",
115
+ "Nevermind",
116
+ "No problem",
117
+ "True",
118
+ "Good game",
119
+ "Shoot",
120
+ "Darn",
121
+ "It's working",
122
+ "That worked",
123
+ "That didn't work",
124
+ "Me too",
125
+ "Same as last round"
126
+ ]