added template and scss for the attribute-roll-dialog
parent
52082e4e38
commit
571b59f0d2
|
|
@ -10,7 +10,7 @@ export async function rollAttributeForActor(actor, attribute, modifier, mode = f
|
||||||
let resultRoll = result.results[0]
|
let resultRoll = result.results[0]
|
||||||
let success = attribute.wert >= resultRoll
|
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: {
|
attribute: {
|
||||||
name: attribute.name,
|
name: attribute.name,
|
||||||
value: attribute.wert,
|
value: attribute.wert,
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
@use "chatmessages/attribute-check-message";
|
@use "chat-messages/attribute-check-message";
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
@use "dialogs/attribute-roll-dialog";
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
$bgcolor: FFF;
|
$bgcolor: FFF;
|
||||||
|
|
||||||
@use "chat-messages";
|
@use "chat-messages";
|
||||||
|
@use "dialogs";
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background-color: $bgcolor;
|
background-color: $bgcolor;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue