More tests againts rolls
This commit is contained in:
@@ -66,6 +66,9 @@ Hooks.once("init", function () {
|
|||||||
|
|
||||||
CONFIG.ChatMessage.documentClass = documents.AwEChatMessage
|
CONFIG.ChatMessage.documentClass = documents.AwEChatMessage
|
||||||
CONFIG.Dice.rolls.push(documents.AwERoll)
|
CONFIG.Dice.rolls.push(documents.AwERoll)
|
||||||
|
|
||||||
|
// Handlebars helpers
|
||||||
|
Handlebars.registerHelper("abs", (value) => Math.abs(value ?? 0))
|
||||||
})
|
})
|
||||||
|
|
||||||
Hooks.once("ready", function () {
|
Hooks.once("ready", function () {
|
||||||
|
|||||||
@@ -49,6 +49,9 @@
|
|||||||
"AWEMMY.Roll.Roll": "Roll",
|
"AWEMMY.Roll.Roll": "Roll",
|
||||||
"AWEMMY.Roll.DialogTitle": "Roll: {name}",
|
"AWEMMY.Roll.DialogTitle": "Roll: {name}",
|
||||||
"AWEMMY.Roll.SituationalBonus": "Situational Bonus",
|
"AWEMMY.Roll.SituationalBonus": "Situational Bonus",
|
||||||
|
"AWEMMY.Roll.AttributeBonus": "Attribute Bonus",
|
||||||
|
"AWEMMY.Roll.KnowledgeBonus": "Knowledge Bonus",
|
||||||
|
"AWEMMY.Roll.Formula": "Formula",
|
||||||
"AWEMMY.Roll.DC": "DC",
|
"AWEMMY.Roll.DC": "DC",
|
||||||
"AWEMMY.Roll.Visibility": "Visibility",
|
"AWEMMY.Roll.Visibility": "Visibility",
|
||||||
"AWEMMY.Roll.Private": "Private Roll",
|
"AWEMMY.Roll.Private": "Private Roll",
|
||||||
|
|||||||
@@ -42,9 +42,17 @@ export default class AwEActor extends Actor {
|
|||||||
const attribute = this.system.attributes[attributeId]
|
const attribute = this.system.attributes[attributeId]
|
||||||
if (!attribute) return null
|
if (!attribute) return null
|
||||||
|
|
||||||
|
// Collect knowledge bonuses from embedded Field items
|
||||||
|
const knowledgeBonuses = this.itemTypes.field?.map(f => ({
|
||||||
|
label: f.name,
|
||||||
|
bonus: f.system.knowledgeBonus ?? ""
|
||||||
|
})).filter(f => f.bonus !== "") ?? []
|
||||||
|
|
||||||
return AwERoll.prompt({
|
return AwERoll.prompt({
|
||||||
attributeKey: attributeId,
|
attributeKey: attributeId,
|
||||||
modifier: attribute.mod ?? 0,
|
modifier: attribute.mod ?? 0,
|
||||||
|
attributeBonus: attribute.bonus ?? 0,
|
||||||
|
knowledgeBonuses,
|
||||||
actorId: this.id,
|
actorId: this.id,
|
||||||
actorName: this.name,
|
actorName: this.name,
|
||||||
actorImage: this.img,
|
actorImage: this.img,
|
||||||
|
|||||||
@@ -5,19 +5,8 @@ export default class AwEChatMessage extends ChatMessage {
|
|||||||
async _renderRollContent(messageData) {
|
async _renderRollContent(messageData) {
|
||||||
if (this.rolls[0] instanceof AwERoll) {
|
if (this.rolls[0] instanceof AwERoll) {
|
||||||
const isPrivate = !this.isContentVisible
|
const isPrivate = !this.isContentVisible
|
||||||
const roll = this.rolls[0]
|
const rollHTML = await this._renderRollHTML(isPrivate)
|
||||||
|
messageData.message.content = rollHTML
|
||||||
const html = await foundry.applications.handlebars.renderTemplate(
|
|
||||||
AwERoll.CHAT_TEMPLATE,
|
|
||||||
{
|
|
||||||
flavor: this.flavor,
|
|
||||||
total: roll.total,
|
|
||||||
outcome: isPrivate ? null : roll.outcome,
|
|
||||||
dc: roll.dc,
|
|
||||||
isPrivate
|
|
||||||
}
|
|
||||||
)
|
|
||||||
messageData.message.content = html
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return super._renderRollContent(messageData)
|
return super._renderRollContent(messageData)
|
||||||
|
|||||||
+72
-10
@@ -9,7 +9,9 @@ export default class AwERoll extends Roll {
|
|||||||
get attributeKey() { return this.options.attributeKey }
|
get attributeKey() { return this.options.attributeKey }
|
||||||
get rollName() { return this.options.rollName }
|
get rollName() { return this.options.rollName }
|
||||||
get modifier() { return this.options.modifier ?? 0 }
|
get modifier() { return this.options.modifier ?? 0 }
|
||||||
|
get attributeBonus() { return this.options.attributeBonus ?? 0 }
|
||||||
get bonus() { return this.options.bonus ?? 0 }
|
get bonus() { return this.options.bonus ?? 0 }
|
||||||
|
get knowledgeBonus() { return this.options.knowledgeBonus ?? 0 }
|
||||||
get dc() { return this.options.dc }
|
get dc() { return this.options.dc }
|
||||||
get outcome() { return this.options.outcome }
|
get outcome() { return this.options.outcome }
|
||||||
get actorId() { return this.options.actorId }
|
get actorId() { return this.options.actorId }
|
||||||
@@ -52,8 +54,10 @@ export default class AwERoll extends Roll {
|
|||||||
*
|
*
|
||||||
* @param {object} options
|
* @param {object} options
|
||||||
* @param {string} options.attributeKey Attribute id (agility | fitness | awareness | influence)
|
* @param {string} options.attributeKey Attribute id (agility | fitness | awareness | influence)
|
||||||
* @param {number} options.modifier Base attribute modifier
|
* @param {number} options.modifier Base attribute modifier (level + boostLevel)
|
||||||
* @param {number} [options.dc] Pre-set DC (skips DC field if provided)
|
* @param {number} [options.attributeBonus] Persistent attribute bonus/penalty from the +/- column
|
||||||
|
* @param {object[]} [options.knowledgeBonuses] Field knowledge bonuses [{label, bonus}]
|
||||||
|
* @param {number} [options.dc] Pre-set DC
|
||||||
* @param {string} options.actorId
|
* @param {string} options.actorId
|
||||||
* @param {string} options.actorName
|
* @param {string} options.actorName
|
||||||
* @param {string} options.actorImage
|
* @param {string} options.actorImage
|
||||||
@@ -63,17 +67,33 @@ export default class AwERoll extends Roll {
|
|||||||
const attrLabel = options.attributeKey
|
const attrLabel = options.attributeKey
|
||||||
? game.i18n.localize(SYSTEM.ATTRIBUTES[options.attributeKey]?.label ?? options.attributeKey)
|
? game.i18n.localize(SYSTEM.ATTRIBUTES[options.attributeKey]?.label ?? options.attributeKey)
|
||||||
: (options.rollName ?? game.i18n.localize("AWEMMY.Roll.Check"))
|
: (options.rollName ?? game.i18n.localize("AWEMMY.Roll.Check"))
|
||||||
|
const mod = options.modifier ?? 0
|
||||||
|
const attrBonus = options.attributeBonus ?? 0
|
||||||
|
const knowledgeBonuses = options.knowledgeBonuses ?? []
|
||||||
|
|
||||||
const rollModes = Object.fromEntries(
|
const rollModes = Object.fromEntries(
|
||||||
Object.entries(CONFIG.Dice.rollModes).map(([k, v]) => [k, game.i18n.localize(v.label ?? v)])
|
Object.entries(CONFIG.Dice.rollModes).map(([k, v]) => [k, game.i18n.localize(v.label ?? v)])
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Bonus choices: -5 to +5
|
||||||
|
const bonusChoices = Array.from({length: 11}, (_, i) => i - 5)
|
||||||
|
.map(v => ({ value: v, label: v > 0 ? `+${v}` : String(v), selected: v === 0 }))
|
||||||
|
|
||||||
|
// DC choices: blank + 10..30
|
||||||
|
const dcChoices = [{ value: "", label: "—", selected: !options.dc }]
|
||||||
|
.concat(Array.from({length: 21}, (_, i) => i + 10)
|
||||||
|
.map(v => ({ value: v, label: String(v), selected: v === (options.dc ?? null) })))
|
||||||
|
|
||||||
const content = await foundry.applications.handlebars.renderTemplate(
|
const content = await foundry.applications.handlebars.renderTemplate(
|
||||||
"systems/fvtt-adventures-with-emmy/templates/roll-dialog.hbs",
|
"systems/fvtt-adventures-with-emmy/templates/roll-dialog.hbs",
|
||||||
{
|
{
|
||||||
attrLabel,
|
attrLabel,
|
||||||
modifier: options.modifier ?? 0,
|
modifier: mod,
|
||||||
dc: options.dc ?? "",
|
attributeBonus: attrBonus,
|
||||||
|
totalMod: mod + attrBonus,
|
||||||
|
knowledgeBonuses,
|
||||||
|
bonusChoices,
|
||||||
|
dcChoices,
|
||||||
rollModes,
|
rollModes,
|
||||||
visibility: game.settings.get("core", "rollMode")
|
visibility: game.settings.get("core", "rollMode")
|
||||||
}
|
}
|
||||||
@@ -83,6 +103,24 @@ export default class AwERoll extends Roll {
|
|||||||
window: { title: game.i18n.format("AWEMMY.Roll.DialogTitle", { name: attrLabel }) },
|
window: { title: game.i18n.format("AWEMMY.Roll.DialogTitle", { name: attrLabel }) },
|
||||||
classes: ["awemmy"],
|
classes: ["awemmy"],
|
||||||
content,
|
content,
|
||||||
|
render: (event, dialog) => {
|
||||||
|
const baseMod = mod + attrBonus
|
||||||
|
const el = dialog.element
|
||||||
|
const bonusSelect = el.querySelector('#awe-bonus')
|
||||||
|
const knowledgeSel = el.querySelector('#awe-knowledge')
|
||||||
|
const preview = el.querySelector('#awe-formula-preview')
|
||||||
|
function updatePreview() {
|
||||||
|
const sit = parseInt(bonusSelect?.value) || 0
|
||||||
|
const kn = parseInt(knowledgeSel?.value) || 0
|
||||||
|
const total = baseMod + sit + kn
|
||||||
|
const sign = total >= 0 ? '+' : '−'
|
||||||
|
const abs = Math.abs(total)
|
||||||
|
preview.textContent = total === 0 ? '1d20' : `1d20 ${sign} ${abs}`
|
||||||
|
}
|
||||||
|
bonusSelect?.addEventListener('change', updatePreview)
|
||||||
|
knowledgeSel?.addEventListener('change', updatePreview)
|
||||||
|
updatePreview()
|
||||||
|
},
|
||||||
buttons: [{
|
buttons: [{
|
||||||
label: game.i18n.localize("AWEMMY.Roll.Roll"),
|
label: game.i18n.localize("AWEMMY.Roll.Roll"),
|
||||||
callback: (_event, button) =>
|
callback: (_event, button) =>
|
||||||
@@ -96,21 +134,24 @@ export default class AwERoll extends Roll {
|
|||||||
|
|
||||||
if (!result) return null
|
if (!result) return null
|
||||||
|
|
||||||
const mod = options.modifier ?? 0
|
|
||||||
const bonus = parseInt(result.bonus) || 0
|
const bonus = parseInt(result.bonus) || 0
|
||||||
|
const knowledgeBonus = parseInt(result.knowledgeBonus) || 0
|
||||||
const dc = result.dc !== "" ? parseInt(result.dc) : undefined
|
const dc = result.dc !== "" ? parseInt(result.dc) : undefined
|
||||||
const rollMode = result.visibility ?? game.settings.get("core", "rollMode")
|
const rollMode = result.visibility ?? game.settings.get("core", "rollMode")
|
||||||
|
|
||||||
// Build formula: 1d20 + mod [± bonus]
|
// Formula: 1d20 + (mod + attrBonus) [± bonus] [± knowledgeBonus]
|
||||||
let formula = `1d20 + ${mod}`
|
const totalMod = mod + attrBonus + bonus + knowledgeBonus
|
||||||
if (bonus > 0) formula += ` + ${bonus}`
|
let formula = `1d20`
|
||||||
else if (bonus < 0) formula += ` - ${Math.abs(bonus)}`
|
if (totalMod > 0) formula += ` + ${totalMod}`
|
||||||
|
else if (totalMod < 0) formula += ` - ${Math.abs(totalMod)}`
|
||||||
|
|
||||||
const roll = new this(formula, {}, {
|
const roll = new this(formula, {}, {
|
||||||
attributeKey: options.attributeKey,
|
attributeKey: options.attributeKey,
|
||||||
rollName: attrLabel,
|
rollName: attrLabel,
|
||||||
modifier: mod,
|
modifier: mod + attrBonus,
|
||||||
|
attributeBonus: attrBonus,
|
||||||
bonus,
|
bonus,
|
||||||
|
knowledgeBonus,
|
||||||
dc,
|
dc,
|
||||||
actorId: options.actorId,
|
actorId: options.actorId,
|
||||||
actorName: options.actorName,
|
actorName: options.actorName,
|
||||||
@@ -133,4 +174,25 @@ export default class AwERoll extends Roll {
|
|||||||
|
|
||||||
return roll
|
return roll
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @override — render the custom chat message template */
|
||||||
|
async render(chatOptions = {}) {
|
||||||
|
const isPrivate = chatOptions.isPrivate ?? false
|
||||||
|
return foundry.applications.handlebars.renderTemplate(
|
||||||
|
AwERoll.CHAT_TEMPLATE,
|
||||||
|
{
|
||||||
|
flavor: this.rollName,
|
||||||
|
total: this.total,
|
||||||
|
modifier: this.modifier,
|
||||||
|
bonus: this.bonus,
|
||||||
|
knowledgeBonus: this.knowledgeBonus,
|
||||||
|
dice: this.dice,
|
||||||
|
outcome: isPrivate ? null : this.outcome,
|
||||||
|
dc: this.dc,
|
||||||
|
actorName: this.actorName,
|
||||||
|
actorImage: this.actorImage,
|
||||||
|
isPrivate
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -126,8 +126,8 @@
|
|||||||
.attributes-table {
|
.attributes-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
margin: 0.3rem 0;
|
margin: 0.1rem 0;
|
||||||
font-size: 0.85rem;
|
font-size: 0.8rem;
|
||||||
|
|
||||||
// Col widths: name | boost | mod | dc | bonus
|
// Col widths: name | boost | mod | dc | bonus
|
||||||
th:nth-child(1), td:nth-child(1) { width: 30%; }
|
th:nth-child(1), td:nth-child(1) { width: 30%; }
|
||||||
@@ -141,9 +141,9 @@
|
|||||||
color: white;
|
color: white;
|
||||||
|
|
||||||
th {
|
th {
|
||||||
padding: 0.25rem 0.4rem;
|
padding: 0.15rem 0.3rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 0.75rem;
|
font-size: 0.72rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -154,15 +154,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding: 0.2rem 0.4rem;
|
padding: 0.05rem 0.3rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: 1px solid @color-border;
|
border-bottom: 1px solid @color-border;
|
||||||
|
|
||||||
select {
|
select {
|
||||||
width: auto;
|
width: auto;
|
||||||
min-width: 55px;
|
min-width: 50px;
|
||||||
padding: 0.1rem 0.25rem;
|
padding: 0 0.2rem;
|
||||||
font-size: 0.82rem;
|
font-size: 0.78rem;
|
||||||
background: white;
|
background: white;
|
||||||
color: @color-text;
|
color: @color-text;
|
||||||
border: 1px solid @color-border;
|
border: 1px solid @color-border;
|
||||||
@@ -170,10 +170,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
width: 48px;
|
width: 44px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0.1rem 0.2rem;
|
padding: 0 0.2rem;
|
||||||
font-size: 0.82rem;
|
font-size: 0.78rem;
|
||||||
background: white;
|
background: white;
|
||||||
color: @color-text;
|
color: @color-text;
|
||||||
border: 1px solid @color-border;
|
border: 1px solid @color-border;
|
||||||
@@ -372,6 +372,11 @@
|
|||||||
// Character Sheet Header
|
// Character Sheet Header
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
.character-content {
|
.character-content {
|
||||||
|
fieldset {
|
||||||
|
padding: 0.3rem 0.5rem;
|
||||||
|
margin: 0.3rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
.actor-header {
|
.actor-header {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 80px 1fr auto auto;
|
grid-template-columns: 80px 1fr auto auto;
|
||||||
@@ -631,18 +636,22 @@
|
|||||||
// Item Sheets
|
// Item Sheets
|
||||||
// ============================================================
|
// ============================================================
|
||||||
|
|
||||||
|
// ============================================================
|
||||||
|
// Item Sheets
|
||||||
|
// ============================================================
|
||||||
|
|
||||||
.awemmy.item {
|
.awemmy.item {
|
||||||
.item-header {
|
.item-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.75rem;
|
gap: 0.75rem;
|
||||||
padding: 0.5rem;
|
padding: 0.5rem 0.75rem;
|
||||||
background: lighten(@color-primary, 50%);
|
background: lighten(@color-primary, 50%);
|
||||||
border-bottom: 2px solid @color-border;
|
border-bottom: 2px solid @color-border;
|
||||||
|
|
||||||
.item-img {
|
.item-img {
|
||||||
width: 56px;
|
width: 52px;
|
||||||
height: 56px;
|
height: 52px;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
border: 2px solid @color-border;
|
border: 2px solid @color-border;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
@@ -655,7 +664,7 @@
|
|||||||
|
|
||||||
input[type="text"] {
|
input[type="text"] {
|
||||||
font-family: @font-heading;
|
font-family: @font-heading;
|
||||||
font-size: 1.2rem;
|
font-size: 1.15rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
border: none;
|
border: none;
|
||||||
@@ -669,19 +678,149 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.item-body {
|
.item-body {
|
||||||
padding: 0.5rem;
|
padding: 0.6rem 0.75rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.3rem;
|
||||||
|
|
||||||
|
// Single field row: label | input
|
||||||
.form-group {
|
.form-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
margin-bottom: 0.4rem;
|
min-height: 28px;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
min-width: 120px;
|
width: 38%;
|
||||||
font-size: 0.85rem;
|
flex-shrink: 0;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
font-weight: 600;
|
||||||
color: @color-text-light;
|
color: @color-text-light;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.03em;
|
||||||
|
}
|
||||||
|
|
||||||
|
input, select {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Two fields side by side
|
||||||
|
.form-row {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.75rem;
|
||||||
|
|
||||||
|
.form-group {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Charges: value / max inline
|
||||||
|
.charges-group {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.4rem;
|
||||||
|
|
||||||
|
label {
|
||||||
|
width: 38%;
|
||||||
|
flex-shrink: 0;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: @color-text-light;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
width: 48px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.separator {
|
||||||
|
color: @color-text-light;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tags (traits, specializations)
|
||||||
|
.form-group-tags {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 0.5rem;
|
||||||
|
|
||||||
|
label {
|
||||||
|
width: 38%;
|
||||||
|
flex-shrink: 0;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: @color-text-light;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding-top: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags-list {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 0.3rem;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.2rem;
|
||||||
|
padding: 0.15rem 0.5rem;
|
||||||
|
background: lighten(@color-primary, 48%);
|
||||||
|
border: 1px solid @color-border;
|
||||||
|
border-radius: 12px;
|
||||||
|
font-size: 0.78rem;
|
||||||
|
color: @color-text;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: @color-text-light;
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 1;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: @color-secondary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.new-tag {
|
||||||
|
width: 110px;
|
||||||
|
font-size: 0.78rem;
|
||||||
|
padding: 0.15rem 0.4rem;
|
||||||
|
border-style: dashed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Divider between properties and description
|
||||||
|
.section-divider {
|
||||||
|
border: none;
|
||||||
|
border-top: 1px solid @color-border;
|
||||||
|
margin: 0.3rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Description fieldset
|
||||||
|
fieldset {
|
||||||
|
border: 1px solid @color-border;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 0.4rem 0.6rem;
|
||||||
|
margin-top: 0.3rem;
|
||||||
|
|
||||||
|
legend {
|
||||||
|
font-size: 0.78rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: @color-text-light;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding: 0 0.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editor, .prosemirror, textarea {
|
||||||
|
min-height: 100px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -739,3 +878,218 @@
|
|||||||
&.critical-failure { background: @color-critical-failure; color: white; }
|
&.critical-failure { background: @color-critical-failure; color: white; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ============================================================
|
||||||
|
// Roll Dialog
|
||||||
|
// ============================================================
|
||||||
|
|
||||||
|
.awemmy.dialog {
|
||||||
|
.awemmy-roll-dialog {
|
||||||
|
padding: 0.5rem 0.25rem;
|
||||||
|
|
||||||
|
.roll-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: baseline;
|
||||||
|
padding: 0.4rem 0.5rem;
|
||||||
|
background: lighten(@color-primary, 50%);
|
||||||
|
border-radius: 4px;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
border-left: 4px solid @color-primary;
|
||||||
|
|
||||||
|
.roll-attr-name {
|
||||||
|
font-family: @font-heading;
|
||||||
|
font-size: 1.05rem;
|
||||||
|
font-weight: bold;
|
||||||
|
color: @color-primary;
|
||||||
|
}
|
||||||
|
|
||||||
|
.roll-formula-summary {
|
||||||
|
font-size: 0.85rem;
|
||||||
|
color: @color-text-light;
|
||||||
|
|
||||||
|
em {
|
||||||
|
color: @color-secondary;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialog-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
margin-bottom: 0.35rem;
|
||||||
|
|
||||||
|
label {
|
||||||
|
width: 42%;
|
||||||
|
flex-shrink: 0;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: @color-text-light;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
input, select {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
background: white;
|
||||||
|
color: @color-text;
|
||||||
|
border: 1px solid @color-border;
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 0.2rem 0.35rem;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hint-row {
|
||||||
|
justify-content: space-between;
|
||||||
|
background: lighten(@color-border, 10%);
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 0.15rem 0.5rem;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
|
||||||
|
.hint-label { color: @color-text-light; font-weight: 600; text-transform: uppercase; }
|
||||||
|
.hint-value { font-weight: bold;
|
||||||
|
&.positive { color: @color-success; }
|
||||||
|
&.negative { color: @color-failure; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.formula-preview {
|
||||||
|
background: lighten(@color-primary, 52%);
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 0.2rem 0.5rem;
|
||||||
|
margin-top: 0.2rem;
|
||||||
|
|
||||||
|
.formula-label {
|
||||||
|
width: 42%;
|
||||||
|
flex-shrink: 0;
|
||||||
|
font-size: 0.78rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: @color-text-light;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.formula-text {
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
font-weight: bold;
|
||||||
|
color: @color-primary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================================
|
||||||
|
// Chat Message (updated)
|
||||||
|
// ============================================================
|
||||||
|
|
||||||
|
.awemmy-chat {
|
||||||
|
padding: 0.4rem;
|
||||||
|
|
||||||
|
.chat-roll-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
margin-bottom: 0.4rem;
|
||||||
|
|
||||||
|
.chat-actor-img {
|
||||||
|
width: 34px;
|
||||||
|
height: 34px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 2px solid @color-border;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-roll-info {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-actor-name {
|
||||||
|
font-size: 0.75rem;
|
||||||
|
color: @color-text-light;
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-roll-label {
|
||||||
|
font-family: @font-heading;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
font-weight: bold;
|
||||||
|
color: @color-primary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.roll-breakdown {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
padding: 0.5rem;
|
||||||
|
background: lighten(@color-primary, 50%);
|
||||||
|
border-radius: 4px;
|
||||||
|
margin: 0.35rem 0;
|
||||||
|
font-size: 1rem;
|
||||||
|
|
||||||
|
.die-result {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.25rem;
|
||||||
|
font-weight: bold;
|
||||||
|
color: @color-text;
|
||||||
|
|
||||||
|
&.max { color: @color-critical-success; }
|
||||||
|
&.min { color: @color-critical-failure; }
|
||||||
|
|
||||||
|
i { color: @color-primary; font-size: 1.1rem; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.roll-mod {
|
||||||
|
color: @color-text-light;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.roll-equals {
|
||||||
|
color: @color-text-light;
|
||||||
|
}
|
||||||
|
|
||||||
|
.roll-total {
|
||||||
|
font-family: @font-heading;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
font-weight: bold;
|
||||||
|
color: @color-primary;
|
||||||
|
}
|
||||||
|
|
||||||
|
.roll-dc {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: @color-text-light;
|
||||||
|
border-left: 1px solid @color-border;
|
||||||
|
padding-left: 0.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.outcome-badge {
|
||||||
|
text-align: center;
|
||||||
|
padding: 0.25rem 0.75rem;
|
||||||
|
border-radius: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 0.88rem;
|
||||||
|
|
||||||
|
&.criticalSuccess { background: @color-critical-success; color: white; }
|
||||||
|
&.success { background: @color-success; color: white; }
|
||||||
|
&.failure { background: @color-failure; color: white; }
|
||||||
|
&.criticalFailure { background: @color-critical-failure; color: white; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.private-result {
|
||||||
|
text-align: center;
|
||||||
|
color: @color-text-light;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
padding: 0.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
+12
-9
@@ -4,6 +4,8 @@
|
|||||||
{{formInput fields.name value=source.name}}
|
{{formInput fields.name value=source.name}}
|
||||||
</div>
|
</div>
|
||||||
<div class="item-body">
|
<div class="item-body">
|
||||||
|
|
||||||
|
<div class="form-row">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Ability.TypeLabel"}}</label>
|
<label>{{localize "AWEMMY.Ability.TypeLabel"}}</label>
|
||||||
{{formField systemFields.abilityType value=system.abilityType localize=true}}
|
{{formField systemFields.abilityType value=system.abilityType localize=true}}
|
||||||
@@ -12,19 +14,24 @@
|
|||||||
<label>{{localize "AWEMMY.Ability.CostLabel"}}</label>
|
<label>{{localize "AWEMMY.Ability.CostLabel"}}</label>
|
||||||
{{formField systemFields.cost value=system.cost localize=true}}
|
{{formField systemFields.cost value=system.cost localize=true}}
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Ability.Frequency"}}</label>
|
<label>{{localize "AWEMMY.Ability.Frequency"}}</label>
|
||||||
{{formInput systemFields.frequency value=system.frequency}}
|
{{formInput systemFields.frequency value=system.frequency}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Ability.Requirements"}}</label>
|
<label>{{localize "AWEMMY.Ability.Requirements"}}</label>
|
||||||
{{formInput systemFields.requirements value=system.requirements}}
|
{{formInput systemFields.requirements value=system.requirements}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Ability.Trigger"}}</label>
|
<label>{{localize "AWEMMY.Ability.Trigger"}}</label>
|
||||||
{{formInput systemFields.trigger value=system.trigger}}
|
{{formInput systemFields.trigger value=system.trigger}}
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
|
<div class="form-group-tags">
|
||||||
<label>{{localize "AWEMMY.Ability.Traits"}}</label>
|
<label>{{localize "AWEMMY.Ability.Traits"}}</label>
|
||||||
<div class="tags-list">
|
<div class="tags-list">
|
||||||
{{#each system.traits}}
|
{{#each system.traits}}
|
||||||
@@ -33,15 +40,11 @@
|
|||||||
<input type="text" class="new-tag" data-action="addTrait" placeholder="{{localize 'AWEMMY.Ability.AddTrait'}}" />
|
<input type="text" class="new-tag" data-action="addTrait" placeholder="{{localize 'AWEMMY.Ability.AddTrait'}}" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Description</legend>
|
<legend>Description</legend>
|
||||||
{{formInput
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||||
systemFields.description
|
|
||||||
enriched=enrichedDescription
|
|
||||||
value=system.description
|
|
||||||
name="system.description"
|
|
||||||
toggled=true
|
|
||||||
}}
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -4,19 +4,16 @@
|
|||||||
{{formInput fields.name value=source.name}}
|
{{formInput fields.name value=source.name}}
|
||||||
</div>
|
</div>
|
||||||
<div class="item-body">
|
<div class="item-body">
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Archetype.PrerequisiteLevel"}}</label>
|
<label>{{localize "AWEMMY.Archetype.PrerequisiteLevel"}}</label>
|
||||||
{{formInput systemFields.prerequisiteLevel value=system.prerequisiteLevel}}
|
{{formInput systemFields.prerequisiteLevel value=system.prerequisiteLevel}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Description</legend>
|
<legend>Description</legend>
|
||||||
{{formInput
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||||
systemFields.description
|
|
||||||
enriched=enrichedDescription
|
|
||||||
value=system.description
|
|
||||||
name="system.description"
|
|
||||||
toggled=true
|
|
||||||
}}
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -4,19 +4,16 @@
|
|||||||
{{formInput fields.name value=source.name}}
|
{{formInput fields.name value=source.name}}
|
||||||
</div>
|
</div>
|
||||||
<div class="item-body">
|
<div class="item-body">
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Background.Bonus"}}</label>
|
<label>{{localize "AWEMMY.Background.Bonus"}}</label>
|
||||||
{{formInput systemFields.bonus value=system.bonus}}
|
{{formInput systemFields.bonus value=system.bonus}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Description</legend>
|
<legend>Description</legend>
|
||||||
{{formInput
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||||
systemFields.description
|
|
||||||
enriched=enrichedDescription
|
|
||||||
value=system.description
|
|
||||||
name="system.description"
|
|
||||||
toggled=true
|
|
||||||
}}
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -1,14 +1,48 @@
|
|||||||
<div class="awemmy-chat">
|
<div class="awemmy-chat">
|
||||||
|
|
||||||
|
{{!-- Header: portrait + actor name + attribute --}}
|
||||||
<div class="chat-roll-header">
|
<div class="chat-roll-header">
|
||||||
|
{{#if actorImage}}
|
||||||
|
<img class="chat-actor-img" src="{{actorImage}}" alt="{{actorName}}" />
|
||||||
|
{{/if}}
|
||||||
|
<div class="chat-roll-info">
|
||||||
|
{{#if actorName}}<div class="chat-actor-name">{{actorName}}</div>{{/if}}
|
||||||
<div class="chat-roll-label">{{flavor}}</div>
|
<div class="chat-roll-label">{{flavor}}</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{{#unless isPrivate}}
|
{{#unless isPrivate}}
|
||||||
<div class="roll-result">
|
|
||||||
{{total}}
|
{{!-- Dice breakdown --}}
|
||||||
|
<div class="roll-breakdown">
|
||||||
|
{{#each dice}}
|
||||||
|
{{#each results}}
|
||||||
|
<span class="die-result {{#if (eq result ../faces)}}max{{else if (eq result 1)}}min{{/if}}">
|
||||||
|
<i class="fa-solid fa-dice-d{{../faces}}"></i> {{result}}
|
||||||
|
</span>
|
||||||
|
{{/each}}
|
||||||
|
{{/each}}
|
||||||
|
{{#if modifier}}
|
||||||
|
<span class="roll-mod">
|
||||||
|
{{#if (gt modifier 0)}}+ {{modifier}}{{else if (lt modifier 0)}}− {{abs modifier}}{{/if}}
|
||||||
|
</span>
|
||||||
|
{{/if}}
|
||||||
|
{{#if bonus}}
|
||||||
|
<span class="roll-mod situational">
|
||||||
|
{{#if (gt bonus 0)}}+ {{bonus}}{{else if (lt bonus 0)}}− {{abs bonus}}{{/if}}
|
||||||
|
</span>
|
||||||
|
{{/if}}
|
||||||
|
{{#if knowledgeBonus}}
|
||||||
|
<span class="roll-mod knowledge">
|
||||||
|
{{#if (gt knowledgeBonus 0)}}+ {{knowledgeBonus}}{{else if (lt knowledgeBonus 0)}}− {{abs knowledgeBonus}}{{/if}}
|
||||||
|
</span>
|
||||||
|
{{/if}}
|
||||||
|
<span class="roll-equals">=</span>
|
||||||
|
<span class="roll-total">{{total}}</span>
|
||||||
{{#if dc}}<span class="roll-dc">/ DC {{dc}}</span>{{/if}}
|
{{#if dc}}<span class="roll-dc">/ DC {{dc}}</span>{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{!-- Outcome badge --}}
|
||||||
{{#if outcome}}
|
{{#if outcome}}
|
||||||
<div class="outcome-badge {{outcome}}">
|
<div class="outcome-badge {{outcome}}">
|
||||||
{{#if (eq outcome "criticalSuccess")}}
|
{{#if (eq outcome "criticalSuccess")}}
|
||||||
@@ -22,9 +56,11 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{else}}
|
{{else}}
|
||||||
<div class="private-result">
|
<div class="private-result">
|
||||||
<i class="fa-solid fa-eye-slash"></i> {{localize "AWEMMY.Roll.Private"}}
|
<i class="fa-solid fa-eye-slash"></i> {{localize "AWEMMY.Roll.Private"}}
|
||||||
</div>
|
</div>
|
||||||
{{/unless}}
|
{{/unless}}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,6 +4,8 @@
|
|||||||
{{formInput fields.name value=source.name}}
|
{{formInput fields.name value=source.name}}
|
||||||
</div>
|
</div>
|
||||||
<div class="item-body">
|
<div class="item-body">
|
||||||
|
|
||||||
|
<div class="form-row">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Equipment.Quantity"}}</label>
|
<label>{{localize "AWEMMY.Equipment.Quantity"}}</label>
|
||||||
{{formInput systemFields.quantity value=system.quantity}}
|
{{formInput systemFields.quantity value=system.quantity}}
|
||||||
@@ -13,14 +15,11 @@
|
|||||||
{{formInput systemFields.weight value=system.weight}}
|
{{formInput systemFields.weight value=system.weight}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Description</legend>
|
<legend>Description</legend>
|
||||||
{{formInput
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||||
systemFields.description
|
|
||||||
enriched=enrichedDescription
|
|
||||||
value=system.description
|
|
||||||
name="system.description"
|
|
||||||
toggled=true
|
|
||||||
}}
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
+10
-9
@@ -4,6 +4,8 @@
|
|||||||
{{formInput fields.name value=source.name}}
|
{{formInput fields.name value=source.name}}
|
||||||
</div>
|
</div>
|
||||||
<div class="item-body">
|
<div class="item-body">
|
||||||
|
|
||||||
|
<div class="form-row">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Field.KeyAttribute"}}</label>
|
<label>{{localize "AWEMMY.Field.KeyAttribute"}}</label>
|
||||||
{{formField systemFields.keyAttribute value=system.keyAttribute localize=true}}
|
{{formField systemFields.keyAttribute value=system.keyAttribute localize=true}}
|
||||||
@@ -12,11 +14,14 @@
|
|||||||
<label>{{localize "AWEMMY.Field.KeyAttribute2"}}</label>
|
<label>{{localize "AWEMMY.Field.KeyAttribute2"}}</label>
|
||||||
{{formField systemFields.keyAttribute2 value=system.keyAttribute2 localize=true}}
|
{{formField systemFields.keyAttribute2 value=system.keyAttribute2 localize=true}}
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Field.KnowledgeBonus"}}</label>
|
<label>{{localize "AWEMMY.Field.KnowledgeBonus"}}</label>
|
||||||
{{formInput systemFields.knowledgeBonus value=system.knowledgeBonus}}
|
{{formInput systemFields.knowledgeBonus value=system.knowledgeBonus}}
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
|
<div class="form-group-tags">
|
||||||
<label>{{localize "AWEMMY.Field.Specializations"}}</label>
|
<label>{{localize "AWEMMY.Field.Specializations"}}</label>
|
||||||
<div class="tags-list">
|
<div class="tags-list">
|
||||||
{{#each system.specializations}}
|
{{#each system.specializations}}
|
||||||
@@ -25,15 +30,11 @@
|
|||||||
<input type="text" class="new-tag" data-action="addSpecialization" placeholder="{{localize 'AWEMMY.Field.AddSpecialization'}}" />
|
<input type="text" class="new-tag" data-action="addSpecialization" placeholder="{{localize 'AWEMMY.Field.AddSpecialization'}}" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Description</legend>
|
<legend>Description</legend>
|
||||||
{{formInput
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||||
systemFields.description
|
|
||||||
enriched=enrichedDescription
|
|
||||||
value=system.description
|
|
||||||
name="system.description"
|
|
||||||
toggled=true
|
|
||||||
}}
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
+8
-10
@@ -4,25 +4,23 @@
|
|||||||
{{formInput fields.name value=source.name}}
|
{{formInput fields.name value=source.name}}
|
||||||
</div>
|
</div>
|
||||||
<div class="item-body">
|
<div class="item-body">
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Kit.Field"}}</label>
|
<label>{{localize "AWEMMY.Kit.Field"}}</label>
|
||||||
{{formInput systemFields.fieldName value=system.fieldName}}
|
{{formInput systemFields.fieldName value=system.fieldName}}
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
|
<div class="charges-group">
|
||||||
<label>{{localize "AWEMMY.Kit.Charges"}}</label>
|
<label>{{localize "AWEMMY.Kit.Charges"}}</label>
|
||||||
{{formInput systemFields.charges.fields.value value=system.charges.value}}
|
{{formInput systemFields.charges.fields.value value=system.charges.value}}
|
||||||
<span>/</span>
|
<span class="separator">/</span>
|
||||||
{{formInput systemFields.charges.fields.max value=system.charges.max}}
|
{{formInput systemFields.charges.fields.max value=system.charges.max}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Description</legend>
|
<legend>Description</legend>
|
||||||
{{formInput
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||||
systemFields.description
|
|
||||||
enriched=enrichedDescription
|
|
||||||
value=system.description
|
|
||||||
name="system.description"
|
|
||||||
toggled=true
|
|
||||||
}}
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
+50
-10
@@ -1,26 +1,65 @@
|
|||||||
<form class="awemmy-roll-dialog">
|
<form class="awemmy-roll-dialog">
|
||||||
|
|
||||||
{{! Attribute name + base modifier (read-only) }}
|
{{!-- Attribute name + modifier breakdown --}}
|
||||||
<div class="dialog-row check-label">
|
<div class="roll-header">
|
||||||
<span class="attr-name">{{attrLabel}}</span>
|
<span class="roll-attr-name">{{attrLabel}}</span>
|
||||||
<span class="base-modifier">
|
<span class="roll-formula-summary">
|
||||||
{{#if (gt modifier 0)}}+{{modifier}}{{else}}{{modifier}}{{/if}}
|
1d20
|
||||||
|
{{#if (gt modifier 0)}} + {{modifier}}{{else if (lt modifier 0)}} − {{abs modifier}}{{/if}}
|
||||||
|
{{#if (gt attributeBonus 0)}} + <em>{{attributeBonus}}</em>{{else if (lt attributeBonus 0)}} − <em>{{abs attributeBonus}}</em>{{/if}}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{! Situational bonus / penalty }}
|
{{!-- Attribute persistent bonus/penalty (read-only if non-zero) --}}
|
||||||
|
{{#if attributeBonus}}
|
||||||
|
<div class="dialog-row hint-row">
|
||||||
|
<span class="hint-label">{{localize "AWEMMY.Roll.AttributeBonus"}}</span>
|
||||||
|
<span class="hint-value {{#if (gt attributeBonus 0)}}positive{{else}}negative{{/if}}">
|
||||||
|
{{#if (gt attributeBonus 0)}}+{{/if}}{{attributeBonus}}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Situational bonus / penalty --}}
|
||||||
<div class="dialog-row">
|
<div class="dialog-row">
|
||||||
<label for="awe-bonus">{{localize "AWEMMY.Roll.SituationalBonus"}}</label>
|
<label for="awe-bonus">{{localize "AWEMMY.Roll.SituationalBonus"}}</label>
|
||||||
<input type="number" id="awe-bonus" name="bonus" value="0" />
|
<select id="awe-bonus" name="bonus">
|
||||||
|
{{#each bonusChoices}}
|
||||||
|
<option value="{{this.value}}"{{#if this.selected}} selected{{/if}}>{{this.label}}</option>
|
||||||
|
{{/each}}
|
||||||
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{! DC (optional) }}
|
{{!-- Knowledge bonus (field items) --}}
|
||||||
|
{{#if knowledgeBonuses.length}}
|
||||||
|
<div class="dialog-row">
|
||||||
|
<label for="awe-knowledge">{{localize "AWEMMY.Roll.KnowledgeBonus"}}</label>
|
||||||
|
<select id="awe-knowledge" name="knowledgeBonus">
|
||||||
|
<option value="0">—</option>
|
||||||
|
{{#each knowledgeBonuses}}
|
||||||
|
<option value="{{this.bonus}}">{{this.label}} (+{{this.bonus}})</option>
|
||||||
|
{{/each}}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- DC --}}
|
||||||
<div class="dialog-row">
|
<div class="dialog-row">
|
||||||
<label for="awe-dc">{{localize "AWEMMY.Roll.DC"}}</label>
|
<label for="awe-dc">{{localize "AWEMMY.Roll.DC"}}</label>
|
||||||
<input type="number" id="awe-dc" name="dc" value="{{dc}}" placeholder="—" />
|
<select id="awe-dc" name="dc">
|
||||||
|
{{#each dcChoices}}
|
||||||
|
<option value="{{this.value}}"{{#if this.selected}} selected{{/if}}>{{this.label}}</option>
|
||||||
|
{{/each}}
|
||||||
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{! Roll visibility }}
|
{{!-- Formula preview --}}
|
||||||
|
<div class="dialog-row formula-preview">
|
||||||
|
<span class="formula-label">{{localize "AWEMMY.Roll.Formula"}}</span>
|
||||||
|
<span class="formula-text" id="awe-formula-preview">1d20 + {{totalMod}}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{!-- Roll visibility --}}
|
||||||
<div class="dialog-row">
|
<div class="dialog-row">
|
||||||
<label for="awe-visibility">{{localize "AWEMMY.Roll.Visibility"}}</label>
|
<label for="awe-visibility">{{localize "AWEMMY.Roll.Visibility"}}</label>
|
||||||
<select id="awe-visibility" name="visibility">
|
<select id="awe-visibility" name="visibility">
|
||||||
@@ -29,3 +68,4 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|||||||
+11
-9
@@ -4,10 +4,13 @@
|
|||||||
{{formInput fields.name value=source.name}}
|
{{formInput fields.name value=source.name}}
|
||||||
</div>
|
</div>
|
||||||
<div class="item-body">
|
<div class="item-body">
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Weapon.AttackAttribute"}}</label>
|
<label>{{localize "AWEMMY.Weapon.AttackAttribute"}}</label>
|
||||||
{{formField systemFields.attackAttribute value=system.attackAttribute localize=true}}
|
{{formField systemFields.attackAttribute value=system.attackAttribute localize=true}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-row">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Weapon.Damage"}}</label>
|
<label>{{localize "AWEMMY.Weapon.Damage"}}</label>
|
||||||
{{formInput systemFields.damageFormula value=system.damageFormula}}
|
{{formInput systemFields.damageFormula value=system.damageFormula}}
|
||||||
@@ -16,11 +19,14 @@
|
|||||||
<label>{{localize "AWEMMY.Weapon.DamageType"}}</label>
|
<label>{{localize "AWEMMY.Weapon.DamageType"}}</label>
|
||||||
{{formInput systemFields.damageType value=system.damageType}}
|
{{formInput systemFields.damageType value=system.damageType}}
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{{localize "AWEMMY.Weapon.Range"}}</label>
|
<label>{{localize "AWEMMY.Weapon.Range"}}</label>
|
||||||
{{formInput systemFields.range value=system.range}}
|
{{formInput systemFields.range value=system.range}}
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
|
<div class="form-group-tags">
|
||||||
<label>{{localize "AWEMMY.Ability.Traits"}}</label>
|
<label>{{localize "AWEMMY.Ability.Traits"}}</label>
|
||||||
<div class="tags-list">
|
<div class="tags-list">
|
||||||
{{#each system.traits}}
|
{{#each system.traits}}
|
||||||
@@ -29,15 +35,11 @@
|
|||||||
<input type="text" class="new-tag" data-action="addTrait" placeholder="{{localize 'AWEMMY.Ability.AddTrait'}}" />
|
<input type="text" class="new-tag" data-action="addTrait" placeholder="{{localize 'AWEMMY.Ability.AddTrait'}}" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Description</legend>
|
<legend>Description</legend>
|
||||||
{{formInput
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||||
systemFields.description
|
|
||||||
enriched=enrichedDescription
|
|
||||||
value=system.description
|
|
||||||
name="system.description"
|
|
||||||
toggled=true
|
|
||||||
}}
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
Reference in New Issue
Block a user