29 lines
		
	
	
		
			666 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			666 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import FTLNomadItemSheet from "./base-item-sheet.mjs"
 | |
| 
 | |
| export default class FTLNomadTalentSheet extends FTLNomadItemSheet {
 | |
|   /** @override */
 | |
|   static DEFAULT_OPTIONS = {
 | |
|     classes: ["talent"],
 | |
|     position: {
 | |
|       width: 600,
 | |
|     },
 | |
|     window: {
 | |
|       contentClasses: ["talent-content"],
 | |
|     },
 | |
|   }
 | |
| 
 | |
|   /** @override */
 | |
|   static PARTS = {
 | |
|     main: {
 | |
|       template: "systems/fvtt-ftl-nomad/templates/talent.hbs",
 | |
|     },
 | |
|   }
 | |
| 
 | |
|   /** @override */
 | |
|   async _prepareContext() {
 | |
|     const context = await super._prepareContext()
 | |
|     context.enrichedDescription = await TextEditor.enrichHTML(this.document.system.description, { async: true })
 | |
|     return context
 | |
|   }
 | |
| }
 |