| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | <template> | 
					
						
							| 
									
										
										
										
											2020-04-05 14:38:20 +02:00
										 |  |  |   <main class="page content"> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  |     <div class="theme-default-content"> | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  |       <template v-if="!hideTitle"> | 
					
						
							|  |  |  |         <h1 v-if="!isList">{{ spell.title }}</h1> | 
					
						
							|  |  |  |         <h2 v-else>{{ spell.title }}</h2> | 
					
						
							|  |  |  |       </template> | 
					
						
							| 
									
										
										
										
											2020-04-01 19:34:06 +02:00
										 |  |  |       <div class="spell-details"> | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  |         <div class="spell-school-level title" v-html="displaySchoolLevel()"></div> | 
					
						
							|  |  |  |         <div class="spell-casting-time"><strong>Temps d'incantation</strong> : {{ spell.frontmatter.casting_time }}</div> | 
					
						
							|  |  |  |         <div class="spell-range"><strong>Portée</strong> : {{ spell.frontmatter.range }}</div> | 
					
						
							| 
									
										
										
										
											2020-04-01 19:34:06 +02:00
										 |  |  |         <div class="spell-components"><strong>Composantes</strong> : | 
					
						
							| 
									
										
										
										
											2020-11-19 10:05:12 +01:00
										 |  |  |           <template v-if="spell.frontmatter.components.verbal">V</template><template v-if="spell.frontmatter.components.verbal && (spell.frontmatter.components.somatic || spell.frontmatter.components.material)">,</template> | 
					
						
							|  |  |  |           <template v-if="spell.frontmatter.components.somatic">S</template><template v-if="spell.frontmatter.components.somatic && spell.frontmatter.components.material">,</template> | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  |           <template v-if="spell.frontmatter.components.material">M</template> | 
					
						
							|  |  |  |           <template v-if="spell.frontmatter.components.material && spell.frontmatter.components.materials">({{spell.frontmatter.components.materials}})</template> | 
					
						
							|  |  |  |         </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"> | 
					
						
							| 
									
										
										
										
											2023-04-14 16:39:56 +02:00
										 |  |  |           <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> | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  |           <template v-if="spell.frontmatter.customClasses"> | 
					
						
							|  |  |  |             <template>{{ spell.frontmatter.customClasses }}</template> | 
					
						
							|  |  |  |           </template> | 
					
						
							| 
									
										
										
										
											2020-04-01 19:34:06 +02:00
										 |  |  |         </div> | 
					
						
							|  |  |  |       </div> | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2020-04-01 19:34:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  |     <template v-if="!isShort"> | 
					
						
							|  |  |  |       <Content v-if="!spell.custom" :pageKey="spell.key" class="mt-4" /> | 
					
						
							|  |  |  |       <div v-else v-html="md.render(spell.content)" class="mt-4"></div> | 
					
						
							|  |  |  |     </template> | 
					
						
							|  |  |  |     <div v-else v-html="spell.frontmatter.description" class="mt-4"></div> | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-14 16:39:56 +02:00
										 |  |  |     <p v-if="spell.frontmatter.source" class="source">Source : <em>{{ spell.frontmatter.source }}</em></p> | 
					
						
							| 
									
										
										
										
											2020-06-10 19:14:34 +02:00
										 |  |  |     <p v-if="spell.author" class="source">Auteur : <em>{{ spell.author }}</em></p> | 
					
						
							| 
									
										
										
										
											2020-04-02 14:33:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  |   </main> | 
					
						
							|  |  |  | </template> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <script> | 
					
						
							| 
									
										
										
										
											2020-04-05 14:38:20 +02:00
										 |  |  | import { displaySchoolLevel } from '@theme/util/spellHelpers' | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  | import MarkdownIt from 'markdown-it' | 
					
						
							| 
									
										
										
										
											2021-03-12 19:28:30 +01:00
										 |  |  | import { handleTooltips } from '@theme/util' | 
					
						
							| 
									
										
										
										
											2020-04-05 14:38:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | export default { | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  |   name: 'Spell', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   props: ['spell', 'isList', 'hideTitle', 'isShort'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   data () { | 
					
						
							|  |  |  |     return { | 
					
						
							|  |  |  |       md: new MarkdownIt() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 14:38:20 +02:00
										 |  |  |   methods: { | 
					
						
							|  |  |  |     displaySchoolLevel () { | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  |       return displaySchoolLevel(this.spell.frontmatter) | 
					
						
							| 
									
										
										
										
											2020-04-05 14:38:20 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-04-22 11:17:05 +02:00
										 |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   mounted () { | 
					
						
							|  |  |  |     // console.log(this.spell)
 | 
					
						
							| 
									
										
										
										
											2021-03-13 16:05:08 +01:00
										 |  |  |     let self = this | 
					
						
							| 
									
										
										
										
											2021-03-12 19:28:30 +01:00
										 |  |  |     setTimeout(function () { | 
					
						
							| 
									
										
										
										
											2021-03-13 16:05:08 +01:00
										 |  |  |       handleTooltips({pages:self.$site.pages}) | 
					
						
							| 
									
										
										
										
											2021-03-12 19:28:30 +01:00
										 |  |  |     }, 100); | 
					
						
							|  |  |  |     this.$router.afterEach(() => { | 
					
						
							|  |  |  |       setTimeout(function () { | 
					
						
							| 
									
										
										
										
											2021-03-13 16:05:08 +01:00
										 |  |  |         handleTooltips({pages:self.$site.pages}) | 
					
						
							| 
									
										
										
										
											2021-03-12 19:28:30 +01:00
										 |  |  |       }, 100) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2020-04-05 14:38:20 +02:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 14:26:19 +02:00
										 |  |  | <style lang="scss"> | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | </style> |