-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.json
More file actions
972 lines (972 loc) · 26.7 KB
/
Copy pathinterface.json
File metadata and controls
972 lines (972 loc) · 26.7 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
{
"interface_version": 2,
"name": "KKAFIO",
"label": "KKAFIO",
"title": "KKAFIO - Koikatsu Auto File I/O",
"version": "2.0.0",
"github": "https://github.com/RedDeadDepresso/KKAFIO",
"mirrorchyan_rid": "",
"description": "Automated character card and mod management for Koikatsu / Koikatsu Sunshine",
"icon": "assets/logo.png",
"agent": {
"child_exec": "python",
"child_args": ["kkafio_cli.exe", "run"]
},
"controller": [
{
"name": "Win32-Game",
"label": "Koikatsu (Win32)",
"type": "Win32",
"win32": {
"class_regex": "UnityWndClass",
"window_regex": "Koikatsu"
}
}
],
"resource": [
{
"name": "default",
"label": "Default Resources",
"path": ["."]
}
],
"option": {
"GameType": {
"type": "select",
"label": "Game Type",
"description": "Which Koikatsu game this configuration targets",
"default_case": "Koikatsu",
"cases": [
{
"name": "Koikatsu",
"label": "Koikatsu",
"pipeline_override": {
"GameType": "Koikatsu"
}
},
{
"name": "KoikatsuParty",
"label": "Koikatsu Party",
"pipeline_override": {
"GameType": "KoikatsuParty"
}
},
{
"name": "KoikatsuSunshine",
"label": "Koikatsu Sunshine",
"pipeline_override": {
"GameType": "KoikatsuSunshine"
}
}
]
},
"GamePath": {
"type": "folder",
"name": "game_path",
"label": "Game Installation Path",
"description": "Path to your Koikatsu / Koikatsu Party / Koikatsu Sunshine installation folder",
"default": "C:/Program Files (x86)/Steam/steamapps/common/Koikatsu Party",
"pipeline_override": {
"Core": {
"GamePath": "{game_path}"
}
}
},
"OutputPath": {
"type": "folder",
"name": "output_path",
"label": "Output Directory",
"description": "Where to save output files (backups, archives, etc.)",
"default": "",
"pipeline_override": {
"OutputPath": "{output_path}"
}
},
"BackupFilename": {
"type": "input",
"label": "Backup Filename",
"description": "Name for the backup file (without extension)",
"inputs": [
{
"name": "filename",
"label": "Filename",
"default": "koikatsu_backup",
"pipeline_type": "string"
}
],
"pipeline_override": {
"Filename": "{filename}"
}
},
"BackupMods": {
"type": "switch",
"label": "Backup mods folder",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Include",
"pipeline_override": {
"mods": true
}
},
{
"name": "No",
"label": "Exclude",
"pipeline_override": {
"mods": false
}
}
]
},
"BackupUserData": {
"type": "switch",
"label": "Backup UserData folder",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Include",
"pipeline_override": {
"UserData": true
}
},
{
"name": "No",
"label": "Exclude",
"pipeline_override": {
"UserData": false
}
}
]
},
"BackupBepInEx": {
"type": "switch",
"label": "Backup BepInEx folder",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Include",
"pipeline_override": {
"BepInEx": true
}
},
{
"name": "No",
"label": "Exclude",
"pipeline_override": {
"BepInEx": false
}
}
]
},
"DownloadOutputDir": {
"type": "folder",
"name": "output_dir",
"label": "Download Output Folder",
"description": "Where to save downloaded cards. Defaults to the Female chara folder.",
"default": "",
"pipeline_override": {
"OutputDir": "{output_dir}"
}
},
"DownloadLinks": {
"type": "textarea",
"name": "links",
"label": "Download Links",
"description": "One URL per line - supports db.bepis.moe and koikatsucards.com card pages",
"placeholder": "https://db.bepis.moe/koikatsu\nhttps://db.bepis.moe/koikatsu | all\nhttps://db.bepis.moe/koikatsu | 1 | 5\nhttps://koikatsucards.com/contents/123\nhttps://koikatsucards.com/cards | 3 | 1",
"default": "",
"pipeline_override": {
"Links": "{links}"
}
},
"SkipDownloaded": {
"type": "switch",
"label": "Skip Already Downloaded",
"description": "Skip cards that have been downloaded before (tracked in download history)",
"default_case": "Yes",
"cases": [
{
"name": "Yes",
"label": "Skip",
"pipeline_override": {
"SkipDownloaded": true
}
},
{
"name": "No",
"label": "Re-download",
"pipeline_override": {
"SkipDownloaded": false
}
}
]
},
"KkdSession": {
"type": "input",
"label": "koikatsucards.com Session Cookie",
"description": "Required to download cards from koikatsucards.com.\n\nHow to get it:\n1. Log in to koikatsucards.com in your browser\n2. Open DevTools (F12) → Application → Cookies → https://koikatsucards.com\n3. Find the cookie named 'kkd_session' and copy its Value\n\n⚠ This cookie expires every 7 days - re-copy it after it expires.",
"inputs": [
{
"name": "kkd_session",
"label": "kkd_session value",
"default": "",
"pipeline_type": "string"
}
],
"pipeline_override": {
"KkdSession": "{kkd_session}"
}
},
"InputPath": {
"type": "folder",
"name": "input_path",
"label": "Input Directory",
"description": "Folder to scan for character cards / archives",
"default": "",
"pipeline_override": {
"InputPath": "{input_path}"
}
},
"ConvertKKS": {
"type": "switch",
"label": "Convert KKS → KK",
"description": "Move KKS cards to _KKS_card_/ and produce KK-compatible copies in _KKS_to_KK_/",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Convert",
"pipeline_override": {
"ConvertKKS": true
}
},
{
"name": "No",
"label": "Skip",
"pipeline_override": {
"ConvertKKS": false
}
}
]
},
"ExtractArchive": {
"type": "switch",
"label": "Extract Archives",
"description": "Extract ZIP/RAR/7z files before processing",
"default_case": "Yes",
"cases": [
{
"name": "Yes",
"label": "Extract",
"pipeline_override": {
"ExtractArchive": true
}
},
{
"name": "No",
"label": "Skip",
"pipeline_override": {
"ExtractArchive": false
}
}
]
},
"ArchivePassword": {
"type": "select",
"label": "Archive Password Handling",
"description": "How to handle password-protected archives",
"default_case": "Skip",
"cases": [
{
"name": "Skip",
"label": "Skip Protected",
"pipeline_override": {
"Password": "Skip"
}
},
{
"name": "Request",
"label": "Request Password",
"pipeline_override": {
"Password": "Request Password"
}
}
]
},
"FuzzyMatching": {
"type": "switch",
"label": "Fuzzy Character Matching",
"description": "Use fuzzy matching to find duplicate character cards",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Enabled",
"pipeline_override": {
"FuzzyChara": true
}
},
{
"name": "No",
"label": "Disabled",
"pipeline_override": {
"FuzzyChara": false
}
}
]
},
"KeepStrategy": {
"type": "select",
"label": "Keep Which Copy",
"description": "Which duplicate to keep as the original",
"default_case": "Biggest file size",
"cases": [
{
"name": "None",
"label": "None - move all copies"
},
{
"name": "Newest",
"label": "Newest"
},
{
"name": "Oldest",
"label": "Oldest"
},
{
"name": "Biggest file size",
"label": "Biggest file size"
},
{
"name": "Smallest file size",
"label": "Smallest file size"
},
{
"name": "Last alphabetically",
"label": "Last alphabetically"
},
{
"name": "First alphabetically",
"label": "First alphabetically"
}
],
"pipeline_override": {
"Keep": "{case.name}"
}
},
"DeleteDuplicates": {
"type": "switch",
"label": "Delete Duplicates",
"description": "Send duplicates to Recycle Bin (otherwise move to _duplicates_ folder)",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Delete",
"pipeline_override": {
"Delete": true
}
},
{
"name": "No",
"label": "Move to folder",
"pipeline_override": {
"Delete": false
}
}
]
},
"FileConflicts": {
"type": "select",
"label": "File Conflict Handling",
"description": "How to handle existing files with the same name",
"default_case": "Skip",
"cases": [
{
"name": "Skip",
"label": "Skip",
"pipeline_override": {
"FileConflicts": "Skip"
}
},
{
"name": "Replace",
"label": "Replace",
"pipeline_override": {
"FileConflicts": "Replace"
}
},
{
"name": "Rename",
"label": "Rename",
"pipeline_override": {
"FileConflicts": "Rename"
}
}
]
},
"RenameCharaPrompt": {
"type": "textarea",
"name": "prompt",
"label": "Rename Prompt",
"description": "Prompt sent to the LLM along with the character JSON. Edit to customise the instructions.",
"default": "You will receive a JSON object whose keys identify Koikatsu character card files.\nEach key has the format: name | personality | hair_rgb\n\nYour task: for every key fill in \"lastname\", \"firstname\", and \"nickname\" with the\ncharacter's well-known English name.\n\nRules:\n- Use Western name order: firstname = given name, lastname = family name.\n- Use the English name the character is commonly known by, not a literal\n transliteration (e.g. lastname \"Tohsaka\" firstname \"Rin\", not \"Tosaka Rin\").\n- \"nickname\" can be a common short form or the same as firstname.\n- All values must be valid Windows filenames\n (no \\\\ / : * ? \" < > | characters, no leading/trailing spaces or dots).\n- If you do not recognise the character or are not confident, leave all three\n fields as empty strings \"\".\n- Return ONLY the completed JSON object - no explanation, no markdown fences,\n no extra text before or after.\n\nJSON to fill in:\n",
"pipeline_override": {
"Prompt": "{prompt}"
}
},
"RenameCharaCopyStep1": {
"type": "action_button",
"action": "rename_chara_copy",
"label": "Step 1 - Copy",
"description": "Scan the input folder, build the character key JSON and copy prompt + JSON to clipboard. Paste into your LLM.",
"button_label": "Copy"
},
"RenameCharaCopyStep2": {
"type": "action_button",
"action": "rename_chara_paste",
"label": "Step 2 - Paste",
"description": "After the LLM replies with the filled-in JSON, copy that response and click Paste to save it.",
"button_label": "Paste"
},
"SkipAlreadyRenamed": {
"type": "switch",
"label": "Skip Already Renamed",
"description": "Skip cards whose filename already matches a known translated name in the cache",
"default_case": "Yes",
"cases": [
{
"name": "Yes",
"label": "Skip",
"pipeline_override": {
"SkipAlreadyRenamed": true
}
},
{
"name": "No",
"label": "Rescan",
"pipeline_override": {
"SkipAlreadyRenamed": false
}
}
]
},
"UpdateMetadata": {
"type": "switch",
"label": "Update Card Metadata",
"description": "Write the translated names into the card's internal metadata (lastname / firstname / nickname)",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Update",
"pipeline_override": {
"UpdateMetadata": true
}
},
{
"name": "No",
"label": "Skip",
"pipeline_override": {
"UpdateMetadata": false
}
}
]
},
"RenameFiles": {
"type": "switch",
"label": "Rename PNG Files",
"description": "Also rename the PNG file on disk to match the translated name (e.g. Tohsaka_Rin.png)",
"default_case": "Yes",
"cases": [
{
"name": "Yes",
"label": "Rename",
"pipeline_override": {
"RenameFiles": true
}
},
{
"name": "No",
"label": "Keep",
"pipeline_override": {
"RenameFiles": false
}
}
]
},
"GroupCharaPrompt": {
"type": "textarea",
"name": "prompt",
"label": "LLM Prompt",
"description": "Prompt template for the LLM (use {json} placeholder for the card JSON)",
"placeholder": "You will receive a JSON object whose keys identify Koikatsu character card files…",
"default": "You will receive a JSON object whose keys identify Koikatsu character card files. Each key has the format: name | personality | hair_rgb\nYour task: for every key, write the name of the anime/game series the character is from as the value.\nRules:\n- Values must be valid Windows folder names (no \\ / : * ? \" < > | characters).\n- Use the official English title of the series.\n- If a character appears in multiple series, use the one they are most associated with.\n- If you are not sure or the character is an original creation, leave the value as an empty string \"\".\n- Return ONLY the completed JSON object - no explanation, no markdown code fences, no extra text before or after.\n\nJSON to fill in:\n",
"pipeline_override": {
"Prompt": "{prompt}"
}
},
"GroupCharaCopyStep1": {
"type": "action_button",
"action": "group_chara_copy",
"label": "Step 1 - Copy",
"description": "Scan the input folder, build character JSON and copy prompt + JSON to clipboard. Paste it into your LLM.",
"button_label": "Copy"
},
"GroupCharaCopyStep2": {
"type": "action_button",
"action": "group_chara_paste",
"label": "Step 2 - Paste",
"description": "After the LLM replies with the filled-in JSON, copy that response and click Paste to save it.",
"button_label": "Paste"
},
"GroupCharaIncludeSubfolders": {
"type": "switch",
"label": "Include subfolders",
"description": "Also export character cards from subfolders. Disable to skip already-sorted cards.",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Include",
"pipeline_override": {
"IncludeSubfolders": true
}
},
{
"name": "No",
"label": "Skip subfolders",
"pipeline_override": {
"IncludeSubfolders": false
}
}
]
},
"DeleteEmptyFolders": {
"type": "switch",
"label": "Delete Empty Folders",
"description": "Remove empty subfolders after ungrouping",
"default_case": "Yes",
"cases": [
{
"name": "Yes",
"label": "Delete",
"pipeline_override": {
"DeleteEmptyFolders": true
}
},
{
"name": "No",
"label": "Keep",
"pipeline_override": {
"DeleteEmptyFolders": false
}
}
]
},
"ArchiveFormat": {
"type": "select",
"label": "Archive Format",
"description": "Output archive format",
"default_case": "7z",
"cases": [
{
"name": "7z",
"label": "7-Zip"
},
{
"name": "zip",
"label": "ZIP"
}
],
"pipeline_override": {
"Format": "{case.name}"
}
},
"CombinedArchive": {
"type": "switch",
"label": "Combined Archive",
"description": "Put all cards in one archive (otherwise one per card)",
"default_case": "Yes",
"cases": [
{
"name": "Yes",
"label": "Single archive",
"pipeline_override": {
"CombinedArchive": true
}
},
{
"name": "No",
"label": "One per card",
"pipeline_override": {
"CombinedArchive": false
}
}
]
},
"IncludeModpack": {
"type": "switch",
"label": "Include Sideloader Modpack",
"description": "Include zipmods from Sideloader Modpack folders",
"default_case": "No",
"cases": [
{
"name": "Yes",
"label": "Include",
"pipeline_override": {
"IncludeModpack": true
}
},
{
"name": "No",
"label": "Exclude",
"pipeline_override": {
"IncludeModpack": false
}
}
]
},
"AutoResolve": {
"type": "switch",
"label": "Auto-Resolve Paths",
"description": "Automatically find mods and coordinate directories",
"default_case": "Yes",
"cases": [
{
"name": "Yes",
"label": "Auto-detect",
"pipeline_override": {
"AutoResolve": true
}
},
{
"name": "No",
"label": "Specify manually",
"pipeline_override": {
"AutoResolve": false
}
}
]
},
"ModsDir": {
"type": "folder",
"name": "mods_dir",
"label": "Custom Mods Directory",
"description": "Override the mods folder path. Leave empty to use the game's default mods folder.",
"default": "",
"pipeline_override": {
"ModsDir": "{mods_dir}"
}
},
"CoordDir": {
"type": "folder",
"name": "coord_dir",
"label": "Custom Coordinate Directory",
"description": "Override the coordinate folder path. Leave empty to use the game's default coordinate folder.",
"default": "",
"pipeline_override": {
"CoordDir": "{coord_dir}"
}
},
"UseCache": {
"type": "switch",
"label": "Use Cache",
"description": "Use cached mod/coordinate scan results to speed up processing",
"default_case": "Yes",
"cases": [
{
"name": "Yes",
"label": "Use Cache",
"pipeline_override": {
"UseCache": true
}
},
{
"name": "No",
"label": "Rescan",
"pipeline_override": {
"UseCache": false
}
}
]
},
"CharaPaths": {
"type": "file_list",
"name": "chara_paths",
"label": "Character Cards",
"description": "Select character PNG card files to operate on",
"file_filter": "PNG files (*.png)",
"default": [],
"pipeline_override": {
"CharaPaths": "{chara_paths}"
}
}
},
"group": [
{
"name": "card-management",
"label": "Card Management",
"default_expand": true
},
{
"name": "duplicate-handling",
"label": "Duplicate Handling",
"default_expand": false
},
{
"name": "backup",
"label": "Backup & Restore",
"default_expand": false
}
],
"task": [
{
"name": "CreateBackup",
"label": "💾 Create Backup",
"entry": "CreateBackup",
"default_check": false,
"description": "Create a 7-Zip backup of game folders",
"group": ["backup"],
"option": [
"OutputPath",
"BackupFilename",
"BackupMods",
"BackupUserData",
"BackupBepInEx"
]
},
{
"name": "DownloadContents",
"label": "📥 Download Contents",
"entry": "DownloadContents",
"default_check": false,
"description": "Download chara, coordinates and scenes from db.bepis.moe or koikatsucards.com",
"group": ["card-management"],
"option": [
"DownloadOutputDir",
"DownloadLinks",
"SkipDownloaded",
"KkdSession"
]
},
{
"name": "FilterConvertKKS",
"label": "🔧 Filter & Convert KKS Cards",
"entry": "FilterConvertKKS",
"default_check": false,
"description": "Filter and optionally convert KKS cards to KK format",
"group": ["card-management"],
"option": ["InputPath", "ConvertKKS", "ExtractArchive", "ArchivePassword"]
},
{
"name": "FilterDuplicateContents",
"label": "🧹 Filter Duplicate Contents",
"entry": "FilterDuplicateContents",
"default_check": false,
"description": "Find and handle duplicate PNG cards and zipmod files",
"group": ["duplicate-handling"],
"option": [
"InputPath",
"FuzzyMatching",
"KeepStrategy",
"DeleteDuplicates"
]
},
{
"name": "InstallContents",
"label": "📦 Install Contents",
"entry": "InstallContents",
"default_check": false,
"description": "Copy character cards, mods, scenes and overlays into the game",
"group": ["card-management"],
"option": [
"InputPath",
"FileConflicts",
"ExtractArchive",
"ArchivePassword"
]
},
{
"name": "UninstallContents",
"label": "↩️ Uninstall Contents",
"entry": "UninstallContents",
"default_check": false,
"description": "Uninstall character cards and their mods from the game",
"group": ["card-management"],
"option": ["InputPath"]
},
{
"name": "GroupChara",
"label": "🗂️ Group Characters",
"entry": "GroupChara",
"default_check": false,
"description": "Move character cards into series subfolders using LLM",
"group": ["card-management"],
"option": [
"InputPath",
"GroupCharaIncludeSubfolders",
"GroupCharaPrompt",
"GroupCharaCopyStep1",
"GroupCharaCopyStep2"
]
},
{
"name": "UngroupChara",
"label": "📂 Ungroup Characters",
"entry": "UngroupChara",
"default_check": false,
"description": "Move cards from subfolders back to top-level folder",
"group": ["card-management"],
"option": ["InputPath", "DeleteEmptyFolders"]
},
{
"name": "RenameChara",
"label": "✏️ Rename Characters",
"entry": "RenameChara",
"default_check": false,
"description": "Translate character card names to English using an LLM",
"group": ["card-management"],
"option": [
"InputPath",
"SkipAlreadyRenamed",
"UpdateMetadata",
"RenameFiles",
"RenameCharaPrompt",
"RenameCharaCopyStep1",
"RenameCharaCopyStep2"
]
},
{
"name": "ArchiveChara",
"label": "🎁 Archive Characters",
"entry": "ArchiveChara",
"default_check": false,
"description": "Bundle character cards with zipmods and coordinates",
"group": ["card-management"],
"option": [
"OutputPath",
"CharaPaths",
"ArchiveFormat",
"CombinedArchive",
"IncludeModpack",
"UseCache",
"AutoResolve",
"ModsDir",
"CoordDir"
]
},
{
"name": "DeleteChara",
"label": "🗑️ Delete Characters",
"entry": "DeleteChara",
"default_check": false,
"description": "Send character cards and associated mods/coords to Recycle Bin",
"group": ["card-management"],
"option": ["CharaPaths", "UseCache", "AutoResolve", "ModsDir", "CoordDir"]
}
],
"preset": [
{
"name": "AllTasks",
"label": "⚡ All Tasks",
"description": "Run all available tasks in order",
"task": [
{
"name": "CreateBackup"
},
{
"name": "DownloadContents"
},
{
"name": "FilterDuplicateContents"
},
{
"name": "FilterConvertKKS"
},
{
"name": "InstallContents"
},
{
"name": "UninstallContents"
},
{
"name": "GroupChara"
},
{
"name": "UngroupChara"
},
{
"name": "RenameChara"
},
{
"name": "ArchiveChara"
},
{
"name": "DeleteChara"
}
]
},
{
"name": "InstallAndFilter",
"label": "📥 Install & Filter",
"description": "Filter duplicates, convert KKS cards, then install into the game",
"task": [
{
"name": "FilterDuplicateContents"
},
{
"name": "FilterConvertKKS"
},
{
"name": "InstallContents"
}
]
},
{
"name": "BackupAndClean",
"label": "💾 Backup & Clean",
"description": "Create a backup, then archive and delete selected characters",
"task": [
{
"name": "CreateBackup"
},
{
"name": "ArchiveChara"
},
{
"name": "DeleteChara"
}
]
},
{
"name": "GroupAndRename",
"label": "✏️ Group & Rename",
"description": "sort them into series folders then translate card names to English",
"task": [
{
"name": "GroupChara"
},
{
"name": "RenameChara"
}
]
},
{
"name": "DownloadAndInstall",
"label": "⬇️ Download & Install",
"description": "Download new cards then install them into the game",
"task": [
{
"name": "DownloadContents"
},
{
"name": "InstallContents"
}
]
}
]
}