Compare commits
4 Commits
c3fda04b74
...
9448407e41
Author | SHA1 | Date | |
---|---|---|---|
9448407e41 | |||
32adbb721f | |||
f3120f34d0 | |||
c6feac41c6 |
@ -1,4 +1,8 @@
|
||||
# 12.0
|
||||
## 12.0.27 - Les vêtements d'Astrobazzarh
|
||||
- Ajout de la liste des armures dans l'onglet caractéristiques
|
||||
- Correction des ajouts de blessures (prise en compte de l'endurance et des contusions)
|
||||
|
||||
## 12.0.26 - Astrobazzarh le Haut-rêvant
|
||||
- bouton pour le don de haut-rêve en un clic
|
||||
- les compétences de draconic ne sont plus précédées de "Voie de"
|
||||
|
@ -144,7 +144,7 @@ export class RdDStatBlockParser {
|
||||
let actorData = foundry.utils.deepClone(game.model.Actor[type]);
|
||||
let items = [];
|
||||
|
||||
actorData.flags = { hautRevant: false, malusArmure: 0 }
|
||||
actorData.flags = { hautRevant: false, malusArmure: 0, type }
|
||||
for (let key in actorData.carac) {
|
||||
let caracDef = actorData.carac[key];
|
||||
// Parse the stat string for each caracteristic
|
||||
@ -169,7 +169,7 @@ export class RdDStatBlockParser {
|
||||
}
|
||||
|
||||
// Get skills from compendium
|
||||
await RdDStatBlockParser.parseCompetences(type, statString, actorData, items);
|
||||
await RdDStatBlockParser.parseCompetences(statString, actorData, items);
|
||||
|
||||
|
||||
if (type == "personnage") {
|
||||
@ -191,35 +191,48 @@ export class RdDStatBlockParser {
|
||||
await newActor?.sheet.render(true)
|
||||
}
|
||||
|
||||
static async parseCompetences(type, statString, actorData, items) {
|
||||
const competences = await SystemCompendiums.getCompetences(type);
|
||||
static async parseCompetences(statString, actorData, items) {
|
||||
const competences = await SystemCompendiums.getCompetences(actorData.flags.type);
|
||||
//console.log("Competences : ", competences);
|
||||
for (let comp of competences) {
|
||||
let compNameToSearch = RdDStatBlockParser.fixCompName(comp.name);
|
||||
let compMatch = XRegExp.exec(statString, XRegExp("\\s" + compNameToSearch + compParser[type], 'giu'));
|
||||
if (compMatch) {
|
||||
comp = comp.toObject()
|
||||
comp.system.niveau = Number(compMatch.value)
|
||||
if (compMatch.malus) {
|
||||
comp.system.niveau = Number(compMatch.value) - actorData.flags.malusArmure
|
||||
}
|
||||
if (comp.system.categorie == 'draconic' && comp.system.niveau > -11) {
|
||||
actorData.flags.hautRevant = true
|
||||
}
|
||||
if (type == "creature" || type == "entite") {
|
||||
comp.system.carac_value = Number(compMatch.carac);
|
||||
if (compMatch.dommages != undefined) {
|
||||
comp.system.dommages = Number(compMatch.dommages);
|
||||
comp.system.iscombat = true;
|
||||
for (let competence of competences) {
|
||||
let pushed = actorData.flags.type != "personnage"
|
||||
let compNameToSearch = RdDStatBlockParser.fixCompName(competence.name)
|
||||
XRegExp.forEach(statString, XRegExp("\\s" + compNameToSearch + compParser[actorData.flags.type], 'giu'),
|
||||
function (compMatch, i) {
|
||||
items.push(RdDStatBlockParser.prepareCompetence(actorData, competence, compMatch))
|
||||
if (!compMatch.special) {
|
||||
pushed = true
|
||||
}
|
||||
}
|
||||
items.push(comp);
|
||||
})
|
||||
if (!pushed) {
|
||||
// ajout niveau de base
|
||||
items.push(competence.toObject())
|
||||
}
|
||||
else if (type == "personnage") {
|
||||
comp = comp.toObject();
|
||||
items.push(comp);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
static prepareCompetence(actorData, competence, compMatch) {
|
||||
const comp = competence.toObject();
|
||||
if (compMatch.special) {
|
||||
comp._id = undefined
|
||||
comp.name = `${comp.name} (${compMatch.special})`
|
||||
}
|
||||
comp.system.niveau = Number(compMatch.value);
|
||||
if (compMatch.malus) {
|
||||
comp.system.niveau = Number(compMatch.value) - actorData.flags.malusArmure
|
||||
}
|
||||
if (comp.system.categorie == 'draconic' && comp.system.niveau > -11) {
|
||||
actorData.flags.hautRevant = true
|
||||
}
|
||||
if (["creature", "entite"].includes(actorData.flags.type)) {
|
||||
comp.system.carac_value = Number(compMatch.carac);
|
||||
if (compMatch.dommages != undefined) {
|
||||
comp.system.dommages = Number(compMatch.dommages)
|
||||
comp.system.iscombat = true
|
||||
}
|
||||
}
|
||||
return comp
|
||||
}
|
||||
|
||||
static async parseArmors(statString, actorData, items) {
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!ryUZTa17LzNv25UY.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!ohmz9Jn4jxD88Kll.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!JARnWt2MQWDyRwQt.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!SJb0c8FDcYdd41rB.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!JQCwAOK64Yijwtch.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!CRRP8ucJpljX6tq8.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!51vL4MhEE0asjgF2.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!NX1nAqKKIcQlyGua.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!IeKSXignUpfUTU4m.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!2bRaEDuwZezKAyEq.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!pSM0ku0RJNLvHSvF.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!5xPFHgrY5AIP9Mnb.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!U9NNcXQBJmsI9Ttk.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!oLDROOdwfctyRusH.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!2KN3nKGZ36Qkn7Mf.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -768,7 +768,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!V2WOs8deCYdBT2Jo.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -768,7 +768,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!UNs4RBLYiGbfxd1c.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 1050000
|
||||
flags: {}
|
||||
|
@ -768,7 +768,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!jfXs7qaHEWQpIHud.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 1050000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!awZg7bGbTjEGRMiw.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -767,7 +767,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!dMdBctaRRdGJgced.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
flags: {}
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
_id: F5iQNrZSeJsfyTnV
|
||||
|
@ -4,98 +4,6 @@ type: entite
|
||||
sort: 100001
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/entites/squelette.webp
|
||||
items:
|
||||
- _id: QNJH22nturvz1CnL
|
||||
name: Épée à 2 mains
|
||||
type: competence
|
||||
sort: 100000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_epee_2_mains.webp
|
||||
effects: []
|
||||
system:
|
||||
description: >-
|
||||
<p>Ces compétences permettent l’utilisation des sept types d’épées de
|
||||
Rêve de Dragon pour attaquer ou parer.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
descriptionmj: ''
|
||||
niveau: -6
|
||||
default_diffLibre: 0
|
||||
base: -6
|
||||
categorie: melee
|
||||
xp: 0
|
||||
defaut_carac: melee
|
||||
niveau_archetype: 0
|
||||
xp_sort: 0
|
||||
folder: null
|
||||
ownership:
|
||||
default: 0
|
||||
_stats:
|
||||
systemId: foundryvtt-reve-de-dragon
|
||||
systemVersion: 12.0.22
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!Fl95F6S0OrCbqQbY.QNJH22nturvz1CnL'
|
||||
- _id: 9rHJziIIEQlwezim
|
||||
name: Épée à 2 mains
|
||||
type: competence
|
||||
sort: 200000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_epee_2_mains.webp
|
||||
effects: []
|
||||
system:
|
||||
description: >-
|
||||
<p>Ces compétences permettent l’utilisation des sept types d’épées de
|
||||
Rêve de Dragon pour attaquer ou parer.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
descriptionmj: ''
|
||||
niveau: -6
|
||||
default_diffLibre: 0
|
||||
base: -6
|
||||
categorie: melee
|
||||
xp: 0
|
||||
defaut_carac: melee
|
||||
niveau_archetype: 0
|
||||
xp_sort: 0
|
||||
folder: null
|
||||
ownership:
|
||||
default: 0
|
||||
_stats:
|
||||
systemId: foundryvtt-reve-de-dragon
|
||||
systemVersion: 12.0.22
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!Fl95F6S0OrCbqQbY.9rHJziIIEQlwezim'
|
||||
- _id: ltZQyOyxJdWsIkpK
|
||||
name: Equitation
|
||||
type: competence
|
||||
sort: 300000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
effects: []
|
||||
system:
|
||||
description: >-
|
||||
<p>Monter à cheval, et, d’une manière générale, connaissance des
|
||||
chevaux. Peut s’appliquer aux autres montures de Rêve de Dragon :
|
||||
aligates, zyglutes, etc.</p>
|
||||
|
||||
<p> </p>
|
||||
descriptionmj: ''
|
||||
niveau: -8
|
||||
default_diffLibre: 0
|
||||
base: -8
|
||||
categorie: particuliere
|
||||
xp: 0
|
||||
defaut_carac: agilite
|
||||
niveau_archetype: 0
|
||||
xp_sort: 0
|
||||
folder: null
|
||||
ownership:
|
||||
default: 0
|
||||
_stats:
|
||||
systemId: foundryvtt-reve-de-dragon
|
||||
systemVersion: 12.0.22
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!Fl95F6S0OrCbqQbY.ltZQyOyxJdWsIkpK'
|
||||
- _id: iwfr7ekbLFzDCayP
|
||||
name: Esquive
|
||||
type: competencecreature
|
||||
|
@ -4,98 +4,6 @@ type: entite
|
||||
sort: 100001
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/entites/vaseux.webp
|
||||
items:
|
||||
- _id: QNJH22nturvz1CnL
|
||||
name: Épée à 2 mains
|
||||
type: competence
|
||||
sort: 100000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_epee_2_mains.webp
|
||||
effects: []
|
||||
system:
|
||||
description: >-
|
||||
<p>Ces compétences permettent l’utilisation des sept types d’épées de
|
||||
Rêve de Dragon pour attaquer ou parer.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
descriptionmj: ''
|
||||
niveau: -6
|
||||
default_diffLibre: 0
|
||||
base: -6
|
||||
categorie: melee
|
||||
xp: 0
|
||||
defaut_carac: melee
|
||||
niveau_archetype: 0
|
||||
xp_sort: 0
|
||||
folder: null
|
||||
ownership:
|
||||
default: 0
|
||||
_stats:
|
||||
systemId: foundryvtt-reve-de-dragon
|
||||
systemVersion: 12.0.22
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!cmWQYuyzVsz02NMt.QNJH22nturvz1CnL'
|
||||
- _id: 9rHJziIIEQlwezim
|
||||
name: Épée à 2 mains
|
||||
type: competence
|
||||
sort: 200000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_epee_2_mains.webp
|
||||
effects: []
|
||||
system:
|
||||
description: >-
|
||||
<p>Ces compétences permettent l’utilisation des sept types d’épées de
|
||||
Rêve de Dragon pour attaquer ou parer.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
descriptionmj: ''
|
||||
niveau: -6
|
||||
default_diffLibre: 0
|
||||
base: -6
|
||||
categorie: melee
|
||||
xp: 0
|
||||
defaut_carac: melee
|
||||
niveau_archetype: 0
|
||||
xp_sort: 0
|
||||
folder: null
|
||||
ownership:
|
||||
default: 0
|
||||
_stats:
|
||||
systemId: foundryvtt-reve-de-dragon
|
||||
systemVersion: 12.0.22
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!cmWQYuyzVsz02NMt.9rHJziIIEQlwezim'
|
||||
- _id: ltZQyOyxJdWsIkpK
|
||||
name: Equitation
|
||||
type: competence
|
||||
sort: 300000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
effects: []
|
||||
system:
|
||||
description: >-
|
||||
<p>Monter à cheval, et, d’une manière générale, connaissance des
|
||||
chevaux. Peut s’appliquer aux autres montures de Rêve de Dragon :
|
||||
aligates, zyglutes, etc.</p>
|
||||
|
||||
<p> </p>
|
||||
descriptionmj: ''
|
||||
niveau: -8
|
||||
default_diffLibre: 0
|
||||
base: -8
|
||||
categorie: particuliere
|
||||
xp: 0
|
||||
defaut_carac: agilite
|
||||
niveau_archetype: 0
|
||||
xp_sort: 0
|
||||
folder: null
|
||||
ownership:
|
||||
default: 0
|
||||
_stats:
|
||||
systemId: foundryvtt-reve-de-dragon
|
||||
systemVersion: 12.0.22
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!cmWQYuyzVsz02NMt.ltZQyOyxJdWsIkpK'
|
||||
- _id: NDwCYUzJVRIUFc77
|
||||
name: Tentacules
|
||||
type: competencecreature
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!qscItDC5z6Hr2Lrh.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -741,7 +741,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!zACge7QxwyJkC6nD.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2700000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!esJWonwDGLFaMRK3.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!gscYFtwk73WrGvA5.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!dW4RMKpz2WaXbW3h.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!ncXFs8oaZWG68Tzn.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!OKMXH6YpPXUyvqzN.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!EzV1Zxuwi7jwa6bj.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!YQ6vavAVyZecPvGQ.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!b7ThiitioBVXxU7D.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!XnBXyRyE2BUVVT1k.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!kKI9izKrKftYVnvs.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!nzw2q9BHSDN6TIQQ.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!Pf4cLn0kandYzviD.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -768,7 +768,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!xGtM3z3KM6N6lpd5.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
flags: {}
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!z87rV5CJ3inc6ZPc.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!I8Q3Aj4ZUrsU4yBg.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!kB7OSWKvd6m9v0dB.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!GJWEoGXy5kSd4sT8.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!m63oPEPvCrds4akp.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!jtJqqegMrF3fuND3.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!8Jeas59CdpnnYabL.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!7WgNJwO7p5QNraXA.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!N5ybrpVwbpL8aPG0.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
effects: []
|
||||
|
@ -742,7 +742,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!X9d5McdSAT1Ivp39.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
effects: []
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!hvNej1XRliayVZu1.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!4bI9HX4oomMEXrOT.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!AZBxORb7IYgXaOfb.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!OOIjBdFjCKdgJKff.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
@ -743,7 +743,7 @@ items:
|
||||
coreVersion: '12.331'
|
||||
_key: '!actors.items!Jas7Wr22jSllfkin.MLIEbxSJHkY1m3No'
|
||||
- _id: F5iQNrZSeJsfyTnV
|
||||
name: Equitation
|
||||
name: Équitation
|
||||
type: competence
|
||||
sort: 2600000
|
||||
img: systems/foundryvtt-reve-de-dragon/icons/competence_equitation.webp
|
||||
|
Loading…
x
Reference in New Issue
Block a user