Rollable weapons

This commit is contained in:
2021-05-31 00:06:05 +02:00
parent d3eba25f83
commit 9ed56cd435
11 changed files with 144 additions and 71 deletions

View File

@@ -55,10 +55,17 @@ export class frostgraveActorSheet extends ActorSheet {
// Edit Inventory Item
html.find(".item-edit").click((ev) => {
const card = $(ev.currentTarget).parents(".item-card");
const item = this.actor.getOwnedItem(card.data("item-id"));
const item = this.actor.items.get(card.data("item-id"));
item.sheet.render(true);
});
html.find(".weapon-attack a").click((ev) => {
const card = $(ev.currentTarget).parents(".item-card");
const item = this.actor.items.get(card.data("item-id"));
console.log("ACTOR: ", this.actor);
this.actor.attackWeapon(item);
});
// Delete Inventory Item
html.find(".item-delete").click((ev) => {
const card = $(ev.currentTarget).parents(".item-card");