This commit is contained in:
2022-09-27 16:56:59 +02:00
parent 919420eac4
commit 48f32ff5d9
2 changed files with 12 additions and 1 deletions

View File

@ -2199,6 +2199,16 @@ export class PegasusActor extends Actor {
}
}
/* -------------------------------------------- */
addVehicleArmors( rollData) {
for (let arcKey in this.system.arcs) {
let arc = this.system.arcs[arcKey]
if (arc.armourlevel > 0) {
rollData.vehicleShieldList.push({ label: `${arc.label} Armor`, type: "vehicleshield", applied: false, value: arc.armourlevel })
}
}
}
/* -------------------------------------------- */
rollVehicleDamageResistance() {
let actor = this.isValidActor()
@ -2209,6 +2219,7 @@ export class PegasusActor extends Actor {
rollData.title = `Stat ${stat.label}`;
this.addVehicleShields(rollData)
this.addVehicleArmors(rollData)
this.startRoll(rollData)
this.modifyVehicleStun(1)
}