forked from public/foundryvtt-reve-de-dragon
		
	L'art ne s'encombre de rien
Ne pas appliquer le surencombrement (ou l'encombrement) aux oeuvres d'art: on considère que pour faire de l'art, on pose son sac.
This commit is contained in:
		| @@ -2712,7 +2712,7 @@ export class RdDActor extends Actor { | |||||||
|         competence: duplicate(this.getCompetence(artData.compName ?? oeuvre.system.competence ?? artData.art)), |         competence: duplicate(this.getCompetence(artData.compName ?? oeuvre.system.competence ?? artData.art)), | ||||||
|         diffLibre: - (oeuvre.system.niveau ?? 0), |         diffLibre: - (oeuvre.system.niveau ?? 0), | ||||||
|         diffConditions: 0, |         diffConditions: 0, | ||||||
|         use: { libre: false, conditions: true }, |         use: { libre: false, conditions: true, surenc: false }, | ||||||
|         selectedCarac: duplicate(this.system.carac[selected]) |         selectedCarac: duplicate(this.system.carac[selected]) | ||||||
|       }, |       }, | ||||||
|       { overwrite: false }); |       { overwrite: false }); | ||||||
| @@ -2721,8 +2721,6 @@ export class RdDActor extends Actor { | |||||||
|       artData.forceCarac = {}; |       artData.forceCarac = {}; | ||||||
|       artData.forceCarac[selected] = duplicate(this.system.carac[selected]); |       artData.forceCarac[selected] = duplicate(this.system.carac[selected]); | ||||||
|     } |     } | ||||||
|     console.log("rollArt !!!", artData); |  | ||||||
|  |  | ||||||
|     const dialog = await RdDRoll.create(this, artData, |     const dialog = await RdDRoll.create(this, artData, | ||||||
|       { html: `systems/foundryvtt-reve-de-dragon/templates/dialog-roll-${oeuvre.type}.html` }, |       { html: `systems/foundryvtt-reve-de-dragon/templates/dialog-roll-${oeuvre.type}.html` }, | ||||||
|       { |       { | ||||||
|   | |||||||
| @@ -63,7 +63,7 @@ export const referenceAjustements = { | |||||||
|   }, |   }, | ||||||
|   encTotal: { |   encTotal: { | ||||||
|     isVisible: (rollData, actor) => RdDCarac.isAgiliteOuDerivee(rollData.selectedCarac) && RdDItemCompetence.isMalusEncombrementTotal(rollData.competence), |     isVisible: (rollData, actor) => RdDCarac.isAgiliteOuDerivee(rollData.selectedCarac) && RdDItemCompetence.isMalusEncombrementTotal(rollData.competence), | ||||||
|     isUsed: (rollData, actor) => RdDCarac.isAgiliteOuDerivee(rollData.selectedCarac) && RdDItemCompetence.isMalusEncombrementTotal(rollData.competence) && rollData.use.encTotal, |     isUsed: (rollData, actor) => !rollData.oeuvre && RdDCarac.isAgiliteOuDerivee(rollData.selectedCarac) && RdDItemCompetence.isMalusEncombrementTotal(rollData.competence) && rollData.use.encTotal, | ||||||
|     getLabel: (rollData, actor) => 'Encombrement total', |     getLabel: (rollData, actor) => 'Encombrement total', | ||||||
|     getValue: (rollData, actor) => -actor.getEncTotal() |     getValue: (rollData, actor) => -actor.getEncTotal() | ||||||
|   }, |   }, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user