diff --git a/images/icons/.directory b/images/icons/.directory new file mode 100644 index 0000000..1631026 --- /dev/null +++ b/images/icons/.directory @@ -0,0 +1,5 @@ +[Dolphin] +Timestamp=2022,12,4,9,33,49.136 +Version=4 +ViewMode=2 +VisibleRoles=Details_text,Details_size,Details_modificationtime,Details_creationtime,CustomizedDetails diff --git a/images/icons/Action.eps b/images/icons/Action.eps deleted file mode 100644 index c3a7f04..0000000 Binary files a/images/icons/Action.eps and /dev/null differ diff --git a/images/icons/Flash.eps b/images/icons/Flash.eps deleted file mode 100644 index 0f87eb2..0000000 Binary files a/images/icons/Flash.eps and /dev/null differ diff --git a/images/icons/HitPoints.eps b/images/icons/HitPoints.eps deleted file mode 100644 index 93969f3..0000000 Binary files a/images/icons/HitPoints.eps and /dev/null differ diff --git a/images/icons/Intelegence.eps b/images/icons/Intelegence.eps deleted file mode 100644 index 89f95f2..0000000 Binary files a/images/icons/Intelegence.eps and /dev/null differ diff --git a/images/icons/Melee.eps b/images/icons/Melee.eps deleted file mode 100644 index a980009..0000000 Binary files a/images/icons/Melee.eps and /dev/null differ diff --git a/images/icons/Noise.eps b/images/icons/Noise.eps deleted file mode 100644 index b59d36b..0000000 Binary files a/images/icons/Noise.eps and /dev/null differ diff --git a/images/icons/Social.eps b/images/icons/Social.eps deleted file mode 100644 index 1dc99a8..0000000 Binary files a/images/icons/Social.eps and /dev/null differ diff --git a/images/icons/Strength.eps b/images/icons/Strength.eps deleted file mode 100644 index 95f6ad4..0000000 Binary files a/images/icons/Strength.eps and /dev/null differ diff --git a/images/icons/Vehicle.eps b/images/icons/Vehicle.eps deleted file mode 100644 index 7c776aa..0000000 Binary files a/images/icons/Vehicle.eps and /dev/null differ diff --git a/images/icons/ability.webp b/images/icons/ability.webp new file mode 100644 index 0000000..a8cdff1 Binary files /dev/null and b/images/icons/ability.webp differ diff --git a/images/icons/action.webp b/images/icons/action.webp new file mode 100644 index 0000000..9bbb6aa Binary files /dev/null and b/images/icons/action.webp differ diff --git a/images/icons/armor.webp b/images/icons/armor.webp new file mode 100644 index 0000000..1a6914c Binary files /dev/null and b/images/icons/armor.webp differ diff --git a/images/icons/cyber.webp b/images/icons/cyber.webp new file mode 100644 index 0000000..c19db4b Binary files /dev/null and b/images/icons/cyber.webp differ diff --git a/images/icons/equipment.webp b/images/icons/equipment.webp new file mode 100644 index 0000000..6688a58 Binary files /dev/null and b/images/icons/equipment.webp differ diff --git a/images/icons/flash.webp b/images/icons/flash.webp new file mode 100644 index 0000000..326a61e Binary files /dev/null and b/images/icons/flash.webp differ diff --git a/images/icons/genetic.webp b/images/icons/genetic.webp new file mode 100644 index 0000000..3ae9558 Binary files /dev/null and b/images/icons/genetic.webp differ diff --git a/images/icons/hitpoint.webp b/images/icons/hitpoint.webp new file mode 100644 index 0000000..3ae9558 Binary files /dev/null and b/images/icons/hitpoint.webp differ diff --git a/images/icons/intelligence.webp b/images/icons/intelligence.webp new file mode 100644 index 0000000..2a80f76 Binary files /dev/null and b/images/icons/intelligence.webp differ diff --git a/images/icons/melee.webp b/images/icons/melee.webp new file mode 100644 index 0000000..b601a7f Binary files /dev/null and b/images/icons/melee.webp differ diff --git a/images/icons/noise.webp b/images/icons/noise.webp new file mode 100644 index 0000000..dc95d28 Binary files /dev/null and b/images/icons/noise.webp differ diff --git a/images/icons/perk.webp b/images/icons/perk.webp new file mode 100644 index 0000000..4dd8c1e Binary files /dev/null and b/images/icons/perk.webp differ diff --git a/images/icons/skill.webp b/images/icons/skill.webp new file mode 100644 index 0000000..bab3cc4 Binary files /dev/null and b/images/icons/skill.webp differ diff --git a/images/icons/social.webp b/images/icons/social.webp new file mode 100644 index 0000000..5204f1c Binary files /dev/null and b/images/icons/social.webp differ diff --git a/images/icons/strength.webp b/images/icons/strength.webp new file mode 100644 index 0000000..19ff1dc Binary files /dev/null and b/images/icons/strength.webp differ diff --git a/images/icons/vehicle.webp b/images/icons/vehicle.webp new file mode 100644 index 0000000..9b6aeb1 Binary files /dev/null and b/images/icons/vehicle.webp differ diff --git a/modules/dark-stars-actor-sheet.js b/modules/dark-stars-actor-sheet.js index 4178aef..306a4c7 100644 --- a/modules/dark-stars-actor-sheet.js +++ b/modules/dark-stars-actor-sheet.js @@ -13,7 +13,7 @@ export class DarkStarsActorSheet extends ActorSheet { return mergeObject(super.defaultOptions, { classes: ["fvtt-dark-stars", "sheet", "actor"], - template: "systems/fvtt-dark-stars/templates/actor-sheet.html", + template: "systems/fvtt-dark-stars/templates/actor-sheet.hbs", width: 960, height: 720, tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "skills" }], diff --git a/modules/dark-stars-commands.js b/modules/dark-stars-commands.js index f096902..575746e 100644 --- a/modules/dark-stars-commands.js +++ b/modules/dark-stars-commands.js @@ -10,11 +10,11 @@ const __saveFirstToKey = { r: "reflex", f: "fortitude", w: "willpower"} export class DarkStarsCommands { static init() { - if (!game.system.cruciblerpg.commands) { - const crucibleCommands = new DarkStarsCommands(); - crucibleCommands.registerCommand({ path: ["/rtarget"], func: (content, msg, params) => DarkStarsCommands.rollTarget(msg, params), descr: "Launch the target roll window" }); - crucibleCommands.registerCommand({ path: ["/rsave"], func: (content, msg, params) => DarkStarsCommands.rollSave(msg, params), descr: "Performs a save roll" }); - game.system.cruciblerpg.commands = crucibleCommands; + if (!game.system.darkstars.commands) { + const darkStarsCommands = new DarkStarsCommands(); + darkStarsCommands.registerCommand({ path: ["/rtarget"], func: (content, msg, params) => DarkStarsCommands.rollTarget(msg, params), descr: "Launch the target roll window" }); + darkStarsCommands.registerCommand({ path: ["/rsave"], func: (content, msg, params) => DarkStarsCommands.rollSave(msg, params), descr: "Performs a save roll" }); + game.system.darkstars.commands = darkStarsCommands; } } @@ -51,7 +51,7 @@ export class DarkStarsCommands { if (path.length > 0 && path[0] && command.descr && (path.length != 1 || targetTable[path[0]] == undefined)) { return true; } - console.warn("crucibleCommands._validateCommand failed ", targetTable, path, command); + console.warn("darkStarsCommands._validateCommand failed ", targetTable, path, command); return false; } diff --git a/modules/dark-stars-config.js b/modules/dark-stars-config.js index 2b6f7dc..2741361 100644 --- a/modules/dark-stars-config.js +++ b/modules/dark-stars-config.js @@ -1,5 +1,5 @@ -const DARKSTARS_CONFIG = { +export const DARKSTARS_CONFIG = { basebonus : { "csb": "CSB", diff --git a/modules/dark-stars-item-sheet.js b/modules/dark-stars-item-sheet.js index 46c8bfa..6b876fc 100644 --- a/modules/dark-stars-item-sheet.js +++ b/modules/dark-stars-item-sheet.js @@ -11,7 +11,7 @@ export class DarkStarsItemSheet extends ItemSheet { return mergeObject(super.defaultOptions, { classes: ["fvtt-dark-stars", "sheet", "item"], - template: "systems/fvtt-dark-stars/templates/item-sheet.html", + template: "systems/fvtt-dark-stars/templates/items/item-sheet.hbs", dragDrop: [{ dragSelector: null, dropSelector: null }], width: 620, height: 550, @@ -49,12 +49,8 @@ export class DarkStarsItemSheet extends ItemSheet { /* -------------------------------------------- */ async getData() { - if ( this.object.type == "skill") { - DarkStarsUtility.updateSkill(this.object) - } let objectData = duplicate(this.object.system) - let itemData = objectData let formData = { title: this.title, id: this.id, @@ -66,7 +62,8 @@ export class DarkStarsItemSheet extends ItemSheet { weaponSkills: DarkStarsUtility.getWeaponSkills(), shieldSkills: DarkStarsUtility.getShieldSkills(), description: await TextEditor.enrichHTML(this.object.system.description, {async: true}), - data: itemData, + config: game.system.darkstars.config, + system: objectData, limited: this.object.limited, options: this.options, owner: this.document.isOwner, @@ -78,7 +75,6 @@ export class DarkStarsItemSheet extends ItemSheet { return formData; } - /* -------------------------------------------- */ _getHeaderButtons() { let buttons = super._getHeaderButtons(); @@ -107,7 +103,7 @@ export class DarkStarsItemSheet extends ItemSheet { payload: chatData, }); - renderTemplate('systems/fvtt-dark-stars/templates/post-item.html', chatData).then(html => { + renderTemplate('systems/fvtt-dark-stars/templates/items/post-item.hbs', chatData).then(html => { let chatOptions = DarkStarsUtility.chatDataSetup(html); ChatMessage.create(chatOptions) }); @@ -159,7 +155,7 @@ export class DarkStarsItemSheet extends ItemSheet { /* -------------------------------------------- */ get template() { let type = this.item.type; - return `systems/fvtt-dark-stars/templates/item-${type}-sheet.html`; + return `systems/fvtt-dark-stars/templates/items/item-${type}-sheet.hbs`; } /* -------------------------------------------- */ diff --git a/modules/dark-stars-item.js b/modules/dark-stars-item.js index b824946..cb0c670 100644 --- a/modules/dark-stars-item.js +++ b/modules/dark-stars-item.js @@ -1,13 +1,15 @@ import { DarkStarsUtility } from "./dark-stars-utility.js"; export const defaultItemImg = { - skill: "systems/fvtt-dark-stars/images/icons/icon_skill.webp", - armor: "systems/fvtt-dark-stars/images/icons/icon_armour.webp", - weapon: "systems/fvtt-dark-stars/images/icons/icon_weapon.webp", - equipment: "systems/fvtt-dark-stars/images/icons/icon_equipment.webp", - race: "systems/fvtt-dark-stars/images/icons/icon_race.webp", - money: "systems/fvtt-dark-stars/images/icons/icon_money.webp", -} + skill: "systems/fvtt-dark-stars/images/icons/skill.webp", + armor: "systems/fvtt-dark-stars/images/icons/armor.webp", + equipment: "systems/fvtt-dark-stars/images/icons/equipment.webp", + weapon: "systems/fvtt-dark-stars/images/icons/melee.webp", + perk: "systems/fvtt-dark-stars/images/icons/perk.webp", + ability: "systems/fvtt-dark-stars/images/icons/ability.webp", + genetic: "systems/fvtt-dark-stars/images/icons/genetic.webp", + cyber: "systems/fvtt-dark-stars/images/icons/cyber.webp" + } /** * Extend the basic ItemSheet with some very simple modifications diff --git a/modules/dark-stars-main.js b/modules/dark-stars-main.js index 1238788..440ac22 100644 --- a/modules/dark-stars-main.js +++ b/modules/dark-stars-main.js @@ -15,8 +15,9 @@ import { DarkStarsNPCSheet } from "./dark-stars-npc-sheet.js"; import { DarkStarsUtility } from "./dark-stars-utility.js"; import { DarkStarsCombat } from "./dark-stars-combat.js"; import { DarkStarsItem } from "./dark-stars-item.js"; -import { DarkStarsHotbar } from "./dark-star-shotbar.js" +import { DarkStarsHotbar } from "./dark-stars-hotbar.js" import { DarkStarsCommands } from "./dark-stars-commands.js" +import { DARKSTARS_CONFIG } from "./dark-stars-config.js"; /* -------------------------------------------- */ /* Foundry VTT Initialization */ @@ -28,7 +29,8 @@ Hooks.once("init", async function () { console.log(`Initializing DarkStars RPG`); game.system.darkstars = { - DarkStarsCommands + DarkStarsCommands, + config: DARKSTARS_CONFIG } /* -------------------------------------------- */ diff --git a/modules/dark-stars-npc-sheet.js b/modules/dark-stars-npc-sheet.js index fe219c5..d810013 100644 --- a/modules/dark-stars-npc-sheet.js +++ b/modules/dark-stars-npc-sheet.js @@ -13,7 +13,7 @@ export class DarkStarsNPCSheet extends ActorSheet { return mergeObject(super.defaultOptions, { classes: ["dark-stars-rpg", "sheet", "actor"], - template: "systems/fvtt-dark-stars/templates/npc-sheet.html", + template: "systems/fvtt-dark-stars/templates/npc-sheet.hbs", width: 640, height: 720, tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "stats" }], diff --git a/modules/dark-stars-roll-dialog.js b/modules/dark-stars-roll-dialog.js index 2bab220..631b729 100644 --- a/modules/dark-stars-roll-dialog.js +++ b/modules/dark-stars-roll-dialog.js @@ -6,7 +6,7 @@ export class DarkStarsRollDialog extends Dialog { static async create(actor, rollData) { let options = { classes: ["DarkStarsDialog"], width: 540, height: 340, 'z-index': 99999 }; - let html = await renderTemplate('systems/fvtt-dark-stars/templates/roll-dialog-generic.html', rollData); + let html = await renderTemplate('systems/fvtt-dark-stars/templates/roll-dialog-generic.hbs', rollData); return new DarkStarsRollDialog(actor, rollData, html, options); } @@ -44,7 +44,7 @@ export class DarkStarsRollDialog extends Dialog { /* -------------------------------------------- */ async refreshDialog() { - const content = await renderTemplate("systems/fvtt-dark-stars/templates/roll-dialog-generic.html", this.rollData) + const content = await renderTemplate("systems/fvtt-dark-stars/templates/roll-dialog-generic.hbs", this.rollData) this.data.content = content this.render(true) } diff --git a/modules/dark-stars-utility.js b/modules/dark-stars-utility.js index 9c963b1..51284ac 100644 --- a/modules/dark-stars-utility.js +++ b/modules/dark-stars-utility.js @@ -3,7 +3,7 @@ import { DarkStarsCombat } from "./dark-stars-combat.js"; import { DarkStarsCommands } from "./dark-stars-commands.js"; /* -------------------------------------------- */ - +const __locationNames = { head: "Head", chest: "Chest", abdomen: "Abdomen", leftarm: "Left Arm", rightarm: "Right Arm", leftleg: "Left Leg", rightleg: "Right Leg" } /* -------------------------------------------- */ export class DarkStarsUtility { @@ -39,6 +39,10 @@ export class DarkStarsUtility { Handlebars.registerHelper('mul', function (a, b) { return parseInt(a) * parseInt(b); }) + Handlebars.registerHelper('locationLabel', function (key) { + return __locationNames[key] + }) + this.gameSettings() @@ -138,14 +142,14 @@ export class DarkStarsUtility { static async preloadHandlebarsTemplates() { const templatePaths = [ - 'systems/fvtt-dark-stars/templates/partials/editor-notes-gm.html', - 'systems/fvtt-dark-stars/templates/partials/partial-roll-select.html', - 'systems/fvtt-dark-stars/templates/partials/partial-actor-ability-block.html', - 'systems/fvtt-dark-stars/templates/partials/partial-actor-status.html', - 'systems/fvtt-dark-stars/templates/partials/partial-options-abilities.html', - 'systems/fvtt-dark-stars/templates/partials/partial-item-nav.html', - 'systems/fvtt-dark-stars/templates/partials/partial-item-description.html', - 'systems/fvtt-dark-stars/templates/partials/partial-actor-equipment.html' + 'systems/fvtt-dark-stars/templates/partials/editor-notes-gm.hbs', + 'systems/fvtt-dark-stars/templates/partials/partial-roll-select.hbs', + 'systems/fvtt-dark-stars/templates/partials/partial-actor-ability-block.hbs', + 'systems/fvtt-dark-stars/templates/partials/partial-actor-status.hbs', + 'systems/fvtt-dark-stars/templates/partials/partial-options-abilities.hbs', + 'systems/fvtt-dark-stars/templates/partials/partial-item-nav.hbs', + 'systems/fvtt-dark-stars/templates/partials/partial-item-description.hbs', + 'systems/fvtt-dark-stars/templates/partials/partial-actor-equipment.hbs' ] return loadTemplates(templatePaths); } @@ -391,7 +395,7 @@ export class DarkStarsUtility { rollData.rollOrder = 1 rollData.rollType = (rollData.rollAdvantage == "roll-advantage") ? "Advantage" : "Disadvantage" this.createChatWithRollMode(rollData.alias, { - content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat-generic-result.html`, rollData) + content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat-generic-result.hbs`, rollData) }) rollData.rollOrder = 2 @@ -401,7 +405,7 @@ export class DarkStarsUtility { rollData.roll = myRoll2 // Tmp switch to display the proper results rollData.nbSuccess = myRoll2.total this.createChatWithRollMode(rollData.alias, { - content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat-generic-result.html`, rollData) + content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat-generic-result.hbs`, rollData) }) rollData.roll = myRoll // Revert the tmp switch rollData.nbSuccess = myRoll.total @@ -435,7 +439,7 @@ export class DarkStarsUtility { actor.lastRoll = rollData this.createChatWithRollMode(rollData.alias, { - content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat-generic-result.html`, rollData) + content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat-generic-result.hbs`, rollData) }) console.log("Rolldata result", rollData) diff --git a/packs/action-tokens.db b/packs/action-tokens.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/armor.db b/packs/armor.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/classpowers.db b/packs/classpowers.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/conditions.db b/packs/conditions.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/currency.db b/packs/currency.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/equipment.db b/packs/equipment.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/feats.db b/packs/feats.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/lore-air.db b/packs/lore-air.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/lore-earth.db b/packs/lore-earth.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/lore-fire.db b/packs/lore-fire.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/lore-shadow.db b/packs/lore-shadow.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/lore-water.db b/packs/lore-water.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/monster-powers.db b/packs/monster-powers.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/poisons.db b/packs/poisons.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/rolltables.db b/packs/rolltables.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/shields.db b/packs/shields.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/skills.db b/packs/skills.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/trickstraps.db b/packs/trickstraps.db new file mode 100644 index 0000000..e69de29 diff --git a/packs/weapons.db b/packs/weapons.db new file mode 100644 index 0000000..e69de29 diff --git a/styles/simple.css b/styles/simple.css index 90f2697..6571b66 100644 --- a/styles/simple.css +++ b/styles/simple.css @@ -39,26 +39,41 @@ text-align: justify; font-size: 16px; letter-spacing: 1px; + color: rgba(228, 240, 240, 0.75); + background: rgba(66, 66, 64, 0.95); + } /* Fonts */ .sheet header.sheet-header h1 input, .window-app .window-header, #actors .directory-list, #navigation #scene-list .scene.nav-item { font-size: 1.0rem; + color: rgba(228, 240, 240, 0.75); + background: rgba(66, 66, 64, 0.95); } /* For title, sidebar character and scene */ .sheet nav.sheet-tabs { font-size: 0.8rem; + color: rgba(228, 240, 240, 0.75); + background: rgba(66, 66, 64, 0.95); } /* For nav and title */ -.window-app input, .foundryvtt-vadentis .item-form, .sheet header.sheet-header .flex-group-center.flex-compteurs, .sheet header.sheet-header .flex-group-center.flex-fatigue, select, button, .item-checkbox, #sidebar, #players, #navigation #nav-toggle { +.window-app input, .fvtt-dark-stars .item-form, .sheet header.sheet-header .flex-group-center.flex-compteurs, .sheet header.sheet-header .flex-group-center.flex-fatigue, select, button, .item-checkbox, #sidebar, #players, #navigation #nav-toggle { font-size: 0.8rem; + color: rgba(228, 240, 240, 0.75); + background: rgba(66, 66, 64, 0.95); } .window-header{ background: rgba(0,0,0,0.75); } - +.dialog .window-content { + color: #ccdbe6; +} +.dialog-content, .dialog-buttons, .form-fields { + color: #ccdbe6; +} .window-app.sheet .window-content { margin: 0; padding: 0; + color: #ccdbe6; } .strong-text{ font-weight: bold; @@ -385,24 +400,24 @@ table {border: 1px solid #7a7971;} /*color: rgba(168, 139, 139, 0.5);*/ .window-app.sheet .window-content .sheet-header input[type="text"], .window-app.sheet .window-content .sheet-header input[type="number"], .window-app.sheet .window-content .sheet-header input[type="password"], .window-app.sheet .window-content .sheet-header input[type="date"], .window-app.sheet .window-content .sheet-header input[type="time"] { - color: rgba(36, 37, 37, 0.75); - background: rgba(245, 245, 241, 0.95); + color: rgba(228, 240, 240, 0.75); + background: rgba(66, 66, 64, 0.95); border: 1 none; margin-bottom: 0.25rem; margin-left: 2px; } .window-app.sheet .window-content .sheet-body input[type="text"], .window-app.sheet .window-content .sheet-body input[type="number"], .window-app.sheet .window-content .sheet-body input[type="password"], .window-app.sheet .window-content .sheet-body input[type="date"], .window-app.sheet .window-content .sheet-body input[type="time"] { - color: rgba(36, 37, 37, 0.75); - background: rgba(245, 245, 241, 0.95); + color: rgba(228, 240, 240, 0.75); + background: rgba(66, 66, 64, 0.95); border: 1 none; margin-bottom: 0.25rem; margin-left: 2px; } .window-app.sheet .window-content .sheet-body select, .window-app.sheet .window-content .sheet-header select { - color: rgba(36, 37, 37, 0.75); - background: rgba(245, 245, 241, 0.95); + color: rgba(228, 240, 240, 0.75); + background: rgba(66, 66, 64, 0.95); border: 1 none; margin-bottom: 0.25rem; margin-left: 2px; @@ -411,6 +426,8 @@ table {border: 1px solid #7a7971;} .window-app .window-content, .window-app.sheet .window-content .sheet-body{ font-size: 0.8rem; background: url("../images/ui/pc_sheet_bg.webp") repeat left top; + color: rgba(228, 240, 240, 0.75); + background: rgba(66, 66, 64, 0.95); } /* background: rgba(245,245,240,0.6) url("../images/ui/sheet_background.webp") left top;*/ diff --git a/templates/items/item-ability-sheet.hbs b/templates/items/item-ability-sheet.hbs new file mode 100644 index 0000000..009131a --- /dev/null +++ b/templates/items/item-ability-sheet.hbs @@ -0,0 +1,19 @@ +
diff --git a/templates/items/item-armor-sheet.hbs b/templates/items/item-armor-sheet.hbs index 0b095f9..5db22be 100644 --- a/templates/items/item-armor-sheet.hbs +++ b/templates/items/item-armor-sheet.hbs @@ -6,35 +6,39 @@ - {{> systems/fvtt-crucible-rpg/templates/partial-item-nav.html}} + {{> systems/fvtt-dark-stars/templates/partials/partial-item-nav.hbs}} {{!-- Sheet Body --}}