forked from survovoaneend/All-In-Jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzh_CN.lua
More file actions
2481 lines (2480 loc) · 100 KB
/
zh_CN.lua
File metadata and controls
2481 lines (2480 loc) · 100 KB
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
--ALOPHRINE的个人汉化修正!如遇到问题请联系我。QQ与B站同名
--vergenti Q群:奇小苦、:),对部分汉化进行了修正,包括需要代码修改的丑
return {
misc = {
dictionary = {
k_moon = "卫星牌",
k_moon_q = "卫星牌?",
k_star = "恒星牌",
k_star_q = "恒星牌?",
k_asteroid = "小行星牌",
aij_requires_restart = "需要重启",
aij_enable_moons = "启用卫星牌",
k_aij_guess_the_jest = "笑语猜谜",
aij_alter_trypophobia = "是否和谐“密集恐惧”",
aij_no_copy_neg = "允许复制负片卡牌",
k_aij_memory_card = "已铭记!",
aij_plus_tag = "标签+1",
},
labels = {
aij_glimmer = "微光",
aij_stellar = "星辰",
}
},
descriptions = {
Back = {
b_aij_fabled = {
name = '传奇牌组',
text = {
'{C:legendary,E:1}传奇{}小丑牌可能',
'出现在{C:attention}商店{}',
'{C:attention}-1{}小丑牌槽位'
},
unlock = {
'解锁一张',
'{C:legendary,E:1}传奇{}小丑牌',
}
},
b_aij_fabled_hidden = {
name = '传奇牌组',
text = {},
unlock = {
'?????',
}
}
},
Enhanced = {
m_aij_fervent = {
name = "狂热牌",
text = {
"打出时{C:chips}+#2#{}筹码"
}
},
m_aij_dyscalcular = {
name = "失算牌",
text = {
"视为所有{C:attention}数字{}牌",
"{C:inactive}(不用于组成牌型)"
}
},
m_aij_charged = {
name = "充能牌",
text = {
"若与此牌一同{C:attention}打出{}",
"或{C:attention}手牌{}中包含此牌",
"{C:attention}增强效果{}获得 {C:attention}#1#%{}加成",
}
},
},
Edition = {
e_aij_glimmer = {
name = "微光",
text = {
"{C:aij_plasma}平衡{}{C:attention}#1#%{} 的",
"{C:mult}倍率{} 和 {C:chips}筹码"
}
},
e_aij_stellar = {
name = "星辰",
text = {
"根据打出的牌型{C:attention}等级{}",
"每级 {C:chips}+#1#{} 筹码和 {C:mult}+#2#{}倍率"
}
},
},
Joker = {
j_aij_flying_ace = {
name = "空中王牌",
text = {
"本回合中,每打出一张",
"独特{C:attention}花色{}的{C:attention}A{}",
"回合结束时获得 {C:money}$#1#{} ",
"{C:inactive}(当前为{} {C:money}$#2#{}{C:inactive})"
},
},
j_aij_lucky_seven = {
name = "幸运七",
text = {
"将所有打出的未增强",
"{C:attention}7{}变为{C:attention}幸运牌{}"
},
},
j_aij_you_broke_it = {
name = "你搞砸了!",
text = {
"将所有打出的 {C:attention}#1#{}",
"变为 {C:attention}#2#{}牌",
"{s:0.8}牌面和增强效果",
"{s:0.8}在回合结束时改变"
},
},
j_aij_birthday_clown = {
name = "生日小丑",
text = {
"每进入一个{C:attention}底注{}",
"{X:mult,C:white}X#1#{}倍率",
"持续{C:attention}1{}回合",
"{C:inactive}(#2#)",
},
},
j_aij_memory_card = {
name = "记忆卡",
text = {
"如果本回合第一手牌仅包含{C:attention}一张{}牌",
"该牌在未来盲注中总是",
"{C:attention}最先{}被{C:attention}抽到{}",
"{C:inactive}(只能存储一张牌)",
"{C:inactive}(仅在最左侧位置触发)"
}
},j_aij_sleepy_joker = {
name = "瞌睡小丑",
text = {
"如果打出的牌中只含",
"{C:spades}黑桃{}和{C:clubs}梅花{}",
"则{X:mult,C:white}X#1#{}倍率"
}
},
j_aij_invisible_man = {
name = "隐形人",
text = {
"所有{C:attention}人头牌{}均视为",
"{C:attention}K{}、{C:attention}Q{} 和 {C:attention}J",
"{C:inactive}(不用于组成牌型)"
}
},
j_aij_handsome_joker = { name = "帅气小丑", text = { "" } },
j_aij_whiteface_grotesque = { name = "白面怪诞", text = { "" } },
j_aij_the_clown_show = {
name = "小丑秀",
text = {
"本轮每购买一张{C:attention}小丑牌",
"获得{C:chips}+#1#{}筹码",
"{C:inactive}(当前为{C:chips}+#2#{C:inactive}筹码)"
}
},
j_aij_little_devil = {
name = "小恶魔",
text = {
"当跳过一个{C:attention}盲注{}时",
"生成一个{C:attention}标准{}、{C:tarot}吊饰{}、",
"{C:planet}流星{}、{C:spectral}空灵{}或{C:red}小丑{}标签"
},
},
j_aij_pierrot = { name = "皮耶罗", text = { "" } },
j_aij_hat_trick = {
name = "帽子戏法",
text = {
"打出的{C:attention}3{}计分时",
"获得等同于{C:attention}三条{}牌型等级的{C:mult}倍率{}"
}
},
j_aij_squeezy_pete = {
name = "皮特捏捏",
text = {
"每次连续打出包含{C:attention}葫芦{}的牌型",
"{X:mult,C:white}X#1#{}倍率",
"{C:inactive}(当前为{} {X:mult,C:white}X#2#{}{C:inactive} 倍率)",
},
},
j_aij_bloody_mary = { name = "血腥玛丽", text = { "" } },
j_aij_trypophobia = {
name = "密集恐惧症",
text = {
"如果打出的牌仅含{C:attention}8{}",
"{C:mult}+#1#{}倍率",
},
},
j_aij_rummikub = { name = "拉密", text = { "" } },
j_aij_imperial_bower = {
name = "帝国花园",
text = {
"每回合{C:attention}首张{}抽到的牌",
"视为{C:attention}任意{}牌面和花色",
"{C:inactive}(牌面不用于组成牌型)"
}
},
j_aij_ultrasound = {
name = "超声波",
text = {
"选择一个{C:attention}补充包{}时",
"显示其一张内容"
}
},
j_aij_negative_nancy = {
name = "负面南希",
text = {
"{C:dark_edition}负片{}小丑牌在{C:attention}商店{}中",
"出现几率提高{C:attention}3倍{}"
},
},
j_aij_negative_space = {
name = "负空间",
text = {
"每拥有{C:dark_edition}负片{}小丑",
"{C:attention}+#1#{}手牌上限",
"{C:inactive}(当前为{C:attention}+#2#{C:inactive}手牌上限){}",
"{C:inactive}(上限为{C:attention}+#3#{C:inactive}手牌上限){}"
}
},
j_aij_infinite_jest = {
name = "无限玩笑",
text = {
"击败{C:attention}Boss盲注{}时",
"升级{C:attention}所有牌型{}等级"
}
},
j_aij_old_joker = { name = "老小丑", text = { "" } },
j_aij_imageboard = { name = "图版", text = { "" } },
j_aij_carousel = {
name = "旋转木马",
text = {
"当计分结束后",
"将所有{C:attention}计分牌{}的花色",
"转换为循环中的{C:attention}下一花色{}",
"{C:inactive,s:0.8}(红桃→梅花→方片→黑桃)"
}
},
j_aij_slippery_when_wet = { name = "湿滑警告", text = { "" } },
j_aij_founding_father = {
name = "开国元勋",
text = {
"{C:attention}充能牌{}的",
"{C:attention}增强效果{}翻倍"
}
},
j_aij_scary_story = {
name = "恐怖故事",
text = {
"{C:attention}标准包{}中的基础游戏牌",
"有 {C:green}#1#/#2#{} 的几率变为{C:dark_edition}负片{}"
},
},
j_aij_doodle = {
name = "涂鸦",
text = {
"有 {C:green}#1#/#2#{} 的几率复制",
"相邻两个{C:attention}小丑牌{}的{C:attention}能力{}"
},
},
j_aij_joqr = { name = "小丑牌(音译)", text = { "" } },
j_aij_greasepaint = { name = "油彩", text = { "" } },
j_aij_public_bathroom = {
name = "公共厕所",
text = {
"每张在{C:attention}同花{}中打出的{C:attention}2{}",
"使此小丑获得{C:mult}+#1#{}倍率",
"{C:inactive}(当前为{C:mult}+#2#{C:inactive}倍率)"
},
},
j_aij_diogenes = { name = "第欧根尼", text = { "" } },
j_aij_blank_card = {
name = "空白牌",
text = {
"每当从{C:attention}标准包{}中",
"选择一张{C:attention}游戏牌{}时",
"生成一张完全相同的{C:attention}复制品{}"
},
},
j_aij_comedians_manifesto = {
name = "小丑宣言",
text = {
"使{C:attention}标准包{}中的{C:attention}K{}和{C:attention}Q{}",
"变为{C:attention}J{}"
}
},
j_aij_cctv = {
name = "闭路电视",
text = {
"每张{C:enhanced}玻璃牌{}摧毁时获得{C:money}$#1#{}",
"并将{C:attention}手牌{}中的",
"另一张牌转化为{C:enhanced}玻璃牌{}"
}
},
j_aij_circuit_board = { name = "电路板", text = { "" } },
j_aij_platinum_chip = { name = "白金筹码", text = { "" } },
j_aij_pell_mel = { name = "杂乱", text = { "" } },
j_aij_pput_together = { name = "组合", text = { "" } },
j_aij_krampus = {
name = "坎卜斯",
text = {
"打出的{C:attention}黄金牌{}",
"会变为{C:attention}石头牌{}",
"{C:attention}石头牌{}打出时",
"获得 {C:money}$#1#{} "
},
},
j_aij_art_of_the_deal = {
name = "交易艺术",
text = {
"每当获得{C:money}金钱{}时",
"{C:mult}+#2#{}倍率",
"如果{C:money}金钱{}为{C:money}$0{}或更少",
"效果重置",
"{C:inactive}(当前为{C:mult}+#1#{C:inactive} 倍率)"
}
},
j_aij_word_art = {
name = "文字艺术",
text = {
"打出的牌型中每包含一张",
"{C:attention}A{}、{C:attention}K{}、{C:attention}Q{} 或 {C:attention}J{}",
"{C:mult}+#1#{}倍率"
}
},
j_aij_atom = {
name = "原子",
text = {
"如果打出的牌型只含一张{C:attention}A{}",
"提升{C:attention}高牌{}等级"
},
},
j_aij_plain_jane = {
name = "朴素婕恩",
text = {
"每张打出的{C:attention}未增强{}牌",
"给予 {C:mult}+#1#{}倍率"
},
},
j_aij_paper_bag = { name = "纸袋", text = { "" } },
j_aij_fruity_joker = { name = "水果小丑", text = { "" } },
j_aij_jokia = { name = "小丑(挪威语)", text = { "" } },
j_aij_the_mycologists = {
name = "真菌学家",
text = {
"若打出的牌型为{C:attention}#1#{}",
"摧毁右侧的牌",
"将其{C:chips}筹码{}、{C:dark_edition}增强{}和{C:dark_edition}版本{}",
"赋予左侧的牌"
}
},
j_aij_cool_joker = { name = "酷小丑", text = { "" } },
j_aij_square_eyes = {
name = "方眼小丑",
text = {
"打出的牌型中每包含一张{C:attention}4{}",
"每张打出的{C:attention}4{}给予{C:mult}+#1#{}倍率"
}
},
j_aij_punk_joker = {
name = "朋克小丑",
text = {
"如果打出的牌型包含一张{C:attention}万能牌{}",
"将一张随机的未增强打出牌",
"变为一张{C:attention}万能牌{}"
},
},
j_aij_slim_joker = {
name = "纤细小丑",
text = {
"{C:mult}+#1#{}倍率",
"打出的牌型中每张牌",
"减少 {C:mult}-#2#{}倍率",
}
},
j_aij_wireframe = { name = "线框图", text = { "" } },
j_aij_soviet = {
name = "苏联同志",
text = {
"如果打出的牌型不包含",
"{C:attention}K{}或{C:attention}Q{}则{C:mult}+#1#{}倍率"
}
},
j_aij_mustachio = { name = "小胡子", text = { "" } },
j_aij_penny = {
name = "一便士",
text = {
"带有{C:money}金色蜡封{}的牌有",
"{C:green}#1#/#2#{} 的几率{C:attention}再次触发{}"
},
},
j_aij_doctors_note = {
name = "医生证明",
text = {
"所有{C:attention}数字{}的{C:hearts}红桃{}",
"均视为{C:attention}相同点数",
"{C:inactive}(不用于组成牌型)"
}
},
j_aij_silly_sausage = {
name = "蠢蠢香肠",
text = {
"{C:green}重掷{}费用减少 {C:money}$#1#{}",
"每回合结束时减少{C:money}$1{}"
}
},
j_aij_joker_baby = { name = "小丑宝宝", text = { "" } },
j_aij_anchor = {
name = "船锚",
text = {
"此小丑牌及相邻小丑牌",
"{C:attention}无法{}被摧毁"
}
},
j_aij_hei_tiki = {
name = "毛利玉饰",
text = {
"若打出的牌型最终{C:chips}筹码{}",
"超过{C:mult}倍率{}",
"此小丑牌获得 {C:mult}+#2#{}倍率",
"{C:inactive}(当前为{C:mult}+#1#{} {C:inactive}倍率)"
}
},
j_aij_polybius = { name = "波利比乌斯", text = { "" } },
j_aij_joker_sighting = { name = "小丑目击", text = { "" } },
j_aij_pencil_drawing = { name = "铅笔画", text = { "" } },
j_aij_holy_bible = { name = "圣经", text = { "" } },
j_aij_great_white_north = { name = "大白北方", text = { "" } },
j_aij_right_angle = { name = "直角", text = { "" } },
j_aij_adoring_joker = {
name = "崇拜小丑",
text = {
"{C:attention}小丑牌{}触发后",
"将{C:mult}倍率{}设为你在当前{C:attention}底注{}中",
"达到过的最高{C:mult}倍率{}",
"{C:inactive}(当前为{C:mult}#1# {C:inactive}倍率)"
}
},
j_aij_lucignolo = {
name = "小灯芯",
text = {
"当任何游戏牌被摧毁时",
"获得{C:money}$#1#{}"
},
},
j_aij_scorecard = {
name = "记分卡",
text = {
"当选择{C:attention}盲注{}时",
"{C:attention}随机牌型{}等级{C:attention}+#1#{}"
}
},
j_aij_punch_and_judy = { name = "潘趣与朱迪", text = { "" } },
j_aij_nature_tapes = { name = "自然磁带", text = { "" } },
j_aij_low_priest = { name = "低级牧师", text = { "" } },
j_aij_oil_and_water = { name = "水火不容", text = { "" } },
j_aij_big_ears = { name = "大耳朵", text = { "" } },
j_aij_causal_absent_paranoia = { name = "因果缺席妄想", text = { "" } },
j_aij_hand_drawn = { name = "手绘", text = { "" } },
j_aij_haruspex = { name = "预言家", text = { "" } },
j_aij_bobblehead = { name = "摇摆头", text = { "" } },
j_aij_topsy_the_clown = {
name = "颠转小丑",
text = {
"将{C:chips}筹码{}与{C:mult}倍率{}",
"向上取整至最接近的",
"{C:attention}回文数"
}
},
j_aij_cloudwatching = { name = "观云", text = { "" } },
j_aij_line_in_the_sand = {
name = "沙中画",
text = {
"{C:red}弃掉{}的牌直到底注结束",
"才返回{C:attention}牌堆{}"
}
},j_aij_hairy_joker = { name = "毛茸小丑", text = { "" } },
j_aij_realty_sign = {
name = "房产招牌",
text = {
"每次打出{C:attention}葫芦{}",
"此小丑牌的{C:money}出售价值{}增加 {C:money}$#1#{}"
},
},
j_aij_bad_apple = { name = "坏苹果", text = { "" } },
j_aij_dim_bulb = {
name = "昏暗灯泡",
text = {
"如果只拥有{C:common}普通{}小丑",
"这张小丑给予{X:mult,C:white}X#1#{}倍率"
},
},
j_aij_blood_artist = {
name = "血腥艺术家",
text = {
"当任意小丑牌或卡牌被{C:money}出售{}或摧毁时",
"降低当前为{C:attention}盲注{}的分数需求{C:attention}#1#%"
}
},
j_aij_null_joker = {
name = "空值小丑",
text = {
"将所有{C:green}概率{}设为{C:attention}0{}"
},
},
j_aij_magick_joker = {
name = "魔法小丑",
text = {
"打出{V:1}#1#{}牌时",
"其{C:chips}筹码{}转换为{C:mult}倍率{}",
"{s:0.8}花色每回合结束时改变{}"
}
},
j_aij_jeff_the_joker = {
name = "小丑杰夫",
text = {
"选择{C:attention}小盲注{}时",
"摧毁所有其他{C:attention}小丑牌",
"此小丑牌每摧毁一张其他小丑",
"获得 {X:mult,C:white}X#2#{}倍率",
"{C:inactive}(当前为{X:mult,C:white}X#1#{C:inactive})"
},
},
j_aij_zanni = { name = "赞尼", text = { "" } },
j_aij_furbo_e_stupido = {
name = "黠与愚",
text = {
"{C:attention}失算牌{}同时视为",
"{C:attention}A{}和{C:attention}J{}"
}
},
j_aij_read_em_and_weep = { name = "看牌哭泣", text = { "" } },
j_aij_goblin_joker = {
name = "哥布林小丑",
text = {
"{C:red}弃牌{}后,额外抽取{C:attention}#1#{}张牌"
}
},
j_aij_string_theory = {
name = "弦理论",
text = {
"牌型总是视为包含",
"一个{C:attention}顺子{}"
}
},
j_aij_jesters_privelege = {
name = "弄臣特权",
text = {
"{C:legendary}传奇{}小丑牌可能",
"出现在{C:attention}商店{}"
},
},
j_aij_quark = {
name = "夸克",
text = {
"如果打出的牌型正好是",
"三张不同{C:attention}花色{}但",
"{C:attention}相同点数{}的牌",
"{C:attention}三条{}等级提升"
},
},
j_aij_lucky_carder = { name = "幸运牌手", text = { "" } },
j_aij_silver_screen = { name = "银幕", text = { "" } },
j_aij_pedrolino = { name = "佩德罗利诺", text = { "" } },
j_aij_pierrette = { name = "皮耶雷特", text = { "" } },
j_aij_scaramouche = {
name = "胆小丑",
text = {
"如果{C:attention}所出牌型{}为{C:attention}#1#{}",
"{C:attention}重新触发{}所有计分牌",
"{C:inactive}(每回合结束牌型改变){}"
}
},
j_aij_clay_joker = {
name = "黏土小丑",
text = {
"复制最后一张被摧毁的",
"{C:attention}小丑{}牌效果"
}
},
j_aij_sunny_joker = { name = "阳光小丑", text = { "" } },
j_aij_red_wine = { name = "红酒", text = { "" } },
j_aij_mute_joker = { name = "沉默小丑", text = { "" } },
j_aij_scapino = { name = "斯卡皮诺", text = { "" } },
j_aij_pinhead = {
name = "针头",
text = {
"如果{C:attention}单手牌{}击败{C:attention}盲注{}",
"获得 {C:money}$#1#{}"
},
},
j_aij_saltimbanco = {
name = "杂技艺人",
text = {
"当任何{C:green}概率效果{}触发时",
"将{C:mult}倍率{}乘以其未触发的几率"
}
},
j_aij_pulcinella = { name = "普尔奇内拉", text = { "" } },
j_aij_petrushka = {
name = "彼得鲁什卡",
text = {
"获得与所有{C:attention}打出的牌{}",
"总{C:attention}点数{}相等的{C:mult}倍率{}",
"{C:inactive}(A=14, K=13, Q=12, J=11)"
},
},
j_aij_void = {
name = "虚空",
text = {
"若{C:attention}本回合{}未使用任何{C:planet}星球牌{}",
"则{X:mult,C:white}X#1#{}倍率",
"{C:inactive}#2#"
}
},
j_aij_kasperle = {
name = "卡斯佩尔",
text = {
"若{C:attention}本回合{}购买了{C:attention}优惠卷",
"{X:mult,C:white}X#1#{}倍率",
"{C:inactive}#2#"
}
},
j_aij_tumbler = { name = "不倒翁", text = { "" } },
j_aij_plain_packaging = { name = "简朴包装", text = { "" } },
j_aij_mixel_perfect = {
name = "完美混合",
text = {
"如果打出的牌型包含",
"{C:attention}奇数{}张牌",
"则{C:mult}+#1#{}倍率"
},
},
j_aij_columbina = {
name = "科伦比娜",
text = {
"使用{C:spectral}幻灵牌{}时",
"{C:aij_plasma}平衡{}{C:attention}#1#%{}的{C:mult}倍率{}和{C:chips}筹码{}",
"数值增加{C:attention}#2#%{}"
}
},
j_aij_j_file = { name = "J档案", text = { "" } },
j_aij_bumper_sticker = {
name = "汽车贴纸",
text = {
"打出的{C:attention}牌{}在计分时",
"永久获得{C:mult}+#1#{}倍率"
}
},
j_aij_vesti_la_guibba = { name = "穿上戏服", text = { "" } },
j_aij_dead_president = {
name = "死人总统",
text = {
"出售此小丑牌时",
"相邻小丑牌的{C:money}出售价值{}翻倍"
},
},
j_aij_second_tier_meme = { name = "二线迷因", text = { "" } },
j_aij_teeny_joker = {
name = "微小丑",
text = {
"如果打出的牌型中只含{C:attention}2{}",
"则{C:chips}+#1#{} 筹码"
},
},j_aij_clowns_on_parade = {
name = "游行小丑",
text = {
"如果打出的牌型中包含至少三张{C:attention}2{}",
"此{C:attention}小丑牌{}获得 {C:chips}+#2#{} 筹码",
"{C:inactive}(当前为{} {C:chips}+#1#{} {C:inactive}筹码)"
},
},
j_aij_rising_sun = {
name = "旭日东升",
text = {
"在回合的{C:attention}第一手{}牌和{C:attention}最后一手{}牌中",
"重新触发{C:attention}第一张{}和{C:attention}最后一张{}打出的牌",
}
},
j_aij_red_sky = {
name = "红天",
text = {
"回合的{C:attention}第一手{}和{C:attention}最后一手{}牌中打出的牌",
"其{C:chips}+筹码{}改为提供{C:mult}+倍率{}"
}
},
j_aij_blind_drawn = {
name = "盲抽",
text = {
"{X:mult,C:white}X#1#{}倍率",
"无法查看{C:attention}Boss盲注{}或其效果",
},
},
j_aij_heidelberg_tun = {
name = "海德堡酒桶",
text = {
"购买的{C:attention}消耗品{}有 {C:green}#1#/#2#{} 的几率",
"变为{C:dark_edition}负片{}"
},
},
j_aij_open_mind = {
name = "开放思维",
text = {
"{C:attention}商店{}中额外提供{C:attention}+#1#{}个",
"{C:attention}补充包{}可供购买"
},
},
j_aij_little_boy_blue = { name = "小蓝孩", text = { "" } },
j_aij_big_red = { name = "大红", text = { "" } },
j_aij_party_streamers = {
name = "派对彩带",
text = {
"如果每回合{C:attention}第一次{}出牌",
"仅含{C:attention}1张{}无{C:attention}蜡封{}牌",
"此小丑牌随机获得一个",
"{C:red}红色{}、{C:blue}蓝色{}或{C:money}金色{}的{C:attention}蜡封{}"
},
},
j_aij_kilroy = {
name = "基尔罗伊",
text = {
"当它被{C:money}出售{}时",
"此小丑牌永久获得{C:chips}+#1#{}筹码",
"{C:inactive}(当前为{C:chips}+#2#{C:inactive}筹码)"
}
},
j_aij_janus = {
name = "雅努斯",
text = {
"{C:attention}版本{}、{C:attention}强化{}与{C:attention}蜡封",
"对{C:attention}人头牌{}的效果{C:green}翻倍"
}
},
j_aij_honker = { name = "响鼻(汽车喇叭声)", text = { "" } },
j_aij_mummy = { name = "木乃伊", text = { "" } },
j_aij_sitcom = { name = "情景喜剧", text = { "" } },
j_aij_in_vino_veritas = { name = "酒后吐真言", text = { "" } },
j_aij_beefeater = { name = "伦敦塔守卫", text = { "" } },
j_aij_tetraphobia = {
name = "惧四症",
text = {
"每{C:red}弃掉{}一张{C:attention}4{}",
"此小丑牌获得 {C:mult}+#2#{}倍率",
"打出的{C:attention}4{}计分时重置",
"{C:inactive}(当前为{C:mult}+#1#{C:inactive} 倍率)"
},
},
j_aij_jack_of_all_trades = {
name = "多面手",
text = {
"{C:attention}J{}可视为任意{C:attention}花色{}",
},
},
j_aij_jumbo_joker = {
name = "巨型小丑",
text = {
"只会出现{C:attention}大型{}",
"和{C:attention}超级{}补充包",
}
},
j_aij_pellucid_joker = {
name = "透明小丑",
text = {
"当一张拥有{C:dark_edition}版本{}的{C:attention}小丑牌{}被售出或摧毁时",
"添加一张相同{C:dark_edition}版本{}的随机游戏牌到牌组"
}
},
j_aij_cosmological_constant = {
name = "宇宙常数",
text = {
"{C:aij_plasma}平衡{}打出{C:attention}牌型{}的{C:attention}基础{} {C:chips}筹码{}和{C:mult}倍率{}"
},
},
j_aij_monster = { name = "怪物", text = { "" } },
j_aij_mistigri = {
name = "米斯蒂里格",
text = {
"手牌中每有2张{C:attention}J{}",
"手牌上限{C:attention}+1{}"
},
},
j_aij_simple_simon = {
name = "傻蛋西蒙",
text = {
"{C:chips}+#1#{} 筹码",
},
},
j_aij_giocoliere = {
name = "手技艺人",
text = {
"在每个{C:attention}Boss盲注{}期间",
"手牌上限{C:attention}+3{}"
},
},
j_aij_spectre = { name = "幽灵", text = { "" } },
j_aij_dapper_dan = {
name = "矫作的丹",
text = {
"将小丑牌的{C:dark_edition}版本{}效果",
"提升到{C:attention}2倍{}"
}
},
j_aij_average_joe = {
name = "普通的乔",
text = {
"{C:aij_plasma}平衡{}{C:chips}筹码{}和{C:mult}倍率{}的",
"{C:attention}20%{}",
}
},
j_aij_silent_sam = {
name = "沉默山姆",
text = {
"留在手中的每一张{C:attention}牌{}",
"会给予{X:mult,C:white}X#1#{}倍率"
}
},
j_aij_pantomimus = {
name = "哑剧",
text = {
"回合结束时中每持有1张{C:attention}手牌{}",
"此小丑牌获得{C:chips}+#2#{}筹码",
"{C:inactive}(当前为{C:chips}+#1#{C:inactive}筹码)"
}
},
j_aij_sneaky_pete = {
name = "鬼祟皮特",
text = {
"回合结束时,牌组中每有一张",
"{C:money}金色蜡封{},获得 {C:money}$#2#{}",
"{C:inactive}(当前为{C:money}$#1#{C:inactive})"
},
},
j_aij_peeping_tom = { name = "偷窥狂汤姆", text = { "" } },
j_aij_la_commedia_e_finita = {
name = "喜剧终章",
text = {
"当一张{C:attention}人头牌{}被摧毁时",
"此小丑牌获得{C:mult}+#1#{}倍率",
"{C:inactive}(当前为{C:mult}+#2#{C:inactive} 倍率)"
},
},
j_aij_straight_to_hell = {
name = "直奔地狱",
text = {
"当一个{C:attention}顺子{}被{C:attention}弃掉{}时",
"这张小丑牌获得 {X:mult,C:white}X#1#{}倍率",
"{C:inactive}(当前为{X:mult,C:white}X#2#{C:inactive} 倍率)"
},
},
j_aij_guiser = {
name = "假面伶人",
text = {
"每使用一张{C:tarot}塔罗牌{}",
"这张小丑牌{C:attention}出售价值{}增加 {C:money}$#1#{}"
},
},
j_aij_mummer = {
name = "哑剧演员",
text = {
"当手牌中所有{C:attention}钢铁牌{}被打出时",
"触发手牌中所有{C:attention}钢铁牌{}"
}
},
j_aij_tipteerer = {
name = "踮脚贼",
text = {
"回合结束时",
"获得其他{C:attention}小丑牌{} ",
"{C:money}出售价值{}的{C:attention}20%{}",
"向上取整",
"{C:inactive}(当前为{} {C:money}$#1#{}{C:inactive})"
},
},
j_aij_honest_john = { name = "诚实约翰", text = { "" } },
j_aij_dizzard = {
name = "痴伶",
text = {
"跳过{C:attention}盲注{}后",
"可再次访问{C:money}商店{}"
}
},
j_aij_arlecchino = { name = "阿莱基诺", text = { "" } },
j_aij_arlecchina = { name = "阿莱基娜", text = { "" } },
j_aij_taikomochi = {
name = "太鼓持",
text = {
"每张手牌中持有的{C:attention}J{}",
"给予{C:chips}+#1#{} 筹码"
}
},
j_aij_sudoku = {
name = "数独",
text = {
"每次连续打出包含",
"{C:attention}顺子{}的牌型",
"此小丑牌获得 {X:mult,C:white}X#1#{}倍率",
"打出其他牌型时重置",
"{C:inactive}(当前为{X:mult,C:white}X#2#{C:inactive} 倍率)"
}
},
j_aij_gnasher = { name = "磨牙者", text = { "" } },
j_aij_executioner = {
name = "刽子手",
text = {
"每当一张{C:attention}人头牌{}被摧毁时",
"此小丑牌获得{C:chips}+#1#{}筹码",
"{C:inactive}(当前为{C:chips}+#2#{C:inactive} 筹码)"
},
},
j_aij_jongleur = {
name = "行吟艺人",
text = {
"{C:attention}重掷{}费用减少{C:money}$#1#{}"
},
},
j_aij_event_horizon = {
name = "事件视界",
text = {
"使{C:dark_edition}黑洞{}的稀有度",
"与其它{C:planet}星球{}牌相同"
}
},
j_aij_the_jester = {
name = "弄臣",
text = {
"每出售一张{C:attention}小丑牌{}",
"生成一张{C:tarot}愚者{}",
"{C:inactive}(每回合触发一次)",
"{C:inactive}#1#{}"
},
},
j_aij_joka_lisa = {
name = "乔卡丽莎",
text = {
"当手牌上限超过{C:attention}7张{}时",
"每多1张获得{X:mult,C:white}X#1#{}倍率",
"{C:inactive}(当前为{X:mult,C:white}X#2#{C:inactive}倍率){}",
"{C:inactive}(最低为{X:mult,C:white}X1{C:inactive}倍率){}"
}
},
j_aij_tonpraten = { name = "言语玩笑", text = { "" } },
j_aij_rodeo_clown = { name = "牛仔小丑", text = { "" } },
j_aij_joculator = { name = "小丑(Joculator)", text = { "" } },
j_aij_scurra = {
name = "嘲弄者",
text = {
"所有打出并带有{C:red}红色蜡封{}的牌",
"额外触发{C:attention}#1#{}次"
},
},
j_aij_pigpen = { name = "猪圈", text = { "" } },
j_aij_cyclops = { name = "独眼巨人", text = { "" } },
j_aij_blarney_stone = { name = "布拉尼石", text = { "" } },
j_aij_sticker = {
name = "贴纸",
text = {
"每张特殊{C:attention}贴纸{}",
"提供{C:mult}+#1#{}倍率",
"{C:inactive}(当前为{C:mult}+#2#{C:inactive}倍率)"
}
},
j_aij_feedback_form = { name = "反馈表", text = { "" } },
j_aij_stultor = {
name = "愚蠢之人",
text = {
"每击败{C:attention}盲注{}可以",
"免费重掷{C:attention}#1#{}次{C:attention}Boss盲注{}"
}
},
j_aij_david = {
name = "大卫王",
text = {
"若打出的牌仅有{C:spades}黑桃{} {C:attention}K{}",
"则这张小丑牌获得 {C:chips}+#1#{} 筹码",
"{C:inactive}(当前为{} {C:chips}+#2#{C:inactive} 筹码)",
},
},
j_aij_charles = {
name = "查理大帝",
text = {
"若打出的牌仅有{C:hearts}红桃{} {C:attention}K{}",
"此小丑牌获得 {X:mult,C:white}X#1#{}倍率",
"{C:inactive}(当前为{} {X:mult,C:white}X#2#{C:inactive} 倍率)",
},
},
j_aij_cesar = {
name = "凯撒大帝",
text = {
"回合结束时获得 {C:money}$#1#{}",
"如果打出的牌仅有{C:diamonds}方片{} {C:attention}K{}",
"额外增加 {C:money}$#2#{} "
},
},
j_aij_alexandre = {
name = "亚历山大大帝",
text = {
"若打出的牌仅有{C:clubs}梅花{} {C:attention}K{}",
"此小丑牌获得 {C:mult}+#1#{}倍率",
"{C:inactive}(当前为{} {C:mult}+#2#{C:inactive} 倍率)",
},
},
j_aij_sannio = { name = "萨尼奥", text = { "" } },