2020-05-21 21:48:20 +02:00
|
|
|
/**
|
|
|
|
* Extend the base Actor entity by defining a custom roll data structure which is ideal for the Simple system.
|
|
|
|
* @extends {Actor}
|
|
|
|
*/
|
2020-05-22 22:37:02 +02:00
|
|
|
|
|
|
|
import { RdDUtility } from "./rdd-utility.js";
|
2020-07-25 10:29:28 +02:00
|
|
|
import { TMRUtility } from "./tmr-utility.js";
|
2020-06-03 21:35:18 +02:00
|
|
|
import { RdDRollDialog } from "./rdd-roll-dialog.js";
|
2020-07-05 21:45:25 +02:00
|
|
|
import { RdDTMRDialog } from "./rdd-tmr-dialog.js";
|
2020-11-12 16:35:51 +01:00
|
|
|
import { RdDResolutionTable } from "./rdd-resolution-table.js";
|
2020-05-22 22:37:02 +02:00
|
|
|
|
2020-05-22 00:48:43 +02:00
|
|
|
export class RdDActor extends Actor {
|
2020-05-22 22:37:02 +02:00
|
|
|
|
2020-05-24 20:19:57 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* Override the create() function to provide additional RdD functionality.
|
|
|
|
*
|
|
|
|
* This overrided create() function adds initial items
|
|
|
|
* Namely: Basic skills, money,
|
|
|
|
*
|
|
|
|
* @param {Object} data Barebones actor data which this function adds onto.
|
|
|
|
* @param {Object} options (Unused) Additional options which customize the creation workflow.
|
|
|
|
*
|
|
|
|
*/
|
2020-06-10 08:23:58 +02:00
|
|
|
|
2020-05-24 20:19:57 +02:00
|
|
|
static async create(data, options) {
|
|
|
|
// If the created actor has items (only applicable to duplicated actors) bypass the new actor creation logic
|
|
|
|
if (data.items) {
|
|
|
|
return super.create(data, options);
|
|
|
|
}
|
2020-09-20 17:38:21 +02:00
|
|
|
|
2020-06-22 10:18:03 +02:00
|
|
|
data.items = [];
|
2020-09-20 17:38:21 +02:00
|
|
|
let compendiumName = "";
|
2020-06-22 10:18:03 +02:00
|
|
|
if (data.type == "personnage")
|
|
|
|
{
|
2020-09-20 17:38:21 +02:00
|
|
|
compendiumName = "foundryvtt-reve-de-dragon.competences";
|
2020-09-20 16:36:39 +02:00
|
|
|
}
|
|
|
|
if (data.type == "humanoide")
|
|
|
|
{
|
2020-11-04 16:29:10 +01:00
|
|
|
compendiumName = "foundryvtt-reve-de-dragon.competences-humanoides";
|
2020-09-20 16:36:39 +02:00
|
|
|
}
|
|
|
|
if (data.type == "creature")
|
|
|
|
{
|
2020-09-20 17:38:21 +02:00
|
|
|
compendiumName = "foundryvtt-reve-de-dragon.competences-creatures";
|
2020-06-22 10:18:03 +02:00
|
|
|
}
|
2020-09-20 16:36:39 +02:00
|
|
|
let competences = [];
|
|
|
|
const pack = game.packs.get(compendiumName);
|
|
|
|
await pack.getIndex().then(index => competences = index);
|
|
|
|
for (let comp of competences)
|
|
|
|
{
|
|
|
|
let compItem = undefined;
|
|
|
|
await pack.getEntity(comp._id).then(skill => compItem = skill);
|
|
|
|
data.items.push(compItem);
|
|
|
|
}
|
2020-09-20 17:38:21 +02:00
|
|
|
|
2020-09-27 22:33:02 +02:00
|
|
|
return super.create(data, options);
|
2020-09-20 16:36:39 +02:00
|
|
|
}
|
2020-09-20 17:38:21 +02:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
2020-09-20 16:36:39 +02:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
2020-05-22 00:48:43 +02:00
|
|
|
prepareData() {
|
|
|
|
super.prepareData();
|
2020-05-21 21:48:20 +02:00
|
|
|
|
2020-05-22 00:48:43 +02:00
|
|
|
const actorData = this.data;
|
|
|
|
const data = actorData.data;
|
|
|
|
const flags = actorData.flags;
|
2020-05-22 19:28:01 +02:00
|
|
|
|
2020-11-11 14:42:11 +01:00
|
|
|
// Dynamic computing fields
|
|
|
|
this.encombrementTotal = 0;
|
|
|
|
|
2020-05-22 00:48:43 +02:00
|
|
|
// Make separate methods for each Actor type (character, npc, etc.) to keep
|
|
|
|
// things organized.
|
|
|
|
if (actorData.type === 'personnage') this._prepareCharacterData(actorData);
|
2020-09-20 21:52:46 +02:00
|
|
|
if (actorData.type === 'creature') this.computeEtatGeneral(actorData);
|
2020-11-04 16:29:10 +01:00
|
|
|
if (actorData.type === 'humanoide') this.computeEtatGeneral(actorData);
|
2020-05-22 00:48:43 +02:00
|
|
|
}
|
|
|
|
|
2020-06-03 21:35:18 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-05-22 00:48:43 +02:00
|
|
|
/**
|
|
|
|
* Prepare Character type specific data
|
|
|
|
*/
|
|
|
|
_prepareCharacterData(actorData) {
|
2020-05-24 20:19:57 +02:00
|
|
|
// Initialize empty items
|
|
|
|
RdDUtility.computeCarac(actorData.data);
|
2020-11-11 14:42:11 +01:00
|
|
|
this.computeEncombrementTotal();
|
2020-06-07 23:16:29 +02:00
|
|
|
this.computeEtatGeneral();
|
2020-05-22 00:48:43 +02:00
|
|
|
}
|
2020-05-24 20:19:57 +02:00
|
|
|
|
2020-07-14 22:19:29 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
getCurrentReve() {
|
|
|
|
return this.data.data.reve.reve.value;
|
|
|
|
}
|
2020-11-12 14:20:10 +01:00
|
|
|
|
2020-07-14 22:19:29 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
getBestDraconic() {
|
2020-11-12 14:20:10 +01:00
|
|
|
const list = this.getDraconicList().sort((a, b) => b.data.niveau - a.data.niveau);
|
|
|
|
if (list.length==0)
|
|
|
|
{
|
|
|
|
return { name: "none", niveau: -11 };
|
2020-07-14 22:19:29 +02:00
|
|
|
}
|
2020-11-12 14:20:10 +01:00
|
|
|
return duplicate(list[0]);
|
2020-07-14 22:19:29 +02:00
|
|
|
}
|
2020-11-12 14:20:10 +01:00
|
|
|
|
2020-07-26 18:44:03 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async deleteSortReserve(coordTMR) {
|
|
|
|
let reserve = duplicate(this.data.data.reve.reserve);
|
|
|
|
let len = reserve.list.length;
|
|
|
|
let i = 0;
|
|
|
|
let newTable = [];
|
|
|
|
for( i=0; i < len; i++) {
|
|
|
|
if (reserve.list[i].coord != coordTMR )
|
|
|
|
newTable.push(reserve.list[i]);
|
|
|
|
}
|
|
|
|
if ( newTable.length != len ) {
|
|
|
|
reserve.list = newTable;
|
|
|
|
await this.update( {"data.reve.reserve": reserve } );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-22 22:37:02 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-11-12 16:35:51 +01:00
|
|
|
async performRoll(rollData) {
|
|
|
|
|
2020-06-12 11:47:41 +02:00
|
|
|
// Manage weapon categories when parrying (cf. page 115 )
|
2020-11-12 16:35:51 +01:00
|
|
|
let need_resist = false; // Do we need to make resistance roll for defender ?
|
|
|
|
if (rollData.arme && rollData.attackerRoll) { // Manage parade depeding on weapon type, and change roll results
|
|
|
|
let attCategory = RdDUtility.getArmeCategory(rollData.attackerRoll.arme);
|
|
|
|
let defCategory = RdDUtility.getArmeCategory(rollData.arme);
|
|
|
|
if (defCategory == "bouclier")
|
|
|
|
rollData.needSignificative = true;
|
|
|
|
else if (attCategory != defCategory)
|
|
|
|
rollData.needSignificative = true;
|
|
|
|
if (attCategory.match("epee") && (defCategory == "hache" || defCategory == "lance"))
|
2020-06-12 11:47:41 +02:00
|
|
|
need_resist = true;
|
|
|
|
}
|
2020-11-12 16:35:51 +01:00
|
|
|
if (this.data.data.sante.sonne.value)
|
|
|
|
{
|
|
|
|
rollData.needSignificative = true;
|
2020-06-12 11:47:41 +02:00
|
|
|
}
|
2020-11-12 16:35:51 +01:00
|
|
|
|
|
|
|
let rolled = RdDResolutionTable.rollChances(rollData.rollTarget);
|
|
|
|
let result = rolled.roll;
|
|
|
|
let quality = rolled.quality
|
|
|
|
|
|
|
|
console.log(">>> ROLL", rollData, rolled);
|
|
|
|
let xpmsg = RdDResolutionTable.buildXpMessage(rolled, rollData.finalLevel);
|
|
|
|
|
|
|
|
let specialStr = "<br>Points de taches : " + rolled.tache + ", Points de qualité: " + rolled.qualite;
|
|
|
|
|
2020-06-10 08:23:58 +02:00
|
|
|
// Fight management !
|
2020-06-07 23:16:29 +02:00
|
|
|
let defenseMsg;
|
2020-06-11 00:29:32 +02:00
|
|
|
let encaisser = false;
|
2020-11-12 23:50:37 +01:00
|
|
|
if (rollData.arme || rollData.competence.name.toLowerCase() == 'esquive' ) {
|
2020-11-12 16:35:51 +01:00
|
|
|
// In case of fight, replace the message per dommages + localization. it indicates if result is OK or not
|
|
|
|
if (rollData.attackerRoll) { // Defense case !
|
|
|
|
if (rolled.isSuccess) {
|
2020-06-11 00:29:32 +02:00
|
|
|
specialStr = "<br><strong>Attaque parée/esquivée !</strong>";
|
|
|
|
} else {
|
|
|
|
specialStr = "<br><strong>Esquive/Parade échouée, encaissement !</strong>";
|
2020-11-12 16:35:51 +01:00
|
|
|
encaisser = true;
|
|
|
|
}
|
2020-06-17 20:31:43 +02:00
|
|
|
} else { // This is the attack roll!
|
2020-11-12 16:35:51 +01:00
|
|
|
if (rolled.isSuccess > 0) {
|
2020-06-24 00:22:40 +02:00
|
|
|
rollData.domArmePlusDom = parseInt(rollData.arme.data.dommages);
|
2020-11-12 16:35:51 +01:00
|
|
|
if (rollData.selectedCarac.label == "Mêlée") // +dom only for Melee
|
2020-06-24 00:22:40 +02:00
|
|
|
rollData.domArmePlusDom += parseInt(this.data.data.attributs.plusdom.value);
|
2020-11-12 16:35:51 +01:00
|
|
|
if (rollData.selectedCarac.label == "Lancer") { // +dom only for Melee/Lancer
|
2020-06-17 20:31:43 +02:00
|
|
|
let bdom = parseInt(this.data.data.attributs.plusdom.value);
|
2020-11-12 16:35:51 +01:00
|
|
|
if (bdom > parseInt(rollData.arme.data.dommages))
|
2020-11-11 04:24:07 +01:00
|
|
|
bdom = parseInt(rollData.arme.data.dommages);
|
2020-06-24 00:22:40 +02:00
|
|
|
rollData.domArmePlusDom += bdom
|
2020-06-17 20:31:43 +02:00
|
|
|
}
|
2020-11-12 16:35:51 +01:00
|
|
|
let encaissement = new Roll("2d10 + @domArmePlusDom", {domArmePlusDom : rollData.domArmePlusDom});
|
|
|
|
rollData.degats = parseInt(encaissement.roll().total);
|
2020-06-11 00:29:32 +02:00
|
|
|
rollData.loc = RdDUtility.getLocalisation();
|
|
|
|
for (let target of game.user.targets) {
|
2020-11-12 16:35:51 +01:00
|
|
|
defenseMsg = RdDUtility.buildDefenseChatCard(this, target, rollData);
|
2020-06-11 00:29:32 +02:00
|
|
|
specialStr = "<br><strong>Cible</strong> : " + target.actor.data.name;
|
|
|
|
}
|
|
|
|
specialStr += "<br>Dommages : " + rollData.degats + "<br>Localisation : " + rollData.loc.label;
|
|
|
|
} else {
|
2020-11-12 16:35:51 +01:00
|
|
|
specialStr = "<br>Echec ! Pas de dommages";
|
2020-06-07 23:16:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-12 16:35:51 +01:00
|
|
|
|
2020-07-25 10:29:28 +02:00
|
|
|
// Sort management
|
2020-07-23 22:09:40 +02:00
|
|
|
let lvl = ""
|
2020-11-12 16:35:51 +01:00
|
|
|
if (rollData.selectedSort) { // Lancement de sort !
|
2020-07-26 18:44:03 +02:00
|
|
|
let draconic = rollData.selectedSort.data.draconic;
|
2020-11-12 16:35:51 +01:00
|
|
|
specialStr = "<br>Lancement du sort <strong>" + rollData.selectedSort.name + "</strong> : " + draconic.charAt(0).toUpperCase() + draconic.slice(1) + "/" + rollData.selectedSort.data.difficulte +
|
|
|
|
"/" + rollData.selectedSort.data.caseTMR + "/R" + rollData.selectedSort.data.ptreve;
|
2020-07-26 18:44:03 +02:00
|
|
|
specialStr += "<br>Depuis la case " + rollData.coord + " (" + TMRUtility.getTMRDescription(rollData.coord).label + ")";
|
2020-11-12 16:35:51 +01:00
|
|
|
lvl = rollData.selectedDraconic.name + "/" + rollData.selectedSort.name;
|
2020-07-25 10:29:28 +02:00
|
|
|
let costReve = rollData.selectedSort.data.ptreve;
|
|
|
|
let myReve = duplicate(this.data.data.reve.reve);
|
2020-11-12 16:35:51 +01:00
|
|
|
if (rollData.tache > 0) { // Réussite du sort !
|
|
|
|
if (rollData.tache >= 4) costReve = Math.ceil(costReve / 2);
|
|
|
|
if (costReve < 1) costReve = 1;
|
2020-07-25 10:29:28 +02:00
|
|
|
myReve.value = myReve.value - costReve; // Todo 0 pts de reve !!!!
|
|
|
|
if (myReve.value < 0) myReve.value = 0;
|
2020-11-12 16:35:51 +01:00
|
|
|
await this.update({ "data.reve.reve": myReve });
|
2020-07-25 10:29:28 +02:00
|
|
|
specialStr += "<br>Réussite du sort pour " + costReve + " Points de Rêve";
|
2020-11-12 16:35:51 +01:00
|
|
|
if (!rollData.isSortReserve) {
|
2020-07-26 17:26:17 +02:00
|
|
|
this.currentTMR.close(); // Close TMR !
|
2020-07-26 18:44:03 +02:00
|
|
|
} else { // Mise en réserve
|
|
|
|
let reserve = duplicate(this.data.data.reve.reserve);
|
2020-11-12 16:35:51 +01:00
|
|
|
reserve.list.push({ coord: rollData.coord, sort: duplicate(rollData.selectedSort), draconic: duplicate(rollData.selectedDraconic) });
|
|
|
|
await this.update({ "data.reve.reserve": reserve });
|
2020-07-26 18:44:03 +02:00
|
|
|
this.currentTMR.updateSortReserve();
|
|
|
|
}
|
2020-07-25 10:29:28 +02:00
|
|
|
} else {
|
2020-11-12 16:35:51 +01:00
|
|
|
if (rollData.tache == -4) { // Echec total !
|
2020-07-25 10:29:28 +02:00
|
|
|
costReve *= 2;
|
|
|
|
myReve.value = myReve.value - costReve; // Todo 0 pts de reve !!!!
|
|
|
|
if (myReve.value < 0) myReve.value = 0;
|
2020-11-12 16:35:51 +01:00
|
|
|
await this.update({ "data.reve.reve": myReve });
|
2020-07-26 17:26:17 +02:00
|
|
|
specialStr += "<br><strong>Echec TOTAL</strong> du sort : " + costReve + " Points de Rêve";
|
2020-11-12 16:35:51 +01:00
|
|
|
} else {
|
2020-07-25 10:29:28 +02:00
|
|
|
specialStr += "<br>Echec du sort !";
|
|
|
|
}
|
2020-07-26 17:26:17 +02:00
|
|
|
this.currentTMR.close(); // Close TMR !
|
2020-07-25 10:29:28 +02:00
|
|
|
}
|
|
|
|
if (myReve.value == 0) { // 0 points de reve
|
2020-11-12 16:35:51 +01:00
|
|
|
ChatMessage.create({ title: "Zero Points de Reve !", content: this.name + " est réduit à 0 Points de Rêve, et tombe endormi !" });
|
2020-07-26 17:26:17 +02:00
|
|
|
this.currentTMR.close(); // Close TMR !
|
2020-07-25 10:29:28 +02:00
|
|
|
}
|
2020-07-23 22:09:40 +02:00
|
|
|
} else {
|
|
|
|
lvl = (rollData.competence) ? rollData.competence.name : rollData.bmValue;
|
|
|
|
}
|
2020-07-27 18:58:10 +02:00
|
|
|
|
|
|
|
// Save it for fight in the flags area
|
2020-11-12 23:50:37 +01:00
|
|
|
console.log("Saving Flag", this);
|
2020-11-12 16:35:51 +01:00
|
|
|
await this.setFlag('world', 'rollData', null);
|
|
|
|
await this.setFlag('world', 'rollData', rollData);
|
2020-11-12 23:50:37 +01:00
|
|
|
game.system.rdd.rollDataHandler[this.data._id] = duplicate(rollData);
|
2020-11-12 16:35:51 +01:00
|
|
|
|
2020-07-25 10:29:28 +02:00
|
|
|
// Final chat message
|
2020-11-12 16:35:51 +01:00
|
|
|
let chatOptions = {
|
|
|
|
content: "<strong>Test : " + rollData.selectedCarac.label + " / " + lvl + "</strong><br>Jet : " +
|
|
|
|
rollData.selectedCarac.value + " / " + rollData.finalLevelStr + " -> " + rolled.score + "%<br><strong>Résutat : </strong>" + result + "<br>" +
|
|
|
|
"<strong>" + quality + "</strong>" + specialStr + xpmsg,
|
|
|
|
user: game.user._id,
|
|
|
|
title: "Résultat du test"
|
|
|
|
}
|
|
|
|
ChatMessage.create(chatOptions);
|
|
|
|
|
2020-06-11 00:29:32 +02:00
|
|
|
// This an attack, generate the defense message
|
2020-11-12 16:35:51 +01:00
|
|
|
if (defenseMsg) {
|
2020-11-12 23:50:37 +01:00
|
|
|
defenseMsg.rollData = duplicate(rollData);
|
2020-11-12 16:35:51 +01:00
|
|
|
if (defenseMsg.toSocket) {
|
2020-07-28 09:20:01 +02:00
|
|
|
game.socket.emit("system.foundryvtt-reve-de-dragon", {
|
|
|
|
msg: "msg_defense",
|
2020-11-12 16:35:51 +01:00
|
|
|
data: defenseMsg
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
defenseMsg.whisper = [game.user];
|
|
|
|
ChatMessage.create(defenseMsg);
|
2020-07-28 09:20:01 +02:00
|
|
|
}
|
2020-06-11 00:29:32 +02:00
|
|
|
}
|
2020-07-28 09:20:01 +02:00
|
|
|
|
2020-06-11 00:29:32 +02:00
|
|
|
// Get damages!
|
2020-11-12 16:35:51 +01:00
|
|
|
if (encaisser) {
|
|
|
|
this.encaisserDommages(rollData.attackerRoll);
|
2020-06-11 00:29:32 +02:00
|
|
|
}
|
2020-11-12 16:35:51 +01:00
|
|
|
}
|
|
|
|
|
2020-05-24 20:19:57 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
updateCarac( caracName, caracValue )
|
|
|
|
{
|
2020-06-07 23:16:29 +02:00
|
|
|
let caracpath = "data.carac." + caracName + ".value"
|
|
|
|
this.update( { caracpath: caracValue } );
|
2020-05-24 20:19:57 +02:00
|
|
|
}
|
2020-05-28 23:36:09 +02:00
|
|
|
|
2020-09-20 17:38:21 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async updateCreatureCompetence( compName, fieldName, compValue )
|
|
|
|
{
|
|
|
|
let comp = RdDUtility.findCompetence( this.data.items, compName);
|
2020-09-20 19:17:31 +02:00
|
|
|
console.log( comp );
|
2020-09-20 17:38:21 +02:00
|
|
|
if ( comp ) {
|
|
|
|
const update = {_id: comp._id }
|
|
|
|
if (fieldName == "niveau")
|
2020-09-20 19:17:31 +02:00
|
|
|
update['data.niveau'] = compValue;
|
2020-09-20 17:38:21 +02:00
|
|
|
else if (fieldName == "dommages")
|
2020-09-20 19:17:31 +02:00
|
|
|
update['data.dommages'] = compValue;
|
2020-09-20 17:38:21 +02:00
|
|
|
else
|
2020-09-20 19:17:31 +02:00
|
|
|
update['data.carac_value'] = compValue;
|
|
|
|
console.log(update);
|
2020-09-20 17:38:21 +02:00
|
|
|
const updated = await this.updateEmbeddedEntity("OwnedItem", update); // Updates one EmbeddedEntity
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-01 23:50:10 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async updateCompetence( compName, compValue )
|
|
|
|
{
|
|
|
|
let comp = RdDUtility.findCompetence( this.data.items, compName);
|
|
|
|
if ( comp ) {
|
2020-08-13 22:28:56 +02:00
|
|
|
let troncList = RdDUtility.isTronc( compName );
|
|
|
|
let maxNiveau = compValue;
|
|
|
|
if ( troncList ) {
|
2020-09-05 22:56:33 +02:00
|
|
|
let message = "Vous avez modifié une compétence 'tronc'. Vérifiez que les compétences suivantes évoluent ensemble jusqu'au niveau 0 : ";
|
2020-08-13 22:28:56 +02:00
|
|
|
for(let troncName of troncList) {
|
2020-09-05 22:56:33 +02:00
|
|
|
message += "<br>" + troncName;
|
2020-08-13 22:28:56 +02:00
|
|
|
}
|
2020-09-05 22:56:33 +02:00
|
|
|
ChatMessage.create( { title : "Compétence Tron",
|
|
|
|
content: message } );
|
2020-08-13 22:28:56 +02:00
|
|
|
}
|
|
|
|
const update = {_id: comp._id, 'data.niveau': maxNiveau };
|
2020-06-01 23:50:10 +02:00
|
|
|
const updated = await this.updateEmbeddedEntity("OwnedItem", update); // Updates one EmbeddedEntity
|
2020-06-12 22:46:04 +02:00
|
|
|
} else {
|
|
|
|
console.log("Competence not found", compName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async updateCompetenceXP( compName, compValue )
|
|
|
|
{
|
|
|
|
let comp = RdDUtility.findCompetence( this.data.items, compName);
|
|
|
|
if ( comp ) {
|
|
|
|
const update = {_id: comp._id, 'data.xp': compValue };
|
|
|
|
const updated = await this.updateEmbeddedEntity("OwnedItem", update); // Updates one EmbeddedEntity
|
2020-06-01 23:50:10 +02:00
|
|
|
} else {
|
|
|
|
console.log("Competence not found", compName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-29 22:52:41 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async updateCompteurValue( fieldName, fieldValue )
|
|
|
|
{
|
|
|
|
//console.log("Update", fieldName, fieldValue);
|
|
|
|
let content;
|
|
|
|
let compteurs = duplicate(this.data.data.compteurs);
|
|
|
|
compteurs[fieldName].value = fieldValue;
|
|
|
|
await this.update( {"data.compteurs": compteurs } );
|
|
|
|
}
|
|
|
|
|
2020-11-12 14:43:08 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** Supprime un item d'un conteneur, sur la base
|
|
|
|
* de leurs ID */
|
|
|
|
async enleverDeConteneur( itemId, conteneurId ) {
|
|
|
|
if ( !conteneurId ) return; // pas de conteneur (porté sur soi)
|
|
|
|
let conteneur = this.items.find( conteneur => conteneurId == conteneur._id); // recup conteneur
|
|
|
|
if ( conteneur ) { // Si présent
|
|
|
|
//console.log("Suppression du conteneur1", conteneurId, itemId, conteneur.data.data.contenu);
|
|
|
|
let newContenu = conteneur.data.data.contenu.filter( function(value, index, arr) { return value != itemId } );
|
|
|
|
//console.log("Suppression du conteneur2", conteneurId, itemId, newContenu);
|
|
|
|
let update = {_id: conteneurId, "data.contenu": newContenu };
|
|
|
|
await this.updateEmbeddedEntity("OwnedItem", update);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** Ajoute un item dans un conteneur, sur la base
|
|
|
|
* de leurs ID */
|
|
|
|
async ajouterAConteneur( itemId, conteneurId ) {
|
|
|
|
if ( !conteneurId ) return; // pas de conteneur (porté sur soi)
|
|
|
|
let conteneur = this.items.find( conteneur => conteneurId == conteneur._id);
|
|
|
|
if ( conteneur && conteneur.type == 'conteneur' ) {
|
|
|
|
conteneur.data.data.contenu.push( itemId );
|
|
|
|
await this.updateEmbeddedEntity("OwnedItem", conteneur.data );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-11 14:42:11 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
detectSurEncombrement( ) {
|
|
|
|
let diffEnc = Number(this.encombrementTotal) - Number(this.data.data.attributs.encombrement.value);
|
|
|
|
if ( diffEnc > 0 ) { // Sur-encombrement
|
|
|
|
let malus = Math.round( diffEnc);
|
|
|
|
malus = (malus == 0) ? 1 : malus; // Always 1 at least
|
2020-11-12 14:43:08 +01:00
|
|
|
//console.log("Sur enc malus", malus);
|
2020-11-11 14:42:11 +01:00
|
|
|
return malus;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-11-11 11:43:13 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
computeEncombrementTotal( ) {
|
|
|
|
let totalEnc = 0;
|
|
|
|
for (const item of this.data.items) {
|
|
|
|
if ( item.data && item.data.encombrement ) { // Enc value filtering
|
|
|
|
totalEnc += Number(item.data.encombrement);
|
|
|
|
}
|
|
|
|
}
|
2020-11-11 14:42:11 +01:00
|
|
|
this.encombrementTotal = totalEnc;
|
|
|
|
this.detectSurEncombrement();
|
2020-11-11 11:43:13 +01:00
|
|
|
}
|
|
|
|
|
2020-05-29 00:43:16 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
computeEtatGeneral( )
|
|
|
|
{
|
|
|
|
let data = this.data.data;
|
|
|
|
let state = 0;
|
|
|
|
state = state - (data.sante.vie.max - data.sante.vie.value);
|
2020-09-20 21:52:46 +02:00
|
|
|
if (data.sante.fatigue) // Creatures n'ont pas de fatigue
|
|
|
|
state = state + RdDUtility.currentFatigueMalus(data.sante.fatigue.value, data.sante.endurance.max);
|
2020-11-11 14:42:11 +01:00
|
|
|
state = state - this.detectSurEncombrement();
|
2020-05-29 00:43:16 +02:00
|
|
|
data.compteurs.etat.value = state;
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:04:35 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async ajouterRefoulement( value=1) {
|
|
|
|
let ret = "none";
|
|
|
|
|
|
|
|
let refoulement = duplicate(this.data.data.reve.refoulement);
|
|
|
|
refoulement.value = refoulement.value + value;
|
2020-07-25 10:29:28 +02:00
|
|
|
let total = new Roll("d20").roll().total;
|
|
|
|
if ( total <= refoulement.value ) {
|
2020-07-17 22:04:35 +02:00
|
|
|
ChatMessage.create( { title : "Souffle de Dragon",
|
|
|
|
content: game.user.name + " subit un Souffle de Dragon !" } );
|
|
|
|
refoulement.value = 0;
|
|
|
|
ret = "souffle";
|
|
|
|
}
|
|
|
|
await this.update( {"data.reve.refoulement": refoulement } );
|
|
|
|
return ret;
|
|
|
|
}
|
2020-07-21 23:51:24 +02:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async deleteTMRRencontreAtPosition( ) {
|
|
|
|
let rencontres = duplicate(this.data.data.reve.rencontre);
|
|
|
|
let len = rencontres.list.length;
|
|
|
|
let i = 0;
|
|
|
|
//console.log("List", rencontres, len);
|
|
|
|
let newTable = [];
|
|
|
|
for( i=0; i < len; i++) {
|
|
|
|
if (rencontres.list[i].coord != this.data.data.reve.tmrpos.coord )
|
|
|
|
newTable.push(rencontres.list[i]);
|
|
|
|
}
|
|
|
|
if ( newTable.length != len ) {
|
|
|
|
rencontres.list = newTable;
|
|
|
|
//console.log("Result: ", rencontres);
|
|
|
|
await this.update( {"data.reve.rencontre": rencontres } );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async addTMRRencontre( currentRencontre ) {
|
|
|
|
let rencontres = duplicate(this.data.data.reve.rencontre);
|
|
|
|
let len = rencontres.list.length;
|
|
|
|
let i = 0;
|
|
|
|
let already = false;
|
|
|
|
for( i=0; i < len; i++) {
|
|
|
|
if (rencontres.list[i].coord == this.data.data.reve.tmrpos.coord )
|
|
|
|
already = true;
|
|
|
|
}
|
|
|
|
if ( !already ) {
|
|
|
|
rencontres.list.push( {coord: this.data.data.reve.tmrpos.coord, rencontre: currentRencontre} );
|
|
|
|
await this.update( {"data.reve.rencontre": rencontres } );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:04:35 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async updatePointsDeReve( value ) {
|
|
|
|
let reve = duplicate(this.data.data.reve.reve);
|
|
|
|
reve.value = reve.value + value;
|
|
|
|
await this.update( {"data.reve.reve": reve } );
|
|
|
|
}
|
|
|
|
|
2020-05-31 23:06:25 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-06-07 23:16:29 +02:00
|
|
|
testSiSonne( sante, endurance )
|
2020-05-31 23:06:25 +02:00
|
|
|
{
|
2020-07-25 10:29:28 +02:00
|
|
|
let result = new Roll("d20").roll().total;
|
2020-05-31 23:06:25 +02:00
|
|
|
if ( result <= endurance.value)
|
2020-06-07 23:16:29 +02:00
|
|
|
sante.sonne.value = false;
|
2020-05-31 23:06:25 +02:00
|
|
|
if ( result > endurance.value || result == 20) // 20 is always a failure
|
2020-06-07 23:16:29 +02:00
|
|
|
sante.sonne.value = true;
|
2020-05-31 23:06:25 +02:00
|
|
|
if (result == 1) {
|
2020-06-07 23:16:29 +02:00
|
|
|
sante.sonne.value = false;
|
|
|
|
let xp = parseInt(this.data.data.carac.constitution.xp) + parseInt(1);
|
|
|
|
this.update( {"data.carac.constitution.xp": xp } ); // +1 XP !
|
|
|
|
// TODO : Output to chat
|
2020-05-31 23:06:25 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-27 16:27:41 +02:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
GetNumberBlessures( blessuresListe )
|
|
|
|
{
|
|
|
|
let nbB = 0;
|
|
|
|
for ( let b of blessuresListe) {
|
|
|
|
nbB += ( b.active) ? 1 : 0;
|
|
|
|
}
|
|
|
|
return nbB;
|
|
|
|
}
|
2020-08-29 22:52:41 +02:00
|
|
|
|
2020-05-28 23:36:09 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-06-07 23:16:29 +02:00
|
|
|
async santeIncDec(name, inc ) {
|
|
|
|
const sante = duplicate(this.data.data.sante);
|
|
|
|
let data = sante[name];
|
2020-05-31 23:06:25 +02:00
|
|
|
let lastValue = data.value; // Useful for Endurance and Sonné
|
2020-05-28 23:36:09 +02:00
|
|
|
data.value = data.value + inc;
|
|
|
|
if ( data.value > data.max ) data.value = data.max;
|
|
|
|
if ( data.value < 0 ) data.value = 0;
|
2020-05-31 23:06:25 +02:00
|
|
|
|
|
|
|
if (name == "endurance") {
|
2020-11-13 00:33:39 +01:00
|
|
|
if ( sante.fatigue && inc < 0 ) // Each endurance lost -> fatigue lost
|
2020-06-07 23:16:29 +02:00
|
|
|
sante.fatigue.value = sante.fatigue.value - inc
|
2020-05-31 23:06:25 +02:00
|
|
|
|
|
|
|
// If endurance is 0 -> -1 vie
|
2020-06-12 11:47:41 +02:00
|
|
|
if ( data.value == 0 && sante.vie.value > 0) {
|
2020-06-07 23:16:29 +02:00
|
|
|
sante.vie.value = sante.vie.value - 1;
|
2020-05-31 23:06:25 +02:00
|
|
|
}
|
2020-06-07 23:16:29 +02:00
|
|
|
let diffVie = sante.vie.max - sante.vie.value;
|
2020-06-01 23:50:10 +02:00
|
|
|
if ( data.value > data.max - (diffVie*2) ) {
|
|
|
|
data.value = data.max - (diffVie*2);
|
2020-05-31 23:06:25 +02:00
|
|
|
}
|
2020-06-12 11:47:41 +02:00
|
|
|
if ( data.value < 0 ) data.value = 0; // Security
|
2020-05-31 23:06:25 +02:00
|
|
|
|
2020-07-27 16:27:41 +02:00
|
|
|
let blessures = this.data.data.blessures;
|
|
|
|
let nbGraves = this.GetNumberBlessures(blessures.graves.liste);
|
|
|
|
let nbCritiques = this.GetNumberBlessures(blessures.critiques.liste);
|
|
|
|
let maxEnd = Math.floor( data.max / nbGraves);
|
2020-05-31 23:06:25 +02:00
|
|
|
if (data.value > maxEnd ) data.value = maxEnd;
|
2020-07-27 16:27:41 +02:00
|
|
|
if ( nbCritiques > 0 && data.value > 1) data.value = 1;
|
2020-05-31 23:06:25 +02:00
|
|
|
|
2020-06-07 23:16:29 +02:00
|
|
|
if (lastValue - data.value > 1) this.testSiSonne(sante, data); // Peut-être sonné si 2 points d'endurance perdus d'un coup
|
2020-05-31 23:06:25 +02:00
|
|
|
}
|
2020-07-25 10:29:28 +02:00
|
|
|
//console.log(name, inc, data.value);
|
2020-06-01 23:50:10 +02:00
|
|
|
|
2020-06-07 23:16:29 +02:00
|
|
|
let diffEndurance = sante.endurance.max - this.data.data.sante.endurance.value;
|
2020-09-20 21:14:05 +02:00
|
|
|
if ( sante.fatigue && sante.fatigue.value < diffEndurance) // If endurance lost, then the same amount of fatigue cannot be recovered
|
2020-06-07 23:16:29 +02:00
|
|
|
sante.fatigue.value = diffEndurance;
|
2020-07-25 10:29:28 +02:00
|
|
|
//console.log("SANTE::::", sante);
|
2020-06-07 23:16:29 +02:00
|
|
|
|
|
|
|
await this.update( {"data.sante": sante } );
|
|
|
|
}
|
2020-08-29 22:52:41 +02:00
|
|
|
|
2020-07-20 12:02:07 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-07-27 16:27:41 +02:00
|
|
|
async manageBlessureFromSheet( bType, index, active ) {
|
|
|
|
let bList = duplicate(this.data.data.blessures);
|
|
|
|
let blessure = bList[bType+"s"].liste[index];
|
2020-07-20 12:02:07 +02:00
|
|
|
blessure.active = !blessure.active;
|
2020-07-27 16:27:41 +02:00
|
|
|
if ( !blessure.active ) {
|
|
|
|
blessure.premiers_soins = 0;
|
|
|
|
blessure.soins_complets = 0;
|
|
|
|
blessure.jours = 0;
|
|
|
|
blessure.localisation = "";
|
|
|
|
}
|
|
|
|
//console.log("Blessure update", bType, index, blessure, bList );
|
|
|
|
await this.update( { 'data.blessures': bList } );
|
2020-07-20 12:02:07 +02:00
|
|
|
}
|
2020-07-27 16:27:41 +02:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async setDataBlessureFromSheet( bType, index, psoins, pcomplets, jours, loc) {
|
|
|
|
let bList = duplicate(this.data.data.blessures);
|
|
|
|
let blessure = bList[bType+"s"].liste[index];
|
|
|
|
blessure.premiers_soins = psoins;
|
|
|
|
blessure.soins_complets = pcomplets;
|
|
|
|
blessure.jours = jours;
|
|
|
|
blessure.localisation = loc;
|
|
|
|
await this.update( { 'data.blessures': bList } );
|
|
|
|
}
|
|
|
|
|
2020-06-07 23:16:29 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
manageBlessures( blessuresData )
|
|
|
|
{
|
2020-11-07 21:06:37 +01:00
|
|
|
let workData = duplicate(blessuresData);
|
|
|
|
|
|
|
|
// Fast exit
|
|
|
|
if ( blessuresData.legeres + blessuresData.graves + blessuresData.critiques == 0 ) return;
|
|
|
|
|
|
|
|
let blessures = duplicate(this.data.data.blessures);
|
|
|
|
// Manage blessures
|
|
|
|
if ( workData.legeres > 0 ) {
|
|
|
|
for (let k=0; k<blessures.legeres.liste.length; k++) {
|
|
|
|
let bless = blessures.legeres.liste[k];
|
|
|
|
if ( !bless.active ){
|
|
|
|
bless.active = true;
|
|
|
|
bless.loc = workData.locName;
|
|
|
|
workData.legeres--;
|
2020-06-22 10:18:03 +02:00
|
|
|
}
|
2020-11-07 21:06:37 +01:00
|
|
|
if (workData.legeres == 0) break;
|
2020-06-22 10:18:03 +02:00
|
|
|
}
|
2020-11-07 21:06:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( workData.legeres > 0 ) {
|
|
|
|
workData.graves += 1;
|
|
|
|
blessuresData.graves += 1;
|
|
|
|
}
|
2020-06-22 10:18:03 +02:00
|
|
|
|
2020-11-07 21:06:37 +01:00
|
|
|
if ( workData.graves > 0) {
|
|
|
|
for (let k=0; k<blessures.graves.liste.length; k++) {
|
|
|
|
let bless = blessures.graves.liste[k];
|
|
|
|
if ( !bless.active ) {
|
|
|
|
bless.active = true;
|
|
|
|
bless.loc = workData.locName;
|
|
|
|
workData.graves--;
|
2020-06-22 10:18:03 +02:00
|
|
|
}
|
2020-11-07 21:06:37 +01:00
|
|
|
if ( workData.graves == 0) break;
|
2020-06-22 10:18:03 +02:00
|
|
|
}
|
2020-11-07 21:06:37 +01:00
|
|
|
}
|
2020-06-22 10:18:03 +02:00
|
|
|
|
2020-11-07 21:06:37 +01:00
|
|
|
if ( workData.graves > 0 ) {
|
|
|
|
workData.critiques = 1;
|
|
|
|
blessuresData.critiques = 1;
|
|
|
|
}
|
2020-06-22 10:18:03 +02:00
|
|
|
|
2020-11-07 21:06:37 +01:00
|
|
|
if ( workData.critiques > 0 ) {
|
|
|
|
workData.endurance = this.data.data.sante.endurance.value; // Patch with real endurance current value (ie end -> 0 when critique)
|
|
|
|
blessures.critiques.liste[0].active = true;
|
|
|
|
blessures.critiques.liste[0].loc = workData.locName;
|
2020-06-22 10:18:03 +02:00
|
|
|
}
|
2020-11-07 21:06:37 +01:00
|
|
|
|
|
|
|
this.update( { "data.blessures": blessures } );
|
2020-05-28 23:36:09 +02:00
|
|
|
}
|
2020-08-29 22:52:41 +02:00
|
|
|
|
2020-11-12 16:35:51 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async stressTest() {
|
|
|
|
let target = RdDResolutionTable.computeChances(this.data.data.carac.reve.value, 0);
|
|
|
|
let stressRoll = this._stressRoll(target);
|
2020-08-29 22:52:41 +02:00
|
|
|
|
2020-11-12 16:35:51 +01:00
|
|
|
let compteurs = duplicate(this.data.data.compteurs);
|
|
|
|
let convertion = Math.floor(compteurs.stress.value * stressRoll.factor);
|
|
|
|
|
|
|
|
compteurs.experience.value += convertion;
|
|
|
|
compteurs.stress.value = Math.max(compteurs.stress.value - convertion - 1, 0);
|
|
|
|
|
|
|
|
ChatMessage.create({
|
|
|
|
title: "Jet de Stress", content: "Vous avez transformé " + convertion + " points de Stress en Expérience avec une réussite " + stressRoll.comment,
|
|
|
|
whisper: ChatMessage.getWhisperRecipients(game.user.name)
|
|
|
|
});
|
|
|
|
await this.update({ "data.compteurs": compteurs });
|
2020-08-29 22:52:41 +02:00
|
|
|
}
|
|
|
|
|
2020-11-12 16:35:51 +01:00
|
|
|
_stressRoll(target) {
|
|
|
|
let result = RdDResolutionTable.rollChances(target)
|
|
|
|
switch (result.quality) {
|
|
|
|
case "sign": return { factor: 0.75, comment: "Significative (75%) - " + result.roll }
|
|
|
|
case "norm": return { factor: 0.5, comment: "Normale (50%) - " + result.roll }
|
|
|
|
case "echec": return { factor: 0.2, comment: "Echec (20%) - " + result.roll }
|
|
|
|
case "epart": return { factor: 0.1, comment: "Echec particulier(10%) - " + result.roll }
|
|
|
|
case "etotal": return { factor: 0, comment: "Echec Total (0%) - " + result.roll }
|
|
|
|
}
|
|
|
|
let second = RdDResolutionTable.rollChances(target)
|
|
|
|
switch (second.qualite) {
|
|
|
|
case "part": case "sign":
|
|
|
|
return { factor: 1.5, comment: "Double Particulière (150%) - " + result + " puis " + second }
|
|
|
|
default:
|
|
|
|
return { factor: 1, comment: "Particulière (100%) - " + result + " puis " + second }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async rollUnSort(coord) {
|
2020-07-23 22:09:40 +02:00
|
|
|
let draconicList = this.getDraconicList();
|
|
|
|
let sortList = this.getSortList();
|
|
|
|
|
|
|
|
let rollData = {
|
2020-07-26 17:26:17 +02:00
|
|
|
selectedCarac: this.data.data.carac.reve,
|
|
|
|
etat: this.data.data.compteurs.etat.value,
|
|
|
|
draconicList: draconicList,
|
|
|
|
sortList: sortList,
|
|
|
|
selectedDraconic: draconicList[0],
|
|
|
|
selectedSort: sortList[0],
|
|
|
|
coord: coord,
|
|
|
|
finalLevel: 0,
|
|
|
|
bmValue: 0
|
2020-07-23 22:09:40 +02:00
|
|
|
}
|
|
|
|
let html = await renderTemplate('systems/foundryvtt-reve-de-dragon/templates/dialog-roll-sort.html', rollData);
|
|
|
|
new RdDRollDialog("sort", html, rollData, this ).render(true);
|
|
|
|
}
|
|
|
|
|
2020-06-12 22:46:04 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
async rollCarac( caracName )
|
|
|
|
{
|
|
|
|
let rollData = {
|
|
|
|
"selectedCarac": this.data.data.carac[caracName],
|
|
|
|
"bonusmalusTable": CONFIG.RDD.bonusmalus,
|
|
|
|
"etat": this.data.data.compteurs.etat.value,
|
|
|
|
"finalLevel": 0,
|
|
|
|
"bmValue": 0
|
|
|
|
}
|
|
|
|
console.log(caracName, rollData);
|
|
|
|
let html = await renderTemplate('systems/foundryvtt-reve-de-dragon/templates/dialog-roll-carac.html', rollData);
|
|
|
|
new RdDRollDialog("carac", html, rollData, this ).render(true);
|
|
|
|
}
|
2020-07-17 22:04:35 +02:00
|
|
|
|
2020-11-12 18:41:43 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
getSortList() {
|
|
|
|
return this.data.items.filter(item => item.type == "sort");
|
2020-07-17 22:04:35 +02:00
|
|
|
}
|
|
|
|
|
2020-11-12 18:41:43 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
getDraconicList() {
|
|
|
|
return this.data.items.filter(item => item.data.categorie == 'draconic')
|
2020-07-21 23:51:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-05 21:45:25 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-07-25 10:29:28 +02:00
|
|
|
async displayTMR( isRapide=false )
|
2020-07-05 21:45:25 +02:00
|
|
|
{
|
2020-07-25 10:29:28 +02:00
|
|
|
let minReveValue = (isRapide) ? 3 : 2;
|
|
|
|
if (this.data.data.reve.reve.value <= minReveValue ) {
|
2020-07-21 23:55:24 +02:00
|
|
|
ChatMessage.create( { title: "Montée impossible !", content: "Vous n'avez plus assez de Points de Reve pour monter dans les Terres Médianes",
|
|
|
|
whisper: ChatMessage.getWhisperRecipients(game.user.name) } );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-14 22:19:29 +02:00
|
|
|
let data = {
|
2020-07-17 22:04:35 +02:00
|
|
|
fatigueHTML:"<table class='table-fatigue'>" + RdDUtility.makeHTMLfatigueMatrix( this.data.data.sante.fatigue.value, this.data.data.sante.endurance.max ).html() + "</table>",
|
2020-07-21 23:51:24 +02:00
|
|
|
draconic: this.getDraconicList(),
|
2020-07-17 22:04:35 +02:00
|
|
|
sort: this.getSortList(),
|
2020-07-22 00:12:13 +02:00
|
|
|
caracReve: this.data.data.carac.reve.value,
|
2020-07-25 10:29:28 +02:00
|
|
|
pointsReve: this.data.data.reve.reve.value,
|
|
|
|
isRapide: isRapide
|
2020-07-17 22:04:35 +02:00
|
|
|
}
|
2020-07-14 22:19:29 +02:00
|
|
|
let html = await renderTemplate('systems/foundryvtt-reve-de-dragon/templates/dialog-tmr.html', data );
|
2020-07-26 17:26:17 +02:00
|
|
|
this.currentTMR = new RdDTMRDialog(html, this, data );
|
|
|
|
this.currentTMR.render(true);
|
2020-07-05 21:45:25 +02:00
|
|
|
}
|
|
|
|
|
2020-06-01 23:50:10 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-06-10 08:23:58 +02:00
|
|
|
rollArme( armeName )
|
2020-11-11 04:22:31 +01:00
|
|
|
{
|
|
|
|
let armeItem = this.data.items.find(item=>item.type==="arme" && (item.name === armeName));
|
2020-06-10 08:23:58 +02:00
|
|
|
if ( armeItem && armeItem.data.competence )
|
|
|
|
this.rollCompetence( armeItem.data.competence, armeItem );
|
|
|
|
else
|
|
|
|
this.rollCompetence( armeName ); //Bypass mode!
|
2020-06-01 23:50:10 +02:00
|
|
|
}
|
|
|
|
|
2020-09-20 17:38:21 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-11-12 23:50:37 +01:00
|
|
|
async rollCompetence( compName, armeItem=undefined, attackerRoll=undefined )
|
2020-09-20 17:38:21 +02:00
|
|
|
{
|
|
|
|
let compItem = RdDUtility.findCompetence( this.data.items, compName);
|
2020-11-12 23:50:37 +01:00
|
|
|
console.log("!!!!!!", compName, this.data.items, compItem);
|
|
|
|
// Common rollData values
|
2020-09-20 19:17:31 +02:00
|
|
|
let rollData = {
|
2020-11-12 23:50:37 +01:00
|
|
|
bonusmalusTable: CONFIG.RDD.bonusmalus,
|
|
|
|
etat: this.data.data.compteurs.etat.value,
|
|
|
|
bmValue: (attackerRoll) ? attackerRoll.bmValue : 0,
|
|
|
|
attackerRoll: attackerRoll,
|
|
|
|
finalLevel: 0
|
2020-09-20 19:17:31 +02:00
|
|
|
}
|
2020-09-20 17:38:21 +02:00
|
|
|
|
2020-11-12 23:50:37 +01:00
|
|
|
if ( compItem.type == 'competencecreature') { // Specific case for Creatures
|
|
|
|
if ( compItem.data.iscombat ) {
|
|
|
|
armeItem = { name: compName, data: { dommages: compItem.data.dommages} };
|
2020-05-24 20:19:57 +02:00
|
|
|
}
|
2020-11-12 23:50:37 +01:00
|
|
|
compItem.data.defaut_carac = "carac_creature"; // Fake default competence
|
|
|
|
compItem.data.categorie = "creature"; // Fake default competence
|
|
|
|
rollData.competence = compItem;
|
|
|
|
rollData.arme = armeItem;
|
|
|
|
rollData.carac = { carac_creature: { label: compName, value: compItem.data.carac_value } };
|
|
|
|
} else { // Usual competence
|
|
|
|
rollData.competence = compItem;
|
|
|
|
rollData.arme = armeItem;
|
|
|
|
rollData.carac = this.data.data.carac;
|
|
|
|
}
|
|
|
|
|
2020-06-03 21:35:18 +02:00
|
|
|
let html = await renderTemplate('systems/foundryvtt-reve-de-dragon/templates/dialog-competence.html', rollData);
|
2020-06-07 23:16:29 +02:00
|
|
|
if (armeItem) {
|
|
|
|
new RdDRollDialog("arme", html, rollData, this ).render(true);
|
|
|
|
} else {
|
|
|
|
new RdDRollDialog("competence", html, rollData, this ).render(true);
|
|
|
|
}
|
2020-05-22 22:37:02 +02:00
|
|
|
}
|
2020-06-07 23:16:29 +02:00
|
|
|
|
2020-06-23 23:34:12 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-11-11 10:38:27 +01:00
|
|
|
async equiperObjet( itemID )
|
2020-06-23 23:34:12 +02:00
|
|
|
{
|
|
|
|
let item = this.getOwnedItem(itemID);
|
2020-06-24 00:22:40 +02:00
|
|
|
if ( item && item.data.data ) {
|
2020-11-11 10:38:27 +01:00
|
|
|
let update = {_id: item._id, "data.equipe": !item.data.data.equipe };
|
|
|
|
//console.log(update);
|
|
|
|
await this.updateEmbeddedEntity("OwnedItem", update);
|
2020-11-11 11:43:13 +01:00
|
|
|
this.computeEncombrementTotal(); // Mise à jour encombrement
|
2020-06-24 00:22:40 +02:00
|
|
|
}
|
2020-06-23 23:34:12 +02:00
|
|
|
}
|
|
|
|
|
2020-06-07 23:16:29 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-06-24 00:22:40 +02:00
|
|
|
computeArmure( locData, domArmePlusDom )
|
2020-06-07 23:16:29 +02:00
|
|
|
{
|
2020-06-23 23:34:12 +02:00
|
|
|
let protection = 0;
|
|
|
|
for (const item of this.data.items) {
|
|
|
|
if (item.type == "armure" && item.data.equipe) {
|
2020-06-24 00:22:40 +02:00
|
|
|
let update = duplicate(item);
|
2020-08-29 22:52:41 +02:00
|
|
|
protection += new Roll(update.data.protection.toString()).roll().total;
|
2020-06-24 00:22:40 +02:00
|
|
|
update.data.deterioration += domArmePlusDom;
|
|
|
|
domArmePlusDom = 0; // Reset it
|
|
|
|
if ( update.data.deterioration >= 10) {
|
|
|
|
update.data.deterioration = 0;
|
|
|
|
if ( update.data.protection.toString().length == 1 )
|
|
|
|
update.data.protection = "d"+update.data.protection+"-0";
|
|
|
|
else {
|
|
|
|
let regex = /d\(d+)\-(\d+)/g;
|
|
|
|
let res = regex.exec( update.data.protection );
|
|
|
|
update.data.protection = "d"+res[1]+"-"+(parseInt(res[2])+1);
|
|
|
|
}
|
|
|
|
/* TODO - POST chat message */
|
|
|
|
}
|
|
|
|
this.updateEmbeddedEntity("OwnedItem", update);
|
2020-06-23 23:34:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log("Final protect", protection);
|
|
|
|
return protection;
|
2020-06-07 23:16:29 +02:00
|
|
|
}
|
2020-11-11 04:21:25 +01:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
encaisserDommages( attackerRoll ) {
|
|
|
|
console.log("encaisserDommages", attackerRoll )
|
|
|
|
const armure = this.computeArmure( attackerRoll.loc, attackerRoll.domArmePlusDom);
|
|
|
|
let degatsReel = attackerRoll.degats - armure;
|
|
|
|
|
|
|
|
let result = RdDUtility.computeBlessuresSante(degatsReel, attackerRoll.mortalite);
|
2020-06-07 23:16:29 +02:00
|
|
|
this.santeIncDec("vie", result.vie);
|
2020-06-22 10:18:03 +02:00
|
|
|
this.santeIncDec("endurance", result.endurance);
|
2020-11-11 04:21:25 +01:00
|
|
|
result.locName = attackerRoll.loc.label;
|
|
|
|
|
|
|
|
this.manageBlessures(result); // Will upate the result table
|
|
|
|
const blessureLegere = (result.legeres > 0 ? "une blessure légère" : "");
|
|
|
|
const blessureGrave = (result.graves > 0 ? "une blessure grave" : "");
|
|
|
|
const blessureCritique = (result.critiques > 0 ? "une blessure critique" : "");
|
|
|
|
ChatMessage.create({
|
|
|
|
title: "Blessures !", content: this.data.name + " a encaissé : " +
|
|
|
|
"<br>Encaissement final : " + degatsReel +
|
|
|
|
"<br>" + blessureLegere + blessureGrave + blessureCritique +
|
|
|
|
"<br>Et a perdu : " +
|
|
|
|
"<br>" + result.endurance + " Endurance et " + result.vie + " Points de Vie"
|
|
|
|
});
|
|
|
|
|
2020-06-07 23:16:29 +02:00
|
|
|
this.computeEtatGeneral();
|
|
|
|
this.sheet.render(true);
|
|
|
|
}
|
2020-11-07 21:06:37 +01:00
|
|
|
|
2020-06-07 23:16:29 +02:00
|
|
|
|
2020-06-10 08:23:58 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-06-11 00:29:32 +02:00
|
|
|
parerAttaque( attackerRoll, armeId )
|
2020-06-10 08:23:58 +02:00
|
|
|
{
|
2020-06-11 00:29:32 +02:00
|
|
|
let armeItem = this.getOwnedItem(armeId); // Item.data.data !
|
|
|
|
console.log("Going to PARY !!!!!!!!!", armeItem, attackerRoll.bmValue);
|
|
|
|
this.rollCompetence( armeItem.data.data.competence, armeItem.data, attackerRoll );
|
2020-06-10 08:23:58 +02:00
|
|
|
}
|
|
|
|
|
2020-07-27 18:58:10 +02:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
esquiverAttaque( attackerRoll )
|
|
|
|
{
|
|
|
|
this.rollCompetence( "esquive", undefined, attackerRoll );
|
|
|
|
}
|
|
|
|
|
2020-05-24 20:19:57 +02:00
|
|
|
/* -------------------------------------------- */
|
2020-05-21 21:48:20 +02:00
|
|
|
/** @override */
|
|
|
|
getRollData() {
|
|
|
|
const data = super.getRollData();
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|