1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-12-16 15:19:56 +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 class BackgroundItem : Item
{ {
public string Description { get; set; }
public string Abilities { get; set; } public string Abilities { get; set; }
public string MasteredTools { get; set; } public string MasteredTools { get; set; }
public string MasteredLanguages { get; set; } public string MasteredLanguages { get; set; }

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,5 +1,5 @@
--- ---
!Generic !GenericItem
Id: abilities_hd.md#option--compétences-associées-avec-différentes-caractéristiques Id: abilities_hd.md#option--compétences-associées-avec-différentes-caractéristiques
ParentLink: abilities_hd.md#utiliser-les-caractéristiques ParentLink: abilities_hd.md#utiliser-les-caractéristiques
Name: 'Option : compétences associées avec différentes 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 Id: abilities_strength_hd.md#athlétisme
ParentLink: abilities_strength_hd.md#force ParentLink: abilities_strength_hd.md#force
Name: Athlétisme Name: Athlétisme

View file

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

View file

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

View file

@ -1,5 +1,5 @@
--- ---
!Generic !GenericItem
Id: abilities_strength_hd.md#jets-dattaque-et-de-dégâts Id: abilities_strength_hd.md#jets-dattaque-et-de-dégâts
ParentLink: abilities_strength_hd.md#force ParentLink: abilities_strength_hd.md#force
Name: Jets d'attaque et de dégâts 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 Id: abilities_strength_hd.md#pousser-tirer-soulever
ParentLink: abilities_strength_hd.md#force ParentLink: abilities_strength_hd.md#force
Name: Pousser, tirer, soulever Name: Pousser, tirer, soulever

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -19,7 +19,6 @@ Attributes: {}
# Brigand # 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. 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. **Compétences :** Discrétion, Survie.
**Outils maîtrisés :** Véhicules (terrestres), un type de jeu au choix. **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 Id: backgrounds_hd.md#Équipement
ParentLink: backgrounds_hd.md#historique ParentLink: backgrounds_hd.md#historique
Name: Équipement Name: Équipement

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

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