|
|
|
@ -743,13 +743,23 @@ export class RdDCombat {
|
|
|
|
|
this.attacker.createCallbackExperience(),
|
|
|
|
|
this.attacker.createCallbackAppelAuMoral(),
|
|
|
|
|
{ action: r => this.removeChatMessageActionsPasseArme(r.passeArme) },
|
|
|
|
|
{ action: async r => await this.attacker.incDecItemUse(arme._id, arme && !RdDCombat.isParticuliere(r)) },
|
|
|
|
|
{ action: r => this._onAttaque(r) },
|
|
|
|
|
{ action: r => this._increaseItemUse(r, arme) },
|
|
|
|
|
{ action: r => this._onAttaqueNormale(r) },
|
|
|
|
|
{ action: r => this._onAttaqueParticuliere(r) },
|
|
|
|
|
{ action: r => this._onAttaqueEchec(r) },
|
|
|
|
|
{ action: r => this._onAttaqueEchecTotal(r) },
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
dialog.render(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_increaseItemUse(rollData, arme) {
|
|
|
|
|
if (!arme || RdDCombat.isParticuliere(rollData)) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.attacker.incDecItemUse(arme._id)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
_prepareAttaque(competence, arme) {
|
|
|
|
|
let rollData = {
|
|
|
|
@ -780,23 +790,11 @@ export class RdDCombat {
|
|
|
|
|
return rollData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async _onAttaque(attackerRoll) {
|
|
|
|
|
if (RdDCombat.isParticuliere(attackerRoll)) {
|
|
|
|
|
return await this._onAttaqueParticuliere(attackerRoll)
|
|
|
|
|
}
|
|
|
|
|
if (RdDCombat.isReussite(attackerRoll)) {
|
|
|
|
|
return await this._onAttaqueNormale(attackerRoll)
|
|
|
|
|
}
|
|
|
|
|
// if (RdDCombat.isParticuliere(attackerRoll) && attackerRoll.particuliere == undefined) {
|
|
|
|
|
// return
|
|
|
|
|
// }
|
|
|
|
|
if (RdDCombat.isEchecTotal(attackerRoll)) {
|
|
|
|
|
return await this._onAttaqueEchecTotal(attackerRoll)
|
|
|
|
|
}
|
|
|
|
|
return await this._onAttaqueEchec(attackerRoll)
|
|
|
|
|
}
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
async _onAttaqueParticuliere(rollData) {
|
|
|
|
|
if (!RdDCombat.isParticuliere(rollData)) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
const isMeleeDiffNegative = (rollData.competence.type == 'competencecreature' || rollData.selectedCarac.label == "Mêlée") && rollData.diffLibre < 0;
|
|
|
|
|
// force toujours, sauf empoignade
|
|
|
|
|
// finesse seulement en mélée, pour l'empoignade, ou si la difficulté libre est de -1 minimum
|
|
|
|
@ -834,6 +832,12 @@ export class RdDCombat {
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
async _onAttaqueNormale(attackerRoll) {
|
|
|
|
|
if (!RdDCombat.isReussite(attackerRoll)) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (RdDCombat.isParticuliere(attackerRoll) && attackerRoll.particuliere == undefined) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
console.log("RdDCombat.onAttaqueNormale >>>", attackerRoll);
|
|
|
|
|
|
|
|
|
|
attackerRoll.dmg = RdDBonus.dmg(attackerRoll, this.attacker, this.defender.isEntite());
|
|
|
|
@ -950,6 +954,9 @@ export class RdDCombat {
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
async _onAttaqueEchecTotal(attackerRoll) {
|
|
|
|
|
if (!RdDCombat.isEchecTotal(attackerRoll)) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
const choixEchecTotal = await ChatMessage.create({
|
|
|
|
|
whisper: ChatUtility.getOwners(this.attacker),
|
|
|
|
|
content: await renderTemplate('systems/foundryvtt-reve-de-dragon/templates/chat-demande-attaque-etotal.hbs', {
|
|
|
|
@ -976,16 +983,22 @@ export class RdDCombat {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
async _onAttaqueEchec(attackerRoll) {
|
|
|
|
|
console.log("RdDCombat.onAttaqueEchec >>>", attackerRoll);
|
|
|
|
|
await RdDRollResult.displayRollData(attackerRoll, this.attacker, 'chat-resultat-attaque.hbs');
|
|
|
|
|
async _onAttaqueEchec(rollData) {
|
|
|
|
|
if (!RdDCombat.isEchec(rollData)) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
console.log("RdDCombat.onAttaqueEchec >>>", rollData);
|
|
|
|
|
await RdDRollResult.displayRollData(rollData, this.attacker, 'chat-resultat-attaque.hbs');
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
async choixParticuliere(rollData, choix) {
|
|
|
|
|
console.log("RdDCombat.choixParticuliere >>>", rollData, choix);
|
|
|
|
|
|
|
|
|
|
await this.attacker.incDecItemUse(rollData.arme.id, choix != "rapidite")
|
|
|
|
|
if (choix != "rapidite") {
|
|
|
|
|
this.attacker.incDecItemUse(rollData.arme.id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.removeChatMessageActionsPasseArme(rollData.passeArme);
|
|
|
|
|
rollData.particuliere = choix;
|
|
|
|
@ -1013,8 +1026,10 @@ export class RdDCombat {
|
|
|
|
|
this.defender.createCallbackExperience(),
|
|
|
|
|
this.defender.createCallbackAppelAuMoral(),
|
|
|
|
|
{ action: r => this.removeChatMessageActionsPasseArme(r.passeArme) },
|
|
|
|
|
{ action: async r => await this.defender.incDecItemUse(armeParadeId, !RdDCombat.isParticuliere(r)) },
|
|
|
|
|
{ action: r => this._onParade(r) },
|
|
|
|
|
{ condition: r => !RdDCombat.isParticuliere(r), action: r => this.defender.incDecItemUse(armeParadeId) },
|
|
|
|
|
{ condition: RdDCombat.isReussite, action: r => this._onParadeNormale(r) },
|
|
|
|
|
{ condition: RdDCombat.isParticuliere, action: r => this._onParadeParticuliere(r) },
|
|
|
|
|
{ condition: RdDCombat.isEchec, action: r => this._onParadeEchec(r) },
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
dialog.render(true);
|
|
|
|
@ -1045,19 +1060,8 @@ export class RdDCombat {
|
|
|
|
|
return defenderRoll;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async _onParade(defenderRoll) {
|
|
|
|
|
if (RdDCombat.isParticuliere(defenderRoll)) {
|
|
|
|
|
return await this._onParadeParticuliere(defenderRoll)
|
|
|
|
|
}
|
|
|
|
|
if (RdDCombat.isReussite(defenderRoll)) {
|
|
|
|
|
return await this._onParadeNormale(defenderRoll)
|
|
|
|
|
}
|
|
|
|
|
await this._onParadeEchec(defenderRoll)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
async _onParadeParticuliere(defenderRoll) {
|
|
|
|
|
_onParadeParticuliere(defenderRoll) {
|
|
|
|
|
console.log("RdDCombat._onParadeParticuliere >>>", defenderRoll);
|
|
|
|
|
if (!defenderRoll.attackerRoll.isPart) {
|
|
|
|
|
// TODO: attaquant doit jouer résistance et peut être désarmé p132
|
|
|
|
@ -1066,6 +1070,7 @@ export class RdDCombat {
|
|
|
|
|
this.defender)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
async _onParadeNormale(defenderRoll) {
|
|
|
|
|
console.log("RdDCombat._onParadeNormale >>>", defenderRoll);
|
|
|
|
@ -1104,9 +1109,11 @@ export class RdDCombat {
|
|
|
|
|
callbacks: [
|
|
|
|
|
this.defender.createCallbackExperience(),
|
|
|
|
|
this.defender.createCallbackAppelAuMoral(),
|
|
|
|
|
{ action: async r => await this.defender.incDecItemUse(esquive._id, !RdDCombat.isParticuliere(r)) },
|
|
|
|
|
{ condition: r => !RdDCombat.isParticuliere(r), action: r => this.defender.incDecItemUse(esquive._id) },
|
|
|
|
|
{ action: r => this.removeChatMessageActionsPasseArme(r.passeArme) },
|
|
|
|
|
{ action: r => this._onEsquive(r) },
|
|
|
|
|
{ condition: RdDCombat.isReussite, action: r => this._onEsquiveNormale(r) },
|
|
|
|
|
{ condition: RdDCombat.isParticuliere, action: r => this._onEsquiveParticuliere(r) },
|
|
|
|
|
{ condition: RdDCombat.isEchec, action: r => this._onEsquiveEchec(r) },
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
dialog.render(true);
|
|
|
|
@ -1134,18 +1141,9 @@ export class RdDCombat {
|
|
|
|
|
return rollData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async _onEsquive(defenderRoll) {
|
|
|
|
|
if (RdDCombat.isParticuliere(defenderRoll)) {
|
|
|
|
|
return await this._onEsquiveParticuliere(defenderRoll)
|
|
|
|
|
}
|
|
|
|
|
if (RdDCombat.isReussite(defenderRoll)) {
|
|
|
|
|
return await this._onEsquiveNormale(defenderRoll)
|
|
|
|
|
}
|
|
|
|
|
return await this._onEsquiveEchec(defenderRoll)
|
|
|
|
|
}
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
async _onEsquiveParticuliere(defenderRoll) {
|
|
|
|
|
console.log("RdDCombat._onEsquiveParticuliere >>>", defenderRoll);
|
|
|
|
|
_onEsquiveParticuliere(rollData) {
|
|
|
|
|
console.log("RdDCombat._onEsquiveParticuliere >>>", rollData);
|
|
|
|
|
ChatUtility.createChatWithRollMode(
|
|
|
|
|
{ content: "<strong>Vous pouvez esquiver une deuxième fois!</strong>" },
|
|
|
|
|
this.defender);
|
|
|
|
|