Skip to content

Commit

Permalink
Merge pull request #26 from orffen/devel
Browse files Browse the repository at this point in the history
r6
  • Loading branch information
orffen committed Mar 26, 2022
2 parents 1a99199 + 8ec2bb1 commit 854a871
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 98 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,10 +1,10 @@
# Basic Fantasy RPG for FoundryVTT

This is the [Basic Fantasy RPG](https://www.basicfantasy.org/) system for FoundryVTT.
This is the [Basic Fantasy RPG](https://www.basicfantasy.org/) system for FoundryVTT. Please also see the [companium compendium module](https://github.com/Stew-rt/basicfantasyrpg-corerules-en), which contains items, spells, monsters etc. for easy use with the system.

## Installation

This system is not yet available within FoundryVTT, but you can manually install it by using the manifest link below:
This system is available within FoundryVTT, or you can manually install it by using the manifest link below:

https://raw.githubusercontent.com/orffen/basicfantasyrpg/main/system.json

Expand Down
10 changes: 10 additions & 0 deletions module/basicfantasyrpg.mjs
Expand Up @@ -80,6 +80,16 @@ Hooks.once("ready", async function() {
Hooks.on("hotbarDrop", (bar, data, slot) => createItemMacro(data, slot));
});

/* -------------------------------------------- */
/* Character Creation Hooks */
/* -------------------------------------------- */

Hooks.on("createActor", async function(actor) {
if (actor.type === "character") {
actor.data.token.actorLink = true;
}
});

/* -------------------------------------------- */
/* Token Creation Hooks */
/* -------------------------------------------- */
Expand Down
5 changes: 0 additions & 5 deletions packs/armor-and-shields.db

This file was deleted.

0 comments on commit 854a871

Please sign in to comment.