This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

lancer-initiative
TypeScript icon, indicating that this package has built-in type declarations

3.1.0 • Public • Published

lancer-initiative

NPM module for Lancer Initiative

A module providing Combat, Combatant and CombatTracker classes compatible with Foundry v9 that can be used to implement a popcorn style combat tracker in your Foundry VTT system.

Instructions

Install with npm

$ npm install lancer-initiative

Create or copy the necessary handlebars templates. Examples can be found in the main Lancer Intiative module repository.

Css rules for the tracker can be found in the Lancer Intiative main repository, as well as an example configuration form.

Configure your system to use the classes. This exapmle assumes you are using @league-of-foundry-developers/foundry-vtt-types.

// global.d.ts
import type { LancerInitiativeConfig } from "lancer-initiative";

declare global {
  interface CONFIG {
    LancerInitiative: LancerInitiativeConfig<"system-name">;
  }
}

// entrypoint.ts
import {
  LancerCombat,
  LancerCombatant,
  getTrackerAppearance,
  setAppaearance,
} from "lancer-initiative";

Hooks.on("init", () => {
  CONFIG.LancerInitiative = {
    module: game.system.id,
    templatePath: `path/to/the/combat-tracker-template.hbs`,
    def_appearance: {
      icon: "fas fa-chevron-circle-right",
      icon_size: 1.5,
      player_color: "#44abe0",
      friendly_color: "#44abe0",
      neutral_color: "#146464",
      enemy_color: "#d98f30",
      done_color: "#444444",
    },
  };

  // A config form for this can be found at
  // https://github.com/BoltsJ/lancer-initiative
  game.settings.register(game.system.id, "combat-tracker-appearance", {
    scope: "world",
    config: false,
    type: Object,
    onChange: setAppearance,
  });
  // Optional for systems
  game.settings.register(game.system.id, "combat-tracker-sort", {
    name: "LANCERINITIATIVE.SortTracker",
    hint: "LANCERINITIATIVE.SortTrackerDesc",
    scope: "world",
    config: true,
    type: Boolean,
    onChange: v => {
      CONFIG.LancerInitiative.sort = v;
      game.combats?.render();
    },
    default: false,
  });
  CONFIG.LancerInitiative.sort = game.settings.get(
    game.system.id,
    "combat-tracker-sort"
  );

  // Recommended to allow integrations to set up
  Hooks.callAll("LancerInitiativeInit");
  setAppearance(getTrackerAppearance());
});

/lancer-initiative/

    Package Sidebar

    Install

    npm i lancer-initiative

    Weekly Downloads

    1

    Version

    3.1.0

    License

    Apache-2.0

    Unpacked Size

    85 kB

    Total Files

    21

    Last publish

    Collaborators

    • boltsj