Scripts englisch statt französisch

This commit is contained in:
alzer
2025-05-15 23:03:43 +02:00
parent 0bcbc29f0f
commit d80779f206
503 changed files with 10469 additions and 1616 deletions
+5 -5
View File
@@ -13,17 +13,17 @@
let personalityQuirk = (await game.wfrp4e.tables.rollTable("personality-quirks", {hideDSN: true})).text;
let templateItem = await warhammer.utility.findItemId(templateMap[template._id]);
let templateItem = await game.wfrp4e.utility.findItemId(templateMap[template._id]);
let bio =
`
<p><strong>Template</strong>: ${template.text}</p>
<p><strong>Trait physique</strong>: ${physicalQuirk}</p>
<p><strong>Ethique</strong>: ${workEthic}</p>
<p><strong>Trait de personnalité</strong>: ${personalityQuirk}</p>
<p><strong>Phsyical Quirk</strong>: ${physicalQuirk}</p>
<p><strong>Work Ethic</strong>: ${workEthic}</p>
<p><strong>Personality Quirk</strong>: ${personalityQuirk}</p>
`
this.script.message(bio, {whisper : ChatMessage.getWhisperRecipients("GM")})
this.script.scriptMessage(bio, {whisper : ChatMessage.getWhisperRecipients("GM")})
await this.actor.update({"system.details.gmnotes.value" : bio})