Possibilité d'accorder un personnage
Le drag&drop d'un acteur depuis la liste des acteurs sur la fiche d'une entité incarnée permet d'accorder le personnage
This commit is contained in:
parent
b9e8c24461
commit
ba8276ef37
@ -5,6 +5,8 @@
|
|||||||
- les effets draconiques d'un souffle/queue
|
- les effets draconiques d'un souffle/queue
|
||||||
- mise à jour des points de tâche des blessures lors des soins
|
- mise à jour des points de tâche des blessures lors des soins
|
||||||
- pas d'expérience sur les particulières quand aucun MJ n'est connecté
|
- pas d'expérience sur les particulières quand aucun MJ n'est connecté
|
||||||
|
- Le drag&drop d'un acteur depuis la liste des acteurs sur la fiche
|
||||||
|
d'une entité incarnée permet d'accorder le personnage
|
||||||
|
|
||||||
## 12.0.6 - Le bazar d'Astrobazzarh
|
## 12.0.6 - Le bazar d'Astrobazzarh
|
||||||
- Corrections de l'inventaire en bazar:
|
- Corrections de l'inventaire en bazar:
|
||||||
|
@ -508,8 +508,8 @@ export class RdDBaseActorReve extends RdDBaseActor {
|
|||||||
|
|
||||||
isEntiteAccordee(attacker) { return true }
|
isEntiteAccordee(attacker) { return true }
|
||||||
|
|
||||||
async setEntiteReveAccordee(attacker) {
|
async setEntiteReveAccordee(actor) {
|
||||||
ui.notifications.error("Impossible de s'accorder à " + this.name + ": ce n'est pas une entite de cauchemer/rêve");
|
ui.notifications.error("Impossible de s'accorder à " + this.name + ": ce n'est pas une entité incarnée");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -33,27 +33,4 @@ export class RdDCreature extends RdDBaseActorSang {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
isEntiteAccordee(attacker) {
|
|
||||||
if (this.isEntite([ENTITE_INCARNE])) {
|
|
||||||
let resonnance = this.system.sante.resonnance
|
|
||||||
return (resonnance.actors.find(it => it == attacker.id))
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
|
||||||
async setEntiteReveAccordee(attacker) {
|
|
||||||
if (this.isEntite([ENTITE_INCARNE])) {
|
|
||||||
let resonnance = foundry.utils.duplicate(this.system.sante.resonnance);
|
|
||||||
if (resonnance.actors.find(it => it == attacker.id)) {
|
|
||||||
// déjà accordé
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
await this.update({ "system.sante.resonnance": [...resonnance, attacker.id] });
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
super.setEntiteReveAccordee(attacker)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -54,6 +54,12 @@ export class RdDActorEntiteSheet extends RdDBaseActorReveSheet {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async _onDropActor(event, dragData) {
|
||||||
|
const dropActor = fromUuidSync(dragData.uuid)
|
||||||
|
await this.actor.setEntiteReveAccordee(dropActor)
|
||||||
|
super._onDropActor(event, dragData)
|
||||||
|
}
|
||||||
|
|
||||||
async deleteSubActeur(actorId) {
|
async deleteSubActeur(actorId) {
|
||||||
let newResonances = this.actor.system.sante.resonnance.actors.filter(id => id != actorId);
|
let newResonances = this.actor.system.sante.resonnance.actors.filter(id => id != actorId);
|
||||||
await this.actor.update({ 'system.sante.resonnance.actors': newResonances }, { renderSheet: false });
|
await this.actor.update({ 'system.sante.resonnance.actors': newResonances }, { renderSheet: false });
|
||||||
|
@ -67,7 +67,7 @@ export class RdDEntite extends RdDBaseActorReve {
|
|||||||
if (this.isNonIncarnee()) {
|
if (this.isNonIncarnee()) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
await RdDEncaisser.encaisser(this)
|
await RdDEncaisser.encaisser(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
isEffectAllowed(effectId) {
|
isEffectAllowed(effectId) {
|
||||||
@ -91,20 +91,16 @@ export class RdDEntite extends RdDBaseActorReve {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
async setEntiteReveAccordee(attacker) {
|
async setEntiteReveAccordee(actor) {
|
||||||
if (this.isEntite([ENTITE_INCARNE])) {
|
if (this.isEntite([ENTITE_INCARNE])) {
|
||||||
let resonnance = foundry.utils.duplicate(this.system.sante.resonnance);
|
if (this.system.sante.resonnance.actors.find(it => it == actor.id)) {
|
||||||
if (resonnance.actors.find(it => it == attacker.id)) {
|
|
||||||
// déjà accordé
|
// déjà accordé
|
||||||
return;
|
return
|
||||||
}
|
}
|
||||||
resonnance.actors.push(attacker.id);
|
await this.update({ "system.sante.resonnance.actors": [...this.system.sante.resonnance.actors, actor.id] })
|
||||||
await this.update({ "system.sante.resonnance": resonnance });
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
super.setEntiteReveAccordee(attacker)
|
super.setEntiteReveAccordee(actor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user