@jjlmoya/utils-tabletop 1.4.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/package.json +5 -3
  2. package/src/entries.ts +15 -1
  3. package/src/index.ts +3 -0
  4. package/src/tests/locale_completeness.test.ts +2 -1
  5. package/src/tests/tool_validation.test.ts +2 -1
  6. package/src/tool/decision-wheel/audio.ts +78 -0
  7. package/src/tool/decision-wheel/bibliography.astro +16 -0
  8. package/src/tool/decision-wheel/bibliography.ts +8 -0
  9. package/src/tool/decision-wheel/client.ts +226 -0
  10. package/src/tool/decision-wheel/component.astro +48 -0
  11. package/src/tool/decision-wheel/components/SegmentEditor.astro +22 -0
  12. package/src/tool/decision-wheel/components/SpinHistory.astro +17 -0
  13. package/src/tool/decision-wheel/components/SpinResult.astro +13 -0
  14. package/src/tool/decision-wheel/components/WheelCanvas.astro +23 -0
  15. package/src/tool/decision-wheel/decision-wheel.css +632 -0
  16. package/src/tool/decision-wheel/drawing.ts +144 -0
  17. package/src/tool/decision-wheel/entry.ts +48 -0
  18. package/src/tool/decision-wheel/i18n/de.ts +97 -0
  19. package/src/tool/decision-wheel/i18n/en.ts +251 -0
  20. package/src/tool/decision-wheel/i18n/es.ts +93 -0
  21. package/src/tool/decision-wheel/i18n/fr.ts +93 -0
  22. package/src/tool/decision-wheel/i18n/id.ts +93 -0
  23. package/src/tool/decision-wheel/i18n/it.ts +93 -0
  24. package/src/tool/decision-wheel/i18n/ja.ts +93 -0
  25. package/src/tool/decision-wheel/i18n/ko.ts +93 -0
  26. package/src/tool/decision-wheel/i18n/nl.ts +93 -0
  27. package/src/tool/decision-wheel/i18n/pl.ts +93 -0
  28. package/src/tool/decision-wheel/i18n/pt.ts +93 -0
  29. package/src/tool/decision-wheel/i18n/ru.ts +75 -0
  30. package/src/tool/decision-wheel/i18n/sv.ts +93 -0
  31. package/src/tool/decision-wheel/i18n/tr.ts +93 -0
  32. package/src/tool/decision-wheel/i18n/zh.ts +93 -0
  33. package/src/tool/decision-wheel/index.ts +9 -0
  34. package/src/tool/decision-wheel/logic.test.ts +163 -0
  35. package/src/tool/decision-wheel/logic.ts +145 -0
  36. package/src/tool/decision-wheel/seo.astro +16 -0
  37. package/src/tool/decision-wheel/types.ts +14 -0
  38. package/src/tool/decision-wheel/ui.ts +121 -0
  39. package/src/tool/fantasy-runes-translator/bibliography.astro +16 -0
  40. package/src/tool/fantasy-runes-translator/bibliography.ts +16 -0
  41. package/src/tool/fantasy-runes-translator/client.ts +205 -0
  42. package/src/tool/fantasy-runes-translator/component.astro +95 -0
  43. package/src/tool/fantasy-runes-translator/entry.ts +56 -0
  44. package/src/tool/fantasy-runes-translator/fantasy-runes-translator.css +712 -0
  45. package/src/tool/fantasy-runes-translator/i18n/de.ts +139 -0
  46. package/src/tool/fantasy-runes-translator/i18n/en.ts +139 -0
  47. package/src/tool/fantasy-runes-translator/i18n/es.ts +139 -0
  48. package/src/tool/fantasy-runes-translator/i18n/fr.ts +139 -0
  49. package/src/tool/fantasy-runes-translator/i18n/id.ts +139 -0
  50. package/src/tool/fantasy-runes-translator/i18n/it.ts +139 -0
  51. package/src/tool/fantasy-runes-translator/i18n/ja.ts +139 -0
  52. package/src/tool/fantasy-runes-translator/i18n/ko.ts +139 -0
  53. package/src/tool/fantasy-runes-translator/i18n/nl.ts +139 -0
  54. package/src/tool/fantasy-runes-translator/i18n/pl.ts +139 -0
  55. package/src/tool/fantasy-runes-translator/i18n/pt.ts +139 -0
  56. package/src/tool/fantasy-runes-translator/i18n/ru.ts +139 -0
  57. package/src/tool/fantasy-runes-translator/i18n/sv.ts +139 -0
  58. package/src/tool/fantasy-runes-translator/i18n/tr.ts +139 -0
  59. package/src/tool/fantasy-runes-translator/i18n/zh.ts +139 -0
  60. package/src/tool/fantasy-runes-translator/index.ts +9 -0
  61. package/src/tool/fantasy-runes-translator/logic.ts +174 -0
  62. package/src/tool/fantasy-runes-translator/seo.astro +16 -0
  63. package/src/tool/fantasy-runes-translator/types.ts +26 -0
  64. package/src/tool/investigation-board/bibliography.astro +16 -0
  65. package/src/tool/investigation-board/bibliography.ts +12 -0
  66. package/src/tool/investigation-board/boardContextMenu.ts +64 -0
  67. package/src/tool/investigation-board/client.ts +223 -0
  68. package/src/tool/investigation-board/component.astro +23 -0
  69. package/src/tool/investigation-board/components/BoardCanvas.astro +39 -0
  70. package/src/tool/investigation-board/components/CardDrawer.astro +73 -0
  71. package/src/tool/investigation-board/components/ConnectionModal.astro +49 -0
  72. package/src/tool/investigation-board/components/ContextMenu.astro +26 -0
  73. package/src/tool/investigation-board/components/ControlPanel.astro +57 -0
  74. package/src/tool/investigation-board/connectionModal.ts +60 -0
  75. package/src/tool/investigation-board/dom.ts +89 -0
  76. package/src/tool/investigation-board/drawer.ts +110 -0
  77. package/src/tool/investigation-board/entry.ts +59 -0
  78. package/src/tool/investigation-board/i18n/de.ts +126 -0
  79. package/src/tool/investigation-board/i18n/en.ts +127 -0
  80. package/src/tool/investigation-board/i18n/es.ts +126 -0
  81. package/src/tool/investigation-board/i18n/fr.ts +126 -0
  82. package/src/tool/investigation-board/i18n/id.ts +126 -0
  83. package/src/tool/investigation-board/i18n/it.ts +126 -0
  84. package/src/tool/investigation-board/i18n/ja.ts +126 -0
  85. package/src/tool/investigation-board/i18n/ko.ts +126 -0
  86. package/src/tool/investigation-board/i18n/nl.ts +126 -0
  87. package/src/tool/investigation-board/i18n/pl.ts +126 -0
  88. package/src/tool/investigation-board/i18n/pt.ts +126 -0
  89. package/src/tool/investigation-board/i18n/ru.ts +126 -0
  90. package/src/tool/investigation-board/i18n/sv.ts +126 -0
  91. package/src/tool/investigation-board/i18n/tr.ts +126 -0
  92. package/src/tool/investigation-board/i18n/zh.ts +126 -0
  93. package/src/tool/investigation-board/index.ts +11 -0
  94. package/src/tool/investigation-board/interactDrag.ts +58 -0
  95. package/src/tool/investigation-board/investigation-board.css +799 -0
  96. package/src/tool/investigation-board/layout.ts +16 -0
  97. package/src/tool/investigation-board/logic.test.ts +105 -0
  98. package/src/tool/investigation-board/logic.ts +106 -0
  99. package/src/tool/investigation-board/panzoom.ts +24 -0
  100. package/src/tool/investigation-board/renderer.ts +256 -0
  101. package/src/tool/investigation-board/seo.astro +16 -0
  102. package/src/tool/investigation-board/stateManager.ts +126 -0
  103. package/src/tool/investigation-board/types.ts +26 -0
  104. package/src/tool/rpg-initiative-tracker/bibliography.astro +16 -0
  105. package/src/tool/rpg-initiative-tracker/bibliography.ts +12 -0
  106. package/src/tool/rpg-initiative-tracker/client.ts +201 -0
  107. package/src/tool/rpg-initiative-tracker/component.astro +23 -0
  108. package/src/tool/rpg-initiative-tracker/components/AddForm.astro +49 -0
  109. package/src/tool/rpg-initiative-tracker/components/CombatantList.astro +16 -0
  110. package/src/tool/rpg-initiative-tracker/components/TurnControls.astro +28 -0
  111. package/src/tool/rpg-initiative-tracker/entry.ts +50 -0
  112. package/src/tool/rpg-initiative-tracker/i18n/de.ts +266 -0
  113. package/src/tool/rpg-initiative-tracker/i18n/en.ts +263 -0
  114. package/src/tool/rpg-initiative-tracker/i18n/es.ts +264 -0
  115. package/src/tool/rpg-initiative-tracker/i18n/fr.ts +263 -0
  116. package/src/tool/rpg-initiative-tracker/i18n/id.ts +263 -0
  117. package/src/tool/rpg-initiative-tracker/i18n/it.ts +263 -0
  118. package/src/tool/rpg-initiative-tracker/i18n/ja.ts +263 -0
  119. package/src/tool/rpg-initiative-tracker/i18n/ko.ts +263 -0
  120. package/src/tool/rpg-initiative-tracker/i18n/nl.ts +263 -0
  121. package/src/tool/rpg-initiative-tracker/i18n/pl.ts +264 -0
  122. package/src/tool/rpg-initiative-tracker/i18n/pt.ts +263 -0
  123. package/src/tool/rpg-initiative-tracker/i18n/ru.ts +264 -0
  124. package/src/tool/rpg-initiative-tracker/i18n/sv.ts +263 -0
  125. package/src/tool/rpg-initiative-tracker/i18n/tr.ts +263 -0
  126. package/src/tool/rpg-initiative-tracker/i18n/zh.ts +263 -0
  127. package/src/tool/rpg-initiative-tracker/index.ts +9 -0
  128. package/src/tool/rpg-initiative-tracker/logic.test.ts +121 -0
  129. package/src/tool/rpg-initiative-tracker/logic.ts +122 -0
  130. package/src/tool/rpg-initiative-tracker/rpg-initiative-tracker.css +617 -0
  131. package/src/tool/rpg-initiative-tracker/seo.astro +16 -0
  132. package/src/tool/rpg-initiative-tracker/types.ts +15 -0
  133. package/src/tool/score-tracker/bibliography.astro +16 -0
  134. package/src/tool/score-tracker/bibliography.ts +12 -0
  135. package/src/tool/score-tracker/client.ts +248 -0
  136. package/src/tool/score-tracker/component.astro +34 -0
  137. package/src/tool/score-tracker/components/Leaderboard.astro +19 -0
  138. package/src/tool/score-tracker/components/PlayerSetup.astro +32 -0
  139. package/src/tool/score-tracker/components/RoundScoring.astro +22 -0
  140. package/src/tool/score-tracker/components/ScoreHistory.astro +25 -0
  141. package/src/tool/score-tracker/entry.ts +57 -0
  142. package/src/tool/score-tracker/i18n/de.ts +278 -0
  143. package/src/tool/score-tracker/i18n/en.ts +278 -0
  144. package/src/tool/score-tracker/i18n/es.ts +251 -0
  145. package/src/tool/score-tracker/i18n/fr.ts +278 -0
  146. package/src/tool/score-tracker/i18n/id.ts +278 -0
  147. package/src/tool/score-tracker/i18n/it.ts +278 -0
  148. package/src/tool/score-tracker/i18n/ja.ts +278 -0
  149. package/src/tool/score-tracker/i18n/ko.ts +278 -0
  150. package/src/tool/score-tracker/i18n/nl.ts +278 -0
  151. package/src/tool/score-tracker/i18n/pl.ts +278 -0
  152. package/src/tool/score-tracker/i18n/pt.ts +278 -0
  153. package/src/tool/score-tracker/i18n/ru.ts +278 -0
  154. package/src/tool/score-tracker/i18n/sv.ts +278 -0
  155. package/src/tool/score-tracker/i18n/tr.ts +278 -0
  156. package/src/tool/score-tracker/i18n/zh.ts +278 -0
  157. package/src/tool/score-tracker/index.ts +9 -0
  158. package/src/tool/score-tracker/logic.test.ts +83 -0
  159. package/src/tool/score-tracker/logic.ts +122 -0
  160. package/src/tool/score-tracker/score-tracker.css +1029 -0
  161. package/src/tool/score-tracker/seo.astro +16 -0
  162. package/src/tool/score-tracker/types.ts +17 -0
  163. package/src/tools.ts +11 -0
