added template and scss for the attribute-roll-dialog

feature/attribute-rolls
Jendrik 2025-09-28 20:00:28 +02:00
parent 52082e4e38
commit 571b59f0d2
8 changed files with 4 additions and 2 deletions

View File

@ -10,7 +10,7 @@ export async function rollAttributeForActor(actor, attribute, modifier, mode = f
let resultRoll = result.results[0]
let success = attribute.wert >= resultRoll
let message = await foundry.applications.handlebars.renderTemplate("templates/chatMessage/attributeCheckMessage.hbs", {
let message = await foundry.applications.handlebars.renderTemplate("templates/chat-messages/attributeCheckMessage.hbs", {
attribute: {
name: attribute.name,
value: attribute.wert,

View File

@ -1 +1 @@
@use "chatmessages/attribute-check-message";
@use "chat-messages/attribute-check-message";

View File

@ -0,0 +1 @@
@use "dialogs/attribute-roll-dialog";

View File

@ -1,6 +1,7 @@
$bgcolor: FFF;
@use "chat-messages";
@use "dialogs";
html {
background-color: $bgcolor;