File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ export interface Monster {
5454 bonus_actions ?: Trait [ ] ;
5555 legendary_actions ?: Trait [ ] ;
5656 reactions ?: Trait [ ] ;
57+ lair_actions ?: Trait [ ] ;
5758 monster ?: string ;
5859 creature ?: string ;
5960 source ?: string ;
Original file line number Diff line number Diff line change @@ -627,6 +627,15 @@ return "";`
627627 heading : "Reactions" ,
628628 conditioned : true ,
629629
630+ dice : true
631+ } ,
632+ {
633+ type : "traits" ,
634+ id : nanoid ( ) ,
635+ properties : [ "lair_actions" ] ,
636+ heading : "Lair Actions" ,
637+ conditioned : true ,
638+
630639 dice : true
631640 }
632641] ;
Original file line number Diff line number Diff line change 44 ExtraButtonComponent ,
55 TextComponent
66 } from " obsidian" ;
7+ import type { Layout , StatblockItem } from " src/layouts/types" ;
78
8- import type { Layout , StatblockItem } from " src/data/constants" ;
99 import type StatBlockPlugin from " src/main" ;
1010 import { createEventDispatcher } from " svelte" ;
1111
Original file line number Diff line number Diff line change 11<script lang =" ts" >
2- import type { StatblockItem } from " src/data/constants" ;
3-
42 import PropertyBlock from " ./PropertyBlock.svelte" ;
53 import type StatBlockPlugin from " src/main" ;
64 import { ExtraButtonComponent } from " obsidian" ;
75 import { createEventDispatcher } from " svelte" ;
86 import { BlockModal } from " ./block" ;
7+ import type { StatblockItem } from " src/layouts/types" ;
98
109 export let block: StatblockItem ;
1110 export let plugin: StatBlockPlugin ;
You can’t perform that action at this time.
0 commit comments