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

mise à jour feuilles de personnage

This commit is contained in:
Maxime Moraine 2021-03-22 16:33:14 +01:00
parent 65ebb7f255
commit 6a4a79f9e6
3 changed files with 37 additions and 1 deletions

View file

@ -74,7 +74,7 @@
<div class="schools-filter mb-1" v-if="selectedSchools.length > 0">
<strong>Écoles de magie</strong> : <v-chip class="mr-1" v-for="(school, idx) in selectedSchools">{{ school }}</v-chip>
</div>
<div class="compoments-filter mb-1" v-if="componentVerbal !== undefined || componentSomatic !== undefined || componentMaterial !== undefined">
<div class="components-filter mb-1" v-if="componentVerbal !== undefined || componentSomatic !== undefined || componentMaterial !== undefined">
<strong>Composantes d'incantation</strong> :
<v-chip class="mr-1" v-if="componentVerbal === true" dark color="green">verbales</v-chip>
<v-chip class="mr-1" v-if="componentVerbal === false" dark color="red">verbales</v-chip>
@ -358,6 +358,42 @@ export default {
})
}
// let csv = ''
// csv += "niveau;nom;école;temps d'incantation;rituel;durée;concentration;portée;composantes;classes;description\n"
// for (var spell of results) {
// let components = ''
// if (spell.frontmatter.components.verbal) {
// components += 'V'
// if (spell.frontmatter.components.somatic || spell.frontmatter.components.material) {
// components += ', '
// }
// }
// if (spell.frontmatter.components.somatic) {
// components += 'S'
// if (spell.frontmatter.components.material) {
// components += ', '
// }
// }
// if (spell.frontmatter.components.material) {
// components += 'M'
// if (spell.frontmatter.components.materials) {
// components += ' (' + spell.frontmatter.components.materials + ')'
// }
// }
// let concentration = ''
// if (spell.frontmatter.concentration) {
// concentration += 'concentration'
// }
// let ritual = ''
// if (spell.frontmatter.ritual) {
// ritual += 'rituel'
// }
// let classes = spell.frontmatter.classes.join(', ')
//
// csv += spell.frontmatter.level + ';' + spell.title + ';' + spell.frontmatter.school + ';' + spell.frontmatter.casting_time + ';' + ritual + ';' + spell.frontmatter.duration + ';' + concentration + ';' + spell.frontmatter.range + ';' + components + ';' + classes + ';' + '"' + spell.rawContent + '"' + '\n'
// }
// console.log(csv)
return results
}
},