@jjlmoya/utils-tabletop 1.4.0 → 1.5.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 (123) hide show
  1. package/package.json +1 -1
  2. package/src/entries.ts +11 -1
  3. package/src/index.ts +1 -0
  4. package/src/tests/locale_completeness.test.ts +1 -1
  5. package/src/tests/tool_validation.test.ts +1 -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/rpg-initiative-tracker/bibliography.astro +16 -0
  65. package/src/tool/rpg-initiative-tracker/bibliography.ts +12 -0
  66. package/src/tool/rpg-initiative-tracker/client.ts +201 -0
  67. package/src/tool/rpg-initiative-tracker/component.astro +23 -0
  68. package/src/tool/rpg-initiative-tracker/components/AddForm.astro +49 -0
  69. package/src/tool/rpg-initiative-tracker/components/CombatantList.astro +16 -0
  70. package/src/tool/rpg-initiative-tracker/components/TurnControls.astro +28 -0
  71. package/src/tool/rpg-initiative-tracker/entry.ts +50 -0
  72. package/src/tool/rpg-initiative-tracker/i18n/de.ts +266 -0
  73. package/src/tool/rpg-initiative-tracker/i18n/en.ts +263 -0
  74. package/src/tool/rpg-initiative-tracker/i18n/es.ts +264 -0
  75. package/src/tool/rpg-initiative-tracker/i18n/fr.ts +263 -0
  76. package/src/tool/rpg-initiative-tracker/i18n/id.ts +263 -0
  77. package/src/tool/rpg-initiative-tracker/i18n/it.ts +263 -0
  78. package/src/tool/rpg-initiative-tracker/i18n/ja.ts +263 -0
  79. package/src/tool/rpg-initiative-tracker/i18n/ko.ts +263 -0
  80. package/src/tool/rpg-initiative-tracker/i18n/nl.ts +263 -0
  81. package/src/tool/rpg-initiative-tracker/i18n/pl.ts +264 -0
  82. package/src/tool/rpg-initiative-tracker/i18n/pt.ts +263 -0
  83. package/src/tool/rpg-initiative-tracker/i18n/ru.ts +264 -0
  84. package/src/tool/rpg-initiative-tracker/i18n/sv.ts +263 -0
  85. package/src/tool/rpg-initiative-tracker/i18n/tr.ts +263 -0
  86. package/src/tool/rpg-initiative-tracker/i18n/zh.ts +263 -0
  87. package/src/tool/rpg-initiative-tracker/index.ts +9 -0
  88. package/src/tool/rpg-initiative-tracker/logic.test.ts +121 -0
  89. package/src/tool/rpg-initiative-tracker/logic.ts +122 -0
  90. package/src/tool/rpg-initiative-tracker/rpg-initiative-tracker.css +617 -0
  91. package/src/tool/rpg-initiative-tracker/seo.astro +16 -0
  92. package/src/tool/rpg-initiative-tracker/types.ts +15 -0
  93. package/src/tool/score-tracker/bibliography.astro +16 -0
  94. package/src/tool/score-tracker/bibliography.ts +12 -0
  95. package/src/tool/score-tracker/client.ts +248 -0
  96. package/src/tool/score-tracker/component.astro +34 -0
  97. package/src/tool/score-tracker/components/Leaderboard.astro +19 -0
  98. package/src/tool/score-tracker/components/PlayerSetup.astro +32 -0
  99. package/src/tool/score-tracker/components/RoundScoring.astro +22 -0
  100. package/src/tool/score-tracker/components/ScoreHistory.astro +25 -0
  101. package/src/tool/score-tracker/entry.ts +57 -0
  102. package/src/tool/score-tracker/i18n/de.ts +278 -0
  103. package/src/tool/score-tracker/i18n/en.ts +278 -0
  104. package/src/tool/score-tracker/i18n/es.ts +251 -0
  105. package/src/tool/score-tracker/i18n/fr.ts +278 -0
  106. package/src/tool/score-tracker/i18n/id.ts +278 -0
  107. package/src/tool/score-tracker/i18n/it.ts +278 -0
  108. package/src/tool/score-tracker/i18n/ja.ts +278 -0
  109. package/src/tool/score-tracker/i18n/ko.ts +278 -0
  110. package/src/tool/score-tracker/i18n/nl.ts +278 -0
  111. package/src/tool/score-tracker/i18n/pl.ts +278 -0
  112. package/src/tool/score-tracker/i18n/pt.ts +278 -0
  113. package/src/tool/score-tracker/i18n/ru.ts +278 -0
  114. package/src/tool/score-tracker/i18n/sv.ts +278 -0
  115. package/src/tool/score-tracker/i18n/tr.ts +278 -0
  116. package/src/tool/score-tracker/i18n/zh.ts +278 -0
  117. package/src/tool/score-tracker/index.ts +9 -0
  118. package/src/tool/score-tracker/logic.test.ts +83 -0
  119. package/src/tool/score-tracker/logic.ts +122 -0
  120. package/src/tool/score-tracker/score-tracker.css +1029 -0
  121. package/src/tool/score-tracker/seo.astro +16 -0
  122. package/src/tool/score-tracker/types.ts +17 -0
  123. package/src/tools.ts +8 -0
