@jjlmoya/utils-tabletop 1.5.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.
- package/package.json +5 -3
- package/src/entries.ts +5 -1
- package/src/index.ts +2 -0
- package/src/tests/locale_completeness.test.ts +2 -1
- package/src/tests/tool_validation.test.ts +2 -1
- package/src/tool/investigation-board/bibliography.astro +16 -0
- package/src/tool/investigation-board/bibliography.ts +12 -0
- package/src/tool/investigation-board/boardContextMenu.ts +64 -0
- package/src/tool/investigation-board/client.ts +223 -0
- package/src/tool/investigation-board/component.astro +23 -0
- package/src/tool/investigation-board/components/BoardCanvas.astro +39 -0
- package/src/tool/investigation-board/components/CardDrawer.astro +73 -0
- package/src/tool/investigation-board/components/ConnectionModal.astro +49 -0
- package/src/tool/investigation-board/components/ContextMenu.astro +26 -0
- package/src/tool/investigation-board/components/ControlPanel.astro +57 -0
- package/src/tool/investigation-board/connectionModal.ts +60 -0
- package/src/tool/investigation-board/dom.ts +89 -0
- package/src/tool/investigation-board/drawer.ts +110 -0
- package/src/tool/investigation-board/entry.ts +59 -0
- package/src/tool/investigation-board/i18n/de.ts +126 -0
- package/src/tool/investigation-board/i18n/en.ts +127 -0
- package/src/tool/investigation-board/i18n/es.ts +126 -0
- package/src/tool/investigation-board/i18n/fr.ts +126 -0
- package/src/tool/investigation-board/i18n/id.ts +126 -0
- package/src/tool/investigation-board/i18n/it.ts +126 -0
- package/src/tool/investigation-board/i18n/ja.ts +126 -0
- package/src/tool/investigation-board/i18n/ko.ts +126 -0
- package/src/tool/investigation-board/i18n/nl.ts +126 -0
- package/src/tool/investigation-board/i18n/pl.ts +126 -0
- package/src/tool/investigation-board/i18n/pt.ts +126 -0
- package/src/tool/investigation-board/i18n/ru.ts +126 -0
- package/src/tool/investigation-board/i18n/sv.ts +126 -0
- package/src/tool/investigation-board/i18n/tr.ts +126 -0
- package/src/tool/investigation-board/i18n/zh.ts +126 -0
- package/src/tool/investigation-board/index.ts +11 -0
- package/src/tool/investigation-board/interactDrag.ts +58 -0
- package/src/tool/investigation-board/investigation-board.css +799 -0
- package/src/tool/investigation-board/layout.ts +16 -0
- package/src/tool/investigation-board/logic.test.ts +105 -0
- package/src/tool/investigation-board/logic.ts +106 -0
- package/src/tool/investigation-board/panzoom.ts +24 -0
- package/src/tool/investigation-board/renderer.ts +256 -0
- package/src/tool/investigation-board/seo.astro +16 -0
- package/src/tool/investigation-board/stateManager.ts +126 -0
- package/src/tool/investigation-board/types.ts +26 -0
- package/src/tools.ts +3 -0
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "creador-tablero-conspiracion",
|
|
6
|
+
title: "Creador de Tableros de Conspiración",
|
|
7
|
+
description: "Diseña tableros de conspiración interactivos y mapas de investigación. Conecta personajes, pistas, ubicaciones y rastrea relaciones con enlaces personalizados.",
|
|
8
|
+
ui: {
|
|
9
|
+
"title": "Creador de Tableros de Conspiración",
|
|
10
|
+
"addCard": "Añadir Tarjeta",
|
|
11
|
+
"searchPlaceholder": "Buscar tarjetas por nombre o pistas",
|
|
12
|
+
"filterAll": "Todas las Categorías",
|
|
13
|
+
"filterCharacter": "Personajes",
|
|
14
|
+
"filterClue": "Pistas",
|
|
15
|
+
"filterLocation": "Ubicaciones",
|
|
16
|
+
"filterItem": "Objetos",
|
|
17
|
+
"cardName": "Nombre de la Tarjeta",
|
|
18
|
+
"cardCategory": "Categoría",
|
|
19
|
+
"cardDescription": "Descripción",
|
|
20
|
+
"cardNotes": "Notas Privadas",
|
|
21
|
+
"cardTags": "Etiquetas separadas por comas",
|
|
22
|
+
"cardColor": "Color de Resaltado de Tarjeta",
|
|
23
|
+
"save": "Guardar Cambios",
|
|
24
|
+
"delete": "Eliminar",
|
|
25
|
+
"cancel": "Cancelar",
|
|
26
|
+
"clearBoard": "Limpiar Tablero",
|
|
27
|
+
"connectionsTitle": "Mapa de Relaciones",
|
|
28
|
+
"addConnection": "Añadir Conexión",
|
|
29
|
+
"connectionLabel": "Etiqueta de Relación",
|
|
30
|
+
"connectionColor": "Color de la Línea",
|
|
31
|
+
"sourceCard": "Desde Tarjeta",
|
|
32
|
+
"targetCard": "Hacia Tarjeta",
|
|
33
|
+
"close": "Cerrar",
|
|
34
|
+
"character": "Personaje",
|
|
35
|
+
"clue": "Pista",
|
|
36
|
+
"location": "Ubicación",
|
|
37
|
+
"item": "Objeto",
|
|
38
|
+
"custom": "Personalizado",
|
|
39
|
+
"immersive": "Pantalla Completa"
|
|
40
|
+
},
|
|
41
|
+
seo: [
|
|
42
|
+
{ type: 'title', text: "Creador de Tableros de Conspiración para Juegos de Rol de Mesa y Detectives", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Crea mapas de investigación inmersivos y tableros de conspiración para tus juegos de rol de mesa. Arrastra y suelta pistas, ubicaciones y personajes, luego conéctalos con hilos personalizados para visualizar misterios complejos." },
|
|
44
|
+
{
|
|
45
|
+
type: 'stats',
|
|
46
|
+
items: [
|
|
47
|
+
{ value: "Ilimitado", label: "Tablero de Nodos" },
|
|
48
|
+
{ value: "4", label: "Categorías" },
|
|
49
|
+
{ value: "Arrastrar y Soltar", label: "Interfaz" }
|
|
50
|
+
],
|
|
51
|
+
columns: 3
|
|
52
|
+
},
|
|
53
|
+
{ type: 'title', text: "Cómo Construir un Mapa de Investigación", level: 2 },
|
|
54
|
+
{ type: 'paragraph', html: "Añade tarjetas personalizadas que representen pistas, personajes, objetos y ubicaciones. Arrástralas a sus posiciones en la cuadrícula. Selecciona dos tarjetas para enlazarlas con un hilo de relación de color. Haz doble clic en los nodos o hilos para ver información detallada." }
|
|
55
|
+
],
|
|
56
|
+
faq: [
|
|
57
|
+
{
|
|
58
|
+
question: "¿Cómo añado líneas de conexión?",
|
|
59
|
+
answer: "Haz clic en Añadir Conexión en el panel de control, elige las tarjetas de origen y destino, asigna una etiqueta de texto y un color, y guárdalo."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
question: "¿Puedo arrastrar tarjetas en el móvil?",
|
|
63
|
+
answer: "Sí, el tablero admite eventos táctiles para arrastrar y mover tarjetas sin problemas en smartphones y tablets."
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
bibliography,
|
|
67
|
+
howTo: [
|
|
68
|
+
{
|
|
69
|
+
name: "Añadir Tarjetas de Investigación",
|
|
70
|
+
text: "Crea tarjetas que representen PNJ, pistas, escenas del crimen u objetos."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "Enlazar Relaciones",
|
|
74
|
+
text: "Crea líneas de conexión entre tarjetas para mostrar cómo se relacionan las pistas."
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
schemas: [
|
|
78
|
+
{
|
|
79
|
+
'@context': 'https://schema.org',
|
|
80
|
+
'@type': 'SoftwareApplication',
|
|
81
|
+
'name': "Creador de Tableros de Conspiración",
|
|
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': "¿Cómo añado líneas de conexión?",
|
|
93
|
+
'acceptedAnswer': {
|
|
94
|
+
'@type': 'Answer',
|
|
95
|
+
'text': "Haz clic en Añadir Conexión en el panel de control, elige las tarjetas de origen y destino, asigna una etiqueta de texto y un color, y guárdalo."
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
'@type': 'Question',
|
|
100
|
+
'name': "¿Puedo arrastrar tarjetas en el móvil?",
|
|
101
|
+
'acceptedAnswer': {
|
|
102
|
+
'@type': 'Answer',
|
|
103
|
+
'text': "Sí, el tablero admite eventos táctiles para arrastrar y mover tarjetas sin problemas en smartphones y tablets."
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'HowTo',
|
|
111
|
+
'name': "Cómo Usar el Creador de Tableros de Conspiración",
|
|
112
|
+
'step': [
|
|
113
|
+
{
|
|
114
|
+
'@type': 'HowToStep',
|
|
115
|
+
'name': "Añadir Tarjetas de Investigación",
|
|
116
|
+
'text': "Crea tarjetas que representen PNJ, pistas, escenas del crimen u objetos."
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
'@type': 'HowToStep',
|
|
120
|
+
'name': "Enlazar Relaciones",
|
|
121
|
+
'text': "Crea líneas de conexión entre tarjetas para mostrar cómo se relacionan las pistas."
|
|
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: "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
|
+
};
|