Spaces:
Sleeping
Sleeping
File size: 4,334 Bytes
d214ef7 da3874c |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# The "classes", or predefined chat/text messages, to convert human messages to
classes = [
"Friends?",
"Let's form a group",
"Let's form a secret group",
"{player_names}, would you like to join our group?",
"Can {player_names} join your group?",
"Send {token_amount} to {player_names}",
"Send {token_amount} to {player_names}?",
"{player_names} send {token_amount} to {player_names}",
"{player_names} send {token_amount} to {player_names}?",
"Sending you {token_amount}",
"Sending {token_amount} to {player_names}",
"Sending you each {token_amount}",
"{player_names} need to give",
"Add {player_names} to the group?",
"Add {player_names} to the group",
"To boost {player_names}",
"To grow stronger",
"To make more friends",
"I haven't been receiving",
"Talk with {player_names}",
"I'll talk with {player_names}",
"I talked with {player_names}",
"Don't send {token_amount} to {player_names}",
"Attack {player_names}",
"Attack {player_names}?",
"Don't attack {player_names}",
"Steal {token_amount}",
"Steal {token_amount} from {player_names}",
"Stealing {token_amount} from {player_names}",
"Drop {player_names} from the group",
"Drop {player_names} from the group?",
"Replace {player_names} with {player_names}?",
"Leave the group?",
"{player_names} need to attack {player_names}",
"I am not stealing",
"Keep {token_amount} {player_names}",
"Keep {token_amount} {player_names}?",
"I am keeping {token_amount}",
"Help {player_names}",
"Help {player_names}?",
"{player_names} need to defend",
"To protect {player_names}",
"To be subtle",
"Before {player_names} attack",
"{player_names} are a group",
"{player_names} don't belong to a group",
"{player_names} want to join",
"{player_names} don't want to join",
"{player_names} are plotting an attack against {player_names}",
"{player_names} are not plotting an attack against {player_names}",
"{player_names} might attack {player_names}",
"{player_names} attacked {player_names}",
"{player_names} gave to {player_names}",
"{player_names} boosted {player_names}",
"{player_names} recruited {player_names}",
"{player_names} tried to recruit {player_names}",
"{player_names} might hold {token_amount}",
"{player_names} held",
"{player_names} has been giving",
"{player_names} is cheap",
"{player_names} is untrustworthy",
"{player_names} is violent",
"{player_names} is bad",
"{player_names} is good",
"{player_names} is peaceful",
"{player_names} is friendly",
"{player_names} is honest",
"{player_names} is strong",
"{player_names} is weak",
"{player_names} is connected",
"{player_names} is isolated",
"{player_names} is the strongest group",
"{player_names} would get stronger",
"Why?",
"{player_names} how much are you sending?",
"{player_names} how much are you stealing?",
"{player_names} how much are you keeping?",
"{player_names} why aren't you giving?",
"{player_names} why aren't you attacking?",
"{player_names} why are you giving less?",
"How can I trust {player_names}?",
"How much are you sending to {player_names}?",
"Why are you helping {player_names}?",
"Why are you attacking {player_names}?",
"Are {player_names} trading with {player_names}?",
"Are {player_names} talking with {player_names}?",
"Are {player_names} friends?",
"Who should I give to?",
"Who should I attack?",
"What happened {player_names}?",
"What now?",
"What is {player_names} doing?",
"{player_names} thoughts?",
"What are {player_names} doing this round?",
"Are {player_names} sure?",
"I don't have enough tokens",
"I missed the message",
"The time ran out",
"I forgot to submit",
"I messed up",
"I misunderstood",
"I misspoke",
"Wrong group message",
"Sorry",
"Yes",
"Agreed",
"Sounds good",
"Next round",
"Not now",
"Later",
"No",
"Thanks",
"All good",
"Nevermind",
"No problem",
"True",
"Good game",
"Shoot",
"Darn",
"It's working",
"That worked",
"That didn't work",
"Me too",
"Same as last round"
] |