@@ -0,0 +1,139 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { FantasyRunesTranslatorUI } from '../entry';
4
+
5
+ const ui: FantasyRunesTranslatorUI = {
6
+ title: 'Fantasy Runen Übersetzer',
7
+ inputPlaceholder: 'Gib ein Wort oder einen Namen zur Übersetzung ein...',
8
+ alphabetLabel: 'Runen-Alphabet',
9
+ elderFuthark: 'Älterer Futhark',
10
+ angloSaxon: 'Angelsächsisch',
11
+ fantasy: 'Fantasy-Schrift',
12
+ theban: 'Thebanisch',
13
+ enochian: 'Henochisch',
14
+ daemonic: 'Dämonisch',
15
+ ogham: 'Ogham',
16
+ translate: 'Übersetzen',
17
+ clear: 'Löschen',
18
+ copy: 'Text kopieren',
19
+ copied: 'Kopiert!',
20
+ runeName: 'Name',
21
+ runeMeaning: 'Bedeutung',
22
+ runePhonetic: 'Lautwert',
23
+ clickHint: 'Klicke auf eine Rune, um Details zu sehen',
24
+ outputLabel: 'Runen-Ausgabe',
25
+ noInput: 'Gib oben Text ein, um ihn in Runen zu übersetzen',
26
+ unknownChar: '?',
27
+ gmMode: 'SL-Modus',
28
+ exitGmMode: 'Beenden',
29
+ gmHint: 'Zeige dies deinen Spielern',
30
+ seedLabel: 'Seed',
31
+ seedPlaceholder: 'Optional',
32
+ seedApplied: 'Fixiert',
33
+ shuffleSeed: 'Mischen',
34
+ };
35
+
36
+ const faq = [
37
+ {
38
+ question: 'Was ist der Ältere Futhark?',
39
+ answer: 'Der Ältere Futhark ist die älteste Form der Runenalphabete und wurde von germanischen Stämmen vom 2. bis zum 8. Jahrhundert verwendet. Er besteht aus 24 Runen, die in drei Gruppen zu je acht, sogenannte Aettir, unterteilt sind. Jede Rune hat einen Lautwert und einen symbolischen Namen, der natürliche oder mythologische Konzepte repräsentiert.',
40
+ },
41
+ {
42
+ question: 'Was ist der Unterschied zwischen dem Älteren Futhark und den angelsächsischen Runen?',
43
+ answer: 'Das angelsächsische Futhorc ist eine erweiterte Version des Älteren Futhark, die in England entwickelt wurde. Es fügt weitere Runen hinzu, um für das Altenglische spezifische Laute darzustellen, und erweitert den Zeichensatz von 24 auf bis zu 33 Zeichen. Auch die Bedeutungen und Lautwerte haben sich im Laufe der Zeit verändert.',
44
+ },
45
+ {
46
+ question: 'Übersetzt dieser Übersetzer Wörter perfekt?',
47
+ answer: 'Dieses Werkzeug bietet eine buchstabengetreue Umschrift in Runensymbole. Der historische Runengebrauch war eher phonetisch als wörtlich Buchstabe für Buchstabe, daher ist das Ergebnis eine moderne Interpretation. Die Fantasy-Schrift bietet ein kreatives, fiktionales Alphabet für den Einsatz in Tabletop-Rollenspielen.',
48
+ },
49
+ {
50
+ question: 'Kann ich diese Runen in meinen Tabletop-RPG-Kampagnen verwenden?',
51
+ answer: 'Ja! Spielleiter und Spieler können den Übersetzer nutzen, um Runeninschriften, magische Schriftzüge, verschlüsselte Botschaften oder dekorative Namen für Charaktere und Orte zu erstellen. Die Fantasy-Schrift wurde speziell für Fantasy-Rollenspielsettings entwickelt.',
52
+ },
53
+ {
54
+ question: 'Speichert dieses Werkzeug eingegebenen Text?',
55
+ answer: 'Nein. Alles läuft lokal in deinem Browser ab. Weder Text, Übersetzungen noch Auswahlen werden jemals an einen Server gesendet. Deine kreative Arbeit bleibt absolut privat.',
56
+ },
57
+ {
58
+ question: 'Was passiert, wenn ich auf eine Rune klicke?',
59
+ answer: 'Ein Klick auf eine Runenkarte zeigt ihren traditionellen Namen, ihre symbolische Bedeutung und ihren Lautwert an. Das hilft dir, die Runen zu lernen und das passende Symbol für dein Rollenspiel auszuwählen.',
60
+ },
61
+ ];
62
+
63
+ const howTo = [
64
+ {
65
+ name: 'Text eingeben',
66
+ text: 'Gib ein beliebiges englisches Wort, einen Namen oder einen Satz in das Eingabefeld ein. Der Übersetzer funktioniert am besten mit einzelnen Wörtern oder kurzen Sätzen.',
67
+ },
68
+ {
69
+ name: 'Alphabet auswählen',
70
+ text: 'Wähle zwischen Älterem Futhark (altgermanisch), Angelsächsisch (mittelalterliches Englisch) oder Fantasy-Schrift (Tabletop-Rollenspiel-Stil).',
71
+ },
72
+ {
73
+ name: 'Übersetzen und erkunden',
74
+ text: 'Klicke auf Übersetzen, um deinen Text umzuwandeln. Jede Rune erscheint als Karte. Klicke auf eine Rune, um ihren Namen, ihre Bedeutung und ihren Laut zu erfahren. Nutze die Kopieren-Schaltfläche, um den Runentext in die Zwischenablage zu speichern.',
75
+ },
76
+ ];
77
+
78
+ export const content: ToolLocaleContent<FantasyRunesTranslatorUI> = {
79
+ slug: 'fantasie-runen-ubersetzer',
80
+ title: 'Fantasy Runen Übersetzer / Älterer Futhark, Thebanisch, Henochisch and Dämonisch Runen Konverter',
81
+ description: 'Übersetze Text in Älteren Futhark, Angelsächsisches Futhorc, Thebanisch, Henochisch, Dämonisch, Ogham oder Fantasy-Schriften. Perfekt für Tabletop-RPG-Rätsel, Kampagnen, Zauberrollen und mystische Runen.',
82
+ ui,
83
+ seo: [
84
+ { type: 'title', text: 'Runenalphabete und Mystische Schriften für Tabletop-RPG-Weltenbau', level: 2 },
85
+ { type: 'paragraph', html: 'Mystische Runenalphabete, uralte Symbole und Geheimschriften verleihen Fantasy-Tabletop-Rollenspielen wie D&D, Pathfinder und Warhammer eine unvergleichliche Atmosphäre. Ob du versteckte Zwergenruinen mit Älterem Futhark beschriftest, ein arkanes Zauberbuch mit henochischen Engelschriften gestaltest, hexenhafte Hinweise mit dem Thebanischen Alphabet verteilst oder verbotene dämonische Botschaften verfasst - unser Runengenerator wandelt normalen englischen Text in Echtzeit in stilisierte Symbole um. Wecke die Neugier deiner Spieler mit physischen Requisiten, mysteriösen Chiffren und uralten Steinritzungen.' },
86
+ {
87
+ type: 'stats',
88
+ items: [
89
+ { value: '7', label: 'Runen-Alphabete' },
90
+ { value: '150+', label: 'Symbol-Varianten' },
91
+ { value: 'Sofort', label: 'Visuelle Umschrift' },
92
+ ],
93
+ columns: 3,
94
+ },
95
+ { type: 'title', text: 'Älterer Futhark & Angelsächsisches Futhorc: Germanische und Nordische Runen', level: 2 },
96
+ { type: 'paragraph', html: 'Der Ältere Futhark stammt aus dem 2. Jahrhundert und ist das älteste Runensystem. Er besteht aus 24 Zeichen, die grundlegende Kräfte der Natur repräsentieren. Das angelsächsische Futhorc erweiterte dieses System auf bis zu 33 Zeichen für die altenglische Phonetik. Diese historischen Symbole eignen sich perfekt für die Darstellung von Zwergensippen, Kulturen inspiriert von der nordischen Mythologie, Wikingerschnitzereien und Barbarenclan-Insignien in deinen RPG-Kampagnen.' },
97
+ { type: 'title', text: 'Thebanisch & Ogham: Mittelalterliche Hexenschriften und Keltische Baumalphabete', level: 2 },
98
+ { type: 'paragraph', html: 'Die Thebanische Schrift, auch als Runen des Honorius oder Hexenalphabet bekannt, ist eine historisch beliebte mittelalterliche Chiffre, die in okkulten Traditionen und der Wicca-Religion verwendet wurde. Ogham, ein frühmittelalterliches Alphabet, verwendet lineare Striche entlang von Kanten und ist eng mit der keltischen Folklore und druidischer Baumagie verbunden. Verwende diese Schriften, um druidische Schreine, Elfenwälder, heidnische Altäre oder geheime Botschaften von Hexenzirkeln zu verzieren.' },
99
+ { type: 'title', text: 'Henochisch & Dämonische Schriften: Arkane Engels- und Abgrundsprachen', level: 2 },
100
+ { type: 'paragraph', html: 'Erstmals im 16. Jahrhundert von John Dee und Edward Kelley aufgezeichnet, ist Henochisch eine detaillierte konstruierte Sprache, die als die Sprache der Engel gilt. Dämonische Schriften repräsentieren abgründige Glyphen, dunkle Pakte und höllische Zeichen. Erhöhe die narrativen Einsätze deiner Kampagne, indem du entzifferbare dämonische Verträge, Kultzerschriften und Engelsrelikte hinterlässt, die deine Zauberer, Paladine und Kleriker untersuchen können.' },
101
+ { type: 'title', text: 'Benutzerdefinierte Fantasy-Schrift: Rollenspielbereite Kreativalphabete', level: 2 },
102
+ { type: 'paragraph', html: 'Für Welten, die über die reale Geschichte hinausgehen, bietet unsere maßgeschneiderte Fantasy-Schrift einen fiktionalen Runensatz, der speziell dafür entwickelt wurde, klassische High-Fantasy-Ästhetik heraufzubeschwören. Jede Rune ist darauf ausgelegt, auf Spielleiter-Ausdrucken, digitalen Karten und individuellen Spielerplättchen hervorzustechen. Kombiniere sie mit seed-basierten Zufallsgeneratoren, um geheime Sprachen für verschiedene Fraktionen, Nationen oder uralte Götter einzigartig zu machen.' },
103
+ ],
104
+ faq,
105
+ bibliography,
106
+ howTo,
107
+ schemas: [
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'FAQPage',
111
+ 'mainEntity': faq.map((f) => ({
112
+ '@type': 'Question',
113
+ 'name': f.question,
114
+ 'acceptedAnswer': {
115
+ '@type': 'Answer',
116
+ 'text': f.answer,
117
+ },
118
+ })),
119
+ },
120
+ {
121
+ '@context': 'https://schema.org',
122
+ '@type': 'SoftwareApplication',
123
+ 'name': 'Fantasy Runen Übersetzer',
124
+ 'operatingSystem': 'All',
125
+ 'applicationCategory': 'UtilitiesApplication',
126
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
127
+ },
128
+ {
129
+ '@context': 'https://schema.org',
130
+ '@type': 'HowTo',
131
+ 'name': 'Wie man den Fantasy Runen Übersetzer verwendet',
132
+ 'step': howTo.map((h) => ({
133
+ '@type': 'HowToStep',
134
+ 'name': h.name,
135
+ 'text': h.text,
136
+ })),
137
+ },
138
+ ],
139
+ };
@@ -0,0 +1,139 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { FantasyRunesTranslatorUI } from '../entry';
4
+
5
+ const ui: FantasyRunesTranslatorUI = {
6
+ title: 'Fantasy Runes Translator',
7
+ inputPlaceholder: 'Type a word or name to translate...',
8
+ alphabetLabel: 'Rune Alphabet',
9
+ elderFuthark: 'Elder Futhark',
10
+ angloSaxon: 'Anglo-Saxon',
11
+ fantasy: 'Fantasy Script',
12
+ theban: 'Theban',
13
+ enochian: 'Enochian',
14
+ daemonic: 'Daemonic',
15
+ ogham: 'Ogham',
16
+ translate: 'Translate',
17
+ clear: 'Clear',
18
+ copy: 'Copy Text',
19
+ copied: 'Copied!',
20
+ runeName: 'Name',
21
+ runeMeaning: 'Meaning',
22
+ runePhonetic: 'Phonetic',
23
+ clickHint: 'Click a rune to see its details',
24
+ outputLabel: 'Rune Output',
25
+ noInput: 'Enter text above to translate into runes',
26
+ unknownChar: '?',
27
+ gmMode: 'GM Mode',
28
+ exitGmMode: 'Exit',
29
+ gmHint: 'Show this to your players',
30
+ seedLabel: 'Seed',
31
+ seedPlaceholder: 'Optional',
32
+ seedApplied: 'Locked',
33
+ shuffleSeed: 'Shuffle',
34
+ };
35
+
36
+ const faq = [
37
+ {
38
+ question: 'What is the Elder Futhark?',
39
+ answer: 'The Elder Futhark is the oldest form of the runic alphabets, used by Germanic tribes from the 2nd to 8th centuries. It consists of 24 runes divided into three groups of eight called aettir. Each rune has a phonetic value and a symbolic name representing natural or mythological concepts.',
40
+ },
41
+ {
42
+ question: 'What is the difference between Elder Futhark and Anglo-Saxon runes?',
43
+ answer: 'The Anglo-Saxon Futhorc is an extended version of the Elder Futhark developed in England. It adds additional runes to represent sounds specific to Old English, expanding from 24 to up to 33 characters. The meanings and phonetic values also shifted over time.',
44
+ },
45
+ {
46
+ question: 'Does this translator convert words perfectly?',
47
+ answer: 'This tool provides a letter-by-letter transliteration into rune symbols. Historical rune usage was phonetic rather than literal letter-for-letter, so the result is a modern interpretation. The Fantasy Script option offers a creative fictional alphabet for tabletop RPG flavor.',
48
+ },
49
+ {
50
+ question: 'Can I use these runes in my tabletop RPG campaigns?',
51
+ answer: 'Yes! Game masters and players can use the translator to create runic inscriptions, magical writings, cryptic messages, or decorative names for characters and locations. The Fantasy Script option is designed specifically for fantasy roleplaying settings.',
52
+ },
53
+ {
54
+ question: 'Does this tool store any text I type?',
55
+ answer: 'No. Everything runs locally in your browser. No text, translations, or selections are ever sent to any server. Your creative work stays completely private.',
56
+ },
57
+ {
58
+ question: 'What happens when I click on a rune?',
59
+ answer: 'Clicking on any rune card displays its traditional name, symbolic meaning, and phonetic value. This helps you learn the runes and choose the right symbol for your RPG needs.',
60
+ },
61
+ ];
62
+
63
+ const howTo = [
64
+ {
65
+ name: 'Enter Text',
66
+ text: 'Type any English word, name, or phrase into the input field. The translator works best with single words or short phrases.',
67
+ },
68
+ {
69
+ name: 'Select an Alphabet',
70
+ text: 'Choose between Elder Futhark (ancient Germanic), Anglo-Saxon (medieval English), or Fantasy Script (tabletop RPG style).',
71
+ },
72
+ {
73
+ name: 'Translate and Explore',
74
+ text: 'Click Translate to convert your text. Each rune appears as a card. Click any rune to learn its name, meaning, and sound. Use the Copy button to save the rune text to your clipboard.',
75
+ },
76
+ ];
77
+
78
+ export const content: ToolLocaleContent<FantasyRunesTranslatorUI> = {
79
+ slug: 'fantasy-runes-translator',
80
+ title: 'Fantasy Runes Translator / Elder Futhark, Theban, Enochian and Daemonic Rune Converter',
81
+ description: 'Translate text into Elder Futhark, Anglo-Saxon Futhorc, Theban, Enochian, Daemonic, Ogham, or Fantasy scripts. Perfect for tabletop RPG puzzles, campaigns, wizard scrolls, and mystical runes.',
82
+ ui,
83
+ seo: [
84
+ { type: 'title', text: 'Runic Alphabets and Mystic Scripts for Tabletop RPG Worldbuilding', level: 2 },
85
+ { type: 'paragraph', html: 'Mystic runic alphabets, ancient symbols, and secret scripts bring unmatched immersion to fantasy tabletop roleplaying games like D&D, Pathfinder, and Warhammer. Whether you are crafting hidden dwarven ruins inscribed with Elder Futhark, designing an arcane spellbook containing Enochian angel-tongue scripts, scattering witchy clues using the Theban alphabet, or writing forbidden daemonic messages, our rune generator turns standard English text into stylized symbols in real time. Spark player curiosity with physical props, mystery ciphers, and ancient stone carvings.' },
86
+ {
87
+ type: 'stats',
88
+ items: [
89
+ { value: '7', label: 'Rune Alphabets' },
90
+ { value: '150+', label: 'Symbol Variations' },
91
+ { value: 'Instant', label: 'Visual Transliteration' },
92
+ ],
93
+ columns: 3,
94
+ },
95
+ { type: 'title', text: 'Elder Futhark & Anglo-Saxon Futhorc: Ancient Germanic and Norse Runes', level: 2 },
96
+ { type: 'paragraph', html: 'Dating back to the 2nd century, the Elder Futhark is the oldest runic system, consisting of 24 characters representing fundamental forces of nature. The Anglo-Saxon Futhorc expanded this system to include up to 33 characters for Old English phonetics. These historical symbols are perfect for representing dwarven clans, Norse mythology-inspired cultures, viking carvings, and barbarian clan insignias in your RPG campaign settings.' },
97
+ { type: 'title', text: 'Theban & Ogham: Medieval Witchcraft and Celtic Tree Alphabets', level: 2 },
98
+ { type: 'paragraph', html: 'Often referred to as the Runes of Honorius or the Witch\'s Alphabet, the Theban script is a historically popular medieval cipher used in occult traditions and Wicca. Ogham, an early medieval alphabet, uses linear strokes carved along edges, famously linked to Celtic folklore and druidic tree magic. Use these scripts to embellish druidic shrines, elven forests, pagan alters, or hidden messages from secret witch covens.' },
99
+ { type: 'title', text: 'Enochian & Daemonic Scripts: Arcane Angelic and Abyssal Languages', level: 2 },
100
+ { type: 'paragraph', html: 'First recorded by John Dee and Edward Kelley in the 16th century, Enochian is a detailed constructed language believed to be the tongue of angels. Daemonic scripts represent abyssal glyphs, dark pacts, and infernal markings. Elevate the narrative stakes of your campaign by leaving decipherable demonic contracts, dark cult carvings, and angelic relics for your wizards, paladins, and clerics to investigate.' },
101
+ { type: 'title', text: 'Custom Fantasy Script: Roleplay-Ready Creative Alphabets', level: 2 },
102
+ { type: 'paragraph', html: 'For worlds that go beyond real-world history, our customized Fantasy Script offers a fictional set of runes built specifically to evoke classic high-fantasy aesthetics. Every rune is designed to stand out on game master printouts, digital maps, and custom player tokens. Pair it with seed-based randomizations to make secret languages unique to different factions, nations, or ancient gods.' },
103
+ ],
104
+ faq,
105
+ bibliography,
106
+ howTo,
107
+ schemas: [
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'FAQPage',
111
+ 'mainEntity': faq.map((f) => ({
112
+ '@type': 'Question',
113
+ 'name': f.question,
114
+ 'acceptedAnswer': {
115
+ '@type': 'Answer',
116
+ 'text': f.answer,
117
+ },
118
+ })),
119
+ },
120
+ {
121
+ '@context': 'https://schema.org',
122
+ '@type': 'SoftwareApplication',
123
+ 'name': 'Fantasy Runes Translator',
124
+ 'operatingSystem': 'All',
125
+ 'applicationCategory': 'UtilitiesApplication',
126
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
127
+ },
128
+ {
129
+ '@context': 'https://schema.org',
130
+ '@type': 'HowTo',
131
+ 'name': 'How to Use the Fantasy Runes Translator',
132
+ 'step': howTo.map((h) => ({
133
+ '@type': 'HowToStep',
134
+ 'name': h.name,
135
+ 'text': h.text,
136
+ })),
137
+ },
138
+ ],
139
+ };
@@ -0,0 +1,139 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { FantasyRunesTranslatorUI } from '../entry';
4
+
5
+ const ui: FantasyRunesTranslatorUI = {
6
+ title: 'Traductor de Runas Fantásticas',
7
+ inputPlaceholder: 'Escribe una palabra o nombre para traducir...',
8
+ alphabetLabel: 'Alfabeto Rúnico',
9
+ elderFuthark: 'Futhark Antiguo',
10
+ angloSaxon: 'Anglosajón',
11
+ fantasy: 'Escritura Fantástica',
12
+ theban: 'Tebano',
13
+ enochian: 'Enoquiano',
14
+ daemonic: 'Demoníaco',
15
+ ogham: 'Ogham',
16
+ translate: 'Traducir',
17
+ clear: 'Limpiar',
18
+ copy: 'Copiar texto',
19
+ copied: '¡Copiado!',
20
+ runeName: 'Nombre',
21
+ runeMeaning: 'Significado',
22
+ runePhonetic: 'Fonética',
23
+ clickHint: 'Haz clic en una runa para ver sus detalles',
24
+ outputLabel: 'Salida rúnica',
25
+ noInput: 'Introduce texto arriba para traducirlo a runas',
26
+ unknownChar: '?',
27
+ gmMode: 'Modo DJ',
28
+ exitGmMode: 'Salir',
29
+ gmHint: 'Muestra esto a tus jugadores',
30
+ seedLabel: 'Semilla',
31
+ seedPlaceholder: 'Opcional',
32
+ seedApplied: 'Bloqueado',
33
+ shuffleSeed: 'Mezclar',
34
+ };
35
+
36
+ const faq = [
37
+ {
38
+ question: '¿Qué es el Futhark Antiguo?',
39
+ answer: 'El Futhark Antiguo es la forma más antigua de los alfabetos rúnicos, utilizado por las tribus germánicas desde el siglo II hasta el VIII. Consta de 24 runas divididas en tres grupos de ocho llamados aettir. Cada runa tiene un valor fonético y un nombre simbólico que representa conceptos naturales o mitológicos.',
40
+ },
41
+ {
42
+ question: '¿Cuál es la diferencia entre el Futhark Antiguo y las runas anglosajonas?',
43
+ answer: 'El Futhorc anglosajón es una versión extendida del Futhark Antiguo desarrollada en Inglaterra. Añade runas adicionales para representar sonidos específicos del inglés antiguo, expandiéndose de 24 a hasta 33 caracteres. Los significados y valores fonéticos también cambiaron con el tiempo.',
44
+ },
45
+ {
46
+ question: '¿Este traductor convierte las palabras perfectamente?',
47
+ answer: 'Esta herramienta proporciona una transliteración letra por letra a símbolos rúnicos. El uso histórico de las runas era fonético más que literal letra por letra, por lo que el resultado es una interpretación moderna. La opción de Escritura Fantástica ofrece un alfabeto ficticio creativo para ambientación de juegos de rol de mesa.',
48
+ },
49
+ {
50
+ question: '¿Puedo usar estas runas en mis campañas de RPG de mesa?',
51
+ answer: '¡Sí! Los directores de juego y jugadores pueden usar el traductor para crear inscripciones rúnicas, escritos mágicos, mensajes crípticos o nombres decorativos para personajes y lugares. La opción de Escritura Fantástica está diseñada específicamente para ambientaciones de fantasía.',
52
+ },
53
+ {
54
+ question: '¿Esta herramienta almacena el texto que escribo?',
55
+ answer: 'No. Todo se ejecuta localmente en tu navegador. Ningún texto, traducción o selección se envía jamás a ningún servidor. Tu trabajo creativo permanece completamente privado.',
56
+ },
57
+ {
58
+ question: '¿Qué ocurre cuando hago clic en una runa?',
59
+ answer: 'Al hacer clic en cualquier carta de runa se muestra su nombre tradicional, significado simbólico y valor fonético. Esto te ayuda a aprender las runas y elegir el símbolo adecuado para tus necesidades de juego de rol.',
60
+ },
61
+ ];
62
+
63
+ const howTo = [
64
+ {
65
+ name: 'Introducir texto',
66
+ text: 'Escribe cualquier palabra, nombre o frase en inglés en el campo de entrada. El traductor funciona mejor con palabras sueltas o frases cortas.',
67
+ },
68
+ {
69
+ name: 'Seleccionar un alfabeto',
70
+ text: 'Elige entre Futhark Antiguo (germánico antiguo), Anglosajón (inglés medieval) o Escritura Fantástica (estilo de juegos de rol de mesa).',
71
+ },
72
+ {
73
+ name: 'Traducir y explorar',
74
+ text: 'Haz clic en Traducir para convertir tu texto. Cada runa aparece como una tarjeta. Haz clic en cualquier runa para conocer su nombre, significado y sonido. Usa el botón Copiar para guardar el texto rúnico en tu portapapeles.',
75
+ },
76
+ ];
77
+
78
+ export const content: ToolLocaleContent<FantasyRunesTranslatorUI> = {
79
+ slug: 'traductor-runas-fantasticas',
80
+ title: 'Traductor de Runas Fantásticas / Conversor de Runas Futhark Antiguo, Tebano, Enoquiano y Demoníaco',
81
+ description: 'Traduce texto a Futhark Antiguo, Futhorc Anglosajón, Tebano, Enoquiano, Demoníaco, Ogham o escrituras fantásticas. Perfecto para acertijos de juegos de rol de mesa, campañas, pergaminos de mago y runas místicas.',
82
+ ui,
83
+ seo: [
84
+ { type: 'title', text: 'Alfabetos Rúnicos y Escrituras Místicas para la Creación de Mundos de Juegos de Rol', level: 2 },
85
+ { type: 'paragraph', html: 'Los alfabetos rúnicos místicos, los símbolos antiguos y las escrituras secretas aportan una inmersión incomparable a los juegos de rol de mesa fantásticos como D&D, Pathfinder y Warhammer. Ya sea creando ruinas enanas ocultas grabadas con Futhark Antiguo, diseñando un grimorio arcano con escrituras angélicas enoquianas, repartiendo pistas de brujería con el alfabeto tebano o escribiendo mensajes demoníacos prohibidos, nuestro generador de runas convierte el texto inglés estándar en símbolos estilizados en tiempo real. Despierta la curiosidad de los jugadores con accesorios físicos, cifrados misteriosos y antiguos grabados en piedra.' },
86
+ {
87
+ type: 'stats',
88
+ items: [
89
+ { value: '7', label: 'Alfabetos Rúnicos' },
90
+ { value: '150+', label: 'Variaciones de Símbolos' },
91
+ { value: 'Instantánea', label: 'Translit. Visual' },
92
+ ],
93
+ columns: 3,
94
+ },
95
+ { type: 'title', text: 'Futhark Antiguo y Futhorc Anglosajón: Runas Germánicas y Nórdicas', level: 2 },
96
+ { type: 'paragraph', html: 'Con origen en el siglo II, el Futhark Antiguo es el sistema rúnico más antiguo, compuesto por 24 caracteres que representan las fuerzas fundamentales de la naturaleza. El Futhorc anglosajón expandió este sistema para incluir hasta 33 caracteres para la fonética del inglés antiguo. Estos símbolos históricos son perfectos para representar clanes enanos, culturas inspiradas en la mitología nórdica, grabados vikingos e insignias de clanes bárbaros en tus campañas de juegos de rol.' },
97
+ { type: 'title', text: 'Tebano y Ogham: Alfabetos de Brujería Medieval y Árboles Celtas', level: 2 },
98
+ { type: 'paragraph', html: 'Conocida a menudo como las Runas de Honorio o el Alfabeto de las Brujas, la escritura tebana es un cifrado medieval históricamente popular utilizado en tradiciones ocultas y la Wicca. El Ogham, un alfabeto altomedieval, utiliza trazos lineales tallados a lo largo de bordes, famosamente vinculado al folclore celta y la magia arbórea druídica. Usa estas escrituras para adornar santuarios druídicos, bosques élficos, altares paganos o mensajes ocultos de aquelarres de brujas.' },
99
+ { type: 'title', text: 'Enoquiano y Escrituras Demoníacas: Lenguajes Angélicos y Abisales', level: 2 },
100
+ { type: 'paragraph', html: 'Registrado por primera vez por John Dee y Edward Kelley en el siglo XVI, el Enoquiano es un lenguaje construido detallado que se cree es la lengua de los ángeles. Las escrituras demoníacas representan glifos abisales, pactos oscuros y marcas infernales. Eleva las apuestas narrativas de tu campaña dejando contratos demoníacos descifrables, grabados de cultos oscuros y reliquias angélicas para que tus magos, paladines y clérigos investiguen.' },
101
+ { type: 'title', text: 'Escritura Fantástica Personalizada: Alfabetos Creativos Listos para el Juego', level: 2 },
102
+ { type: 'paragraph', html: 'Para mundos que van más allá de la historia real, nuestra Escritura Fantástica personalizada ofrece un conjunto ficticio de runas construidas específicamente para evocar la estética clásica de la alta fantasía. Cada runa está diseñada para destacar en impresiones de director de juego, mapas digitales y fichas de jugador personalizadas. Combínala con aleatorizaciones basadas en semillas para crear idiomas secretos únicos para diferentes facciones, naciones o dioses antiguos.' },
103
+ ],
104
+ faq,
105
+ bibliography,
106
+ howTo,
107
+ schemas: [
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'FAQPage',
111
+ 'mainEntity': faq.map((f) => ({
112
+ '@type': 'Question',
113
+ 'name': f.question,
114
+ 'acceptedAnswer': {
115
+ '@type': 'Answer',
116
+ 'text': f.answer,
117
+ },
118
+ })),
119
+ },
120
+ {
121
+ '@context': 'https://schema.org',
122
+ '@type': 'SoftwareApplication',
123
+ 'name': 'Traductor de Runas Fantásticas',
124
+ 'operatingSystem': 'All',
125
+ 'applicationCategory': 'UtilitiesApplication',
126
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
127
+ },
128
+ {
129
+ '@context': 'https://schema.org',
130
+ '@type': 'HowTo',
131
+ 'name': 'Cómo usar el Traductor de Runas Fantásticas',
132
+ 'step': howTo.map((h) => ({
133
+ '@type': 'HowToStep',
134
+ 'name': h.name,
135
+ 'text': h.text,
136
+ })),
137
+ },
138
+ ],
139
+ };
@@ -0,0 +1,139 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { FantasyRunesTranslatorUI } from '../entry';
4
+
5
+ const ui: FantasyRunesTranslatorUI = {
6
+ title: 'Traducteur de Runes Fantastiques',
7
+ inputPlaceholder: 'Tapez un mot ou un nom à traduire...',
8
+ alphabetLabel: 'Alphabet Runique',
9
+ elderFuthark: 'Futhark Ancien',
10
+ angloSaxon: 'Anglo-Saxon',
11
+ fantasy: 'Écriture Fantastique',
12
+ theban: 'Thébain',
13
+ enochian: 'Énochien',
14
+ daemonic: 'Démoniaque',
15
+ ogham: 'Ogham',
16
+ translate: 'Traduire',
17
+ clear: 'Effacer',
18
+ copy: 'Copier le texte',
19
+ copied: 'Copié !',
20
+ runeName: 'Nom',
21
+ runeMeaning: 'Signification',
22
+ runePhonetic: 'Phonétique',
23
+ clickHint: 'Cliquez sur une rune pour voir ses détails',
24
+ outputLabel: 'Sortie Runique',
25
+ noInput: 'Entrez du texte ci-dessus pour le traduire en runes',
26
+ unknownChar: '?',
27
+ gmMode: 'Mode MJ',
28
+ exitGmMode: 'Quitter',
29
+ gmHint: 'Affichez ceci à vos joueurs',
30
+ seedLabel: 'Graine',
31
+ seedPlaceholder: 'Optionnel',
32
+ seedApplied: 'Verrouillé',
33
+ shuffleSeed: 'Mélanger',
34
+ };
35
+
36
+ const faq = [
37
+ {
38
+ question: 'Qu\'est-ce que le Futhark Ancien ?',
39
+ answer: 'Le Futhark Ancien est la plus ancienne forme des alphabets runiques, utilisé par les tribus germaniques du IIe au VIIIe siècle. Il se compose de 24 runes divisées en trois groupes de huit appelés aettir. Chaque rune a une valeur phonétique et un nom symbolique représentant des concepts naturels ou mythologiques.',
40
+ },
41
+ {
42
+ question: 'Quelle est la différence entre le Futhark Ancien et les runes anglo-saxonnes ?',
43
+ answer: 'Le Futhorc anglo-saxon est une version étendue du Futhark Ancien développée en Angleterre. Il ajoute des runes supplémentaires pour représenter des sons spécifiques au vieil anglais, passant de 24 à jusqu\'à 33 caractères. Les significations et les valeurs phonétiques ont également évolué au fil du temps.',
44
+ },
45
+ {
46
+ question: 'Ce traducteur convertit-il les mots parfaitement ?',
47
+ answer: 'Cet outil fournit une translittération lettre par lettre en symboles runiques. L\'usage historique des runes était phonétique plutôt que littéral, lettre par lettre, le résultat est donc une interprétation moderne. L\'option Écriture Fantastique propose un alphabet fictif créatif pour l\'ambiance des jeux de rôle sur table.',
48
+ },
49
+ {
50
+ question: 'Puis-je utiliser ces runes dans mes campagnes de JDR sur table ?',
51
+ answer: 'Oui ! Les maîtres du jeu et les joueurs peuvent utiliser le traducteur pour créer des inscriptions runiques, des écrits magiques, des messages cryptiques ou des noms décoratifs pour personnages et lieux. L\'option Écriture Fantastique est spécialement conçue pour les univers de fantasy.',
52
+ },
53
+ {
54
+ question: 'Cet outil stocke-t-il le texte que je saisis ?',
55
+ answer: 'Non. Tout s\'exécute localement dans votre navigateur. Aucun texte, traduction ou sélection n\'est jamais envoyé à un serveur. Votre travail créatif reste totalement privé.',
56
+ },
57
+ {
58
+ question: 'Que se passe-t-il quand je clique sur une rune ?',
59
+ answer: 'Cliquer sur une carte rune affiche son nom traditionnel, sa signification symbolique et sa valeur phonétique. Cela vous aide à apprendre les runes et à choisir le bon symbole pour vos besoins en JDR.',
60
+ },
61
+ ];
62
+
63
+ const howTo = [
64
+ {
65
+ name: 'Entrer du texte',
66
+ text: 'Tapez un mot, un nom ou une phrase en anglais dans le champ de saisie. Le traducteur fonctionne mieux avec des mots isolés ou des phrases courtes.',
67
+ },
68
+ {
69
+ name: 'Choisir un alphabet',
70
+ text: 'Choisissez entre le Futhark Ancien (germanique ancien), l\'Anglo-Saxon (anglais médiéval) ou l\'Écriture Fantastique (style JDR sur table).',
71
+ },
72
+ {
73
+ name: 'Traduire et explorer',
74
+ text: 'Cliquez sur Traduire pour convertir votre texte. Chaque rune apparaît sous forme de carte. Cliquez sur une rune pour découvrir son nom, sa signification et son son. Utilisez le bouton Copier pour enregistrer le texte runique dans votre presse-papiers.',
75
+ },
76
+ ];
77
+
78
+ export const content: ToolLocaleContent<FantasyRunesTranslatorUI> = {
79
+ slug: 'traducteur-runes-fantastiques',
80
+ title: 'Traducteur de Runes Fantastiques / Convertisseur de Runes Futhark Ancien, Thébain, Énochien and Démoniaque',
81
+ description: 'Traduisez du texte en Futhark Ancien, Futhorc Anglo-Saxon, Thébain, Énochien, Démoniaque, Ogham ou écritures fantastiques. Parfait pour les énigmes de JDR sur table, les campagnes, les parchemins de sorcier et les runes mystiques.',
82
+ ui,
83
+ seo: [
84
+ { type: 'title', text: 'Alphabets Runiques et Écritures Mystiques pour la Construction d\'Univers de JDR', level: 2 },
85
+ { type: 'paragraph', html: 'Les alphabets runiques mystiques, les symboles anciens et les écritures secrètes apportent une immersion incomparable aux jeux de rôle sur table fantastiques comme D&D, Pathfinder et Warhammer. Que vous créiez des ruines naines cachées gravées de Futhark Ancien, que vous conceviez un grimoire arcanique contenant des écritures angéliques énochiennes, que vous disséminiez des indices de sorcière utilisant l\'alphabet thébain ou que vous rédigiez des messages démoniaques interdits, notre générateur de runes transforme le texte anglais standard en symboles stylisés en temps réel. Éveillez la curiosité des joueurs avec des accessoires physiques, des chiffrements mystérieux et des gravures sur pierre anciennes.' },
86
+ {
87
+ type: 'stats',
88
+ items: [
89
+ { value: '7', label: 'Alphabets Runiques' },
90
+ { value: '150+', label: 'Variations de Symboles' },
91
+ { value: 'Instantané', label: 'Translit. Visuelle' },
92
+ ],
93
+ columns: 3,
94
+ },
95
+ { type: 'title', text: 'Futhark Ancien & Futhorc Anglo-Saxon : Runes Germaniques et Nordiques', level: 2 },
96
+ { type: 'paragraph', html: 'Datant du IIe siècle, le Futhark Ancien est le plus ancien système runique, composé de 24 caractères représentant les forces fondamentales de la nature. Le Futhorc anglo-saxon a étendu ce système pour inclure jusqu\'à 33 caractères pour la phonétique du vieil anglais. Ces symboles historiques sont parfaits pour représenter les clans nains, les cultures inspirées de la mythologie nordique, les gravures vikings et les insignes de clans barbares dans vos campagnes de JDR.' },
97
+ { type: 'title', text: 'Thébain & Ogham : Alphabets de Sorcellerie Médiévale et Arbres Celtiques', level: 2 },
98
+ { type: 'paragraph', html: 'Souvent appelée les Runes d\'Honorius ou l\'Alphabet des Sorcières, l\'écriture thébaine est un chiffrement médiéval historiquement populaire utilisé dans les traditions occultes et la Wicca. L\'Ogham, un alphabet du haut Moyen Âge, utilise des traits linéaires gravés le long d\'arêtes, célèbre pour son lien avec le folklore celtique et la magie des arbres druidiques. Utilisez ces écritures pour embellir des sanctuaires druidiques, des forêts elfiques, des autels païens ou des messages cachés de covens de sorcières.' },
99
+ { type: 'title', text: 'Énochien & Écritures Démoniaques : Langages Angéliques et Abyssaux', level: 2 },
100
+ { type: 'paragraph', html: 'Enregistrée pour la première fois par John Dee et Edward Kelley au XVIe siècle, l\'Énochien est une langue construite détaillée considérée comme la langue des anges. Les écritures démoniaques représentent des glyphes abyssaux, des pactes sombres et des marques infernales. Élevez les enjeux narratifs de votre campagne en laissant des contrats démoniaques déchiffrables, des gravures de culte obscur et des reliques angéliques que vos mages, paladins et clercs pourront investiguer.' },
101
+ { type: 'title', text: 'Écriture Fantastique Personnalisée : Alphabets Créatifs Prêts pour le Jeu', level: 2 },
102
+ { type: 'paragraph', html: 'Pour les mondes qui dépassent l\'histoire réelle, notre Écriture Fantastique personnalisée offre un ensemble de runes fictives conçues spécifiquement pour évoquer l\'esthétique classique de la haute fantasy. Chaque rune est conçue pour se démarquer sur les impressions de maître du jeu, les cartes numériques et les pions de joueur personnalisés. Associez-la à des randomisations basées sur une graine pour créer des langues secrètes uniques à différentes factions, nations ou dieux anciens.' },
103
+ ],
104
+ faq,
105
+ bibliography,
106
+ howTo,
107
+ schemas: [
108
+ {
109
+ '@context': 'https://schema.org',
110
+ '@type': 'FAQPage',
111
+ 'mainEntity': faq.map((f) => ({
112
+ '@type': 'Question',
113
+ 'name': f.question,
114
+ 'acceptedAnswer': {
115
+ '@type': 'Answer',
116
+ 'text': f.answer,
117
+ },
118
+ })),
119
+ },
120
+ {
121
+ '@context': 'https://schema.org',
122
+ '@type': 'SoftwareApplication',
123
+ 'name': 'Traducteur de Runes Fantastiques',
124
+ 'operatingSystem': 'All',
125
+ 'applicationCategory': 'UtilitiesApplication',
126
+ 'browserRequirements': 'Requires HTML5. Requires JavaScript.',
127
+ },
128
+ {
129
+ '@context': 'https://schema.org',
130
+ '@type': 'HowTo',
131
+ 'name': 'Comment utiliser le Traducteur de Runes Fantastiques',
132
+ 'step': howTo.map((h) => ({
133
+ '@type': 'HowToStep',
134
+ 'name': h.name,
135
+ 'text': h.text,
136
+ })),
137
+ },
138
+ ],
139
+ };