2022-01-16 22:53:41 +01:00
|
|
|
/*
|
|
|
|
Init order =
|
|
|
|
10 - Legendary
|
|
|
|
9 - Heroic
|
|
|
|
8 - Success
|
|
|
|
7 - Rivals/adversary
|
|
|
|
6 - Coriaces/tough
|
|
|
|
5 - Failure
|
|
|
|
4 - Pietaille
|
|
|
|
3 - Echec critique
|
|
|
|
*/
|
2021-12-29 19:15:06 +01:00
|
|
|
|
2022-11-30 20:58:27 +01:00
|
|
|
import { BoLUtility } from "../system/bol-utility.js";
|
|
|
|
|
2022-01-16 22:53:41 +01:00
|
|
|
|
|
|
|
export class BoLCombatManager extends Combat {
|
2021-12-29 19:15:06 +01:00
|
|
|
|
|
|
|
/************************************************************************************/
|
|
|
|
async rollInitiative(ids, formula = undefined, messageOptions = {}) {
|
2022-09-09 23:49:01 +02:00
|
|
|
console.log(`${game.system.title} | Combat.rollInitiative()`, ids, formula, messageOptions);
|
2021-12-29 19:15:06 +01:00
|
|
|
// Structure input data
|
|
|
|
ids = typeof ids === "string" ? [ids] : ids;
|
2022-12-01 23:46:27 +01:00
|
|
|
//const currentId = this.combatant.id;
|
2022-01-16 22:53:41 +01:00
|
|
|
|
2021-12-29 19:15:06 +01:00
|
|
|
// calculate initiative
|
2022-01-16 22:53:41 +01:00
|
|
|
for (let cId = 0; cId < ids.length; cId++) {
|
2022-11-30 20:58:27 +01:00
|
|
|
const combatant = this.combatants.get(ids[cId])
|
2022-12-23 16:38:41 +01:00
|
|
|
let fvttInit = combatant.actor.getInitiativeRank(false, true)
|
2022-01-16 22:58:28 +01:00
|
|
|
fvttInit += (cId / 100)
|
2022-01-16 22:53:41 +01:00
|
|
|
await this.updateEmbeddedDocuments("Combatant", [{ _id: ids[cId], initiative: fvttInit }]);
|
2021-12-29 19:15:06 +01:00
|
|
|
}
|
|
|
|
}
|
2022-03-10 21:05:53 +01:00
|
|
|
|
|
|
|
/************************************************************************************/
|
|
|
|
nextRound() {
|
|
|
|
let combatants = this.combatants.contents
|
|
|
|
for (let c of combatants) {
|
2023-01-04 09:57:13 +01:00
|
|
|
let actor = game.actors.get( c.actorId )
|
2022-03-10 21:39:12 +01:00
|
|
|
actor.clearRoundModifiers()
|
2022-03-10 21:05:53 +01:00
|
|
|
}
|
|
|
|
super.nextRound()
|
|
|
|
}
|
2022-12-23 16:38:41 +01:00
|
|
|
|
|
|
|
/************************************************************************************/
|
|
|
|
_onDelete() {
|
|
|
|
let combatants = this.combatants.contents
|
|
|
|
for (let c of combatants) {
|
2023-01-04 09:57:13 +01:00
|
|
|
let actor = game.actors.get(c.actorId)
|
2022-12-23 16:38:41 +01:00
|
|
|
actor.clearInitiative()
|
|
|
|
}
|
|
|
|
super._onDelete()
|
|
|
|
}
|
2022-03-10 21:05:53 +01:00
|
|
|
|
2022-01-16 22:53:41 +01:00
|
|
|
}
|
2021-12-29 19:15:06 +01:00
|
|
|
|