Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
6661805f6f | |||
29931fdcb5 | |||
ec24e4a7e7 |
@ -1,4 +1,8 @@
|
|||||||
# 12.0
|
# 12.0
|
||||||
|
## 12.0.50 - Le sommeil d'Astrobazzarh
|
||||||
|
- Le don de double rêve n'interrompt plus le sommeil toutes les heures
|
||||||
|
- la perte de fatigue à la descente des TMR est visible immédiatement
|
||||||
|
|
||||||
## 12.0.49 - La deuxième lame d'Astrobazzarh
|
## 12.0.49 - La deuxième lame d'Astrobazzarh
|
||||||
- Corrections
|
- Corrections
|
||||||
- les défenses particulières sont correctement affichées
|
- les défenses particulières sont correctement affichées
|
||||||
|
@ -484,7 +484,7 @@ export class RdDActor extends RdDBaseActorSang {
|
|||||||
await this.$recupererFatigue(message);
|
await this.$recupererFatigue(message);
|
||||||
await this.$jetRecuperationReve(dormi, message);
|
await this.$jetRecuperationReve(dormi, message);
|
||||||
if (dormi.etat == 'dort' && EffetsDraconiques.isDonDoubleReve(this)) {
|
if (dormi.etat == 'dort' && EffetsDraconiques.isDonDoubleReve(this)) {
|
||||||
dormi.etat = await this.$jetRecuperationReve(dormi, message);
|
await this.$jetRecuperationReve(dormi, message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -345,15 +345,16 @@ export class RdDTMRDialog extends Dialog {
|
|||||||
}
|
}
|
||||||
this.descenteTMR = true;
|
this.descenteTMR = true;
|
||||||
if (this.actor.tmrApp) {
|
if (this.actor.tmrApp) {
|
||||||
this.actor.tmrApp = undefined; // Cleanup reference
|
this.actor.tmrApp = undefined // Cleanup reference
|
||||||
if (!this.viewOnly) {
|
const appliquerFatigue = ReglesOptionnelles.isUsing("appliquer-fatigue")
|
||||||
await this.actor.setEffect(STATUSES.StatusDemiReve, false);
|
|
||||||
this.$tellToUserAndGM(message)
|
|
||||||
}
|
|
||||||
const appliquerFatigue = ReglesOptionnelles.isUsing("appliquer-fatigue");
|
|
||||||
await this.actor.santeIncDec(
|
await this.actor.santeIncDec(
|
||||||
appliquerFatigue ? "fatigue" : "endurance",
|
appliquerFatigue ? "fatigue" : "endurance",
|
||||||
(appliquerFatigue ? 1 : -1) * this.cumulFatigue);
|
(appliquerFatigue ? 1 : -1) * this.cumulFatigue)
|
||||||
|
if (!this.viewOnly) {
|
||||||
|
await this.actor.setEffect(STATUSES.StatusDemiReve, false)
|
||||||
|
this.$tellToUserAndGM(message)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
this.pixiTMR.close();
|
this.pixiTMR.close();
|
||||||
this.pixiTMR = undefined
|
this.pixiTMR = undefined
|
||||||
|
Reference in New Issue
Block a user