Compare commits

..
16 Commits
Author SHA1 Message Date
uberwald 16b02a3221 Passe sur tout les éléments de traducton
Release Creation / build (release) Successful in 1m7s
2026-08-04 11:00:18 +02:00
uberwald 9597c2abc1 fix(i18n): complète les clés manquantes dans les fichiers de langue
- Ajoute les clés BOL.itemProperty.magicalProperties et BOL.ui.heropoints
  (manquantes dans toutes les langues, dont le FR)
- Traduit et ajoute 27 clés EN, 35 clés ES et 100 clés DE manquantes
  (chat, itemProperty, ui, featureSubtypes) en s'appuyant sur le FR
- Résultat : 0 clé référencée par le code/templates manquante dans les
  4 fichiers de langue (fr/en/es/de)
2026-08-04 10:00:51 +02:00
uberwald 048bcb566a fix(i18n): localisation des templates et des infobulles du système
- Corrige les 9 occurrences de {{localize " BOL.ui.delete"}} avec espace parasite
  dans les templates (bio, équipement, armes de véhicule)
- Localise les textes restants codés en dur : placeholders Nom, libellé Type,
  options de type de véhicule, attaque à mains nues, Bonus, Majeur (de groupe)/
  Mineur, XP, Add/Delete/Log, Action/Jets (HUD)
- Ajoute les clés BOL.ui.* manquantes (bonus, log, add, rolls, action,
  unarmedAttack, vehicleType, majorgroup, minor) et complète fr/en/es/de
  pour hullDamage, crewDamage, fireDamage, attackModifier, vehicleWeapons,
  undead
2026-08-04 09:50:44 +02:00
uberwald 6719deb8fc fix(i18n): localisation des notifications et messages d'erreur du système 2026-08-04 09:14:29 +02:00
uberwald de1fa8ba72 fix(i18n): lien du succès héroïque localisé (EN/FR) et avertissement XP traduit 2026-08-04 08:31:08 +02:00
uberwald 215a8a1a45 Sync compendiums
Release Creation / build (release) Successful in 3m4s
2026-08-03 06:41:09 +02:00
uberwald 1b24d0223a feat: publicité des modules premium en tchat quand ils ne sont pas activés 2026-08-03 06:38:54 +02:00
uberwald 33d4c26619 fix(style): lisibilité des journaux (texte sombre sur fond blanc en vue et édition) 2026-08-03 06:19:05 +02:00
uberwald cc81acce5b fix(appv2): correction sauvegarde champs description HTML
- Remplacer les balises <prose-mirror> brutes par {{formInput}}
  pour les champs HTMLField (biographie, notes, description)
