Correction dés dice-so-nice
This commit is contained in:
parent
5004774a15
commit
3888efc6aa
@ -1,5 +1,6 @@
|
|||||||
# 12.0
|
# 12.0
|
||||||
## 12.0.15 - Le messager d'Astrobazzarh
|
## 12.0.15 - Le messager d'Astrobazzarh
|
||||||
|
- Correction des faces de dés personalisés dice-so-nice
|
||||||
- Les messages de maladies ne sont plus publics
|
- Les messages de maladies ne sont plus publics
|
||||||
- Les messages privés dans les TMR sont aussi envoyés au GM
|
- Les messages privés dans les TMR sont aussi envoyés au GM
|
||||||
- Les informations de compétences pouvant augmenter s'affichent comme tooltips
|
- Les informations de compétences pouvant augmenter s'affichent comme tooltips
|
||||||
|
@ -2,19 +2,14 @@ import { ChatUtility } from "./chat-utility.js";
|
|||||||
import { HIDE_DICE, SHOW_DICE } from "./constants.js";
|
import { HIDE_DICE, SHOW_DICE } from "./constants.js";
|
||||||
import { Misc } from "./misc.js";
|
import { Misc } from "./misc.js";
|
||||||
|
|
||||||
function img(src) {
|
const imgHeures = [1, 2, 3, 4, 5, 6, 7, 9, 9, 10, 11, 12].map(heure => {
|
||||||
return `<img src="${src}" class="dice-img" />`
|
|
||||||
}
|
|
||||||
|
|
||||||
function iconHeure(heure) {
|
|
||||||
if (heure < 10) {
|
if (heure < 10) {
|
||||||
heure = '0' + heure;
|
heure = '0' + heure;
|
||||||
}
|
}
|
||||||
return `systems/foundryvtt-reve-de-dragon/icons/heures/hd${heure}.webp`
|
return `<img src="systems/foundryvtt-reve-de-dragon/icons/heures/hd${heure}.webp" class="dice-img" />`
|
||||||
}
|
})
|
||||||
const imagesHeures = [1, 2, 3, 4, 5, 6, 7, 9, 9, 10, 11, 12].map(it => iconHeure(it));
|
|
||||||
|
|
||||||
const imgSigneDragon = img(imagesHeures[4]);
|
const imgSigneDragon = imgHeures[4]
|
||||||
|
|
||||||
/** De pour les jets de rencontre */
|
/** De pour les jets de rencontre */
|
||||||
export class DeTMR extends Die {
|
export class DeTMR extends Die {
|
||||||
@ -25,7 +20,7 @@ export class DeTMR extends Die {
|
|||||||
return {
|
return {
|
||||||
type: "dt",
|
type: "dt",
|
||||||
font: "HeuresDraconiques",
|
font: "HeuresDraconiques",
|
||||||
fontScale: 0.7,
|
fontScale: 0.8,
|
||||||
labels: ['1', '2', '3', '4', '5', '6', 'd', '0'],
|
labels: ['1', '2', '3', '4', '5', '6', 'd', '0'],
|
||||||
system: system
|
system: system
|
||||||
}
|
}
|
||||||
@ -37,13 +32,13 @@ export class DeTMR extends Die {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async evaluate(options) {
|
async evaluate(options) {
|
||||||
await super.evaluate(options);
|
await super.evaluate(options)
|
||||||
this.explode("x=8");
|
await this.reroll('r=8', { recursive: true })
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
get total() {
|
get total() {
|
||||||
return this.values.filter(it => it != 8).reduce(Misc.sum(), 0);
|
return this.values.map(it => Misc.modulo(it, 8)).reduce(Misc.sum(), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
getResultLabel(diceTerm) {
|
getResultLabel(diceTerm) {
|
||||||
@ -56,13 +51,14 @@ export class DeTMR extends Die {
|
|||||||
|
|
||||||
/** DeDraconique pour le D8 sans limite avec 8=>0 */
|
/** DeDraconique pour le D8 sans limite avec 8=>0 */
|
||||||
export class DeDraconique extends Die {
|
export class DeDraconique extends Die {
|
||||||
|
/** @override */
|
||||||
static DENOMINATION = "r";
|
static DENOMINATION = "r";
|
||||||
|
|
||||||
static diceSoNiceData(system) {
|
static diceSoNiceData(system) {
|
||||||
return {
|
return {
|
||||||
type: "dr",
|
type: "dr",
|
||||||
font: "HeuresDraconiques",
|
font: "HeuresDraconiques",
|
||||||
fontScale: 0.7,
|
fontScale: 0.8,
|
||||||
labels: ['1', '2', '3', '4', '5', '6', 'd', '0'],
|
labels: ['1', '2', '3', '4', '5', '6', 'd', '0'],
|
||||||
system: system
|
system: system
|
||||||
}
|
}
|
||||||
@ -75,7 +71,7 @@ export class DeDraconique extends Die {
|
|||||||
|
|
||||||
async evaluate(options) {
|
async evaluate(options) {
|
||||||
await super.evaluate(options);
|
await super.evaluate(options);
|
||||||
this.explode("x=7");
|
await this.explode("x=7");
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -85,7 +81,7 @@ export class DeDraconique extends Die {
|
|||||||
|
|
||||||
getResultLabel(diceTerm) {
|
getResultLabel(diceTerm) {
|
||||||
switch (diceTerm.result) {
|
switch (diceTerm.result) {
|
||||||
case 7: return imgSigneDragon;
|
case 7: return imgSigneDragon
|
||||||
case 8: return '0';
|
case 8: return '0';
|
||||||
}
|
}
|
||||||
return diceTerm.result.toString();
|
return diceTerm.result.toString();
|
||||||
@ -102,6 +98,7 @@ export class DeHeure extends Die {
|
|||||||
return {
|
return {
|
||||||
type: "dh",
|
type: "dh",
|
||||||
font: "HeuresDraconiques",
|
font: "HeuresDraconiques",
|
||||||
|
fontScale: 1.2,
|
||||||
labels: ['v', 'i', 'f', 'o', 'd', 'e', 'l', 's', 'p', 'a', 'r', 'c'],
|
labels: ['v', 'i', 'f', 'o', 'd', 'e', 'l', 's', 'p', 'a', 'r', 'c'],
|
||||||
system: system
|
system: system
|
||||||
}
|
}
|
||||||
@ -113,15 +110,15 @@ export class DeHeure extends Die {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getResultLabel(diceTerm) {
|
getResultLabel(diceTerm) {
|
||||||
return img(imagesHeures[diceTerm.result - 1]);
|
return imgHeures[diceTerm.result - 1]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export class RdDDice {
|
export class RdDDice {
|
||||||
static init() {
|
static init() {
|
||||||
CONFIG.Dice.terms[DeTMR.DENOMINATION] = DeTMR;
|
CONFIG.Dice.terms[DeTMR.DENOMINATION] = DeTMR
|
||||||
CONFIG.Dice.terms[DeDraconique.DENOMINATION] = DeDraconique;
|
CONFIG.Dice.terms[DeDraconique.DENOMINATION] = DeDraconique
|
||||||
CONFIG.Dice.terms[DeHeure.DENOMINATION] = DeHeure;
|
CONFIG.Dice.terms[DeHeure.DENOMINATION] = DeHeure
|
||||||
}
|
}
|
||||||
|
|
||||||
static onReady() {
|
static onReady() {
|
||||||
@ -132,6 +129,14 @@ export class RdDDice {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static diceSoNiceReady(dice3d) {
|
||||||
|
dice3d.DiceFactory.systems.keys().forEach(system => {
|
||||||
|
dice3d.addDicePreset(DeTMR.diceSoNiceData(system));
|
||||||
|
dice3d.addDicePreset(DeDraconique.diceSoNiceData(system));
|
||||||
|
dice3d.addDicePreset(DeHeure.diceSoNiceData(system));
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
static async rollHeure(options = { showDice: HIDE_DICE }) {
|
static async rollHeure(options = { showDice: HIDE_DICE }) {
|
||||||
return await RdDDice.rollTotal("1dh", options) - 1
|
return await RdDDice.rollTotal("1dh", options) - 1
|
||||||
}
|
}
|
||||||
@ -155,14 +160,6 @@ export class RdDDice {
|
|||||||
return array[roll - 1];
|
return array[roll - 1];
|
||||||
}
|
}
|
||||||
|
|
||||||
static diceSoNiceReady(dice3d) {
|
|
||||||
for (const system of Object.keys(dice3d.DiceFactory.systems)) {
|
|
||||||
dice3d.addDicePreset(DeTMR.diceSoNiceData(system));
|
|
||||||
dice3d.addDicePreset(DeDraconique.diceSoNiceData(system));
|
|
||||||
dice3d.addDicePreset(DeHeure.diceSoNiceData(system));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static async showDiceSoNice(roll, options) {
|
static async showDiceSoNice(roll, options) {
|
||||||
if (options.showDice == HIDE_DICE || !game.modules.get("dice-so-nice")?.active || !game.dice3d) {
|
if (options.showDice == HIDE_DICE || !game.modules.get("dice-so-nice")?.active || !game.dice3d) {
|
||||||
|
@ -567,7 +567,11 @@ input:is(.blessure-premiers_soins, .blessure-soins_complets) {
|
|||||||
|
|
||||||
.dice-img {
|
.dice-img {
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
|
max-width: 1.5rem;
|
||||||
|
max-height: 1.5rem;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
.in-text-img {
|
.in-text-img {
|
||||||
max-width: 1.2em;
|
max-width: 1.2em;
|
||||||
max-height: 1.2em;
|
max-height: 1.2em;
|
||||||
|
Loading…
Reference in New Issue
Block a user