-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmaterial.inc.php
1778 lines (1396 loc) · 104 KB
/
material.inc.php
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
*------
* BGA framework: © Gregory Isabelli <[email protected]> & Emmanuel Colin <[email protected]>
* Innovationnewgraphics implementation : © Jean Portemer <[email protected]>
*
* This code has been produced on the BGA studio platform for use on http://boardgamearena.com.
* See http://en.boardgamearena.com/#!doc/Studio for more information.
* -----
*
* material.inc.php
*
* Innovation game material description
*
* Here, you can describe the material of your game with PHP variables.
*
* This file is loaded in your game logic class constructor, ie these variables
* are available everywhere in your game logic code.
*
*/
$this->textual_card_infos = array(
/* Age 1 */
0 => array('name' => clienttranslate('Pottery'),
'non_demand_effect_1' => clienttranslate('You may return up to three cards from your hand. If you returned any cards, draw and score a card of value equal to the number of cards you returned.'),
'non_demand_effect_2' => clienttranslate('Draw a ${age_1}.'),
),
1 => array('name' => clienttranslate('Tools'),
'non_demand_effect_1' => clienttranslate('You may return three cards from your hand. If you do, draw and meld a ${age_3}.'),
'non_demand_effect_2' => clienttranslate('You may return a ${age_3} from your hand. If you do, draw three ${age_1}.'),
),
2 => array('name' => clienttranslate('Writing'),
'non_demand_effect_1' => clienttranslate('Draw a ${age_2}.'),
),
3 => array('name' => clienttranslate('Archery'),
'i_demand_effect_1' => clienttranslate('${I demand} you draw a ${age_1}, then transfer the highest card in your hand to my hand!'),
),
4 => array('name' => clienttranslate('Metalworking'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_1}. If it has a ${icon_4}, score it and repeat this dogma effect. Otherwise, keep it.'),
),
5 => array('name' => clienttranslate('Oars'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a card with a ${icon_1} from your hand to my score pile! If you do, draw a ${age_1}, and repeat this dogma effect!'),
'i_demand_effect_1_alt' => clienttranslate('${I demand} you transfer a card with a ${icon_1} from your hand to my score pile! If you do, draw a ${age_1}!'),
'non_demand_effect_1' => clienttranslate('If no cards were transferred due to this demand, draw a ${age_1}.'),
),
6 => array('name' => clienttranslate('Clothing'),
'non_demand_effect_1' => clienttranslate('Meld a card from your hand of different color from any card on your board.'),
'non_demand_effect_2' => clienttranslate('Draw and score a ${age_1} for each color present on your board not present on any opponent\'s board.'),
),
7 => array('name' => clienttranslate('Sailing'),
'non_demand_effect_1' => clienttranslate('Draw and meld a ${age_1}.'),
),
8 => array('name' => clienttranslate('The wheel'),
'non_demand_effect_1' => clienttranslate('Draw two ${age_1}.'),
),
9 => array('name' => clienttranslate('Agriculture'),
'non_demand_effect_1' => clienttranslate('You may return a card from your hand. If you do, draw and score a card of value one higher than the card you returned.'),
),
10 => array('name' => clienttranslate('Domestication'),
'non_demand_effect_1' => clienttranslate('Meld the lowest card in your hand. Draw a ${age_1}.'),
),
11 => array('name' => clienttranslate('Masonry'),
'non_demand_effect_1' => clienttranslate('You may meld any number of cards from your hand, each with a ${icon_4}. If you melded four or more cards in this way, claim the Monument achievement.'),
),
12 => array('name' => clienttranslate('City states'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a top card with a ${icon_4} from your board to my board if you have at least four ${icon_4} on your board! If you do, draw a ${age_1}!'),
),
13 => array('name' => clienttranslate('Code of laws'),
'non_demand_effect_1' => clienttranslate('You may tuck a card from your hand of the same color as any card on your board. If you do, you may splay that color of your cards left.'),
),
14 => array('name' => clienttranslate('Mysticism'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_1}. If it is the same color as any card on your board, meld it and draw a ${age_1}.'),
),
/* Age 2 */
15 => array('name' => clienttranslate('Calendar'),
'non_demand_effect_1' => clienttranslate('If you have more cards in your score pile than in your hand, draw two ${age_3}.'),
),
16 => array('name' => clienttranslate('Mathematics'),
'non_demand_effect_1' => clienttranslate('You may return a card from your hand. If you do, draw and meld a card of value one higher than the card your returned.'),
),
17 => array('name' => clienttranslate('Construction'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer two cards from your hand to my hand! Draw a ${age_2}!'),
'non_demand_effect_1' => clienttranslate('If you are the only player with five top cards, claim the Empire achievement.'),
),
18 => array('name' => clienttranslate('Road building'),
'non_demand_effect_1' => clienttranslate('Meld one or two cards from your hand. If you melded two, you may transfer your top red card to another player board. If you do, transfer that player\'s top green card to your board.'),
),
19 => array('name' => clienttranslate('Currency'),
'non_demand_effect_1' => clienttranslate('You may return any number of cards from your hand. If you do, draw and score a ${age_2} for every different value of card you returned.'),
),
20 => array('name' => clienttranslate('Mapmaking'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a ${age_1} from your score pile, if it has any, to my score pile!'),
'non_demand_effect_1' => clienttranslate('If any card was transferred due to the demand, draw and score a ${age_1}.'),
),
21 => array('name' => clienttranslate('Canal building'),
'non_demand_effect_1' => clienttranslate('You may exchange all the highest cards in your hand with all the highest cards in your score pile.'),
),
22 => array('name' => clienttranslate('Fermenting'),
'non_demand_effect_1' => clienttranslate('Draw a ${age_2} for every color on your board with one or more ${icon_2}.'),
'non_demand_effect_1_alt' => clienttranslate('Draw a ${age_2} for every two ${icon_2} on your board.'),
),
23 => array('name' => clienttranslate('Monotheism'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a top card on your board of different color from any card on my board to my score pile! If you do, draw and tuck a ${age_1}!'),
'non_demand_effect_1' => clienttranslate('Draw and tuck a ${age_1}.'),
),
24 => array('name' => clienttranslate('Philosophy'),
'non_demand_effect_1' => clienttranslate('You may splay left any one color of your cards.'),
'non_demand_effect_2' => clienttranslate('You may score a card from your hand.'),
),
/* Age 3 */
25 => array('name' => clienttranslate('Alchemy'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_4} for every three ${icon_4} on your board. If any of the drawn cards are red, return the cards drawn and all cards in your hand. Otherwise, keep them.'),
'non_demand_effect_2' => clienttranslate('Meld a card from your hand, then score a card from your hand.'),
),
26 => array('name' => clienttranslate('Translation'),
'non_demand_effect_1' => clienttranslate('You may meld all the cards in your score pile. If you meld one, you must meld them all.'),
'non_demand_effect_2' => clienttranslate('If each top card on your board has a ${icon_1}, claim the World achievement.'),
),
27 => array('name' => clienttranslate('Engineering'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer all top cards with a ${icon_4} from your board to my score pile!'),
'non_demand_effect_1' => clienttranslate('You may splay your red cards left.'),
),
28 => array('name' => clienttranslate('Optics'),
'non_demand_effect_1' => clienttranslate('Draw an meld a ${age_3}. If it has a ${icon_1}, draw and score a ${age_4}. Otherwise, transfer a card from your score pile to the score pile of an opponent with fewer points than you.'),
),
29 => array('name' => clienttranslate('Compass'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a top non-green card with a ${icon_2} from your board to my board, and then you transfer a top card without a ${icon_2} from my board to your board!'),
),
30 => array('name' => clienttranslate('Paper'),
'non_demand_effect_1' => clienttranslate('You may splay your green or blue cards left.'),
'non_demand_effect_2' => clienttranslate('Draw a ${age_4} for every color you have splayed left.'),
),
31 => array('name' => clienttranslate('Machinery'),
'i_demand_effect_1' => clienttranslate('${I demand} you exchange all the cards in your hand with all the highest cards in my hand!'),
'non_demand_effect_1' => clienttranslate('Score a card from your hand with a ${icon_4}. You may splay your red cards left.'),
),
32 => array('name' => clienttranslate('Medicine'),
'i_demand_effect_1' => clienttranslate('${I demand} you exchange the highest card in your score pile with the lowest card in my score pile!'),
),
33 => array('name' => clienttranslate('Education'),
'non_demand_effect_1' => clienttranslate('You may return the highest card from your score pile. If you do, draw a card of value two higher than the highest card remaining in your score pile.'),
),
34 => array('name' => clienttranslate('Feudalism'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a card with a ${icon_4} from your hand to my hand! If you do, unsplay that color of your cards!'),
'i_demand_effect_1_alt' => clienttranslate('${I demand} you transfer a card with a ${icon_4} from your hand to my hand!'),
'non_demand_effect_1' => clienttranslate('You may splay your yellow or purple cards left.'),
),
/* Age 4 */
35 => array('name' => clienttranslate('Experimentation'),
'non_demand_effect_1' => clienttranslate('Draw and meld a ${age_5}.'),
),
36 => array('name' => clienttranslate('Printing press'),
'non_demand_effect_1' => clienttranslate('You may return a card from your score pile. If you do, draw a card of value two higher than the top purple card on your board.'),
'non_demand_effect_2' => clienttranslate('You may splay your blue cards right.'),
),
37 => array('name' => clienttranslate('Colonialism'),
'non_demand_effect_1' => clienttranslate('Draw and tuck a ${age_3}. If it has a ${icon_1}, repeat this dogma effect.'),
),
38 => array('name' => clienttranslate('Gunpowder'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a top card with a ${icon_4} from your board to my score pile!'),
'non_demand_effect_1' => clienttranslate('If any card was transfered due to the demand, draw and score a ${age_2}.'),
),
39 => array('name' => clienttranslate('Invention'),
'non_demand_effect_1' => clienttranslate('You may splay right any one color of your card currently splayed left. If you do, draw and score a ${age_4}.'),
'non_demand_effect_2' => clienttranslate('If you have five colors splayed, each in any direction, claim the Wonder achievement.'),
),
40 => array('name' => clienttranslate('Navigation'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a ${age_2} or ${age_3} from your score pile, if it has any, to my score pile!'),
),
41 => array('name' => clienttranslate('Anatomy'),
'i_demand_effect_1' => clienttranslate('${I demand} you return a card from your score pile! If you do, return a top card of equal value from your board!'),
),
42 => array('name' => clienttranslate('Perspective'),
'non_demand_effect_1' => clienttranslate('You may return a card from your hand. If you do, score a card from your hand for every two ${icon_3} on your board.'),
),
43 => array('name' => clienttranslate('Enterprise'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a top non-purple card with a ${icon_1} from your board to my board! If you do, draw and meld a ${age_4}!'),
'non_demand_effect_1' => clienttranslate('You may splay your green cards right.'),
),
44 => array('name' => clienttranslate('Reformation'),
'non_demand_effect_1' => clienttranslate('You may tuck a card from your hand for every two ${icon_2} on your board.'),
'non_demand_effect_2' => clienttranslate('You may splay your yellow or purple cards right.'),
),
/* Age 5 */
45 => array('name' => clienttranslate('Chemistry'),
'non_demand_effect_1' => clienttranslate('You may splay your blue cards right.'),
'non_demand_effect_2' => clienttranslate('Draw and score a card of value one higher than the highest top card on your board and then return a card from your score pile.'),
),
46 => array('name' => clienttranslate('Physics'),
'non_demand_effect_1' => clienttranslate('Draw three ${age_6} and reveal them. If two or more of the drawn cards are the same color, return the drawn cards and all cards in your hand. Otherwise, keep them.'),
),
47 => array('name' => clienttranslate('Coal'),
'non_demand_effect_1' => clienttranslate('Draw and tuck a ${age_5}.'),
'non_demand_effect_2' => clienttranslate('You may splay your red cards right.'),
'non_demand_effect_3' => clienttranslate('You may score any one of your top cards. If you do, also score the card beneath it.'),
),
48 => array('name' => clienttranslate('The pirate code'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer two cards of value ${age_4} or less from your score pile to my score pile!'),
'non_demand_effect_1' => clienttranslate('If any card was transferred due to the demand, score the lowest top card with a ${icon_1} from your board.'),
),
49 => array('name' => clienttranslate('Banking'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a top non-green card with a ${icon_5} from your board to my board. If you do, draw and score a ${age_5}!'),
'non_demand_effect_1' => clienttranslate('You may splay your green cards right.'),
),
50 => array('name' => clienttranslate('Measurement'),
'non_demand_effect_1' => clienttranslate('You may reveal and return a card from your hand. If you do, splay that color of your cards right, and draw a card of value equal to the number of cards of that color on your board.'),
'non_demand_effect_1_alt' => clienttranslate('You may return a card from your hand. If you do, choose a color. Splay that color of your cards right, and draw a card of value equal to the number of cards of that color on your board.'),
),
51 => array('name' => clienttranslate('Statistics'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer all the highest cards in your score pile to your hand!'),
'i_demand_effect_1_alt' => clienttranslate('${I demand} you transfer the highest card in your score pile to your hand! If you do, and have only one card in your hand afterwards, repeat this demand!'),
'non_demand_effect_1' => clienttranslate('You may splay your yellow cards right.'),
),
52 => array('name' => clienttranslate('Steam engine'),
'non_demand_effect_1' => clienttranslate('Draw and tuck two ${age_4}, then score your bottom yellow card.'),
),
53 => array('name' => clienttranslate('Astronomy'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_6}. If the card is green or blue, meld it and repeat this dogma effect.'),
'non_demand_effect_2' => clienttranslate('If all non-purple top cards on your board are value ${age_6} or higher, claim the Universe achievement.'),
),
54 => array('name' => clienttranslate('Societies'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a card with a ${icon_3} higher than my top card of the same color from your board to my board! If you do, draw an ${age_5}!'),
'i_demand_effect_1_alt' => clienttranslate('${I demand} you transfer a top non-purple card with a ${icon_3} from your board to my board! If you do, draw an ${age_5}!'),
),
/* Age 6 */
55 => array('name' => clienttranslate('Atomic theory'),
'non_demand_effect_1' => clienttranslate('You may splay your blue cards right.'),
'non_demand_effect_2' => clienttranslate('Draw and meld a ${age_7}.'),
),
56 => array('name' => clienttranslate('Encyclopedia'),
'non_demand_effect_1' => clienttranslate('You may meld all the highest cards in your score pile. If you meld one of the highest, you must meld all of the highest.'),
),
57 => array('name' => clienttranslate('Industrialization'),
'non_demand_effect_1' => clienttranslate('Draw and tuck a ${age_6} for every color on your board with one or more ${icon_5}.'),
'non_demand_effect_1_alt' => clienttranslate('Draw and tuck a ${age_6} for every two ${icon_5} on your board.'),
'non_demand_effect_2' => clienttranslate('You may splay your red or purple cards right.'),
),
58 => array('name' => clienttranslate('Machine tools'),
'non_demand_effect_1' => clienttranslate('Draw and score a card of value equal to the highest card in your score pile.'),
),
59 => array('name' => clienttranslate('Classification'),
'non_demand_effect_1' => clienttranslate('Reveal the color of a card in your hand. Take into your hand all cards of that color from all opponent\'s hands. Then meld all cards of that color from your hand.'),
),
60 => array('name' => clienttranslate('Metric system'),
'non_demand_effect_1' => clienttranslate('If your green cards are splayed right, you may splay any one color of your cards right.'),
'non_demand_effect_2' => clienttranslate('You may splay your green cards right.'),
),
61 => array('name' => clienttranslate('Canning'),
'non_demand_effect_1' => clienttranslate('You may draw and tuck a ${age_6}. If you do, score all your top cards without a ${icon_5}.'),
'non_demand_effect_2' => clienttranslate('You may splay your yellow cards right.'),
),
62 => array('name' => clienttranslate('Vaccination'),
'i_demand_effect_1' => clienttranslate('${I demand} your return all the lowest cards in your score pile! If you returnd any, draw and meld a ${age_6}!'),
'non_demand_effect_1' => clienttranslate('If any card was returned as a result of the demand, draw and meld a ${age_7}.'),
),
63 => array('name' => clienttranslate('Democracy'),
'non_demand_effect_1' => clienttranslate('You may return any number of cards from your hand. If you have returned more cards than any other player due to Democracy so far during this dogma action, draw and score a ${age_8}.'),
),
64 => array('name' => clienttranslate('Emancipation'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a card from your hand to my score pile! If you do, draw a ${age_6}!'),
'non_demand_effect_1' => clienttranslate('You may splay your red or purple cards right.'),
),
/* Age 7 */
65 => array('name' => clienttranslate('Evolution'),
'non_demand_effect_1' => clienttranslate('You may choose to either draw and score a ${age_8} and then return a card from your score pile, or draw a card of value one higher than the highest card in your score pile.'),
),
66 => array('name' => clienttranslate('Publications'),
'non_demand_effect_1' => clienttranslate('You may rearrange the order of one color of cards on your board.'),
'non_demand_effect_2' => clienttranslate('You may splay your yellow or blue cards up.'),
),
67 => array('name' => clienttranslate('Combustion'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer one card from your score pile to my score pile for every four ${icon_1} on my board!'),
'i_demand_effect_1_alt' => clienttranslate('${I demand} you transfer two cards from your score pile to my score pile!'),
'non_demand_effect_1' => clienttranslate('Return your bottom red card.'),
'non_demand_effect_1_alt' => null, /* No non-demand effect in the first edition*/
),
68 => array('name' => clienttranslate('Explosives'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer the three highest cards from your hand to my hand! If you transferred any, and then have no card in hand, draw a ${age_7}!'),
),
69 => array('name' => clienttranslate('Bicycle'),
'non_demand_effect_1' => clienttranslate('You may exchange all the cards in your hand with all the cards in your score pile. If you exchange one, you must exchange them all.'),
),
70 => array('name' => clienttranslate('Electricity'),
'non_demand_effect_1' => clienttranslate('Return all your top cards without a ${icon_5}, then draw an ${age_8} for each card you returned.'),
),
71 => array('name' => clienttranslate('Refrigeration'),
'i_demand_effect_1' => clienttranslate('${I demand} you return half (rounded down) of the cards in your hand!'),
'non_demand_effect_1' => clienttranslate('You may score a card from your hand.'),
),
72 => array('name' => clienttranslate('Sanitation'),
'i_demand_effect_1' => clienttranslate('${I demand} you exchange the two highest cards in your hand with the lowest card in my hand!'),
),
73 => array('name' => clienttranslate('Lighting'),
'non_demand_effect_1' => clienttranslate('You may tuck up to three cards from your hand. If you do, draw and score a ${age_7} for every different value of card you tucked.'),
),
74 => array('name' => clienttranslate('Railroad'),
'non_demand_effect_1' => clienttranslate('Return all cards from your hand, then draw three ${age_6}.'),
'non_demand_effect_2' => clienttranslate('You may splay up any one color of your cards currently splayed right.'),
),
/* Age 8 */
75 => array('name' => clienttranslate('Quantum theory'),
'non_demand_effect_1' => clienttranslate('You may return up to two cards from your hand. If you return two, draw a ${age_10} and then draw and score a ${age_10}.'),
),
76 => array('name' => clienttranslate('Rocketry'),
'non_demand_effect_1' => clienttranslate('Return a card in any opponent\'s score pile for every two ${icon_6} on your board.'),
),
77 => array('name' => clienttranslate('Flight'),
'non_demand_effect_1' => clienttranslate('If your red cards are splayed up, you may splay any one color of your cards up.'),
'non_demand_effect_2' => clienttranslate('You may splay your red cards up.'),
),
78 => array('name' => clienttranslate('Mobility'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer the two highest non-red top cards without a ${icon_5} from your board to my score pile! If you transferred any cards, draw an ${age_8}!'),
),
79 => array('name' => clienttranslate('Corporations'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a top non-green card with a ${icon_5} from your board to my score pile! If you do, draw and meld a ${age_8}!'),
'non_demand_effect_1' => clienttranslate('Draw and meld a ${age_8}.'),
),
80 => array('name' => clienttranslate('Mass media'),
'non_demand_effect_1' => clienttranslate('You may return a card from your hand. If you do, choose a value, and return all cards of that value from all score piles.'),
'non_demand_effect_2' => clienttranslate('You may splay your purple cards up.'),
),
81 => array('name' => clienttranslate('Antibiotics'),
'non_demand_effect_1' => clienttranslate('You may return up to three cards from your hand? For every different value of card that your returned, draw two ${age_8}.'),
),
82 => array('name' => clienttranslate('Skyscrapers'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer a top non-yellow card with a ${icon_6} from your board to my board! If you do, score the card beneath it, and return all other cards from that pile!'),
),
83 => array('name' => clienttranslate('Empiricism'),
'non_demand_effect_1' => clienttranslate('Choose two colors, then draw and reveal a ${age_9}. If it is either of the colors you choose, meld it and you may splay your cards of that color up.'),
'non_demand_effect_2' => clienttranslate('If you have twenty or more ${icon_3} on your board, you win.'),
),
84 => array('name' => clienttranslate('Socialism'),
'non_demand_effect_1' => clienttranslate('You may tuck all cards from your hand. If you tuck one, you must tuck them all. If you tucked at least one purple card, take all the lowest cards in each other player\'s hand into your hand.'),
),
/* Age 9 */
85 => array('name' => clienttranslate('Computers'),
'non_demand_effect_1' => clienttranslate('You may splay your red cards or your green cards up.'),
'non_demand_effect_2' => clienttranslate('Draw and meld a ${age_10}, then execute each of its non-demand effects. Do not share them.'),
),
86 => array('name' => clienttranslate('Genetics'),
'non_demand_effect_1' => clienttranslate('Draw and meld a ${age_10}. Score all cards beneath it.'),
),
87 => array('name' => clienttranslate('Composites'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer all but one card from your hand to my hand! Also, transfer the highest card from your score pile to my score pile!'),
),
88 => array('name' => clienttranslate('Fission'),
'i_demand_effect_1' => clienttranslate('${I demand} you draw a ${age_10}! If it is red, remove all hands, boards, and score piles from the game! If this occurs, the dogma action is complete.'),
'non_demand_effect_1' => clienttranslate('Return a top card other than Fission from any player board. Draw a ${age_10}.'),
'non_demand_effect_1_alt' => clienttranslate('Return a top card other than Fission from any player board.'),
),
89 => array('name' => clienttranslate('Collaboration'),
'i_demand_effect_1' => clienttranslate('${I demand} you draw two ${age_9} and reveal them! Transfer the card of my choice to my board, and meld the other!'),
'non_demand_effect_1' => clienttranslate('If you have ten or more green cards on your board, you win.'),
),
90 => array('name' => clienttranslate('Satellites'),
'non_demand_effect_1' => clienttranslate('Return all cards from your hand, and draw three ${age_8}.'),
'non_demand_effect_2' => clienttranslate('You may splay your purple cards up.'),
'non_demand_effect_3' => clienttranslate('Meld a card from your hand and then execute each of its non-demand dogma effects. Do not share them.'),
),
91 => array('name' => clienttranslate('Ecology'),
'non_demand_effect_1' => clienttranslate('You may return a card from your hand. If you do, score a card from your hand and draw two ${age_10}.'),
),
92 => array('name' => clienttranslate('Suburbia'),
'non_demand_effect_1' => clienttranslate('You may tuck any number of cards from your hand. Draw and score a ${age_1} for each card you tucked.'),
),
93 => array('name' => clienttranslate('Services'),
'i_demand_effect_1' => clienttranslate('${I demand} you transfer all the highest cards from your score pile to my hand! If you transferred any cards, then transfer a top card from my board without a ${icon_2} to your hand!'),
),
94 => array('name' => clienttranslate('Specialization'),
'non_demand_effect_1' => clienttranslate('Reveal a card from your hand. Take into your hand the top card of that color from all other player\'s boards.'),
'non_demand_effect_2' => clienttranslate('You may splay your yellow or blue cards up.'),
),
/* Age 10 */
95 => array('name' => clienttranslate('Bioengineering'),
'non_demand_effect_1' => clienttranslate('Transfer a top card with a ${icon_2} from any opponent\'s board to your score pile.'),
'non_demand_effect_2' => clienttranslate('If any player has fewer than three ${icon_2} on their board, the single player with the most ${icon_2} on their board wins.'),
),
96 => array('name' => clienttranslate('Software'),
'non_demand_effect_1' => clienttranslate('Draw and score a ${age_10}.'),
'non_demand_effect_2' => clienttranslate('Draw and meld two ${age_10}, then execute each of the second card\'s non dogma effects. Do not share them.'),
),
97 => array('name' => clienttranslate('Miniaturization'),
'non_demand_effect_1' => clienttranslate('You may return a card from your hand. If you returned a ${age_10}, draw a ${age_10} for every different value of card in your score pile.'),
),
98 => array('name' => clienttranslate('Robotics'),
'non_demand_effect_1' => clienttranslate('Score your top green card. Draw and meld a ${age_10}, then execute each of its non-demand dogma effects. Do not share them.'),
),
99 => array('name' => clienttranslate('Databases'),
'i_demand_effect_1' => clienttranslate('${I demand} you return half (rounded up) of the cards in your score pile!'),
),
100 => array('name' => clienttranslate('Self service'),
'non_demand_effect_1' => clienttranslate('Execute each of the non-demand dogma effects of any other top card on your board. Do not share them.'),
'non_demand_effect_2' => clienttranslate('If you have more achievements than each other player, you win.'),
),
101 => array('name' => clienttranslate('Globalization'),
'i_demand_effect_1' => clienttranslate('${I demand} you return a top card with a ${icon_2} on your board!'),
'non_demand_effect_1' => clienttranslate('Draw and score a ${age_6}. If no player has more ${icon_2} than ${icon_5} on their board, the single player with the most points wins.'),
),
102 => array('name' => clienttranslate('Stem cells'),
'non_demand_effect_1' => clienttranslate('You may score all cards from your hand. If you score one, you must score them all.'),
),
103 => array('name' => clienttranslate('A. I.'),
'non_demand_effect_1' => clienttranslate('Draw and score a ${age_10}.'),
'non_demand_effect_2' => clienttranslate('If Robotics and Software are top cards on any board, the single player with the lowest score wins.'),
),
104 => array('name' => clienttranslate('The internet'),
'non_demand_effect_1' => clienttranslate('You may splay your green cards up.'),
'non_demand_effect_2' => clienttranslate('Draw and score a ${age_10}.'),
'non_demand_effect_3' => clienttranslate('Draw and meld a ${age_10} for every two ${icon_6} on your board.'),
),
/* Special achievements */
105 => array('name' => clienttranslate('Empire'),
'condition_for_claiming' => clienttranslate('Claim this special achievement ${immediately} if you have three or more icons of all six types: ${icons_1_to_6}'),
'alternative_condition_for_claiming' => clienttranslate('May also be claimed via ${age_2} Construction.')),
106 => array('name' => clienttranslate('Monument'),
'condition_for_claiming' => clienttranslate('Claim this special achievement ${immediately} if you tuck six or score six cards during a single turn.'),
'alternative_condition_for_claiming' => clienttranslate('May also be claimed via ${age_1} Masonry.')),
107 => array('name' => clienttranslate('Wonder'),
'condition_for_claiming' => clienttranslate('Claim this special achievement ${immediately} if you have five colors on your board, and each is splayed either up or right.'),
'alternative_condition_for_claiming' => clienttranslate('May also be claimed via ${age_4} Invention.')),
108 => array('name' => clienttranslate('World'),
'condition_for_claiming' => clienttranslate('Claim this special achievement ${immediately} if you have twelve or more ${icon_6} on your board.'),
'alternative_condition_for_claiming' => clienttranslate('May also be claimed via ${age_3} Translation.')),
109 => array('name' => clienttranslate('Universe'),
'condition_for_claiming' => clienttranslate('Claim this special achievement ${immediately} if you have five top cards, and each is of value ${age_8} or higher.'),
'alternative_condition_for_claiming' => clienttranslate('May also be claimed via ${age_5} Astronomy.')),
/* Artifacts - Age 1 */
110 => array('name' => clienttranslate('Treaty of Kadesh'),
'i_demand_effect_1' => clienttranslate('${I compel} you to return all top cards from your board with a demand effect!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('Score a top, non‑blue card from your board with a demand effect.'),
),
111 => array('name' => clienttranslate('Sibidu Needle'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_1}. If you have a top card of matching color and value to the drawn card, score the drawn card and repeat this effect.'),
),
112 => array('name' => clienttranslate('Basur Hoyuk Tokens'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_4}. If you have a top card of the drawn card\'s color that comes before it in the alphabet, return the drawn card and all cards from your score pile.'),
),
113 => array('name' => clienttranslate('Holmegaard Bows'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer the highest top card with a ${icon_4} on your board to my hand!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('Draw a ${age_2}.'),
),
114 => array('name' => clienttranslate('Papyrus of Ani'),
// NOTE: Chris gave us permission to use the word 'set' instead of 'type'. See https://boardgamegeek.com/thread/1632784/article/40687757#40687757.
'non_demand_effect_1' => clienttranslate('Return a purple card from your hand. If you do, draw and reveal a card of any type of value two higher. If the drawn card is purple, meld it and execute each of its non‑demand dogma effects. Do not share them.'),
),
115 => array('name' => clienttranslate('Pavlovian Tusk'),
'non_demand_effect_1' => clienttranslate('Draw three cards of value equal to your top green card. Return one of the drawn cards. Score one of the drawn cards.'),
),
116 => array('name' => clienttranslate('Priest‑King'),
'non_demand_effect_1' => clienttranslate('Score a card from your hand. If you have a top card matching its color, execute each of the top card\'s non‑demand dogma effects. Do not share them.'),
'non_demand_effect_2' => clienttranslate('Claim an achievement, if eligible.'),
),
117 => array('name' => clienttranslate('Electrum Stater of Efesos'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_3}. If you do not have a top card of the drawn card\'s color, meld it and repeat this effect.'),
),
118 => array('name' => clienttranslate('Jiskairumoko Necklace'),
'i_demand_effect_1' => clienttranslate('${I compel} you to return a card from your score pile! If you do, transfer an achievement of the same value from your achievements to mine!'),
'i_demand_effect_1_is_compel' => true,
),
119 => array('name' => clienttranslate('Dancing Girl'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer Dancing Girl to your board!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('If Dancing Girl has been on every board during this action, and it started on your board, you win.'),
),
120 => array('name' => clienttranslate('Lurgan Canoe'),
'non_demand_effect_1' => clienttranslate('Meld a card from your hand. Score all other cards of the same color from your board. If you scored at least one card, repeat this effect.'),
),
121 => array('name' => clienttranslate('Xianrendong Shards'),
// NOTE: Carl clarified the intended wording of this card in https://boardgamegeek.com/thread/2913636/xianrendong-shards-when-less-2-cards-are-scored.
'non_demand_effect_1' => clienttranslate('Reveal three cards from your hand. Score two, then tuck the other. If you score two cards of the same color, draw three ${age_1}s.'),
),
122 => array('name' => clienttranslate('Mask of Warka'),
'non_demand_effect_1' => clienttranslate('Choose a color. Each player reveals all cards of that color from their hand. If you are the only player to reveal cards, return them and claim all achievements of value matching those cards, ignoring eligibility.'),
),
123 => array('name' => clienttranslate('Ark of the Covenant'),
'non_demand_effect_1' => clienttranslate('Return a card from your hand. Transfer all cards of the same color from the boards of all players with no top Artifacts to your score pile. If Ark of the Covenant is a top card on any board, transfer it to your hand.'),
),
124 => array('name' => clienttranslate('Tale of the Shipwrecked Sailor'),
'non_demand_effect_1' => clienttranslate('Choose a color. Draw a ${age_1}. Meld a card of the chosen color from your hand. If you do, splay that color left.'),
),
/* Artifacts - Age 2 */
125 => array('name' => clienttranslate('Seikilos Epitaph'),
'non_demand_effect_1' => clienttranslate('Draw and meld a ${age_3}. Meld your bottom card of the drawn card\'s color. Execute its non‑demand dogma effects. Do not share them.'),
),
126 => array('name' => clienttranslate('Rosetta Stone'),
// NOTE: Chris gave us permission to use the word 'set' instead of 'type'. See https://boardgamegeek.com/thread/1632784/article/40687757#40687757.
'non_demand_effect_1' => clienttranslate('Choose a card set. Draw two ${age_2}s from that set. Meld one and transfer the other to an opponent\'s board.'),
),
127 => array('name' => clienttranslate('Chronicle of Zuo'),
'non_demand_effect_1' => clienttranslate('If you have the least ${icon_4}, draw a ${age_2}. If you have the least ${icon_1}, draw a ${age_3}. If you have the least ${icon_3}, draw a ${age_4}.'),
),
128 => array('name' => clienttranslate('Babylonian Chronicles'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer a top non‑red card with a ${icon_4} from your board to my board!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('Draw and score a ${age_3}.'),
),
129 => array('name' => clienttranslate('Holy Lance'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer a top Artifact from your board to my board!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('If Holy Grail is a top card on your board, you win.'),
),
130 => array('name' => clienttranslate('Baghdad Battery'),
// NOTE: Chris gave us permission to use the word 'set' instead of 'type'. See https://boardgamegeek.com/thread/1632784/article/40687757#40687757.
'non_demand_effect_1' => clienttranslate('Meld two cards from your hand. If you melded two of the same color and they are from different sets, draw and score five ${age_2}s.'),
),
131 => array('name' => clienttranslate('Holy Grail'),
'non_demand_effect_1' => clienttranslate('Return a card from your hand. Claim an achievement of matching value ignoring eligibility.'),
),
132 => array('name' => clienttranslate('Terracotta Army'),
// NOTE: We added the words "on your board" after Carl made a clarification in https://boardgamegeek.com/thread/2901660).
'i_demand_effect_1' => clienttranslate('${I compel} you to return a top card on your board with no ${icon_4}!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('Score a card from your hand with no ${icon_4}.'),
),
133 => array('name' => clienttranslate('Dead Sea Scrolls'),
'non_demand_effect_1' => clienttranslate('Draw an Artifact of value equal to the value of your highest top card.'),
),
134 => array('name' => clienttranslate('Cyrus Cylinder'),
'non_demand_effect_1' => clienttranslate('Choose any other top purple card on any player\'s board. Execute its non‑demand dogma effects. Do not share them. Splay left a color on any player\'s board.'),
),
/* Artifacts - Age 3 */
135 => array('name' => clienttranslate('Dunhuang Star Chart'),
'non_demand_effect_1' => clienttranslate('Return all cards from your hand. Draw a card of value equal to the number of cards returned.'),
),
136 => array('name' => clienttranslate('Charter of Liberties'),
'non_demand_effect_1' => clienttranslate('Tuck a card from your hand. If you do, splay left its color, then choose a splayed color on any player\'s board. Execute all of that color\'s top card\'s non‑demand effects, without sharing.'),
),
137 => array('name' => clienttranslate('Excalibur'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer a top card of higher value than my top card of the same color from your board to my board!'),
'i_demand_effect_1_is_compel' => true,
),
138 => array('name' => clienttranslate('Mjolnir Amulet'),
'i_demand_effect_1' => clienttranslate('${I compel} you to choose a top card on your board! Transfer all cards of that card\'s color from your board to my score pile!'),
'i_demand_effect_1_is_compel' => true,
),
139 => array('name' => clienttranslate('Philosopher\'s Stone'),
'non_demand_effect_1' => clienttranslate('Return a card from your hand. Score a number of cards from your hand equal to the value of the card returned.'),
),
140 => array('name' => clienttranslate('Beauvais Cathedral Clock'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_4}. Splay right the color matching the drawn card.'),
),
141 => array('name' => clienttranslate('Moylough Belt Shrine'),
'i_demand_effect_1' => clienttranslate('${I compel} you to reveal all cards in your hand and transfer the card of my choice to my board!'),
'i_demand_effect_1_is_compel' => true,
),
142 => array('name' => clienttranslate('Along the River during the Qingming Festival'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_4}. If it is yellow, tuck it. If it is purple, score it. Otherwise, repeat this effect.'),
),
143 => array('name' => clienttranslate('Necronomicon'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_3}. If it is: Yellow: Return all cards in your hand. Green: Unsplay all your stacks. Red: Return all cards in your score pile. Blue: Draw a ${age_9}.'),
),
144 => array('name' => clienttranslate('Shroud of Turin'),
'non_demand_effect_1' => clienttranslate('Return a card from your hand. If you do, return a top card from your board and a card from your score pile of the returned card\'s color. If you did all three, claim an achievement ignoring eligibility.'),
),
/* Artifacts - Age 4 */
145 => array('name' => clienttranslate('Petition of Right'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer a card from your score pile to my score pile for each top card with a ${icon_4} on your board!'),
'i_demand_effect_1_is_compel' => true,
),
146 => array('name' => clienttranslate('Delft Pocket Telescope'),
'non_demand_effect_1' => clienttranslate('Return a card from your score pile. If you do, draw a ${age_5} and a ${age_6}, then reveal one of the drawn cards that has a symbol in common with the returned card. If you cannot, return the drawn cards and repeat this effect.'),
),
147 => array('name' => clienttranslate('East India Company Charter'),
'non_demand_effect_1' => clienttranslate('Choose a value other than ${age_5}. Return all cards of that value from all score piles. For each player that returned cards, draw and score a ${age_5}.'),
),
148 => array('name' => clienttranslate('Tortugas Galleon'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer all the highest cards from your score pile to my score pile! If you transfered any, transfer a top card on your board of that value to my board!'),
'i_demand_effect_1_is_compel' => true,
),
149 => array('name' => clienttranslate('Molasses Reef Caravel'),
'non_demand_effect_1' => clienttranslate('Return all cards from your hand. Draw three ${age_4}s. Meld a blue card from your hand. Score a card from your hand. Return a card from your score pile.'),
),
150 => array('name' => clienttranslate('Hunt‑Lenox Globe'),
'non_demand_effect_1' => clienttranslate('If you have fewer than four cards in your hand, return all non‑green top cards from your board. Draw a ${age_5} for each card returned. Meld a card from your hand.'),
),
151 => array('name' => clienttranslate('Moses'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer all top cards with a ${icon_1} from your board to my score pile!'),
'i_demand_effect_1_is_compel' => true,
// NOTE: We added the words "on your board" after Carl made a clarification in https://boardgamegeek.com/thread/2901660).
'non_demand_effect_1' => clienttranslate('Score a top card on your board with a ${icon_1}.'),
),
152 => array('name' => clienttranslate('Mona Lisa'),
'non_demand_effect_1' => clienttranslate('Choose a number and a color. Draw five ${age_4}, then reveal your hand. If you have exactly that many cards of that color, score them, and splay right your cards of that color. Otherwise, return all cards from your hand.'),
),
153 => array('name' => clienttranslate('Cross of Coronado'),
'non_demand_effect_1' => clienttranslate('Reveal your hand. If you have exactly five cards and five colors in your hand, you win.'),
),
154 => array('name' => clienttranslate('Abell Gallery Harpsichord'),
'non_demand_effect_1' => clienttranslate('For each value of top card on your board appearing exactly once, draw and score a card of that value in ascending order.'),
),
/* Artifacts - Age 5 */
155 => array('name' => clienttranslate('Boerhavve Silver Microscope'),
'non_demand_effect_1' => clienttranslate('Return the lowest card in your hand and the lowest top card on your board. Draw and score a card of value equal to the sum of the values of the cards returned.'),
),
156 => array('name' => clienttranslate('Principia'),
'non_demand_effect_1' => clienttranslate('Return all non‑blue top cards from your board. For each card returned, draw and meld a card of value one higher than the value of the returned card, in ascending order.'),
),
157 => array('name' => clienttranslate('Bill of Rights'),
'i_demand_effect_1' => clienttranslate('${I compel} you to choose a color where you have more visible cards than I do! Transfer all cards of that color from your board to my board, from the bottom up!'),
'i_demand_effect_1_is_compel' => true,
),
158 => array('name' => clienttranslate('Ship of the Line Sussex'),
'non_demand_effect_1' => clienttranslate('If you have no cards in your score pile, choose a color and score all cards of that color from your board. Otherwise, return all cards from your score pile.'),
),
159 => array('name' => clienttranslate('Barque‑Longue La Belle'),
'non_demand_effect_1' => clienttranslate('Draw and meld a ${age_5}. If the drawn card is not green, repeat this effect.'),
),
160 => array('name' => clienttranslate('Hudson\'s Bay Company Archives'),
'non_demand_effect_1' => clienttranslate('Score the bottom card of every color on your board. Meld a card from your score pile. Splay right the color of the melded card.'),
),
161 => array('name' => clienttranslate('Gujin Tushu Jinsheng'),
'non_demand_effect_1' => clienttranslate('If Gujin Tushu Jinsheng is on your board, choose any other top card on any other board. Execute the effects on the chosen card as if they were on this card. Do not share them.'),
),
162 => array('name' => clienttranslate('The Daily Courant'),
'non_demand_effect_1' => clienttranslate('Draw a card of any value, then place it on top of the draw pile of its age. You may execute the effects of one of your other top cards as if they were on this card. Do not share them.'),
),
163 => array('name' => clienttranslate('Sandham Room Cricket Bat'),
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_6}. If it is red, claim an achievement, ignoring eligibility.'),
),
164 => array('name' => clienttranslate('Almira, Queen of the Castle'),
'non_demand_effect_1' => clienttranslate('Meld a card from your hand. Claim an achievement of matching value, ignoring eligibility.'),
),
/* Artifacts - Age 6 */
165 => array('name' => clienttranslate('Kilogram of the Archives'),
'non_demand_effect_1' => clienttranslate('Return a card from your hand. Return a top card from your board. If you returned two cards and their values sum to ten, draw and score a ${age_10}.'),
),
166 => array('name' => clienttranslate('Puffing Billy'),
'non_demand_effect_1' => clienttranslate('Return a card from your hand. Draw a card of value equal to the highest number of symbols of the same type visible in that color on your board. Splay right that color.'),
),
167 => array('name' => clienttranslate('Frigate Constitution'),
'i_demand_effect_1' => clienttranslate('${I compel} you to reveal a card in your hand! If you do, and its value is equal to the value of any of my top cards, return it and all cards of its color from your board!'),
'i_demand_effect_1_is_compel' => true,
),
168 => array('name' => clienttranslate('U.S. Declaration of Independence'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer the highest card in your hand to my hand, the highest card in your score pile to my score pile, and the highest top card with a ${icon_5} from your board to my board!'),
'i_demand_effect_1_is_compel' => true,
),
169 => array('name' => clienttranslate('The Wealth of Nations'),
'non_demand_effect_1' => clienttranslate('Draw and score a ${age_1}. Add up the values of all the cards in your score pile, divide by five, and round up. Draw and score a card of value equal to the result.'),
),
170 => array('name' => clienttranslate('Buttonwood Agreement'),
'non_demand_effect_1' => clienttranslate('Choose three colors. Draw and reveal a ${age_8}. If the drawn card is one of the chosen colors, score it and splay up that color. Otherwise, return all cards of the drawn card\'s color from your score pile, and unsplay that color.'),
),
171 => array('name' => clienttranslate('Stamp Act'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer a card of value equal to the top yellow card on your board from your score pile to mine! If you do, return a card from your score pile of value equal to the top green card on your board!'),
'i_demand_effect_1_is_compel' => true,
),
172 => array('name' => clienttranslate('Pride and Prejudice'),
'non_demand_effect_1' => clienttranslate('Draw and meld a ${age_6}. If the drawn card\'s color is the color with the fewest (or tied) number of visible cards on your board, score the melded card, and repeat this effect.'),
),
173 => array('name' => clienttranslate('Moonlight Sonata'),
'non_demand_effect_1' => clienttranslate('Choose a color on your board having the highest top card. Meld the bottom card on your board of that color. Claim an achievement, ignoring eligibility.'),
),
174 => array('name' => clienttranslate('Marcha Real'),
'non_demand_effect_1' => clienttranslate('Reveal and return two cards from your hand. If they have the same value, draw a card of value one higher. If they have the same color, claim an achievement, ignoring eligibility.'),
),
/* Artifacts - Age 7 */
175 => array('name' => clienttranslate('Periodic Table'),
'non_demand_effect_1' => clienttranslate('Choose two top cards on your board of the same value. If you do, draw a card of value one higher and meld it. If it melded over one of the chosen cards, repeat this effect.'),
),
176 => array('name' => clienttranslate('Corvette Challenger'),
'non_demand_effect_1' => clienttranslate('Draw and tuck an ${age_8}. Splay up the color of the tucked card. Draw and score a card of value equal to the number of cards of that color visible on your board.'),
),
177 => array('name' => clienttranslate('Submarine H. L. Hunley'),
'i_demand_effect_1' => clienttranslate('${I compel} you to draw and meld a ${age_7}! Reveal the bottom card on your board of the melded card\'s color! If the revealed card is a ${age_1}, return all cards of its color from your board!'),
'i_demand_effect_1_is_compel' => true,
),
178 => array('name' => clienttranslate('Jedlik\'s Electromagnetic Self‑Rotor'),
'non_demand_effect_1' => clienttranslate('Draw and score an ${age_8}. Draw and meld an ${age_8}. Claim an achievement of value 8 if it is available, ignoring eligibility.'),
),
179 => array('name' => clienttranslate('International Prototype Metre Bar'),
'non_demand_effect_1' => clienttranslate('Choose a value. Draw and meld a card of that value. Splay up the color of the melded card. If the number of cards of that color visible on your board is exactly equal to the card\'s value, you win. Otherwise, return the melded card.'),
),
180 => array('name' => clienttranslate('Hansen Writing Ball'),
'i_demand_effect_1' => clienttranslate('${I compel} you to draw four ${age_7}! Meld a blue card, then transfer all cards in your hand to my hand!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('Draw and reveal a ${age_7}. If it has no ${icon_6}, tuck it and repeat this effect.'),
),
181 => array('name' => clienttranslate('Colt Paterson Revolver'),
'i_demand_effect_1' => clienttranslate('${I compel} you to reveal your hand! Draw a ${age_7}! If the color of the drawn card matches the color of any other cards in your hand, return all cards in your hand and all cards in your score pile!'),
'i_demand_effect_1_is_compel' => true,
),
182 => array('name' => clienttranslate('Singer Model 27'),
'non_demand_effect_1' => clienttranslate('Tuck a card from your hand. If you do, splay up its color, and then tuck all cards from your score pile of that color.'),
),
183 => array('name' => clienttranslate('Roundhay Garden Scene'),
'non_demand_effect_1' => clienttranslate('Meld the highest card from your score pile. Draw and score two cards of value equal to the melded card. Execute the effects of the melded card as if they were on this card. Do not share them.'),
),
184 => array('name' => clienttranslate('The Communist Manifesto'),
'non_demand_effect_1' => clienttranslate('For each player in the game, draw and reveal a ${age_7}. Transfer one of the drawn cards to each player\'s board. Execute the non‑demand effects of your card. Do not share them.'),
),
/* Artifacts - Age 8 */
185 => array('name' => clienttranslate('Parnell Pitch Drop'),
'non_demand_effect_1' => clienttranslate('Draw and meld a card of value one higher than the highest top card on your board. If the melded card has three ${icon_6}, you win.'),
),
186 => array('name' => clienttranslate('Earhart\'s Lockheed Electra 10E'),
'non_demand_effect_1' => clienttranslate('For each value below nine, return a top card of that value from your board, in descending order. If you return eight cards, you win. Otherwise, claim an achievement, ignoring eligibility.'),
),
187 => array('name' => clienttranslate('Battleship Bismarck'),
'i_demand_effect_1' => clienttranslate('${I compel} you to draw and reveal an ${age_8}! Return all cards of the drawn card\'s color from your board!'),
'i_demand_effect_1_is_compel' => true,
),
188 => array('name' => clienttranslate('Battleship Yamato'),
),
189 => array('name' => clienttranslate('Ocean Liner Titanic'),
'non_demand_effect_1' => clienttranslate('Score all bottom cards from your board.'),
),
190 => array('name' => clienttranslate('Meiji‑Mura Stamp Vending Machine'),
'non_demand_effect_1' => clienttranslate('Return a card from your hand. Draw and score three cards of the returned card\'s value.'),
),
191 => array('name' => clienttranslate('Plush Beweglich Rod Bear'),
'non_demand_effect_1' => clienttranslate('Choose a value. Splay up each color with a top card of the chosen value. Return all cards of the chosen value from all score piles.'),
),
192 => array('name' => clienttranslate('Time'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer a non‑yellow top card with a ${icon_6} from your board to my board! If you do, repeat this effect!'),
'i_demand_effect_1_is_compel' => true,
),
193 => array('name' => clienttranslate('Garland\'s Ruby Slippers'),
'non_demand_effect_1' => clienttranslate('Meld an ${age_8} from your hand. If the melded card has no effects, you win. Otherwise, execute the effects of the melded card as if they were on this card. Do not share them.'),
),
194 => array('name' => clienttranslate('\'30 World Cup Final Ball'),
'i_demand_effect_1' => clienttranslate('${I compel} you to return one of your achievements!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('Draw and reveal an ${age_8}. The single player with the highest top card of the drawn card\'s color achieves it, ignoring eligibility. If that happens, repeat this effect.'),
),
/* Artifacts - Age 9 */
195 => array('name' => clienttranslate('Yeager\'s Bell X‑1A'),
'non_demand_effect_1' => clienttranslate('Draw and meld a ${age_9}. Execute the effects of the melded card as if they were on this card, without sharing. If that card has a ${icon_6}, repeat this effect.'),
),
196 => array('name' => clienttranslate('Luna 3'),
'non_demand_effect_1' => clienttranslate('Return all cards from your score pile. Draw and score a card of value equal to the number of cards returned.'),
),
197 => array('name' => clienttranslate('United Nations Charter'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer all top cards on your board with a demand effect to my score pile!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('If you have a top card on your board with a demand effect, draw a ${age_10}.'),
),
198 => array('name' => clienttranslate('Velcro Shoes'),
'i_demand_effect_1' => clienttranslate('${I compel} you to transfer a ${age_9} from your hand to my hand! If you do not, transfer a ${age_9} from your score pile to my score pile! If you do neither, I win!'),
'i_demand_effect_1_is_compel' => true,
),
199 => array('name' => clienttranslate('Philips Compact Cassette'),
'i_demand_effect_1' => clienttranslate('${I compel} you to unsplay all splayed colors on your board!'),
'i_demand_effect_1_is_compel' => true,
'non_demand_effect_1' => clienttranslate('Splay up two colors on your board.'),
),
200 => array('name' => clienttranslate('Syncom 3'),
'non_demand_effect_1' => clienttranslate('Return all cards from your hand. Draw and reveal five ${age_9}s. If you revealed all five colors, you win.'),
),
201 => array('name' => clienttranslate('Rock Around the Clock'),
'non_demand_effect_1' => clienttranslate('For each top card on your board with a ${icon_6}, draw and score a ${age_9}.'),
),
202 => array('name' => clienttranslate('Magnavox Odyssey'),
'non_demand_effect_1' => clienttranslate('Draw and meld two ${age_10}s. If they are the same color, you win.'),
),
203 => array('name' => clienttranslate('The Big Bang'),
'non_demand_effect_1' => clienttranslate('Execute the non‑demand effects of your top blue card, without sharing. If this caused any change to occur, draw and remove a ${age_10} from the game, then repeat this effect.'),
),
204 => array('name' => clienttranslate('Marilyn Diptych'),
'non_demand_effect_1' => clienttranslate('You may score a card from your hand. You may transfer any card from your score pile to your hand. If you have exactly 25 points, you win.'),
),
/* Artifacts - Age 10 */
205 => array('name' => clienttranslate('Rover Curiosity'),
'non_demand_effect_1' => clienttranslate('Draw and meld an Artifact ${age_10}. Execute the effects of the melded card as if they were on this card. Do not share them.'),
),
206 => array('name' => clienttranslate('Higgs Boson'),
'non_demand_effect_1' => clienttranslate('Transfer all cards on your board to your score pile.'),
),
207 => array('name' => clienttranslate('Exxon Valdez'),