mirror of
https://github.com/runa-rist/hephaistos-importer.git
synced 2026-07-22 11:40:30 +00:00
23 lines
721 B
TypeScript
23 lines
721 B
TypeScript
export interface HephaistosImporterPluginSettings {
|
|
// ids of characters to import
|
|
characterIds: string[];
|
|
// folder containing character markdown files
|
|
charactersFolder: string;
|
|
// should data be added as Obsidian links rather than strings
|
|
createLinks: boolean;
|
|
// create Initiative Tracker fields
|
|
enableInitiativeTracker: boolean;
|
|
// format for Fantasy Statblocks
|
|
statblocksFormat: boolean;
|
|
// layout to add if none is defined
|
|
statblockLayout: string;
|
|
}
|
|
|
|
export const DEFAULT_SETTINGS: HephaistosImporterPluginSettings = {
|
|
characterIds: [],
|
|
charactersFolder: "Characters",
|
|
createLinks: false,
|
|
enableInitiativeTracker: false,
|
|
statblocksFormat: false,
|
|
statblockLayout: "Starfinder Character Layout",
|
|
};
|