-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrings.conf
executable file
·1347 lines (1347 loc) · 37.9 KB
/
strings.conf
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
#The first line is used for comment
#line doesn't start with '!' is also neglected
#called by DataManager::GetSysString(), DataManager::GetDesc()
#system
!system 1 Normal Summon
!system 2 Special Summon
!system 3 Flip Summon
!system 4 Normal Summoned
!system 5 Special Summoned
!system 6 Flip Summoned
!system 7 Activate
!system 10 Remove the Counter(s)
!system 11 Pay LP
!system 12 Remove the Material(s)
!system 20 Draw Phase
!system 21 Standby Phase
!system 22 Main Phase
!system 23 Before the end of the Main Phase
!system 24 Battle Phase
!system 25 End of Battle Phase
!system 26 End Phase
!system 27 Before the Draw
!system 28 Start Step of Battle Phase
!system 29 Before the end of the Battle Step
!system 30 Replay, do you want to continue the Battle?
!system 31 Do you want to Attack Directly?
!system 40 Damage Step
!system 41 Before Damage Calculation
!system 42 During Damage Calculation
!system 43 After Damage Calculation
!system 44 At the end of Damage Step
!system 60 Heads
!system 61 Tails
!system 62 Heads effect
!system 63 Tails effect
!system 64 Gemini
!system 65 Use effect
!system 66 Keep revealed
!system 67 Originally owned by opponent
!system 70 Monster Cards
!system 71 Spell Cards
!system 72 Trap Cards
!system 80 Entering the Battle Phase
!system 81 Entering the End Phase
!system 90 Normal Summon without Tributing?
!system 91 Use your additional Normal Summon?
!system 92 Tribute your opponent's monster(s) for the Tribute Summon?
!system 93 Choose material?
!system 94 Do you want to activate this card's effect now?
!system 95 Do you want to use [%ls]'s effect?
!system 96 Do you want to use [%ls]'s effect to avoid destruction?
!system 97 Place [%ls] in the Spell & Trap Zone?
!system 98 Tribute monsters your opponent controls through "Lair of Darkness"?
!system 100 First to go
!system 101 Second to go
!system 200 Do you wish to use from [%ls] [%ls]'s effect?
!system 201 No effect can activated at this moment
!system 202 Do you want to check the field?
!system 203 Chain another card or effect?
!system 204 Remove %d [%ls]
!system 205 Please select a sort order
!system 206 Please select the chain sequence
!system 207 Revealing %d card(s):
!system 208 Confirm %d card(s):
!system 209 The card has met the requisites
!system 210 Continue selecting cards?
!system 211 Round count:
!system 212 Declared card:
!system 213 Declared type:
!system 214 Declared attribute:
!system 215 Declared number:
!system 216 Activated in chain %d
!system 217 Target of (chain %d) [%ls]
!system 218 Pay LP by Effect of [%ls], instead?
!system 219 Detach XYZ material by Effect of [%ls], instead?
!system 220 Remove Counter(s) by Effect of [%ls], instead?
!system 221 In [%ls], Activate Trigger Effect of [%ls]?
!system 222 Activate Trigger Effect?
!system 223 and Ask other Trigger Effect activate later
!system 224 First Special Summoned by own Condition
!system 500 Select a monster to tribute
!system 501 Select a card to discard
!system 502 Select a card to destroy
!system 503 Select a card to banish
!system 504 Select a card to send to Graveyard
!system 505 Select a card to return to hand
!system 506 Select the card to add to your hand
!system 507 Select the card(s) to return to Deck
!system 508 Select the card to Normal Summon
!system 509 Select a Monster to Special Summon
!system 510 Select a card to Set on the field
!system 511 Select materials for Fusion Summon
!system 512 Select materials for Synchro Summon
!system 513 Select materials for Xyz Summon
!system 514 Select a face-up card on the field
!system 515 Select a face-down card on the field
!system 516 Select a monster in attack position
!system 517 Select a monster in defense position
!system 518 Select a card to equip
!system 519 Select the Xyz material to detach
!system 520 Select the monster to change control
!system 521 Select the card to replace
!system 522 Select a face-up Attack Position monster
!system 523 Select a face-up Defense Position monster
!system 524 Select a face-down Attack Position monster
!system 525 Select a face-down Defense Position monster
!system 526 Select a card to show your opponent
!system 527 Select the card to place on the field
!system 528 Select a monster to change
!system 529 Select your card
!system 530 Select opponent card
!system 531 Select the highest level monsters for tribute:
!system 532 Select monster to remove Xyz material
!system 533 Select a card to use as Link Material
!system 534 Select a card to remain on the field
!system 549 Select an attack target
!system 550 Select an effect to activate
!system 551 Select the target of the effect
!system 552 Select head or tails
!system 553 Select dice results
!system 554 Select a card type
!system 555 Select an option
!system 556 Select effect to activate/resolve
!system 560 Select
!system 561 Select the battle position
!system 562 Select Attribute
!system 563 Declare a type
!system 564 Declare a card name
!system 565 Select a number
!system 566 Select the effect to activate
!system 567 Select a Level/Rank
!system 568 Select a card to activate the effect
!system 569 Select a Zone to play the [%ls]
!system 570 Select a Zone to become unusable
!system 571 Select a Zone to move the card to
!system 572 Select a card to place counter on
!system 573 Add the card to the hand
!system 574 Send the card to the GY
!system 1000 Deck
!system 1001 Hand
!system 1002 Monster Zone
!system 1003 Spell&Trap Zone
!system 1004 Graveyard
!system 1005 Banished Zone
!system 1006 Extra Deck
!system 1007 Xyz Material
!system 1008 Field Zone
!system 1009 Pendulum Zone
!system 1010 Earth
!system 1011 Water
!system 1012 Fire
!system 1013 Wind
!system 1014 Light
!system 1015 Dark
!system 1016 Divine
!system 1020 Warrior
!system 1021 Spellcaster
!system 1022 Fairy
!system 1023 Fiend
!system 1024 Zombie
!system 1025 Machine
!system 1026 Aqua
!system 1027 Pyro
!system 1028 Rock
!system 1029 Winged Beast
!system 1030 Plant
!system 1031 Insect
!system 1032 Thunder
!system 1033 Dragon
!system 1034 Beast
!system 1035 Beast-Warrior
!system 1036 Dinosaur
!system 1037 Fish
!system 1038 Sea Serpent
!system 1039 Reptile
!system 1040 Psychic
!system 1041 Divine-Beast
!system 1042 Creator God
!system 1043 Wyrm
!system 1044 Cyberse
!system 1050 Monster
!system 1051 Spell
!system 1052 Trap
!system 1053 ???
!system 1054 Normal
!system 1055 Effect
!system 1056 Fusion
!system 1057 Ritual
!system 1058 Trap Monsters
!system 1059 Spirit
!system 1060 Union
!system 1061 Gemini
!system 1062 Tuner
!system 1063 Synchro
!system 1064 Token
!system 1065 ???
!system 1066 Quick-Play
!system 1067 Continuous
!system 1068 Equip
!system 1069 Field
!system 1070 Counter
!system 1071 Flip
!system 1072 Toon
!system 1073 Xyz
!system 1074 Pendulum
!system 1075 Special Summon
!system 1076 Link
!system 1077 Non-Effect
!system 1080 (N/A)
#GUI
!system 1100 Destroy S/T
!system 1101 Destroy Monster
!system 1102 Banish
!system 1103 Graveyard
!system 1104 Back to Hand
!system 1105 Back to Deck
!system 1106 Destroy Hand
!system 1107 Destroy Deck
!system 1108 Draw
!system 1109 Search Deck
!system 1110 Recover from GY
!system 1111 Battle Position
!system 1112 Switch Control
!system 1113 Change ATK/DEF
!system 1114 Piercing
!system 1115 Attack Multiple
!system 1116 Limit Attack
!system 1117 Direct Attack
!system 1118 Special Summon
!system 1119 Token
!system 1120 Type-Related
!system 1121 Attribute-Related
!system 1122 Damage LP
!system 1123 Recover LP
!system 1124 Destroy
!system 1125 Target Card
!system 1126 Counter
!system 1127 Gamble
!system 1128 Fusion
!system 1129 Tuner
!system 1130 Xyz
!system 1131 Negate Effect
#actions
!system 1150 Activate
!system 1151 Normal Summon
!system 1152 Special Summon
!system 1153 Set
!system 1154 Flip Summon
!system 1155 To Defense
!system 1156 To Attack
!system 1157 Attack
!system 1158 View
!system 1159 S/T Set
!system 1160 Put in Pendulum Zone
!system 1161 Apply Effect
!system 1162 Reset Effect
!system 1163 Pendulum Summon
!system 1164 Synchro Summon
!system 1165 Xyz Summon
!system 1166 Link Summon
!system 1190 Add to hand
!system 1191 Send to GY
!system 1192 Banish
#menu
!system 1200 LAN Mode
!system 1201 Single Mode
!system 1202 Watch Replay
!system 1203 N/A
!system 1204 Deck Edit
!system 1210 Exit
!system 1211 OK
!system 1212 Cancel
!system 1213 Yes
!system 1214 No
!system 1215 Start
!system 1216 Message
!system 1217 Refresh
!system 1218 Ready
!system 1219 Cancel
!system 1220 Nickname:
!system 1221 HostIP:
!system 1222 Password:
!system 1223 Join
!system 1224 Host
!system 1225 Allowed Cards:
!system 1226 Forbidden List:
!system 1227 Duel Mode:
!system 1228 Additional Options
!system 1229 Don't check deck
!system 1230 Do not shuffle deck
!system 1231 Starting LP:
!system 1232 Starting Hand:
!system 1233 Cards per Draw:
!system 1234 Host Name:
!system 1235 Password:
!system 1236 Use obsolete rulings
!system 1237 Time limit:
!system 1240 OCG
!system 1241 TCG
!system 1242 TCG/OCG
!system 1243 Custom
!system 1244 Single Duel
!system 1245 Match
!system 1246 Tag
!system 1247 Standard duel
!system 1248 Custom
!system 1250 Host
!system 1251 →Duel
!system 1252 →Spectate
!system 1253 Current Spectators:
!system 1254 Select Deck
!system 1255 Ready!
!system 1260 Master Rules
!system 1261 Master Rules 2
!system 1262 Master Rules 3
!system 1263 New Master Rules
!system 1270 Card
!system 1271 Log
!system 1272 Clear Log
!system 1273 Settings
!system 1274 Auto monster placing
!system 1275 ↑Random card placing
!system 1276 Auto Chain order
!system 1277 No delay for Chain
!system 1278 Auto spell/trap placing
!system 1279 SE
!system 1280 BGM
!system 1281 Automatically switch BGM
!system 1282 Window size
!system 1283 Small
!system 1284 Medium
!system 1285 Large
!system 1286 Extra large
!system 1290 Disable Chatting
!system 1291 Mute spectators
!system 1292 Ignore Chain
!system 1293 Always Chain
!system 1294 Normal Chain
!system 1295 Cancel
!system 1296 Finish
!system 1297 Shuffle Hand
!system 1298 Helper
!system 1299 Quick Animation
!system 1300 Ban List:
!system 1301 Deck:
!system 1302 Save
!system 1303 Save as
!system 1304 Clear
!system 1305 Sort
!system 1306 Exit
!system 1307 Shuffle
!system 1308 Delete
!system 1309 Reset
!system 1310 (All)
!system 1311 Category:
!system 1312 Monster
!system 1313 Spell
!system 1314 Trap
!system 1315 Limit:
!system 1316 Banned
!system 1317 Limited
!system 1318 Semi-limited
!system 1319 Attribute:
!system 1321 Type:
!system 1322 ATK:
!system 1323 DEF:
!system 1324 Lvl/Rank:
!system 1325 Search:
!system 1326 Effect
!system 1327 Search
!system 1329 Category:
!system 1330 Main:
!system 1331 Extra:
!system 1332 Side:
!system 1333 Results:
!system 1334 Side decking completed
!system 1335 Saved successfully
!system 1336 Scale:
!system 1337 Delete deck?
!system 1338 Deleted successfully
!system 1339 Clear deck?
!system 1340 Save Replay:
!system 1341 Save
!system 1342 Replays:
!system 1343 Play
!system 1344 Pause
!system 1345 Step
!system 1346 Swap
!system 1347 Exit
!system 1348 Load Replay
!system 1349 Play Replay:
!system 1350 Leave
!system 1351 Surrender
!system 1352 Main message:
!system 1353 Start at turn:
!system 1356 Do you want to quit without saving?
!system 1357 Ignore deck changes while quiting
!system 1358 Search cards automatically
!system 1359 Are you sure to surrender?
!system 1360 Previous
!system 1361 Replay Delete
!system 1362 Rename
!system 1363 OK to delete?
!system 1364 Replay Rename
!system 1365 Fail to rename, maybe there're replay with same name.
!system 1366 Auto Save Replay
!system 1367 Replay already saved as %ls.yrp
!system 1370 Level↑
!system 1371 ATK↑
!system 1372 DEF↑
!system 1373 Name↓
!system 1374 Link Arrows
!system 1378 Multiple Keyword Search
!system 1379 Expansions Debug Mode
!system 1380 Single Mode
!system 1381 Puzzle Mode
!system 1382 Single Options:
!system 1383 Master Rules 3
!system 1384 Always plays scissors
!system 1385 Empty List
!system 1390 Waiting...
!system 1391 Waiting....
!system 1392 Waiting.....
!system 1400 Unable to connect to host.
!system 1401 Connection has been lost.
!system 1402 An error occurred during transmission.
!system 1403 Can't join host
!system 1404 Password is incorrect.
!system 1405 Host refused connection.
!system 1406 Invalid Deck
!system 1407 [%ls] not allowed. Check the TCG/OCG card list and check the banlist
!system 1408 Side decking failed
!system 1409 Waiting for side...
!system 1410 Side decking error
!system 1411 Version mismatch(%X.0%X.%X).
!system 1412 Unable to resolve host address.
!system 1413 [%ls] is OCG-only, and not allowed in current room.
!system 1414 [%ls] is TCG-only, and not allowed in current room.
!system 1415 [%ls(%d)] is unable to be identified by the host.
!system 1416 There are more than 3 [%ls] in your deck.
!system 1417 The Main Deck includes at least 40 cards and at most 60 cards. Yours is %d.
!system 1418 The Extra Deck includes at most 15 cards. Yours is %d.
!system 1419 The Side Deck includes at most 15 cards. Yours is %d.
!system 1420 Some cards in your Main Deck should be in Extra Deck instead. Check if your Main Deck and Extra Deck are correctly built.
!system 1421 Invalid operation, Please retry.
!system 1422 The declared card is illegal, or not recognizable by the host.
!system 1423 Ineligible Attribute.
!system 1424 Ineligible Race.
!system 1425 Ineligible Number.
!system 1426 Ineligible Selection.
!system 1427 Ineligible Card.
!system 1428 Ineligible Chain.
!system 1429 Ineligible Place.
!system 1430 Ineligible Position.
!system 1431 Ineligible Counter.
!system 1500 The duel ended.
!system 1501 Replay ended.
!system 1502 Connection has been lost.
!system 1510 Your choice:[%ls]
!system 1511 Opponent declared:[%ls]
!system 1512 Choice of opponent:[%d]
!system 1600 Card position changed
!system 1601 Set a card
!system 1602 Card control changed
!system 1603 [%ls]Normal Summon...
!system 1604 Normal Summon success
!system 1605 [%ls]Special Summon...
!system 1606 Special Summon success
!system 1607 [%ls]Flip Summon...
!system 1608 Flip Summon success
!system 1609 [%ls]is activated
!system 1610 [%ls](%ls,%d)targeted
!system 1611 You draw %d card(s)
!system 1612 Opponent draws %d card(s)
!system 1613 Received %d damage
!system 1614 Opponent received %d damage
!system 1615 Increase %d LP
!system 1616 Opponent increases %d LP
!system 1617 [%ls] has placed %d [%ls]
!system 1618 [%ls] been removed %d [%ls]
!system 1619 [%ls] Attack [%ls]
!system 1620 [%ls] Direct Attack
!system 1621 Attack Negated
!system 1622 [%ls]You lose points
!system 1623 Coin landed on:
!system 1624 Die landed on:
#tips
!system 1700 You can right-click on %ls
#victory reason
!victory 0x0 Surrendered
!victory 0x1 LP reached 0
!victory 0x2 Cards can't be drawn
!victory 0x3 Time limit up
!victory 0x4 Lost connection
!victory 0x10 Victory by the effect of Exodia the Forbidden One
!victory 0x11 Victory by the effect of Final Countdown
!victory 0x12 Victory by the effect of Vennominaga
!victory 0x13 Victory by the effect of Horakhty
!victory 0x14 Victory by the effect of Exodius
!victory 0x15 Victory by the effect of Destiny Board
!victory 0x16 Victory by the effect of Last Turn
!victory 0x17 Victory by the effect of Number 88: Gimmick Puppet of Leo
!victory 0x18 Victory by the effect of Number C88: Gimmick Puppet Disaster Leo
!victory 0x19 Victory by the effect of Jackpot 7
!victory 0x1a Victory by the effect of Relay Soul
!victory 0x1b Victory by the effect of Ghostrick Angel of Mischief
!victory 0x1c Victory by the effect of Phantasm Spiral Assault
!victory 0x1d Victory by the effect of F.A. Winners
!victory 0x1e Victory by the effect of Flying Elephant
!victory 0x1f Victory by the effect of Exodia, Master of the Guard
!victory 0x20 Match Victory by the effect of 「%ls」
!victory 0x21 Victory by the effect of True Exodia
!victory 0x30 Victory by the effect of Creator of Miracles
!victory 0x51 Victory by the effect of Evil 1
!victory 0x52 Victory by the effect of Number iC1000: Numeronius Numeronia
!victory 0x53 Victory by the effect of Zero Gate of the Void
!victory 0x54 Victory by the effect of Deuce
!victory 0x55 Victory by the rule of Action Field
!victory 0x56 Victory by the rule of Deck Master
!victory 0x57 Victory by the effect of Draw of Fate
#counters
!counter 0x1 Spell Counter
!counter 0x1002 Wedge Counter
!counter 0x3 Bushido Counter
!counter 0x4 Psychic Counter
!counter 0x5 Shine Counter
!counter 0x6 Crystal Counter
!counter 0x7 Counter(Colosseum Cage of the Gladiator Beasts)
!counter 0x8 Morph Counter
!counter 0x1009 Venom Counter
!counter 0xa Genex Counter
!counter 0xb Counter(Ancient Gear Castle)
!counter 0xc Thunder Counter
!counter 0xd Greed Counter
!counter 0x100e A-Counter
!counter 0xf Worm Counter
!counter 0x10 Black Feather Counter
!counter 0x11 Hyper-Venom Counter
!counter 0x12 Karakuri Counter
!counter 0x13 Chaos Counter
!counter 0x14 Counter(Miracle Jurassic Egg)
!counter 0x1015 Ice Counter
!counter 0x16 Spellstone Counter
!counter 0x17 Nut Counter
!counter 0x18 Flower Counter
!counter 0x1019 Fog Counter
!counter 0x20 Plant Counter
!counter 0x1a Payback Counter
!counter 0x1b Clock Counter
!counter 0x1c D Counter
!counter 0x1d Junk Counter
!counter 0x1e Gate Counter
!counter 0x1f Counter(B.E.S.)
!counter 0x20 Plant Counter
!counter 0x1021 Guard Counter
!counter 0x22 Dragonic Counter
!counter 0x23 Ocean Counter
!counter 0x1024 String Counter
!counter 0x25 Chronicle Counter
!counter 0x26 Counter(Metal Shooter)
!counter 0x27 Counter(Des Mosquito)
!counter 0x28 Counter(Dark Catapulter)
!counter 0x29 Counter(Balloon Lizard)
!counter 0x102a Counter(Magic Reflector)
!counter 0x2b Destiny Counter
!counter 0x2c You Got It Boss! Counter
!counter 0x2d Counter(Kickfire)
!counter 0x2e Shark Counter
!counter 0x2f Pumpkin Counter
!counter 0x30 Hi-Five the Sky Counter
!counter 0x31 Rising Sun Counter
!counter 0x32 Balloon Counter
!counter 0x33 Yosen Counter
!counter 0x34 Counter(BOXer)
!counter 0x35 Symphonic Counter
!counter 0x36 Performage Counter
!counter 0x37 Kaiju Counter
!counter 0x1038 Cubic Counter
!counter 0x1039 Zushin Counter
!counter 0x40 Counter(Number 51: Finisher the Strong Arm)
!counter 0x1041 Predator Counter
!counter 0x42 Counter(Fire Cracker)
!counter 0x43 Defect Counter
!counter 0x44 Counter(Linkbelt Wall Dragon)
!counter 0x1045 Scale Counter
!counter 0x46 Counter(Gouki Cage Match)
!counter 0x47 Counter(Limit Code)
!counter 0x48 Counter(Link Turret)
!counter 0x1049 Patrol Counter
!counter 0x4a Athlete Counter
!counter 0x4b Borrel Counter
!counter 0x4c Summon Counter
!counter 0x104d Signal Counter
!counter 0x4e Counter(Soul Pendulum)
!counter 0x104f Venemy Counter
!counter 0x14a Counter (Turntrooper)
!counter 0x14b Counter (Battlewasp Nest)
!counter 0x14c Counter (Firewall Dragon Darkfluid)
!counter 0x14d Counter (Seraphim Papillon)
!counter 0x14e Counter (Cauldron of the Old Man)
!counter 0x14f Counter (World Legacy's Continuation)
!counter 0x200 Counter (Pendulum of Souls)
!counter 0x201 Fire Fist Counter
#setnames, using tab for comment
!setname 0x1 Ally of Justice
!setname 0x2 Genex
!setname 0x3 Horus the Black Flame Dragon
!setname 0x1002 R-Genex
!setname 0x2002 Genex Ally
!setname 0x4 Amazoness
!setname 0x5 Arcana Force
!setname 0x6 Dark World
!setname 0x7 Ancient Gear
!setname 0x8 HERO
!setname 0x3008 Elemental HERO
!setname 0x6008 Evil HERO
!setname 0xc008 Destiny HERO
!setname 0x5008 Vision HERO
!setname 0xa008 Masked HERO
!setname 0x9 Neos
!setname 0xa Lswarm
!setname 0x100a Steelswarm
!setname 0xb Infernity
!setname 0xc Alien
!setname 0xd Saber
!setname 0x100d X-Saber
!setname 0x300d XX-Saber
!setname 0x400d Elementsaber
!setname 0xe Watt
!setname 0xf Ojama
!setname 0x10 Gusto
!setname 0x11 Karakuri
!setname 0x12 Frog
!setname 0x13 Meklord
!setname 0x3013 Meklord Emperor
!setname 0x6013 Meklord Army
!setname 0x15 B.E.S.
!setname 0x16 Roid
!setname 0x1016 Vehicroid
!setname 0x2016 Speedroid
!setname 0x17 Synchro
!setname 0x1017 Synchron
!setname 0x2017 Synchro Dragon
!setname 0x18 Cloudian
!setname 0x19 Gladiator Beast
!setname 0x1a Dark Scorpion
!setname 0x1b Phantom Beast
!setname 0x101b Mecha Phantom Beast
!setname 0x1d Koa'ki Meiru
!setname 0x1e Chrysalis
!setname 0x1f Neo-Spacian
!setname 0x20 Shien
!setname 0x21 Earthbound Immortal
!setname 0x22 Jurrac
!setname 0x23 Malefic
!setname 0x24 Scrap
!setname 0x25 Iron Chain
!setname 0x26 Morphtronic
!setname 0x27 T.G.
!setname 0x28 Batteryman
!setname 0x29 Dragunity
!setname 0x2a Naturia
!setname 0x2b Ninja
!setname 0x102b Armor Ninja
!setname 0x2c Flamvell
!setname 0x2e Gravekeeper
!setname 0x2f Ice Barrier
!setname 0x30 Vylon
!setname 0x31 Fortune Lady
!setname 0x32 Volcanic
!setname 0x33 Blackwing
!setname 0x1033 Assault Blackwing
!setname 0x34 Crystal
!setname 0x1034 Crystal Beast
!setname 0x2034 Ultimate Crystal
!setname 0x35 Fabled
!setname 0x1035 The Fabled
!setname 0x36 Machina
!setname 0x37 Mist Valley
!setname 0x38 Lightsworn
!setname 0x39 Laval
!setname 0x3a Gishki
!setname 0x3b Red-Eyes
!setname 0x3c Reptilianne
!setname 0x3d Six Samurai
!setname 0x103d Secret Six Samurai
!setname 0x3e Worm
!setname 0x3f Majestic
!setname 0x40 Forbidden One
!setname 0x41 LV
!setname 0x42 Nordic
!setname 0x3042 Nordic Ascendant
!setname 0x6042 Nordic Beast
!setname 0xa042 Nordic Alfar
!setname 0x5042 Nordic Relic
!setname 0x43 Junk
!setname 0x44 The Agent
!setname 0x45 Archfiend
!setname 0x1045 Red Dragon Archfiend
!setname 0x46 Polymerization/Fusion
!setname 0x1046 Fusion Dragon
!setname 0x47 Gem-
!setname 0x1047 Gem-Knight
!setname 0x48 Number
!setname 0x1048 Number C
!setname 0x5048 Number C39
!setname 0x49 Skyblaster
!setname 0x4a Timelord
!setname 0x4b Aesir
!setname 0x4c Trap Hole
!setname 0x4e Evol
!setname 0x304e Evoltile
!setname 0x504e Evolzar
!setname 0x604e Evolsaur
!setname 0x4f Buster
!setname 0x104f /Assault Mode
!setname 0x50 Venom
!setname 0x1050 Starving Venom
!setname 0x51 Gadget
!setname 0x52 Guardian
!setname 0x53 Constellar
!setname 0x54 Gagaga
!setname 0x55 Photon
!setname 0x56 Inzektor
!setname 0x57 Resonator
!setname 0x58 Wind-Up
!setname 0x59 Gogogo
!setname 0x5a Penguin
!setname 0x5b Inmato
!setname 0x5c Sphinx
!setname 0x60 Bamboo Sword
!setname 0x61 Ninjitsu Art
!setname 0x62 Toon
!setname 0x63 Reactor
!setname 0x64 Harpie
!setname 0x65 Infestation
!setname 0x66 Warrior
!setname 0x1066 Symphonic Warrior
!setname 0x2066 Magnet Warrior
#setname 0x67 Iron
#setname 0x68 Tin
!setname 0x69 Hieratic
!setname 0x6a Butterspy
!setname 0x6b Bounzer
!setname 0x6c Lightray
!setname 0x6d Djinn
#setname 0x306d Divine Dragon
!setname 0x606d Djinn of Rituals
!setname 0x6e Prophecy
!setname 0x106e Spellbook
!setname 0x6f Heroic
!setname 0x106f Heroic Challenger
!setname 0x70 Chronomaly
!setname 0x71 Madolche
!setname 0x72 Geargia
!setname 0x1072 Geargiano
!setname 0x73 Xyz
!setname 0x1073 Chaos Xyz
!setname 0x2073 Xyz Dragon
!setname 0x74 Mermail
!setname 0x75 Abyss-
!setname 0x76 Heraldic Beast
!setname 0x77 Atlantean
!setname 0x78 Nimble
!setname 0x79 Fire Fist
!setname 0x7a Ignoble Knight
!setname 0x107a Noble Knight
!setname 0x207a Noble Arms
!setname 0x7b Galaxy
!setname 0x107b Galaxy-Eyes
!setname 0x307b Galaxy-Eyes Tachyon
!setname 0x7c Fire Formation
!setname 0x7d Hazy
!setname 0x107d Hazy Flame
!setname 0x7e ZW
!setname 0x7f Utopi
!setname 0x107f Utopia
!setname 0x207f Utopic Future
!setname 0x80 Duston
!setname 0x81 Fire King
!setname 0x1081 Fire King Avatar
!setname 0x82 Dododo
!setname 0x83 Gimmick Puppet
!setname 0x84 Battlin' Boxer
!setname 0x85 Super-Defense
!setname 0x86 Star Seraph
!setname 0x87 Umbrals
!setname 0x88 Bujin
!setname 0x89 Hole
#setname 0x8a Fascinating
!setname 0x108a Traptrix
!setname 0x8b Malicvorous
!setname 0x8d Ghostrick
!setname 0x8e Vampire
!setname 0x8f Zubaba
!setname 0x90 Sylvan
!setname 0x91 Necrovally
!setname 0x92 Heraldry
!setname 0x93 Cyber
!setname 0x1093 Cyber Dragon
!setname 0x2093 Cyber Angel
!setname 0x4093 Cyberdark
!setname 0x94 Cybernetic
!setname 0x95 Rank-Up Magic
!setname 0x96 Fishborg
!setname 0x97 Artifact
!setname 0x98 Magician
!setname 0x99 Odd-Eyes
!setname 0x9a Superheavy Samurai
!setname 0x109a Superheavy Samurai Soul
!setname 0x9b Melodious
!setname 0x109b Melodious Maestra
!setname 0x9c tellarknight
!setname 0x109c Stellarknight
!setname 0x9d Shaddoll
!setname 0x9e Yang Zing
!setname 0x9f Performapal
!setname 0xa0 Legendary Knight
!setname 0xa1 Legendary Dragon
!setname 0x10a2 Dark Magician
!setname 0x20a2 Magician Girl
!setname 0x30a2 Dark Magician Girl
!setname 0xa3 Stardust
!setname 0xa4 Kuriboh
!setname 0x10a4 Winged Kuriboh
!setname 0xa5 Change
!setname 0xa6 Sprout
!setname 0xa7 Artorigus
!setname 0xa8 Laundsallyn
!setname 0xa9 Fluffal
!setname 0xaa Qli
!setname 0x10aa Apoqli
!setname 0xab Deskbot
!setname 0xac Goblin
!setname 0xad Frightfur
!setname 0xae Dark Contract
!setname 0xaf D/D
!setname 0x10af D/D/D
!setname 0xb0 Gottoms
!setname 0xb1 Burning Abyss
!setname 0xb2 U.A.
!setname 0xb3 Yosenju
!setname 0xb4 Nekroz
!setname 0xb5 Ritual Beast
!setname 0x10b5 Ritual Beast Tamer
!setname 0x20b5 Spiritual Beast
!setname 0x40b5 Ritual Beast Ulti-
!setname 0xb6 Outer Entity
!setname 0xb7 Elder Entity
!setname 0xb8 Old Entity
!setname 0xb9 Blaze Accelerator
!setname 0xba Raidraptor
!setname 0xbb Infernoid
!setname 0xbc Jinzo
!setname 0xbd Gaia The Fierce Knight
!setname 0xbe Monarch
!setname 0xbf Charmer
!setname 0xc0 Familiar-Possessed
!setname 0xc1 PSY-Frame
!setname 0x10c1 PSY-Framegear
!setname 0xc2 Power Tool
!setname 0xc3 Edge Imp
!setname 0xc4 Zefra
!setname 0xc5 Void
!setname 0xc6 Performage
!setname 0xc7 Dracoslayer
!setname 0xc8 Igknight
!setname 0xc9 Aromage
!setname 0xca Empowered Warrior
!setname 0xcb Aether
!setname 0xcc Prediction Princess
!setname 0xcd Aquaactress
!setname 0xce Aquarium
!setname 0xcf Chaos
!setname 0x10cf Black Luster Soldier
!setname 0xd0 Majespecter
!setname 0xd1 Graydle
!setname 0xd2 Kozmo
!setname 0xd3 Kaiju
!setname 0xd4 Burgesstoma
!setname 0xd5 Dante
!setname 0xd6 Destruction Sword
!setname 0xd7 Buster Blader
!setname 0xd8 Dinomist
!setname 0xd9 Shiranui
!setname 0x10d9 Shiranui Spectralsword
!setname 0xda Dracoverlord
!setname 0xdb Phantom Knights
!setname 0x10db The Phantom Knights
!setname 0xdc Super Quant
!setname 0x10dc Super Quantum
!setname 0x20dc Super Quantal Mech Beast
!setname 0xdd Blue-Eyes
!setname 0xde Exodia
!setname 0xdf Lunalight
!setname 0xe0 Amorphage
!setname 0xe1 Metalphosis
!setname 0xe2 Tramid
!setname 0xe3 Cubic
!setname 0xe4 Celtic Guard
!setname 0xe5 Cipher
!setname 0xe6 Flower Cardian
!setname 0xe7 Silent Swordsman
!setname 0xe8 Silent Magician
!setname 0xe9 Magna Warrior
!setname 0xea Crystron
!setname 0xeb Chemical Beast
!setname 0xec Abyss
!setname 0x10ec Abyss Actor
!setname 0x20ec Abyss Script
!setname 0xed Subterror
!setname 0x10ed Subterror Behemoth
!setname 0xee SPYRAL
!setname 0x10ee SPYRAL GEAR
!setname 0x20ee SPYRAL MISSION
!setname 0xef Darklord
!setname 0xf0 Windwitch
!setname 0xf1 Zoodiac
!setname 0xf2 Pendulum
!setname 0x10f2 Pendulum Dragon
!setname 0x20f2 Pendulumgraph
!setname 0xf3 Preda
!setname 0x10f3 Predaplant
!setname 0xf4 Eidolon Beast
!setname 0xf5 Gandora
!setname 0xf6 Skyscraper
!setname 0xf7 Lyrical Luscinia
#setcode 0xf8 Supreme King
!setname 0x10f8 Supreme King Gate
!setname 0x20f8 Supreme King Dragon
!setname 0xf9 True King True Draco
!setname 0xfa Mythic Radiance Dragon
!setname 0xfb Trickstar
!setname 0xfc Gouki
!setname 0xfd World Chalice
!setname 0xfe World Legacy
!setname 0xff Clear Wing
!setname 0x100 Bonding
!setname 0x101 code Talker
!setname 0x102 rokket
!setname 0x103 Altergeist
!setname 0x104 Krawler
!setname 0x105 Metaphys
!setname 0x106 Vendread
!setname 0x107 F.A.
!setname 0x108 Magical Musket
!setname 0x109 The Weather
!setname 0x10a Parshath
!setname 0x10b Tindangle
!setname 0x10c Mekk-Knight
!setname 0x10d Mythical Beast
!setname 0x10e Evolution Pill
!setname 0x10f Borrel
!setname 0x110 Eyes Restrict
!setname 0x111 Armed Dragon
!setname 0x112 Knightmare
!setname 0x113 Elemental Lord
!setname 0x114 Fur Hire
!setname 0x115 Sky Striker
!setname 0x1115 Sky Striker Ace
!setname 0x116 Crusadia
!setname 0x117 Impcantation
!setname 0x118 Cynet
!setname 0x119 Salamangreat
!setname 0x11a Dinowrestler
!setname 0x11b Orcust
!setname 0x11c Thunder Dragon
!setname 0x11d Forbidden
!setname 0x11e Danger!
!setname 0x11f Nephthys
!setname 0x120 Prank-Kids
!setname 0x121 Mayakashi
!setname 0x122 Valkyrie
!setname 0x123 Rose Dragon
!setname 0x124 Machine Angel
!setname 0x125 Smile
!setname 0x126 Time Thief
!setname 0x127 Infinitrack
!setname 0x128 Witchcrafter
!setname 0x129 Evil Eye
!setname 0x12a Endymion
!setname 0x12b Marincess
!setname 0x12c Tianyi
!setname 0x12d Simorgh
!setname 0x12e Fortune Fairy
!setname 0x12f Battlewasp
!setname 0x130 Unchained
!setname 0x1130 Unchained Soul
!setname 0x131 Dream Mirror
!setname 0x132 Mathmech
!setname 0x133 Dragonmaid
!setname 0x134 Generaider
!setname 0x135 @Ignister
!setname 0x136 A.I.
!setname 0x137 Senka
!setname 0x138 Megalith
!setname 0x139 Palladium Oracle
!setname 0x13a Onomat
!setname 0x13b Rebellion
!setname 0x13c Codebreaker