@jjlmoya/utils-tabletop 1.5.0 → 1.7.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 +209 -0
- package/src/tool/investigation-board/i18n/en.ts +209 -0
- package/src/tool/investigation-board/i18n/es.ts +209 -0
- package/src/tool/investigation-board/i18n/fr.ts +209 -0
- package/src/tool/investigation-board/i18n/id.ts +209 -0
- package/src/tool/investigation-board/i18n/it.ts +209 -0
- package/src/tool/investigation-board/i18n/ja.ts +209 -0
- package/src/tool/investigation-board/i18n/ko.ts +209 -0
- package/src/tool/investigation-board/i18n/nl.ts +209 -0
- package/src/tool/investigation-board/i18n/pl.ts +209 -0
- package/src/tool/investigation-board/i18n/pt.ts +209 -0
- package/src/tool/investigation-board/i18n/ru.ts +209 -0
- package/src/tool/investigation-board/i18n/sv.ts +209 -0
- package/src/tool/investigation-board/i18n/tr.ts +209 -0
- package/src/tool/investigation-board/i18n/zh.ts +209 -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,209 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "criador-de-quadro-de-conspiracao",
|
|
6
|
+
title: "Criador de Quadro de Conspiração: Mapas de Pistas & Relacionamentos RPG Online",
|
|
7
|
+
description: "Desenhe quadros de conspiração interativos e mapas de investigação RPG. Conecte suspeitos, pistas e locais com fios coloridos.",
|
|
8
|
+
ui: {
|
|
9
|
+
"title": "Criador de Quadro de Conspiração",
|
|
10
|
+
"addCard": "Adicionar Cartão",
|
|
11
|
+
"searchPlaceholder": "Buscar cartões por nome ou pistas",
|
|
12
|
+
"filterAll": "Todas as Categorias",
|
|
13
|
+
"filterCharacter": "Personagens",
|
|
14
|
+
"filterClue": "Pistas",
|
|
15
|
+
"filterLocation": "Locais",
|
|
16
|
+
"filterItem": "Itens",
|
|
17
|
+
"cardName": "Nome do Cartão",
|
|
18
|
+
"cardCategory": "Categoria",
|
|
19
|
+
"cardDescription": "Descrição",
|
|
20
|
+
"cardNotes": "Notas Privadas",
|
|
21
|
+
"cardTags": "Tags separadas por vírgulas",
|
|
22
|
+
"cardColor": "Cor de Destaque do Cartão",
|
|
23
|
+
"save": "Salvar Alterações",
|
|
24
|
+
"delete": "Excluir",
|
|
25
|
+
"cancel": "Cancelar",
|
|
26
|
+
"clearBoard": "Limpar Quadro",
|
|
27
|
+
"connectionsTitle": "Mapa de Relações",
|
|
28
|
+
"addConnection": "Adicionar Conexão",
|
|
29
|
+
"connectionLabel": "Rótulo de Relação",
|
|
30
|
+
"connectionColor": "Cor da Linha",
|
|
31
|
+
"sourceCard": "Do Cartão",
|
|
32
|
+
"targetCard": "Para o Cartão",
|
|
33
|
+
"close": "Fechar",
|
|
34
|
+
"character": "Personagem",
|
|
35
|
+
"clue": "Pista",
|
|
36
|
+
"location": "Local",
|
|
37
|
+
"item": "Item",
|
|
38
|
+
"custom": "Personalizado",
|
|
39
|
+
"immersive": "Tela Cheia"
|
|
40
|
+
},
|
|
41
|
+
seo: [
|
|
42
|
+
{ type: 'title', text: "Criador de Quadro de Conspiração Online: Organize Pistas e Relacionamentos RPG", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Desvendar uma rede complexa de mentiras, rastrear álibis de suspeitos e conectar evidências em cenas de crime pode sobrecarregar qualquer grupo de RPG investigativo. Seja narrando uma campanha de O Chamado de Cthulhu, um mistério cyberpunk, uma investigação de D&D ou escrevendo um livro de suspense, o nosso criador de quadro de conspiração online é a ferramenta definitiva. Arraste, solte, categorize e ligue pistas, NPCs e evidências físicas em um quadro de cortiça digital infinito. Use fios de relações coloridos para visualizar instantaneamente como os suspeitos se conectam a cenas de crime, álibis e motivos ocultos." },
|
|
44
|
+
{
|
|
45
|
+
type: 'stats',
|
|
46
|
+
items: [
|
|
47
|
+
{ value: "Ilimitado", label: "Quadro de Nodos" },
|
|
48
|
+
{ value: "4", label: "Categorias" },
|
|
49
|
+
{ value: "Arrastar e Soltar", label: "Interface" }
|
|
50
|
+
],
|
|
51
|
+
columns: 3
|
|
52
|
+
},
|
|
53
|
+
{ type: 'title', text: "Dicas para Estruturar o seu Quadro de Investigação RPG", level: 2 },
|
|
54
|
+
{ type: 'tip', title: "A Regra das Três Pistas", html: "Para cada conclusão ou dedução que você deseja que os jogadores alcancem, adicione pelo menos três pistas distintas ao quadro de investigação. Conecte-as com fios coloridos personalizados para mostrar diferentes caminhos de raciocínio possíveis. Use cartões de Personagens para suspeitos, Locais para cenas de crime e Itens para provas físicas. Mantenha as anotações privadas sempre atualizadas." },
|
|
55
|
+
{ type: 'title', text: "Quadros de Conspiração Digitais vs Quadros de Cortiça Físicos", level: 2 },
|
|
56
|
+
{
|
|
57
|
+
type: 'proscons',
|
|
58
|
+
title: "Quadros de Conspiração Digitais vs Quadros de Cortiça Físicos",
|
|
59
|
+
items: [
|
|
60
|
+
{ pro: "Tamanho de quadro ilimitado para adicionar tantas pistas, suspeitos e conexões quanto necessário sem limite de espaço.", con: "Requer uma tela, tablet ou dispositivo digital durante a sessão de jogo de mesa." },
|
|
61
|
+
{ pro: "Busca rápida e filtros de categorias para localizar imediatamente testemunhas ou evidências específicas durante as sessões.", con: "Falta a sensação tátil dos alfinetes e do fio de lã vermelha de verdade em uma parede real." },
|
|
62
|
+
{ pro: "Salve, carregue e compartilhe mapas digitalmente sem ocupar espaço físico entre as sessões de jogo.", con: "Requer acesso à internet ou armazenamento local do navegador para salvar o estado do quadro." }
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{ type: 'title', text: "Escolha de Categorias de Cartões para o seu Mapa de Mistérios", level: 3 },
|
|
66
|
+
{
|
|
67
|
+
type: 'comparative',
|
|
68
|
+
items: [
|
|
69
|
+
{
|
|
70
|
+
title: "Nodos de Personagens",
|
|
71
|
+
description: "Representam suspeitos, testemunhas, NPCs aliados ou organizações. Destaque relações com linhas coloridas.",
|
|
72
|
+
icon: 'mdi:account-group',
|
|
73
|
+
highlight: true,
|
|
74
|
+
points: [
|
|
75
|
+
"Rastreie álibis e motivos de suspeitos",
|
|
76
|
+
"Conecte laços familiares e alianças secretas",
|
|
77
|
+
"Registre detalhes de depoimentos de testemunhas"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
title: "Nodos de Pistas",
|
|
82
|
+
description: "Representam evidências físicas, relatórios de autópsia, álibis ou boatos descobertos pelos jogadores durante a campanha.",
|
|
83
|
+
icon: 'mdi:magnify',
|
|
84
|
+
highlight: false,
|
|
85
|
+
points: [
|
|
86
|
+
"Relatórios de autópsia e laudos forenses",
|
|
87
|
+
"Objetos físicos recolhidos nas cenas de crime",
|
|
88
|
+
"Boatos ouvidos e segredos revelados"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
title: "Nodos de Locais",
|
|
93
|
+
description: "Cenas de crime, residências de suspeitos, esconderijos secretos ou cidades.",
|
|
94
|
+
icon: 'mdi:map-marker',
|
|
95
|
+
highlight: false,
|
|
96
|
+
points: [
|
|
97
|
+
"Fotos de cenas de crime e mapas",
|
|
98
|
+
"Residências de personagens importantes",
|
|
99
|
+
"Esconderijos secretos e portais dimensionais"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
columns: 3
|
|
104
|
+
},
|
|
105
|
+
{ type: 'title', text: "Glossário de Mapeamento de Conspirações", level: 3 },
|
|
106
|
+
{
|
|
107
|
+
type: 'glossary',
|
|
108
|
+
items: [
|
|
109
|
+
{ term: "Nodo de Investigação", definition: "Qualquer cartão na tela representando uma pessoa, local, pista ou item." },
|
|
110
|
+
{ term: "Fio de Relação", definition: "Uma linha colorida ligando dois cartões, indicando como eles estão conectados (por exemplo: Suspeito, Álibi, Proprietário)." },
|
|
111
|
+
{ term: "Modo Imersivo", definition: "Um layout de tela cheia que oculta os painéis de controle, maximizando a área de trabalho em celulares ou tablets." },
|
|
112
|
+
{ term: "Caminho de Destaque", definition: "Um efeito visual que mostra apenas os nodos e linhas conectados de um cartão selecionado, obscurecendo o resto do quadro." }
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
type: 'diagnostic',
|
|
117
|
+
variant: 'info',
|
|
118
|
+
title: "Dica de Desempenho para Dispositivos Móveis",
|
|
119
|
+
icon: 'mdi:information-outline',
|
|
120
|
+
badge: 'GRID TIP',
|
|
121
|
+
html: "Se o arrasto de nodos estiver lento em tablets antigos, ative o modo tela cheia para ocultar menus desnecessários. Certifique-se de ativar o ajuste automático à grade (os cartões alinham a cada 15px) para manter o quadro organizado com pouco esforço."
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
faq: [
|
|
125
|
+
{ question: "Como adiciono linhas de conexão?", answer: "Clique em Adicionar Conexão no painel de controle ou clique no ícone de link de um cartão e selecione o cartão de destino." },
|
|
126
|
+
{ question: "Posso arrastar cartões no celular?", answer: "Sim, o quadro suporta eventos de toque para arrastar e mover cartões sem problemas em smartphones e tablets." },
|
|
127
|
+
{ question: "Posso usar cores de cartão personalizadas?", answer: "Sim. Dê duplo clique em um cartão, selecione Personalizado na Categoria e escolha uma cor de destaque." },
|
|
128
|
+
{ question: "O quadro salva o meu trabalho?", answer: "Sim. O seu progresso é salvo automaticamente no armazenamento local do navegador." },
|
|
129
|
+
{ question: "Como faço zoom e me movo pelo quadro?", answer: "Use gestos de pinça ou a roda do mouse para aproximar ou afastar. Arraste o fundo para mover-se pela tela." }
|
|
130
|
+
],
|
|
131
|
+
bibliography,
|
|
132
|
+
howTo: [
|
|
133
|
+
{ name: "Adicionar Cartões de Investigação", text: "Crie cartões que representem NPCs, pistas, cenas de crime ou itens." },
|
|
134
|
+
{ name: "Vincular Relações", text: "Crie linhas de conexão entre cartões para mostrar como as pistas se relacionam." }
|
|
135
|
+
],
|
|
136
|
+
schemas: [
|
|
137
|
+
{
|
|
138
|
+
'@context': 'https://schema.org',
|
|
139
|
+
'@type': 'SoftwareApplication',
|
|
140
|
+
'name': "Criador de Quadro de Conspiração: Mapas de Pistas & Relacionamentos RPG Online",
|
|
141
|
+
'operatingSystem': 'All',
|
|
142
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
143
|
+
'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@context': 'https://schema.org',
|
|
147
|
+
'@type': 'FAQPage',
|
|
148
|
+
'mainEntity': [
|
|
149
|
+
{
|
|
150
|
+
'@type': 'Question',
|
|
151
|
+
'name': "Como adiciono linhas de conexão?",
|
|
152
|
+
'acceptedAnswer': {
|
|
153
|
+
'@type': 'Answer',
|
|
154
|
+
'text': "Clique em Adicionar Conexão no painel de controle ou clique no ícone de link de um cartão e selecione o cartão de destino."
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
'@type': 'Question',
|
|
159
|
+
'name': "Posso arrastar cartões no celular?",
|
|
160
|
+
'acceptedAnswer': {
|
|
161
|
+
'@type': 'Answer',
|
|
162
|
+
'text': "Sim, o quadro suporta eventos de toque para arrastar e mover cartões sem problemas em smartphones e tablets."
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
'@type': 'Question',
|
|
167
|
+
'name': "Posso usar cores de cartão personalizadas?",
|
|
168
|
+
'acceptedAnswer': {
|
|
169
|
+
'@type': 'Answer',
|
|
170
|
+
'text': "Sim. Dê duplo clique em um cartão, selecione Personalizado na Categoria e escolha uma cor de destaque."
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
'@type': 'Question',
|
|
175
|
+
'name': "O quadro salva o meu trabalho?",
|
|
176
|
+
'acceptedAnswer': {
|
|
177
|
+
'@type': 'Answer',
|
|
178
|
+
'text': "Sim. O seu progresso é salvo automaticamente no armazenamento local do navegador."
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
'@type': 'Question',
|
|
183
|
+
'name': "Como faço zoom e me movo pelo quadro?",
|
|
184
|
+
'acceptedAnswer': {
|
|
185
|
+
'@type': 'Answer',
|
|
186
|
+
'text': "Use gestos de pinça ou a roda do mouse para aproximar ou afastar. Arraste o fundo para mover-se pela tela."
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
'@context': 'https://schema.org',
|
|
193
|
+
'@type': 'HowTo',
|
|
194
|
+
'name': "Como Usar o Criador de Quadro de Conspiração",
|
|
195
|
+
'step': [
|
|
196
|
+
{
|
|
197
|
+
'@type': 'HowToStep',
|
|
198
|
+
'name': "Adicionar Cartões de Investigação",
|
|
199
|
+
'text': "Crie cartões que representem NPCs, pistas, cenas de crime ou itens."
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
'@type': 'HowToStep',
|
|
203
|
+
'name': "Vincular Relações",
|
|
204
|
+
'text': "Crie linhas de conexão entre cartões para mostrar como as pistas se relacionam."
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
}
|
|
208
|
+
]
|
|
209
|
+
};
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "sozdatel-doski-zagovora",
|
|
6
|
+
title: "Создатель Доски Заговора: Онлайн Карта Улик и Связей для Детективных RPG",
|
|
7
|
+
description: "Проектируйте интерактивные доски заговоров и карты расследований RPG. Соединяйте подозреваемых, улики и места преступлений цветными нитями.",
|
|
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: "Создатель Доски Заговора Онлайн: Организация Улик и Связей в Детективных RPG", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Распутывание сложной паутины лжи, отслеживание алиби подозреваемых и связывание улик с места преступления может запутать любую детективную RPG-группу. Проводите ли вы кампанию Зов Ктулху, киберпанк-детектив, фэнтезийное расследование в D&D или пишете остросюжетный роман - наш создатель доски заговора онлайн станет идеальным инструментом. Перетаскивайте, группируйте и связывайте улики, NPC и вещественные доказательства на бесконечной цифровой пробковой доске. Используйте цветные нити связей, чтобы мгновенно увидеть отношение подозреваемых к местам преступлений, алиби и тайным мотивам." },
|
|
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: "Советы по Структурированию Детективной RPG-Карты Расследования", level: 2 },
|
|
54
|
+
{ type: 'tip', title: "Правило Трех Улик", html: "Для каждого вывода или дедуктивного заключения, к которому должны прийти игроки, добавьте на доску расследования как минимум три независимые улики. Соедините их цветными нитями, чтобы показать альтернативные цепочки рассуждений. Используйте карточки Персонажей для подозреваемых и свидетелей, Места для сцен преступлений и Предметы для вещественных доказательств или писем. Регулярно обновляйте заметки." },
|
|
55
|
+
{ type: 'title', text: "Цифровые Доски Заговора против Физических Пробковых Досок", level: 2 },
|
|
56
|
+
{
|
|
57
|
+
type: 'proscons',
|
|
58
|
+
title: "Цифровые Доски Заговора против Физических Пробковых Досок",
|
|
59
|
+
items: [
|
|
60
|
+
{ pro: "Бесконечный размер доски позволяет добавлять столько улик, подозреваемых и связей, сколько необходимо, без ограничений.", con: "Требуется экран, планшет или другое цифровое устройство во время игровой настольной сессии." },
|
|
61
|
+
{ pro: "Мгновенный поиск и фильтрация по категориям помогают быстро найти нужного свидетеля или улику прямо во время игры.", con: "Отсутствует тактильное ощущение втыкания булавок и натягивания настоящей красной шерстяной нити на стену." },
|
|
62
|
+
{ pro: "Сохраняйте, загружайте и делитесь картами расследований в цифровом формате, не занимая место дома между играми.", con: "Требуется доступ в интернет или локальное хранилище браузера для сохранения состояния доски." }
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{ type: 'title', text: "Выбор Категорий Карточек для Карты Тайн", level: 3 },
|
|
66
|
+
{
|
|
67
|
+
type: 'comparative',
|
|
68
|
+
items: [
|
|
69
|
+
{
|
|
70
|
+
title: "Узлы Персонажей",
|
|
71
|
+
description: "Представляют подозреваемых, свидетелей, союзных NPC или организации. Выделяйте отношения цветными линиями.",
|
|
72
|
+
icon: 'mdi:account-group',
|
|
73
|
+
highlight: true,
|
|
74
|
+
points: [
|
|
75
|
+
"Отслеживание алиби и мотивов подозреваемых",
|
|
76
|
+
"Связывание родственных и секретных фракционных уз",
|
|
77
|
+
"Запись подробностей свидетельских показаний"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
title: "Узлы Улик",
|
|
82
|
+
description: "Представляют вещественные доказательства, отчеты о вскрытии, алиби или слухи, обнаруженные игроками.",
|
|
83
|
+
icon: 'mdi:magnify',
|
|
84
|
+
highlight: false,
|
|
85
|
+
points: [
|
|
86
|
+
"Отчеты о вскрытии и баллистические экспертизы",
|
|
87
|
+
"Физические предметы, найденные на местах преступлений",
|
|
88
|
+
"Услышанные слухи и секретные утечки информации"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
title: "Узлы Мест",
|
|
93
|
+
description: "Места преступлений, дома подозреваемых, тайные логова или целые города.",
|
|
94
|
+
icon: 'mdi:map-marker',
|
|
95
|
+
highlight: false,
|
|
96
|
+
points: [
|
|
97
|
+
"Фотографии мест преступлений и схемы",
|
|
98
|
+
"Места жительства ключевых персонажей",
|
|
99
|
+
"Тайные убежища и порталы в другие миры"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
columns: 3
|
|
104
|
+
},
|
|
105
|
+
{ type: 'title', text: "Глоссарий Картографии Заговоров", level: 3 },
|
|
106
|
+
{
|
|
107
|
+
type: 'glossary',
|
|
108
|
+
items: [
|
|
109
|
+
{ term: "Узел Расследования", definition: "Любая карточка на холсте доски, представляющая человека, место, улику или предмет." },
|
|
110
|
+
{ term: "Нить Отношений", definition: "Цветная линия, соединяющая две карточки и указывающая характер их связи (например: Алиби, Враг, Владелец)." },
|
|
111
|
+
{ term: "Иммерсивный Режим", definition: "Полноэкранный режим, скрывающий панели управления для максимизации рабочего пространства на смартфонах и планшетах." },
|
|
112
|
+
{ term: "Путь Выделения", definition: "Визуальный эффект, показывающий только связанные узлы и линии выбранной карточки, приглушая остальную доску." }
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
type: 'diagnostic',
|
|
117
|
+
variant: 'info',
|
|
118
|
+
title: "Совет по Производительности для Мобильных Устройств",
|
|
119
|
+
icon: 'mdi:information-outline',
|
|
120
|
+
badge: 'GRID TIP',
|
|
121
|
+
html: "Если перетаскивание узлов кажется медленным на старых планшетах, включите полноэкранный режим, чтобы скрыть лишние меню. Включите прилипание к сетке (выравнивание каждые 15px), чтобы поддерживать порядок с минимальными усилиями."
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
faq: [
|
|
125
|
+
{ question: "Как добавить линии связи?", answer: "Нажмите «Добавить связь» на панели управления или выберите карточку, кликните на иконку ссылки (цепь) и выберите цель." },
|
|
126
|
+
{ question: "Можно ли перетаскивать карточки на телефоне?", answer: "Да, доска поддерживает сенсорные жесты для плавного перетаскивания и перемещения карточек на смартфонах и планшетах." },
|
|
127
|
+
{ question: "Можно ли использовать свои цвета карточек?", answer: "Да. Дважды кликните по карточке, выберите «Особый» в категории и настройте цвет выделения." },
|
|
128
|
+
{ question: "Сохраняет ли доска мою работу?", answer: "Да. Прогресс автоматически сохраняется в локальном хранилище вашего браузера под текущим именем доски." },
|
|
129
|
+
{ question: "Как масштабировать и перемещаться по доске?", answer: "Используйте жесты сжатия (pinch) для зума или колесо мыши. Перетаскивайте фон для перемещения по холсту." }
|
|
130
|
+
],
|
|
131
|
+
bibliography,
|
|
132
|
+
howTo: [
|
|
133
|
+
{ name: "Добавить Карточки Расследования", text: "Создавайте карточки, представляющие NPC, улики, места преступлений или предметы." },
|
|
134
|
+
{ name: "Связать Отношения", text: "Создавайте линии связей между карточками, чтобы показать отношение улик друг к другу." }
|
|
135
|
+
],
|
|
136
|
+
schemas: [
|
|
137
|
+
{
|
|
138
|
+
'@context': 'https://schema.org',
|
|
139
|
+
'@type': 'SoftwareApplication',
|
|
140
|
+
'name': "Создатель Доски Заговора: Онлайн Карта Улик и Связей для Детективных RPG",
|
|
141
|
+
'operatingSystem': 'All',
|
|
142
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
143
|
+
'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@context': 'https://schema.org',
|
|
147
|
+
'@type': 'FAQPage',
|
|
148
|
+
'mainEntity': [
|
|
149
|
+
{
|
|
150
|
+
'@type': 'Question',
|
|
151
|
+
'name': "Как добавить линии связи?",
|
|
152
|
+
'acceptedAnswer': {
|
|
153
|
+
'@type': 'Answer',
|
|
154
|
+
'text': "Нажмите «Добавить связь» на панели управления или выберите карточку, кликните на иконку ссылки (цепь) и выберите цель."
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
'@type': 'Question',
|
|
159
|
+
'name': "Можно ли перетаскивать карточки на телефоне?",
|
|
160
|
+
'acceptedAnswer': {
|
|
161
|
+
'@type': 'Answer',
|
|
162
|
+
'text': "Да, доска поддерживает сенсорные жесты для плавного перетаскивания и перемещения карточек на смартфонах и планшетах."
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
'@type': 'Question',
|
|
167
|
+
'name': "Можно ли использовать свои цвета карточек?",
|
|
168
|
+
'acceptedAnswer': {
|
|
169
|
+
'@type': 'Answer',
|
|
170
|
+
'text': "Да. Дважды кликните по карточке, выберите «Особый» в категории и настройте цвет выделения."
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
'@type': 'Question',
|
|
175
|
+
'name': "Сохраняет ли доска мою работу?",
|
|
176
|
+
'acceptedAnswer': {
|
|
177
|
+
'@type': 'Answer',
|
|
178
|
+
'text': "Да. Прогресс автоматически сохраняется в локальном хранилище вашего браузера под текущим именем доски."
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
'@type': 'Question',
|
|
183
|
+
'name': "Как масштабировать и перемещаться по доске?",
|
|
184
|
+
'acceptedAnswer': {
|
|
185
|
+
'@type': 'Answer',
|
|
186
|
+
'text': "Используйте жесты сжатия (pinch) для зума или колесо мыши. Перетаскивайте фон для перемещения по холсту."
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
'@context': 'https://schema.org',
|
|
193
|
+
'@type': 'HowTo',
|
|
194
|
+
'name': "Как Использовать Создатель Доски Заговора",
|
|
195
|
+
'step': [
|
|
196
|
+
{
|
|
197
|
+
'@type': 'HowToStep',
|
|
198
|
+
'name': "Добавить Карточки Расследования",
|
|
199
|
+
'text': "Создавайте карточки, представляющие NPC, улики, места преступлений или предметы."
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
'@type': 'HowToStep',
|
|
203
|
+
'name': "Связать Отношения",
|
|
204
|
+
'text': "Создавайте линии связей между карточками, чтобы показать отношение улик друг к другу."
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
}
|
|
208
|
+
]
|
|
209
|
+
};
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { InvestigationBoardLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
export const content: InvestigationBoardLocaleContent = {
|
|
5
|
+
slug: "konspirationsbrade-skapare",
|
|
6
|
+
title: "Konspirationsbrädsmakare: Online Detektiv RPG Utredningskartor",
|
|
7
|
+
description: "Skapa interaktiva konspirationsbräden och RPG-utredningskartor. Koppla samman misstänkta, ledtrådar och platser med färgade trådar.",
|
|
8
|
+
ui: {
|
|
9
|
+
"title": "Konspirationsbrädsmakare",
|
|
10
|
+
"addCard": "Lägg till Kort",
|
|
11
|
+
"searchPlaceholder": "Sök kort efter namn eller ledtrådar",
|
|
12
|
+
"filterAll": "Alla Kategorier",
|
|
13
|
+
"filterCharacter": "Karaktärer",
|
|
14
|
+
"filterClue": "Ledtrådar",
|
|
15
|
+
"filterLocation": "Platser",
|
|
16
|
+
"filterItem": "Föremål",
|
|
17
|
+
"cardName": "Kortnamn",
|
|
18
|
+
"cardCategory": "Kategori",
|
|
19
|
+
"cardDescription": "Beskrivning",
|
|
20
|
+
"cardNotes": "Privata Anteckningar",
|
|
21
|
+
"cardTags": "Taggar separerade med kommatecken",
|
|
22
|
+
"cardColor": "Kortets markeringsfärg",
|
|
23
|
+
"save": "Spara ändringar",
|
|
24
|
+
"delete": "Ta bort",
|
|
25
|
+
"cancel": "Avbryt",
|
|
26
|
+
"clearBoard": "Töm bräde",
|
|
27
|
+
"connectionsTitle": "Relationskarta",
|
|
28
|
+
"addConnection": "Lägg till koppling",
|
|
29
|
+
"connectionLabel": "Relationsetikett",
|
|
30
|
+
"connectionColor": "Linjefärg",
|
|
31
|
+
"sourceCard": "Från kort",
|
|
32
|
+
"targetCard": "Till kort",
|
|
33
|
+
"close": "Stäng",
|
|
34
|
+
"character": "Karaktär",
|
|
35
|
+
"clue": "Ledtråd",
|
|
36
|
+
"location": "Plats",
|
|
37
|
+
"item": "Föremål",
|
|
38
|
+
"custom": "Anpassad",
|
|
39
|
+
"immersive": "Helskärm"
|
|
40
|
+
},
|
|
41
|
+
seo: [
|
|
42
|
+
{ type: 'title', text: "Online Konspirationsbrädsmakare: Organisera RPG-ledtrådar och Relationer", level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: "Att nysta upp en komplex väv av lögner, spåra misstänktas alibin och koppla samman bevis på en brottsplats kan överväldiga vilken detektiv-RPG-grupp som helst. Oavsett om du leder en Call of Cthulhu-kampanj, ett Cyberpunk-mordmysterium, en D&D-detektivutredning eller skriver en thrillerroman, är vår online konspirationsbrädsmakare det ultimata verktyget. Dra, släpp, kategorisera och länka ledtrådar, NPC:er och fysiska bevis på en oändlig digital anslagstavla. Använd färgkodade relationstrådar för att direkt se hur misstänkta relaterar till brottsplatser, alibin och dolda motiv." },
|
|
44
|
+
{
|
|
45
|
+
type: 'stats',
|
|
46
|
+
items: [
|
|
47
|
+
{ value: "Obegränsat", label: "Nodbräde" },
|
|
48
|
+
{ value: "4", label: "Kategorier" },
|
|
49
|
+
{ value: "Dra-och-Släpp", label: "Gränssnitt" }
|
|
50
|
+
],
|
|
51
|
+
columns: 3
|
|
52
|
+
},
|
|
53
|
+
{ type: 'title', text: "Tips för att strukturera ditt RPG-detektivbräde", level: 2 },
|
|
54
|
+
{ type: 'tip', title: "De Tre Ledtrådarnas Regel", html: "För varje slutsats eller deduktion du vill att spelarna ska göra, lägg till minst tre olika ledtrådar på utredningsbrädet. Koppla samman dem med färgade trådar för att visa alternativa tankebanor. Använd Karaktärskort för misstänkta, Platser för brottsplatser och Föremål för fysiska bevis. Uppdatera anteckningar löpande." },
|
|
55
|
+
{ type: 'title', text: "Digitala Konspirationsbrädor vs Fysiska Korktavlor", level: 2 },
|
|
56
|
+
{
|
|
57
|
+
type: 'proscons',
|
|
58
|
+
title: "Digitala Konspirationsbrädor vs Fysiska Korktavlor",
|
|
59
|
+
items: [
|
|
60
|
+
{ pro: "Oändlig brädstorlek för att lägga till så många ledtrådar, misstänkta och relationer som behövs utan utrymmesbegränsning.", con: "Kräver en skärm, surfplatta eller digital enhet under spelsessionen vid bordet." },
|
|
61
|
+
{ pro: "Snabb sökning och kategorifilter för att omedelbart hitta specifika vittnen eller ledtrådar under sessionerna.", con: "Saknar den taktila känslan av riktiga röda trådar och nålar på en riktig vägg." },
|
|
62
|
+
{ pro: "Spara, ladda och dela kartor digitalt utan att ta upp fysisk plats hemma mellan spelsessionerna.", con: "Kräver internetanslutning eller webbläsarens lokala lagring för att spara brädets tillstånd." }
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{ type: 'title', text: "Välj kortkategorier för din mysteriekarta", level: 3 },
|
|
66
|
+
{
|
|
67
|
+
type: 'comparative',
|
|
68
|
+
items: [
|
|
69
|
+
{
|
|
70
|
+
title: "Karaktärsnoder",
|
|
71
|
+
description: "Representerar NPC:er, misstänkta, vittnen eller organisationer. Markera relationer med färgade linjer.",
|
|
72
|
+
icon: 'mdi:account-group',
|
|
73
|
+
highlight: true,
|
|
74
|
+
points: [
|
|
75
|
+
"Följ misstänktas alibin och motiv",
|
|
76
|
+
"Koppla familjeband och fraktionsallianser",
|
|
77
|
+
"Dokumentera vittnesmål i detalj"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
title: "Ledtrådsnoder",
|
|
82
|
+
description: "Representerar fysiska bevis, obduktionsrapporter, alibin eller rykten som spelarna upptäcker under kampanjen.",
|
|
83
|
+
icon: 'mdi:magnify',
|
|
84
|
+
highlight: false,
|
|
85
|
+
points: [
|
|
86
|
+
"Obduktionsrapporter och forensiska analyser",
|
|
87
|
+
"Fysiska föremål funna på brottsplatser",
|
|
88
|
+
"Tjuvlyssnade rykten och hemligheter"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
title: "Platsnoder",
|
|
93
|
+
description: "Brottsplatser, misstänktas hem, hemliga gömställen eller städer.",
|
|
94
|
+
icon: 'mdi:map-marker',
|
|
95
|
+
highlight: false,
|
|
96
|
+
points: [
|
|
97
|
+
"Foton och kartor över brottsplatser",
|
|
98
|
+
"Bostäder för viktiga NPC:er",
|
|
99
|
+
"Hemliga tillhåll och dimensionsportaler"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
columns: 3
|
|
104
|
+
},
|
|
105
|
+
{ type: 'title', text: "Ordlista för Konspirationskartläggning", level: 3 },
|
|
106
|
+
{
|
|
107
|
+
type: 'glossary',
|
|
108
|
+
items: [
|
|
109
|
+
{ term: "Utredningsnod", definition: "Valfritt kort på ritytan som representerar en person, plats, ledtråd eller ett föremål." },
|
|
110
|
+
{ term: "Relationstråd", definition: "En färgad linje som kopplar samman två kort och visar deras relation (t.ex. Misstänkt, Alibi, Ägare)." },
|
|
111
|
+
{ term: "Helskärmsläge", definition: "En layout som döljer kontrollpanelerna för att maximera arbetsytan på mobiler eller surfplattor." },
|
|
112
|
+
{ term: "Markeringsväg", definition: "En visuell effekt som endast visar det valda kortets anslutna noder och linjer, medan resten tonas ner." }
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
type: 'diagnostic',
|
|
117
|
+
variant: 'info',
|
|
118
|
+
title: "Prestandatips för Mobila Enheter",
|
|
119
|
+
icon: 'mdi:information-outline',
|
|
120
|
+
badge: 'GRID TIP',
|
|
121
|
+
html: "Om det går trögt att dra noder på äldre surfplattor, aktivera helskärmsläget för att dölja menyerna. Se till att rutnätsinpassning är aktiv (korten snäpper var 15px) för att hålla ordning med minimal ansträngning."
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
faq: [
|
|
125
|
+
{ question: "Hur lägger jag till kopplingslinjer?", answer: "Klicka på Lägg till koppling i kontrollpanelen, eller klicka på länkikonen på ett kort och välj målkortet." },
|
|
126
|
+
{ question: "Kan jag dra kort på mobilen?", answer: "Ja, brädet stöder pekgester för att dra och flytta kort smidigt på smartphones och surfplattor." },
|
|
127
|
+
{ question: "Kan jag använda anpassade kortfärger?", answer: "Ja. Dubbelklicka på ett kort, välj Anpassad under Kategori och välj en markeringsfärg." },
|
|
128
|
+
{ question: "Sparar brädet mitt arbete?", answer: "Ja. Dina framsteg sparas automatiskt i webbläsarens lokala lagring under det aktuella brädnamnet." },
|
|
129
|
+
{ question: "Hur zoomar och flyttar jag mig på brädet?", answer: "Använd nypgester eller mushjulet för att zooma in och ut. Dra bakgrunden för att panorera runt på ritytan." }
|
|
130
|
+
],
|
|
131
|
+
bibliography,
|
|
132
|
+
howTo: [
|
|
133
|
+
{ name: "Lägg till Utredningskort", text: "Skapa kort som representerar NPC:er, ledtrådar, brottsplatser eller föremål." },
|
|
134
|
+
{ name: "Länka Relationer", text: "Skapa kopplingslinjer mellan kort för att visa hur ledtrådar hänger ihop." }
|
|
135
|
+
],
|
|
136
|
+
schemas: [
|
|
137
|
+
{
|
|
138
|
+
'@context': 'https://schema.org',
|
|
139
|
+
'@type': 'SoftwareApplication',
|
|
140
|
+
'name': "Konspirationsbrädsmakare: Online Detektiv RPG Utredningskartor",
|
|
141
|
+
'operatingSystem': 'All',
|
|
142
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
143
|
+
'browserRequirements': 'Requires HTML5 SVG support. Requires JavaScript.'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
'@context': 'https://schema.org',
|
|
147
|
+
'@type': 'FAQPage',
|
|
148
|
+
'mainEntity': [
|
|
149
|
+
{
|
|
150
|
+
'@type': 'Question',
|
|
151
|
+
'name': "Hur lägger jag till kopplingslinjer?",
|
|
152
|
+
'acceptedAnswer': {
|
|
153
|
+
'@type': 'Answer',
|
|
154
|
+
'text': "Klicka på Lägg till koppling i kontrollpanelen, eller klicka på länkikonen på ett kort och välj målkortet."
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
'@type': 'Question',
|
|
159
|
+
'name': "Kan jag dra kort på mobilen?",
|
|
160
|
+
'acceptedAnswer': {
|
|
161
|
+
'@type': 'Answer',
|
|
162
|
+
'text': "Ja, brädet stöder pekgester för att dra och flytta kort smidigt på smartphones och surfplattor."
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
'@type': 'Question',
|
|
167
|
+
'name': "Kan jag använda anpassade kortfärger?",
|
|
168
|
+
'acceptedAnswer': {
|
|
169
|
+
'@type': 'Answer',
|
|
170
|
+
'text': "Ja. Dubbelklicka på ett kort, välj Anpassad under Kategori och välj en markeringsfärg."
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
'@type': 'Question',
|
|
175
|
+
'name': "Sparar brädet mitt arbete?",
|
|
176
|
+
'acceptedAnswer': {
|
|
177
|
+
'@type': 'Answer',
|
|
178
|
+
'text': "Ja. Dina framsteg sparas automatiskt i webbläsarens lokala lagring under det aktuella brädnamnet."
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
'@type': 'Question',
|
|
183
|
+
'name': "Hur zoomar och flyttar jag mig på brädet?",
|
|
184
|
+
'acceptedAnswer': {
|
|
185
|
+
'@type': 'Answer',
|
|
186
|
+
'text': "Använd nypgester eller mushjulet för att zooma in och ut. Dra bakgrunden för att panorera runt på ritytan."
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
'@context': 'https://schema.org',
|
|
193
|
+
'@type': 'HowTo',
|
|
194
|
+
'name': "Hur man använder Konspirationsbrädsmakaren",
|
|
195
|
+
'step': [
|
|
196
|
+
{
|
|
197
|
+
'@type': 'HowToStep',
|
|
198
|
+
'name': "Lägg till Utredningskort",
|
|
199
|
+
'text': "Skapa kort som representerar NPC:er, ledtrådar, brottsplatser eller föremål."
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
'@type': 'HowToStep',
|
|
203
|
+
'name': "Länka Relationer",
|
|
204
|
+
'text': "Skapa kopplingslinjer mellan kort för att visa hur ledtrådar hänger ihop."
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
}
|
|
208
|
+
]
|
|
209
|
+
};
|