1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-29 06:26:02 +00:00
This commit is contained in:
Yan Maniez 2019-04-08 02:06:16 +02:00
parent ecbd254a78
commit f71148b75f
1005 changed files with 2686 additions and 2677 deletions

View file

@ -3,6 +3,7 @@
public class BackgroundItem : Item
{
public string Description { get; set; }
public string Abilities { get; set; }
public string MasteredTools { get; set; }
public string MasteredLanguages { get; set; }

View file

@ -10,7 +10,7 @@ using Markdig.Syntax;
namespace AideDeJeuLib
{
public class Generic : Item
public class GenericItem : Item
{
}
}

View file

@ -193,7 +193,7 @@ namespace AideDeJeuLib
[YamlIgnore]
public static Dictionary<string, Type> ClassMapping = new Dictionary<string, Type>()
{
{ "Generic", typeof(Generic) },
{ "GenericItem", typeof(GenericItem) },
{ "MonsterItem", typeof(MonsterItem) },
{ "MonsterItems", typeof(MonsterItems) },
{ "SpellItem", typeof(SpellItem) },

View file

@ -278,11 +278,14 @@ namespace AideDeJeu.ViewModels
bool CheckNewItem(string itemString)
{
var parsedComment = new ParsedComment(itemString);
var name = $"AideDeJeuLib.{parsedComment.Name}, AideDeJeu";
var type = Type.GetType(name);
if (type != null)
if (parsedComment.Name.EndsWith("Item") || parsedComment.Name.EndsWith("Items"))
{
return true;
var name = $"AideDeJeuLib.{parsedComment.Name}, AideDeJeu";
var type = Type.GetType(name);
if (type != null)
{
return true;
}
}
return false;
}
@ -290,24 +293,27 @@ namespace AideDeJeu.ViewModels
Item CreateNewItem(string itemString)
{
var parsedComment = new ParsedComment(itemString);
var name = $"AideDeJeuLib.{parsedComment.Name}, AideDeJeu";
var type = Type.GetType(name);
if (type != null)
if (parsedComment.Name.EndsWith("Item") || parsedComment.Name.EndsWith("Items"))
{
var item = Activator.CreateInstance(type) as Item;
foreach (var attribute in parsedComment.Attributes)
var name = $"AideDeJeuLib.{parsedComment.Name}, AideDeJeu";
var type = Type.GetType(name);
if (type != null)
{
var prop = item.GetType().GetProperty(attribute.Key, BindingFlags.Public | BindingFlags.Instance);
if (prop?.CanWrite == true)
var item = Activator.CreateInstance(type) as Item;
foreach (var attribute in parsedComment.Attributes)
{
prop.SetValue(item, prop.GetValue(item) + attribute.Value, null);
}
else
{
item.Attributes[attribute.Key] = attribute.Value;
var prop = item.GetType().GetProperty(attribute.Key, BindingFlags.Public | BindingFlags.Instance);
if (prop?.CanWrite == true)
{
prop.SetValue(item, prop.GetValue(item) + attribute.Value, null);
}
else
{
item.Attributes[attribute.Key] = attribute.Value;
}
}
return item;
}
return item;
}
return null;
}
@ -322,7 +328,10 @@ namespace AideDeJeu.ViewModels
{
if (tag.StartsWith("<!--/"))
{
return true;
if (tag.EndsWith("Item-->") || tag.EndsWith("Items-->"))
{
return true;
}
}
}
}
@ -495,7 +504,7 @@ namespace AideDeJeu.ViewModels
modelBuilder.Entity<Generic>();
modelBuilder.Entity<GenericItem>();
modelBuilder.Entity<MonsterItem>();
modelBuilder.Entity<MonsterItems>();
modelBuilder.Entity<SpellItem>();

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#avantage-et-désavantage
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Avantage et désavantage

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#bonus-de-maîtrise
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Bonus de maîtrise

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_charisma_hd.md#autres-tests-de-charisme
ParentLink: abilities_charisma_hd.md#charisme
Name: Autres tests de Charisme

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_charisma_hd.md#caractéristique-dincantation
ParentLink: abilities_charisma_hd.md#charisme
Name: Caractéristique d'incantation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_charisma_hd.md#intimidation
ParentLink: abilities_charisma_hd.md#charisme
Name: Intimidation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_charisma_hd.md#persuasion
ParentLink: abilities_charisma_hd.md#charisme
Name: Persuasion

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_charisma_hd.md#représentation
ParentLink: abilities_charisma_hd.md#charisme
Name: Représentation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_charisma_hd.md#supercherie
ParentLink: abilities_charisma_hd.md#charisme
Name: Supercherie

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_charisma_hd.md#tests-de-charisme
ParentLink: abilities_charisma_hd.md#charisme
Name: Tests de Charisme

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#compétences
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Compétences

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_constitution_hd.md#points-de-vie
ParentLink: abilities_constitution_hd.md#constitution
Name: Points de vie

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_constitution_hd.md#tests-de-constitution
ParentLink: abilities_constitution_hd.md#constitution
Name: Tests de Constitution

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#acrobaties
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Acrobaties

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#autres-tests-de-dextérité
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Autres tests de Dextérité

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#classe-darmure
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Classe d'armure

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#discrétion
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Discrétion

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#escamotage
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Escamotage

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#initiative
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Initiative

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#jets-dattaque-et-de-dégâts
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Jets d'attaque et de dégâts

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#perception-passive
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Perception passive

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#que-pouvez-vous-voir-?
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Que pouvez-vous voir ?

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#se-cacher
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Se cacher

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_dexterity_hd.md#tests-de-dextérité
ParentLink: abilities_dexterity_hd.md#dextérité
Name: Tests de Dextérité

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_intelligence_hd.md#arcanes
ParentLink: abilities_intelligence_hd.md#intelligence
Name: Arcanes

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_intelligence_hd.md#autres-tests-dintelligence
ParentLink: abilities_intelligence_hd.md#intelligence
Name: Autres tests d'Intelligence

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_intelligence_hd.md#caractéristique-dincantation
ParentLink: abilities_intelligence_hd.md#intelligence
Name: Caractéristique d'incantation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_intelligence_hd.md#histoire
ParentLink: abilities_intelligence_hd.md#intelligence
Name: Histoire

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_intelligence_hd.md#investigation
ParentLink: abilities_intelligence_hd.md#intelligence
Name: Investigation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_intelligence_hd.md#nature
ParentLink: abilities_intelligence_hd.md#intelligence
Name: Nature

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_intelligence_hd.md#religion
ParentLink: abilities_intelligence_hd.md#intelligence
Name: Religion

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_intelligence_hd.md#tests-dintelligence
ParentLink: abilities_intelligence_hd.md#intelligence
Name: Tests d'Intelligence

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#jets-de-sauvegarde
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Jets de sauvegarde

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#opposition
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Opposition

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#option--compétences-associées-avec-différentes-caractéristiques
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: 'Option : compétences associées avec différentes caractéristiques'

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_strength_hd.md#athlétisme
ParentLink: abilities_strength_hd.md#force
Name: Athlétisme

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_strength_hd.md#autres-tests-de-force-
ParentLink: abilities_strength_hd.md#force
Name: 'Autres tests de Force '

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_strength_hd.md#capacité-de-charge
ParentLink: abilities_strength_hd.md#force
Name: Capacité de charge

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_strength_hd.md#jets-dattaque-et-de-dégâts
ParentLink: abilities_strength_hd.md#force
Name: Jets d'attaque et de dégâts

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_strength_hd.md#pousser-tirer-soulever
ParentLink: abilities_strength_hd.md#force
Name: Pousser, tirer, soulever

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_strength_hd.md#soulever-et-transporter
ParentLink: abilities_strength_hd.md#force
Name: Soulever et transporter

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_strength_hd.md#taille-et-force
ParentLink: abilities_strength_hd.md#force
Name: Taille et Force

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_strength_hd.md#tests-de-force
ParentLink: abilities_strength_hd.md#force
Name: Tests de Force

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#tests-de-caractéristique
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Tests de caractéristique

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#tests-de-groupe
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Tests de groupe

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#tests-passifs
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Tests passifs

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#travailler-ensemble
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Travailler ensemble

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#utiliser-chaque-caractéristique
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Utiliser chaque caractéristique

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_hd.md#valeurs-de-caractéristiques-et-modificateurs
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: Valeurs de caractéristiques et modificateurs

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_wisdom_hd.md#autres-tests-de-sagesse
ParentLink: abilities_wisdom_hd.md#sagesse
Name: Autres tests de Sagesse

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_wisdom_hd.md#caractéristique-dincantation
ParentLink: abilities_wisdom_hd.md#sagesse
Name: Caractéristique d'incantation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_wisdom_hd.md#dressage
ParentLink: abilities_wisdom_hd.md#sagesse
Name: Dressage

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_wisdom_hd.md#médecine
ParentLink: abilities_wisdom_hd.md#sagesse
Name: Médecine

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_wisdom_hd.md#perception
ParentLink: abilities_wisdom_hd.md#sagesse
Name: Perception

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_wisdom_hd.md#perspicacité
ParentLink: abilities_wisdom_hd.md#sagesse
Name: Perspicacité

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_wisdom_hd.md#survie
ParentLink: abilities_wisdom_hd.md#sagesse
Name: Survie

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: abilities_wisdom_hd.md#tests-de-sagesse
ParentLink: abilities_wisdom_hd.md#sagesse
Name: Tests de Sagesse

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#chaotique-bon-cb
ParentLink: alignment_hd.md#alignement
Name: Chaotique Bon (CB)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#chaotique-mauvais-cm
ParentLink: alignment_hd.md#alignement
Name: Chaotique Mauvais (CM)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#chaotique-neutre-cn
ParentLink: alignment_hd.md#alignement
Name: Chaotique Neutre (CN)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#lalignement-dans-le-multivers
ParentLink: alignment_hd.md#alignement
Name: L'alignement dans le multivers

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#loyal-bon-lb
ParentLink: alignment_hd.md#alignement
Name: Loyal Bon (LB)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#loyal-mauvais-lm
ParentLink: alignment_hd.md#alignement
Name: Loyal Mauvais (LM)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#loyal-neutre-ln
ParentLink: alignment_hd.md#alignement
Name: Loyal Neutre (LN)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#neutre-bon-nb
ParentLink: alignment_hd.md#alignement
Name: Neutre Bon (NB)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#neutre-mauvais-nm
ParentLink: alignment_hd.md#alignement
Name: Neutre Mauvais (NM)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: alignment_hd.md#neutre-n
ParentLink: alignment_hd.md#alignement
Name: Neutre (N)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: armor_hd.md#armures-intermédiaires
ParentLink: armor_hd.md#armures
Name: Armures intermédiaires

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: armor_hd.md#armures-légères
ParentLink: armor_hd.md#armures
Name: Armures légères

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: armor_hd.md#armures-lourdes
ParentLink: armor_hd.md#armures
Name: Armures lourdes

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: armor_hd.md#enfiler-et-retirer-une-armure
ParentLink: armor_hd.md#armures
Name: Enfiler et retirer une armure

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: artifacts_hd.md#anneau-de-lune
ParentLink: artifacts_hd.md#artefacts
Name: ANNEAU DE LUNE

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: artifacts_hd.md#bouclier-de-hroljnir
ParentLink: artifacts_hd.md#artefacts
Name: BOUCLIER DE HROLJNIR

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: artifacts_hd.md#lyre-de-la-reine-sylvestre
ParentLink: artifacts_hd.md#artefacts
Name: LYRE DE LA REINE SYLVESTRE

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: artifacts_hd.md#orbe-des-dragons
ParentLink: artifacts_hd.md#artefacts
Name: ORBE DES DRAGONS

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: artifacts_hd.md#perle-des-profondeurs
ParentLink: artifacts_hd.md#artefacts
Name: PERLE DES PROFONDEURS

View file

@ -19,7 +19,6 @@ Attributes: {}
# Brigand
Vous n'êtes ni un solitaire, ni un sauvage, mais vous avez grandi et vécu en marge de la société. Par choix ou par contrainte, vous avez préféré vous tenir loin des villes et des routes les plus fréquentées, préférant les chemins de terre et les pistes sinueuses aux rues étroites des cités. Une large part de votre existence a été consacrée à assurer votre survie et celle de vos proches, qu'il s'agisse de votre famille ou de compagnons de brigandage. Et lorsque la nature n'y suffisait pas, vous n'avez jamais rechigné à vous en prendre aux voyageurs ou aux villageois afin d'assurer votre subsistance.
**Compétences :** Discrétion, Survie.
**Outils maîtrisés :** Véhicules (terrestres), un type de jeu au choix.

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: backgrounds_hd.md#Équipement
ParentLink: backgrounds_hd.md#historique
Name: Équipement

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: backgrounds_hd.md#langues
ParentLink: backgrounds_hd.md#historique
Name: Langues

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: backgrounds_hd.md#maîtrises
ParentLink: backgrounds_hd.md#historique
Name: Maîtrises

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: backgrounds_hd.md#personnaliser-votre-historique
ParentLink: backgrounds_hd.md#historique
Name: Personnaliser votre historique

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: backgrounds_hd.md#suggestions-de-personnalités
ParentLink: backgrounds_hd.md#historique
Name: Suggestions de personnalités

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Barbare
AltName: Barbarian (SRD p8)
Source: (MDR p114)
Id: barbarian_hd.md#barbare
RootId: barbarian_hd.md
ParentLink: classes_hd.md
Name: Barbare
ParentName: Classes
NameLevel: 1
AltName: Barbarian (SRD p8)
Source: (MDR p114)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_berserker_hd.md#frénésie
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
Name: Frénésie

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_berserker_hd.md#rage-aveugle
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
Name: Rage aveugle

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_berserker_hd.md#représailles
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
Name: Représailles

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_howling_hd.md#cri-sauvage
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
Name: Cri sauvage

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_howling_hd.md#hurlement-du-tonnerre
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
Name: Hurlement du tonnerre

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_howling_hd.md#hurlement-terrifiant
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
Name: Hurlement terrifiant

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_howling_hd.md#intimidant
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
Name: Intimidant

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_howling_hd.md#scarification-rituelle
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
Name: Scarification rituelle

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_spirits_hd.md#communion
ParentLink: barbarian_spirits_hd.md#voie-des-esprits
Name: Communion

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_spirits_hd.md#Élévation
ParentLink: barbarian_spirits_hd.md#voie-des-esprits
Name: Élévation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_spirits_hd.md#incarnation
ParentLink: barbarian_spirits_hd.md#voie-des-esprits
Name: Incarnation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_spirits_hd.md#initiation
ParentLink: barbarian_spirits_hd.md#voie-des-esprits
Name: Initiation

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_spirits_hd.md#né-dans-la-nature
ParentLink: barbarian_spirits_hd.md#voie-des-esprits
Name: Né dans la nature

View file

@ -1,5 +1,5 @@
---
!Generic
!GenericItem
Id: barbarian_steel_hd.md#briseur-de-sort
ParentLink: barbarian_steel_hd.md#voie-de-lacier
Name: Briseur de sort

Some files were not shown because too many files have changed in this diff Show more