Fix rols
This commit is contained in:
parent
35f2f4c815
commit
d776c219a8
@ -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) {
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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}) !`;
|
||||
|
@ -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ère afin d'empêcher un sort de s'abattre. </p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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évotion en opposition avec le jet de Maîtrise élémentaire ou de Dévotion de la cible au moment où celle-ci lance un Sort élémentaire ou un Sort d'Eglise. Si le jet de l'utilisateur bat le jet de la cible, le sort est annulé. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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é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é. </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éécrire l'histoire. </p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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 à 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;\"> </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é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 à 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ère afin de créer un nouveau corps dépourvu d'âme.</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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éation d'un clone d'une cible consentante située à 9m. Celui-ci agit sous la volonté de la personne ayant servi de modèle. Le clone apparaît à côté 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ède toutes les capacités du modèle. Néanmoins il partage également ses PE et ses PA avec lui. Au moindre dégât, le clone disparaît. L'initiative du clone est égale à celle de l'utilisateur, c'est-à-dire qu'il pourra agir directement après l'utilisateur une fois le sort lancé. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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é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éation de deux clones d'une cible consentantes située à 9m. Ceux-ci agissent sous la volonté de la personne ayant servi de modèle. Les clones apparaîssent à côté 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èdent toutes les capacités du modèle. Néanmoins ils partagent également leurs PE et leurs PA avec lui. Au moindre dégât, les clones disparaîssent. L'initiative des clones est égale à celle de l'utilisateur, c'est-à-dire qu'ils pourront agir directement après l'utilisateur une fois le sort lancé. </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ère afin de déplace le corps et l'âme d'une perosnne. </p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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éléporter jusqu'à 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;\"> </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é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éléporter jusqu'à 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ère afin que des personnes échangent leur place. </p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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 échangent instantané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;\"> </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é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électionnées dans un rayon de 20m, qu'elles soient consentantes ou non, é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ère.</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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ée un passage à travers la matière. Permet par exemple de passer à 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;\"> </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é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;\"> </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;\"> </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é.</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é de difficulté et la précision des réponses / visions dé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;\"> </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é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;\"> </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ère afin de faire disparaître un être du plan matériel. </p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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ît de l'espace-temps durant 1 tour. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle réapparaîtra à 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;\"> </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é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ît de l'espace-temps durant 2 tours. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle réapparaîtra à la fin du deuxiè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;\"> </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 échangent instantanément leur place.</p>","criticaleffect":"<p>Toutes les cibles sélectionnées dans un rayon de 20m, qu'elles soient consentantes ou non, échangeant leur place au bon vouloir de l'utilisateur. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin que des personnes échangent leur place. </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éléporter jusqu'à 20m dans une direction choisie par l'utilisateur. </p>","criticaleffect":"<p>La cible se fait téléporter jusqu'à 40m dans une direction choisie par l'utilisateur. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin de déplace le corps et l'âme d'une perosnne. </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 à son prochain jet de 1D20.</p>","criticaleffect":"<p>La cible ajoutera un bonus de 4D4 à son prochain jet de 1D20.</p>","notes":"<p>L'utilisateur invoque les 26 pour réécrire l'histoire. </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évotion en opposition avec le jet de Maîtrise élémentaire ou de Dévotion de la cible au moment où celle-ci lance un Sort élémentaire ou un Sort d'Eglise. Si le jet de l'utilisateur bat le jet de la cible, le sort est annulé. </p>\n<p> </p>","criticaleffect":"<p>Le Sort de la cible est annulé. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin d'empêcher un sort de s'abattre. </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éation d'un clone d'une cible consentante située à 9m. Celui-ci agit sous la volonté de la personne ayant servi de modèle. Le clone apparaît à côté de l'utilisateur. </p>\n<p> </p>\n<p>Le clone possède toutes les capacités du modèle. Néanmoins il partage également ses PE et ses PA avec lui. Au moindre dégât, le clone disparaît. L'initiative du clone est égale à celle de l'utilisateur, c'est-à-dire qu'il pourra agir directement après l'utilisateur une fois le sort lancé. </p>","criticaleffect":"<p>Création de deux clones d'une cible consentantes située à 9m. Ceux-ci agissent sous la volonté de la personne ayant servi de modèle. Les clones apparaîssent à côté de l'utilisateur. </p>\n<p> </p>\n<p>Les clones possèdent toutes les capacités du modèle. Néanmoins ils partagent également leurs PE et leurs PA avec lui. Au moindre dégât, les clones disparaîssent. L'initiative des clones est égale à celle de l'utilisateur, c'est-à-dire qu'ils pourront agir directement après l'utilisateur une fois le sort lancé. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin de créer un nouveau corps dépourvu d'â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ît de l'espace-temps durant 1 tour. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle réapparaîtra à la fin du prochain tour de l'utilisateur. </p>","criticaleffect":"<p>La cible disparaît de l'espace-temps durant 2 tours. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle réapparaîtra à la fin du deuxième tour de l'utilisateur. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin de faire disparaître un être du plan matériel. </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ée un passage à travers la matière. Permet par exemple de passer à travers un mur. </p>","criticaleffect":"","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matiè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é.</p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\">Le degré de difficulté et la précision des réponses / visions dépendront de la question. </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 échangent instantanément leur place.</p>","criticaleffect":"<p>Toutes les cibles sélectionnées dans un rayon de 20m, qu'elles soient consentantes ou non, échangeant leur place au bon vouloir de l'utilisateur. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin que des personnes échangent leur place. </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ée un passage à travers la matière. Permet par exemple de passer à travers un mur. </p>","criticaleffect":"","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matiè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ît de l'espace-temps durant 1 tour. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle réapparaîtra à la fin du prochain tour de l'utilisateur. </p>","criticaleffect":"<p>La cible disparaît de l'espace-temps durant 2 tours. Elle ne peut ni agir ni subir d'attaque durant ce lapse de temps. Elle réapparaîtra à la fin du deuxième tour de l'utilisateur. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin de faire disparaître un être du plan matériel. </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éléporter jusqu'à 20m dans une direction choisie par l'utilisateur. </p>","criticaleffect":"<p>La cible se fait téléporter jusqu'à 40m dans une direction choisie par l'utilisateur. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin de déplace le corps et l'âme d'une perosnne. </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éation d'un clone d'une cible consentante située à 9m. Celui-ci agit sous la volonté de la personne ayant servi de modèle. Le clone apparaît à côté de l'utilisateur. </p>\n<p> </p>\n<p>Le clone possède toutes les capacités du modèle. Néanmoins il partage également ses PE et ses PA avec lui. Au moindre dégât, le clone disparaît. L'initiative du clone est égale à celle de l'utilisateur, c'est-à-dire qu'il pourra agir directement après l'utilisateur une fois le sort lancé. </p>","criticaleffect":"<p>Création de deux clones d'une cible consentantes située à 9m. Ceux-ci agissent sous la volonté de la personne ayant servi de modèle. Les clones apparaîssent à côté de l'utilisateur. </p>\n<p> </p>\n<p>Les clones possèdent toutes les capacités du modèle. Néanmoins ils partagent également leurs PE et leurs PA avec lui. Au moindre dégât, les clones disparaîssent. L'initiative des clones est égale à celle de l'utilisateur, c'est-à-dire qu'ils pourront agir directement après l'utilisateur une fois le sort lancé. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin de créer un nouveau corps dépourvu d'â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évotion en opposition avec le jet de Maîtrise élémentaire ou de Dévotion de la cible au moment où celle-ci lance un Sort élémentaire ou un Sort d'Eglise. Si le jet de l'utilisateur bat le jet de la cible, le sort est annulé. </p>\n<p> </p>","criticaleffect":"<p>Le Sort de la cible est annulé. </p>","notes":"<p>L'utilisateur invoque les 26 pour modifier l'espace et la matière afin d'empêcher un sort de s'abattre. </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
@ -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 à un ê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;\"> </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 à 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;\"> </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é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;\"> </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 à 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érir les blessures. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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és: 3D6</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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é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;\"> </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és: 6D6</span></strong></p>","notes":"<p>Il faut déjà avoir acquis le sort \"Blessures oubliées\". </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érir les blessures légères. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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és: 2D4</strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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é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;\"> </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é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élérer les mouvements d'un être. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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éplacement de la cible pendant 2D4 tour. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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é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;\"> </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éplacement de la cible pendant 3D4 tour. </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;\"> </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é.</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 événemens passé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;\"> </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é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;\"> </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élai très court.</span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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;\"> </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é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;\"> </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 à un ê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;\"> </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 à 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é immédiatement. </strong></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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é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;\"> </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 à toutes les cibles sélectionné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és immédiatement dans l'ordre d'initiative. </strong></p>","notes":"<p>Ce Sort est joué durant le tour de l'utilisateur et non celui de la cible. </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;\"> </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 à détruire. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: justify; margin-top: 0pt; margin-bottom: 0pt;\"> </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égâts ne soient lancé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;\"> </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é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;\"> </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égâts ne soient lancé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ç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;\"> </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éponses ne peuvent concerner uniquement ce qui se dé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;\"> </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é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;\"> </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éplacement de la cible pendant 2D4 tour. </p>","criticaleffect":"<p>Triple la vitesse de déplacement de la cible pendant 3D4 tour. </p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin d'accélérer les mouvements d'un être. </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éplacement de la cible pendant 2D4 tour. </p>","criticaleffect":"<p>Triple la vitesse de déplacement de la cible pendant 3D4 tour. </p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin d'accélérer les mouvements d'un être. </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égâts ne soient lancés. </p>\n<p> </p>\n<p>L'utilisateur ne pourra pas jouer son tour suivant. </p>","criticaleffect":"<p>Annule l'attaque ou le sort d'une cible avant que les dégâts ne soient lancés. </p>\n<p> </p>\n<p>L'utilisateur pourra jouer son tour suivant de façon habituelle. </p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin d'annuler une action visant à détruire. </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és: 2D4</p>","criticaleffect":"<p>PV restaurés: 4D4</p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin de guérir les blessures légères. </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és: 3D6</p>\n<p> </p>","criticaleffect":"<p>PV restaurés: 6D6</p>","notes":"<p>Il faut déjà avoir acquis le sort \"Blessures oubliées\". </p>\n<p> </p>\n<p>L'utilisateur invoque la puissance du Temps afin de guérir les blessures. </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 à la cible d'effectuer deux actions complexes lors de son prochain tour. </p>","criticaleffect":"<p>Permet à la cible d'effectuer trois actions complexes lors de son prochain tour. </p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin de permettre à un être de se mouvoir hors du temps. </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 à la cible d'avoir un second tour.</p>\n<p> </p>\n<p>Le tour est joué immédiatement. </p>","criticaleffect":"<p>Permet à toutes les cibles sélectionnées dans un rayon de 9m autre que l'utilisateur d'avoir un second tour. </p>\n<p> </p>\n<p>Ces tours sont joués immédiatement dans l'ordre d'initiative. </p>","notes":"<p>Ce Sort est joué durant le tour de l'utilisateur et non celui de la cible. </p>\n<p> </p>\n<p>L'utilisateur invoque la puissance du Temps afin de permettre à un être de se mouvoir hors-du-temps. </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éponses ne peuvent concerner uniquement ce qui se déroulera dans les 24 prochaines heures. </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é.</p>\n<p> </p>\n<p>Il peut voir les événemens passés dans un lieu. </p>","criticaleffect":"","notes":"<p>L'utilisateur interroge l'omniscience du Temps. </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éponses ne peuvent concerner uniquement ce qui se déroulera dans les 24 prochaines heures. </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 à la cible d'effectuer deux actions complexes lors de son prochain tour. </p>","criticaleffect":"<p>Permet à la cible d'effectuer trois actions complexes lors de son prochain tour. </p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin de permettre à un être de se mouvoir hors du temps. </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és: 3D6</p>\n<p> </p>","criticaleffect":"<p>PV restaurés: 6D6</p>","notes":"<p>Il faut déjà avoir acquis le sort \"Blessures oubliées\". </p>\n<p> </p>\n<p>L'utilisateur invoque la puissance du Temps afin de guérir les blessures. </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. </p>","criticaleffect":"","notes":"<p>L'utilisateur interroge l'omniscience du Temps dans un délai trè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éplacement de la cible pendant 2D4 tour. </p>","criticaleffect":"<p>Triple la vitesse de déplacement de la cible pendant 3D4 tour. </p>","notes":"<p>L'utilisateur invoque la puissance du Temps afin d'accélérer les mouvements d'un être. </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 à la cible d'avoir un second tour.</p>\n<p> </p>\n<p>Le tour est joué immédiatement. </p>","criticaleffect":"<p>Permet à toutes les cibles sélectionnées dans un rayon de 9m autre que l'utilisateur d'avoir un second tour. </p>\n<p> </p>\n<p>Ces tours sont joués immédiatement dans l'ordre d'initiative. </p>","notes":"<p>Ce Sort est joué durant le tour de l'utilisateur et non celui de la cible. </p>\n<p> </p>\n<p>L'utilisateur invoque la puissance du Temps afin de permettre à un être de se mouvoir hors-du-temps. </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
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user