- Onglets passent en basculement CSS sans re-render
- Ajout de systemFields au contexte des feuilles d'acteur
2026-07-30 21:23:25 +02:00
uberwald c56903c8e4 Fix release numbering 2026-06-14 23:22:30 +02:00
uberwald d27d580d8c Fix for Babele translation
Release Creation / build (release) Successful in 56s
2026-05-25 23:02:08 +02:00
uberwald 967383f5b3 COrrection sur icones des effets
Release Creation / build (release) Successful in 55s
2026-04-25 09:20:15 +02:00
uberwald e4cc556705 Fix beguiling boon
Release Creation / build (release) Successful in 48s
2026-04-18 17:48:30 +02:00
uberwald 405bcd7cf5 AJout d'une aide pour les macros
Release Creation / build (release) Successful in 55s
2026-04-11 21:29:40 +02:00
uberwald 846e6f88b7 AJout d'une aide pour les macros 2026-04-11 21:29:06 +02:00
uberwald 1a0f4cd3e9 Foundryv14 migration
Release Creation / build (release) Successful in 44s
2026-04-01 23:01:25 +02:00
222 changed files with 1136 additions and 1160 deletions
+1 -1
View File
@@ -59,5 +59,5 @@ jobs:
version: ${{github.event.release.tag_name}}
manifest: "https://www.uberwald.me/gitea/public/bol/releases/download/latest/system.json"
notes: "https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/bol.zip"
compatibility-minimum: "13"
compatibility-minimum: "14"
compatibility-verified: "14"
+51
View File
@@ -0,0 +1,51 @@
# BoL — FoundryVTT Game System
FoundryVTT game system for Barbarians of Lemuria (French edition, Ludospherik). System id `bol`. Compatible Foundry v13v14.
## Commands
| Command | Action |
|---------|--------|
| `npm run css` | Compile LESS → `css/bol.css` (one-shot) |
| `npm run watch` / `npm start` | Watch `styles/**/*.less`, recompile on change |
No test or lint scripts exist.
## Entry Point & Architecture
`module/bol.js` — wires everything in `Hooks.once('init', ...)` and `Hooks.once('ready', ...)`.
| Path | Role |
|------|------|
| `module/bol.js` | System init, sheet/data model registration, socket setup |
| `module/system/config.js` | `BOL` constants, `System.debugMode` flag |
| `module/system/bol-utility.js` | Static helpers, settings (`bol` namespace), socket handler (`system.bol`) |
| `module/controllers/bol-rolls.js` | All roll logic — `BoLRoll` static methods |
| `module/models/` | DataModel classes (`.mjs`) for Actor/Item types |
| `module/applications/sheets/` | **AppV2 sheets** (`ActorSheetV2`/`ItemSheetV2` + `HandlebarsApplicationMixin`) |
| `styles/` | LESS sources → compiled to `css/bol.css` |
| `templates/` | Handlebars `.hbs` partials |
| `lang/` | `fr.json`, `en.json`, `de.json`, `es.json` |
## Key Conventions
- **AppV2 sheets** — base classes are `foundry.applications.sheets.ActorSheetV2` / `ItemSheetV2` mixed with `HandlebarsApplicationMixin`. Do NOT use `foundry.appv1.sheets.*`.
- **`game.bol`** — system exposes `BoLActor`, `BoLItem`, `BoLRoll`, `BoLUtility`, `Macros`, `BOL` config, `models`, `sheets` on this namespace after init.
- **i18n prefix** — all keys start with `BOL.`; use `game.i18n.localize("BOL.xxx")`.
- **FR-first** — `fr.json` is most complete. EN compendium translation requires [Babele](https://gitlab.com/riccisi/foundryvtt-babele) module. A warning fires at startup if EN is selected without Babele.
- **`System.debugMode = true`** in `module/system/config.js:8` — set to `false` before release.
- **LESS only** — never edit `css/bol.css` directly. Edit `.less` files under `styles/`, recompile with `npm run css`.
- **Data models** — `template.json` defines schema via `Actor.types` (character, encounter, horde, vehicle) and `Item.types` (item, feature). All data lives under `.system`.
- **Sheet partials** — registered in `module/system/templates.js`. Add new partials there.
- **Static classes** — `BoLRoll` and `BoLUtility` are purely static; never instantiate.
- **`template.json.SAVED`** in root is the data model reference; the actual `template.json` may need regeneration.
- **`package.json` and lockfile are in `.gitignore`** — npm is dev-only for LESS compilation. Not needed to run the system in Foundry.
- **`{{formInput}}` for HTML fields** — always use `{{formInput fieldDef enriched=x value=y name="system.path" toggled=isEditable}}` for `HTMLField` in AppV2 sheets. Never use raw `<prose-mirror>` elements; they break form submission.
- **Tab switching** — use CSS-only toggle (no `this.render()`) to preserve ProseMirror editor state. See `base-item-sheet.mjs` pattern.
## CI & Release
- CI triggers **only on release publish** (`.gitea/workflows/main.yml`).
- Release zips: `system.json template.json README.md LICENSE assets/ compendiums/ css/ fonts/ images/ lang/ module/ packs/ styles/ templates/ ui/`.
- Version/URL manifest/download are substituted in `system.json` during CI.
- Published to Foundry package registry via `foundryvtt-publish-package-action`.
-286
View File
@@ -1,286 +0,0 @@
# Migration AppV2 - Item Sheets
## Vue d'ensemble
Migration des feuilles d'items de BoL vers l'architecture **ApplicationV2** de Foundry VTT v12+.
## Fichiers créés
### Classes AppV2 (module/applications/sheets/)
1. **base-item-sheet.mjs** - Classe de base pour tous les item sheets
- Hérite de `foundry.applications.sheets.ItemSheetV2`
- Utilise `HandlebarsApplicationMixin`
- Gère les tabs, drag & drop, actions communes
- 272 lignes de code
2. **item-sheet.mjs** - Sheet pour le type "item"
- Équipements, armes, protections, sorts, etc.
- Hérite de `BoLBaseItemSheet`
- Contexte spécifique aux items
3. **feature-sheet.mjs** - Sheet pour le type "feature"
- Boons, flaws, careers, origins, races, etc.
- Hérite de `BoLBaseItemSheet`
- Contexte spécifique aux features
4. **_module.mjs** - Export des sheets
### Templates (templates/item/)
1. **item-sheet.hbs** - Template pour les items
2. **feature-sheet.hbs** - Template pour les features
3. **parts/item-header.hbs** - Header mis à jour pour AppV2
### Backups
- `templates/item.backup/` - Backup des templates originaux
- `module/item.backup/` - Backup de l'ancienne classe ItemSheet
- `templates/item/parts/item-header.hbs.backup` - Backup du header
## Architecture AppV2
### Différences avec AppV1
| Aspect | AppV1 (avant) | AppV2 (après) |
|--------|---------------|---------------|
| Classe de base | `ItemSheet` | `ItemSheetV2` |
| Options | `static get defaultOptions()` | `static DEFAULT_OPTIONS` |
| getData | `async getData()` | `async _prepareContext()` |
| Template | Unique | Peut utiliser PARTS |
| Tabs | Automatiques | Gestion manuelle |
| Actions | Event listeners | `actions:` dans OPTIONS |
| Render | `activateListeners()` | `_onRender()` |
### Structure de BoLBaseItemSheet
```javascript
class BoLBaseItemSheet extends ItemSheetV2 {
// Options statiques
static DEFAULT_OPTIONS = {
classes, position, form, window,
actions, dragDrop, tabs
}
// State
tabGroups = { primary: "description" }
// Méthodes principales
async _prepareContext() // Prépare les données
_onRender() // Après le render
_activateTabs() // Active les tabs
_activateListeners() // Event listeners
// Actions
static #onEditImage() // data-action="editImage"
static #onPostItem() // data-action="postItem"
// Drag & Drop
#createDragDropHandlers()
_canDragStart()
_onDragStart()
}
```
## Fonctionnalités migrées
### ✅ Depuis l'ancien BoLItemSheet
1. **getData****_prepareContext**
- Enrichissement de la description
- Configuration des données dynamiques
- Gestion des catégories
- Propriétés des items
- Careers depuis l'actor
2. **Tabs**
- Navigation entre Description et Properties
- State persistant avec `tabGroups`
- Activation manuelle des tabs
3. **Actions**
- Edit Image (FilePicker)
- Post Item (chat)
4. **Listeners spécifiques**
- Armor quality → soak formula
5. **Dynamic defaults**
- Category par défaut
- Spell conditions (mandatory/optional)
- Equipment slots
## Utilisation dans les templates
### Actions (data-action)
```handlebars
{{!-- Éditer l'image --}}
<img data-action="editImage" src="{{item.img}}" />
{{!-- Poster au chat --}}
<button data-action="postItem">
<i class="fas fa-comment"></i>
</button>
```
### Tabs
```handlebars
{{!-- Navigation --}}
<nav class="tabs" data-group="primary">
{{#each tabs}}
<a data-tab="{{this.id}}" class="{{#if (eq ../activeTab this.id)}}active{{/if}}">
{{localize this.label}}
</a>
{{/each}}
</nav>
{{!-- Contenu --}}
<div class="tab {{#if (eq activeTab 'description')}}active{{/if}}"
data-tab="description">
...
</div>
```
### Editor
```handlebars
{{!-- AppV2 avec ProseMirror --}}
{{editor enrichedDescription
target="system.description"
button=true
editable=isEditable
engine="prosemirror"}}
```
## Context disponible dans les templates
```javascript
{
// Document & system
fields: schema.fields,
systemFields: system.schema.fields,
item: document,
system: document.system,
source: document.toObject(),
// Content
enrichedDescription: "HTML enrichi",
category: "equipment|weapon|spell|...",
itemProperties: ["prop1", "prop2"],
// Config
config: game.bol.config,
isGM: boolean,
isEditable: boolean,
// Tabs
tabs: [{id, label, icon}],
activeTab: "description|properties",
// Type-specific (item-sheet.mjs)
isItem: true,
isEquipment: boolean,
isWeapon: boolean,
isProtection: boolean,
isSpell: boolean,
// Type-specific (feature-sheet.mjs)
isFeature: true,
isBoon: boolean,
isFlaw: boolean,
isCareer: boolean,
isOrigin: boolean,
isRace: boolean,
// Optional
careers: actor.careers // Si item sur actor
}
```
## Configuration dans bol.js
```javascript
// Import
import * as sheets from "./applications/sheets/_module.mjs"
// Enregistrement
foundry.documents.collections.Items.unregisterSheet("core", ...)
foundry.documents.collections.Items.registerSheet("bol",
sheets.BoLItemSheet,
{ types: ["item"], makeDefault: true }
)
foundry.documents.collections.Items.registerSheet("bol",
sheets.BoLFeatureSheet,
{ types: ["feature"], makeDefault: true }
)
```
## Avantages de AppV2
1. **Performance** : Meilleur rendu et gestion des updates
2. **Structure** : Code plus organisé et maintenable
3. **Actions** : Système d'actions déclaratif
4. **Context** : Préparation des données séparée du template
5. **Standard** : Aligné sur Foundry VTT v12+
6. **Future-proof** : Architecture pérenne
## Points d'attention
### Compatibilité
- Les données restent 100% compatibles
- Seule l'interface de sheet change
- Pas de migration de données nécessaire
### Tabs
Les tabs ne sont plus automatiques dans AppV2 :
- Navigation manuelle avec `_activateTabs()`
- State persistant avec `tabGroups`
- CSS `.active` géré manuellement
### Editor
ProseMirror est maintenant le moteur par défaut :
```handlebars
{{editor content engine="prosemirror"}}
```
### Actions
Système déclaratif :
```javascript
actions: {
myAction: ClassName.#onMyAction
}
```
Dans le template :
```handlebars
<button data-action="myAction">Click</button>
```
## Prochaines étapes
### Court terme
1. Tester les sheets dans Foundry
2. Vérifier toutes les fonctionnalités
3. Ajuster les CSS si nécessaire
### Moyen terme
4. Migrer les actor sheets vers AppV2
5. Ajouter des features AppV2 (parts, etc.)
6. Optimiser les templates
### Long terme
7. Utiliser PARTS pour modularité
8. Ajouter des actions avancées
9. Améliorer la UX
## Références
- [Foundry AppV2 Documentation](https://foundryvtt.com/api/classes/foundry.applications.api.ApplicationV2.html)
- [ItemSheetV2 API](https://foundryvtt.com/api/classes/foundry.applications.sheets.ItemSheetV2.html)
- Exemples : fvtt-cthulhu-eternal, fvtt-mournblade
Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 517 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

+63
View File
@@ -0,0 +1,63 @@
{
"label": "Game Aid",
"mapping": {
"name": "name",
"description": "content",
"categories": {
"path": "categories",
"converter": "nameCollection"
},
"pages": {
"path": "pages",
"converter": "pages"
}
},
"entries": {
"Aide du Jeu": "Game Aid",
"8ihDiCxC47fcdKVA": {
"name": "Game Aid",
"pages": {
"8agBoLYo99u530d1": {
"name": "Credits",
"text": "<p>This system was started by Zigmund, then taken over, completed and maintained by LeRatierBretonnien.</p><p>You can contact me on the French Foundry Discord: LeRatierBretonnien#2065</p><p>The git repository is available here: <a href=\"https://www.uberwald.me/gitea/public/bol\">https://www.uberwald.me/gitea/public/bol</a></p><p>Barbarians of Lemuria is a game by Simon Washbourne (Beyond Belief Games), translated into French by Ludospherik.</p><p>The full range is available on this page: <a href=\"http://www.ludospherik.fr/content/14-barbarians-of-lemuria\">http://www.ludospherik.fr/content/14-barbarians-of-lemuria</a></p><img src=\"systems/bol/assets/pages/b9BjVFaWB6uyyKsD-pages-8agBoLYo99u530d1-image-Rg2nVaMlglfJ6Qcm.png\" />"
},
"NAcpMm6NlyhwvWRA": {
"name": "Features",
"text": "<p>The BoL system under Foundry allows you to:</p><ul><li><p>create characters and NPCs (minions, toughs, rivals),</p></li><li><p>create creatures,</p></li><li><p>make dice rolls for attributes, aptitudes, and careers,</p></li><li><p>make dice rolls for combat attacks,</p></li><li><p>manage initiative,</p></li><li><p>make dice rolls to cast spells or perform alchemical recipes,</p></li><li><p>manage damage and lifeblood loss,</p></li><li><p>display and manage automations in chat windows, with assistance for the use of Hero Points and critical successes.</p></li></ul>"
},
"hdQixhZGfAytdbSg": {
"name": "Compendiums",
"text": "<p>The system comes with a series of compendiums providing quick access to careers, boons, and equipment.</p><p>The official cards are available, with the kind permission of Ludospherik.</p><p>To use content from a compendium, simply drag and drop the item into the world. For example: open the armours compendium, select <em>Light Armour</em>, and drag it onto a character sheet.</p><img src=\"systems/bol/assets/pages/help-en-compendium.png\" />"
},
"UfvTY80U49k6YFwe": {
"name": "Dice Rolls (Attributes/Aptitudes)",
"text": "<p>When a player clicks an attribute or aptitude, the following window appears:</p><img src=\"systems/bol/assets/pages/help-en-attribute-dialog.png\" /><ol><li><p>Attribute the player clicked on. It can be changed with this drop-down menu.</p></li><li><p>Career to apply if needed. Left-click to select, CTRL+left-click to deselect. When selected, the career rank is applied.</p></li><li><p>Available boons (i.e. those that grant a bonus die). Selection mode is identical to careers. When selected, the bonus die is applied to the roll.</p></li><li><p>Available flaws (i.e. those that impose a penalty die). Selection mode is identical to careers. When selected, the penalty die is applied to the roll.</p></li><li><p>Effects. Effects are permanent modifiers that affect certain rolls. See the corresponding chapter.</p></li><li><p>Manual addition of penalty or bonus dice.</p></li><li><p>Manual modifiers, according to the GM's ruling.</p></li><li><p>Reminder of the number of dice, based on the choices made in the dialog.</p></li><li><p>Complete list of modifiers applied to the roll.</p></li></ol>"
},
"4CLyyt3dtpG6YNMi": {
"name": "Dice Rolls (Weapon)",
"text": "<p>To make an attack with a weapon, go to the <strong>Actions</strong> tab and click the weapon's name. Targeting an opponent is recommended in order to take advantage of the system automations.</p><img src=\"systems/bol/assets/pages/help-en-weapon-dialog.png\" /><ol><li><p>Default weapon attribute. It can be changed with this drop-down menu.</p></li><li><p>Default weapon aptitude. It can be changed with this drop-down menu.</p></li><li><p>Possible weapon bonus on the attack roll.</p></li><li><p>Target defence, when an opponent is targeted.</p></li><li><p>Career to apply if needed. Left-click to select, CTRL+left-click to deselect. When selected, the career rank is applied.</p></li><li><p>Available boons (i.e. those that grant a bonus die). Selection mode is identical to careers. When selected, the bonus die is applied to the roll.</p></li><li><p>Available flaws (i.e. those that impose a penalty die). Selection mode is identical to careers. When selected, the penalty die is applied to the roll.</p></li><li><p>Effects. Effects are permanent modifiers that affect certain rolls. See the corresponding chapter.</p></li><li><p>Manual addition of penalty or bonus dice.</p></li><li><p>Information area if the weapon has the <em>Bonus Die</em> option enabled.</p></li><li><p>Agility penalty from armour and shield.</p></li><li><p>Manual modifiers, according to the GM's ruling.</p></li><li><p>Reminder of the number of dice, based on the choices made in the dialog.</p></li><li><p>Complete list of modifiers applied to the roll.</p></li></ol>"
},
"r003R5yIaiKxThOc": {
"name": "Character Sheet",
"text": "<h2>Attributes</h2><img src=\"systems/bol/assets/pages/help-en-sheet-attributes.png\" /><ol><li><p>Name + Experience area.</p></li><li><p>Tab bar for moving between sections.</p></li><li><p>Attributes area. Clicking a name opens the roll dialog, clicking a number allows editing.</p></li><li><p>Aptitudes area, same idea as attributes.</p></li><li><p>Counters area. The red value is the current one, the black value underneath is the maximum.</p></li></ol><h2>Actions</h2><img src=\"systems/bol/assets/pages/help-en-sheet-actions.png\" /><ol><li><p>Weapons. Clicking the name opens the attack dialog for that weapon.</p></li><li><p>Damage. Clicking the damage formula rolls it.</p></li><li><p>List of protections.</p></li><li><p>Clicking the protection formula rolls it.</p></li><li><p>List of shields.</p></li><li><p>Combat options the character knows. Once activated, they appear in the weapon attack dialog.</p></li></ol><h2>Traits</h2><img src=\"systems/bol/assets/pages/help-en-sheet-traits.png\" /><ol><li><p>List of careers. Left-click a career for details.</p></li><li><p>Career rank helper.</p></li><li><p>List of origins. Left-click for details.</p></li><li><p>List of boons. Left-click for details.</p></li><li><p>List of flaws. Left-click for details.</p></li><li><p>List of spoken languages. Left-click for details.</p></li><li><p>List of known combat options. Left-click for details.</p></li><li><p>List of beliefs. Left-click for details.</p></li><li><p>List of active effects. Left-click for details.</p></li></ol><h2>Equipment</h2><img src=\"systems/bol/assets/pages/help-en-sheet-equipment.png\" /><ol><li><p>Quick equipment creation controls.</p></li><li><p>Purse state (optional rule, system setting).</p></li><li><p>Weapons, with quantity management.</p></li><li><p>Shield equip / unequip control.</p></li><li><p>List of protections.</p></li><li><p>Armour equip / unequip control.</p></li></ol><h2>Spells &amp; Alchemy</h2><p>This tab is only available if the character has the Alchemist or Sorcerer career.</p><img src=\"systems/bol/assets/pages/help-en-sheet-spells.png\" /><ol><li><p>List of spells. Left-click the name to open the dedicated roll dialog.</p></li><li><p>Reminder of circle and difficulty.</p></li><li><p>The square button opens the spell details.</p></li><li><p>List of known alchemical preparations.</p></li><li><p>Crafting progress management.</p></li><li><p>The square button opens the preparation details.</p></li></ol><h2>Description</h2><img src=\"systems/bol/assets/pages/help-en-sheet-description.png\" /><p>The description area contains free-form fields for customising the character.</p>"
},
"eRbEqbCW4AhU0cpm": {
"name": "Effects",
"text": "<p>Effects allow permanent modifiers to be applied as long as they are present on the character sheet.</p><p><span style=\"text-decoration:underline\"><span style=\"text-decoration:underline\">Example</span></span>: a character is poisoned, and the poison causes mental fatigue. In game terms, they suffer a -2 penalty to all Mind rolls. To represent this, create an <em>Effect</em> like this:</p><img src=\"systems/bol/assets/pages/help-en-effect-sheet.png\" /><ol><li><p>Create a <em>Trait</em>, and in the <em>Details</em> tab select the subtype <em>Effect</em>.</p></li><li><p>Select <em>Mind</em>.</p></li><li><p>Set a -2 modifier.</p></li></ol><p>Once placed on a character, the penalty is automatically applied whenever a Mind roll is requested. Remove the effect from the character sheet (<em>Traits</em> tab) to remove both the effect and its penalty.<br />A compendium of basic effects is available in the system.</p>"
},
"QmNF6p0lJf3pJoAy": {
"name": "Commands",
"text": "<p>The system provides commands (currently just one) for a few automated tasks.</p><p><strong><span style=\"text-decoration:underline\">This command is only available if the BoL-rulebook module is installed.</span></strong></p><h3>/adventure command</h3><img src=\"systems/bol/assets/pages/help-en-command.png\" /><ol><li><p>Type <code>/adventure</code> in the chat input area (or trigger it from a macro).</p></li><li><p>The system generates an adventure from the core rulebook tables and posts the result in chat.</p></li></ol>"
},
"MOWru5Dbvs4iozXm": {
"name": "Macros",
"text": "<p>The system exposes macros through <code>game.bol.macros</code>. They provide quick access to the most common rolls from a Foundry macro.</p><p><strong>Automatic actor selection:</strong></p><ul><li><p>if exactly one token is selected, the macro uses it;</p></li><li><p>if several tokens are selected, the macro shows a warning;</p></li><li><p>if no token is selected, a GM must select one; a player automatically falls back to their assigned character.</p></li></ul><p><strong>Available rolls</strong></p><p>Attributes (internal keys):</p><pre><code>game.bol.macros.rollAttribute(\"vigor\")\ngame.bol.macros.rollAttribute(\"agility\")\ngame.bol.macros.rollAttribute(\"mind\")\ngame.bol.macros.rollAttribute(\"appeal\")</code></pre><p>Aptitudes:</p><pre><code>game.bol.macros.rollAptitude(\"init\")\ngame.bol.macros.rollAptitude(\"melee\")\ngame.bol.macros.rollAptitude(\"ranged\")\ngame.bol.macros.rollAptitude(\"def\")</code></pre><p>Weapons, spells, and alchemy:</p><pre><code>game.bol.macros.rollWeapon(\"Spear\")\ngame.bol.macros.rollWeapon(0)\n\ngame.bol.macros.rollSpell(\"Javelin\")\ngame.bol.macros.rollSpell(0)\n\ngame.bol.macros.rollAlchemy(\"Fire\")\ngame.bol.macros.rollAlchemy(0)</code></pre><p>For weapons, spells, and alchemical preparations, name lookup is <strong>partial</strong> and <strong>case-insensitive</strong>. You may also use a numeric index.</p><p>Horoscope:</p><pre><code>game.bol.macros.rollHoroscope(\"minor\")\ngame.bol.macros.rollHoroscope(\"major\")</code></pre><p><strong>Generic macro</strong></p><pre><code>game.bol.macros.roll(\"attribute\", \"vigor\")\ngame.bol.macros.roll(\"aptitude\", \"melee\")\ngame.bol.macros.roll(\"weapon\", \"Spear\")\ngame.bol.macros.roll(\"spell\", \"Javelin\")\ngame.bol.macros.roll(\"alchemy\", 0)\ngame.bol.macros.roll(\"horoscope\", \"minor\")</code></pre><p><strong>Compatibility</strong></p><p>The legacy entry point <code>game.bol.macros.rollMacro(type, key)</code> is still available for existing macros.</p>"
},
"rERizrPxSAsvsZY2": {
"name": "Initiative",
"text": "<p>In BoL, initiative is rolled once at the start of combat.</p><p>You can request it automatically through the Combat Tracker, or roll Initiative manually and tick the corresponding box in the dialog:</p><img src=\"systems/bol/assets/pages/help-en-initiative-dialog.png\" /><p>According to the roll result, an initiative rank from 10 to 3 is assigned as follows:</p><p><strong>10</strong> - PC: Legendary Success<br /><strong>9</strong> - PC: Heroic Success<br /><strong>8</strong> - PC: Normal Success<br /><strong>7</strong> - NPC: Opponents or creatures larger than medium size<br /><strong>6</strong> - NPC: Toughs or creatures of medium size or smaller<br /><strong>5</strong> - PC: Normal Failure<br /><strong>4</strong> - NPC: Minions<br /><strong>3</strong> - PC: Critical Failure</p>"
}
}
}
}
}
+4
View File
@@ -96,6 +96,10 @@
"name": "Plains-Born",
"description": "<h1>Plains-Born</h1><p>You grew up on the plains. When tracking, trapping, hunting, or carrying out other similar activities (not fighting) in a plains environment, you receive a bonus die.</p>"
},
"Envoûtant": {
"name": "Beguiling",
"description": "<h1>Beguiling</h1><p> Your looks and bearing are such that people who might be attracted to your type are enchanted by you. Once per day you may suggest a course of action to a number of rabble equal to appeal + d6, who will do their best to please you, even if it potentially puts them in danger.</p><p>You must have the temptress career to take this boon.</p>"
},
"Fortuné": {
"name": "Great Wealth",
"description": "<h1>Great Wealth</h1><p>You have a source of income or an inheritance. Roll a bonus die on any attempt to obtain any goods, services, or other items you need whilst in your home city.</p>"
+24
View File
@@ -5,6 +5,30 @@
},
"entries": {
"Arc de guerre de Tyrus": {
"name": "Tyrus Warbow",
"description": "<h1>Tyrus Warbow</h1><p> The archers of Tyrus train from a very young age in the use of this powerful bow. Tyrus archers have fun with other warriors by lending their bows to them and then watching them struggle to aim at the proverbial “barn door”.</p>"
},
"Épée Valgardienne (1 Main)": {
"name": "Valgardian Blade (1H)",
"description": "<h1>Valgardian Blade (1H)</h1><p>Around 3-4 in length, the Valgardian blade is used either in one hand or in both. The Valgardian bladesmiths guard the secret of their work closely, although many have tried to copy it. It is rumoured that the strength of the blades due mainly to the quality of the iron mined locally.</p>"
},
"Épée Valgardienne (2 mains)": {
"name": "Valgardian Blade (2H)",
"description": "<h1>Valgardian Blade (2H)</h1><p>Around 3-4 in length, the Valgardian blade is used either in one hand or in both. The Valgardian bladesmiths guard the secret of their work closely, although many have tried to copy it. It is rumoured that the strength of the blades due mainly to the quality of the iron mined locally.</p>"
},
"Fronde de lAxos": {
"name": "Axish Sling",
"description": "<h1>Axish Sling</h1><p>Sling: The sling is inexpensive and easy to build. It is a simple leather thong whirled around the head to cast small stones or cast lead bullets with some force, at 30 range increments. Two-handed versions are fitted onto a staff and are called staff-slings. This imparts a greater range, making the increments 60. The Axish sling is actually little different to any other common sling; its just that the people of the Axos mountains are particularly proficient with them. They have however played up the idea that there is some special plant fibre that the thongs are made from that gives them their extra range.</p>"
},
"Hache dabordage de Parsool (1 main)": {
"name": "Parsool Sea Axe (1H)",
"description": "<h1>Parsool Sea Axe (1H)</h1><p>A boarding axe used by Parsool seamen which can be used one or two-handed.</p>"
},
"Hache dabordage de Parsool (2 mains)": {
"name": "Parsool Sea Axe (2H)",
"description": "<h1>Parsool Sea Axe (2H)</h1><p>A boarding axe used by Parsool seamen which can be used one or two-handed.</p>"
},
"Arbalète": {
"name": "Crossbow",
"description": "<h1>Crossbow</h1><p>A crossbow is a simple device for firing a short bolt or quarrel with some force and little training. They take a round to load (ready to fire on the second round).</p>"
+25 -11
View File
@@ -1512,6 +1512,21 @@ h2.bad {
.bol-welcome-card .welcome-body a {
color: darkred;
}
.bol-welcome-card .welcome-body .welcome-premium {
margin-top: 6px;
padding: 6px 10px;
font-size: 0.8rem;
color: #191813;
background: linear-gradient(135deg, #fdf7e6, #f6e8c8);
border: 1px solid #c9a227;
border-left: 4px solid #c9a227;
border-radius: 3px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.bol-welcome-card .welcome-body .welcome-premium a {
color: #7a5c00;
font-weight: bold;
}
.bol-welcome-card .welcome-footer {
margin-top: 8px;
padding: 4px 10px;
@@ -1522,15 +1537,6 @@ h2.bad {
border-radius: 4px;
letter-spacing: 0.5px;
}
.bol-welcome-card .welcome-warning {
margin-top: 6px;
padding: 4px 8px;
font-size: 0.8rem;
color: #7a0000;
background: #fff3f3;
border: 1px solid #e57373;
border-radius: 3px;
}
/* Component Styles */
/* ----------------------------------------- */
/* Common Sheet Styles */
@@ -1538,8 +1544,16 @@ h2.bad {
body.system-bol img#logo {
content: url("/systems/bol/ui/logo2.webp");
}
.journal-page-content {
/* Reserved for future use */
.journal-page-content,
.journal-page-content p,
.journal-page-content div,
.journal-page-content span {
color: #191813 !important;
}
.sheet.journal-entry prose-mirror.journal-page-content,
prose-mirror.journal-page-content {
background-color: white;
background: white;
}
.bol.dialog > section.window-content {
background: white;
+142 -1
View File
@@ -55,6 +55,16 @@
"BOL.ui.equip": "Anlegen",
"BOL.ui.delete": "Löschen",
"BOL.ui.roll" : "Würfeln",
"BOL.ui.bonus": "Bonus",
"BOL.ui.log": "Protokoll",
"BOL.ui.add": "Hinzufügen",
"BOL.ui.rolls": "Würfe",
"BOL.ui.action": "Aktion",
"BOL.ui.unarmedAttack": "Unbewaffneter Angriff",
"BOL.ui.vehicleType.boat": "Schiff",
"BOL.ui.vehicleType.flyingboat": "Flugschiff",
"BOL.ui.vehicleType.chariot": "Streitwagen/Karre",
"BOL.ui.vehicleType.other": "Anderes",
"BOL.ui.equipment" : "Ausrüstung",
"BOL.ui.equipmentProperties" : "Ausrüstungseigenschaften",
"BOL.ui.weaponAttack" : "Waffenangriff",
@@ -156,6 +166,15 @@
"BOL.ui.armorAgiMalus": "Rüschtung+Schild-Malus (Geschick)",
"BOL.ui.armorInitMalus": "Rüstungsmalus (Init)",
"BOL.ui.attackValue": "Angriffswert",
"BOL.ui.attackModifier": "Angriffsmodifikator",
"BOL.ui.vehicleWeapons": "Fahrzeugwaffen",
"BOL.ui.hullDamage": "Rumpfschaden",
"BOL.ui.crewDamage": "Besatzungsschaden",
"BOL.ui.fireDamage": "Feuer ?",
"BOL.ui.undead": "Untot",
"BOL.ui.minor": "Gering",
"BOL.ui.major": "Groß",
"BOL.ui.majorgroup": "Große Gruppe",
"BOL.ui.initMalus": "Init malus",
"BOL.ui.createEquipment": "Create Equipment",
@@ -175,6 +194,9 @@
"BOL.featureSubtypes.language": "Sprache",
"BOL.featureSubtypes.gods": "Glauben & Götter",
"BOL.featureSubtypes.fightOption": "Kampfoption",
"BOL.featureSubtypes.effect": "Effekt",
"BOL.featureSubtypes.horoscope": "Horoskop",
"BOL.featureSubtypes.xplog": "XP-Protokoll",
"BOL.bougette.nomoney": "Mittellos",
"BOL.bougette.tolive": "Zum Überleben",
@@ -291,6 +313,17 @@
"BOL.itemProperty.natural": "Natürliche Waffe",
"BOL.itemProperty.onlymodifier": "Nur Modifikator (d.h. Angriffe von Kreaturen)",
"BOL.itemProperty.attackMalusDice": "Angriffsmalus (Würfel)",
"BOL.itemProperty.crewDamageMultiplier": "Multiplikator",
"BOL.itemProperty.crewdamage": "Schadenswert für die Besatzung",
"BOL.itemProperty.hullDamageMultiplier": "Multiplikator",
"BOL.itemProperty.hulldamage": "Schadenswert für den Rumpf",
"BOL.itemProperty.isboarding": "Entern",
"BOL.itemProperty.isbreakrow": "Ruder brechen",
"BOL.itemProperty.iscrewdamage": "Besatzungsschaden",
"BOL.itemProperty.isfiredamage": "Feuerschaden",
"BOL.itemProperty.ishulldamage": "Rumpfschaden",
"BOL.itemProperty.isspur": "Rammstoß",
"BOL.itemProperty.vehicleDamageType": "Fahrzeugschadenstyp",
"BOL.itemStat.quantity": "Anzahl",
"BOL.itemStat.weight": "Gewicht",
@@ -379,6 +412,23 @@
"BOL.notification.MacroMultipleTokensSelected": "Du hast mehrere Token ausgewählt",
"BOL.notification.MacroNoActorAvailable": "Es konnte kein Akteur gefunden werden",
"BOL.notification.MacroNoTokenSelected": "Du musst einen Token auswählen",
"BOL.notification.MacroNoItemFound": "{actor} : kein(e) {type} gefunden.",
"BOL.notification.MacroSpecifyNameOrIndex": "Geben Sie einen Namen oder einen Index an : {names}",
"BOL.notification.MacroBadIndex": "{actor} : Index {index} für {type} ungültig.",
"BOL.notification.MacroItemNotFound": "{actor} : {type} \"{name}\" nicht gefunden.",
"BOL.notification.MacroUnknownAttribute": "Unbekanntes Attribut : \"{key}\". Werte : vigor, agility, mind, appeal",
"BOL.notification.MacroUnknownAptitude": "Unbekannte Fertigkeit : \"{key}\". Werte : init, melee, ranged, def",
"BOL.notification.MacroUnknownRollType": "Unbekannter Wurftyp : \"{type}\". Gültige Typen : attribute, aptitude, weapon, spell, alchemy, horoscope",
"BOL.notification.MacroNoPower": "Nicht genug Kraftpunkte !",
"BOL.notification.FullDefense": "{actor} ist in voller Verteidigung ! Er kann in dieser Runde nicht angreifen.",
"BOL.notification.WeaponNotFound": "Waffe nicht gefunden !",
"BOL.notification.AlchemyNotFound": "Alchemie nicht gefunden !",
"BOL.notification.SpellNotFound": "Diesen Zauber nicht gefunden !",
"BOL.notification.NotEnoughCreationPrep": "Nicht genug Schöpfungspunkte in die Vorbereitung investiert !",
"BOL.notification.NoPower": "Nicht genug Kraftpunkte !",
"BOL.notification.AttackNotFound": "Der entsprechende Angriff wurde nicht gefunden, Fehler bei der Kampfverfolgung.",
"BOL.notification.NoBirthHour": "{actor} hat keine Geburtsstunde, oder sie ist falsch : {hour}",
"BOL.notification.BadBirthHour": "{hour} entspricht keiner Geburtsstunde",
"BOL.size.tiny": "Winzig",
"BOL.size.verysmall": "Sehr klein",
@@ -462,6 +512,54 @@
"BOL.ui.biosigns": "Erkennungszeichen",
"BOL.ui.biodescription": "Beschreibung",
"BOL.ui.bionotes": "Notizen",
"BOL.ui.aggressive": "Aggressiver Zauber?",
"BOL.ui.armornoformula": "Die Rüstung {protect.name} hat keine Formel für den Schutz!",
"BOL.ui.astrologerRank": "Rang des Astrologen",
"BOL.ui.astrology": "Astrologie und Horoskope",
"BOL.ui.astrologyMajor": "Großes Horoskop erstellen",
"BOL.ui.astrologyMajorGroup": "Großes Gruppen-Horoskop erstellen",
"BOL.ui.astrologyMinor": "Kleines Horoskop erstellen",
"BOL.ui.astrologyNoPoints": "Du hast nicht genug Astrologiepunkte!",
"BOL.ui.attributaptitude": "Attribut oder Fertigkeit",
"BOL.ui.boleffects": "Effekte (automatisch)",
"BOL.ui.confirmdelete": "Bist du sicher, dass du diesen Gegenstand löschen willst?",
"BOL.ui.cost": "XP-Kosten",
"BOL.ui.createNaturalProtection": "Natürlichen Schutz erstellen",
"BOL.ui.createNaturalWeapon": "Natürliche Waffe erstellen",
"BOL.ui.creature": "Kreatur",
"BOL.ui.daemon": "Dämon",
"BOL.ui.date": "Datum",
"BOL.ui.deletetitle": "Löschung",
"BOL.ui.effects": "Aktive Effekte",
"BOL.ui.heropoints": "Helden-/Bösewicht-Punkte",
"BOL.ui.hordeAttack": "Hordenangriff",
"BOL.ui.hordeHP": "Vitalität (1 Mitglied)",
"BOL.ui.hordeSize": "Hordengröße",
"BOL.ui.hordehp": "Vitalität (gesamt)",
"BOL.ui.horoscopeCost": "Kosten in Astrologiepunkten",
"BOL.ui.horoscopeDiceMax": "Maximale Würfel",
"BOL.ui.horoscopeDiceRemaining": "Verbleibende Würfel",
"BOL.ui.horoscopeGroup": "Gruppen-Horoskope",
"BOL.ui.isAstrologer": "Astrologenkarriere?",
"BOL.ui.isspecial": "Speziell?",
"BOL.ui.itemnotfound": "Das Objekt dieser Makro konnte nicht gefunden werden",
"BOL.ui.magicnewrules": "Zusätzliche Regeln (vgl. Fan-Zusatz Zauberei!)",
"BOL.ui.makeHoroscope": "Horoskop erstellen",
"BOL.ui.modifier": "Modifikator",
"BOL.ui.newEquipment": "Neue Ausrüstung",
"BOL.ui.newNaturalProtection": "Natürlicher Schutz",
"BOL.ui.newNaturalWeapon": "Natürliche Waffe",
"BOL.ui.nomorealchemypoints": "Nicht genug Schöpfungspunkte!",
"BOL.ui.notenoughxp": "Nicht genug Erfahrungspunkte!",
"BOL.ui.pclistbutton": "Kompakte Ansicht",
"BOL.ui.rabble": "Meute",
"BOL.ui.selectactor": "Wähle deinen Charakter aus, um die Makro zu verwenden",
"BOL.ui.tough": "Zäh",
"BOL.ui.value": "Wert",
"BOL.ui.villain": "Rivale",
"BOL.ui.warninitiative": "Deine Initiative ist nicht verfügbar. Führe für diesen Kampf einen Initiative-Wurf aus.",
"BOL.ui.weaponbonus": "Diese Waffe hat bereits einen Bonuswürfel (z. B. Lieblingswaffe berücksichtigt)",
"BOL.ui.xplog": "XP-Protokoll",
"BOL.chat.welcome1": "Willkommen zu Barbarians of Lemuria (französische Ludospherik-Version, deutsche Übersetzung von Truant Spiele)",
"BOL.chat.welcome2": "Zum Spielen werden zwingend die passenden BoL Bücher benötigt. Die französischen Originalbücher für dieses System gibt es hier: http://www.ludospherik.fr/content/14-barbarians-of-lemuria<br>Die deutsche Übersetzung gibt es bei Truant Spiele: https://truant.com/produkt/barbarians-of-lemuria-2",
@@ -469,7 +567,50 @@
"BOL.chat.welcome4": "Im Discord findet ihr Support für die FoundryVTT-Implementierung dieses Systems: https://discord.gg/pPSDNJk",
"BOL.chat.welcome5": "Auf ein gutes Spiel in Lemuria!",
"BOL.chat.welcome6": "",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
"BOL.chat.msgonlygm": "Nachricht nur für den GM",
"BOL.chat.babelewarning": "⚠ WARNUNG ! Englisch ist ausgewählt, aber das Babele-Modul ist nicht installiert !<br>Bitte installieren Sie babele über den Modul-Reiter in der Foundry-Oberfläche.",
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.chat.applyrecup": "Einige Minuten ausruhen (+{recupHP} Vitalität)",
"BOL.chat.armorRoll": "Rüstungswurf ",
"BOL.chat.bougettefailure": "Du hast zu viel ausgegeben, dein Budget hat sich verringert...",
"BOL.chat.bougettesuccess": "Dein Budget bleibt unverändert!",
"BOL.chat.criticalbuttonjournal": "Heroischer/Legendärer Erfolg",
"BOL.chat.criticalinfo": "Das ist ein heroischer Erfolg! Wähle deine Optionen und Effekte!",
"BOL.chat.criticallegendaryinfo": "Das ist ein legendärer Erfolg! Wähle deine Optionen und Effekte!",
"BOL.chat.damageresume": "{name} hat Verletzungen erlitten ...",
"BOL.chat.defenseReduceDamage2": "Du kannst außerdem 1 Helden-/Bösewicht-Punkt ausgeben, um [[/r 2d6KH(1D6B)]] Vitalitätspunkte zurückzugewinnen; das kostet dich deine nächste Aktion.",
"BOL.chat.fumblemessage": "Wenn du die Konsequenzen eines katastrophalen Fehlschlags akzeptierst (Wahl des Spielleiters), erhältst du 1 zusätzlichen Heldenpunkt",
"BOL.chat.heroicreminder": "Zusätzlich zu den Aktionen der Schaltflächen unten kannst du: <ul><li>Gemetzel: Greife denselben Gegner ein zweites Mal an</li><li>Präziser Schlag: Ein Maluswürfel für deinen Gegner auf eine gewählte Lokalisation</li><li>Entwaffnung</li><li>Massaker an der Meute</li><li>Umwerfen: Wirf deinen Gegner um (max. 1 Größe mehr)</li></ul>Wenn du zusätzlich einen Heldenpunkt ausgibst, können all diese Effekte verdoppelt werden",
"BOL.chat.horoscope": "Horoskop",
"BOL.chat.horoscopedeleted": "Das/die verwendete(n) Horoskop(e) wurde(n) automatisch entfernt.",
"BOL.chat.horoscopemajorfailure": "Dein großes Horoskop ist ein Fehlschlag: {horoscopeName} verliert für dieses Abenteuer 1 Heldenpunkt. Dieser Punkt wurde automatisch abgezogen.",
"BOL.chat.horoscopemajorgroupfailure": "Dein großes Gruppen-Horoskop ist ein Fehlschlag. Du und deine Freunde erleiden für dieses Abenteuer {careerBonus} Maluswürfel.",
"BOL.chat.horoscopemajorgroupsuccess": "Dein großes Gruppen-Horoskop ist ein Erfolg. Du und deine Freunde erhalten für dieses Abenteuer {careerBonus} Bonuswürfel.",
"BOL.chat.horoscopemajorsuccess": "Dein großes Horoskop ist ein Erfolg: {horoscopeName} erhält für dieses Abenteuer 1 zusätzlichen Heldenpunkt. Dieser Punkt wurde automatisch hinzugefügt.",
"BOL.chat.horoscopeminorfailure": "Dein kleines Horoskop ist ein Fehlschlag: Bearbeite den Namen des Horoskops auf deinem Blatt. Du erleidest für diese Situation 1 Maluswürfel.",
"BOL.chat.horoscopeminorsuccess": "Dein kleines Horoskop ist ein Erfolg: Bearbeite den Namen des Horoskops auf deinem Blatt. Du erhältst für diese Situation 1 Bonuswürfel.",
"BOL.chat.horoscopepoints": "Kosten: {points} Astrologiepunkte",
"BOL.chat.initiative": "Initiative-Rang (10 bis 1)",
"BOL.chat.legendaryreminder": "Zusätzlich zu den Aktionen der Schaltflächen unten kannst du 2 Aktionen ausführen: <ul><li>Gemetzel: Greife denselben Gegner ein zweites Mal an</li><li>Präziser Schlag: Ein Maluswürfel für deinen Gegner auf eine gewählte Lokalisation</li><li>Entwaffnung</li><li>Massaker an der Meute</li><li>Umwerfen: Wirf deinen Gegner um (max. 1 Größe mehr)</li></ul>",
"BOL.chat.losshp": "{name} hat {lossHP} Vitalitätspunkte verloren. Wenn er sich ein paar Minuten ausruht, kann er {recupHP} Vitalitätspunkte zurückgewinnen.",
"BOL.chat.nodamage": "Keinen Schaden anwenden",
"BOL.chat.nodamagesummary": "Es wurde kein Schaden erlitten ....",
"BOL.chat.pcnotlinked": "Das Token des Spielercharakters ist nicht mit dem Actor verknüpft",
"BOL.chat.pcnotlinkedmsg": "<b>ACHTUNG</b> Das Token des Spielercharakters ist nicht mit dem Actor verknüpft!",
"BOL.chat.pcwarning": "Achtung! Kein Charakter ist mit dem Spieler verknüpft!",
"BOL.chat.pcwarningmsg": "<b>ACHTUNG</b> Der Spieler ist mit keinem Charakter verknüpft!",
"BOL.chat.rangeinfo": "Wurf von {attackerName} auf {defenderName}",
"BOL.chat.rangenotvisible": "Die Sichtlinie zwischen den Beteiligten ist blockiert.",
"BOL.chat.rangeprefix": "Geschätzte Entfernung: ",
"BOL.chat.rangetitle": "SL-Information",
"BOL.chat.rangevisible": "Die Sichtlinie zwischen den Beteiligten ist frei.",
"BOL.chat.rangeweaponinfo": "Waffe: {weaponName} - Basisreichweite {weaponRange}",
"BOL.chat.rollbougette": "Budgetwurf",
"BOL.chat.rolldamage12Legend": "Schaden +12",
"BOL.chat.selecttarget": "Ziel wählen:",
"BOL.chat.usedhoroscope": "Verwendetes Horoskop",
"BOL.chat.weaponreroll1": "Zur Information: Diese Waffe würfelt Einsen bei ihrem Schaden neu.",
"BOL.settings.rollArmor": "Roll for armor",
"BOL.settings.rollArmorTooltip": "Roll for armor value, fixed value if unchecked",
+66 -2
View File
@@ -78,6 +78,16 @@
"BOL.ui.equip": "Equip",
"BOL.ui.delete": "Delete",
"BOL.ui.roll" : "Roll",
"BOL.ui.bonus": "Bonus",
"BOL.ui.log": "Log",
"BOL.ui.add": "Add",
"BOL.ui.rolls": "Rolls",
"BOL.ui.action": "Action",
"BOL.ui.unarmedAttack": "Unarmed attack",
"BOL.ui.vehicleType.boat": "Ship",
"BOL.ui.vehicleType.flyingboat": "Flying ship",
"BOL.ui.vehicleType.chariot": "Chariot/Cart",
"BOL.ui.vehicleType.other": "Other",
"BOL.ui.equipment" : "Equipment",
"BOL.ui.equipmentProperties" : "Equipment properties",
"BOL.ui.weaponAttack" : "Weapon attack",
@@ -177,6 +187,10 @@
"BOL.ui.armorInitMalus": "Armor Modifier (Init)",
"BOL.ui.attackValue": "Attack Value",
"BOL.ui.attackModifier": "Attack Modifier",
"BOL.ui.vehicleWeapons": "Vehicle weapons",
"BOL.ui.hullDamage": "Hull damage",
"BOL.ui.crewDamage": "Crew damage",
"BOL.ui.fireDamage": "Fire ?",
"BOL.ui.weaponbonus": "Cette arme bénéficie déja d'un Dé de Bonus (Arme Favorite prise en compte, par exemple)",
"BOL.ui.initMalus": "Init malus",
"BOL.ui.creature": "Creature",
@@ -195,6 +209,7 @@
"BOL.ui.deletetitle": "Delete",
"BOL.ui.confirmdelete": "Are you sure to delete this item ?",
"BOL.ui.nomorealchemypoints": "No more Creation Point !",
"BOL.ui.notenoughxp": "Not enough experience points !",
"BOL.ui.armornoformula": "The Armor {protect.name} has no protection formula !",
"BOL.ui.selectactor": "Select the actors to apply the macro",
"BOL.ui.itemnotfound": "Impossible to find the object of this macro",
@@ -366,6 +381,18 @@
"BOL.itemProperty.natural": "Natural weapon",
"BOL.itemProperty.onlymodifier": "Modifier only (ie creatures attacks)",
"BOL.itemProperty.attackMalusDice": "Attack Malus (Dice)",
"BOL.itemProperty.crewDamageMultiplier": "Multiplier",
"BOL.itemProperty.crewdamage": "Crew damage value",
"BOL.itemProperty.hullDamageMultiplier": "Multiplier",
"BOL.itemProperty.hulldamage": "Hull damage value",
"BOL.itemProperty.isboarding": "Boarding",
"BOL.itemProperty.isbreakrow": "Break the oars",
"BOL.itemProperty.iscrewdamage": "Crew damage",
"BOL.itemProperty.isfiredamage": "Fire damage",
"BOL.itemProperty.ishulldamage": "Hull damage",
"BOL.itemProperty.isspur": "Ramming",
"BOL.itemProperty.magicalProperties": "Magical properties",
"BOL.itemProperty.vehicleDamageType": "Vehicle damage type",
"BOL.itemStat.quantity": "Quantity",
"BOL.itemStat.weight": "Weight",
@@ -444,6 +471,23 @@
"BOL.notification.MacroMultipleTokensSelected": "You have selected several tokens!",
"BOL.notification.MacroNoActorAvailable": "No actor could be targeted!",
"BOL.notification.MacroNoTokenSelected": "You must select a token!",
"BOL.notification.MacroNoItemFound": "{actor} : no {type} found.",
"BOL.notification.MacroSpecifyNameOrIndex": "Specify a name or an index : {names}",
"BOL.notification.MacroBadIndex": "{actor} : index {index} invalid for {type}.",
"BOL.notification.MacroItemNotFound": "{actor} : {type} \"{name}\" not found.",
"BOL.notification.MacroUnknownAttribute": "Unknown attribute : \"{key}\". Values : vigor, agility, mind, appeal",
"BOL.notification.MacroUnknownAptitude": "Unknown aptitude : \"{key}\". Values : init, melee, ranged, def",
"BOL.notification.MacroUnknownRollType": "Unknown roll type : \"{type}\". Valid types : attribute, aptitude, weapon, spell, alchemy, horoscope",
"BOL.notification.MacroNoPower": "Not enough Power points !",
"BOL.notification.FullDefense": "{actor} is in Full Defense ! He cannot attack this round.",
"BOL.notification.WeaponNotFound": "Unable to find weapon !",
"BOL.notification.AlchemyNotFound": "Unable to find Alchemy !",
"BOL.notification.SpellNotFound": "Unable to find this spell !",
"BOL.notification.NotEnoughCreationPrep": "Not enough Creation Points invested in the Preparation !",
"BOL.notification.NoPower": "Not enough Power points !",
"BOL.notification.AttackNotFound": "Unable to find the corresponding attack, combat tracking error.",
"BOL.notification.NoBirthHour": "{actor} has no birth hour, or it is incorrect : {hour}",
"BOL.notification.BadBirthHour": "{hour} does not correspond to a birth hour",
"BOL.size.tiny": "Tiny",
"BOL.size.verysmall": "Very Small",
@@ -545,7 +589,8 @@
"BOL.chat.criticalbuttonjournal": "Legendary/Heroic Success",
"BOL.chat.nodamage": "Do not apply damages",
"BOL.chat.armorRoll": "Armor roll",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.dialog.soeasy": "So easy (+4)",
"BOL.dialog.soeasy3": "So easy (+3)",
@@ -592,6 +637,15 @@
"BOL.chat.welcome4": "All support for this system is available on this Discord server : https://discord.gg/pPSDNJk",
"BOL.chat.welcome5": "<strong>In order to see compendiums in English, you must install and enable the Babele module.</strong>",
"BOL.chat.welcome6": "Good game in Lemuria !",
"BOL.chat.msgonlygm": "Message only to the GM",
"BOL.chat.babelewarning": "⚠ WARNING ! English language selected, but Babele module is not installed !<br>Please install babele from the module tab in Foundry interface.",
"BOL.chat.applyrecup": "Recover during a few minutes (+{recupHP} Vitality)",
"BOL.chat.defenseReduceDamage2": "You can also spend 1 Heroism/Villainy Point to regain [[/r 2d6KH(1D6B)]] vitality points, this will cost you your next action.",
"BOL.chat.losshp": "{name} lost {lossHP} Vitality points. If he rests a few minutes, he can recover {recupHP} Vitality points.",
"BOL.chat.pcnotlinked": "The player character token is not linked to the actor",
"BOL.chat.pcnotlinkedmsg": "<b>WARNING</b> The player character token is not linked to the actor!",
"BOL.chat.pcwarning": "Warning! No character is linked to the player!",
"BOL.chat.pcwarningmsg": "<b>WARNING</b> The player is not linked to any character!",
"BOL.settings.rollArmor": "Roll for armor",
"BOL.settings.rollArmorTooltip": "Roll for armor value, fixed value if unchecked",
@@ -615,5 +669,15 @@
"BOL.ui.charSummaryTitle": "Character Summary",
"BOL.ui.colGroupAttributes": "Attributes",
"BOL.ui.colGroupAptitudes": "Aptitudes",
"BOL.ui.colGroupResources": "Resources"
"BOL.ui.colGroupResources": "Resources",
"BOL.ui.aggressive": "Aggressive spell?",
"BOL.ui.capacityProperties": "Capacity properties",
"BOL.ui.cost": "XP cost",
"BOL.ui.date": "Date",
"BOL.ui.heropoints": "Heroism/Villainy Points",
"BOL.ui.isbonusdice": "Provides a bonus die?",
"BOL.ui.ismalusdice": "Provides a penalty die?",
"BOL.ui.magicnewrules": "Additional rules (cf. fan-made supplement Sorcery!)",
"BOL.ui.value": "Value",
"BOL.ui.xplog": "XP Log"
}
+73 -1
View File
@@ -77,6 +77,16 @@
"BOL.ui.equip": "Equipar",
"BOL.ui.delete": "Borrar",
"BOL.ui.roll" : "Tirar",
"BOL.ui.bonus": "Bonificación",
"BOL.ui.log": "Registro",
"BOL.ui.add": "Añadir",
"BOL.ui.rolls": "Tiradas",
"BOL.ui.action": "Acción",
"BOL.ui.unarmedAttack": "Ataque sin armas",
"BOL.ui.vehicleType.boat": "Barco",
"BOL.ui.vehicleType.flyingboat": "Nave Voladora",
"BOL.ui.vehicleType.chariot": "Carro",
"BOL.ui.vehicleType.other": "Otro",
"BOL.ui.equipment" : "Equipo",
"BOL.ui.equipmentProperties" : "Propiedades Equipo",
"BOL.ui.weaponAttack" : "Ataque Arma",
@@ -177,6 +187,10 @@
"BOL.ui.armorInitMalus": "Mod. Armadura (Inic)",
"BOL.ui.attackValue": "Valor Ataque",
"BOL.ui.attackModifier": "Mod. Ataque",
"BOL.ui.vehicleWeapons": "Armas de vehículo",
"BOL.ui.hullDamage": "Daño casco",
"BOL.ui.crewDamage": "Daño tripulación",
"BOL.ui.fireDamage": "¿Fuego?",
"BOL.ui.weaponbonus": "Esta arma se beneficia de un Dado de ventaja (ej Arma Personal)",
"BOL.ui.initMalus": "Desventaja Inic.",
"BOL.ui.creature": "Criatura",
@@ -195,6 +209,7 @@
"BOL.ui.deletetitle": "Borrar",
"BOL.ui.confirmdelete": "¿Seguro que quieres borrar este objeto?",
"BOL.ui.nomorealchemypoints": "¡Sin Puntos de Creación!",
"BOL.ui.notenoughxp": "¡No hay suficientes puntos de experiencia!",
"BOL.ui.armornoformula": "La Armadura {protect.name} no dispone de fórmula de protección!",
"BOL.ui.selectactor": "Selecciona un actora para aplicar la macro",
"BOL.ui.itemnotfound": "Imposible encontrar el objeto de esta macro",
@@ -360,6 +375,18 @@
"BOL.itemProperty.natural": "Arma natural",
"BOL.itemProperty.onlymodifier": "Sólo modificador (ej criatura)",
"BOL.itemProperty.attackMalusDice": "Dado Desventaja Ataque",
"BOL.itemProperty.crewDamageMultiplier": "Multiplicador",
"BOL.itemProperty.crewdamage": "Valor del daño a la tripulación",
"BOL.itemProperty.hullDamageMultiplier": "Multiplicador",
"BOL.itemProperty.hulldamage": "Valor del daño al casco",
"BOL.itemProperty.isboarding": "Abordaje",
"BOL.itemProperty.isbreakrow": "Romper los remos",
"BOL.itemProperty.iscrewdamage": "Daño a la tripulación",
"BOL.itemProperty.isfiredamage": "Daño de fuego",
"BOL.itemProperty.ishulldamage": "Daño al casco",
"BOL.itemProperty.isspur": "Ariete",
"BOL.itemProperty.magicalProperties": "Propiedades mágicas",
"BOL.itemProperty.vehicleDamageType": "Tipo de daño de vehículo",
"BOL.itemStat.quantity": "Cantidad",
"BOL.itemStat.weight": "Peso",
@@ -438,6 +465,23 @@
"BOL.notification.MacroMultipleTokensSelected": "¡Has seleccionado varios tokens!",
"BOL.notification.MacroNoActorAvailable": "¡No se pudo marcar el actor como objetivo!",
"BOL.notification.MacroNoTokenSelected": "¡Debes seleccionar un token!",
"BOL.notification.MacroNoItemFound": "{actor} : no se encontró ningún {type}.",
"BOL.notification.MacroSpecifyNameOrIndex": "Especifica un nombre o un índice : {names}",
"BOL.notification.MacroBadIndex": "{actor} : índice {index} no válido para {type}.",
"BOL.notification.MacroItemNotFound": "{actor} : {type} \"{name}\" no encontrado.",
"BOL.notification.MacroUnknownAttribute": "Atributo desconocido : \"{key}\". Valores : vigor, agility, mind, appeal",
"BOL.notification.MacroUnknownAptitude": "Aptitud desconocida : \"{key}\". Valores : init, melee, ranged, def",
"BOL.notification.MacroUnknownRollType": "Tipo de tirada desconocido : \"{type}\". Tipos válidos : attribute, aptitude, weapon, spell, alchemy, horoscope",
"BOL.notification.MacroNoPower": "¡No quedan suficientes puntos de Poder!",
"BOL.notification.FullDefense": "{actor} está en Defensa Total ! ¡No puede atacar este asalto!",
"BOL.notification.WeaponNotFound": "¡No se pudo encontrar el arma!",
"BOL.notification.AlchemyNotFound": "¡No se pudo encontrar la alquimia!",
"BOL.notification.SpellNotFound": "¡No se pudo encontrar este hechizo!",
"BOL.notification.NotEnoughCreationPrep": "¡No hay suficientes puntos de Creación invertidos en la Preparación!",
"BOL.notification.NoPower": "¡No quedan suficientes puntos de Poder!",
"BOL.notification.AttackNotFound": "No se pudo encontrar el ataque correspondiente, error de seguimiento de combate.",
"BOL.notification.NoBirthHour": "{actor} no tiene hora de nacimiento, o es incorrecta : {hour}",
"BOL.notification.BadBirthHour": "{hour} no corresponde a una hora de nacimiento",
"BOL.size.tiny": "Minúsculo",
"BOL.size.verysmall": "Muy pequeño",
@@ -535,7 +579,8 @@
"BOL.chat.criticalinfo": "¡Esto es un éxito Asombroso o Legendario! Escoge tus opciones y efectos",
"BOL.chat.criticalbuttonjournal": "Éxito Asombroso/Legendario",
"BOL.chat.armorRoll": "Tirada de Armadura",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.dialog.soeasy": "Demasiado fácil (+4)",
"BOL.dialog.veryeasy": "Muy fácil (+2)",
@@ -569,6 +614,20 @@
"BOL.ui.biosigns": "Marcas",
"BOL.ui.biodescription": "Descripción",
"BOL.ui.bionotes": "Notas",
"BOL.ui.aggressive": "¿Hechizo agresivo?",
"BOL.ui.capacityProperties": "Propiedades de capacidad",
"BOL.ui.cost": "Coste XP",
"BOL.ui.date": "Fecha",
"BOL.ui.heropoints": "Puntos de Heroísmo/Villanía",
"BOL.ui.hordeAttack": "Ataque de horda",
"BOL.ui.hordeHP": "Vitalidad (1 miembro)",
"BOL.ui.hordeSize": "Tamaño de la horda",
"BOL.ui.hordehp": "Vitalidad (total)",
"BOL.ui.isbonusdice": "¿Proporciona un dado de bonificación?",
"BOL.ui.ismalusdice": "¿Proporciona un dado de penalización?",
"BOL.ui.magicnewrules": "Reglas adicionales (cf. suplemento hecho por fans ¡Hechicería!)",
"BOL.ui.value": "Valor",
"BOL.ui.xplog": "Registro de XP",
"BOL.chat.welcome1": "Bienvenidos a Bárbaros de Lemuria (Ludospherik)",
"BOL.chat.welcome2": "Para jugar es necesario usar el manual, que lo podéis conseguir aquí: https://www.ludospherik-editions.com/en_gb/",
@@ -576,6 +635,19 @@
"BOL.chat.welcome4": "Todo el soporte para el sistema es a través del servidor Discord: https://discord.gg/pPSDNJk",
"BOL.chat.welcome5": "¡Buena partida en Lemuria!",
"BOL.chat.welcome6": "",
"BOL.chat.msgonlygm": "Mensaje solo para el GM",
"BOL.chat.babelewarning": "⚠ ¡ADVERTENCIA! ¡El idioma inglés está seleccionado, pero el módulo Babele no está instalado!<br>Instale babele desde la pestaña de módulos en la interfaz de Foundry.",
"BOL.chat.applyrecup": "Recuperarse durante unos minutos (+{recupHP} Vitalidad)",
"BOL.chat.criticallegendaryinfo": "¡Es un éxito Legendario! ¡Elige tus opciones y efectos!",
"BOL.chat.defenseReduceDamage2": "También puedes gastar 1 Punto de Heroísmo/Villanía para recuperar [[/r 2d6KH(1D6B)]] puntos de vitalidad, esto te costará tu próxima acción.",
"BOL.chat.legendaryreminder": "Además de las acciones indicadas en los botones de abajo, puedes realizar 2 acciones entre: <ul><li>Carnicería: Atacar una segunda vez al mismo adversario</li><li>Golpe preciso: Un dado de penalización a tu adversario en una localización elegida</li><li>Desarme</li><li>Masacrar a la chusma</li><li>Derribo: Tira a tu adversario (1 tamaño más como máximo)</li></ul>",
"BOL.chat.losshp": "{name} ha perdido {lossHP} puntos de Vitalidad. Si descansa unos minutos, puede recuperar {recupHP} puntos de Vitalidad.",
"BOL.chat.pcnotlinked": "El token del personaje jugador no está vinculado al actor",
"BOL.chat.pcnotlinkedmsg": "<b>ATENCIÓN</b> ¡El token del personaje jugador no está vinculado al actor!",
"BOL.chat.pcwarning": "¡Atención! ¡Ningún personaje está vinculado al jugador!",
"BOL.chat.pcwarningmsg": "<b>ATENCIÓN</b> ¡El jugador no está vinculado a ningún personaje!",
"BOL.chat.rolldamage12Legend": "Daño +12",
"BOL.chat.selecttarget": "Elegir un objetivo:",
"BOL.settings.rollArmor": "Tiradas de armadura",
"BOL.settings.rollArmorTooltip": "Tiradas de armadura, si no esta activo usará el valor fijo",
+35 -2
View File
@@ -78,6 +78,16 @@
"BOL.ui.equip": "Équiper",
"BOL.ui.delete": "Supprimer",
"BOL.ui.roll": "Utiliser",
"BOL.ui.bonus": "Bonus",
"BOL.ui.log": "Journal",
"BOL.ui.add": "Ajouter",
"BOL.ui.rolls": "Jets",
"BOL.ui.action": "Action",
"BOL.ui.unarmedAttack": "Attaque à mains nues",
"BOL.ui.vehicleType.boat": "Navire",
"BOL.ui.vehicleType.flyingboat": "Nef Volante",
"BOL.ui.vehicleType.chariot": "Chariot/Carriole",
"BOL.ui.vehicleType.other": "Autre",
"BOL.ui.equipment": "Équipement",
"BOL.ui.equipmentProperties": "Propriétés d'équipement",
"BOL.ui.weaponAttack": "Attaque d'arme",
@@ -229,6 +239,7 @@
"BOL.ui.deletetitle": "Suppression",
"BOL.ui.confirmdelete": "Vous êtes sûr de vouloir supprimer cet item ?",
"BOL.ui.nomorealchemypoints": "Plus assez de Points de Création !",
"BOL.ui.notenoughxp": "Pas assez de points d'expérience !",
"BOL.ui.armornoformula": "L'armure {protect.name} n'a pas de formule pour la protection !",
"BOL.ui.selectactor": "Selectionnez votre personnage pour utiliser la macro",
"BOL.ui.itemnotfound": "Impossible de trouver l'objet de cette macro",
@@ -395,6 +406,7 @@
"BOL.itemProperty.isspur": "Eperonnage",
"BOL.itemProperty.isbreakrow": "Briser les rames",
"BOL.itemProperty.attackMalusDice": "Malus d'attaque (Dés)",
"BOL.itemProperty.magicalProperties": "Propriétés magiques",
"BOL.itemStat.quantity": "Quantité",
"BOL.itemStat.weight": "Poids",
@@ -472,6 +484,23 @@
"BOL.notification.MacroMultipleTokensSelected": "Vous avez sélectionné plusieurs tokens",
"BOL.notification.MacroNoActorAvailable": "Aucun acteur n'a pu être ciblé",
"BOL.notification.MacroNoTokenSelected": "Vous devez sélectionner un token",
"BOL.notification.MacroNoItemFound": "{actor} : aucun(e) {type} trouvé(e).",
"BOL.notification.MacroSpecifyNameOrIndex": "Précisez le nom ou l'index : {names}",
"BOL.notification.MacroBadIndex": "{actor} : index {index} invalide pour {type}.",
"BOL.notification.MacroItemNotFound": "{actor} : {type} \"{name}\" introuvable.",
"BOL.notification.MacroUnknownAttribute": "Attribut inconnu : \"{key}\". Valeurs : vigor, agility, mind, appeal",
"BOL.notification.MacroUnknownAptitude": "Aptitude inconnue : \"{key}\". Valeurs : init, melee, ranged, def",
"BOL.notification.MacroUnknownRollType": "Type de jet inconnu : \"{type}\". Types valides : attribute, aptitude, weapon, spell, alchemy, horoscope",
"BOL.notification.MacroNoPower": "Plus assez de points de Pouvoir !",
"BOL.notification.FullDefense": "{actor} est en Défense Totale ! Il ne peut pas attaquer ce round.",
"BOL.notification.WeaponNotFound": "Impossible de trouver l'arme !",
"BOL.notification.AlchemyNotFound": "Impossible de trouver l'alchimie !",
"BOL.notification.SpellNotFound": "Impossible de trouver ce sort !",
"BOL.notification.NotEnoughCreationPrep": "Pas assez de Points de Création investis dans la Préparation !",
"BOL.notification.NoPower": "Plus assez de points de Pouvoir !",
"BOL.notification.AttackNotFound": "Impossible de trouver l'attaque correspondante, erreur de suivi de combat.",
"BOL.notification.NoBirthHour": "{actor} n'a pas d'heure de naissance, ou elle est incorrecte : {hour}",
"BOL.notification.BadBirthHour": "{hour} ne correspond pas à une heure de naissance",
"BOL.size.tiny": "Minuscule",
"BOL.size.verysmall": "Très petite",
@@ -571,7 +600,8 @@
"BOL.chat.criticalinfo": "C'est un succès Héroïque ! Choisissez vos options et effets !",
"BOL.chat.criticallegendaryinfo": "C'est un succès Légendaire ! Choisissez vos options et effets !",
"BOL.chat.criticalbuttonjournal": "Succès Héroïque/Légendaire",
"BOL.chat.bolRulebookMessage": "N'oubliez pas le module complet du Livre de Règle et des Sagas disponible ici : https://www.ludospherik-editions.com !",
"BOL.chat.bolRulebookMessage": "N'oubliez pas le module premium du Livre de Règle et des Sagas, disponible sur le site Foundry : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Découvrez le module premium des Chroniques de Lémurie (vol. 1), disponible sur le site Foundry : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.chat.losshp": "{name} a perdu {lossHP} points de Vitalité. Si il se repose quelques minutes, il peut récupérer {recupHP} points de Vitalité.",
"BOL.chat.applyrecup": "Récupérer pendant quelques minutes (+{recupHP} Vitalité)",
"BOL.chat.inforecup": "{name} vient de récupérer {recupHP} points de Vitalité après quelques minutes de repos.",
@@ -630,6 +660,8 @@
"BOL.chat.pcwarningmsg": "<b>ATTENTION</b> Le joueur n'est relié à aucun personnage !",
"BOL.chat.pcnotlinked": "Le token du personnage joueur n'est pas relié à l'acteur",
"BOL.chat.pcnotlinkedmsg": "<b>ATTENTION</b> Le token du personnage joueur n'est pas relié à l'acteur !",
"BOL.chat.msgonlygm": "Message réservé au MJ uniquement",
"BOL.chat.babelewarning": "⚠ ATTENTION ! La langue anglaise est sélectionnée, mais le module Babele n'est pas installé !<br>Veuillez installer babele depuis l'onglet des modules dans l'interface de Foundry.",
"BOL.settings.rollArmor": "Effectuer des jets pour les armures",
"BOL.settings.rollArmorTooltip": "Effectue un jet de dés pour les armures (valeur fixe si désactivé)",
@@ -656,5 +688,6 @@
"BOL.ui.charSummaryTitle": "Résumé des Personnages",
"BOL.ui.colGroupAttributes": "Attributs",
"BOL.ui.colGroupAptitudes": "Aptitudes",
"BOL.ui.colGroupResources": "Ressources"
"BOL.ui.colGroupResources": "Ressources",
"BOL.ui.heropoints": "Points d'Héroïsme/Vilainie"
}
+5 -5
View File
@@ -301,7 +301,7 @@ export class BoLActor extends Actor {
this.update({ [`system.attributes.${key}`]: attr, [`system.xp`]: xp })
this.addXPLog("attribute", key, nextXP, attr.value)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
ui.notifications.warn(game.i18n.localize("BOL.ui.notenoughxp"))
}
}
}
@@ -318,7 +318,7 @@ export class BoLActor extends Actor {
this.update({ [`system.aptitudes.${key}`]: apt, [`system.xp`]: xp })
this.addXPLog("aptitude", key, nextXP, apt.value)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
ui.notifications.warn(game.i18n.localize("BOL.ui.notenoughxp"))
}
}
}
@@ -335,7 +335,7 @@ export class BoLActor extends Actor {
this.updateEmbeddedDocuments('Item', [{ _id: career._id, 'system.rank': career.system.rank + 1 }])
this.addXPLog("career", career.name, nextXP, career.system.rank + 1)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
ui.notifications.warn(game.i18n.localize("BOL.ui.notenoughxp"))
}
}
}
@@ -866,12 +866,12 @@ export class BoLActor extends Actor {
if (this.system.resources.hp.value <= 0) {
if (!prone) {
await this.createEmbeddedDocuments("ActiveEffect", [
{ name: game.i18n.localize('EFFECT.StatusProne'), icon: 'icons/svg/falling.svg', statuses: 'prone' }
{ name: game.i18n.localize('EFFECT.StatusProne'), img: 'icons/svg/falling.svg', statuses: ['prone'] }
])
}
if (this.system.resources.hp.value < -5 && !dead) {
await this.createEmbeddedDocuments("ActiveEffect", [
{ name: game.i18n.localize('EFFECT.StatusDead'), icon: 'icons/svg/skull.svg', statuses: 'dead' }
{ name: game.i18n.localize('EFFECT.StatusDead'), img: 'icons/svg/skull.svg', statuses: ['dead'] }
])
}
ChatMessage.create({
+2 -2
View File
@@ -84,8 +84,8 @@ export class BoLHordeSheet extends foundry.appv1.sheets.ActorSheet {
// Delete Inventory Item
html.find('.item-delete').click(ev => {
Dialog.confirm({
title: "Suppression",
content: `Vous êtes sûr de vouloir supprimer cet item ?`,
title: game.i18n.localize("BOL.ui.deletetitle"),
content: game.i18n.localize("BOL.ui.confirmdelete"),
yes: () => {
const li = $(ev.currentTarget).parents(".item");
this.actor.deleteEmbeddedDocuments("Item", [li.data("itemId")])
+2 -2
View File
@@ -94,8 +94,8 @@ export class BoLVehicleSheet extends foundry.appv1.sheets.ActorSheet {
// Delete Inventory Item
html.find('.item-delete').click(ev => {
Dialog.confirm({
title: "Suppression",
content: `Vous êtes sûr de vouloir supprimer cet item ?`,
title: game.i18n.localize("BOL.ui.deletetitle"),
content: game.i18n.localize("BOL.ui.confirmdelete"),
yes: () => {
const li = $(ev.currentTarget).parents(".item");
this.actor.deleteEmbeddedDocuments("Item", [li.data("itemId")])
@@ -49,6 +49,7 @@ export default class BoLBaseActorSheet extends HandlebarsApplicationMixin(foundr
return {
actor,
system: actor.system,
systemFields: actor.system.schema.fields,
config: game.bol.config,
isGM: game.user.isGM,
isEditable: this.isEditable,
@@ -112,7 +113,8 @@ export default class BoLBaseActorSheet extends HandlebarsApplicationMixin(foundr
link.addEventListener("click", (event) => {
event.preventDefault()
this.tabGroups[group] = tab
this.render()
nav.querySelectorAll("[data-tab]").forEach(l => l.classList.toggle("active", l.dataset.tab === tab))
this.element.querySelectorAll(`[data-group="${group}"][data-tab]`).forEach(c => c.classList.toggle("active", c.dataset.tab === tab))
})
})
+12 -9
View File
@@ -101,30 +101,33 @@ Hooks.once('init', async function () {
// Register hooks
registerHooks()
if (typeof Babele !== 'undefined') {
Babele.get().setSystemTranslationsDir("compendiums");
}
});
/* -------------------------------------------- */
Hooks.once("babele.init", (babele) => {
console.log("Initializing Babele translations")
babele.setSystemTranslationsDir("compendiums");
});
/* -------------------------------------------- */
async function welcomeMessage() {
const noRulebook = !game.modules.find(m => m.id === "bol-rulebook")
const noRulebook = !game.modules.get("bol-rulebook")?.active
const noChronicles = !game.modules.get("bol-chronicles-1")?.active
const content = await foundry.applications.handlebars.renderTemplate(
"systems/bol/templates/chat/chat-welcome.hbs",
{ noRulebook }
{ noRulebook, noChronicles }
)
ChatMessage.create({ user: game.user.id, whisper: [game.user.id], content })
if (game.user.isGM && game.i18n.lang == 'en' && !game.modules.find(m => m.id == "babele")) {
if (game.user.isGM && game.i18n.lang == 'en' && !game.modules.get("babele")?.active) {
const babeleWarning = game.i18n.localize("BOL.chat.babelewarning")
ChatMessage.create({
user: game.user.id,
whisper: [game.user.id],
content: `<div class="bol-welcome-card"><div class="welcome-body"><p class="welcome-warning">⚠ WARNING ! English language selected, but Babele module is not installed !<br>Please install babele from the module tab in Foundry interface.</p></div></div>`
content: `<div class="bol-welcome-card"><div class="welcome-body"><p class="welcome-warning">${babeleWarning}</p></div></div>`
})
ui.notifications.warn("WARNING ! English language selected, but babele module is not installed !<br>Please install babele from the module tab in Foundry interface.")
ui.notifications.warn(babeleWarning)
}
}
+12 -7
View File
@@ -154,7 +154,7 @@ export class BoLRoll {
// Manage specific case
let fightOption = actor.getActiveFightOption()
if (fightOption && fightOption.system.properties.fightoptiontype == "fulldefense") {
ui.notifications.warn(`{{actor.name}} est en Défense Totale ! Il ne peut pas attaquer ce round.`)
ui.notifications.warn(game.i18n.format("BOL.notification.FullDefense", { actor: actor.name }))
return
}
@@ -175,7 +175,7 @@ export class BoLRoll {
const li = $(event.currentTarget).parents(".item")
let weapon = actor.items.get(li.data("item-id"))
if (!weapon) {
ui.notifications.warn("Unable to find weapon !")
ui.notifications.warn(game.i18n.localize("BOL.notification.WeaponNotFound"))
return
}
weapon = foundry.utils.duplicate(weapon)
@@ -187,13 +187,18 @@ export class BoLRoll {
const li = $(event.currentTarget).parents(".item");
let alchemy = actor.items.get(li.data("item-id"));
if (!alchemy) {
ui.notifications.warn("Unable to find Alchemy !");
ui.notifications.warn(game.i18n.localize("BOL.notification.AlchemyNotFound"));
return;
}
alchemy = foundry.utils.duplicate(alchemy)
return this.alchemyCheckWithItem(actor, alchemy)
}
/* -------------------------------------------- */
static alchemyCheckWithItem(actor, alchemy) {
let alchemyData = alchemy.system
if (alchemyData.properties.pccurrent < alchemyData.properties.pccost) {
ui.notifications.warn("Pas assez de Points de Création investis dans la Préparation !")
ui.notifications.warn(game.i18n.localize("BOL.notification.NotEnoughCreationPrep"))
return
}
@@ -255,13 +260,13 @@ export class BoLRoll {
/* -------------------------------------------- */
static spellCheck(actor, event) {
if (actor.system.resources.power.value <= 0) {
ui.notifications.warn("Plus assez de points de Pouvoir !")
ui.notifications.warn(game.i18n.localize("BOL.notification.NoPower"))
return
}
const li = $(event.currentTarget).parents(".item")
let spell = actor.items.get(li.data("item-id"))
if (!spell) {
ui.notifications.warn("Impossible de trouver ce sort !")
ui.notifications.warn(game.i18n.localize("BOL.notification.SpellNotFound"))
return
}
spell = foundry.utils.duplicate(spell)
@@ -578,7 +583,7 @@ export class BoLRoll {
callback: (event, button, dialog) => {
console.log("Submit Roll!!!!");
if (rollData.mode == 'spell' && rollData.ppCurrent < rollData.ppCost) {
ui.notifications.warn("Pas assez de Points de Pouvoir !")
ui.notifications.warn(game.i18n.localize("BOL.notification.NoPower"))
return false
}
rollData.registerInit = (rollData.aptitude && rollData.aptitude.key == 'init') ?
-119
View File
@@ -1,119 +0,0 @@
import { BoLUtility } from "../system/bol-utility.js";
/**
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class BoLItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {
return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["bol", "sheet", "item"],
template: "systems/bol/templates/item/item-sheet.hbs",
width: 650,
height: 780,
dragDrop: [{ dragSelector: null, dropSelector: null }],
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "description" }]
});
}
/* -------------------------------------------- */
/** @override */
async getData(options) {
const data = super.getData(options)
let itemData = foundry.utils.duplicate(data.document)
data.config = game.bol.config
data.item = itemData
data.category = itemData.system.category
data.isGM = game.user.isGM;
data.itemProperties = this.item.itemProperties;
data.description = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, { async: true })
if (data.document.actor) {
data.careers = data.document.actor.careers
}
// Dynamic default data fix/adapt
if (itemData.type == "item") {
if (!itemData.system.category) {
itemData.system.category = "equipment"
}
if (itemData.system.category == "equipment" && itemData.system.properties.equipable) {
if (!itemData.system.properties.slot) {
itemData.system.properties.slot = "-"
}
}
if (itemData.system.category == 'spell') {
if (!itemData.system.properties.mandatoryconditions) {
itemData.system.properties.mandatoryconditions = []
}
if (!itemData.system.properties.optionnalconditions) {
itemData.system.properties.optionnalconditions = []
}
for (let i = 0; i < 4; i++) {
itemData.system.properties.mandatoryconditions[i] = itemData.system.properties.mandatoryconditions[i] ?? ""
}
for (let i = 0; i < 8; i++) {
itemData.system.properties.optionnalconditions[i] = itemData.system.properties.optionnalconditions[i] ?? ""
}
}
} else {
if (!itemData.system.subtype) {
itemData.system.category = "origin"
}
}
console.log("ITEMDATA", data);
return data;
}
/* -------------------------------------------- */
_getHeaderButtons() {
let buttons = super._getHeaderButtons();
buttons.unshift({
class: "post",
icon: "fas fa-comment",
onclick: ev => this.postItem()
});
return buttons
}
/* -------------------------------------------- */
postItem() {
let chatData = foundry.utils.duplicate(this.item)
if (this.actor) {
chatData.actor = { id: this.actor.id };
}
BoLUtility.postItem(chatData);
}
/* -------------------------------------------- */
/** @override */
setPosition(options = {}) {
const position = super.setPosition(options);
const sheetBody = this.element.find(".sheet-body");
const bodyHeight = position.height - 192;
sheetBody.css("height", bodyHeight);
return position;
}
/* -------------------------------------------- */
/** @override */
activateListeners(html) {
super.activateListeners(html);
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
// Roll handlers, click handlers, etc. would go here.
html.find('.armorQuality').change(ev => {
const li = $(ev.currentTarget);
console.log(game.bol.config.soakFormulas[li.val()]);
$('.soakFormula').val(game.bol.config.soakFormulas[li.val()]);
});
}
}
-119
View File
@@ -1,119 +0,0 @@
import { BoLUtility } from "../system/bol-utility.js";
/**
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class BoLItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {
return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["bol", "sheet", "item"],
template: "systems/bol/templates/item/item-sheet.hbs",
width: 650,
height: 780,
dragDrop: [{ dragSelector: null, dropSelector: null }],
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "description" }]
});
}
/* -------------------------------------------- */
/** @override */
async getData(options) {
const data = super.getData(options)
let itemData = foundry.utils.duplicate(data.document)
data.config = game.bol.config
data.item = itemData
data.category = itemData.system.category
data.isGM = game.user.isGM;
data.itemProperties = this.item.itemProperties;
data.description = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, { async: true })
if (data.document.actor) {
data.careers = data.document.actor.careers
}
// Dynamic default data fix/adapt
if (itemData.type == "item") {
if (!itemData.system.category) {
itemData.system.category = "equipment"
}
if (itemData.system.category == "equipment" && itemData.system.properties.equipable) {
if (!itemData.system.properties.slot) {
itemData.system.properties.slot = "-"
}
}
if (itemData.system.category == 'spell') {
if (!itemData.system.properties.mandatoryconditions) {
itemData.system.properties.mandatoryconditions = []
}
if (!itemData.system.properties.optionnalconditions) {
itemData.system.properties.optionnalconditions = []
}
for (let i = 0; i < 4; i++) {
itemData.system.properties.mandatoryconditions[i] = itemData.system.properties.mandatoryconditions[i] ?? ""
}
for (let i = 0; i < 8; i++) {
itemData.system.properties.optionnalconditions[i] = itemData.system.properties.optionnalconditions[i] ?? ""
}
}
} else {
if (!itemData.system.subtype) {
itemData.system.category = "origin"
}
}
console.log("ITEMDATA", data);
return data;
}
/* -------------------------------------------- */
_getHeaderButtons() {
let buttons = super._getHeaderButtons();
buttons.unshift({
class: "post",
icon: "fas fa-comment",
onclick: ev => this.postItem()
});
return buttons
}
/* -------------------------------------------- */
postItem() {
let chatData = foundry.utils.duplicate(this.item)
if (this.actor) {
chatData.actor = { id: this.actor.id };
}
BoLUtility.postItem(chatData);
}
/* -------------------------------------------- */
/** @override */
setPosition(options = {}) {
const position = super.setPosition(options);
const sheetBody = this.element.find(".sheet-body");
const bodyHeight = position.height - 192;
sheetBody.css("height", bodyHeight);
return position;
}
/* -------------------------------------------- */
/** @override */
activateListeners(html) {
super.activateListeners(html);
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
// Roll handlers, click handlers, etc. would go here.
html.find('.armorQuality').change(ev => {
const li = $(ev.currentTarget);
console.log(game.bol.config.soakFormulas[li.val()]);
$('.soakFormula').val(game.bol.config.soakFormulas[li.val()]);
});
}
}
-36
View File
@@ -1,36 +0,0 @@
/**
* Extend the basic Item with some very simple modifications.
* @extends {Item}
*/
export class BoLItem extends Item {
/**
* Augment the basic Item data model with additional dynamic data.
*/
prepareData() {
super.prepareData()
const actorData = this.actor ? this.actor.system : {}
}
/* -------------------------------------------- */
get properties() {
return this.system.properties
}
/* -------------------------------------------- */
/**
* Get the Array of item properties which are used in the small sidebar of the description tab
* @return {Array}
* @private
*/
get itemProperties() {
const props = [];
if ( this.type === "item" ) {
const entries = Object.entries(this.system.properties)
props.push(...entries.filter(e => e[1] === true).map(e => { return game.bol.config.itemProperties2[e[0]] }))
}
return props.filter(p => !!p)
}
}
-112
View File
@@ -1,112 +0,0 @@
# BoL DataModels
Ce dossier contient les DataModels pour le système Barbarians of Lemuria (BoL).
## Structure
### Actors DataModels
- **character.mjs** : Personnages joueurs
- Attributs (Vigor, Agility, Mind, Appeal)
- Aptitudes (Initiative, Mêlée, Distance, Défense)
- Ressources (HP, Hero Points, Faith, Power, Alchemy, Astrology)
- XP et création
- Bougette (argent)
- **encounter.mjs** : PNJ et créatures
- Mêmes attributs que character
- Champs spécifiques : chartype (tough/villain), isundead, size, environment
- **horde.mjs** : Hordes de créatures
- Mêmes attributs de base
- Champs spécifiques : hordesize, hordebasehp, hasdamagerule, damagerule
- **vehicle.mjs** : Véhicules (navires, chars, etc.)
- Attributs véhicules : hull, crew, resources
- Champs spécifiques : vehicletype, row, spur, status
### Items DataModels
- **item.mjs** : Équipements et objets
- Propriétés (weapon, armor, magical, etc.)
- Équipement (quantity, weight, price, worn)
- Category et subtype
- **feature.mjs** : Capacités, traits, sorts
- Rank (niveau/rang)
- Description
- Category et subtype
## Architecture
Tous les DataModels héritent de `foundry.abstract.TypeDataModel` et définissent leur schéma via `defineSchema()`.
Exemple de structure :
```javascript
export default class BoLCharacterDataModel extends foundry.abstract.TypeDataModel {
static defineSchema() {
const fields = foundry.data.fields;
const requiredInteger = { required: true, nullable: false, integer: true };
return {
// Définition des champs
};
}
static LOCALIZATION_PREFIXES = ["BOL.Character"];
// Méthodes personnalisées (à ajouter)
}
```
## Types de champs utilisés
- `StringField` : Chaînes de caractères
- `NumberField` : Nombres (avec option `integer: true` pour entiers)
- `BooleanField` : Booléens
- `HTMLField` : HTML enrichi (descriptions, biographies)
- `ArrayField` : Tableaux
- `SchemaField` : Objets imbriqués
## Export
Le fichier `_module.mjs` exporte tous les DataModels :
```javascript
export { default as BoLCharacter } from "./character.mjs"
export { default as BoLEncounter } from "./encounter.mjs"
export { default as BoLHorde } from "./horde.mjs"
export { default as BoLVehicle } from "./vehicle.mjs"
export { default as BoLItem } from "./item.mjs"
export { default as BoLFeature } from "./feature.mjs"
```
## Configuration dans bol.js
Les DataModels sont enregistrés dans `CONFIG` :
```javascript
CONFIG.Actor.dataModels = {
character: models.BoLCharacter,
encounter: models.BoLEncounter,
horde: models.BoLHorde,
vehicle: models.BoLVehicle
}
CONFIG.Item.dataModels = {
item: models.BoLItem,
feature: models.BoLFeature
}
```
## Compatibilité
Les DataModels sont compatibles avec le `template.json` existant. La migration est transparente pour les données existantes.
## Prochaines étapes
1. Ajouter `prepareDerivedData()` pour les calculs automatiques
2. Migrer la logique métier depuis actor.js
3. Ajouter des validations personnalisées
4. Documenter avec JSDoc
+2 -2
View File
@@ -246,10 +246,10 @@ export class BoLCalendar extends Application {
}
}
else if (name) {
ui.notifications.warn(name + " n'a pas d'heure de naissance, ou elle est incorrecte : " + heureNaissance);
ui.notifications.warn(game.i18n.format("BOL.notification.NoBirthHour", { actor: name, hour: heureNaissance }));
}
else {
ui.notifications.warn(heureNaissance + " ne correspond pas à une heure de naissance");
ui.notifications.warn(game.i18n.format("BOL.notification.BadBirthHour", { hour: heureNaissance }));
}
return 0;
}
+2 -2
View File
@@ -445,7 +445,7 @@ export class BoLUtility {
event.preventDefault()
let attr = event.currentTarget.attributes['data-attack-id']
if (!attr) {
ui.notifications.warn("Impossible de trouver l'attaque correspondante, erreur de suivi de combat.")
ui.notifications.warn(game.i18n.localize("BOL.notification.AttackNotFound"))
return
}
let attackId = event.currentTarget.attributes['data-attack-id'].value
@@ -583,7 +583,7 @@ export class BoLUtility {
this.blindMessageToGM(chatOptions);
chatOptions.whisper = [game.user.id];
chatOptions.content = "Message only to the GM";
chatOptions.content = game.i18n.localize("BOL.chat.msgonlygm");
}
else {
chatOptions.whisper = this.getUsers(user => user.isGM);
+42 -42
View File
@@ -413,108 +413,108 @@ BOL.bolEffectModifier = {
BOL.statusEffects = [
{
"id": "dead",
"label": "EFFECT.StatusDead",
"icon": "icons/svg/skull.svg"
"name": "EFFECT.StatusDead",
"img": "icons/svg/skull.svg"
},
{
"id": "unconscious",
"label": "EFFECT.StatusUnconscious",
"icon": "icons/svg/unconscious.svg"
"name": "EFFECT.StatusUnconscious",
"img": "icons/svg/unconscious.svg"
},
{
"id": "sleep",
"label": "EFFECT.StatusAsleep",
"icon": "icons/svg/sleep.svg"
"name": "EFFECT.StatusAsleep",
"img": "icons/svg/sleep.svg"
},
{
"id": "stun",
"label": "EFFECT.StatusStunned",
"icon": "icons/svg/daze.svg"
"name": "EFFECT.StatusStunned",
"img": "icons/svg/daze.svg"
},
{
"id": "prone",
"label": "EFFECT.StatusProne",
"icon": "icons/svg/falling.svg"
"name": "EFFECT.StatusProne",
"img": "icons/svg/falling.svg"
},
{
"id": "restrain",
"label": "EFFECT.StatusRestrained",
"icon": "icons/svg/net.svg"
"name": "EFFECT.StatusRestrained",
"img": "icons/svg/net.svg"
},
{
"id": "paralysis",
"label": "EFFECT.StatusParalysis",
"icon": "icons/svg/paralysis.svg"
"name": "EFFECT.StatusParalysis",
"img": "icons/svg/paralysis.svg"
},
{
"id": "fly",
"label": "EFFECT.StatusFlying",
"icon": "icons/svg/wing.svg"
"name": "EFFECT.StatusFlying",
"img": "icons/svg/wing.svg"
},
{
"id": "blind",
"label": "EFFECT.StatusBlind",
"icon": "icons/svg/blind.svg"
"name": "EFFECT.StatusBlind",
"img": "icons/svg/blind.svg"
},
{
"id": "deaf",
"label": "EFFECT.StatusDeaf",
"icon": "icons/svg/deaf.svg"
"name": "EFFECT.StatusDeaf",
"img": "icons/svg/deaf.svg"
},
{
"id": "silence",
"label": "EFFECT.StatusSilenced",
"icon": "icons/svg/silenced.svg"
"name": "EFFECT.StatusSilenced",
"img": "icons/svg/silenced.svg"
},
{
"id": "fear",
"label": "EFFECT.StatusFear",
"icon": "icons/svg/terror.svg"
"name": "EFFECT.StatusFear",
"img": "icons/svg/terror.svg"
},
{
"id": "burning",
"label": "EFFECT.StatusBurning",
"icon": "icons/svg/fire.svg"
"name": "EFFECT.StatusBurning",
"img": "icons/svg/fire.svg"
},
{
"id": "frozen",
"label": "EFFECT.StatusFrozen",
"icon": "icons/svg/frozen.svg"
"name": "EFFECT.StatusFrozen",
"img": "icons/svg/frozen.svg"
},
{
"id": "shock",
"label": "EFFECT.StatusShocked",
"icon": "icons/svg/lightning.svg"
"name": "EFFECT.StatusShocked",
"img": "icons/svg/lightning.svg"
},
{
"id": "disease",
"label": "EFFECT.StatusDisease",
"icon": "icons/svg/biohazard.svg"
"name": "EFFECT.StatusDisease",
"img": "icons/svg/biohazard.svg"
},
{
"id": "poison",
"label": "EFFECT.StatusPoison",
"icon": "icons/svg/poison.svg"
"name": "EFFECT.StatusPoison",
"img": "icons/svg/poison.svg"
},
{
"id": "curse",
"label": "EFFECT.StatusCursed",
"icon": "icons/svg/sun.svg"
"name": "EFFECT.StatusCursed",
"img": "icons/svg/sun.svg"
},
{
"id": "invisible",
"label": "EFFECT.StatusInvisible",
"icon": "icons/svg/invisible.svg"
"name": "EFFECT.StatusInvisible",
"img": "icons/svg/invisible.svg"
},
{
"id": "target",
"label": "EFFECT.StatusTarget",
"icon": "icons/svg/target.svg"
"name": "EFFECT.StatusTarget",
"img": "icons/svg/target.svg"
},
{
"id": "eye",
"label": "EFFECT.StatusMarked",
"icon": "icons/svg/eye.svg"
"name": "EFFECT.StatusMarked",
"img": "icons/svg/eye.svg"
}
]
+7
View File
@@ -141,6 +141,13 @@ export const registerHandlebarsHelpers = function () {
return key == "creature" || key == "daemon";
})
// Journal entry documenting Heroic/Legendary success options, localized
Handlebars.registerHelper('criticalJournalId', function () {
return game.i18n.lang === "en"
? "cNk3xcQ1F7I3Uk8Q" // Rules summary (EN)
: "veAAxCtCKcFIsnln"; // Vademecum des Joueurs (FR)
})
// Handle v12 removal of this helper
Handlebars.registerHelper('select', function (selected, options) {
const escapedValue = RegExp.escape(Handlebars.escapeExpression(selected));
+215 -39
View File
@@ -1,52 +1,228 @@
import {BoLRoll} from "../controllers/bol-rolls.js";
import { BoLRoll } from "../controllers/bol-rolls.js";
export class Macros {
/**
* @name getSpeakersActor
* @description
/**
* BoL Macro API accessible via game.bol.macros
*
* @returns
* Usage examples (in a Foundry macro):
*
* game.bol.macros.rollAttribute("vigor")
* game.bol.macros.rollAttribute("mind")
*
* game.bol.macros.rollAptitude("melee")
* game.bol.macros.rollAptitude("ranged")
* game.bol.macros.rollAptitude("def")
* game.bol.macros.rollAptitude("init")
*
* game.bol.macros.rollWeapon("Épée courte") // by name (partial match)
* game.bol.macros.rollWeapon(0) // by index (first weapon)
*
* game.bol.macros.rollSpell("Boule de feu") // by name (partial match)
* game.bol.macros.rollSpell(0) // by index
*
* game.bol.macros.rollAlchemy("Potion de soin") // by name (partial match)
* game.bol.macros.rollAlchemy(0) // by index
*
* game.bol.macros.rollHoroscope("minor")
* game.bol.macros.rollHoroscope("major")
*
* // Generic dispatcher:
* game.bol.macros.roll("attribute", "vigor")
* game.bol.macros.roll("aptitude", "melee")
* game.bol.macros.roll("weapon", "Épée courte")
* game.bol.macros.roll("spell", "Boule de feu")
* game.bol.macros.roll("alchemy", 0)
* game.bol.macros.roll("horoscope", "minor")
*/
static getSpeakersActor = function(){
// Vérifie qu'un seul token est sélectionné
const tokens = canvas.tokens.controlled;
export class Macros {
/* -------------------------------------------- */
/**
* Resolves the actor for macro use:
* - If multiple tokens are selected error (always)
* - If exactly one token is selected use it (GM or player)
* - If no token selected and user is GM error (GM must select a token)
* - If no token selected and user is a player use their assigned character
* @returns {Actor|null}
*/
static getSpeakersActor() {
const tokens = canvas.tokens?.controlled ?? []
if (tokens.length > 1) {
ui.notifications.warn(game.i18n.localize('BOL.notification.MacroMultipleTokensSelected'));
return null;
ui.notifications.warn(game.i18n.localize('BOL.notification.MacroMultipleTokensSelected'))
return null
}
const speaker = ChatMessage.getSpeaker();
let actor;
// Si un token est sélectionné, le prendre comme acteur cible
if (speaker.token) actor = game.actors.tokens[speaker.token];
// Sinon prendre l'acteur par défaut pour l'utilisateur courrant
if (!actor) actor = game.actors.get(speaker.actor);
return actor;
if (tokens.length === 1) {
return tokens[0].actor ?? null
}
static rollMacro = async function (rollType, key, adv, mod){
const actor = this.getSpeakersActor();
// Several tokens selected
if (actor === null) return;
// No token selected
if (actor === undefined) return ui.notifications.error(game.i18n.localize("BOL.notification.MacroNoTokenSelected"));
const actorData = {};
actorData.data = {
features : actor.buildFeatures()
};
if(rollType === "attribute") {
let attribute = eval(`actor.system.attributes.${key}`);
let rollLabel = (attribute.label) ? game.i18n.localize(attribute.label) : null;
let description = actor.name + " - " + game.i18n.localize('BOL.ui.attributeCheck') + " - " + game.i18n.localize(attribute.label) ;
BoLRoll.attributeRollDialog(actor, actorData, attribute, rollLabel, description, adv, mod);
if (game.user.isGM) {
ui.notifications.error(game.i18n.localize("BOL.notification.MacroNoTokenSelected"))
return null
}
else if(rollType === "aptitude") {
let aptitude = eval(`actor.system.aptitudes.${key}`);
let rollLabel = (aptitude.label) ? game.i18n.localize(aptitude.label) : null;
let description = actor.name + " - " + game.i18n.localize('BOL.ui.aptitudeCheck') + " - " + game.i18n.localize(aptitude.label) ;
BoLRoll.aptitudeRollDialog(actor, actorData, aptitude, rollLabel, description, adv, mod);
// Player: fall back to their assigned character
const actor = game.user.character
if (!actor) {
ui.notifications.error(game.i18n.localize("BOL.notification.MacroNoTokenSelected"))
return null
}
return actor
}
/* -------------------------------------------- */
/**
* Finds an item on an actor by name (partial, case-insensitive) or index.
* @param {Actor} actor
* @param {string} type - item type: "weapon", "spell", "alchemy"
* @param {string|number} nameOrIndex
* @returns {object|undefined}
*/
static _findItem(actor, type, nameOrIndex) {
const items = actor.items.filter(i => i.type === type)
if (items.length === 0) {
ui.notifications.warn(game.i18n.format("BOL.notification.MacroNoItemFound", { actor: actor.name, type }))
return undefined
}
if (nameOrIndex === undefined || nameOrIndex === null) {
if (items.length === 1) return foundry.utils.duplicate(items[0])
const names = items.map((it, i) => `[${i}] ${it.name}`).join(', ')
ui.notifications.warn(game.i18n.format("BOL.notification.MacroSpecifyNameOrIndex", { names }))
return undefined
}
if (typeof nameOrIndex === "number") {
const item = items[nameOrIndex]
if (!item) {
ui.notifications.warn(game.i18n.format("BOL.notification.MacroBadIndex", { actor: actor.name, index: nameOrIndex, type }))
return undefined
}
return foundry.utils.duplicate(item)
}
const lower = String(nameOrIndex).toLowerCase()
const found = items.find(i => i.name.toLowerCase().includes(lower))
if (!found) {
ui.notifications.warn(game.i18n.format("BOL.notification.MacroItemNotFound", { actor: actor.name, type, name: nameOrIndex }))
return undefined
}
return foundry.utils.duplicate(found)
}
/* -------------------------------------------- */
/**
* Roll an attribute check.
* @param {string} key - "vigor" | "agility" | "mind" | "appeal"
* @param {Actor} [actor] - optional, defaults to selected/owned token
*/
static rollAttribute(key = "vigor", actor = undefined) {
actor = actor ?? this.getSpeakersActor()
if (!actor) return
if (!actor.system.attributes[key]) {
ui.notifications.warn(game.i18n.format("BOL.notification.MacroUnknownAttribute", { key }))
return
}
return BoLRoll.attributeCheck(actor, key)
}
/* -------------------------------------------- */
/**
* Roll an aptitude check.
* @param {string} key - "init" | "melee" | "ranged" | "def"
* @param {Actor} [actor] - optional, defaults to selected/owned token
*/
static rollAptitude(key = "melee", actor = undefined) {
actor = actor ?? this.getSpeakersActor()
if (!actor) return
if (!actor.system.aptitudes[key]) {
ui.notifications.warn(game.i18n.format("BOL.notification.MacroUnknownAptitude", { key }))
return
}
return BoLRoll.aptitudeCheck(actor, key)
}
/* -------------------------------------------- */
/**
* Roll a weapon attack.
* @param {string|number} [nameOrIndex] - weapon name (partial) or index. Defaults to first weapon if only one.
* @param {Actor} [actor] - optional, defaults to selected/owned token
*/
static rollWeapon(nameOrIndex = undefined, actor = undefined) {
actor = actor ?? this.getSpeakersActor()
if (!actor) return
const weapon = this._findItem(actor, "weapon", nameOrIndex)
if (!weapon) return
return BoLRoll.weaponCheckWithWeapon(actor, weapon)
}
/* -------------------------------------------- */
/**
* Roll a spell check.
* @param {string|number} [nameOrIndex] - spell name (partial) or index
* @param {Actor} [actor] - optional, defaults to selected/owned token
*/
static rollSpell(nameOrIndex = undefined, actor = undefined) {
actor = actor ?? this.getSpeakersActor()
if (!actor) return
if ((actor.system.resources.power?.value ?? 1) <= 0) {
ui.notifications.warn(game.i18n.localize("BOL.notification.MacroNoPower"))
return
}
const spell = this._findItem(actor, "spell", nameOrIndex)
if (!spell) return
return BoLRoll.spellCheckWithSpell(actor, spell)
}
/* -------------------------------------------- */
/**
* Roll an alchemy check.
* @param {string|number} [nameOrIndex] - alchemy item name (partial) or index
* @param {Actor} [actor] - optional, defaults to selected/owned token
*/
static rollAlchemy(nameOrIndex = undefined, actor = undefined) {
actor = actor ?? this.getSpeakersActor()
if (!actor) return
const alchemy = this._findItem(actor, "alchemy", nameOrIndex)
if (!alchemy) return
return BoLRoll.alchemyCheckWithItem(actor, alchemy)
}
/* -------------------------------------------- */
/**
* Roll a horoscope check.
* @param {"minor"|"major"} [type="minor"]
* @param {Actor} [actor] - optional, defaults to selected/owned token
*/
static rollHoroscope(type = "minor", actor = undefined) {
actor = actor ?? this.getSpeakersActor()
if (!actor) return
return BoLRoll.horoscopeCheck(actor, undefined, type)
}
/* -------------------------------------------- */
/**
* Generic roll dispatcher.
* @param {"attribute"|"aptitude"|"weapon"|"spell"|"alchemy"|"horoscope"} type
* @param {string|number} [key] - attribute/aptitude key, item name/index, or horoscope type
* @param {Actor} [actor] - optional, defaults to selected/owned token
*/
static roll(type, key = undefined, actor = undefined) {
switch (type) {
case "attribute": return this.rollAttribute(key ?? "vigor", actor)
case "aptitude": return this.rollAptitude(key ?? "melee", actor)
case "weapon": return this.rollWeapon(key, actor)
case "spell": return this.rollSpell(key, actor)
case "alchemy": return this.rollAlchemy(key, actor)
case "horoscope": return this.rollHoroscope(key ?? "minor", actor)
default:
ui.notifications.warn(game.i18n.format("BOL.notification.MacroUnknownRollType", { type }))
}
}
/* -------------------------------------------- */
// Kept for backward-compat (previously called by old macros)
static rollMacro = async function (rollType, key) {
const actor = Macros.getSpeakersActor()
if (!actor) return
return Macros.roll(rollType, key, actor)
}
}
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001084
MANIFEST-001239
+7 -11
View File
@@ -1,11 +1,7 @@
2026/03/16-19:46:09.197185 7f766a3fe6c0 Delete type=3 #1
2026/03/16-20:16:08.421989 7f7668bfb6c0 Level-0 table #1087: started
2026/03/16-20:16:08.422032 7f7668bfb6c0 Level-0 table #1087: 0 bytes OK
2026/03/16-20:16:08.428629 7f7668bfb6c0 Delete type=0 #1085
2026/03/16-20:16:08.454903 7f7668bfb6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 283 : 1
2026/03/16-20:16:08.454928 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.459641 7f7668bfb6c0 Generated table #1088@0: 24 keys, 28007 bytes
2026/03/16-20:16:08.459663 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 28007 bytes
2026/03/16-20:16:08.466040 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.466219 7f7668bfb6c0 Delete type=2 #774
2026/03/16-20:16:08.488702 7f7668bfb6c0 Manual compaction at level-0 from '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 283 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2026/08/04-08:21:29.571109 7f3591bfd6c0 Recovering log #1238
2026/08/04-08:21:29.591159 7f3591bfd6c0 Delete type=0 #1238
2026/08/04-08:21:29.591228 7f3591bfd6c0 Delete type=3 #1237
2026/08/04-09:53:52.957051 7f3590bfb6c0 Level-0 table #1242: started
2026/08/04-09:53:52.957089 7f3590bfb6c0 Level-0 table #1242: 0 bytes OK
2026/08/04-09:53:52.998497 7f3590bfb6c0 Delete type=0 #1240
2026/08/04-09:53:53.115038 7f3590bfb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
+3 -4
View File
@@ -1,4 +1,3 @@
2026/03/16-19:46:09.175786 7f766a3fe6c0 Log #1082: 0 ops saved to Table #1083 OK
2026/03/16-19:46:09.176080 7f766a3fe6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/aides-de-jeu/001082.log: OK
2026/03/16-19:46:09.177100 7f766a3fe6c0 Table #774: 24 entries OK
2026/03/16-19:46:09.180960 7f766a3fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/aides-de-jeu; recovered 1 files; 28007 bytes. Some data may have been lost. ****
2026/08/04-08:20:57.432442 7f5160dfe6c0 Recovering log #1235
2026/08/04-08:20:57.444689 7f5160dfe6c0 Delete type=3 #1233
2026/08/04-08:20:57.444770 7f5160dfe6c0 Delete type=0 #1235
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000989
MANIFEST-001138
+7 -11
View File
@@ -1,11 +1,7 @@
2026/03/16-19:46:09.143692 7f7669bfd6c0 Delete type=3 #1
2026/03/16-20:16:08.436084 7f7668bfb6c0 Level-0 table #992: started
2026/03/16-20:16:08.436127 7f7668bfb6c0 Level-0 table #992: 0 bytes OK
2026/03/16-20:16:08.443698 7f7668bfb6c0 Delete type=0 #990
2026/03/16-20:16:08.477884 7f7668bfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at '!items!xhEcsi3WHjbt2ro9' @ 42 : 1
2026/03/16-20:16:08.477902 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.481701 7f7668bfb6c0 Generated table #993@0: 6 keys, 5424 bytes
2026/03/16-20:16:08.481748 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 5424 bytes
2026/03/16-20:16:08.488315 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.488463 7f7668bfb6c0 Delete type=2 #679
2026/03/16-20:16:08.488751 7f7668bfb6c0 Manual compaction at level-0 from '!items!xhEcsi3WHjbt2ro9' @ 42 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2026/08/04-08:21:29.528298 7f3591bfd6c0 Recovering log #1136
2026/08/04-08:21:29.545330 7f3591bfd6c0 Delete type=3 #1134
2026/08/04-08:21:29.545404 7f3591bfd6c0 Delete type=0 #1136
2026/08/04-09:53:52.998701 7f3590bfb6c0 Level-0 table #1141: started
2026/08/04-09:53:52.998737 7f3590bfb6c0 Level-0 table #1141: 0 bytes OK
2026/08/04-09:53:53.035632 7f3590bfb6c0 Delete type=0 #1139
2026/08/04-09:53:53.115056 7f3590bfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/03/16-19:46:09.120613 7f7669bfd6c0 Log #987: 0 ops saved to Table #988 OK
2026/03/16-19:46:09.120850 7f7669bfd6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/armors/000987.log: OK
2026/03/16-19:46:09.121424 7f7669bfd6c0 Table #679: 6 entries OK
2026/03/16-19:46:09.125224 7f7669bfd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/armors; recovered 1 files; 5424 bytes. Some data may have been lost. ****
2026/08/03-06:19:48.750852 7f0ff57ff6c0 Recovering log #1132
2026/08/03-06:19:48.761758 7f0ff57ff6c0 Delete type=3 #1130
2026/08/03-06:19:48.761842 7f0ff57ff6c0 Delete type=0 #1132
2026/08/03-06:38:26.817856 7f0fa6ffd6c0 Level-0 table #1137: started
2026/08/03-06:38:26.817889 7f0fa6ffd6c0 Level-0 table #1137: 0 bytes OK
2026/08/03-06:38:26.824151 7f0fa6ffd6c0 Delete type=0 #1135
2026/08/03-06:38:26.824513 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001083
MANIFEST-001232
+7 -11
View File
@@ -1,11 +1,7 @@
2026/03/16-19:46:08.857890 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.265157 7f7668bfb6c0 Level-0 table #1086: started
2026/03/16-20:16:08.265207 7f7668bfb6c0 Level-0 table #1086: 0 bytes OK
2026/03/16-20:16:08.272133 7f7668bfb6c0 Delete type=0 #1084
2026/03/16-20:16:08.299945 7f7668bfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at '!items!zgspy1QKaxdEetEw' @ 533 : 1
2026/03/16-20:16:08.299966 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.305068 7f7668bfb6c0 Generated table #1087@0: 61 keys, 20970 bytes
2026/03/16-20:16:08.305111 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 20970 bytes
2026/03/16-20:16:08.311829 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.312005 7f7668bfb6c0 Delete type=2 #843
2026/03/16-20:16:08.335606 7f7668bfb6c0 Manual compaction at level-0 from '!items!zgspy1QKaxdEetEw' @ 533 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2026/08/04-08:21:29.355610 7f3591bfd6c0 Recovering log #1230
2026/08/04-08:21:29.376426 7f3591bfd6c0 Delete type=3 #1228
2026/08/04-08:21:29.376535 7f3591bfd6c0 Delete type=0 #1230
2026/08/04-09:53:52.678512 7f3590bfb6c0 Level-0 table #1235: started
2026/08/04-09:53:52.678542 7f3590bfb6c0 Level-0 table #1235: 0 bytes OK
2026/08/04-09:53:52.734515 7f3590bfb6c0 Delete type=0 #1233
2026/08/04-09:53:52.803577 7f3590bfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/03/16-19:46:08.539383 7f766abff6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/03/16-19:46:08.539570 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boons/001081.log: OK
2026/03/16-19:46:08.540406 7f766abff6c0 Table #843: 61 entries OK
2026/03/16-19:46:08.544540 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boons; recovered 1 files; 20970 bytes. Some data may have been lost. ****
2026/08/03-06:19:48.636406 7f0ff4ffe6c0 Recovering log #1226
2026/08/03-06:19:48.647892 7f0ff4ffe6c0 Delete type=3 #1224
2026/08/03-06:19:48.647974 7f0ff4ffe6c0 Delete type=0 #1226
2026/08/03-06:38:26.769280 7f0fa6ffd6c0 Level-0 table #1231: started
2026/08/03-06:38:26.769359 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
2026/08/03-06:38:26.776073 7f0fa6ffd6c0 Delete type=0 #1229
2026/08/03-06:38:26.797077 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001231
+7 -11
View File
@@ -1,11 +1,7 @@
2026/03/16-19:46:08.909016 7f76693fc6c0 Delete type=3 #1
2026/03/16-20:16:08.272330 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.272372 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.279546 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.312273 7f7668bfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at '!items!yofwG0YrsL902G77' @ 64 : 1
2026/03/16-20:16:08.312291 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.316030 7f7668bfb6c0 Generated table #1086@0: 8 keys, 2453 bytes
2026/03/16-20:16:08.316070 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 2453 bytes
2026/03/16-20:16:08.323057 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.323234 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.335626 7f7668bfb6c0 Manual compaction at level-0 from '!items!yofwG0YrsL902G77' @ 64 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2026/08/04-08:21:29.380656 7f35913fc6c0 Recovering log #1229
2026/08/04-08:21:29.401993 7f35913fc6c0 Delete type=3 #1227
2026/08/04-08:21:29.402068 7f35913fc6c0 Delete type=0 #1229
2026/08/04-09:53:52.630733 7f3590bfb6c0 Level-0 table #1234: started
2026/08/04-09:53:52.630808 7f3590bfb6c0 Level-0 table #1234: 0 bytes OK
2026/08/04-09:53:52.678363 7f3590bfb6c0 Delete type=0 #1232
2026/08/04-09:53:52.803556 7f3590bfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/03/16-19:46:08.865328 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:08.865565 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boonsflawscreatures/001080.log: OK
2026/03/16-19:46:08.865990 7f76693fc6c0 Table #772: 8 entries OK
2026/03/16-19:46:08.869744 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boonsflawscreatures; recovered 1 files; 2453 bytes. Some data may have been lost. ****
2026/08/03-06:19:48.651558 7f0ff57ff6c0 Recovering log #1225
2026/08/03-06:19:48.662260 7f0ff57ff6c0 Delete type=3 #1223
2026/08/03-06:19:48.662354 7f0ff57ff6c0 Delete type=0 #1225
2026/08/03-06:38:26.782903 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.782939 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.790042 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.797110 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001231
+7 -11
View File
@@ -1,11 +1,7 @@
2026/03/16-19:46:09.002243 7f76693fc6c0 Delete type=3 #1
2026/03/16-20:16:08.279807 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.279852 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.287482 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.323479 7f7668bfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at '!items!zxY3sW0iCJBvwjOS' @ 215 : 1
2026/03/16-20:16:08.323495 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.328403 7f7668bfb6c0 Generated table #1086@0: 27 keys, 42639 bytes
2026/03/16-20:16:08.328434 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 42639 bytes
2026/03/16-20:16:08.335062 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.335267 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.335642 7f7668bfb6c0 Manual compaction at level-0 from '!items!zxY3sW0iCJBvwjOS' @ 215 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2026/08/04-08:21:29.426266 7f35923fe6c0 Recovering log #1229
2026/08/04-08:21:29.442494 7f35923fe6c0 Delete type=3 #1227
2026/08/04-08:21:29.442560 7f35923fe6c0 Delete type=0 #1229
2026/08/04-09:53:52.882869 7f3590bfb6c0 Level-0 table #1234: started
2026/08/04-09:53:52.882905 7f3590bfb6c0 Level-0 table #1234: 0 bytes OK
2026/08/04-09:53:52.919503 7f3590bfb6c0 Delete type=0 #1232
2026/08/04-09:53:52.956792 7f3590bfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/03/16-19:46:08.971933 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:08.972193 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/careers/001080.log: OK
2026/03/16-19:46:08.973605 7f76693fc6c0 Table #772: 27 entries OK
2026/03/16-19:46:08.977409 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/careers; recovered 1 files; 42639 bytes. Some data may have been lost. ****
2026/08/03-06:19:48.681657 7f0ff4ffe6c0 Recovering log #1225
2026/08/03-06:19:48.692268 7f0ff4ffe6c0 Delete type=3 #1223
2026/08/03-06:19:48.692351 7f0ff4ffe6c0 Delete type=0 #1225
2026/08/03-06:38:26.790164 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.790190 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.796894 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.797197 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001080
MANIFEST-001229
+7 -11
View File
@@ -1,11 +1,7 @@
2026/03/16-19:46:09.384452 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.596026 7f7668bfb6c0 Level-0 table #1083: started
2026/03/16-20:16:08.596072 7f7668bfb6c0 Level-0 table #1083: 0 bytes OK
2026/03/16-20:16:08.604284 7f7668bfb6c0 Delete type=0 #1081
2026/03/16-20:16:08.616512 7f7668bfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at '!items!zwSNMO9HpiqUCMt8' @ 24 : 1
2026/03/16-20:16:08.616529 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.620595 7f7668bfb6c0 Generated table #1084@0: 4 keys, 990 bytes
2026/03/16-20:16:08.620628 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 990 bytes
2026/03/16-20:16:08.627657 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.627801 7f7668bfb6c0 Delete type=2 #770
2026/03/16-20:16:08.667532 7f7668bfb6c0 Manual compaction at level-0 from '!items!zwSNMO9HpiqUCMt8' @ 24 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2026/08/04-08:21:29.736235 7f3592bff6c0 Recovering log #1227
2026/08/04-08:21:29.753212 7f3592bff6c0 Delete type=3 #1225
2026/08/04-08:21:29.753288 7f3592bff6c0 Delete type=0 #1227
2026/08/04-09:53:53.269403 7f3590bfb6c0 Level-0 table #1232: started
2026/08/04-09:53:53.269440 7f3590bfb6c0 Level-0 table #1232: 0 bytes OK
2026/08/04-09:53:53.308866 7f3590bfb6c0 Delete type=0 #1230
2026/08/04-09:53:53.444562 7f3590bfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/03/16-19:46:09.364109 7f766abff6c0 Log #1078: 0 ops saved to Table #1079 OK
2026/03/16-19:46:09.364398 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/effets-exemples/001078.log: OK
2026/03/16-19:46:09.364562 7f766abff6c0 Table #770: 4 entries OK
2026/03/16-19:46:09.368408 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/effets-exemples; recovered 1 files; 990 bytes. Some data may have been lost. ****
2026/08/03-06:19:48.879803 7f0ff57ff6c0 Recovering log #1223
2026/08/03-06:19:48.890084 7f0ff57ff6c0 Delete type=3 #1221
2026/08/03-06:19:48.890177 7f0ff57ff6c0 Delete type=0 #1223
2026/08/03-06:38:26.891447 7f0fa6ffd6c0 Level-0 table #1228: started
2026/08/03-06:38:26.891477 7f0fa6ffd6c0 Level-0 table #1228: 0 bytes OK
2026/08/03-06:38:26.898218 7f0fa6ffd6c0 Delete type=0 #1226
2026/08/03-06:38:26.913139 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001083
MANIFEST-001232
+7 -11
View File
@@ -1,11 +1,7 @@
2026/03/16-19:46:09.085657 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.351512 7f7668bfb6c0 Level-0 table #1086: started
2026/03/16-20:16:08.351558 7f7668bfb6c0 Level-0 table #1086: 0 bytes OK
2026/03/16-20:16:08.358533 7f7668bfb6c0 Delete type=0 #1084
2026/03/16-20:16:08.390133 7f7668bfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at '!items!yE8UH6YAgNGjKDEu' @ 499 : 1
2026/03/16-20:16:08.390150 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.394184 7f7668bfb6c0 Generated table #1087@0: 43 keys, 9886 bytes
2026/03/16-20:16:08.394206 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 9886 bytes
2026/03/16-20:16:08.401465 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.401654 7f7668bfb6c0 Delete type=2 #773
2026/03/16-20:16:08.413820 7f7668bfb6c0 Manual compaction at level-0 from '!items!yE8UH6YAgNGjKDEu' @ 499 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2026/08/04-08:21:29.488367 7f3592bff6c0 Recovering log #1230
2026/08/04-08:21:29.504785 7f3592bff6c0 Delete type=3 #1228
2026/08/04-08:21:29.504886 7f3592bff6c0 Delete type=0 #1230
2026/08/04-09:53:52.803860 7f3590bfb6c0 Level-0 table #1235: started
2026/08/04-09:53:52.803910 7f3590bfb6c0 Level-0 table #1235: 0 bytes OK
2026/08/04-09:53:52.842964 7f3590bfb6c0 Delete type=0 #1233
2026/08/04-09:53:52.956755 7f3590bfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/03/16-19:46:09.065759 7f766abff6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/03/16-19:46:09.065989 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/equipment/001081.log: OK
2026/03/16-19:46:09.066756 7f766abff6c0 Table #773: 43 entries OK
2026/03/16-19:46:09.070319 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/equipment; recovered 1 files; 9886 bytes. Some data may have been lost. ****
2026/08/03-06:19:48.722782 7f0ff57ff6c0 Recovering log #1226
2026/08/03-06:19:48.732938 7f0ff57ff6c0 Delete type=3 #1224
2026/08/03-06:19:48.733013 7f0ff57ff6c0 Delete type=0 #1226
2026/08/03-06:38:26.811182 7f0fa6ffd6c0 Level-0 table #1231: started
2026/08/03-06:38:26.811213 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
2026/08/03-06:38:26.817698 7f0fa6ffd6c0 Delete type=0 #1229
2026/08/03-06:38:26.824339 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More