This commit is contained in:
sladecraven 2022-01-21 10:57:09 +01:00
parent 35f2f4c815
commit d776c219a8
13 changed files with 94 additions and 331 deletions

View File

@ -143,7 +143,7 @@ export class VadentisActor extends Actor {
isSort: true
}
if (myRoll.results[0] > 1 && myRoll.total >= devotionSort.data.difficulty) {
if (myRoll.dice[0].results[0].result > 1 && myRoll.total >= devotionSort.data.difficulty) {
msgData.img = 'systems/foundryvtt-vadentis/images/icons/tchat_sort_réussi.webp';
msgData.msg = `${this.name} a réussi son ${name} et perd ${devotionSort.data.pe} Points d'Energie (lancer : ${formulaFull} => <strong>${myRoll.total} / ${devotionSort.data.difficulty}</strong>).`;
@ -155,7 +155,7 @@ export class VadentisActor extends Actor {
let newEnergie = this.data.data.stats.pointsenergie.value - devotionSort.data.pe;
await this.update( {'data.stats.pointsenergie.value': newEnergie });
if (myRoll.results[0] >= devotionSort.data.valuecritical ) { // Critique ?
if (myRoll.dice[0].results[0].result >= devotionSort.data.valuecritical ) { // Critique ?
msgData.img = 'systems/foundryvtt-vadentis/images/icons/tchat_réussite_critique.webp';
msgData.msg += "<br>C'est une <strong>réussite critique</strong> !";
msgData.msg += `<br><strong>Effet critique : </strong>${devotionSort.data.criticaleffect.replace(/<\/?[^>]+(>|$)/g, "")}`;
@ -165,7 +165,7 @@ export class VadentisActor extends Actor {
if ( devotionSort.data.damage != "") {
let formula = devotionSort.data.damage;
if (myRoll.results[0] >= devotionSort.data.valuecritical ) { // Critique ?
if (myRoll.dice[0].results[0].result >= devotionSort.data.valuecritical ) { // Critique ?
msgData.msg += `<br>Et provoque les dégats critiques suivants : [[/roll ${devotionSort.data.damagecritical}]]`;
formula = devotionSort.data.damagecritical;
} else {
@ -177,7 +177,7 @@ export class VadentisActor extends Actor {
}
} else {
msgData.img = 'systems/foundryvtt-vadentis/images/icons/tchat_sort_échoué.webp';
if (myRoll.results[0] == 1 ) { // Critique ?
if (myRoll.dice[0].results[0].result == 1 ) { // Critique ?
msgData.img = 'systems/foundryvtt-vadentis/images/icons/tchat_échec_critique.webp';
msgData.msg = `${this.name} a fait un <strong>échec critique</strong> à son lancer de ${name}`;
} else {
@ -393,11 +393,11 @@ export class VadentisActor extends Actor {
msg: `${formulaFull} => <strong>${myRoll.total}</strong>`
}
if (myRoll.results[0] == 1 ) { // Critique ?
if (myRoll.dice[0].results[0].result == 1 ) { // Critique ?
msgData.img = 'systems/foundryvtt-vadentis/images/icons/tchat_échec_critique.webp';
msgData.msg += `<br>C'est un <strong>échec critique</strong> !`;
}
if (myRoll.results[0] == 20 ) { // Critique ?
if (myRoll.dice[0].results[0].result == 20 ) { // Critique ?
msgData.img = 'systems/foundryvtt-vadentis/images/icons/tchat_réussite_critique.webp';
msgData.msg += `<br>C'est une <strong>réussite critique</strong> !`;
}
@ -486,7 +486,7 @@ export class VadentisActor extends Actor {
let target = VadentisUtility.getTarget();
if ( target ) {
let arme = this.data.items.find( item => (item.type == 'armecc' || item.type == 'tir') && item._id == armeId);
let arme = this.data.items.find( item => (item.type == 'armecc' || item.type == 'tir') && item.id == armeId);
if (arme) {
arme = duplicate(arme)
if ( arme.type == 'tir' && arme.data.munition <= 0 ) {
@ -494,8 +494,8 @@ export class VadentisActor extends Actor {
return;
}
let combatData = {
attackerActorId: this._id,
targetActorId: target.actor._id,
attackerActorId: this.id,
targetActorId: target.actor.id,
arme: duplicate(arme)
}
if (game.user.isGM) {

View File

@ -58,7 +58,8 @@ export class VadentisTokenHud {
} );
let combatIcon = html.find('.control-icon.combat');
if ( combatIcon[0].className.includes('active') ) {
//console.log("COMBAT ICON", combatIcon)
if ( combatIcon[0] && combatIcon[0].className.includes('active') ) {
VadentisTokenHud.addExtensionHud( app, html, tokenId);
}
}

View File

@ -119,13 +119,13 @@ export class VadentisUtility {
let formulaTouche = "1d20+"+attaque;
let formulaFull = attacker.buildTexteFormula( attacker.data.data.combat.attaque );
let myRoll = await this.processRoll(formulaTouche);
if (myRoll.results[0] > 1 && myRoll.total >= defense) { // Success !
if (myRoll.dice[0].results[0].result > 1 && myRoll.total >= defense) { // Success !
let degats = `normaux : ${combatData.arme.data.damage}`;
let formula = combatData.arme.data.damage.toLowerCase();
msgData.msg = `${attacker.name} a réussi son attaque sur ${defender.name} (${formulaFull} => ${myRoll.total} / ${defense}) !<br> Les dégâts sont ${degats}.`;
msgData.msg += tirMsg;
if ( myRoll.results[0] >= combatData.arme.data.valuecritical ) {
if ( myRoll.dice[0].results[0].result >= combatData.arme.data.valuecritical ) {
degats = `critiques : ${combatData.arme.data.criticaldamage}`;
formula = combatData.arme.data.criticaldamage.toLowerCase();
msgData.msg += `<br>C'est une <strong>réussite critique</strong> !`;
@ -138,7 +138,7 @@ export class VadentisUtility {
defender.applyDamage( degatsRoll.total );
} else { //Echec
msgData.img = 'systems/foundryvtt-vadentis/images/icons/tchat_attaque_échouée.webp';
if ( myRoll.results[0] == 1) {
if ( myRoll.dice[0].results[0].result == 1) {
msgData.msg = `${attacker.name} a fait un <strong>échec critique</strong> et a raté son attaque sur ${defender.name} (${myRoll.total} / ${defense}) !`;
} else {
msgData.msg = `${attacker.name} a raté son attaque sur ${defender.name} (${myRoll.total} / ${defense}) !`;

View File

@ -1,24 +1,8 @@
{"name":"D - Réécriture du Sort","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible dans un rayon de 9m","difficulty":14,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin d'emp&ecirc;cher un sort de s'abattre.&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>L'utilisateur fait un test de D&eacute;votion en opposition avec le jet de Ma&icirc;trise &eacute;l&eacute;mentaire ou de D&eacute;votion de la cible au moment o&ugrave; celle-ci lance un Sort &eacute;l&eacute;mentaire ou un Sort d'Eglise. Si le jet de l'utilisateur bat le jet de la cible, le sort est annul&eacute;. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-f9297e40-7fff-2a63-683b-632452d1d6a9\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique: </span><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></strong></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong style=\"font-family: Oswald, sans-serif; font-size: 16px; white-space: pre-wrap;\">Le Sort de la cible est annul&eacute;. </strong></p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"1XztXIFGKVGk06dB"}
{"name":"C - Probabilité améliorée","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":8,"target":"1 cible dans un rayon de 9m","difficulty":12,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">L'utilisateur invoque les 26 pour r&eacute;&eacute;crire l'histoire.&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>La cible ajoutera un bonus de 2D4 &agrave; son prochain jet de 1D20.</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-f9297e40-7fff-2a63-683b-632452d1d6a9\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique: </span><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></strong></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong style=\"font-family: Oswald, sans-serif; font-size: 16px; white-space: pre-wrap;\">La cible ajoutera un bonus de 4D4 &agrave; son prochain jet de 1D20.</strong></p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"7JbIipwZLS1Kds8t"}
{"name":"E - Dédoublement","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible consentante située à 9m","difficulty":14,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de cr&eacute;er un nouveau corps d&eacute;pourvu d'&acirc;me.</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Cr&eacute;ation d'un clone d'une cible consentante situ&eacute;e &agrave; 9m. Celui-ci agit sous la volont&eacute; de la personne ayant servi de mod&egrave;le. Le clone appara&icirc;t &agrave; c&ocirc;t&eacute; de l'utilisateur. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Le clone poss&egrave;de toutes les capacit&eacute;s du mod&egrave;le. N&eacute;anmoins il partage &eacute;galement ses PE et ses PA avec lui. Au moindre d&eacute;g&acirc;t, le clone dispara&icirc;t. L'initiative du clone est &eacute;gale &agrave; celle de l'utilisateur, c'est-&agrave;-dire qu'il pourra agir directement apr&egrave;s l'utilisateur une fois le sort lanc&eacute;. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-f9297e40-7fff-2a63-683b-632452d1d6a9\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique: </span><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></strong></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Cr&eacute;ation de deux clones d'une cible consentantes situ&eacute;e &agrave; 9m. Ceux-ci agissent sous la volont&eacute; de la personne ayant servi de mod&egrave;le. Les clones appara&icirc;ssent &agrave; c&ocirc;t&eacute; de l'utilisateur. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Les clones poss&egrave;dent toutes les capacit&eacute;s du mod&egrave;le. N&eacute;anmoins ils partagent &eacute;galement leurs PE et leurs PA avec lui. Au moindre d&eacute;g&acirc;t, les clones dispara&icirc;ssent. L'initiative des clones est &eacute;gale &agrave; celle de l'utilisateur, c'est-&agrave;-dire qu'ils pourront agir directement apr&egrave;s l'utilisateur une fois le sort lanc&eacute;. </strong></span></span></p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"EgrUMvw5mlwafF1I"}
{"name":"B - Téléportation","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":7,"target":"1 cible située à 20m","difficulty":12,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de d&eacute;place le corps et l'&acirc;me d'une perosnne.&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>La cible se fait t&eacute;l&eacute;porter jusqu'&agrave; 20m dans une direction choisie par l'utilisateur. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-f9297e40-7fff-2a63-683b-632452d1d6a9\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique: </span><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></strong></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong style=\"font-family: Oswald, sans-serif; font-size: 16px; white-space: pre-wrap;\">La cible se fait t&eacute;l&eacute;porter jusqu'&agrave; 40m dans une direction choisie par l'utilisateur. </strong></p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"ZDCxTjPiZil3vmsd"}
{"name":"A - Échange","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":600,"pe":8,"target":"L'utilisateur + 1 cible consentante se trouvant à 20m","difficulty":11,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin que des personnes &eacute;changent leur place.&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>L'utilisateur et la cible consentante &eacute;changent instantan&eacute;ment leur place.</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-f9297e40-7fff-2a63-683b-632452d1d6a9\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique: </span><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></strong></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Toutes les cibles s&eacute;lectionn&eacute;es dans un rayon de 20m, qu'elles soient consentantes ou non, &eacute;changeant leur place au bon vouloir de l'utilisateur. </strong></span></span></p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"fqx6NtcEBnU29ulh"}
{"name":"G - Passe-muraille","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":8,"target":"1 surface de 2m de rayon et 3m de profondeur","difficulty":13,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re.</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>L'utilisateur cr&eacute;e un passage &agrave; travers la mati&egrave;re. Permet par exemple de passer &agrave; travers un mur. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-f9297e40-7fff-2a63-683b-632452d1d6a9\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique: </span><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></strong></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>-</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"iWuHjcuYTXZiqKTv"}
{"name":"H- Omniscience","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":1200,"pe":14,"target":"","difficulty":null,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">L'utilisateur fait appelle au savoir omniscient des 26.</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>L'utilisateur interroge les 26 et peut avoir une vision d'une personne en un lieu donn&eacute;.</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Le degr&eacute; de difficult&eacute; et la pr&eacute;cision des r&eacute;ponses / visions d&eacute;pendront de la question. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-f9297e40-7fff-2a63-683b-632452d1d6a9\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique: </span><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></strong></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>-</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"vZCJF9Bhvqch4jc7"}
{"name":"F - Nulle part","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible au contact","difficulty":14,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de faire dispara&icirc;tre un &ecirc;tre du plan mat&eacute;riel.&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>La cible dispara&icirc;t de l'espace-temps durant 1 tour. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle r&eacute;appara&icirc;tra &agrave; la fin du prochain tour de l'utilisateur. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-f9297e40-7fff-2a63-683b-632452d1d6a9\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique: </span><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></strong></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>La cible dispara&icirc;t de l'espace-temps durant 2 tours. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle r&eacute;appara&icirc;tra &agrave; la fin du deuxi&egrave;me tour de l'utilisateur. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"wib73SoAFYUTmIfV"}
{"$$deleted":true,"_id":"fqx6NtcEBnU29ulh"}
{"$$deleted":true,"_id":"ZDCxTjPiZil3vmsd"}
{"$$deleted":true,"_id":"7JbIipwZLS1Kds8t"}
{"$$deleted":true,"_id":"1XztXIFGKVGk06dB"}
{"$$deleted":true,"_id":"EgrUMvw5mlwafF1I"}
{"$$deleted":true,"_id":"wib73SoAFYUTmIfV"}
{"$$deleted":true,"_id":"iWuHjcuYTXZiqKTv"}
{"$$deleted":true,"_id":"vZCJF9Bhvqch4jc7"}
{"name":"A - Échange","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":600,"pe":8,"target":"L'utilisateur + 1 cible consentante se trouvant à 20m","difficulty":11,"description":"","effect":"<p>L'utilisateur et la cible consentante &eacute;changent instantan&eacute;ment leur place.</p>","criticaleffect":"<p>Toutes les cibles s&eacute;lectionn&eacute;es dans un rayon de 20m, qu'elles soient consentantes ou non, &eacute;changeant leur place au bon vouloir de l'utilisateur.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin que des personnes &eacute;changent leur place.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"P6YnrU5ZzJRKIBY2"}
{"name":"B - Téléportation","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":7,"target":"1 cible située à 20m","difficulty":12,"description":"","effect":"<p>La cible se fait t&eacute;l&eacute;porter jusqu'&agrave; 20m dans une direction choisie par l'utilisateur.&nbsp;</p>","criticaleffect":"<p>La cible se fait t&eacute;l&eacute;porter jusqu'&agrave; 40m dans une direction choisie par l'utilisateur.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de d&eacute;place le corps et l'&acirc;me d'une perosnne.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"jzy6IFtqHxiYEB8r"}
{"name":"C - Probabilité améliorée","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":8,"target":"1 cible dans un rayon de 9m","difficulty":12,"description":"","effect":"<p>La cible ajoutera un bonus de 2D4 &agrave; son prochain jet de 1D20.</p>","criticaleffect":"<p>La cible ajoutera un bonus de 4D4 &agrave; son prochain jet de 1D20.</p>","notes":"<p>L'utilisateur invoque les 26 pour r&eacute;&eacute;crire l'histoire.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"AkfL3eD8hZXSdFeI"}
{"name":"D - Réécriture du Sort","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible dans un rayon de 9m","difficulty":14,"description":"","effect":"<p>L'utilisateur fait un test de D&eacute;votion en opposition avec le jet de Ma&icirc;trise &eacute;l&eacute;mentaire ou de D&eacute;votion de la cible au moment o&ugrave; celle-ci lance un Sort &eacute;l&eacute;mentaire ou un Sort d'Eglise. Si le jet de l'utilisateur bat le jet de la cible, le sort est annul&eacute;.&nbsp;</p>\n<p>&nbsp;</p>","criticaleffect":"<p>Le Sort de la cible est annul&eacute;.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin d'emp&ecirc;cher un sort de s'abattre.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"tYKn6HXFuEanZIPO"}
{"name":"E - Dédoublement","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible consentante située à 9m","difficulty":14,"description":"","effect":"<p>Cr&eacute;ation d'un clone d'une cible consentante situ&eacute;e &agrave; 9m. Celui-ci agit sous la volont&eacute; de la personne ayant servi de mod&egrave;le. Le clone appara&icirc;t &agrave; c&ocirc;t&eacute; de l'utilisateur.&nbsp;</p>\n<p>&nbsp;</p>\n<p>Le clone poss&egrave;de toutes les capacit&eacute;s du mod&egrave;le. N&eacute;anmoins il partage &eacute;galement ses PE et ses PA avec lui. Au moindre d&eacute;g&acirc;t, le clone dispara&icirc;t. L'initiative du clone est &eacute;gale &agrave; celle de l'utilisateur, c'est-&agrave;-dire qu'il pourra agir directement apr&egrave;s l'utilisateur une fois le sort lanc&eacute;.&nbsp;</p>","criticaleffect":"<p>Cr&eacute;ation de deux clones d'une cible consentantes situ&eacute;e &agrave; 9m. Ceux-ci agissent sous la volont&eacute; de la personne ayant servi de mod&egrave;le. Les clones appara&icirc;ssent &agrave; c&ocirc;t&eacute; de l'utilisateur.&nbsp;</p>\n<p>&nbsp;</p>\n<p>Les clones poss&egrave;dent toutes les capacit&eacute;s du mod&egrave;le. N&eacute;anmoins ils partagent &eacute;galement leurs PE et leurs PA avec lui. Au moindre d&eacute;g&acirc;t, les clones dispara&icirc;ssent. L'initiative des clones est &eacute;gale &agrave; celle de l'utilisateur, c'est-&agrave;-dire qu'ils pourront agir directement apr&egrave;s l'utilisateur une fois le sort lanc&eacute;.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de cr&eacute;er un nouveau corps d&eacute;pourvu d'&acirc;me.</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"norphMPWpDrJrDQU"}
{"name":"F - Nulle part","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible au contact","difficulty":14,"description":"","effect":"<p>La cible dispara&icirc;t de l'espace-temps durant 1 tour. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle r&eacute;appara&icirc;tra &agrave; la fin du prochain tour de l'utilisateur.&nbsp;</p>","criticaleffect":"<p>La cible dispara&icirc;t de l'espace-temps durant 2 tours. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle r&eacute;appara&icirc;tra &agrave; la fin du deuxi&egrave;me tour de l'utilisateur.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de faire dispara&icirc;tre un &ecirc;tre du plan mat&eacute;riel.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"Wxo02gRiihpDE41B"}
{"name":"G - Passe-muraille","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":8,"target":"1 surface de 2m de rayon et 3m de profondeur","difficulty":13,"description":"","effect":"<p>L'utilisateur cr&eacute;e un passage &agrave; travers la mati&egrave;re. Permet par exemple de passer &agrave; travers un mur.&nbsp;</p>","criticaleffect":"","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re.</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"TimdnkuKBDfi3igk"}
{"name":"H- Omniscience","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":1200,"pe":14,"target":"","difficulty":null,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">L'utilisateur interroge les 26 et peut avoir une vision d'une personne en un lieu donn&eacute;.</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">Le degr&eacute; de difficult&eacute; et la pr&eacute;cision des r&eacute;ponses / visions d&eacute;pendront de la question.&nbsp;</p>","criticaleffect":"","notes":"<p>L'utilisateur fait appelle au savoir omniscient des 26.</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"JrEj8UeTq6yfxpUJ"}
{"name":"A - Échange","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":600,"pe":8,"target":"L'utilisateur + 1 cible consentante se trouvant à 20m","difficulty":11,"description":"","effect":"<p>L'utilisateur et la cible consentante &eacute;changent instantan&eacute;ment leur place.</p>","criticaleffect":"<p>Toutes les cibles s&eacute;lectionn&eacute;es dans un rayon de 20m, qu'elles soient consentantes ou non, &eacute;changeant leur place au bon vouloir de l'utilisateur.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin que des personnes &eacute;changent leur place.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"P6YnrU5ZzJRKIBY2"}
{"name":"G - Passe-muraille","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":8,"target":"1 surface de 2m de rayon et 3m de profondeur","difficulty":13,"description":"","effect":"<p>L'utilisateur cr&eacute;e un passage &agrave; travers la mati&egrave;re. Permet par exemple de passer &agrave; travers un mur.&nbsp;</p>","criticaleffect":"","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re.</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"TimdnkuKBDfi3igk"}
{"name":"F - Nulle part","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible au contact","difficulty":14,"description":"","effect":"<p>La cible dispara&icirc;t de l'espace-temps durant 1 tour. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle r&eacute;appara&icirc;tra &agrave; la fin du prochain tour de l'utilisateur.&nbsp;</p>","criticaleffect":"<p>La cible dispara&icirc;t de l'espace-temps durant 2 tours. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle r&eacute;appara&icirc;tra &agrave; la fin du deuxi&egrave;me tour de l'utilisateur.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de faire dispara&icirc;tre un &ecirc;tre du plan mat&eacute;riel.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"Wxo02gRiihpDE41B"}
{"name":"B - Téléportation","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":7,"target":"1 cible située à 20m","difficulty":12,"description":"","effect":"<p>La cible se fait t&eacute;l&eacute;porter jusqu'&agrave; 20m dans une direction choisie par l'utilisateur.&nbsp;</p>","criticaleffect":"<p>La cible se fait t&eacute;l&eacute;porter jusqu'&agrave; 40m dans une direction choisie par l'utilisateur.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de d&eacute;place le corps et l'&acirc;me d'une perosnne.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"jzy6IFtqHxiYEB8r"}
{"name":"E - Dédoublement","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible consentante située à 9m","difficulty":14,"description":"","effect":"<p>Cr&eacute;ation d'un clone d'une cible consentante situ&eacute;e &agrave; 9m. Celui-ci agit sous la volont&eacute; de la personne ayant servi de mod&egrave;le. Le clone appara&icirc;t &agrave; c&ocirc;t&eacute; de l'utilisateur.&nbsp;</p>\n<p>&nbsp;</p>\n<p>Le clone poss&egrave;de toutes les capacit&eacute;s du mod&egrave;le. N&eacute;anmoins il partage &eacute;galement ses PE et ses PA avec lui. Au moindre d&eacute;g&acirc;t, le clone dispara&icirc;t. L'initiative du clone est &eacute;gale &agrave; celle de l'utilisateur, c'est-&agrave;-dire qu'il pourra agir directement apr&egrave;s l'utilisateur une fois le sort lanc&eacute;.&nbsp;</p>","criticaleffect":"<p>Cr&eacute;ation de deux clones d'une cible consentantes situ&eacute;e &agrave; 9m. Ceux-ci agissent sous la volont&eacute; de la personne ayant servi de mod&egrave;le. Les clones appara&icirc;ssent &agrave; c&ocirc;t&eacute; de l'utilisateur.&nbsp;</p>\n<p>&nbsp;</p>\n<p>Les clones poss&egrave;dent toutes les capacit&eacute;s du mod&egrave;le. N&eacute;anmoins ils partagent &eacute;galement leurs PE et leurs PA avec lui. Au moindre d&eacute;g&acirc;t, les clones dispara&icirc;ssent. L'initiative des clones est &eacute;gale &agrave; celle de l'utilisateur, c'est-&agrave;-dire qu'ils pourront agir directement apr&egrave;s l'utilisateur une fois le sort lanc&eacute;.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin de cr&eacute;er un nouveau corps d&eacute;pourvu d'&acirc;me.</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"norphMPWpDrJrDQU"}
{"name":"D - Réécriture du Sort","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":900,"pe":12,"target":"1 cible dans un rayon de 9m","difficulty":14,"description":"","effect":"<p>L'utilisateur fait un test de D&eacute;votion en opposition avec le jet de Ma&icirc;trise &eacute;l&eacute;mentaire ou de D&eacute;votion de la cible au moment o&ugrave; celle-ci lance un Sort &eacute;l&eacute;mentaire ou un Sort d'Eglise. Si le jet de l'utilisateur bat le jet de la cible, le sort est annul&eacute;.&nbsp;</p>\n<p>&nbsp;</p>","criticaleffect":"<p>Le Sort de la cible est annul&eacute;.&nbsp;</p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la mati&egrave;re afin d'emp&ecirc;cher un sort de s'abattre.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise des 26"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"tYKn6HXFuEanZIPO"}

File diff suppressed because one or more lines are too long

View File

@ -1,28 +1,9 @@
{"name":"D - Temps figé","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":7,"target":"1 cible située à 9m","difficulty":13,"description":"","effect":"<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur invoque la puissance du Temps afin de permettre &agrave; un &ecirc;tre de se mouvoir hors du temps. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Permet &agrave; la cible d'effectuer deux actions complexes lors de son prochain tour. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong style=\"font-family: Oswald, sans-serif; font-size: 16px; white-space: pre-wrap;\">Permet &agrave; la cible d'effectuer trois actions complexes lors de son prochain tour. </strong></p>","notes":null,"damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"80hl650BXI0wrjFv"}
{"name":"C - Blessures oubliées supérieures","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":8,"target":"1 cible au contact","difficulty":13,"description":"","effect":"<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur invoque la puissance du Temps afin de gu&eacute;rir les blessures. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>PV restaur&eacute;s: 3D6</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">PV restaur&eacute;s: 6D6</span></strong></p>","notes":"<p>Il faut d&eacute;j&agrave; avoir acquis le sort \"Blessures oubli&eacute;es\".&nbsp;</p>","damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"8cYiCGsqzCU4VWdV"}
{"name":"C - Blessures oubliées","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":4,"target":"1 cible au contact","difficulty":12,"description":"","effect":"<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur invoque la puissance du Temps afin de gu&eacute;rir les blessures l&eacute;g&egrave;res. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>PV restaur&eacute;s: 2D4</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">PV restaur&eacute;s: 4D4</span></strong></p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"DSOTcsoFssq7knvE"}
{"name":"A - Accélération","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":600,"pe":5,"target":"1 cible située à 9m","difficulty":11,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur invoque la puissance du Temps afin d'acc&eacute;l&eacute;rer les mouvements d'un &ecirc;tre. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">T</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">riple la vitesse de d&eacute;placement de la cible pendant 2D4 tour.&nbsp;</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Triple la vitesse de d&eacute;placement de la cible pendant 3D4 tour.&nbsp;</span></strong></p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"Lgrj6Kri3x4CsNa9"}
{"name":"G - Vision du passé","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":12,"target":"L'utilisateur","difficulty":15,"description":"","effect":"<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur interroge l'omniscience du Temps. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>L'utilisateur interroge le temps pass&eacute;.</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Il peut voir les &eacute;v&eacute;nemens pass&eacute;s dans un lieu. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">-</p>","notes":null,"damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"OjEHQJ2YINVYt3ZH"}
{"name":"H - Prophétie dans l'action","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":6,"target":"L'utilisateur","difficulty":14,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur interroge l'omniscience du Temps dans un d&eacute;lai tr&egrave;s court.</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>L'utilisateur interroge le temps.</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Il peut voir les intentions d'une cible et ses actions durant les deux prochains tours. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">-</p>","notes":null,"damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"nDj5PKzkKgJbS0to"}
{"name":"E - Temporalité déformée","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":1100,"pe":10,"target":"1 cible située à 9m autre que l'utilisateur","difficulty":15,"description":"","effect":"<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur invoque la puissance du Temps afin de permettre &agrave; un &ecirc;tre de se mouvoir hors-du-temps. </span></p>\n<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Permet &agrave; la cible d'avoir un second tour.</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Le tour est jou&eacute; imm&eacute;diatement. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong style=\"font-family: Oswald, sans-serif; font-size: 16px; white-space: pre-wrap;\">Permet &agrave; toutes les cibles s&eacute;lectionn&eacute;es dans un rayon de 9m autre que l'utilisateur d'avoir un second tour. </strong></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong style=\"font-family: Oswald, sans-serif; font-size: 16px; white-space: pre-wrap;\">Ces tours sont jou&eacute;s imm&eacute;diatement dans l'ordre d'initiative. </strong></p>","notes":"<p>Ce Sort est jou&eacute; durant le tour de l'utilisateur et non celui de la cible.&nbsp;</p>","damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"xcnPMXpvPKhv3nSr"}
{"name":"B - Annulation","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":7,"target":"1 cible située à 9m","difficulty":12,"description":"","effect":"<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"box-sizing: border-box; user-select: text; margin-top: 0pt; margin-bottom: 0pt; color: #191813; font-family: CaslonAntique; font-size: 16px; letter-spacing: 1px; text-align: justify; background-color: #f5f5f0; line-height: 1.38;\"><span style=\"box-sizing: border-box; user-select: text; font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur invoque la puissance du Temps afin d'annuler une action visant &agrave; d&eacute;truire. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Annule l'attaque ou le sort d'une cible avant que les d&eacute;g&acirc;ts ne soient lanc&eacute;s. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>L'utilisateur ne pourra pas jouer son tour suivant. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong style=\"font-family: Oswald, sans-serif; font-size: 16px; white-space: pre-wrap;\">Annule l'attaque ou le sort d'une cible avant que les d&eacute;g&acirc;ts ne soient lanc&eacute;s. </strong></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><strong><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur pourra jouer son tour suivant de fa&ccedil;on habituelle. </span></strong></p>","notes":"","damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"xjNVlPXl3fiZHiWH"}
{"name":"F - Prophétie","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":12,"target":"L'utilisateur","difficulty":15,"description":"","effect":"<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Description:</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">L'utilisateur interroge l'omnscience du Temps. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Effets: </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-family: Oswald, sans-serif;\"><span style=\"font-size: 16px; white-space: pre-wrap;\"><strong>Les r&eacute;ponses ne peuvent concerner uniquement ce qui se d&eacute;roulera dans les 24 prochaines heures. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">&nbsp;</p>\n<p><span id=\"docs-internal-guid-6dc86a33-7fff-495f-22de-fb597f7b95f1\"></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">R&eacute;ussite Critique:</span><span style=\"font-size: 12pt; font-family: Oswald, sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;</span><span style=\"font-size: 12pt; font-family: Oswald,sans-serif; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">-</p>","notes":null,"damage":"","damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"zh1rU8abv7uipewt"}
{"$$deleted":true,"_id":"Lgrj6Kri3x4CsNa9"}
{"$$deleted":true,"_id":"xjNVlPXl3fiZHiWH"}
{"$$deleted":true,"_id":"DSOTcsoFssq7knvE"}
{"$$deleted":true,"_id":"8cYiCGsqzCU4VWdV"}
{"$$deleted":true,"_id":"80hl650BXI0wrjFv"}
{"$$deleted":true,"_id":"xcnPMXpvPKhv3nSr"}
{"$$deleted":true,"_id":"zh1rU8abv7uipewt"}
{"$$deleted":true,"_id":"OjEHQJ2YINVYt3ZH"}
{"$$deleted":true,"_id":"nDj5PKzkKgJbS0to"}
{"name":"A - Accélération","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":600,"pe":5,"target":"1 cible située à 9m","difficulty":11,"description":"","effect":"<p>Triple la vitesse de d&eacute;placement de la cible pendant 2D4 tour.&nbsp;</p>","criticaleffect":"<p>Triple la vitesse de d&eacute;placement de la cible pendant 3D4 tour.&nbsp;</p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin d'acc&eacute;l&eacute;rer les mouvements d'un &ecirc;tre.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"2hCQFkozmaAccHh8"}
{"_id":"2hCQFkozmaAccHh8","name":"A - Accélération","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":600,"pe":5,"target":"1 cible située à 9m","difficulty":11,"description":"","effect":"<p>Triple la vitesse de d&eacute;placement de la cible pendant 2D4 tour.&nbsp;</p>","criticaleffect":"<p>Triple la vitesse de d&eacute;placement de la cible pendant 3D4 tour.&nbsp;</p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin d'acc&eacute;l&eacute;rer les mouvements d'un &ecirc;tre.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[]}
{"name":"B - Annulation","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":7,"target":"1 cible située à 9m","difficulty":12,"description":"","effect":"<p>Annule l'attaque ou le sort d'une cible avant que les d&eacute;g&acirc;ts ne soient lanc&eacute;s.&nbsp;</p>\n<p>&nbsp;</p>\n<p>L'utilisateur ne pourra pas jouer son tour suivant.&nbsp;</p>","criticaleffect":"<p>Annule l'attaque ou le sort d'une cible avant que les d&eacute;g&acirc;ts ne soient lanc&eacute;s.&nbsp;</p>\n<p>&nbsp;</p>\n<p>L'utilisateur pourra jouer son tour suivant de fa&ccedil;on habituelle.&nbsp;</p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin d'annuler une action visant &agrave; d&eacute;truire.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"65mL3BrMblPuq7S1"}
{"name":"C - Blessures oubliées","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":4,"target":"1 cible au contact","difficulty":12,"description":"","effect":"<p>PV restaur&eacute;s: 2D4</p>","criticaleffect":"<p>PV restaur&eacute;s: 4D4</p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin de gu&eacute;rir les blessures l&eacute;g&egrave;res.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"DnGwYXMyfP4ifbuI"}
{"name":"C - Blessures oubliées supérieures","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":8,"target":"1 cible au contact","difficulty":13,"description":"","effect":"<p>PV restaur&eacute;s: 3D6</p>\n<p>&nbsp;</p>","criticaleffect":"<p>PV restaur&eacute;s: 6D6</p>","notes":"<p>Il faut d&eacute;j&agrave; avoir acquis le sort \"Blessures oubli&eacute;es\".&nbsp;</p>\n<p>&nbsp;</p>\n<p>L'utilisateur invoque la puissance du Temps afin de gu&eacute;rir les blessures.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"gTJPiF9teDDSUJNC"}
{"name":"D - Temps figé","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":7,"target":"1 cible située à 9m","difficulty":13,"description":"","effect":"<p>Permet &agrave; la cible d'effectuer deux actions complexes lors de son prochain tour.&nbsp;</p>","criticaleffect":"<p>Permet &agrave; la cible d'effectuer trois actions complexes lors de son prochain tour.&nbsp;</p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin de permettre &agrave; un &ecirc;tre de se mouvoir hors du temps.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"eGmQBMFiUQvMdeDB"}
{"name":"E - Temporalité déformée","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":1100,"pe":10,"target":"1 cible située à 9m autre que l'utilisateur","difficulty":15,"description":"","effect":"<p>Permet &agrave; la cible d'avoir un second tour.</p>\n<p>&nbsp;</p>\n<p>Le tour est jou&eacute; imm&eacute;diatement.&nbsp;</p>","criticaleffect":"<p>Permet &agrave; toutes les cibles s&eacute;lectionn&eacute;es dans un rayon de 9m autre que l'utilisateur d'avoir un second tour.&nbsp;</p>\n<p>&nbsp;</p>\n<p>Ces tours sont jou&eacute;s imm&eacute;diatement dans l'ordre d'initiative.&nbsp;</p>","notes":"<p>Ce Sort est jou&eacute; durant le tour de l'utilisateur et non celui de la cible.&nbsp;</p>\n<p>&nbsp;</p>\n<p>L'utilisateur invoque la puissance du Temps afin de permettre &agrave; un &ecirc;tre de se mouvoir hors-du-temps.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"srUIzYIftEkhjXRW"}
{"name":"F - Prophétie","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":12,"target":"L'utilisateur","difficulty":15,"description":"","effect":"<p>Les r&eacute;ponses ne peuvent concerner uniquement ce qui se d&eacute;roulera dans les 24 prochaines heures.&nbsp;</p>","criticaleffect":"","notes":"<p>L'utilisateur interroge l'omnscience du Temps futur.</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"VCtuboluET5k0u5a"}
{"name":"G - Vision du passé","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":12,"target":"L'utilisateur","difficulty":15,"description":"","effect":"<p>L'utilisateur interroge le temps pass&eacute;.</p>\n<p>&nbsp;</p>\n<p>Il peut voir les &eacute;v&eacute;nemens pass&eacute;s dans un lieu.&nbsp;</p>","criticaleffect":"","notes":"<p>L'utilisateur interroge l'omniscience du Temps.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"HCdICLBh91QktRXH"}
{"name":"F - Prophétie","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":12,"target":"L'utilisateur","difficulty":15,"description":"","effect":"<p>Les r&eacute;ponses ne peuvent concerner uniquement ce qui se d&eacute;roulera dans les 24 prochaines heures.&nbsp;</p>","criticaleffect":"","notes":"<p>L'utilisateur interroge l'omnscience du Temps futur.</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"VCtuboluET5k0u5a"}
{"name":"D - Temps figé","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":7,"target":"1 cible située à 9m","difficulty":13,"description":"","effect":"<p>Permet &agrave; la cible d'effectuer deux actions complexes lors de son prochain tour.&nbsp;</p>","criticaleffect":"<p>Permet &agrave; la cible d'effectuer trois actions complexes lors de son prochain tour.&nbsp;</p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin de permettre &agrave; un &ecirc;tre de se mouvoir hors du temps.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"eGmQBMFiUQvMdeDB"}
{"name":"C - Blessures oubliées supérieures","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":800,"pe":8,"target":"1 cible au contact","difficulty":13,"description":"","effect":"<p>PV restaur&eacute;s: 3D6</p>\n<p>&nbsp;</p>","criticaleffect":"<p>PV restaur&eacute;s: 6D6</p>","notes":"<p>Il faut d&eacute;j&agrave; avoir acquis le sort \"Blessures oubli&eacute;es\".&nbsp;</p>\n<p>&nbsp;</p>\n<p>L'utilisateur invoque la puissance du Temps afin de gu&eacute;rir les blessures.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"gTJPiF9teDDSUJNC"}
{"name":"H - Prophétie dans l'action","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":700,"pe":6,"target":"L'utilisateur","difficulty":14,"description":"","effect":"<p>Il peut voir les intentions d'une cible et ses actions durant les deux prochains tours.&nbsp;</p>","criticaleffect":"","notes":"<p>L'utilisateur interroge l'omniscience du Temps dans un d&eacute;lai tr&egrave;s court.</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"iZpDRHYzBiz2Frxp"}
{"_id":"2hCQFkozmaAccHh8","name":"A - Accélération","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":600,"pe":5,"target":"1 cible située à 9m","difficulty":11,"description":"","effect":"<p>Triple la vitesse de d&eacute;placement de la cible pendant 2D4 tour.&nbsp;</p>","criticaleffect":"<p>Triple la vitesse de d&eacute;placement de la cible pendant 3D4 tour.&nbsp;</p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin d'acc&eacute;l&eacute;rer les mouvements d'un &ecirc;tre.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[]}
{"name":"E - Temporalité déformée","permission":{"default":0,"0FETyDL9AqSwhPI5":3},"type":"devotion","data":{"xp":1100,"pe":10,"target":"1 cible située à 9m autre que l'utilisateur","difficulty":15,"description":"","effect":"<p>Permet &agrave; la cible d'avoir un second tour.</p>\n<p>&nbsp;</p>\n<p>Le tour est jou&eacute; imm&eacute;diatement.&nbsp;</p>","criticaleffect":"<p>Permet &agrave; toutes les cibles s&eacute;lectionn&eacute;es dans un rayon de 9m autre que l'utilisateur d'avoir un second tour.&nbsp;</p>\n<p>&nbsp;</p>\n<p>Ces tours sont jou&eacute;s imm&eacute;diatement dans l'ordre d'initiative.&nbsp;</p>","notes":"<p>Ce Sort est jou&eacute; durant le tour de l'utilisateur et non celui de la cible.&nbsp;</p>\n<p>&nbsp;</p>\n<p>L'utilisateur invoque la puissance du Temps afin de permettre &agrave; un &ecirc;tre de se mouvoir hors-du-temps.&nbsp;</p>","damage":"","ismaintain":false,"complexactions":false,"valuecritical":20,"damagecritical":"","eglise":"Eglise du Temps"},"flags":{},"img":"systems/foundryvtt-vadentis/images/icons/icone_item_sorts_eglises.webp","effects":[],"_id":"srUIzYIftEkhjXRW"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,7 @@
"name": "foundryvtt-vadentis",
"title": "Vadentis",
"description": "Système Vadentis pour FoundryVTT",
"version": "0.3.0",
"version": "0.3.1",
"manifestPlusVersion": "1.0.0",
"minimumCoreVersion": "0.8.9",
"compatibleCoreVersion": "9",