26 perception drinking all abilities (#56)
* Innate abilities + Added Perception as fixed innate ability + Added Drinking as fixed innate ability + Set Luckpoints to 0 * Duration Update + Added Duration to Effects + Added Perception to Eye & Ear Injury * Fixed like recommended + Fixed M5Base +Fixed M5Character + Fixed M5Rolls + Fixed Skills HBS + Fixed BrawlFw + Fixed Effect (not saved already) * fix minor issues --------- Co-authored-by: Byroks <byroks@gmail.com>
This commit is contained in:
@@ -168,6 +168,16 @@ export default class M5CharacterSheet extends ActorSheet {
|
||||
await roll.toMessage();
|
||||
});
|
||||
|
||||
html.find(".roll-perception-button").on("click", async (event) => {
|
||||
const roll = M5Roll.perception(this.actor);
|
||||
await roll.toMessage();
|
||||
});
|
||||
|
||||
html.find(".roll-drinking-button").on("click", async (event) => {
|
||||
const roll = M5Roll.drinking(this.actor);
|
||||
await roll.toMessage();
|
||||
});
|
||||
|
||||
html.find(".roll-defense-button").on("click", async (event) => {
|
||||
const roll = M5Roll.defense(this.actor);
|
||||
await roll.toMessage();
|
||||
|
||||
Reference in New Issue
Block a user