-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcards.def
340 lines (297 loc) · 7.55 KB
/
cards.def
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/* Define all your cards here!
Please follow proper syntax. This gets compiled as code.
The name field has a length limit of 35 characters.
DO NOT FORGET to change the CARD_COUNT variable (current: 39) in functions.cpp
or it will segfault. */
int n = 0; // do not touch
/*
static card test; // card decleration
test.id = 0; // card ID (odd for microbes card)
test.name = "TESTCARD"; // card display name
test.desc = "Testing"; // card discription
test.type = 'f'; // MICROBES: f for function, p for pathogen ;; HUMAN: a for attack, u for utility
insertCard(test, n); // admit to the deck
*/
// Microbes Cards (Odd IDs)
static card SCov2;
SCov2.id = 1;
SCov2.name = "SARS-Cov-2";
SCov2.desc = "The 2019 Novel Coronavirus";
SCov2.type = 'p';
insertCard(SCov2, n);
static card Smallpox;
Smallpox.id = 3;
Smallpox.name = "Smallpox";
Smallpox.desc = "The variola virus";
Smallpox.type = 'p';
insertCard(Smallpox, n);
static card Rubella;
Rubella.id = 5;
Rubella.name = "Rubella (German measles)";
Rubella.desc = "A common mild infection.";
Rubella.type = 'p';
insertCard(Rubella, n);
static card Flu;
Flu.id = 7;
Flu.name = "Influenza";
Flu.desc = "The flu comes and goes almost yearly.";
Flu.type = 'p';
insertCard(Flu, n);
static card Aids;
Aids.id = 9;
Aids.name = "HIV/AIDS";
Aids.desc = "You know this one.";
Aids.type = 'p';
insertCard(Aids, n);
static card Diphth;
Diphth.id = 11;
Diphth.name = "Diphtheria";
Diphth.desc = "Symptoms vary wildly.";
Diphth.type = 'p';
insertCard(Diphth, n);
static card Typhoid;
Typhoid.id = 13;
Typhoid.name = "Typhoid fever";
Typhoid.desc = "Also known as slow fever.";
Typhoid.type = 'p';
insertCard(Typhoid, n);
static card Plague;
Plague.id = 15;
Plague.name = "Plague";
Plague.desc = "Carried by rodents and fleas.";
Plague.type = 'p';
insertCard(Plague, n);
static card Aureus;
Aureus.id = 17;
Aureus.name = "Staphylococcus Aureus";
Aureus.desc = "Most common threat on this list.";
Aureus.type = 'p';
insertCard(Aureus, n);
static card Syphilis;
Syphilis.id = 19;
Syphilis.name = "Treponema pallidum";
Syphilis.desc = "This bacteria causes syphilis.";
Syphilis.type = 'p';
insertCard(Syphilis, n);
static card Endemic;
Endemic.id = 21;
Endemic.name = "Endemic";
Endemic.desc = "Regional prominence. Health +1. Mutation chance +1/6.";
Endemic.type = 'f';
insertCard(Endemic, n);
static card Pandemic;
Pandemic.id = 23;
Pandemic.name = "Pandemic";
Pandemic.desc = "Global prominence. Health +1. Mutation chance doubled.";
Pandemic.type = 'f';
insertCard(Pandemic, n);
static card Mutate;
Mutate.id = 25;
Mutate.name = "Mutate";
Mutate.desc = "Invalidates human immunities.";
Mutate.type = 'f';
insertCard(Mutate, n);
// Human Cards (Even IDs)
static card Vac;
Vac.id = 2;
Vac.type = 'a';
Vac.name = "Vaccines";
Vac.desc = "Groundbreaking medical advancement.";
Vac.target[0] = 1;
Vac.target[1] = 3;
Vac.target[2] = 5;
Vac.target[3] = 7;
Vac.target[4] = 11;
Vac.target[5] = 13;
Vac.target[6] = 15;
insertCard(Vac, n);
static card Pax;
Pax.id = 4;
Pax.type = 'a';
Pax.name = "Antiviral drugs - Paxlovid";
Pax.desc = "Paxlovid works by inhibiting enzymes necessary for the Covid virus.";
Pax.target[0] = 1;
insertCard(Pax, n);
static card CG1;
CG1.id = 6;
CG1.type = 'a';
CG1.name = "Antiviral drugs - Ching-guan 1";
CG1.desc = "Ching-guan 1 targets the virus and the ACE2 receptor proteins.";
CG1.target[0] = 1;
insertCard(CG1, n);
static card Mask;
Mask.id = 8;
Mask.type = 'a';
Mask.name = "Face masks";
Mask.desc = "Face coverings significantly lower risks of infection.";
Mask.target[0] = 1;
Mask.target[1] = 7;
insertCard(Mask, n);
static card Cond;
Cond.id = 10;
Cond.type = 'a';
Cond.name = "Condoms";
Cond.desc = "Protections.";
Cond.target[0] = 9;
Cond.target[1] = 19;
insertCard(Cond, n);
static card Syr;
Syr.id = 12;
Syr.type = 'a';
Syr.name = "Not sharing syringes";
Syr.desc = "Not sharing syringes.";
Syr.target[0] = 9;
insertCard(Cond, n);
static card Cocktail;
Cocktail.id = 14;
Cocktail.type = 'a';
Cocktail.name = "Cocktail therapy";
Cocktail.desc = "Cocktail therapy.";
Cocktail.target[0] = 9;
insertCard(Cocktail, n);
static card CCR5;
CCR5.id = 16;
CCR5.type = 'a';
CCR5.name = "CCR5-Delta32 mutation";
CCR5.desc = "This mutation grants immunity of HIV/AIDS.";
CCR5.target[0] = 9;
insertCard(CCR5, n);
static card Anti;
Anti.id = 18;
Anti.type = 'a';
Anti.name = "Antibiotics";
Anti.desc = "Antibiotics";
Anti.target[0] = 11;
Anti.target[1] = 13;
Anti.target[2] = 15;
Anti.target[3] = 17;
Anti.target[4] = 19;
insertCard(Anti, n);
static card Mary;
Mary.id = 20;
Mary.type = 'a';
Mary.name = "Typhoid Mary";
Mary.desc = "Become the Typhoid Mary, Destroyer of Typhoid.";
Mary.target[0] = 13;
insertCard(Mary, n);
static card Antivenom;
Antivenom.id = 22;
Antivenom.type = 'a';
Antivenom.name = "Antivenom";
Antivenom.desc = "Antivenom for diphtheria.";
Antivenom.target[0] = 11;
insertCard(Antivenom, n);
static card Disinfect;
Disinfect.id = 24;
Disinfect.type = 'a';
Disinfect.name = "Disinfect";
Disinfect.desc = "Especially effective against diphtheria.";
Disinfect.target[0] = 11;
insertCard(Disinfect, n);
static card Band;
Band.id = 26;
Band.type = 'a';
Band.name = "Bandage";
Band.desc = "Prevents infections.";
Band.target[0] = 17;
insertCard(Band, n);
static card Alcohol;
Alcohol.id = 28;
Alcohol.type = 'a';
Alcohol.name = "Alcohol";
Alcohol.desc = "C2H5OH";
Alcohol.target[0] = 1;
Alcohol.target[1] = 7;
insertCard(Alcohol, n);
static card Soap;
Soap.id = 30;
Soap.type = 'a';
Soap.name = "Soap";
Soap.desc = "Cleanses.";
Soap.target[0] = 1;
Soap.target[1] = 3;
Soap.target[2] = 7;
Soap.target[3] = 13;
insertCard(Soap, n);
static card Bleach;
Bleach.id = 32;
Bleach.type = 'a';
Bleach.name = "Disinfectant";
Bleach.desc = "Bleach";
Bleach.target[0] = 1;
Bleach.target[1] = 3;
Bleach.target[2] = 7;
insertCard(Bleach, n);
static card VacAd;
VacAd.id = 34;
VacAd.type = 'a';
VacAd.name = "Advocate for vaccines";
VacAd.desc = "Vaccines are good";
VacAd.target[0] = 1;
VacAd.target[1] = 3;
VacAd.target[2] = 5;
VacAd.target[3] = 7;
VacAd.target[4] = 11;
VacAd.target[5] = 13;
VacAd.target[6] = 15;
insertCard(VacAd, n);
static card NoCrap;
NoCrap.id = 36;
NoCrap.type = 'a';
NoCrap.name = "Avoid feces contact";
NoCrap.desc = "Hygiene is important.";
NoCrap.target[0] = 3;
insertCard(NoCrap, n);
static card SafeSex;
SafeSex.id = 38;
SafeSex.type = 'a';
SafeSex.name = "Safe sex";
SafeSex.desc = "Do it properly.";
SafeSex.target[0] = 9;
SafeSex.target[1] = 19;
insertCard(SafeSex, n);
static card NoRodent;
NoRodent.id = 40;
NoRodent.type = 'a';
NoRodent.name = "Remove rodents.";
NoRodent.desc = "Rodents also carry lots of pathogens.";
NoRodent.target[0] = 15;
insertCard(NoRodent, n);
static card Cook;
Cook.id = 42;
Cook.type = 'a';
Cook.name = "Cooking";
Cook.desc = "Cooking your food eradicates potential pathogens.";
Cook.target[0] = 13;
Cook.target[1] = 17;
insertCard(Cook, n);
static card Micro;
Micro.id = 44;
Micro.type = 'u';
Micro.name = "Electron microscope";
Micro.desc = "Thanks, Leeuwenhoek.";
insertCard(Micro, n);
static card Researcher;
Researcher.id = 46;
Researcher.type = 'u';
Researcher.name = "Researchers.";
Researcher.desc = "Smart people.";
insertCard(Researcher, n);
static card Seq;
Seq.id = 48;
Seq.type = 'u';
Seq.name = "Genome sequencing";
Seq.desc = "Technology allows us to see into the genes.";
insertCard(Seq, n);
static card Workout;
Workout.id = 50;
Workout.type = 'u';
Workout.name = "Working out";
Workout.desc = "Excercise is good for the body and mind! -Princess Nautilus";
insertCard(Workout, n);
static card Food;
Food.id = 52;
Food.type = 'u';
Food.name = "Balanced diet";
Food.desc = "A balanced diet is also good for your body.";
insertCard(Food, n);