1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-31 21:44:20 +00:00

traductions de contenus OGL Kobold Press

This commit is contained in:
Maxime Moraine 2023-04-14 16:39:56 +02:00
parent 164276c042
commit e56e8d2cd5
46 changed files with 33178 additions and 35 deletions

View file

@ -22,7 +22,8 @@
:color="challenge.color"
:value="challengeRate"
></v-progress-linear>
<span class="subtitle-2">PX : </span>{{ totalXP }} ({{ Math.floor(totalXP / pc) }} par PJ)
<span class="subtitle-2">PX : </span>{{ totalXP }} ({{ Math.floor(totalXP / pc) }} par PJ)<br>
<span class="subtitle-2">Points de combat : </span>{{ totalPC }}
</div>
<v-row class="d-flex align-center my-0" v-for="(c, idx) in creatures">
<v-col class="px-0 py-1">

View file

@ -18,7 +18,7 @@
</div>
<div class="spell-duration"><strong>Durée</strong> : <span v-if="spell.frontmatter.concentration">concentration, </span>{{ spell.frontmatter.duration }}</div>
<div class="spell-classes" v-if="!isShort">
<strong>Classe</strong> : <span v-for="(c, idx) in spell.frontmatter.classes" :key="idx">{{c}}<template v-if="idx != spell.frontmatter.classes.length-1">, </template><template v-if="idx == spell.frontmatter.classes.length-1 && spell.frontmatter.customClasses">, </template></span>
<template v-if="spell.frontmatter.classes"><strong>Classe</strong> : <span v-for="(c, idx) in spell.frontmatter.classes" :key="idx">{{c}}<template v-if="idx != spell.frontmatter.classes.length-1">, </template><template v-if="idx == spell.frontmatter.classes.length-1 && spell.frontmatter.customClasses">, </template></span></template>
<template v-if="spell.frontmatter.customClasses">
<template>{{ spell.frontmatter.customClasses }}</template>
</template>
@ -32,7 +32,7 @@
</template>
<div v-else v-html="spell.frontmatter.description" class="mt-4"></div>
<!-- <p v-if="spell.frontmatter.source" class="source">Source : <em>{{ spell.frontmatter.source }}</em></p> -->
<p v-if="spell.frontmatter.source" class="source">Source : <em>{{ spell.frontmatter.source }}</em></p>
<p v-if="spell.author" class="source">Auteur : <em>{{ spell.author }}</em></p>
</main>