22 lines
		
	
	
		
			432 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			432 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import FTLNomadItemSheet from "./base-item-sheet.mjs"
 | |
| 
 | |
| export default class FTLNomadWeaponSheet extends FTLNomadItemSheet {
 | |
|   /** @override */
 | |
|   static DEFAULT_OPTIONS = {
 | |
|     classes: ["weapon"],
 | |
|     position: {
 | |
|       width: 620,
 | |
|     },
 | |
|     window: {
 | |
|       contentClasses: ["weapon-content"],
 | |
|     },
 | |
|   }
 | |
| 
 | |
|   /** @override */
 | |
|   static PARTS = {
 | |
|     main: {
 | |
|       template: "systems/fvtt-ftl-nomad/templates/weapon.hbs",
 | |
|     },
 | |
|   }
 | |
| }
 |