@@ -0,0 +1,126 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { InvestigationBoardLocaleContent } from '../entry';
3
+
4
+ export const content: InvestigationBoardLocaleContent = {
5
+ slug: "createur-de-tableau-de-conspiration",
6
+ title: "Créateur de Tableau de Conspiration",
7
+ description: "Concevez des tableaux de conspiration interactifs et des cartes d'enquête. Connectez des personnages, des indices, des lieux et tracez des relations avec des liens personnalisés.",
8
+ ui: {
9
+ "title": "Créateur de Tableau de Conspiration",
10
+ "addCard": "Ajouter une Carte",
11
+ "searchPlaceholder": "Rechercher des cartes par nom ou indices",
12
+ "filterAll": "Toutes les Catégories",
13
+ "filterCharacter": "Personnages",
14
+ "filterClue": "Indices",
15
+ "filterLocation": "Lieux",
16
+ "filterItem": "Objets",
17
+ "cardName": "Nom de la Carte",
18
+ "cardCategory": "Catégorie",
19
+ "cardDescription": "Description",
20
+ "cardNotes": "Notes Privées",
21
+ "cardTags": "Tags séparés par des virgules",
22
+ "cardColor": "Couleur de mise en valeur de la carte",
23
+ "save": "Enregistrer les modifications",
24
+ "delete": "Supprimer",
25
+ "cancel": "Annuler",
26
+ "clearBoard": "Effacer le tableau",
27
+ "connectionsTitle": "Carte des relations",
28
+ "addConnection": "Ajouter une connexion",
29
+ "connectionLabel": "Étiquette de relation",
30
+ "connectionColor": "Couleur de ligne",
31
+ "sourceCard": "De la carte",
32
+ "targetCard": "Vers la carte",
33
+ "close": "Fermer",
34
+ "character": "Personnage",
35
+ "clue": "Indice",
36
+ "location": "Lieu",
37
+ "item": "Objet",
38
+ "custom": "Personnalisé",
39
+ "immersive": "Plein écran"
40
+ },
41
+ seo: [
42
+ { type: 'title', text: "Créateur de Tableau de Conspiration pour Jeux de Rôle sur Table et Enquêtes", level: 2 },
43
+ { type: 'paragraph', html: "Créez des cartes d'enquête et des tableaux de conspiration immersifs pour vos jeux de rôle sur table. Glissez-déposez des indices, des lieux et des personnages, puis connectez-les avec des fils personnalisés pour visualiser des mystères complexes." },
44
+ {
45
+ type: 'stats',
46
+ items: [
47
+ { value: "Illimité", label: "Tableau de nœuds" },
48
+ { value: "4", label: "Catégories" },
49
+ { value: "Glisser-Déposer", label: "Interface" }
50
+ ],
51
+ columns: 3
52
+ },
53
+ { type: 'title', text: "Comment construire une carte d'enquête", level: 2 },
54
+ { type: 'paragraph', html: "Ajoutez des cartes personnalisées représentant des indices, des personnages, des objets et des lieux. Glissez-les sur la grille. Sélectionnez deux cartes pour les relier avec un fil de relation coloré. Double-cliquez sur les nœuds ou les fils pour voir les détails." }
55
+ ],
56
+ faq: [
57
+ {
58
+ question: "Comment ajouter des lignes de connexion ?",
59
+ answer: "Cliquez sur Ajouter une connexion dans le panneau de configuration, choisissez les cartes source et cible, attribuez une étiquette de texte et une couleur, puis enregistrez."
60
+ },
61
+ {
62
+ question: "Puis-je glisser des cartes sur mobile ?",
63
+ answer: "Oui, le tableau prend en charge les événements tactiles pour glisser et déplacer les cartes facilement sur smartphones et tablettes."
64
+ }
65
+ ],
66
+ bibliography,
67
+ howTo: [
68
+ {
69
+ name: "Ajouter des cartes d'enquête",
70
+ text: "Créez des cartes représentant des PNJ, des indices, des scènes de crime ou des objets."
71
+ },
72
+ {
73
+ name: "Lier les relations",
74
+ text: "Créez des lignes de connexion entre les cartes pour montrer le lien entre les indices."
75
+ }
76
+ ],
77
+ schemas: [
78
+ {
79
+ '@context': 'https://schema.org',
80
+ '@type': 'SoftwareApplication',
81
+ 'name': "Créateur de Tableau de Conspiration",
82
+ 'operatingSystem': 'All',
83
+ 'applicationCategory': 'UtilitiesApplication',
84
+ 'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
85
+ },
86
+ {
87
+ '@context': 'https://schema.org',
88
+ '@type': 'FAQPage',
89
+ 'mainEntity': [
90
+ {
91
+ '@type': 'Question',
92
+ 'name': "Comment ajouter des lignes de connexion ?",
93
+ 'acceptedAnswer': {
94
+ '@type': 'Answer',
95
+ 'text': "Cliquez sur Ajouter une connexion dans le panneau de configuration, choisissez les cartes source et cible, attribuez une étiquette de texte et une couleur, puis enregistrez."
96
+ }
97
+ },
98
+ {
99
+ '@type': 'Question',
100
+ 'name': "Puis-je glisser des cartes sur mobile ?",
101
+ 'acceptedAnswer': {
102
+ '@type': 'Answer',
103
+ 'text': "Oui, le tableau prend en charge les événements tactiles pour glisser et déplacer les cartes facilement sur smartphones et tablettes."
104
+ }
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'HowTo',
111
+ 'name': "Comment utiliser le créateur de tableau de conspiration",
112
+ 'step': [
113
+ {
114
+ '@type': 'HowToStep',
115
+ 'name': "Ajouter des cartes d'enquête",
116
+ 'text': "Créez des cartes représentant des PNJ, des indices, des scènes de crime ou des objets."
117
+ },
118
+ {
119
+ '@type': 'HowToStep',
120
+ 'name': "Lier les relations",
121
+ 'text': "Créez des lignes de connexion entre les cartes pour montrer le lien entre les indices."
122
+ }
123
+ ]
124
+ }
125
+ ]
126
+ };
@@ -0,0 +1,126 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { InvestigationBoardLocaleContent } from '../entry';
3
+
4
+ export const content: InvestigationBoardLocaleContent = {
5
+ slug: "pembuat-papan-konspirasi",
6
+ title: "Pembuat Papan Konspirasi",
7
+ description: "Rancang papan konspirasi interaktif dan peta penyelidikan. Hubungkan karakter, petunjuk, lokasi, dan lacak hubungan dengan tautan khusus.",
8
+ ui: {
9
+ "title": "Pembuat Papan Konspirasi",
10
+ "addCard": "Tambah Kartu",
11
+ "searchPlaceholder": "Cari kartu berdasarkan nama atau petunjuk",
12
+ "filterAll": "Semua Kategori",
13
+ "filterCharacter": "Karakter",
14
+ "filterClue": "Petunjuk",
15
+ "filterLocation": "Lokasi",
16
+ "filterItem": "Item",
17
+ "cardName": "Nama Kartu",
18
+ "cardCategory": "Kategori",
19
+ "cardDescription": "Deskripsi",
20
+ "cardNotes": "Catatan Pribadi",
21
+ "cardTags": "Tag dipisahkan dengan koma",
22
+ "cardColor": "Warna Sorotan Kartu",
23
+ "save": "Simpan Perubahan",
24
+ "delete": "Hapus",
25
+ "cancel": "Batal",
26
+ "clearBoard": "Bersihkan Papan",
27
+ "connectionsTitle": "Peta Hubungan",
28
+ "addConnection": "Tambah Koneksi",
29
+ "connectionLabel": "Label Hubungan",
30
+ "connectionColor": "Warna Garis",
31
+ "sourceCard": "Dari Kartu",
32
+ "targetCard": "Ke Kartu",
33
+ "close": "Tutup",
34
+ "character": "Karakter",
35
+ "clue": "Petunjuk",
36
+ "location": "Lokasi",
37
+ "item": "Item",
38
+ "custom": "Kustom",
39
+ "immersive": "Layar Penuh"
40
+ },
41
+ seo: [
42
+ { type: 'title', text: "Pembuat Papan Konspirasi untuk RPG Meja dan Detektif", level: 2 },
43
+ { type: 'paragraph', html: "Buat peta penyelidikan imersif dan papan konspirasi untuk game RPG meja Anda. Seret dan lepas petunjuk, lokasi, dan karakter, lalu hubungkan dengan benang kustom untuk memvisualisasikan misteri yang kompleks." },
44
+ {
45
+ type: 'stats',
46
+ items: [
47
+ { value: "Tanpa Batas", label: "Papan Node" },
48
+ { value: "4", label: "Kategori" },
49
+ { value: "Seret dan Lepas", label: "Antarmuka" }
50
+ ],
51
+ columns: 3
52
+ },
53
+ { type: 'title', text: "Cara Membangun Peta Penyelidikan", level: 2 },
54
+ { type: 'paragraph', html: "Tambahkan kartu kustom yang mewakili petunjuk, karakter, item, dan lokasi. Seret kartu tersebut ke posisi di kisi. Pilih dua kartu untuk menautkannya dengan benang hubungan berwarna. Klik dua kali node atau benang untuk melihat detail." }
55
+ ],
56
+ faq: [
57
+ {
58
+ question: "Bagaimana cara menambahkan garis koneksi?",
59
+ answer: "Klik Tambah Koneksi di panel kontrol, pilih kartu sumber dan target, berikan label teks dan warna, lalu simpan."
60
+ },
61
+ {
62
+ question: "Bisakah saya menyeret kartu di seluler?",
63
+ answer: "Ya, papan ini mendukung interaksi sentuh untuk menyeret dan memindahkan kartu dengan lancar di smartphone dan tablet."
64
+ }
65
+ ],
66
+ bibliography,
67
+ howTo: [
68
+ {
69
+ name: "Tambah Kartu Penyelidikan",
70
+ text: "Buat kartu yang mewakili NPC, petunjuk, TKP, atau item."
71
+ },
72
+ {
73
+ name: "Tautkan Hubungan",
74
+ text: "Buat garis koneksi antarkartu untuk menunjukkan hubungan petunjuk."
75
+ }
76
+ ],
77
+ schemas: [
78
+ {
79
+ '@context': 'https://schema.org',
80
+ '@type': 'SoftwareApplication',
81
+ 'name': "Pembuat Papan Konspirasi",
82
+ 'operatingSystem': 'All',
83
+ 'applicationCategory': 'UtilitiesApplication',
84
+ 'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
85
+ },
86
+ {
87
+ '@context': 'https://schema.org',
88
+ '@type': 'FAQPage',
89
+ 'mainEntity': [
90
+ {
91
+ '@type': 'Question',
92
+ 'name': "Bagaimana cara menambahkan garis koneksi?",
93
+ 'acceptedAnswer': {
94
+ '@type': 'Answer',
95
+ 'text': "Klik Tambah Koneksi di panel kontrol, pilih kartu sumber dan target, berikan label teks dan warna, lalu simpan."
96
+ }
97
+ },
98
+ {
99
+ '@type': 'Question',
100
+ 'name': "Bisakah saya menyeret kartu di seluler?",
101
+ 'acceptedAnswer': {
102
+ '@type': 'Answer',
103
+ 'text': "Ya, papan ini mendukung interaksi sentuh untuk menyeret dan memindahkan kartu dengan lancar di smartphone dan tablet."
104
+ }
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'HowTo',
111
+ 'name': "Cara Menggunakan Pembuat Papan Konspirasi",
112
+ 'step': [
113
+ {
114
+ '@type': 'HowToStep',
115
+ 'name': "Tambah Kartu Penyelidikan",
116
+ 'text': "Buat kartu yang mewakili NPC, petunjuk, TKP, atau item."
117
+ },
118
+ {
119
+ '@type': 'HowToStep',
120
+ 'name': "Tautkan Hubungan",
121
+ 'text': "Buat garis koneksi antarkartu untuk menunjukkan hubungan petunjuk."
122
+ }
123
+ ]
124
+ }
125
+ ]
126
+ };
@@ -0,0 +1,126 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { InvestigationBoardLocaleContent } from '../entry';
3
+
4
+ export const content: InvestigationBoardLocaleContent = {
5
+ slug: "creatore-lavagna-cospirazione",
6
+ title: "Creatore Lavagna Cospirazione",
7
+ description: "Progetta lavagne interattive di cospirazione e mappe investigative. Collega personaggi, indizi, luoghi e traccia relazioni con collegamenti personalizzati.",
8
+ ui: {
9
+ "title": "Creatore Lavagna Cospirazione",
10
+ "addCard": "Aggiungi Carta",
11
+ "searchPlaceholder": "Cerca carte per nome o indizi",
12
+ "filterAll": "Tutte le Categorie",
13
+ "filterCharacter": "Personaggi",
14
+ "filterClue": "Indizi",
15
+ "filterLocation": "Luoghi",
16
+ "filterItem": "Oggetti",
17
+ "cardName": "Nome Carta",
18
+ "cardCategory": "Categoria",
19
+ "cardDescription": "Descrizione",
20
+ "cardNotes": "Note Private",
21
+ "cardTags": "Tag separati da virgole",
22
+ "cardColor": "Colore Evidenziatore Carta",
23
+ "save": "Salva Modifiche",
24
+ "delete": "Elimina",
25
+ "cancel": "Annulla",
26
+ "clearBoard": "Pulisci Lavagna",
27
+ "connectionsTitle": "Mappa delle Relazioni",
28
+ "addConnection": "Aggiungi Connessione",
29
+ "connectionLabel": "Etichetta Relazione",
30
+ "connectionColor": "Colore Linea",
31
+ "sourceCard": "Da Carta",
32
+ "targetCard": "A Carta",
33
+ "close": "Chiudi",
34
+ "character": "Personaggio",
35
+ "clue": "Indizio",
36
+ "location": "Luogo",
37
+ "item": "Oggetto",
38
+ "custom": "Personalizzato",
39
+ "immersive": "Schermo Intero"
40
+ },
41
+ seo: [
42
+ { type: 'title', text: "Creatore Lavagna Cospirazione per Giochi di Ruolo da Tavolo e Investigativi", level: 2 },
43
+ { type: 'paragraph', html: "Crea mappe investigative coinvolgenti e lavagne di cospirazione per i tuoi giochi di ruolo da tavolo. Trascina indizi, luoghi e personaggi, quindi collegali con fili personalizzati per visualizzare misteri complessi." },
44
+ {
45
+ type: 'stats',
46
+ items: [
47
+ { value: "Illimitato", label: "Lavagna Nodi" },
48
+ { value: "4", label: "Categorie" },
49
+ { value: "Trascina e Rilascia", label: "Interfaccia" }
50
+ ],
51
+ columns: 3
52
+ },
53
+ { type: 'title', text: "Come Costruire una Mappa Investigativa", level: 2 },
54
+ { type: 'paragraph', html: "Aggiungi carte personalizzate che rappresentano indizi, personaggi, oggetti e luoghi. Trascinale sulla griglia. Seleziona due carte per collegarle con un filo di relazione colorato. Fai doppio clic su nodi o fili per i dettagli." }
55
+ ],
56
+ faq: [
57
+ {
58
+ question: "Come faccio ad aggiungere linee di connessione?",
59
+ answer: "Fai clic su Aggiungi connessione nel pannello di controllo, scegli le carte di origine e destinazione, assegna un etichetta di testo e un colore, quindi salva."
60
+ },
61
+ {
62
+ question: "Posso trascinare le carte su mobile?",
63
+ answer: "Sì, la lavagna supporta il touch per trascinare e spostare facilmente le carte su smartphone e tablet."
64
+ }
65
+ ],
66
+ bibliography,
67
+ howTo: [
68
+ {
69
+ name: "Aggiungi Carte Investigazione",
70
+ text: "Crea carte che rappresentano NPC, indizi, scene del crimine o oggetti."
71
+ },
72
+ {
73
+ name: "Collega Relazioni",
74
+ text: "Crea linee di connessione tra le carte per mostrare come sono correlati gli indizi."
75
+ }
76
+ ],
77
+ schemas: [
78
+ {
79
+ '@context': 'https://schema.org',
80
+ '@type': 'SoftwareApplication',
81
+ 'name': "Creatore Lavagna Cospirazione",
82
+ 'operatingSystem': 'All',
83
+ 'applicationCategory': 'UtilitiesApplication',
84
+ 'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
85
+ },
86
+ {
87
+ '@context': 'https://schema.org',
88
+ '@type': 'FAQPage',
89
+ 'mainEntity': [
90
+ {
91
+ '@type': 'Question',
92
+ 'name': "Come faccio ad aggiungere linee di connessione?",
93
+ 'acceptedAnswer': {
94
+ '@type': 'Answer',
95
+ 'text': "Fai clic su Aggiungi connessione nel pannello di controllo, scegli le carte di origine e destinazione, assegna un etichetta di testo e un colore, quindi salva."
96
+ }
97
+ },
98
+ {
99
+ '@type': 'Question',
100
+ 'name': "Posso trascinare le carte su mobile?",
101
+ 'acceptedAnswer': {
102
+ '@type': 'Answer',
103
+ 'text': "Sì, la lavagna supporta il touch per trascinare e spostare facilmente le carte su smartphone e tablet."
104
+ }
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'HowTo',
111
+ 'name': "Come Usare il Creatore di Lavagne di Cospirazione",
112
+ 'step': [
113
+ {
114
+ '@type': 'HowToStep',
115
+ 'name': "Aggiungi Carte Investigazione",
116
+ 'text': "Crea carte che rappresentano NPC, indizi, scene del crimine o oggetti."
117
+ },
118
+ {
119
+ '@type': 'HowToStep',
120
+ 'name': "Collega Relazioni",
121
+ 'text': "Crea linee di connessione tra le carte per mostrare come sono correlati gli indizi."
122
+ }
123
+ ]
124
+ }
125
+ ]
126
+ };
@@ -0,0 +1,126 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { InvestigationBoardLocaleContent } from '../entry';
3
+
4
+ export const content: InvestigationBoardLocaleContent = {
5
+ slug: "investigation-board",
6
+ title: "相関図メーカー",
7
+ description: "インタラクティブな相関図や捜査マップを作成。人物、手がかり、場所を繋ぎ、カスタマイズされたリンクで関係性を視覚化します。",
8
+ ui: {
9
+ "title": "相関図メーカー",
10
+ "addCard": "カード追加",
11
+ "searchPlaceholder": "カード名や手がかりで検索",
12
+ "filterAll": "すべてのカテゴリ",
13
+ "filterCharacter": "人物",
14
+ "filterClue": "手がかり",
15
+ "filterLocation": "場所",
16
+ "filterItem": "アイテム",
17
+ "cardName": "カード名",
18
+ "cardCategory": "カテゴリ",
19
+ "cardDescription": "説明",
20
+ "cardNotes": "プライベートメモ",
21
+ "cardTags": "カンマで区切られたタグ",
22
+ "cardColor": "カードの強調色",
23
+ "save": "変更を保存",
24
+ "delete": "削除",
25
+ "cancel": "キャンセル",
26
+ "clearBoard": "ボードをクリア",
27
+ "connectionsTitle": "関係図マップ",
28
+ "addConnection": "接続を追加",
29
+ "connectionLabel": "関係性のラベル",
30
+ "connectionColor": "線の色",
31
+ "sourceCard": "開始カード",
32
+ "targetCard": "対象カード",
33
+ "close": "閉じる",
34
+ "character": "人物",
35
+ "clue": "手がかり",
36
+ "location": "場所",
37
+ "item": "アイテム",
38
+ "custom": "カスタム",
39
+ "immersive": "全画面表示"
40
+ },
41
+ seo: [
42
+ { type: 'title', text: "TRPGや探偵ゲーム用の相関図メーカー", level: 2 },
43
+ { type: 'paragraph', html: "テーブルトークRPG用の没入型捜査マップや相関図を作成。手がかり、場所、人物をドラッグ&ドロップし、カスタマイズされた糸で繋ぎ合わせて複雑な謎を視覚化します。" },
44
+ {
45
+ type: 'stats',
46
+ items: [
47
+ { value: "無制限", label: "ノードボード" },
48
+ { value: "4", label: "カテゴリ数" },
49
+ { value: "ドラッグ&ドロップ", label: "インターフェース" }
50
+ ],
51
+ columns: 3
52
+ },
53
+ { type: 'title', text: "捜査マップの作り方", level: 2 },
54
+ { type: 'paragraph', html: "手がかり、人物、アイテム、場所を表すカスタムカードを追加し、グリッド上でドラッグして配置します。2枚のカードを選択して、色付きの関係性の糸でリンクさせます。ノードや糸をダブルクリックすると詳細情報を表示できます。" }
55
+ ],
56
+ faq: [
57
+ {
58
+ question: "接続線を追加するにはどうすればよいですか?",
59
+ answer: "コントロールパネルの「接続を追加」をクリックし、開始カードと対象カードを選択し、テキストラベルと色を設定して保存します。"
60
+ },
61
+ {
62
+ question: "モバイルでもカードをドラッグできますか?",
63
+ answer: "はい、スマートフォンやタブレット上でのタッチ操作に対応しており、カードをスムーズにドラッグ移動できます。"
64
+ }
65
+ ],
66
+ bibliography,
67
+ howTo: [
68
+ {
69
+ name: "捜査カードを追加する",
70
+ text: "NPC、手がかり、事件現場、アイテムを表すカードを作成します。"
71
+ },
72
+ {
73
+ name: "関係性をリンクする",
74
+ text: "カード間に接続線を作成し、手がかりの関連性を示します。"
75
+ }
76
+ ],
77
+ schemas: [
78
+ {
79
+ '@context': 'https://schema.org',
80
+ '@type': 'SoftwareApplication',
81
+ 'name': "相関図メーカー",
82
+ 'operatingSystem': 'All',
83
+ 'applicationCategory': 'UtilitiesApplication',
84
+ 'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
85
+ },
86
+ {
87
+ '@context': 'https://schema.org',
88
+ '@type': 'FAQPage',
89
+ 'mainEntity': [
90
+ {
91
+ '@type': 'Question',
92
+ 'name': "接続線を追加するにはどうすればよいですか?",
93
+ 'acceptedAnswer': {
94
+ '@type': 'Answer',
95
+ 'text': "コントロールパネルの「接続を追加」をクリックし、開始カードと対象カードを選択し、テキストラベルと色を設定して保存します。"
96
+ }
97
+ },
98
+ {
99
+ '@type': 'Question',
100
+ 'name': "モバイルでもカードをドラッグできますか?",
101
+ 'acceptedAnswer': {
102
+ '@type': 'Answer',
103
+ 'text': "はい、スマートフォンやタブレット上でのタッチ操作に対応しており、カードをスムーズにドラッグ移動できます。"
104
+ }
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'HowTo',
111
+ 'name': "相関図メーカーの使い方",
112
+ 'step': [
113
+ {
114
+ '@type': 'HowToStep',
115
+ 'name': "捜査カードを追加する",
116
+ 'text': "NPC、手がかり、事件現場、アイテムを表すカードを作成します。"
117
+ },
118
+ {
119
+ '@type': 'HowToStep',
120
+ 'name': "関係性をリンクする",
121
+ 'text': "カード間に接続線を作成し、手がかりの関連性を示します。"
122
+ }
123
+ ]
124
+ }
125
+ ]
126
+ };
@@ -0,0 +1,126 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { InvestigationBoardLocaleContent } from '../entry';
3
+
4
+ export const content: InvestigationBoardLocaleContent = {
5
+ slug: "investigation-board",
6
+ title: "관계도 제작기",
7
+ description: "대화형 음모 보드 및 수사 지도를 제작하세요. 캐릭터, 단서, 장소를 연결하고 맞춤형 선으로 관계를 추적하세요.",
8
+ ui: {
9
+ "title": "관계도 제작기",
10
+ "addCard": "카드 추가",
11
+ "searchPlaceholder": "이름이나 단서로 카드 검색",
12
+ "filterAll": "모든 카테고리",
13
+ "filterCharacter": "인물",
14
+ "filterClue": "단서",
15
+ "filterLocation": "장소",
16
+ "filterItem": "아이템",
17
+ "cardName": "카드 이름",
18
+ "cardCategory": "카테고리",
19
+ "cardDescription": "설명",
20
+ "cardNotes": "개인 메모",
21
+ "cardTags": "쉼표로 구분된 태그",
22
+ "cardColor": "카드 강조 색상",
23
+ "save": "변경사항 저장",
24
+ "delete": "삭제",
25
+ "cancel": "취소",
26
+ "clearBoard": "보드 지우기",
27
+ "connectionsTitle": "관계도 맵",
28
+ "addConnection": "연결 추가",
29
+ "connectionLabel": "관계 설명",
30
+ "connectionColor": "선 색상",
31
+ "sourceCard": "시작 카드",
32
+ "targetCard": "대상 카드",
33
+ "close": "닫기",
34
+ "character": "인물",
35
+ "clue": "단서",
36
+ "location": "장소",
37
+ "item": "아이템",
38
+ "custom": "사용자 정의",
39
+ "immersive": "전체 화면"
40
+ },
41
+ seo: [
42
+ { type: 'title', text: "TRPG 및 추리 RPG 게임을 위한 관계도 제작기", level: 2 },
43
+ { type: 'paragraph', html: "TRPG 게임을 위한 몰입형 수사 지도와 음모 보드를 만들어보세요. 단서, 장소, 캐릭터를 드래그 앤 드롭한 뒤 맞춤형 실로 연결해 복잡한 미스터리를 시각화하세요." },
44
+ {
45
+ type: 'stats',
46
+ items: [
47
+ { value: "무제한", label: "노드 보드" },
48
+ { value: "4", label: "카테고리" },
49
+ { value: "드래그 앤 드롭", label: "인터페이스" }
50
+ ],
51
+ columns: 3
52
+ },
53
+ { type: 'title', text: "수사 지도 만드는 법", level: 2 },
54
+ { type: 'paragraph', html: "단서, 캐릭터, 아이템, 장소를 나타내는 커스텀 카드를 추가하세요. 그리드 위에 드래그해 배치하고 두 카드를 선택해 유색 관계선으로 연결하세요. 노드나 선을 더블 클릭해 상세 정보를 확인하세요." }
55
+ ],
56
+ faq: [
57
+ {
58
+ question: "연결선은 어떻게 추가하나요?",
59
+ answer: "제어판에서 연결 추가를 클릭하고 시작 카드와 대상 카드를 선택한 뒤 텍스트 라벨과 색상을 설정하고 저장합니다."
60
+ },
61
+ {
62
+ question: "모바일에서도 카드를 드래그할 수 있나요?",
63
+ answer: "네, 터치 이벤트를 지원하여 스마트폰과 태블릿에서도 카드를 부드럽게 드래그하고 이동할 수 있습니다."
64
+ }
65
+ ],
66
+ bibliography,
67
+ howTo: [
68
+ {
69
+ name: "수사 카드 추가",
70
+ text: "NPC, 단서, 범죄 현장 또는 아이템을 나타내는 카드를 생성합니다."
71
+ },
72
+ {
73
+ name: "관계 연결",
74
+ text: "카드 사이에 연결선을 만들어 단서들의 연관 관계를 보여줍니다."
75
+ }
76
+ ],
77
+ schemas: [
78
+ {
79
+ '@context': 'https://schema.org',
80
+ '@type': 'SoftwareApplication',
81
+ 'name': "관계도 제작기",
82
+ 'operatingSystem': 'All',
83
+ 'applicationCategory': 'UtilitiesApplication',
84
+ 'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
85
+ },
86
+ {
87
+ '@context': 'https://schema.org',
88
+ '@type': 'FAQPage',
89
+ 'mainEntity': [
90
+ {
91
+ '@type': 'Question',
92
+ 'name': "연결선은 어떻게 추가하나요?",
93
+ 'acceptedAnswer': {
94
+ '@type': 'Answer',
95
+ 'text': "제어판에서 연결 추가를 클릭하고 시작 카드와 대상 카드를 선택한 뒤 텍스트 라벨과 색상을 설정하고 저장합니다."
96
+ }
97
+ },
98
+ {
99
+ '@type': 'Question',
100
+ 'name': "모바일에서도 카드를 드래그할 수 있나요?",
101
+ 'acceptedAnswer': {
102
+ '@type': 'Answer',
103
+ 'text': "네, 터치 이벤트를 지원하여 스마트폰과 태블릿에서도 카드를 부드럽게 드래그하고 이동할 수 있습니다."
104
+ }
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'HowTo',
111
+ 'name': "관계도 제작기 사용법",
112
+ 'step': [
113
+ {
114
+ '@type': 'HowToStep',
115
+ 'name': "수사 카드 추가",
116
+ 'text': "NPC, 단서, 범죄 현장 또는 아이템을 나타내는 카드를 생성합니다."
117
+ },
118
+ {
119
+ '@type': 'HowToStep',
120
+ 'name': "관계 연결",
121
+ 'text': "카드 사이에 연결선을 만들어 단서들의 연관 관계를 보여줍니다."
122
+ }
123
+ ]
124
+ }
125
+ ]
126
+ };