diff --git a/AideDeJeu/AideDeJeu/Models/Alignment/AlignmentItem.cs b/AideDeJeu/AideDeJeu/Models/Alignment/AlignmentItem.cs new file mode 100644 index 00000000..3a14fed6 --- /dev/null +++ b/AideDeJeu/AideDeJeu/Models/Alignment/AlignmentItem.cs @@ -0,0 +1,6 @@ +namespace AideDeJeuLib +{ + public class AlignmentItem : Item + { + } +} diff --git a/AideDeJeu/AideDeJeu/Models/Items/Item.cs b/AideDeJeu/AideDeJeu/Models/Items/Item.cs index 7e82b75e..2fc0ea6d 100644 --- a/AideDeJeu/AideDeJeu/Models/Items/Item.cs +++ b/AideDeJeu/AideDeJeu/Models/Items/Item.cs @@ -194,6 +194,7 @@ namespace AideDeJeuLib public static Dictionary ClassMapping = new Dictionary() { { "GenericItem", typeof(GenericItem) }, + { "AlignmentItem", typeof(AlignmentItem) }, { "MonsterItem", typeof(MonsterItem) }, { "MonsterItems", typeof(MonsterItems) }, { "SpellItem", typeof(SpellItem) }, diff --git a/AideDeJeu/AideDeJeu/ViewModels/PlayerCharacterEditorViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/PlayerCharacterEditorViewModel.cs index dd7f9889..96fd88b4 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/PlayerCharacterEditorViewModel.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/PlayerCharacterEditorViewModel.cs @@ -1,11 +1,8 @@ using AideDeJeu.Tools; using AideDeJeuLib; using Microsoft.EntityFrameworkCore; -using System; using System.Collections.Generic; -using System.Diagnostics; using System.Linq; -using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Windows.Input; @@ -45,19 +42,19 @@ namespace AideDeJeu.ViewModels #endregion Selected PC #region Alignment - private List _AllAllignments = new List() + /*private List _AllAllignments = new List() { - "Loyal Bon", - "Loyal Neutre", - "Loyal Mauvais", - "Neutre Bon", - "Neutre", - "Neutre Mauvais", - "Chaotique Bon", - "Chaotique Neutre", - "Chaotique Mauvais" + "Loyal Bon (LB)", + "Neutre Bon (NB)", + "Chaotique Bon (CB)", + "Loyal Neutre (LN)", + "Neutre (N)", + "Chaotique Neutre (CN)", + "Loyal Mauvais (LM)", + "Neutre Mauvais (NM)", + "Chaotique Mauvais (CM)" }; - + private List _Alignments = null; public List Alignments { @@ -69,10 +66,53 @@ namespace AideDeJeu.ViewModels { SetProperty(ref _Alignments, value); } + }*/ + + private NotifyTaskCompletion> _Alignments = null; + public NotifyTaskCompletion> Alignments + { + get + { + return _Alignments; + } + private set + { + SetProperty(ref _Alignments, value); + } + } + + private int _AlignmentSelectedIndex = -1; + public int AlignmentSelectedIndex + { + get + { + return _AlignmentSelectedIndex; + } + set + { + SetProperty(ref _AlignmentSelectedIndex, value); + SelectedPlayerCharacter.Alignment = Alignments.Result[_AlignmentSelectedIndex]; + } + } + + public async Task> LoadAlignmentsAsync(string alignment = null) + { + using (var context = await StoreViewModel.GetLibraryContextAsync()) + { + if (alignment == null) + { + return await context.Alignments.OrderBy(r => Tools.Helpers.RemoveDiacritics(r.Name)).ToListAsync().ConfigureAwait(false); + } + else + { + return await context.Alignments.Where(a => a.Name.ToLower().Contains(alignment.ToLower())).OrderBy(r => Tools.Helpers.RemoveDiacritics(r.Name)).ToListAsync().ConfigureAwait(false); + } + } } private void ResetAlignments() { + Alignments = new NotifyTaskCompletion>(Task.Run(() => LoadAlignmentsAsync())); if (!string.IsNullOrEmpty(SelectedPlayerCharacter.PersonalityIdeal)) { var regex = new Regex(".*\\((?.*?)\\)$"); @@ -80,16 +120,17 @@ namespace AideDeJeu.ViewModels var alignment = match.Groups["alignment"].Value; if (!string.IsNullOrEmpty(alignment)) { - Alignments = _AllAllignments.Where(a => a.ToLower().Contains(alignment.ToLower())).ToList(); + Alignments = new NotifyTaskCompletion>(Task.Run(() => LoadAlignmentsAsync(alignment))); + SelectedPlayerCharacter.Alignment = null; } else { - Alignments = _AllAllignments; + Alignments = new NotifyTaskCompletion>(Task.Run(() => LoadAlignmentsAsync())); } } else { - Alignments = _AllAllignments; + Alignments = new NotifyTaskCompletion>(Task.Run(() => LoadAlignmentsAsync())); } } #endregion Alignment @@ -380,24 +421,7 @@ namespace AideDeJeu.ViewModels return new Command>(async (strings) => { SelectedPlayerCharacter.PersonalityIdeal = await ExecuteStringPickerCommandAsync(strings); - if (!string.IsNullOrEmpty(SelectedPlayerCharacter.PersonalityIdeal)) - { - var regex = new Regex(".*\\((?.*?)\\)$"); - var match = regex.Match(SelectedPlayerCharacter.PersonalityIdeal); - var alignment = match.Groups["alignment"].Value; - if (!string.IsNullOrEmpty(alignment)) - { - Alignments = _AllAllignments.Where(a => a.ToLower().Contains(alignment.ToLower())).ToList(); - } - else - { - Alignments = _AllAllignments; - } - } - else - { - Alignments = _AllAllignments; - } + ResetAlignments(); } ); } diff --git a/AideDeJeu/AideDeJeu/ViewModels/PlayerCharacterViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/PlayerCharacterViewModel.cs index 7dfcff48..189b03ec 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/PlayerCharacterViewModel.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/PlayerCharacterViewModel.cs @@ -7,6 +7,18 @@ namespace AideDeJeu.ViewModels { public class PlayerCharacterViewModel : BaseViewModel { + private AlignmentItem _Alignment = null; + public AlignmentItem Alignment + { + get + { + return _Alignment; + } + set + { + SetProperty(ref _Alignment, value); + } + } private RaceItem _Race = null; public RaceItem Race { diff --git a/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs index 318e38c2..f7805ae0 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs @@ -564,6 +564,7 @@ namespace AideDeJeu.ViewModels public DbSet PersonalityIdeals { get; set; } public DbSet PersonalityLinks { get; set; } public DbSet PersonalityDefects { get; set; } + public DbSet Alignments { get; set; } public AideDeJeuContext(string dbPath) { @@ -588,6 +589,7 @@ namespace AideDeJeu.ViewModels + modelBuilder.Entity(); modelBuilder.Entity(); modelBuilder.Entity(); modelBuilder.Entity(); diff --git a/AideDeJeu/AideDeJeu/Views/PlayerCharacterEditorPage.xaml b/AideDeJeu/AideDeJeu/Views/PlayerCharacterEditorPage.xaml index 6a7d6a9b..e83e03f7 100644 --- a/AideDeJeu/AideDeJeu/Views/PlayerCharacterEditorPage.xaml +++ b/AideDeJeu/AideDeJeu/Views/PlayerCharacterEditorPage.xaml @@ -19,11 +19,14 @@ - - - - - + + + + + + + + diff --git a/Data/HD/hd_abilities.md b/Data/HD/hd_abilities.md index 6ba25a38..db0780e5 100644 --- a/Data/HD/hd_abilities.md +++ b/Data/HD/hd_abilities.md @@ -1,13 +1,13 @@ --- !Items -Name: Utiliser les caractéristiques -AltName: Using Ability Scores (SRD p76) -Source: (MDR p258) Id: abilities_hd.md#utiliser-les-caractéristiques RootId: abilities_hd.md ParentLink: index.md +Name: Utiliser les caractéristiques ParentName: Manuel des règles NameLevel: 1 +AltName: Using Ability Scores (SRD p76) +Source: (MDR p258) Attributes: {} --- >  [Manuel des règles](index.md) diff --git a/Data/HD/hd_abilities_charisma.md b/Data/HD/hd_abilities_charisma.md index 22d55040..45d26505 100644 --- a/Data/HD/hd_abilities_charisma.md +++ b/Data/HD/hd_abilities_charisma.md @@ -1,13 +1,13 @@ --- !Items -Name: Charisme -AltName: Charisma (SRD p82) -Source: (MDR p265) Id: abilities_charisma_hd.md#charisme RootId: abilities_charisma_hd.md ParentLink: abilities_hd.md +Name: Charisme ParentName: Caractéristiques NameLevel: 1 +AltName: Charisma (SRD p82) +Source: (MDR p265) Attributes: {} --- >  [Caractéristiques](hd_abilities.md) diff --git a/Data/HD/hd_abilities_dexterity.md b/Data/HD/hd_abilities_dexterity.md index 3f09a6d5..8013eb20 100644 --- a/Data/HD/hd_abilities_dexterity.md +++ b/Data/HD/hd_abilities_dexterity.md @@ -1,13 +1,13 @@ --- !Items -Name: Dextérité -AltName: Dexterity (SRD p80) -Source: (MDR p263) Id: abilities_dexterity_hd.md#dextérité RootId: abilities_dexterity_hd.md ParentLink: abilities_hd.md +Name: Dextérité ParentName: Caractéristiques NameLevel: 1 +AltName: Dexterity (SRD p80) +Source: (MDR p263) Attributes: {} --- >  [Caractéristiques](hd_abilities.md) diff --git a/Data/HD/hd_abilities_strength.md b/Data/HD/hd_abilities_strength.md index c4fe75e1..0274f0cf 100644 --- a/Data/HD/hd_abilities_strength.md +++ b/Data/HD/hd_abilities_strength.md @@ -1,13 +1,13 @@ --- !Items -Name: Force -AltName: Strength (SRD p79) -Source: (MDR p262) Id: abilities_strength_hd.md#force RootId: abilities_strength_hd.md ParentLink: abilities_hd.md +Name: Force ParentName: Caractéristiques NameLevel: 1 +AltName: Strength (SRD p79) +Source: (MDR p262) Attributes: {} --- >  [Caractéristiques](hd_abilities.md) diff --git a/Data/HD/hd_abilities_wisdom.md b/Data/HD/hd_abilities_wisdom.md index f2c4f50b..dec826d1 100644 --- a/Data/HD/hd_abilities_wisdom.md +++ b/Data/HD/hd_abilities_wisdom.md @@ -1,13 +1,13 @@ --- !Items -Name: Sagesse -AltName: Wisdom (SRD p82) -Source: (MDR p265) Id: abilities_wisdom_hd.md#sagesse RootId: abilities_wisdom_hd.md ParentLink: abilities_hd.md +Name: Sagesse ParentName: Caractéristiques NameLevel: 1 +AltName: Wisdom (SRD p82) +Source: (MDR p265) Attributes: {} --- >  [Caractéristiques](hd_abilities.md) diff --git a/Data/HD/hd_adventure.md b/Data/HD/hd_adventure.md index 6f6d128c..ab29438a 100644 --- a/Data/HD/hd_adventure.md +++ b/Data/HD/hd_adventure.md @@ -1,9 +1,9 @@ --- !Items -Name: Partir à l'aventure Id: adventure_hd.md#partir-à-laventure RootId: adventure_hd.md ParentLink: index.md +Name: Partir à l'aventure ParentName: Manuel des règles NameLevel: 1 Attributes: {} diff --git a/Data/HD/hd_alignment.md b/Data/HD/hd_alignment.md index 1f282306..ff222629 100644 --- a/Data/HD/hd_alignment.md +++ b/Data/HD/hd_alignment.md @@ -1,14 +1,20 @@ --- !Items -Name: Alignement -AltName: Alignment (SRD p58) -Source: (MDR p75) Id: alignment_hd.md#alignement RootId: alignment_hd.md ParentLink: personnality_background_hd.md# +Name: Alignement ParentName: Personnalité et Historique NameLevel: 1 +AltName: Alignment (SRD p58) +Source: (MDR p75) Attributes: {} +Description: >+ + Une créature typique de l'univers du jeu a un alignement qui permet de donner une idée générale de son point de vue moral et de ce qui dicte son attitude. L'alignement est une combinaison de deux facteurs : l'un identifie la morale (Bon, Mauvais ou Neutre) et l'autre son positionnement par rapport à la société et à l'ordre (Loyal, Chaotique ou Neutre). Il existe neuf combinaisons de ces deux critères, et donc neuf alignements possibles. + + + Voici ci-dessous un bref résumé du comportement typique que l'on peut attendre d'une créature en fonction de son alignement. Chaque individu peut avoir un comportement très différent des exemples proposés. Il se trouve en effet peu de créatures qui adhèrent et correspondent parfaitement à leur alignement. + --- >  [Personnalité et Historique](personnality_background_hd.md#) diff --git a/Data/HD/hd_alignment_chaotique_bon_cb.md b/Data/HD/hd_alignment_chaotique_bon_cb.md index 5f47b1c0..2935f5c6 100644 --- a/Data/HD/hd_alignment_chaotique_bon_cb.md +++ b/Data/HD/hd_alignment_chaotique_bon_cb.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Chaotique Bon (CB) +!AlignmentItem Id: alignment_hd.md#chaotique-bon-cb ParentLink: alignment_hd.md#alignement +Name: Chaotique Bon (CB) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + Ces créatures agissent en suivant leur conscience, sans tenir compte des attentes des autres, tout en conservant un grand respect pour la vie. On trouve parmi les créatures qui ont l'alignement Chaotique Bon les dragons de cuivre, et la plupart des elfes. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_chaotique_mauvais_cm.md b/Data/HD/hd_alignment_chaotique_mauvais_cm.md index 19978ee2..56d2d129 100644 --- a/Data/HD/hd_alignment_chaotique_mauvais_cm.md +++ b/Data/HD/hd_alignment_chaotique_mauvais_cm.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Chaotique Mauvais (CM) +!AlignmentItem Id: alignment_hd.md#chaotique-mauvais-cm ParentLink: alignment_hd.md#alignement +Name: Chaotique Mauvais (CM) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + Ces créatures n'hésitent pas à être violentes de manière arbitraire. Elles se laissent mener par leur cupidité, leur haine ou leur soif de sang. Les démons, les dragons rouges et les orcs sont d'alignement Chaotique Mauvais. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_chaotique_neutre_cn.md b/Data/HD/hd_alignment_chaotique_neutre_cn.md index 4e010c46..2e401b9f 100644 --- a/Data/HD/hd_alignment_chaotique_neutre_cn.md +++ b/Data/HD/hd_alignment_chaotique_neutre_cn.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Chaotique Neutre (CN) +!AlignmentItem Id: alignment_hd.md#chaotique-neutre-cn ParentLink: alignment_hd.md#alignement +Name: Chaotique Neutre (CN) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + Ces créatures écoutent leurs désirs et font passer leur propre liberté avant tout. On trouve parmi les créatures d'alignement Chaotique Neutre de nombreux barbares et roublards et quelques bardes. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_lalignement_dans_le_multivers.md b/Data/HD/hd_alignment_lalignement_dans_le_multivers.md index 0e7198a8..67fba36b 100644 --- a/Data/HD/hd_alignment_lalignement_dans_le_multivers.md +++ b/Data/HD/hd_alignment_lalignement_dans_le_multivers.md @@ -6,6 +6,18 @@ ParentLink: alignment_hd.md#alignement ParentName: Alignement NameLevel: 3 Attributes: {} +Description: >+ + Pour de nombreuses créatures douées de raison, l'alignement est un choix moral. Les humains, les nains, les elfes et les autres races humanoïdes peuvent choisir la voie qui leur convient le mieux entre le bien et le mal, la loi et le chaos. Les légendes racontent que les dieux d'alignement Bon qui ont créé ces races leur ont donné cette capacité de choisir leur voie, bien conscients que faire le bien n'est qu'une autre forme d'esclavage s'il n'est pas le fruit du libre arbitre. + + + Les divinités maléfiques qui ont créé les autres races ne les ont quant à elles créées que pour les servir. Ces races ont donc une forte tendance naturelle à suivre la nature de leurs dieux. La plupart des orcs partagent ainsi la nature sauvage et violente des dieux orcs et sont naturellement enclins au mal. Et même si un orc choisit de faire le bien, il passera sa vie à lutter contre sa tendance naturelle. (Même les demi-orcs ressentent l'influence des dieux orcs.) + + + L'alignement est une composante essentielle de la nature des célestes et des fiélons. Un diable ne choisit pas d'être Loyal Mauvais ou ne se sent pas naturellement attiré par cet alignement, c'est inscrit dans son essence même. Si, d'une manière ou d'une autre il cessait d'être Loyal Mauvais, il cesserait aussi d'être un diable. + + + La majorité des créatures qui ne sont pas douées de raison n'ont pas d'alignement. Elles sont dites non-alignées. De telles créatures sont incapables de faire un choix moral ou éthique et agissent en fonction de leur nature animale. Les requins sont de sauvages prédateurs, par exemple, mais ils ne sont en rien maléfiques. Ils n'ont pas d'alignement. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_loyal_bon_lb.md b/Data/HD/hd_alignment_loyal_bon_lb.md index d97edc3d..504a2081 100644 --- a/Data/HD/hd_alignment_loyal_bon_lb.md +++ b/Data/HD/hd_alignment_loyal_bon_lb.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Loyal Bon (LB) +!AlignmentItem Id: alignment_hd.md#loyal-bon-lb ParentLink: alignment_hd.md#alignement +Name: Loyal Bon (LB) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + On peut compter sur ces créatures pour faire ce qui est considéré comme bien en société. Les dragons d'or, les licornes, la majorité des paladins et des nains sont d'alignement Loyal Bon. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_loyal_mauvais_lm.md b/Data/HD/hd_alignment_loyal_mauvais_lm.md index 46ff01b1..6791e9a6 100644 --- a/Data/HD/hd_alignment_loyal_mauvais_lm.md +++ b/Data/HD/hd_alignment_loyal_mauvais_lm.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Loyal Mauvais (LM) +!AlignmentItem Id: alignment_hd.md#loyal-mauvais-lm ParentLink: alignment_hd.md#alignement +Name: Loyal Mauvais (LM) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + Voilà l'alignement des créatures qui s'appliquent à méthodiquement prendre ce dont elles ont envie dans le cadre d'un code ou d'une tradition, de leur loyauté ou d'un ordre. Les créatures d'alignement Loyal Mauvais sont les diables, les dragons bleus et les hobgobelins. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_loyal_neutre_ln.md b/Data/HD/hd_alignment_loyal_neutre_ln.md index a86eed41..0eb4fdde 100644 --- a/Data/HD/hd_alignment_loyal_neutre_ln.md +++ b/Data/HD/hd_alignment_loyal_neutre_ln.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Loyal Neutre (LN) +!AlignmentItem Id: alignment_hd.md#loyal-neutre-ln ParentLink: alignment_hd.md#alignement +Name: Loyal Neutre (LN) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + Ces individus sont respectueux de la loi, d'une tradition ou de leur code de conduite personnel. C'est le cas de nombreux moines et magiciens. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_neutre_bon_nb.md b/Data/HD/hd_alignment_neutre_bon_nb.md index 204d3fcc..ec1a5489 100644 --- a/Data/HD/hd_alignment_neutre_bon_nb.md +++ b/Data/HD/hd_alignment_neutre_bon_nb.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Neutre Bon (NB) +!AlignmentItem Id: alignment_hd.md#neutre-bon-nb ParentLink: alignment_hd.md#alignement +Name: Neutre Bon (NB) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + Ces créatures font de leur mieux pour aider les autres en fonction de leurs besoins. De nombreux célestes, quelques géants des nuages et la plupart des gnomes sont d'alignement Neutre Bon. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_neutre_mauvais_nm.md b/Data/HD/hd_alignment_neutre_mauvais_nm.md index 1f1a1ad7..bfcc889a 100644 --- a/Data/HD/hd_alignment_neutre_mauvais_nm.md +++ b/Data/HD/hd_alignment_neutre_mauvais_nm.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Neutre Mauvais (NM) +!AlignmentItem Id: alignment_hd.md#neutre-mauvais-nm ParentLink: alignment_hd.md#alignement +Name: Neutre Mauvais (NM) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + C'est l'alignement des créatures qui font ce qu'elles veulent tant qu'elles peuvent s'en tirer. De nombreux elfes de sang, quelques géants des nuages et les gobelins sont d'alignement Neutre Mauvais. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_alignment_neutre_n.md b/Data/HD/hd_alignment_neutre_n.md index 7d2e9957..484a4f13 100644 --- a/Data/HD/hd_alignment_neutre_n.md +++ b/Data/HD/hd_alignment_neutre_n.md @@ -1,11 +1,14 @@ --- -!GenericItem -Name: Neutre (N) +!AlignmentItem Id: alignment_hd.md#neutre-n ParentLink: alignment_hd.md#alignement +Name: Neutre (N) ParentName: Alignement NameLevel: 4 Attributes: {} +Description: >+ + C'est l'alignement de ceux qui préfèrent se tenir à distance des dilemmes moraux et n'aiment pas prendre parti. Ils font ce qui leur paraît approprié sur le moment. Les hommes-lézards, la plupart des druides et de nombreux humains sont d'alignement Neutre. + --- > [Alignement](hd_alignment.md) diff --git a/Data/HD/hd_armor.md b/Data/HD/hd_armor.md index c7136610..3acf1796 100644 --- a/Data/HD/hd_armor.md +++ b/Data/HD/hd_armor.md @@ -1,13 +1,13 @@ --- !Items -Name: Armures -AltName: Armor (SRD p62) -Source: (MDR p223) Id: armor_hd.md#armures RootId: armor_hd.md ParentLink: equipment_hd.md +Name: Armures ParentName: Équipement NameLevel: 1 +AltName: Armor (SRD p62) +Source: (MDR p223) Attributes: {} --- >  [Équipement](hd_equipment.md) diff --git a/Data/HD/hd_armor_armures_intermediaires.md b/Data/HD/hd_armor_armures_intermediaires.md index 94f0d88f..710d2134 100644 --- a/Data/HD/hd_armor_armures_intermediaires.md +++ b/Data/HD/hd_armor_armures_intermediaires.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Armures intermédiaires -AltName: Medium Armor (SRD p63) -Source: (MDR p224) Id: armor_hd.md#armures-intermédiaires ParentLink: armor_hd.md#armures ParentName: Armures NameLevel: 3 +AltName: Medium Armor (SRD p63) +Source: (MDR p224) Attributes: {} --- > [Armures](hd_armor.md) diff --git a/Data/HD/hd_armor_armures_legeres.md b/Data/HD/hd_armor_armures_legeres.md index 3a0276bd..932f3c88 100644 --- a/Data/HD/hd_armor_armures_legeres.md +++ b/Data/HD/hd_armor_armures_legeres.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Armures légères -AltName: Light Armor (SRD p63) -Source: (MDR p223) Id: armor_hd.md#armures-légères ParentLink: armor_hd.md#armures ParentName: Armures NameLevel: 3 +AltName: Light Armor (SRD p63) +Source: (MDR p223) Attributes: {} --- > [Armures](hd_armor.md) diff --git a/Data/HD/hd_armor_armures_lourdes.md b/Data/HD/hd_armor_armures_lourdes.md index 71246462..9abc981b 100644 --- a/Data/HD/hd_armor_armures_lourdes.md +++ b/Data/HD/hd_armor_armures_lourdes.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Armures lourdes -AltName: Heavy Armor (SRD p63) -Source: (MDR p225) Id: armor_hd.md#armures-lourdes ParentLink: armor_hd.md#armures ParentName: Armures NameLevel: 3 +AltName: Heavy Armor (SRD p63) +Source: (MDR p225) Attributes: {} --- > [Armures](hd_armor.md) diff --git a/Data/HD/hd_armor_enfiler_et_retirer_une_armure.md b/Data/HD/hd_armor_enfiler_et_retirer_une_armure.md index 33a53ede..011bb05d 100644 --- a/Data/HD/hd_armor_enfiler_et_retirer_une_armure.md +++ b/Data/HD/hd_armor_enfiler_et_retirer_une_armure.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Enfiler et retirer une armure -AltName: Getting Into and Out of Armor (SRD p64) -Source: (MDR p225) Id: armor_hd.md#enfiler-et-retirer-une-armure ParentLink: armor_hd.md#armures ParentName: Armures NameLevel: 3 +AltName: Getting Into and Out of Armor (SRD p64) +Source: (MDR p225) Attributes: {} --- > [Armures](hd_armor.md) diff --git a/Data/HD/hd_artifacts.md b/Data/HD/hd_artifacts.md index 91363309..707a4ce0 100644 --- a/Data/HD/hd_artifacts.md +++ b/Data/HD/hd_artifacts.md @@ -1,13 +1,13 @@ --- !Items -Name: Artefacts -AltName: Artifacts (SRD p252) -Source: (CDC p191) Id: artifacts_hd.md#artefacts RootId: artifacts_hd.md ParentLink: index.md +Name: Artefacts ParentName: Cadre de campagne NameLevel: 1 +AltName: Artifacts (SRD p252) +Source: (CDC p191) Attributes: {} --- >  [Cadre de campagne](index.md) diff --git a/Data/HD/hd_artifacts_anneau_de_lune.md b/Data/HD/hd_artifacts_anneau_de_lune.md index a9769f02..433ae9f7 100644 --- a/Data/HD/hd_artifacts_anneau_de_lune.md +++ b/Data/HD/hd_artifacts_anneau_de_lune.md @@ -1,11 +1,11 @@ --- !GenericItem Name: ANNEAU DE LUNE -Source: (CDC p191) Id: artifacts_hd.md#anneau-de-lune ParentLink: artifacts_hd.md#artefacts ParentName: Artefacts NameLevel: 2 +Source: (CDC p191) Attributes: {} --- > [Artefacts](hd_artifacts.md) diff --git a/Data/HD/hd_artifacts_bouclier_de_hroljnir.md b/Data/HD/hd_artifacts_bouclier_de_hroljnir.md index 3a798ba1..64011d24 100644 --- a/Data/HD/hd_artifacts_bouclier_de_hroljnir.md +++ b/Data/HD/hd_artifacts_bouclier_de_hroljnir.md @@ -1,11 +1,11 @@ --- !GenericItem Name: BOUCLIER DE HROLJNIR -Source: (CDC p191) Id: artifacts_hd.md#bouclier-de-hroljnir ParentLink: artifacts_hd.md#artefacts ParentName: Artefacts NameLevel: 2 +Source: (CDC p191) Attributes: {} --- > [Artefacts](hd_artifacts.md) diff --git a/Data/HD/hd_artifacts_lyre_de_la_reine_sylvestre.md b/Data/HD/hd_artifacts_lyre_de_la_reine_sylvestre.md index 39dce866..bc8058a3 100644 --- a/Data/HD/hd_artifacts_lyre_de_la_reine_sylvestre.md +++ b/Data/HD/hd_artifacts_lyre_de_la_reine_sylvestre.md @@ -1,11 +1,11 @@ --- !GenericItem Name: LYRE DE LA REINE SYLVESTRE -Source: (CDC p192) Id: artifacts_hd.md#lyre-de-la-reine-sylvestre ParentLink: artifacts_hd.md#artefacts ParentName: Artefacts NameLevel: 2 +Source: (CDC p192) Attributes: {} --- > [Artefacts](hd_artifacts.md) diff --git a/Data/HD/hd_artifacts_orbe_des_dragons.md b/Data/HD/hd_artifacts_orbe_des_dragons.md index c1d1fe3f..d13e4485 100644 --- a/Data/HD/hd_artifacts_orbe_des_dragons.md +++ b/Data/HD/hd_artifacts_orbe_des_dragons.md @@ -1,12 +1,12 @@ --- !GenericItem Name: ORBE DES DRAGONS -AltName: Orb of Dragonkind (SRD p252) -Source: (CDC p192) Id: artifacts_hd.md#orbe-des-dragons ParentLink: artifacts_hd.md#artefacts ParentName: Artefacts NameLevel: 2 +AltName: Orb of Dragonkind (SRD p252) +Source: (CDC p192) Attributes: {} --- > [Artefacts](hd_artifacts.md) diff --git a/Data/HD/hd_artifacts_perle_des_profondeurs.md b/Data/HD/hd_artifacts_perle_des_profondeurs.md index 6f78831d..41e70b9f 100644 --- a/Data/HD/hd_artifacts_perle_des_profondeurs.md +++ b/Data/HD/hd_artifacts_perle_des_profondeurs.md @@ -1,11 +1,11 @@ --- !GenericItem Name: PERLE DES PROFONDEURS -Source: (CDC p193) Id: artifacts_hd.md#perle-des-profondeurs ParentLink: artifacts_hd.md#artefacts ParentName: Artefacts NameLevel: 2 +Source: (CDC p193) Attributes: {} --- > [Artefacts](hd_artifacts.md) diff --git a/Data/HD/hd_background_brigand_personnalites_suggerees.md b/Data/HD/hd_background_brigand_personnalites_suggerees.md index 3927ceb7..d8ddc362 100644 --- a/Data/HD/hd_background_brigand_personnalites_suggerees.md +++ b/Data/HD/hd_background_brigand_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_brigand_hd.md#personnalités-suggérées ParentLink: background_brigand_hd.md#brigand +Name: Personnalités suggérées ParentName: Brigand NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_crapule_personnalites_suggerees.md b/Data/HD/hd_background_crapule_personnalites_suggerees.md index 7381358b..8ac05ab9 100644 --- a/Data/HD/hd_background_crapule_personnalites_suggerees.md +++ b/Data/HD/hd_background_crapule_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_crapule_hd.md#personnalités-suggérées ParentLink: background_crapule_hd.md#crapule +Name: Personnalités suggérées ParentName: Crapule NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_devot_personnalites_suggerees.md b/Data/HD/hd_background_devot_personnalites_suggerees.md index e50dae04..fc59ddd2 100644 --- a/Data/HD/hd_background_devot_personnalites_suggerees.md +++ b/Data/HD/hd_background_devot_personnalites_suggerees.md @@ -1,12 +1,12 @@ --- !Items -Name: Personnalités suggérées -AltName: 'Feature: Suggested Characteristics (SRD p61)' -Source: (MDR p82) Id: background_devot_hd.md#personnalités-suggérées ParentLink: background_devot_hd.md#dévot +Name: Personnalités suggérées ParentName: Dévot NameLevel: 4 +AltName: 'Feature: Suggested Characteristics (SRD p61)' +Source: (MDR p82) Attributes: {} Description: >+ La personnalité des acolytes est façonnée par leurs expériences dans les temples ou les communautés religieuses. Leurs études de l'histoire et des fondements de leur religion, ainsi que leurs rapports aux temples, autels ou clergés ont une influence sur leurs manières et leurs idéaux. diff --git a/Data/HD/hd_background_erudit_personnalites_suggerees.md b/Data/HD/hd_background_erudit_personnalites_suggerees.md index 8efa93bf..abffef73 100644 --- a/Data/HD/hd_background_erudit_personnalites_suggerees.md +++ b/Data/HD/hd_background_erudit_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_erudit_hd.md#personnalités-suggérées ParentLink: background_erudit_hd.md#Érudit +Name: Personnalités suggérées ParentName: Érudit NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_explorateur_personnalites_suggerees.md b/Data/HD/hd_background_explorateur_personnalites_suggerees.md index 565ef3da..55f4c53c 100644 --- a/Data/HD/hd_background_explorateur_personnalites_suggerees.md +++ b/Data/HD/hd_background_explorateur_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_explorateur_hd.md#personnalités-suggérées ParentLink: background_explorateur_hd.md#explorateur +Name: Personnalités suggérées ParentName: Explorateur NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_hommedeloi_personnalites_suggerees.md b/Data/HD/hd_background_hommedeloi_personnalites_suggerees.md index 44a72a19..0e66776f 100644 --- a/Data/HD/hd_background_hommedeloi_personnalites_suggerees.md +++ b/Data/HD/hd_background_hommedeloi_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_hommedeloi_hd.md#personnalités-suggérées ParentLink: background_hommedeloi_hd.md#homme-de-loi +Name: Personnalités suggérées ParentName: Homme de loi NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_itinerant_personnalites_suggerees.md b/Data/HD/hd_background_itinerant_personnalites_suggerees.md index b60876c0..2fc3063c 100644 --- a/Data/HD/hd_background_itinerant_personnalites_suggerees.md +++ b/Data/HD/hd_background_itinerant_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_itinerant_hd.md#personnalités-suggérées ParentLink: background_itinerant_hd.md#itinérant +Name: Personnalités suggérées ParentName: Itinérant NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_manouvrier_personnalites_suggerees.md b/Data/HD/hd_background_manouvrier_personnalites_suggerees.md index 77da90dd..e73dbd57 100644 --- a/Data/HD/hd_background_manouvrier_personnalites_suggerees.md +++ b/Data/HD/hd_background_manouvrier_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_manouvrier_hd.md#personnalités-suggérées ParentLink: background_manouvrier_hd.md#manouvrier +Name: Personnalités suggérées ParentName: Manouvrier NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_membredeguilde_personnalites_suggerees.md b/Data/HD/hd_background_membredeguilde_personnalites_suggerees.md index 0cc74938..3b16cba6 100644 --- a/Data/HD/hd_background_membredeguilde_personnalites_suggerees.md +++ b/Data/HD/hd_background_membredeguilde_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_membredeguilde_hd.md#personnalités-suggérées ParentLink: background_membredeguilde_hd.md#membre-de-guilde +Name: Personnalités suggérées ParentName: Membre de guilde NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_militaire_personnalites_suggerees.md b/Data/HD/hd_background_militaire_personnalites_suggerees.md index ed5c6113..5d14b913 100644 --- a/Data/HD/hd_background_militaire_personnalites_suggerees.md +++ b/Data/HD/hd_background_militaire_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_militaire_hd.md#personnalités-suggérées ParentLink: background_militaire_hd.md#militaire +Name: Personnalités suggérées ParentName: Militaire NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_misereux_personnalites_suggerees.md b/Data/HD/hd_background_misereux_personnalites_suggerees.md index 819a31a8..185c40b3 100644 --- a/Data/HD/hd_background_misereux_personnalites_suggerees.md +++ b/Data/HD/hd_background_misereux_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_misereux_hd.md#personnalités-suggérées ParentLink: background_misereux_hd.md#miséreux +Name: Personnalités suggérées ParentName: Miséreux NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_primitif_personnalites_suggerees.md b/Data/HD/hd_background_primitif_personnalites_suggerees.md index 8ac13ce3..ca6be5ee 100644 --- a/Data/HD/hd_background_primitif_personnalites_suggerees.md +++ b/Data/HD/hd_background_primitif_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_primitif_hd.md#personnalités-suggérées ParentLink: background_primitif_hd.md#primitif +Name: Personnalités suggérées ParentName: Primitif NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_sangbleu_personnalites_suggerees.md b/Data/HD/hd_background_sangbleu_personnalites_suggerees.md index b1987672..17b9b444 100644 --- a/Data/HD/hd_background_sangbleu_personnalites_suggerees.md +++ b/Data/HD/hd_background_sangbleu_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_sangbleu_hd.md#personnalités-suggérées ParentLink: background_sangbleu_hd.md#sang-bleu +Name: Personnalités suggérées ParentName: Sang bleu NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_serviteur_personnalites_suggerees.md b/Data/HD/hd_background_serviteur_personnalites_suggerees.md index c27b564f..11826088 100644 --- a/Data/HD/hd_background_serviteur_personnalites_suggerees.md +++ b/Data/HD/hd_background_serviteur_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_serviteur_hd.md#personnalités-suggérées ParentLink: background_serviteur_hd.md#serviteur +Name: Personnalités suggérées ParentName: Serviteur NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_solitaire_personnalites_suggerees.md b/Data/HD/hd_background_solitaire_personnalites_suggerees.md index 14775318..7e7e75d4 100644 --- a/Data/HD/hd_background_solitaire_personnalites_suggerees.md +++ b/Data/HD/hd_background_solitaire_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_solitaire_hd.md#personnalités-suggérées ParentLink: background_solitaire_hd.md#solitaire +Name: Personnalités suggérées ParentName: Solitaire NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_background_villageois_personnalites_suggerees.md b/Data/HD/hd_background_villageois_personnalites_suggerees.md index 94d96083..28bdab8a 100644 --- a/Data/HD/hd_background_villageois_personnalites_suggerees.md +++ b/Data/HD/hd_background_villageois_personnalites_suggerees.md @@ -1,8 +1,8 @@ --- !Items -Name: Personnalités suggérées Id: background_villageois_hd.md#personnalités-suggérées ParentLink: background_villageois_hd.md#villageois +Name: Personnalités suggérées ParentName: Villageois NameLevel: 4 Attributes: {} diff --git a/Data/HD/hd_backgrounds.md b/Data/HD/hd_backgrounds.md index e0e41f6d..9e6593e9 100644 --- a/Data/HD/hd_backgrounds.md +++ b/Data/HD/hd_backgrounds.md @@ -1,13 +1,13 @@ --- !Items -Name: Historique -AltName: Backgrounds (SRD p60) -Source: (MDR p77) Id: backgrounds_hd.md#historique RootId: backgrounds_hd.md ParentLink: personnality_background_hd.md# +Name: Historique ParentName: Personnalité et Historique NameLevel: 2 +AltName: Backgrounds (SRD p60) +Source: (MDR p77) Attributes: {} --- >  [Personnalité et Historique](personnality_background_hd.md#) diff --git a/Data/HD/hd_backgrounds_equipement.md b/Data/HD/hd_backgrounds_equipement.md index 8c55b18b..74c88cf7 100644 --- a/Data/HD/hd_backgrounds_equipement.md +++ b/Data/HD/hd_backgrounds_equipement.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Équipement -AltName: Equipment (SRD p60) -Source: (MDR p77) Id: backgrounds_hd.md#Équipement ParentLink: backgrounds_hd.md#historique ParentName: Historique NameLevel: 3 +AltName: Equipment (SRD p60) +Source: (MDR p77) Attributes: {} --- > [Historique](hd_backgrounds.md) diff --git a/Data/HD/hd_backgrounds_langues.md b/Data/HD/hd_backgrounds_langues.md index cfc9a3c3..8a807bfc 100644 --- a/Data/HD/hd_backgrounds_langues.md +++ b/Data/HD/hd_backgrounds_langues.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Langues -AltName: Languages (SRD p60) -Source: (MDR p77) Id: backgrounds_hd.md#langues ParentLink: backgrounds_hd.md#historique ParentName: Historique NameLevel: 3 +AltName: Languages (SRD p60) +Source: (MDR p77) Attributes: {} --- > [Historique](hd_backgrounds.md) diff --git a/Data/HD/hd_backgrounds_maitrises.md b/Data/HD/hd_backgrounds_maitrises.md index fbdf03bc..b07a8ea1 100644 --- a/Data/HD/hd_backgrounds_maitrises.md +++ b/Data/HD/hd_backgrounds_maitrises.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Maîtrises -AltName: Proficiencies (SRD p60) -Source: (MDR p77) Id: backgrounds_hd.md#maîtrises ParentLink: backgrounds_hd.md#historique ParentName: Historique NameLevel: 3 +AltName: Proficiencies (SRD p60) +Source: (MDR p77) Attributes: {} --- > [Historique](hd_backgrounds.md) diff --git a/Data/HD/hd_backgrounds_personnaliser_votre_historique.md b/Data/HD/hd_backgrounds_personnaliser_votre_historique.md index bd20e9be..e4beb988 100644 --- a/Data/HD/hd_backgrounds_personnaliser_votre_historique.md +++ b/Data/HD/hd_backgrounds_personnaliser_votre_historique.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Personnaliser votre historique -AltName: Customizing a Background (SRD p60) -Source: (MDR p78) Id: backgrounds_hd.md#personnaliser-votre-historique ParentLink: backgrounds_hd.md#historique ParentName: Historique NameLevel: 3 +AltName: Customizing a Background (SRD p60) +Source: (MDR p78) Attributes: {} --- > [Historique](hd_backgrounds.md) diff --git a/Data/HD/hd_backgrounds_suggestions_de_personnalites.md b/Data/HD/hd_backgrounds_suggestions_de_personnalites.md index 693c5fe4..645421f4 100644 --- a/Data/HD/hd_backgrounds_suggestions_de_personnalites.md +++ b/Data/HD/hd_backgrounds_suggestions_de_personnalites.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Suggestions de personnalités -AltName: Suggested Characteristics (SRD p60) -Source: (MDR p77) Id: backgrounds_hd.md#suggestions-de-personnalités ParentLink: backgrounds_hd.md#historique ParentName: Historique NameLevel: 3 +AltName: Suggested Characteristics (SRD p60) +Source: (MDR p77) Attributes: {} --- > [Historique](hd_backgrounds.md) diff --git a/Data/HD/hd_barbarian_points_de_vie.md b/Data/HD/hd_barbarian_points_de_vie.md index d0db5986..db4f48d9 100644 --- a/Data/HD/hd_barbarian_points_de_vie.md +++ b/Data/HD/hd_barbarian_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d12 par niveau de barbare HitPointsAt1stLevel: 12 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d12 (ou 7) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de barbare après le premier niveau Id: barbarian_hd.md#points-de-vie ParentLink: barbarian_hd.md#barbare -Name: Points de vie ParentName: Barbare NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_bard_points_de_vie.md b/Data/HD/hd_bard_points_de_vie.md index f51d1537..04261a6b 100644 --- a/Data/HD/hd_bard_points_de_vie.md +++ b/Data/HD/hd_bard_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d8 par niveau de barde HitPointsAt1stLevel: 8 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d8 (ou 5) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de barde après le niveau 1 Id: bard_hd.md#points-de-vie ParentLink: bard_hd.md#barde -Name: Points de vie ParentName: Barde NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_beyond1stlevel.md b/Data/HD/hd_beyond1stlevel.md index 7237872f..ff67768d 100644 --- a/Data/HD/hd_beyond1stlevel.md +++ b/Data/HD/hd_beyond1stlevel.md @@ -1,13 +1,13 @@ --- !Items -Name: Au-delà du niveau 1 -AltName: Beyond 1st Level (SRD p56) -Source: (MDR p32) Id: beyond1stlevel_hd.md#au-delà-du-niveau-1 RootId: beyond1stlevel_hd.md ParentLink: index.md +Name: Au-delà du niveau 1 ParentName: Manuel des joueurs NameLevel: 1 +AltName: Beyond 1st Level (SRD p56) +Source: (MDR p32) Attributes: {} --- >  [Manuel des joueurs](index.md) diff --git a/Data/HD/hd_classes.md b/Data/HD/hd_classes.md index fafadaf1..3fb6619b 100644 --- a/Data/HD/hd_classes.md +++ b/Data/HD/hd_classes.md @@ -1,9 +1,9 @@ --- !Items -Name: Classes Id: classes_hd.md#classes RootId: classes_hd.md ParentLink: index.md +Name: Classes ParentName: Manuel des règles NameLevel: 1 Attributes: {} diff --git a/Data/HD/hd_cleric_points_de_vie.md b/Data/HD/hd_cleric_points_de_vie.md index 88002933..833b148b 100644 --- a/Data/HD/hd_cleric_points_de_vie.md +++ b/Data/HD/hd_cleric_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d8 par niveau de clerc HitPointsAt1stLevel: 8 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d8 (ou 5) + votre modificateur de [Constitution](hd_abilities_constitution.md) après le niveau 1 Id: cleric_hd.md#points-de-vie ParentLink: cleric_hd.md#clerc -Name: Points de vie ParentName: Clerc NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_combat.md b/Data/HD/hd_combat.md index ab09475a..ba555dc7 100644 --- a/Data/HD/hd_combat.md +++ b/Data/HD/hd_combat.md @@ -1,13 +1,13 @@ --- !Items -Name: Combattre -AltName: The Order of Combat (SRD p90) -Source: (MDR p283) Id: combat_hd.md#combattre RootId: combat_hd.md ParentLink: index.md +Name: Combattre ParentName: Manuel des règles NameLevel: 1 +AltName: The Order of Combat (SRD p90) +Source: (MDR p283) Attributes: {} --- >  [Manuel des règles](index.md) diff --git a/Data/HD/hd_combat_abri.md b/Data/HD/hd_combat_abri.md index 6cb434b7..90ac8da3 100644 --- a/Data/HD/hd_combat_abri.md +++ b/Data/HD/hd_combat_abri.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Abri -AltName: Cover (SRD p96) -Source: (MDR p293) Id: combat_hd.md#abri ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 2 +AltName: Cover (SRD p96) +Source: (MDR p293) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_action_bonus.md b/Data/HD/hd_combat_action_bonus.md index 1203559b..9e256911 100644 --- a/Data/HD/hd_combat_action_bonus.md +++ b/Data/HD/hd_combat_action_bonus.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Action bonus -AltName: Bonus Actions (SRD p90) -Source: (MDR p285) Id: combat_hd.md#action-bonus ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Bonus Actions (SRD p90) +Source: (MDR p285) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_actions_en_combat.md b/Data/HD/hd_combat_actions_en_combat.md index 08d34cd2..2483feef 100644 --- a/Data/HD/hd_combat_actions_en_combat.md +++ b/Data/HD/hd_combat_actions_en_combat.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Actions en combat -AltName: Actions in Combat (SRD p93) -Source: (MDR p288) Id: combat_hd.md#actions-en-combat ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 2 +AltName: Actions in Combat (SRD p93) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_aider.md b/Data/HD/hd_combat_aider.md index 31055533..c2fa2ea2 100644 --- a/Data/HD/hd_combat_aider.md +++ b/Data/HD/hd_combat_aider.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Aider -AltName: Help (SRD p93) -Source: (MDR p288) Id: combat_hd.md#aider ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Help (SRD p93) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_assommer_une_creature.md b/Data/HD/hd_combat_assommer_une_creature.md index 052c609c..5f9f9230 100644 --- a/Data/HD/hd_combat_assommer_une_creature.md +++ b/Data/HD/hd_combat_assommer_une_creature.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Assommer une créature -AltName: Knocking a Creature Out (SRD p98) -Source: (MDR p294) Id: combat_hd.md#assommer-une-créature ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Knocking a Creature Out (SRD p98) +Source: (MDR p294) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_attaquants_et_cibles_invisibles.md b/Data/HD/hd_combat_attaquants_et_cibles_invisibles.md index 201040c7..9d296bee 100644 --- a/Data/HD/hd_combat_attaquants_et_cibles_invisibles.md +++ b/Data/HD/hd_combat_attaquants_et_cibles_invisibles.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Attaquants et cibles invisibles -AltName: Unseen Attackers and Targets (SRD p94) -Source: (MDR p291) Id: combat_hd.md#attaquants-et-cibles-invisibles ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Unseen Attackers and Targets (SRD p94) +Source: (MDR p291) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_attaque_a_distance.md b/Data/HD/hd_combat_attaque_a_distance.md index 06f82f72..97c7ded0 100644 --- a/Data/HD/hd_combat_attaque_a_distance.md +++ b/Data/HD/hd_combat_attaque_a_distance.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Attaque à distance -AltName: Ranged Attacks (SRD p95) -Source: (MDR p291) Id: combat_hd.md#attaque-à-distance ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Ranged Attacks (SRD p95) +Source: (MDR p291) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_attaque_a_distance_dans_un_combat_au_corps_a_corps.md b/Data/HD/hd_combat_attaque_a_distance_dans_un_combat_au_corps_a_corps.md index bc6da037..0ae2a4bd 100644 --- a/Data/HD/hd_combat_attaque_a_distance_dans_un_combat_au_corps_a_corps.md +++ b/Data/HD/hd_combat_attaque_a_distance_dans_un_combat_au_corps_a_corps.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Attaque à distance dans un combat au corps-à-corps -AltName: Ranged Attacks in Close Combat (SRD p95) -Source: (MDR p291) Id: combat_hd.md#attaque-à-distance-dans-un-combat-au-corps-à-corps ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Ranged Attacks in Close Combat (SRD p95) +Source: (MDR p291) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_attaque_de_corps_a_corps.md b/Data/HD/hd_combat_attaque_de_corps_a_corps.md index 37df2427..af170fc6 100644 --- a/Data/HD/hd_combat_attaque_de_corps_a_corps.md +++ b/Data/HD/hd_combat_attaque_de_corps_a_corps.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Attaque de corps-à-corps -AltName: Melee Attacks (SRD p95) -Source: (MDR p291) Id: combat_hd.md#attaque-de-corps-à-corps ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Melee Attacks (SRD p95) +Source: (MDR p291) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_attaque_dopportunite.md b/Data/HD/hd_combat_attaque_dopportunite.md index 1b37f370..e4078ef2 100644 --- a/Data/HD/hd_combat_attaque_dopportunite.md +++ b/Data/HD/hd_combat_attaque_dopportunite.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Attaque d'opportunité -AltName: Opportunity Attacks (SRD p95) -Source: (MDR p292) Id: combat_hd.md#attaque-dopportunité ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Opportunity Attacks (SRD p95) +Source: (MDR p292) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_attaquer.md b/Data/HD/hd_combat_attaquer.md index 95ca9628..f8853b5b 100644 --- a/Data/HD/hd_combat_attaquer.md +++ b/Data/HD/hd_combat_attaquer.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Attaquer -AltName: Attack (SRD p93) -Source: (MDR p288) Id: combat_hd.md#attaquer ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Attack (SRD p93) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_autre_chose_.md b/Data/HD/hd_combat_autre_chose_.md index d97972dd..772be305 100644 --- a/Data/HD/hd_combat_autre_chose_.md +++ b/Data/HD/hd_combat_autre_chose_.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Autre chose ? -Source: (MDR p290) Id: combat_hd.md#autre-chose-? ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +Source: (MDR p290) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_autres_activites_pendant_votre_tour.md b/Data/HD/hd_combat_autres_activites_pendant_votre_tour.md index 3ccb8ae8..0d169611 100644 --- a/Data/HD/hd_combat_autres_activites_pendant_votre_tour.md +++ b/Data/HD/hd_combat_autres_activites_pendant_votre_tour.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Autres activités pendant votre tour -AltName: Other Activity on Your Turn (SRD p91) -Source: (MDR p285) Id: combat_hd.md#autres-activités-pendant-votre-tour ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Other Activity on Your Turn (SRD p91) +Source: (MDR p285) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_bousculer_une_creature.md b/Data/HD/hd_combat_bousculer_une_creature.md index 3a3312e6..4ff07ed4 100644 --- a/Data/HD/hd_combat_bousculer_une_creature.md +++ b/Data/HD/hd_combat_bousculer_une_creature.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Bousculer une créature -AltName: Shoving a Creature (SRD p96) -Source: (MDR p292) Id: combat_hd.md#bousculer-une-créature ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Shoving a Creature (SRD p96) +Source: (MDR p292) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_chercher.md b/Data/HD/hd_combat_chercher.md index e876b5f4..735a21f5 100644 --- a/Data/HD/hd_combat_chercher.md +++ b/Data/HD/hd_combat_chercher.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Chercher -AltName: Search (SRD p94) -Source: (MDR p288) Id: combat_hd.md#chercher ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Search (SRD p94) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_combat_a_deux_armes.md b/Data/HD/hd_combat_combat_a_deux_armes.md index 006f686e..38e51528 100644 --- a/Data/HD/hd_combat_combat_a_deux_armes.md +++ b/Data/HD/hd_combat_combat_a_deux_armes.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Combat à deux armes -AltName: Two-Weapon Fighting (SRD p95) -Source: (MDR p292) Id: combat_hd.md#combat-à-deux-armes ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Two-Weapon Fighting (SRD p95) +Source: (MDR p292) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_combat_monte.md b/Data/HD/hd_combat_combat_monte.md index 3ba8d0f8..fd23d6f7 100644 --- a/Data/HD/hd_combat_combat_monte.md +++ b/Data/HD/hd_combat_combat_monte.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Combat monté -AltName: Mounted Combat (SRD p99) -Source: (MDR p295) Id: combat_hd.md#combat-monté ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 2 +AltName: Mounted Combat (SRD p99) +Source: (MDR p295) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_combat_sous_marin.md b/Data/HD/hd_combat_combat_sous_marin.md index ced63e67..8d42a862 100644 --- a/Data/HD/hd_combat_combat_sous_marin.md +++ b/Data/HD/hd_combat_combat_sous_marin.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Combat sous-marin -AltName: Underwater Combat (SRD p99) -Source: (MDR p295) Id: combat_hd.md#combat-sous-marin ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 2 +AltName: Underwater Combat (SRD p99) +Source: (MDR p295) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_controler_sa_monture.md b/Data/HD/hd_combat_controler_sa_monture.md index 9b4c0ecd..287d8b47 100644 --- a/Data/HD/hd_combat_controler_sa_monture.md +++ b/Data/HD/hd_combat_controler_sa_monture.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Contrôler sa monture -AltName: Controlling a Mount (SRD p99) -Source: (MDR p295) Id: combat_hd.md#contrôler-sa-monture ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Controlling a Mount (SRD p99) +Source: (MDR p295) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_coups_critiques.md b/Data/HD/hd_combat_coups_critiques.md index ccc6ef55..6e89e725 100644 --- a/Data/HD/hd_combat_coups_critiques.md +++ b/Data/HD/hd_combat_coups_critiques.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Coups critiques -AltName: Critical Hits (SRD p96) -Source: (MDR p293) Id: combat_hd.md#coups-critiques ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Critical Hits (SRD p96) +Source: (MDR p293) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_degats.md b/Data/HD/hd_combat_degats.md index 3dab1301..379f8066 100644 --- a/Data/HD/hd_combat_degats.md +++ b/Data/HD/hd_combat_degats.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Dégâts -AltName: Hit Points (SRD p96) -Source: (MDR p293) Id: combat_hd.md#dégâts ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 2 +AltName: Hit Points (SRD p96) +Source: (MDR p293) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_deplacement_en_vol.md b/Data/HD/hd_combat_deplacement_en_vol.md index 32eb915d..0e49e518 100644 --- a/Data/HD/hd_combat_deplacement_en_vol.md +++ b/Data/HD/hd_combat_deplacement_en_vol.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Déplacement en vol -AltName: Flying Movement (SRD p92) -Source: (MDR p287) Id: combat_hd.md#déplacement-en-vol ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Flying Movement (SRD p92) +Source: (MDR p287) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_deplacement_et_position.md b/Data/HD/hd_combat_deplacement_et_position.md index 57632f60..cd69c8a8 100644 --- a/Data/HD/hd_combat_deplacement_et_position.md +++ b/Data/HD/hd_combat_deplacement_et_position.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Déplacement et position -AltName: Movement and Position (SRD p91) -Source: (MDR p286) Id: combat_hd.md#déplacement-et-position ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 2 +AltName: Movement and Position (SRD p91) +Source: (MDR p286) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_emplacement.md b/Data/HD/hd_combat_emplacement.md index cf5c2f4e..6e15a5cd 100644 --- a/Data/HD/hd_combat_emplacement.md +++ b/Data/HD/hd_combat_emplacement.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Emplacement -AltName: Space (SRD p92) -Source: (MDR p287) Id: combat_hd.md#emplacement ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Space (SRD p92) +Source: (MDR p287) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_empoignade.md b/Data/HD/hd_combat_empoignade.md index e26fb083..18244bf9 100644 --- a/Data/HD/hd_combat_empoignade.md +++ b/Data/HD/hd_combat_empoignade.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Empoignade -AltName: Grappling (SRD p95) -Source: (MDR p292) Id: combat_hd.md#empoignade ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Grappling (SRD p95) +Source: (MDR p292) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_esquiver.md b/Data/HD/hd_combat_esquiver.md index 7d0b096d..b255e0cb 100644 --- a/Data/HD/hd_combat_esquiver.md +++ b/Data/HD/hd_combat_esquiver.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Esquiver -AltName: Dodge (SRD p93) -Source: (MDR p288) Id: combat_hd.md#esquiver ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Dodge (SRD p93) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_etre_a_terre.md b/Data/HD/hd_combat_etre_a_terre.md index 7ada47f3..68be7b3b 100644 --- a/Data/HD/hd_combat_etre_a_terre.md +++ b/Data/HD/hd_combat_etre_a_terre.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Être à terre -AltName: Being Prone (SRD p91) -Source: (MDR p286) Id: combat_hd.md#Être-à-terre ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Being Prone (SRD p91) +Source: (MDR p286) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_faire_1_ou_20.md b/Data/HD/hd_combat_faire_1_ou_20.md index 478206cb..9d917421 100644 --- a/Data/HD/hd_combat_faire_1_ou_20.md +++ b/Data/HD/hd_combat_faire_1_ou_20.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Faire 1 ou 20 -AltName: Rolling 1 or 20 (SRD p94) -Source: (MDR p291) Id: combat_hd.md#faire-1-ou-20 ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Rolling 1 or 20 (SRD p94) +Source: (MDR p291) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_fragmenter_votre_mouvement.md b/Data/HD/hd_combat_fragmenter_votre_mouvement.md index 2d4ebb23..d4eb44dc 100644 --- a/Data/HD/hd_combat_fragmenter_votre_mouvement.md +++ b/Data/HD/hd_combat_fragmenter_votre_mouvement.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Fragmenter votre mouvement -AltName: Breaking Up Your Move (SRD p91) -Source: (MDR p286) Id: combat_hd.md#fragmenter-votre-mouvement ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Breaking Up Your Move (SRD p91) +Source: (MDR p286) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_initiative.md b/Data/HD/hd_combat_initiative.md index 5c3bf342..50abdf7e 100644 --- a/Data/HD/hd_combat_initiative.md +++ b/Data/HD/hd_combat_initiative.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Initiative -AltName: Initiative (SRD p90) -Source: (MDR p284) Id: combat_hd.md#initiative ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Initiative (SRD p90) +Source: (MDR p284) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_interagir_avec_les_objets_alentours.md b/Data/HD/hd_combat_interagir_avec_les_objets_alentours.md index a73bf8b9..9b7c1afb 100644 --- a/Data/HD/hd_combat_interagir_avec_les_objets_alentours.md +++ b/Data/HD/hd_combat_interagir_avec_les_objets_alentours.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Interagir avec les objets alentours -AltName: Interacting with Objects Around You (SRD p92) -Source: (MDR p287) Id: combat_hd.md#interagir-avec-les-objets-alentours ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Interacting with Objects Around You (SRD p92) +Source: (MDR p287) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_jets_dattaque.md b/Data/HD/hd_combat_jets_dattaque.md index 86d46b93..810fa11e 100644 --- a/Data/HD/hd_combat_jets_dattaque.md +++ b/Data/HD/hd_combat_jets_dattaque.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Jets d'attaque -AltName: Attack Rolls (SRD p94) -Source: (MDR p290) Id: combat_hd.md#jets-dattaque ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Attack Rolls (SRD p94) +Source: (MDR p290) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_jets_de_degats.md b/Data/HD/hd_combat_jets_de_degats.md index 503c11f3..f575e89e 100644 --- a/Data/HD/hd_combat_jets_de_degats.md +++ b/Data/HD/hd_combat_jets_de_degats.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Jets de dégâts -AltName: Damage Rolls (SRD p96) -Source: (MDR p293) Id: combat_hd.md#jets-de-dégâts ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Damage Rolls (SRD p96) +Source: (MDR p293) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_lancer_un_sort.md b/Data/HD/hd_combat_lancer_un_sort.md index 157760a7..d47e7bc8 100644 --- a/Data/HD/hd_combat_lancer_un_sort.md +++ b/Data/HD/hd_combat_lancer_un_sort.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Lancer un sort -AltName: Cast a Spell (SRD p93) -Source: (MDR p288) Id: combat_hd.md#lancer-un-sort ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Cast a Spell (SRD p93) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_les_etapes_du_combat.md b/Data/HD/hd_combat_les_etapes_du_combat.md index 639fee18..54b12bd9 100644 --- a/Data/HD/hd_combat_les_etapes_du_combat.md +++ b/Data/HD/hd_combat_les_etapes_du_combat.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les étapes du combat -AltName: Combat Step by Step (SRD p90) -Source: (MDR p284) Id: combat_hd.md#les-étapes-du-combat ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Combat Step by Step (SRD p90) +Source: (MDR p284) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_modificateurs_du_jet.md b/Data/HD/hd_combat_modificateurs_du_jet.md index a45a5d38..9a1decde 100644 --- a/Data/HD/hd_combat_modificateurs_du_jet.md +++ b/Data/HD/hd_combat_modificateurs_du_jet.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Modificateurs du jet -AltName: Modifiers to the Roll (SRD p94) -Source: (MDR p290) Id: combat_hd.md#modificateurs-du-jet ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Modifiers to the Roll (SRD p94) +Source: (MDR p290) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_monter_et_descendre_de_sa_monture.md b/Data/HD/hd_combat_monter_et_descendre_de_sa_monture.md index d09715c3..874c7553 100644 --- a/Data/HD/hd_combat_monter_et_descendre_de_sa_monture.md +++ b/Data/HD/hd_combat_monter_et_descendre_de_sa_monture.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Monter et descendre de sa monture -AltName: Mounting and Dismounting (SRD p99) -Source: (MDR p295) Id: combat_hd.md#monter-et-descendre-de-sa-monture ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Mounting and Dismounting (SRD p99) +Source: (MDR p295) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_opposition_en_combat.md b/Data/HD/hd_combat_opposition_en_combat.md index f85e3f60..ea3ce4f3 100644 --- a/Data/HD/hd_combat_opposition_en_combat.md +++ b/Data/HD/hd_combat_opposition_en_combat.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Opposition en combat -AltName: Contests in Combat (SRD p96) -Source: (MDR p292) Id: combat_hd.md#opposition-en-combat ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Contests in Combat (SRD p96) +Source: (MDR p292) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_ordre_de_combat.md b/Data/HD/hd_combat_ordre_de_combat.md index 548e83b4..db5c5751 100644 --- a/Data/HD/hd_combat_ordre_de_combat.md +++ b/Data/HD/hd_combat_ordre_de_combat.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Ordre de combat -AltName: The Order of Combat (SRD p90) -Source: (MDR p284) Id: combat_hd.md#ordre-de-combat ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 2 +AltName: The Order of Combat (SRD p90) +Source: (MDR p284) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_portee.md b/Data/HD/hd_combat_portee.md index cc63094f..8b881294 100644 --- a/Data/HD/hd_combat_portee.md +++ b/Data/HD/hd_combat_portee.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Portée -AltName: Range (SRD p95) -Source: (MDR p291) Id: combat_hd.md#portée ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Range (SRD p95) +Source: (MDR p291) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_porter_une_attaque.md b/Data/HD/hd_combat_porter_une_attaque.md index 7b82e462..2828a307 100644 --- a/Data/HD/hd_combat_porter_une_attaque.md +++ b/Data/HD/hd_combat_porter_une_attaque.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Porter une attaque -AltName: Making an Attack (SRD p94) -Source: (MDR p290) Id: combat_hd.md#porter-une-attaque ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 2 +AltName: Making an Attack (SRD p94) +Source: (MDR p290) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_reaction.md b/Data/HD/hd_combat_reaction.md index 629d3aac..b8655103 100644 --- a/Data/HD/hd_combat_reaction.md +++ b/Data/HD/hd_combat_reaction.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Réaction -AltName: Reactions (SRD p91) -Source: (MDR p285) Id: combat_hd.md#réaction ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Reactions (SRD p91) +Source: (MDR p285) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_resistance_et_vulnerabilite_aux_degats.md b/Data/HD/hd_combat_resistance_et_vulnerabilite_aux_degats.md index 0b780997..48a84377 100644 --- a/Data/HD/hd_combat_resistance_et_vulnerabilite_aux_degats.md +++ b/Data/HD/hd_combat_resistance_et_vulnerabilite_aux_degats.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Résistance et vulnérabilité aux dégâts -AltName: Damage Resistance and Vulnerability (SRD p97) -Source: (MDR p294) Id: combat_hd.md#résistance-et-vulnérabilité-aux-dégâts ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Damage Resistance and Vulnerability (SRD p97) +Source: (MDR p294) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_se_cacher.md b/Data/HD/hd_combat_se_cacher.md index bfc74f01..1da280d6 100644 --- a/Data/HD/hd_combat_se_cacher.md +++ b/Data/HD/hd_combat_se_cacher.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Se cacher -AltName: Hide (SRD p93) -Source: (MDR p288) Id: combat_hd.md#se-cacher ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Hide (SRD p93) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_se_deplacer_au_milieu_dautres_creatures.md b/Data/HD/hd_combat_se_deplacer_au_milieu_dautres_creatures.md index 774b237e..f39f2b65 100644 --- a/Data/HD/hd_combat_se_deplacer_au_milieu_dautres_creatures.md +++ b/Data/HD/hd_combat_se_deplacer_au_milieu_dautres_creatures.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Se déplacer au milieu d'autres créatures -AltName: Moving Around Other Creatures (SRD p92) -Source: (MDR p286) Id: combat_hd.md#se-déplacer-au-milieu-dautres-créatures ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Moving Around Other Creatures (SRD p92) +Source: (MDR p286) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_se_deplacer_entre_des_attaques.md b/Data/HD/hd_combat_se_deplacer_entre_des_attaques.md index 318d626e..45f96c22 100644 --- a/Data/HD/hd_combat_se_deplacer_entre_des_attaques.md +++ b/Data/HD/hd_combat_se_deplacer_entre_des_attaques.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Se déplacer entre des attaques -AltName: Moving between Attacks (SRD p91) -Source: (MDR p286) Id: combat_hd.md#se-déplacer-entre-des-attaques ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Moving between Attacks (SRD p91) +Source: (MDR p286) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_se_desengager.md b/Data/HD/hd_combat_se_desengager.md index 08d1852a..befb0ca2 100644 --- a/Data/HD/hd_combat_se_desengager.md +++ b/Data/HD/hd_combat_se_desengager.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Se désengager -AltName: Disengage (SRD p93) -Source: (MDR p288) Id: combat_hd.md#se-désengager ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Disengage (SRD p93) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_se_faufiler_dans_un_espace_reduit.md b/Data/HD/hd_combat_se_faufiler_dans_un_espace_reduit.md index 0a194025..f031c4c0 100644 --- a/Data/HD/hd_combat_se_faufiler_dans_un_espace_reduit.md +++ b/Data/HD/hd_combat_se_faufiler_dans_un_espace_reduit.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Se faufiler dans un espace réduit -AltName: Squeezing into a Smaller Space (SRD p92) -Source: (MDR p288) Id: combat_hd.md#se-faufiler-dans-un-espace-réduit ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Squeezing into a Smaller Space (SRD p92) +Source: (MDR p288) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_se_precipiter.md b/Data/HD/hd_combat_se_precipiter.md index 9aa905cb..2f2c5b42 100644 --- a/Data/HD/hd_combat_se_precipiter.md +++ b/Data/HD/hd_combat_se_precipiter.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Se précipiter -AltName: Dash (SRD p93) -Source: (MDR p290) Id: combat_hd.md#se-précipiter ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Dash (SRD p93) +Source: (MDR p290) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_se_tenir_pret.md b/Data/HD/hd_combat_se_tenir_pret.md index e00d7cc6..c3c973a6 100644 --- a/Data/HD/hd_combat_se_tenir_pret.md +++ b/Data/HD/hd_combat_se_tenir_pret.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Se tenir prêt -AltName: Ready (SRD p93) -Source: (MDR p290) Id: combat_hd.md#se-tenir-prêt ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Ready (SRD p93) +Source: (MDR p290) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_surprise.md b/Data/HD/hd_combat_surprise.md index 0b72369e..a9448077 100644 --- a/Data/HD/hd_combat_surprise.md +++ b/Data/HD/hd_combat_surprise.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Surprise -AltName: Surprise (SRD p90) -Source: (MDR p284) Id: combat_hd.md#surprise ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Surprise (SRD p90) +Source: (MDR p284) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_taille_des_creatures.md b/Data/HD/hd_combat_taille_des_creatures.md index 4e910265..8e4e006d 100644 --- a/Data/HD/hd_combat_taille_des_creatures.md +++ b/Data/HD/hd_combat_taille_des_creatures.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Taille des créatures -AltName: Creature Size (SRD p92) -Source: (MDR p287) Id: combat_hd.md#taille-des-créatures ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Creature Size (SRD p92) +Source: (MDR p287) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_terrain_difficile.md b/Data/HD/hd_combat_terrain_difficile.md index efb2b2e6..555ab101 100644 --- a/Data/HD/hd_combat_terrain_difficile.md +++ b/Data/HD/hd_combat_terrain_difficile.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Terrain difficile -AltName: Difficult Terrain (SRD p91) -Source: (MDR p286) Id: combat_hd.md#terrain-difficile ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Difficult Terrain (SRD p91) +Source: (MDR p286) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_types_de_degats.md b/Data/HD/hd_combat_types_de_degats.md index 5f029110..b483c82c 100644 --- a/Data/HD/hd_combat_types_de_degats.md +++ b/Data/HD/hd_combat_types_de_degats.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Types de dégâts -AltName: Damage Types (SRD p97) -Source: (MDR p294) Id: combat_hd.md#types-de-dégâts ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Damage Types (SRD p97) +Source: (MDR p294) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_utiliser_differentes_vitesses.md b/Data/HD/hd_combat_utiliser_differentes_vitesses.md index c6c1c20f..f97ce080 100644 --- a/Data/HD/hd_combat_utiliser_differentes_vitesses.md +++ b/Data/HD/hd_combat_utiliser_differentes_vitesses.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Utiliser différentes vitesses -AltName: Using Different Speeds (SRD p91) -Source: (MDR p286) Id: combat_hd.md#utiliser-différentes-vitesses ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 4 +AltName: Using Different Speeds (SRD p91) +Source: (MDR p286) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_utiliser_un_objet.md b/Data/HD/hd_combat_utiliser_un_objet.md index 1b5f7160..aad2cc23 100644 --- a/Data/HD/hd_combat_utiliser_un_objet.md +++ b/Data/HD/hd_combat_utiliser_un_objet.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Utiliser un objet -AltName: Use an Object (SRD p94) -Source: (MDR p290) Id: combat_hd.md#utiliser-un-objet ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Use an Object (SRD p94) +Source: (MDR p290) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_combat_votre_tour.md b/Data/HD/hd_combat_votre_tour.md index 12f6d79e..b89c191a 100644 --- a/Data/HD/hd_combat_votre_tour.md +++ b/Data/HD/hd_combat_votre_tour.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Votre tour -AltName: Your Turn (SRD p90) -Source: (MDR p285) Id: combat_hd.md#votre-tour ParentLink: combat_hd.md#combattre ParentName: Combattre NameLevel: 3 +AltName: Your Turn (SRD p90) +Source: (MDR p285) Attributes: {} --- > [Combattre](hd_combat.md) diff --git a/Data/HD/hd_conditions.md b/Data/HD/hd_conditions.md index 1917b9cc..3a503926 100644 --- a/Data/HD/hd_conditions.md +++ b/Data/HD/hd_conditions.md @@ -1,13 +1,13 @@ --- !Items -Name: États spéciaux -AltName: '[Conditions](srd_conditions.md)' -Source: (MDR p299) Id: conditions_hd.md#États-spéciaux RootId: conditions_hd.md ParentLink: manage_health_hd.md +Name: États spéciaux ParentName: Gérer la santé NameLevel: 1 +AltName: '[Conditions](srd_conditions.md)' +Source: (MDR p299) Attributes: {} --- >  [Gérer la santé](hd_manage_health.md) diff --git a/Data/HD/hd_conditions_a_terre.md b/Data/HD/hd_conditions_a_terre.md index 5280d51a..fa04eca1 100644 --- a/Data/HD/hd_conditions_a_terre.md +++ b/Data/HD/hd_conditions_a_terre.md @@ -1,11 +1,11 @@ --- !GenericItem Name: À terre -AltName: '[Prone](srd_conditions_prone.md)' Id: conditions_hd.md#À-terre ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Prone](srd_conditions_prone.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_assourdi.md b/Data/HD/hd_conditions_assourdi.md index 95e4e56b..611b6596 100644 --- a/Data/HD/hd_conditions_assourdi.md +++ b/Data/HD/hd_conditions_assourdi.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Assourdi -AltName: '[Deafened](srd_conditions_deafened.md)' Id: conditions_hd.md#assourdi ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Deafened](srd_conditions_deafened.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_aveugle.md b/Data/HD/hd_conditions_aveugle.md index 162baf85..0afb3c37 100644 --- a/Data/HD/hd_conditions_aveugle.md +++ b/Data/HD/hd_conditions_aveugle.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Aveuglé -AltName: '[Blinded](srd_conditions_blinded.md)' Id: conditions_hd.md#aveuglé ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Blinded](srd_conditions_blinded.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_charme.md b/Data/HD/hd_conditions_charme.md index a6619fee..371901d1 100644 --- a/Data/HD/hd_conditions_charme.md +++ b/Data/HD/hd_conditions_charme.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Charmé -AltName: '[Charmed](srd_conditions_charmed.md)' Id: conditions_hd.md#charmé ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Charmed](srd_conditions_charmed.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_empoigne.md b/Data/HD/hd_conditions_empoigne.md index c47b98fd..8e8010e8 100644 --- a/Data/HD/hd_conditions_empoigne.md +++ b/Data/HD/hd_conditions_empoigne.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Empoigné -AltName: '[Grappled](srd_conditions_grappled.md)' Id: conditions_hd.md#empoigné ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Grappled](srd_conditions_grappled.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_empoisonne.md b/Data/HD/hd_conditions_empoisonne.md index cbc0a163..988e55bc 100644 --- a/Data/HD/hd_conditions_empoisonne.md +++ b/Data/HD/hd_conditions_empoisonne.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Empoisonné -AltName: '[Poisoned](srd_conditions_poisoned.md)' Id: conditions_hd.md#empoisonné ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Poisoned](srd_conditions_poisoned.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_entrave.md b/Data/HD/hd_conditions_entrave.md index da3a0aaa..a4309a36 100644 --- a/Data/HD/hd_conditions_entrave.md +++ b/Data/HD/hd_conditions_entrave.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Entravé -AltName: '[Restrained](srd_conditions_restrained.md)' Id: conditions_hd.md#entravé ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Restrained](srd_conditions_restrained.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_etourdi.md b/Data/HD/hd_conditions_etourdi.md index 8c1e2d6b..673b6a82 100644 --- a/Data/HD/hd_conditions_etourdi.md +++ b/Data/HD/hd_conditions_etourdi.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Étourdi -AltName: '[Stunned](srd_conditions_stunned.md)' Id: conditions_hd.md#Étourdi ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Stunned](srd_conditions_stunned.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_fatigue_et_epuisement.md b/Data/HD/hd_conditions_fatigue_et_epuisement.md index b3e89663..efaf7cd6 100644 --- a/Data/HD/hd_conditions_fatigue_et_epuisement.md +++ b/Data/HD/hd_conditions_fatigue_et_epuisement.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fatigue et épuisement -AltName: '[Exhaustion](srd_conditions_exhaustion.md)' Id: conditions_hd.md#fatigue-et-épuisement ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Exhaustion](srd_conditions_exhaustion.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_inconscient.md b/Data/HD/hd_conditions_inconscient.md index 556b509e..3d101953 100644 --- a/Data/HD/hd_conditions_inconscient.md +++ b/Data/HD/hd_conditions_inconscient.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Inconscient -AltName: '[Unconscious](srd_conditions_unconscious.md)' Id: conditions_hd.md#inconscient ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Unconscious](srd_conditions_unconscious.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_invisible.md b/Data/HD/hd_conditions_invisible.md index 6d947ff9..89e180c6 100644 --- a/Data/HD/hd_conditions_invisible.md +++ b/Data/HD/hd_conditions_invisible.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Invisible -AltName: '[Invisible](srd_conditions_invisible.md)' Id: conditions_hd.md#invisible ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Invisible](srd_conditions_invisible.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_neutralise.md b/Data/HD/hd_conditions_neutralise.md index 3f4e9cae..2b938a9f 100644 --- a/Data/HD/hd_conditions_neutralise.md +++ b/Data/HD/hd_conditions_neutralise.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Neutralisé -AltName: '[Incapacitated](srd_conditions_incapacitated.md)' Id: conditions_hd.md#neutralisé ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Incapacitated](srd_conditions_incapacitated.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_paralyse.md b/Data/HD/hd_conditions_paralyse.md index 6f2458d3..e67d8e03 100644 --- a/Data/HD/hd_conditions_paralyse.md +++ b/Data/HD/hd_conditions_paralyse.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Paralysé -AltName: '[Paralyzed](srd_conditions_paralyzed.md)' Id: conditions_hd.md#paralysé ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Paralyzed](srd_conditions_paralyzed.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_petrifie.md b/Data/HD/hd_conditions_petrifie.md index 97af529f..ddabde16 100644 --- a/Data/HD/hd_conditions_petrifie.md +++ b/Data/HD/hd_conditions_petrifie.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Pétrifié -AltName: '[Petrified](srd_conditions_petrified.md)' Id: conditions_hd.md#pétrifié ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Petrified](srd_conditions_petrified.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_conditions_terrorise.md b/Data/HD/hd_conditions_terrorise.md index dab1ec28..51334002 100644 --- a/Data/HD/hd_conditions_terrorise.md +++ b/Data/HD/hd_conditions_terrorise.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Terrorisé -AltName: '[Frightened](srd_conditions_frightened.md)' Id: conditions_hd.md#terrorisé ParentLink: conditions_hd.md#États-spéciaux ParentName: États spéciaux NameLevel: 1 +AltName: '[Frightened](srd_conditions_frightened.md)' Attributes: {} --- > [États spéciaux](hd_conditions.md) diff --git a/Data/HD/hd_custom_options.md b/Data/HD/hd_custom_options.md index 4285740f..7bc1afbb 100644 --- a/Data/HD/hd_custom_options.md +++ b/Data/HD/hd_custom_options.md @@ -1,9 +1,9 @@ --- !Items -Name: Options de personnalisation Id: custom_options_hd.md#options-de-personnalisation RootId: custom_options_hd.md ParentLink: index.md +Name: Options de personnalisation ParentName: Manuel des règles NameLevel: 1 Attributes: {} diff --git a/Data/HD/hd_damage_healing.md b/Data/HD/hd_damage_healing.md index 593043f3..6f5c1f3e 100644 --- a/Data/HD/hd_damage_healing.md +++ b/Data/HD/hd_damage_healing.md @@ -1,13 +1,13 @@ --- !Items -Name: 'Dégâts et guérison ' -AltName: Damage and Healing -Source: (MDR p298)(SRD p96) Id: damage_healing_hd.md#dégâts-et-guérison- RootId: damage_healing_hd.md ParentLink: manage_health_hd.md +Name: 'Dégâts et guérison ' ParentName: Gérer la santé NameLevel: 2 +AltName: Damage and Healing +Source: (MDR p298)(SRD p96) Attributes: {} --- >  [Gérer la santé](hd_manage_health.md) diff --git a/Data/HD/hd_damage_healing_jets_de_sauvegarde_contre_la_mort.md b/Data/HD/hd_damage_healing_jets_de_sauvegarde_contre_la_mort.md index adb6ba87..95838658 100644 --- a/Data/HD/hd_damage_healing_jets_de_sauvegarde_contre_la_mort.md +++ b/Data/HD/hd_damage_healing_jets_de_sauvegarde_contre_la_mort.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Jets de sauvegarde contre la mort -AltName: Death Saving Throws -Source: (MDR p298)(SRD p98) Id: damage_healing_hd.md#jets-de-sauvegarde-contre-la-mort ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 4 +AltName: Death Saving Throws +Source: (MDR p298)(SRD p98) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_damage_healing_les_monstres_et_la_mort.md b/Data/HD/hd_damage_healing_les_monstres_et_la_mort.md index 2a5a373c..71e45379 100644 --- a/Data/HD/hd_damage_healing_les_monstres_et_la_mort.md +++ b/Data/HD/hd_damage_healing_les_monstres_et_la_mort.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les monstres et la mort -AltName: Monsters and Death -Source: (MDR p299)(SRD p98) Id: damage_healing_hd.md#les-monstres-et-la-mort ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 4 +AltName: Monsters and Death +Source: (MDR p299)(SRD p98) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_damage_healing_mort_instantanee.md b/Data/HD/hd_damage_healing_mort_instantanee.md index ca8957fd..664104f6 100644 --- a/Data/HD/hd_damage_healing_mort_instantanee.md +++ b/Data/HD/hd_damage_healing_mort_instantanee.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Mort instantanée -AltName: Instant Death -Source: (MDR p298)(SRD p98) Id: damage_healing_hd.md#mort-instantanée ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 4 +AltName: Instant Death +Source: (MDR p298)(SRD p98) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_damage_healing_perdre_conscience.md b/Data/HD/hd_damage_healing_perdre_conscience.md index bd3064b6..e2ee526b 100644 --- a/Data/HD/hd_damage_healing_perdre_conscience.md +++ b/Data/HD/hd_damage_healing_perdre_conscience.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Perdre conscience -AltName: Falling Unconscious -Source: (MDR p298)(SRD p98) Id: damage_healing_hd.md#perdre-conscience ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 4 +AltName: Falling Unconscious +Source: (MDR p298)(SRD p98) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_damage_healing_points_de_vie.md b/Data/HD/hd_damage_healing_points_de_vie.md index a1920e91..4e50fc92 100644 --- a/Data/HD/hd_damage_healing_points_de_vie.md +++ b/Data/HD/hd_damage_healing_points_de_vie.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Points de vie -AltName: Hit Points -Source: (MDR p298)(SRD p96) Id: damage_healing_hd.md#points-de-vie ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 3 +AltName: Hit Points +Source: (MDR p298)(SRD p96) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_damage_healing_points_de_vie_temporaires.md b/Data/HD/hd_damage_healing_points_de_vie_temporaires.md index 9bfca032..26afe500 100644 --- a/Data/HD/hd_damage_healing_points_de_vie_temporaires.md +++ b/Data/HD/hd_damage_healing_points_de_vie_temporaires.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Points de vie temporaires -AltName: Temporary Hit Points -Source: (MDR p299)(SRD p98) Id: damage_healing_hd.md#points-de-vie-temporaires ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 3 +AltName: Temporary Hit Points +Source: (MDR p299)(SRD p98) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_damage_healing_soins.md b/Data/HD/hd_damage_healing_soins.md index a081566d..f46754f9 100644 --- a/Data/HD/hd_damage_healing_soins.md +++ b/Data/HD/hd_damage_healing_soins.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Soins -AltName: Healing -Source: (MDR p298)(SRD p97) Id: damage_healing_hd.md#soins ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 3 +AltName: Healing +Source: (MDR p298)(SRD p97) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_damage_healing_stabiliser_une_creature.md b/Data/HD/hd_damage_healing_stabiliser_une_creature.md index 4df7e940..6a6ac387 100644 --- a/Data/HD/hd_damage_healing_stabiliser_une_creature.md +++ b/Data/HD/hd_damage_healing_stabiliser_une_creature.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Stabiliser une créature -AltName: Stabilizing a Creature -Source: (MDR p299)(SRD p98) Id: damage_healing_hd.md#stabiliser-une-créature ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 4 +AltName: Stabilizing a Creature +Source: (MDR p299)(SRD p98) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_damage_healing_tomber_a_0_point_de_vie.md b/Data/HD/hd_damage_healing_tomber_a_0_point_de_vie.md index 8f1419e1..5ee04588 100644 --- a/Data/HD/hd_damage_healing_tomber_a_0_point_de_vie.md +++ b/Data/HD/hd_damage_healing_tomber_a_0_point_de_vie.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Tomber à 0 point de vie -AltName: Dropping to 0 Hit Points -Source: (MDR p298)(SRD p97) Id: damage_healing_hd.md#tomber-à-0-point-de-vie ParentLink: damage_healing_hd.md#dégâts-et-guérison- ParentName: 'Dégâts et guérison ' NameLevel: 3 +AltName: Dropping to 0 Hit Points +Source: (MDR p298)(SRD p97) Attributes: {} --- > [Dégâts et guérison ](hd_damage_healing.md) diff --git a/Data/HD/hd_diseases.md b/Data/HD/hd_diseases.md index 29da09ff..e9861dde 100644 --- a/Data/HD/hd_diseases.md +++ b/Data/HD/hd_diseases.md @@ -1,13 +1,13 @@ --- !Items -Name: Les maladies -AltName: Diseases -Source: (CEO p379)(SRD p199) Id: diseases_hd.md#les-maladies RootId: diseases_hd.md ParentLink: index.md +Name: Les maladies ParentName: Créatures et oppositions NameLevel: 2 +AltName: Diseases +Source: (CEO p379)(SRD p199) Attributes: {} --- >  [Créatures et oppositions](index.md) diff --git a/Data/HD/hd_druid_points_de_vie.md b/Data/HD/hd_druid_points_de_vie.md index 3e218a65..755b66ad 100644 --- a/Data/HD/hd_druid_points_de_vie.md +++ b/Data/HD/hd_druid_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d8 par niveau de druide HitPointsAt1stLevel: 8 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d8 (ou 5) + votre niveau de [Constitution](hd_abilities_constitution.md) par niveau de druide après le premier niveau Id: druid_hd.md#points-de-vie ParentLink: druid_hd.md#druide -Name: Points de vie ParentName: Druide NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_environment.md b/Data/HD/hd_environment.md index 32a31994..5e508f8c 100644 --- a/Data/HD/hd_environment.md +++ b/Data/HD/hd_environment.md @@ -1,13 +1,13 @@ --- !Items -Name: L’environnement -AltName: The Environment (SRD p86) -Source: (MDR p274) Id: environment_hd.md#l’environnement RootId: environment_hd.md ParentLink: adventure_hd.md +Name: L’environnement ParentName: Partir à l'aventure NameLevel: 1 +AltName: The Environment (SRD p86) +Source: (MDR p274) Attributes: {} --- >  [Partir à l'aventure](hd_adventure.md) diff --git a/Data/HD/hd_equipment_properties.md b/Data/HD/hd_equipment_properties.md index ca0d7138..6e6392b3 100644 --- a/Data/HD/hd_equipment_properties.md +++ b/Data/HD/hd_equipment_properties.md @@ -1,9 +1,9 @@ --- !Items -Name: Équipement Id: equipment_properties_hd.md#Équipement RootId: equipment_properties_hd.md ParentLink: equipment_hd.md +Name: Équipement ParentName: Équipement NameLevel: 1 Attributes: {} diff --git a/Data/HD/hd_equipment_properties_focaliseur_arcanique.md b/Data/HD/hd_equipment_properties_focaliseur_arcanique.md index 66839629..36461c6d 100644 --- a/Data/HD/hd_equipment_properties_focaliseur_arcanique.md +++ b/Data/HD/hd_equipment_properties_focaliseur_arcanique.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Focaliseur arcanique -AltName: Arcane Focus (SRD p66) -Source: (MDR p230) Id: equipment_properties_hd.md#focaliseur-arcanique ParentLink: equipment_properties_hd.md#Équipement ParentName: Équipement NameLevel: 2 +AltName: Arcane Focus (SRD p66) +Source: (MDR p230) Attributes: {} --- > [Équipement](hd_equipment_properties.md) diff --git a/Data/HD/hd_equipment_properties_focaliseur_druidique.md b/Data/HD/hd_equipment_properties_focaliseur_druidique.md index b7768e33..2e6e234f 100644 --- a/Data/HD/hd_equipment_properties_focaliseur_druidique.md +++ b/Data/HD/hd_equipment_properties_focaliseur_druidique.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Focaliseur druidique -AltName: Druidic Focus (SRD p67) -Source: (MDR p230) Id: equipment_properties_hd.md#focaliseur-druidique ParentLink: equipment_properties_hd.md#Équipement ParentName: Équipement NameLevel: 2 +AltName: Druidic Focus (SRD p67) +Source: (MDR p230) Attributes: {} --- > [Équipement](hd_equipment_properties.md) diff --git a/Data/HD/hd_equipment_properties_symbole_sacre.md b/Data/HD/hd_equipment_properties_symbole_sacre.md index 32b6bc60..f43fcbc7 100644 --- a/Data/HD/hd_equipment_properties_symbole_sacre.md +++ b/Data/HD/hd_equipment_properties_symbole_sacre.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Symbole sacré -AltName: Holy Symbol (SRD p67) -Source: (MDR p233) Id: equipment_properties_hd.md#symbole-sacré ParentLink: equipment_properties_hd.md#Équipement ParentName: Équipement NameLevel: 2 +AltName: Holy Symbol (SRD p67) +Source: (MDR p233) Attributes: {} --- > [Équipement](hd_equipment_properties.md) diff --git a/Data/HD/hd_feats.md b/Data/HD/hd_feats.md index df643280..4ad010a3 100644 --- a/Data/HD/hd_feats.md +++ b/Data/HD/hd_feats.md @@ -1,13 +1,13 @@ --- !Items -Name: Dons -AltName: Feats (SRD p75) -Source: (MDR p245) Id: feats_hd.md#dons RootId: feats_hd.md ParentLink: custom_options_hd.md +Name: Dons ParentName: Options de personnalisation NameLevel: 1 +AltName: Feats (SRD p75) +Source: (MDR p245) Attributes: {} --- >  [Options de personnalisation](hd_custom_options.md) diff --git a/Data/HD/hd_fighter_points_de_vie.md b/Data/HD/hd_fighter_points_de_vie.md index 44538213..721f956e 100644 --- a/Data/HD/hd_fighter_points_de_vie.md +++ b/Data/HD/hd_fighter_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d10 par niveau de guerrier HitPointsAt1stLevel: 10 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d10 (ou 6) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de guerrier après le niveau 1 Id: fighter_hd.md#points-de-vie ParentLink: fighter_hd.md#guerrier -Name: Points de vie ParentName: Guerrier NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_inspiration.md b/Data/HD/hd_inspiration.md index 88708b87..6173460d 100644 --- a/Data/HD/hd_inspiration.md +++ b/Data/HD/hd_inspiration.md @@ -1,13 +1,13 @@ --- !GenericItem Name: Inspiration -AltName: Inspiration (SRD p59) -Source: (MDR p76) Id: inspiration_hd.md#inspiration RootId: inspiration_hd.md ParentLink: personnality_background_hd.md# ParentName: Personnalité et Historique NameLevel: 1 +AltName: Inspiration (SRD p59) +Source: (MDR p76) Attributes: {} --- >  [Personnalité et Historique](personnality_background_hd.md#) diff --git a/Data/HD/hd_l5r_bard.md b/Data/HD/hd_l5r_bard.md index 9d59bad5..156b387c 100644 --- a/Data/HD/hd_l5r_bard.md +++ b/Data/HD/hd_l5r_bard.md @@ -1,12 +1,12 @@ --- !Items -Name: Barde des cinq royaumes -Source: (L5R p55) Id: l5r_bard_hd.md#barde-des-cinq-royaumes RootId: l5r_bard_hd.md ParentLink: l5r_index_hd.md +Name: Barde des cinq royaumes ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p55) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_bard_aptitudes_de_classe.md b/Data/HD/hd_l5r_bard_aptitudes_de_classe.md index 6774aec0..83b891ff 100644 --- a/Data/HD/hd_l5r_bard_aptitudes_de_classe.md +++ b/Data/HD/hd_l5r_bard_aptitudes_de_classe.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Aptitudes de classe -Source: (L5R p56) Id: l5r_bard_hd.md#aptitudes-de-classe ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 3 +Source: (L5R p56) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_college_des_diplomates.md b/Data/HD/hd_l5r_bard_college_des_diplomates.md index 6839d975..5459bc90 100644 --- a/Data/HD/hd_l5r_bard_college_des_diplomates.md +++ b/Data/HD/hd_l5r_bard_college_des_diplomates.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Collège des diplomates -Source: (L5R p58) Id: l5r_bard_hd.md#collège-des-diplomates ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p58) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_college_des_saltimbanques.md b/Data/HD/hd_l5r_bard_college_des_saltimbanques.md index e14a7129..716b9499 100644 --- a/Data/HD/hd_l5r_bard_college_des_saltimbanques.md +++ b/Data/HD/hd_l5r_bard_college_des_saltimbanques.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Collège des saltimbanques -Source: (L5R p58) Id: l5r_bard_hd.md#collège-des-saltimbanques ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p58) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_college_du_savoir.md b/Data/HD/hd_l5r_bard_college_du_savoir.md index 9f7292a2..fb0d83e1 100644 --- a/Data/HD/hd_l5r_bard_college_du_savoir.md +++ b/Data/HD/hd_l5r_bard_college_du_savoir.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Collège du savoir -Source: (L5R p58) Id: l5r_bard_hd.md#collège-du-savoir ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p58) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_colleges_de_bardes.md b/Data/HD/hd_l5r_bard_colleges_de_bardes.md index f58833cd..361aafb0 100644 --- a/Data/HD/hd_l5r_bard_colleges_de_bardes.md +++ b/Data/HD/hd_l5r_bard_colleges_de_bardes.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Collèges de bardes -Source: (L5R p58) Id: l5r_bard_hd.md#collèges-de-bardes ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 3 +Source: (L5R p58) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_distraction.md b/Data/HD/hd_l5r_bard_distraction.md index f008a85c..426f6260 100644 --- a/Data/HD/hd_l5r_bard_distraction.md +++ b/Data/HD/hd_l5r_bard_distraction.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Distraction -Source: (L5R p57) Id: l5r_bard_hd.md#distraction ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p57) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_esprit_insondable.md b/Data/HD/hd_l5r_bard_esprit_insondable.md index fae34e30..78f9768e 100644 --- a/Data/HD/hd_l5r_bard_esprit_insondable.md +++ b/Data/HD/hd_l5r_bard_esprit_insondable.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Esprit insondable -Source: (L5R p57) Id: l5r_bard_hd.md#esprit-insondable ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p57) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_maitre_des_ombres.md b/Data/HD/hd_l5r_bard_maitre_des_ombres.md index 58e7ed47..ce0f2ece 100644 --- a/Data/HD/hd_l5r_bard_maitre_des_ombres.md +++ b/Data/HD/hd_l5r_bard_maitre_des_ombres.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Maître des ombres -Source: (L5R p56) Id: l5r_bard_hd.md#maître-des-ombres ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p56) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_maitre_espion.md b/Data/HD/hd_l5r_bard_maitre_espion.md index 06d84fca..437cc340 100644 --- a/Data/HD/hd_l5r_bard_maitre_espion.md +++ b/Data/HD/hd_l5r_bard_maitre_espion.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Maître espion -Source: (L5R p57) Id: l5r_bard_hd.md#maître-espion ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p57) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_manipulation_de_lesprit.md b/Data/HD/hd_l5r_bard_manipulation_de_lesprit.md index ee32d184..b9f7ba15 100644 --- a/Data/HD/hd_l5r_bard_manipulation_de_lesprit.md +++ b/Data/HD/hd_l5r_bard_manipulation_de_lesprit.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Manipulation de l'esprit -Source: (L5R p57) Id: l5r_bard_hd.md#manipulation-de-lesprit ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p57) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_presence_amicale.md b/Data/HD/hd_l5r_bard_presence_amicale.md index af57e809..d0b4a7ff 100644 --- a/Data/HD/hd_l5r_bard_presence_amicale.md +++ b/Data/HD/hd_l5r_bard_presence_amicale.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Présence amicale -Source: (L5R p56) Id: l5r_bard_hd.md#présence-amicale ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p56) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_bard_tableau_devolution.md b/Data/HD/hd_l5r_bard_tableau_devolution.md index 9039506a..a0387b46 100644 --- a/Data/HD/hd_l5r_bard_tableau_devolution.md +++ b/Data/HD/hd_l5r_bard_tableau_devolution.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Tableau d'évolution -Source: (L5R p56) Id: l5r_bard_hd.md#tableau-dévolution ParentLink: l5r_bard_hd.md#barde-des-cinq-royaumes ParentName: Barde des cinq royaumes NameLevel: 4 +Source: (L5R p56) Attributes: {} --- > [Barde des cinq royaumes](hd_l5r_bard.md) diff --git a/Data/HD/hd_l5r_druid.md b/Data/HD/hd_l5r_druid.md index 167c6adb..2594ae29 100644 --- a/Data/HD/hd_l5r_druid.md +++ b/Data/HD/hd_l5r_druid.md @@ -1,12 +1,12 @@ --- !Items -Name: Druide des cinq royaumes -Source: (L5R p59) Id: l5r_druid_hd.md#druide-des-cinq-royaumes RootId: l5r_druid_hd.md ParentLink: l5r_index_hd.md +Name: Druide des cinq royaumes ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p59) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_druid_aptitudes_de_classe.md b/Data/HD/hd_l5r_druid_aptitudes_de_classe.md index 573cf145..c28e7a53 100644 --- a/Data/HD/hd_l5r_druid_aptitudes_de_classe.md +++ b/Data/HD/hd_l5r_druid_aptitudes_de_classe.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Aptitudes de classe -Source: (L5R p59) Id: l5r_druid_hd.md#aptitudes-de-classe ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 3 +Source: (L5R p59) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_archidruide.md b/Data/HD/hd_l5r_druid_archidruide.md index e2da07d4..0a148cf6 100644 --- a/Data/HD/hd_l5r_druid_archidruide.md +++ b/Data/HD/hd_l5r_druid_archidruide.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Archidruide -Source: (L5R p64) Id: l5r_druid_hd.md#archidruide ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p64) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_baies_apaisantes.md b/Data/HD/hd_l5r_druid_baies_apaisantes.md index ac2d90c9..897c5523 100644 --- a/Data/HD/hd_l5r_druid_baies_apaisantes.md +++ b/Data/HD/hd_l5r_druid_baies_apaisantes.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Baies apaisantes -Source: (L5R p59) Id: l5r_druid_hd.md#baies-apaisantes ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 5 +Source: (L5R p59) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_benediction_de_cernunos.md b/Data/HD/hd_l5r_druid_benediction_de_cernunos.md index 379f0ee8..a23bca68 100644 --- a/Data/HD/hd_l5r_druid_benediction_de_cernunos.md +++ b/Data/HD/hd_l5r_druid_benediction_de_cernunos.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Bénédiction de Cernunos -Source: (L5R p62) Id: l5r_druid_hd.md#bénédiction-de-cernunos ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p62) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_cercle_de_la_terre.md b/Data/HD/hd_l5r_druid_cercle_de_la_terre.md index 970e9b0e..0e208620 100644 --- a/Data/HD/hd_l5r_druid_cercle_de_la_terre.md +++ b/Data/HD/hd_l5r_druid_cercle_de_la_terre.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Cercle de la Terre -Source: (L5R p64) Id: l5r_druid_hd.md#cercle-de-la-terre ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p64) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_cercle_des_fees.md b/Data/HD/hd_l5r_druid_cercle_des_fees.md index 8a0e8c70..a45d43cc 100644 --- a/Data/HD/hd_l5r_druid_cercle_des_fees.md +++ b/Data/HD/hd_l5r_druid_cercle_des_fees.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Cercle des fées -Source: (L5R p64) Id: l5r_druid_hd.md#cercle-des-fées ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p64) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_cercle_des_profondeurs.md b/Data/HD/hd_l5r_druid_cercle_des_profondeurs.md index c408c2a4..8b853510 100644 --- a/Data/HD/hd_l5r_druid_cercle_des_profondeurs.md +++ b/Data/HD/hd_l5r_druid_cercle_des_profondeurs.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Cercle des profondeurs -Source: (L5R p64) Id: l5r_druid_hd.md#cercle-des-profondeurs ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p64) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_cercle_des_saisons.md b/Data/HD/hd_l5r_druid_cercle_des_saisons.md index 31722bec..96b5b07c 100644 --- a/Data/HD/hd_l5r_druid_cercle_des_saisons.md +++ b/Data/HD/hd_l5r_druid_cercle_des_saisons.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Cercle des Saisons -Source: (L5R p64) Id: l5r_druid_hd.md#cercle-des-saisons ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p64) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_cercles_de_druides.md b/Data/HD/hd_l5r_druid_cercles_de_druides.md index 5a013032..c1f0c75c 100644 --- a/Data/HD/hd_l5r_druid_cercles_de_druides.md +++ b/Data/HD/hd_l5r_druid_cercles_de_druides.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Cercles de druides -Source: (L5R p64) Id: l5r_druid_hd.md#cercles-de-druides ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 3 +Source: (L5R p64) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_colere_de_la_nature.md b/Data/HD/hd_l5r_druid_colere_de_la_nature.md index 6b7cc3c2..d3f51a9c 100644 --- a/Data/HD/hd_l5r_druid_colere_de_la_nature.md +++ b/Data/HD/hd_l5r_druid_colere_de_la_nature.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Colère de la nature -Source: (L5R p62) Id: l5r_druid_hd.md#colère-de-la-nature ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 5 +Source: (L5R p62) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_forme_animale.md b/Data/HD/hd_l5r_druid_forme_animale.md index 60fa1271..c7119b43 100644 --- a/Data/HD/hd_l5r_druid_forme_animale.md +++ b/Data/HD/hd_l5r_druid_forme_animale.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Forme animale -Source: (L5R p64) Id: l5r_druid_hd.md#forme-animale ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p64) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_gardien_des_traditions.md b/Data/HD/hd_l5r_druid_gardien_des_traditions.md index f19082db..ff731877 100644 --- a/Data/HD/hd_l5r_druid_gardien_des_traditions.md +++ b/Data/HD/hd_l5r_druid_gardien_des_traditions.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Gardien des traditions -Source: (L5R p59) Id: l5r_druid_hd.md#gardien-des-traditions ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p59) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_le_souffle_du_dragon.md b/Data/HD/hd_l5r_druid_le_souffle_du_dragon.md index add331f6..06759b75 100644 --- a/Data/HD/hd_l5r_druid_le_souffle_du_dragon.md +++ b/Data/HD/hd_l5r_druid_le_souffle_du_dragon.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Le souffle du dragon -Source: (L5R p62) Id: l5r_druid_hd.md#le-souffle-du-dragon ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p62) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_maitre_des_betes.md b/Data/HD/hd_l5r_druid_maitre_des_betes.md index f5620d7a..7d610666 100644 --- a/Data/HD/hd_l5r_druid_maitre_des_betes.md +++ b/Data/HD/hd_l5r_druid_maitre_des_betes.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Maître des bêtes -Source: (L5R p60) Id: l5r_druid_hd.md#maître-des-bêtes ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 5 +Source: (L5R p60) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_maitre_des_brumes.md b/Data/HD/hd_l5r_druid_maitre_des_brumes.md index 0fa6273b..308630df 100644 --- a/Data/HD/hd_l5r_druid_maitre_des_brumes.md +++ b/Data/HD/hd_l5r_druid_maitre_des_brumes.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Maître des brumes -Source: (L5R p61) Id: l5r_druid_hd.md#maître-des-brumes ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 5 +Source: (L5R p61) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_maitre_des_hommes.md b/Data/HD/hd_l5r_druid_maitre_des_hommes.md index a9c0e3ce..5cbcc903 100644 --- a/Data/HD/hd_l5r_druid_maitre_des_hommes.md +++ b/Data/HD/hd_l5r_druid_maitre_des_hommes.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Maître des hommes -Source: (L5R p61) Id: l5r_druid_hd.md#maître-des-hommes ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 5 +Source: (L5R p61) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_maitre_des_vents.md b/Data/HD/hd_l5r_druid_maitre_des_vents.md index 0fe43c76..78d3795a 100644 --- a/Data/HD/hd_l5r_druid_maitre_des_vents.md +++ b/Data/HD/hd_l5r_druid_maitre_des_vents.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Maître des vents -Source: (L5R p61) Id: l5r_druid_hd.md#maître-des-vents ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 5 +Source: (L5R p61) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_parler_aux_arbres.md b/Data/HD/hd_l5r_druid_parler_aux_arbres.md index a37eb166..845e2c88 100644 --- a/Data/HD/hd_l5r_druid_parler_aux_arbres.md +++ b/Data/HD/hd_l5r_druid_parler_aux_arbres.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Parler aux arbres -Source: (L5R p60) Id: l5r_druid_hd.md#parler-aux-arbres ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 5 +Source: (L5R p60) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_secrets_ancestraux.md b/Data/HD/hd_l5r_druid_secrets_ancestraux.md index 7a444460..ec83c36c 100644 --- a/Data/HD/hd_l5r_druid_secrets_ancestraux.md +++ b/Data/HD/hd_l5r_druid_secrets_ancestraux.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Secrets ancestraux -Source: (L5R p62) Id: l5r_druid_hd.md#secrets-ancestraux ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p62) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_tableau_devolution.md b/Data/HD/hd_l5r_druid_tableau_devolution.md index ad03aff2..a228a6cf 100644 --- a/Data/HD/hd_l5r_druid_tableau_devolution.md +++ b/Data/HD/hd_l5r_druid_tableau_devolution.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Tableau d'évolution -Source: (L5R p60) Id: l5r_druid_hd.md#tableau-dévolution ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 4 +Source: (L5R p60) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_druid_voyageur_des_terres.md b/Data/HD/hd_l5r_druid_voyageur_des_terres.md index b31b7b7c..73f0ee0f 100644 --- a/Data/HD/hd_l5r_druid_voyageur_des_terres.md +++ b/Data/HD/hd_l5r_druid_voyageur_des_terres.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Voyageur des terres -Source: (L5R p62) Id: l5r_druid_hd.md#voyageur-des-terres ParentLink: l5r_druid_hd.md#druide-des-cinq-royaumes ParentName: Druide des cinq royaumes NameLevel: 5 +Source: (L5R p62) Attributes: {} --- > [Druide des cinq royaumes](hd_l5r_druid.md) diff --git a/Data/HD/hd_l5r_general.md b/Data/HD/hd_l5r_general.md index 080e38be..62a24c43 100644 --- a/Data/HD/hd_l5r_general.md +++ b/Data/HD/hd_l5r_general.md @@ -1,12 +1,12 @@ --- !Items -Name: Règles générales -Source: (L5R p42) Id: l5r_general_hd.md#règles-générales RootId: l5r_general_hd.md ParentLink: l5r_index_hd.md +Name: Règles générales ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p42) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_general_moins_de_classes_jouables.md b/Data/HD/hd_l5r_general_moins_de_classes_jouables.md index 2cf39bf2..a1af85ad 100644 --- a/Data/HD/hd_l5r_general_moins_de_classes_jouables.md +++ b/Data/HD/hd_l5r_general_moins_de_classes_jouables.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Moins de classes jouables -Source: (L5R p42) Id: l5r_general_hd.md#moins-de-classes-jouables ParentLink: l5r_general_hd.md#règles-générales ParentName: Règles générales NameLevel: 3 +Source: (L5R p42) Attributes: {} --- > [Règles générales](hd_l5r_general.md) diff --git a/Data/HD/hd_l5r_general_niveau_maximum_optimal.md b/Data/HD/hd_l5r_general_niveau_maximum_optimal.md index 8ca365f8..7a89c14e 100644 --- a/Data/HD/hd_l5r_general_niveau_maximum_optimal.md +++ b/Data/HD/hd_l5r_general_niveau_maximum_optimal.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Niveau maximum optimal -Source: (L5R p42) Id: l5r_general_hd.md#niveau-maximum-optimal ParentLink: l5r_general_hd.md#règles-générales ParentName: Règles générales NameLevel: 3 +Source: (L5R p42) Attributes: {} --- > [Règles générales](hd_l5r_general.md) diff --git a/Data/HD/hd_l5r_gofurther.md b/Data/HD/hd_l5r_gofurther.md index 3af6f32c..e1527759 100644 --- a/Data/HD/hd_l5r_gofurther.md +++ b/Data/HD/hd_l5r_gofurther.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Aller encore plus loin ? -Source: (L5R p48) Id: l5r_gofurther_hd.md#aller-encore-plus-loin-? RootId: l5r_gofurther_hd.md ParentLink: l5r_index_hd.md ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p48) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_hitpoints.md b/Data/HD/hd_l5r_hitpoints.md index 6d6acd19..c4456548 100644 --- a/Data/HD/hd_l5r_hitpoints.md +++ b/Data/HD/hd_l5r_hitpoints.md @@ -1,12 +1,12 @@ --- !Items -Name: Points de vie et blessures -Source: (L5R p42) Id: l5r_hitpoints_hd.md#points-de-vie-et-blessures RootId: l5r_hitpoints_hd.md ParentLink: l5r_index_hd.md +Name: Points de vie et blessures ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p42) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_hitpoints_0_pc.md b/Data/HD/hd_l5r_hitpoints_0_pc.md index ab297ee8..e3287525 100644 --- a/Data/HD/hd_l5r_hitpoints_0_pc.md +++ b/Data/HD/hd_l5r_hitpoints_0_pc.md @@ -1,11 +1,11 @@ --- !GenericItem Name: 0 PC -Source: (L5R p43) Id: l5r_hitpoints_hd.md#0-pc ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p43) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_0_pvit.md b/Data/HD/hd_l5r_hitpoints_0_pvit.md index a789cee8..8c06bb9b 100644 --- a/Data/HD/hd_l5r_hitpoints_0_pvit.md +++ b/Data/HD/hd_l5r_hitpoints_0_pvit.md @@ -1,11 +1,11 @@ --- !GenericItem Name: 0 PVit -Source: (L5R p43) Id: l5r_hitpoints_hd.md#0-pvit ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p43) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_blessures_legeres.md b/Data/HD/hd_l5r_hitpoints_blessures_legeres.md index 17ef7605..0bb96104 100644 --- a/Data/HD/hd_l5r_hitpoints_blessures_legeres.md +++ b/Data/HD/hd_l5r_hitpoints_blessures_legeres.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Blessures légères -Source: (L5R p45) Id: l5r_hitpoints_hd.md#blessures-légères ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p45) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_blessures_serieuses.md b/Data/HD/hd_l5r_hitpoints_blessures_serieuses.md index c5950592..803acf5c 100644 --- a/Data/HD/hd_l5r_hitpoints_blessures_serieuses.md +++ b/Data/HD/hd_l5r_hitpoints_blessures_serieuses.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Blessures sérieuses -Source: (L5R p45) Id: l5r_hitpoints_hd.md#blessures-sérieuses ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p45) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_concernant_lattaque_sournoise.md b/Data/HD/hd_l5r_hitpoints_concernant_lattaque_sournoise.md index d4126eb5..f5f99b58 100644 --- a/Data/HD/hd_l5r_hitpoints_concernant_lattaque_sournoise.md +++ b/Data/HD/hd_l5r_hitpoints_concernant_lattaque_sournoise.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Concernant l'attaque sournoise -Source: (L5R p43) Id: l5r_hitpoints_hd.md#concernant-lattaque-sournoise ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p43) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_et_pour_les_creatures_et_pnj_.md b/Data/HD/hd_l5r_hitpoints_et_pour_les_creatures_et_pnj_.md index 5705f616..e0ce39eb 100644 --- a/Data/HD/hd_l5r_hitpoints_et_pour_les_creatures_et_pnj_.md +++ b/Data/HD/hd_l5r_hitpoints_et_pour_les_creatures_et_pnj_.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Et pour les créatures et PNJ ? -Source: (L5R p46) Id: l5r_hitpoints_hd.md#et-pour-les-créatures-et-pnj-? ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 3 +Source: (L5R p46) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_eviter_de_perdre_des_pvit.md b/Data/HD/hd_l5r_hitpoints_eviter_de_perdre_des_pvit.md index 69b94150..85a695be 100644 --- a/Data/HD/hd_l5r_hitpoints_eviter_de_perdre_des_pvit.md +++ b/Data/HD/hd_l5r_hitpoints_eviter_de_perdre_des_pvit.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Éviter de perdre des PVit -Source: (L5R p44) Id: l5r_hitpoints_hd.md#Éviter-de-perdre-des-pvit ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p44) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_eviter_la_mort.md b/Data/HD/hd_l5r_hitpoints_eviter_la_mort.md index aa09b47b..2eb76d56 100644 --- a/Data/HD/hd_l5r_hitpoints_eviter_la_mort.md +++ b/Data/HD/hd_l5r_hitpoints_eviter_la_mort.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Éviter la mort -Source: (L5R p44) Id: l5r_hitpoints_hd.md#Éviter-la-mort ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p44) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_guerir_des_blessures.md b/Data/HD/hd_l5r_hitpoints_guerir_des_blessures.md index 70412ff2..fe1d9310 100644 --- a/Data/HD/hd_l5r_hitpoints_guerir_des_blessures.md +++ b/Data/HD/hd_l5r_hitpoints_guerir_des_blessures.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Guérir des blessures -Source: (L5R p44) Id: l5r_hitpoints_hd.md#guérir-des-blessures ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p44) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_les_creatures_sont_vraiment_dangereuses_alors_.md b/Data/HD/hd_l5r_hitpoints_les_creatures_sont_vraiment_dangereuses_alors_.md index 0686b8fb..1a261d6d 100644 --- a/Data/HD/hd_l5r_hitpoints_les_creatures_sont_vraiment_dangereuses_alors_.md +++ b/Data/HD/hd_l5r_hitpoints_les_creatures_sont_vraiment_dangereuses_alors_.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Les créatures sont vraiment dangereuses alors ? -Source: (L5R p47) Id: l5r_hitpoints_hd.md#les-créatures-sont-vraiment-dangereuses-alors-? ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p47) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_option_encore_plus_mortelle.md b/Data/HD/hd_l5r_hitpoints_option_encore_plus_mortelle.md index ba4dcaee..96cf8072 100644 --- a/Data/HD/hd_l5r_hitpoints_option_encore_plus_mortelle.md +++ b/Data/HD/hd_l5r_hitpoints_option_encore_plus_mortelle.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Option encore plus mortelle -Source: (L5R p44) Id: l5r_hitpoints_hd.md#option-encore-plus-mortelle ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p44) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_option_un_peu_moins_de_mortalite_.md b/Data/HD/hd_l5r_hitpoints_option_un_peu_moins_de_mortalite_.md index 91c83be0..78f170f7 100644 --- a/Data/HD/hd_l5r_hitpoints_option_un_peu_moins_de_mortalite_.md +++ b/Data/HD/hd_l5r_hitpoints_option_un_peu_moins_de_mortalite_.md @@ -1,11 +1,11 @@ --- !GenericItem Name: 'Option : un peu moins de mortalité ' -Source: (L5R p47) Id: l5r_hitpoints_hd.md#option--un-peu-moins-de-mortalité- ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p47) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_points_de_combativite.md b/Data/HD/hd_l5r_hitpoints_points_de_combativite.md index b8cd4586..a5155f14 100644 --- a/Data/HD/hd_l5r_hitpoints_points_de_combativite.md +++ b/Data/HD/hd_l5r_hitpoints_points_de_combativite.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Points de combativité -Source: (L5R p42) Id: l5r_hitpoints_hd.md#points-de-combativité ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 3 +Source: (L5R p42) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_points_de_vitalite.md b/Data/HD/hd_l5r_hitpoints_points_de_vitalite.md index 3968e8b6..909dc168 100644 --- a/Data/HD/hd_l5r_hitpoints_points_de_vitalite.md +++ b/Data/HD/hd_l5r_hitpoints_points_de_vitalite.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Points de vitalité -Source: (L5R p43) Id: l5r_hitpoints_hd.md#points-de-vitalité ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 3 +Source: (L5R p43) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_regagner_des_pc.md b/Data/HD/hd_l5r_hitpoints_regagner_des_pc.md index d7c452c2..026e9861 100644 --- a/Data/HD/hd_l5r_hitpoints_regagner_des_pc.md +++ b/Data/HD/hd_l5r_hitpoints_regagner_des_pc.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Regagner des PC -Source: (L5R p44) Id: l5r_hitpoints_hd.md#regagner-des-pc ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p44) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_regagner_des_pvit.md b/Data/HD/hd_l5r_hitpoints_regagner_des_pvit.md index bee66665..648e5111 100644 --- a/Data/HD/hd_l5r_hitpoints_regagner_des_pvit.md +++ b/Data/HD/hd_l5r_hitpoints_regagner_des_pvit.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Regagner des PVit -Source: (L5R p44) Id: l5r_hitpoints_hd.md#regagner-des-pvit ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p44) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_regagner_ses_points_de_vitalite.md b/Data/HD/hd_l5r_hitpoints_regagner_ses_points_de_vitalite.md index b16b6a3e..1207bfb4 100644 --- a/Data/HD/hd_l5r_hitpoints_regagner_ses_points_de_vitalite.md +++ b/Data/HD/hd_l5r_hitpoints_regagner_ses_points_de_vitalite.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Regagner ses points de vitalité -Source: (L5R p45) Id: l5r_hitpoints_hd.md#regagner-ses-points-de-vitalité ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p45) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_special_les_degats_dattaque_sournoise.md b/Data/HD/hd_l5r_hitpoints_special_les_degats_dattaque_sournoise.md index aec2d2ea..2fb367ed 100644 --- a/Data/HD/hd_l5r_hitpoints_special_les_degats_dattaque_sournoise.md +++ b/Data/HD/hd_l5r_hitpoints_special_les_degats_dattaque_sournoise.md @@ -1,11 +1,11 @@ --- !GenericItem Name: "Spécial : les dégâts d'attaque sournoise" -Source: (L5R p43) Id: l5r_hitpoints_hd.md#spécial--les-dégâts-dattaque-sournoise ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p43) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_subir_des_degats.md b/Data/HD/hd_l5r_hitpoints_subir_des_degats.md index f94add7f..65d320d2 100644 --- a/Data/HD/hd_l5r_hitpoints_subir_des_degats.md +++ b/Data/HD/hd_l5r_hitpoints_subir_des_degats.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Subir des dégâts -Source: (L5R p43) Id: l5r_hitpoints_hd.md#subir-des-dégâts ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 3 +Source: (L5R p43) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_tuer_ou_garder_en_vie.md b/Data/HD/hd_l5r_hitpoints_tuer_ou_garder_en_vie.md index 9ad48808..6aef49e2 100644 --- a/Data/HD/hd_l5r_hitpoints_tuer_ou_garder_en_vie.md +++ b/Data/HD/hd_l5r_hitpoints_tuer_ou_garder_en_vie.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Tuer ou garder en vie -Source: (L5R p47) Id: l5r_hitpoints_hd.md#tuer-ou-garder-en-vie ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p47) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_hitpoints_viser_ou_ca_fait_mal_!.md b/Data/HD/hd_l5r_hitpoints_viser_ou_ca_fait_mal_!.md index 1ed6869f..b15fc6b9 100644 --- a/Data/HD/hd_l5r_hitpoints_viser_ou_ca_fait_mal_!.md +++ b/Data/HD/hd_l5r_hitpoints_viser_ou_ca_fait_mal_!.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Viser où ça fait mal ! -Source: (L5R p46) Id: l5r_hitpoints_hd.md#viser-où-ça-fait-mal-! ParentLink: l5r_hitpoints_hd.md#points-de-vie-et-blessures ParentName: Points de vie et blessures NameLevel: 4 +Source: (L5R p46) Attributes: {} --- > [Points de vie et blessures](hd_l5r_hitpoints.md) diff --git a/Data/HD/hd_l5r_human.md b/Data/HD/hd_l5r_human.md index 778731ed..de48f7a3 100644 --- a/Data/HD/hd_l5r_human.md +++ b/Data/HD/hd_l5r_human.md @@ -1,12 +1,12 @@ --- !Items -Name: Humain des cinq royaumes -Source: (L5R p49) Id: l5r_human_hd.md#humain-des-cinq-royaumes RootId: l5r_human_hd.md ParentLink: l5r_index_hd.md +Name: Humain des cinq royaumes ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p49) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_human_batard.md b/Data/HD/hd_l5r_human_batard.md index c42b905c..9fb2045a 100644 --- a/Data/HD/hd_l5r_human_batard.md +++ b/Data/HD/hd_l5r_human_batard.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Bâtard -Source: (L5R p52) Id: l5r_human_hd.md#bâtard ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p52) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_fils_de_la_terre.md b/Data/HD/hd_l5r_human_fils_de_la_terre.md index 194fe8e6..335e7e22 100644 --- a/Data/HD/hd_l5r_human_fils_de_la_terre.md +++ b/Data/HD/hd_l5r_human_fils_de_la_terre.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fils de la terre -Source: (L5R p49) Id: l5r_human_hd.md#fils-de-la-terre ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p49) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_fils_des_bois.md b/Data/HD/hd_l5r_human_fils_des_bois.md index 305c30ef..6eefae2e 100644 --- a/Data/HD/hd_l5r_human_fils_des_bois.md +++ b/Data/HD/hd_l5r_human_fils_des_bois.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fils des bois -Source: (L5R p50) Id: l5r_human_hd.md#fils-des-bois ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p50) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_fils_des_cites.md b/Data/HD/hd_l5r_human_fils_des_cites.md index 4adf0e1d..620833fd 100644 --- a/Data/HD/hd_l5r_human_fils_des_cites.md +++ b/Data/HD/hd_l5r_human_fils_des_cites.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fils des cités -Source: (L5R p51) Id: l5r_human_hd.md#fils-des-cités ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p51) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_fils_des_terres_sauvages.md b/Data/HD/hd_l5r_human_fils_des_terres_sauvages.md index 0e1b82ac..224897d5 100644 --- a/Data/HD/hd_l5r_human_fils_des_terres_sauvages.md +++ b/Data/HD/hd_l5r_human_fils_des_terres_sauvages.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fils des terres sauvages -Source: (L5R p51) Id: l5r_human_hd.md#fils-des-terres-sauvages ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p51) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_fils_du_roc.md b/Data/HD/hd_l5r_human_fils_du_roc.md index 4f14e267..fd01c946 100644 --- a/Data/HD/hd_l5r_human_fils_du_roc.md +++ b/Data/HD/hd_l5r_human_fils_du_roc.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fils du roc -Source: (L5R p51) Id: l5r_human_hd.md#fils-du-roc ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p51) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_fils_du_sel.md b/Data/HD/hd_l5r_human_fils_du_sel.md index f976a327..92db0bf8 100644 --- a/Data/HD/hd_l5r_human_fils_du_sel.md +++ b/Data/HD/hd_l5r_human_fils_du_sel.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fils du sel -Source: (L5R p50) Id: l5r_human_hd.md#fils-du-sel ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p50) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_fils_du_vent.md b/Data/HD/hd_l5r_human_fils_du_vent.md index 80bd88b1..19d0a1cd 100644 --- a/Data/HD/hd_l5r_human_fils_du_vent.md +++ b/Data/HD/hd_l5r_human_fils_du_vent.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fils du vent -Source: (L5R p51) Id: l5r_human_hd.md#fils-du-vent ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p51) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_gwynnddaerain.md b/Data/HD/hd_l5r_human_gwynnddaerain.md index 32199d33..3601667b 100644 --- a/Data/HD/hd_l5r_human_gwynnddaerain.md +++ b/Data/HD/hd_l5r_human_gwynnddaerain.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Gwynnddaerain -Source: (L5R p51) Id: l5r_human_hd.md#gwynnddaerain ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 4 +Source: (L5R p51) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_human_traits_de_base_des_humains.md b/Data/HD/hd_l5r_human_traits_de_base_des_humains.md index 572c6d61..084695a2 100644 --- a/Data/HD/hd_l5r_human_traits_de_base_des_humains.md +++ b/Data/HD/hd_l5r_human_traits_de_base_des_humains.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Traits de base des humains -Source: (L5R p49) Id: l5r_human_hd.md#traits-de-base-des-humains ParentLink: l5r_human_hd.md#humain-des-cinq-royaumes ParentName: Humain des cinq royaumes NameLevel: 3 +Source: (L5R p49) Attributes: {} --- > [Humain des cinq royaumes](hd_l5r_human.md) diff --git a/Data/HD/hd_l5r_index.md b/Data/HD/hd_l5r_index.md index 08f163f9..bcf46e27 100644 --- a/Data/HD/hd_l5r_index.md +++ b/Data/HD/hd_l5r_index.md @@ -1,12 +1,12 @@ --- !Items -Name: 'Les Cinq Royaumes : Les règles spécifiques' -Source: (L5R p42) Id: l5r_index_hd.md#les-cinq-royaumes--les-règles-spécifiques RootId: l5r_index_hd.md ParentLink: index.md +Name: 'Les Cinq Royaumes : Les règles spécifiques' ParentName: Les Cinq Royaumes NameLevel: 1 +Source: (L5R p42) Attributes: {} --- >  [Les Cinq Royaumes](index.md) diff --git a/Data/HD/hd_l5r_magic.md b/Data/HD/hd_l5r_magic.md index c8da6bd2..a7e0e212 100644 --- a/Data/HD/hd_l5r_magic.md +++ b/Data/HD/hd_l5r_magic.md @@ -1,12 +1,12 @@ --- !Items -Name: Des objets magiques rares et merveilleux -Source: (L5R p48) Id: l5r_magic_hd.md#des-objets-magiques-rares-et-merveilleux RootId: l5r_magic_hd.md ParentLink: l5r_index_hd.md +Name: Des objets magiques rares et merveilleux ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p48) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_magic_ces_dons_ne_sont_pas_accessibles.md b/Data/HD/hd_l5r_magic_ces_dons_ne_sont_pas_accessibles.md index dbf82433..2ecb0783 100644 --- a/Data/HD/hd_l5r_magic_ces_dons_ne_sont_pas_accessibles.md +++ b/Data/HD/hd_l5r_magic_ces_dons_ne_sont_pas_accessibles.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Ces dons ne sont pas accessibles -Source: (L5R p42) Id: l5r_magic_hd.md#ces-dons-ne-sont-pas-accessibles ParentLink: l5r_magic_hd.md#des-objets-magiques-rares-et-merveilleux ParentName: Des objets magiques rares et merveilleux NameLevel: 4 +Source: (L5R p42) Attributes: {} --- > [Des objets magiques rares et merveilleux](hd_l5r_magic.md) diff --git a/Data/HD/hd_l5r_magic_les_potions.md b/Data/HD/hd_l5r_magic_les_potions.md index a2f71ed4..ba55c04a 100644 --- a/Data/HD/hd_l5r_magic_les_potions.md +++ b/Data/HD/hd_l5r_magic_les_potions.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Les potions -Source: (L5R p48) Id: l5r_magic_hd.md#les-potions ParentLink: l5r_magic_hd.md#des-objets-magiques-rares-et-merveilleux ParentName: Des objets magiques rares et merveilleux NameLevel: 4 +Source: (L5R p48) Attributes: {} --- > [Des objets magiques rares et merveilleux](hd_l5r_magic.md) diff --git a/Data/HD/hd_l5r_magic_pas_de_magie_divine_.md b/Data/HD/hd_l5r_magic_pas_de_magie_divine_.md index b2b3e259..5183a33d 100644 --- a/Data/HD/hd_l5r_magic_pas_de_magie_divine_.md +++ b/Data/HD/hd_l5r_magic_pas_de_magie_divine_.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Pas de magie divine ? -Source: (L5R p48) Id: l5r_magic_hd.md#pas-de-magie-divine-? ParentLink: l5r_magic_hd.md#des-objets-magiques-rares-et-merveilleux ParentName: Des objets magiques rares et merveilleux NameLevel: 4 +Source: (L5R p48) Attributes: {} --- > [Des objets magiques rares et merveilleux](hd_l5r_magic.md) diff --git a/Data/HD/hd_l5r_ranger.md b/Data/HD/hd_l5r_ranger.md index 072b83c7..74b099ae 100644 --- a/Data/HD/hd_l5r_ranger.md +++ b/Data/HD/hd_l5r_ranger.md @@ -1,12 +1,12 @@ --- !Items -Name: Rôdeur des cinq Royaumes -Source: (L5R p52) Id: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes RootId: l5r_ranger_hd.md ParentLink: l5r_index_hd.md +Name: Rôdeur des cinq Royaumes ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p52) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_ranger_apaisement_des_animaux.md b/Data/HD/hd_l5r_ranger_apaisement_des_animaux.md index 12b20716..6a252e6d 100644 --- a/Data/HD/hd_l5r_ranger_apaisement_des_animaux.md +++ b/Data/HD/hd_l5r_ranger_apaisement_des_animaux.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Apaisement des animaux -Source: (L5R p53) Id: l5r_ranger_hd.md#apaisement-des-animaux ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 5 +Source: (L5R p53) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_aptitudes_de_classe.md b/Data/HD/hd_l5r_ranger_aptitudes_de_classe.md index b7261a2b..3e944b48 100644 --- a/Data/HD/hd_l5r_ranger_aptitudes_de_classe.md +++ b/Data/HD/hd_l5r_ranger_aptitudes_de_classe.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Aptitudes de classe -Source: (L5R p52) Id: l5r_ranger_hd.md#aptitudes-de-classe ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 3 +Source: (L5R p52) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_archetypes_de_rodeur.md b/Data/HD/hd_l5r_ranger_archetypes_de_rodeur.md index fa77d68b..4ad492b5 100644 --- a/Data/HD/hd_l5r_ranger_archetypes_de_rodeur.md +++ b/Data/HD/hd_l5r_ranger_archetypes_de_rodeur.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Archétypes de rôdeur -Source: (L5R p55) Id: l5r_ranger_hd.md#archétypes-de-rôdeur ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 3 +Source: (L5R p55) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_chasseur_emerite.md b/Data/HD/hd_l5r_ranger_chasseur_emerite.md index 72d5114d..e5ec4b98 100644 --- a/Data/HD/hd_l5r_ranger_chasseur_emerite.md +++ b/Data/HD/hd_l5r_ranger_chasseur_emerite.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Chasseur émérite -Source: (L5R p53) Id: l5r_ranger_hd.md#chasseur-émérite ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 5 +Source: (L5R p53) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_compagnon_spirituel.md b/Data/HD/hd_l5r_ranger_compagnon_spirituel.md index f46becbd..fba0a050 100644 --- a/Data/HD/hd_l5r_ranger_compagnon_spirituel.md +++ b/Data/HD/hd_l5r_ranger_compagnon_spirituel.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Compagnon spirituel -Source: (L5R p54) Id: l5r_ranger_hd.md#compagnon-spirituel ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 5 +Source: (L5R p54) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_constitution_hors_norme.md b/Data/HD/hd_l5r_ranger_constitution_hors_norme.md index 6ac302c0..0911bd94 100644 --- a/Data/HD/hd_l5r_ranger_constitution_hors_norme.md +++ b/Data/HD/hd_l5r_ranger_constitution_hors_norme.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Constitution hors norme -Source: (L5R p54) Id: l5r_ranger_hd.md#constitution-hors-norme ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 5 +Source: (L5R p54) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_exile.md b/Data/HD/hd_l5r_ranger_exile.md index 03252f9a..445b3421 100644 --- a/Data/HD/hd_l5r_ranger_exile.md +++ b/Data/HD/hd_l5r_ranger_exile.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Exilé -Source: (L5R p55) Id: l5r_ranger_hd.md#exilé ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 4 +Source: (L5R p55) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_fantome_insaisissable.md b/Data/HD/hd_l5r_ranger_fantome_insaisissable.md index 2916560d..88a5f21b 100644 --- a/Data/HD/hd_l5r_ranger_fantome_insaisissable.md +++ b/Data/HD/hd_l5r_ranger_fantome_insaisissable.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fantôme insaisissable -Source: (L5R p54) Id: l5r_ranger_hd.md#fantôme-insaisissable ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 5 +Source: (L5R p54) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_fils_de_la_nature.md b/Data/HD/hd_l5r_ranger_fils_de_la_nature.md index 7f2e92b4..e160eaa3 100644 --- a/Data/HD/hd_l5r_ranger_fils_de_la_nature.md +++ b/Data/HD/hd_l5r_ranger_fils_de_la_nature.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fils de la nature -Source: (L5R p52) Id: l5r_ranger_hd.md#fils-de-la-nature ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 4 +Source: (L5R p52) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_onguents.md b/Data/HD/hd_l5r_ranger_onguents.md index de8c0441..78c5717e 100644 --- a/Data/HD/hd_l5r_ranger_onguents.md +++ b/Data/HD/hd_l5r_ranger_onguents.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Onguents -Source: (L5R p52) Id: l5r_ranger_hd.md#onguents ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 5 +Source: (L5R p52) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_pisteur.md b/Data/HD/hd_l5r_ranger_pisteur.md index bd354eea..6fae20e8 100644 --- a/Data/HD/hd_l5r_ranger_pisteur.md +++ b/Data/HD/hd_l5r_ranger_pisteur.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Pisteur -Source: (L5R p55) Id: l5r_ranger_hd.md#pisteur ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 4 +Source: (L5R p55) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_sens_aiguises.md b/Data/HD/hd_l5r_ranger_sens_aiguises.md index 0be65a37..8dc85bb9 100644 --- a/Data/HD/hd_l5r_ranger_sens_aiguises.md +++ b/Data/HD/hd_l5r_ranger_sens_aiguises.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Sens aiguisés -Source: (L5R p54) Id: l5r_ranger_hd.md#sens-aiguisés ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 5 +Source: (L5R p54) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_sens_du_danger.md b/Data/HD/hd_l5r_ranger_sens_du_danger.md index 41d9b1e6..5f549480 100644 --- a/Data/HD/hd_l5r_ranger_sens_du_danger.md +++ b/Data/HD/hd_l5r_ranger_sens_du_danger.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Sens du danger -Source: (L5R p55) Id: l5r_ranger_hd.md#sens-du-danger ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 4 +Source: (L5R p55) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_tableau_devolution.md b/Data/HD/hd_l5r_ranger_tableau_devolution.md index eb257365..258d79df 100644 --- a/Data/HD/hd_l5r_ranger_tableau_devolution.md +++ b/Data/HD/hd_l5r_ranger_tableau_devolution.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Tableau d'évolution -Source: (L5R p53) Id: l5r_ranger_hd.md#tableau-dévolution ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 4 +Source: (L5R p53) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_ranger_traqueur.md b/Data/HD/hd_l5r_ranger_traqueur.md index 020e282c..4546c92b 100644 --- a/Data/HD/hd_l5r_ranger_traqueur.md +++ b/Data/HD/hd_l5r_ranger_traqueur.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Traqueur -Source: (L5R p55) Id: l5r_ranger_hd.md#traqueur ParentLink: l5r_ranger_hd.md#rôdeur-des-cinq-royaumes ParentName: Rôdeur des cinq Royaumes NameLevel: 4 +Source: (L5R p55) Attributes: {} --- > [Rôdeur des cinq Royaumes](hd_l5r_ranger.md) diff --git a/Data/HD/hd_l5r_rituals.md b/Data/HD/hd_l5r_rituals.md index 59333ace..efbae575 100644 --- a/Data/HD/hd_l5r_rituals.md +++ b/Data/HD/hd_l5r_rituals.md @@ -1,12 +1,12 @@ --- !Items -Name: Lancer un rituel -Source: (L5R p67) Id: l5r_rituals_hd.md#lancer-un-rituel RootId: l5r_rituals_hd.md ParentLink: l5r_index_hd.md +Name: Lancer un rituel ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p67) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_rituals_assistants.md b/Data/HD/hd_l5r_rituals_assistants.md index e53971b2..569d8411 100644 --- a/Data/HD/hd_l5r_rituals_assistants.md +++ b/Data/HD/hd_l5r_rituals_assistants.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Assistants -Source: (L5R p68) Id: l5r_rituals_hd.md#assistants ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 4 +Source: (L5R p68) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_attaque.md b/Data/HD/hd_l5r_rituals_attaque.md index 8cc8c704..08590395 100644 --- a/Data/HD/hd_l5r_rituals_attaque.md +++ b/Data/HD/hd_l5r_rituals_attaque.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Attaque -Source: (L5R p70) Id: l5r_rituals_hd.md#attaque ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p70) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_augmentationreduction.md b/Data/HD/hd_l5r_rituals_augmentationreduction.md index ca29e468..767789fc 100644 --- a/Data/HD/hd_l5r_rituals_augmentationreduction.md +++ b/Data/HD/hd_l5r_rituals_augmentationreduction.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Augmentation/Réduction -Source: (L5R p71) Id: l5r_rituals_hd.md#augmentationréduction ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p71) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_changement_de_personnalite.md b/Data/HD/hd_l5r_rituals_changement_de_personnalite.md index 000af92b..39d67a35 100644 --- a/Data/HD/hd_l5r_rituals_changement_de_personnalite.md +++ b/Data/HD/hd_l5r_rituals_changement_de_personnalite.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Changement de personnalité -Source: (L5R p71) Id: l5r_rituals_hd.md#changement-de-personnalité ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p71) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_chasse_ancestrale.md b/Data/HD/hd_l5r_rituals_chasse_ancestrale.md index e5212f1d..f0632fa0 100644 --- a/Data/HD/hd_l5r_rituals_chasse_ancestrale.md +++ b/Data/HD/hd_l5r_rituals_chasse_ancestrale.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Chasse ancestrale -Source: (L5R p72) Id: l5r_rituals_hd.md#chasse-ancestrale ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 3 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_composantes.md b/Data/HD/hd_l5r_rituals_composantes.md index 5a6c2136..d24524a9 100644 --- a/Data/HD/hd_l5r_rituals_composantes.md +++ b/Data/HD/hd_l5r_rituals_composantes.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Composantes -Source: (L5R p68) Id: l5r_rituals_hd.md#composantes ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 4 +Source: (L5R p68) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_corruption.md b/Data/HD/hd_l5r_rituals_corruption.md index f2fa6178..5a1dedbc 100644 --- a/Data/HD/hd_l5r_rituals_corruption.md +++ b/Data/HD/hd_l5r_rituals_corruption.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Corruption -Source: (L5R p68) Id: l5r_rituals_hd.md#corruption ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 3 +Source: (L5R p68) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_degats.md b/Data/HD/hd_l5r_rituals_degats.md index 8f6414b7..7d118044 100644 --- a/Data/HD/hd_l5r_rituals_degats.md +++ b/Data/HD/hd_l5r_rituals_degats.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Dégâts -Source: (L5R p72) Id: l5r_rituals_hd.md#dégâts ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_domaines_de_magie.md b/Data/HD/hd_l5r_rituals_domaines_de_magie.md index 067b4ee4..b3207ed0 100644 --- a/Data/HD/hd_l5r_rituals_domaines_de_magie.md +++ b/Data/HD/hd_l5r_rituals_domaines_de_magie.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Domaines de magie -Source: (L5R p70) Id: l5r_rituals_hd.md#domaines-de-magie ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 3 +Source: (L5R p70) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_don_specifique.md b/Data/HD/hd_l5r_rituals_don_specifique.md index 04b44863..66fdbf9e 100644 --- a/Data/HD/hd_l5r_rituals_don_specifique.md +++ b/Data/HD/hd_l5r_rituals_don_specifique.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Don spécifique -Source: (L5R p75) Id: l5r_rituals_hd.md#don-spécifique ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 3 +Source: (L5R p75) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_duree_et_portee.md b/Data/HD/hd_l5r_rituals_duree_et_portee.md index 3ae9dccc..04c4565a 100644 --- a/Data/HD/hd_l5r_rituals_duree_et_portee.md +++ b/Data/HD/hd_l5r_rituals_duree_et_portee.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Durée et portée -Source: (L5R p72) Id: l5r_rituals_hd.md#durée-et-portée ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_echec_du_rituel.md b/Data/HD/hd_l5r_rituals_echec_du_rituel.md index 504299fa..9e0aa61e 100644 --- a/Data/HD/hd_l5r_rituals_echec_du_rituel.md +++ b/Data/HD/hd_l5r_rituals_echec_du_rituel.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Echec du rituel -Source: (L5R p68) Id: l5r_rituals_hd.md#echec-du-rituel ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 3 +Source: (L5R p68) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_etape_1_determiner_le_domaine_et_le_degre_de_difficulte_de_base.md b/Data/HD/hd_l5r_rituals_etape_1_determiner_le_domaine_et_le_degre_de_difficulte_de_base.md index 81f9f10a..b145f368 100644 --- a/Data/HD/hd_l5r_rituals_etape_1_determiner_le_domaine_et_le_degre_de_difficulte_de_base.md +++ b/Data/HD/hd_l5r_rituals_etape_1_determiner_le_domaine_et_le_degre_de_difficulte_de_base.md @@ -1,11 +1,11 @@ --- !GenericItem Name: 'Étape 1 : déterminer le domaine et le degré de difficulté de base' -Source: (L5R p70) Id: l5r_rituals_hd.md#Étape-1--déterminer-le-domaine-et-le-degré-de-difficulté-de-base ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 4 +Source: (L5R p70) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_etape_2_modifier_le_degre_de_difficulte.md b/Data/HD/hd_l5r_rituals_etape_2_modifier_le_degre_de_difficulte.md index b83fcb21..36fc6a1d 100644 --- a/Data/HD/hd_l5r_rituals_etape_2_modifier_le_degre_de_difficulte.md +++ b/Data/HD/hd_l5r_rituals_etape_2_modifier_le_degre_de_difficulte.md @@ -1,11 +1,11 @@ --- !GenericItem Name: 'Étape 2 : Modifier le degré de difficulté' -Source: (L5R p70) Id: l5r_rituals_hd.md#Étape-2--modifier-le-degré-de-difficulté ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 4 +Source: (L5R p70) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_etape_3_determiner_leffet_en_cas_dechec.md b/Data/HD/hd_l5r_rituals_etape_3_determiner_leffet_en_cas_dechec.md index 3ec80902..03300cc1 100644 --- a/Data/HD/hd_l5r_rituals_etape_3_determiner_leffet_en_cas_dechec.md +++ b/Data/HD/hd_l5r_rituals_etape_3_determiner_leffet_en_cas_dechec.md @@ -1,11 +1,11 @@ --- !GenericItem Name: "Étape 3 : déterminer l'effet en cas d'échec" -Source: (L5R p70) Id: l5r_rituals_hd.md#Étape-3--déterminer-leffet-en-cas-déchec ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 4 +Source: (L5R p70) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_etape_4_determiner_le_niveau_du_rituel.md b/Data/HD/hd_l5r_rituals_etape_4_determiner_le_niveau_du_rituel.md index ccaadd03..128d0ff4 100644 --- a/Data/HD/hd_l5r_rituals_etape_4_determiner_le_niveau_du_rituel.md +++ b/Data/HD/hd_l5r_rituals_etape_4_determiner_le_niveau_du_rituel.md @@ -1,11 +1,11 @@ --- !GenericItem Name: 'Étape 4 : déterminer le niveau du rituel' -Source: (L5R p72) Id: l5r_rituals_hd.md#Étape-4--déterminer-le-niveau-du-rituel ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 4 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_fausse_verite.md b/Data/HD/hd_l5r_rituals_fausse_verite.md index 5e5b7ef3..694fbf76 100644 --- a/Data/HD/hd_l5r_rituals_fausse_verite.md +++ b/Data/HD/hd_l5r_rituals_fausse_verite.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Fausse vérité -Source: (L5R p72) Id: l5r_rituals_hd.md#fausse-vérité ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_illusion.md b/Data/HD/hd_l5r_rituals_illusion.md index 99f2b0ad..6d5b0e13 100644 --- a/Data/HD/hd_l5r_rituals_illusion.md +++ b/Data/HD/hd_l5r_rituals_illusion.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Illusion -Source: (L5R p72) Id: l5r_rituals_hd.md#illusion ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_inversion.md b/Data/HD/hd_l5r_rituals_inversion.md index 314928aa..293510bf 100644 --- a/Data/HD/hd_l5r_rituals_inversion.md +++ b/Data/HD/hd_l5r_rituals_inversion.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Inversion -Source: (L5R p72) Id: l5r_rituals_hd.md#inversion ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_jet_de_sauvegarde.md b/Data/HD/hd_l5r_rituals_jet_de_sauvegarde.md index 6099720d..cfb1a1a1 100644 --- a/Data/HD/hd_l5r_rituals_jet_de_sauvegarde.md +++ b/Data/HD/hd_l5r_rituals_jet_de_sauvegarde.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Jet de sauvegarde -Source: (L5R p72) Id: l5r_rituals_hd.md#jet-de-sauvegarde ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_la_confrontation.md b/Data/HD/hd_l5r_rituals_la_confrontation.md index 6f18e67c..b83e8363 100644 --- a/Data/HD/hd_l5r_rituals_la_confrontation.md +++ b/Data/HD/hd_l5r_rituals_la_confrontation.md @@ -1,11 +1,11 @@ --- !GenericItem Name: La confrontation -Source: (L5R p73) Id: l5r_rituals_hd.md#la-confrontation ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 3 +Source: (L5R p73) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_magie_hostile.md b/Data/HD/hd_l5r_rituals_magie_hostile.md index c8ddec1b..2e0653d8 100644 --- a/Data/HD/hd_l5r_rituals_magie_hostile.md +++ b/Data/HD/hd_l5r_rituals_magie_hostile.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Magie hostile -Source: (L5R p72) Id: l5r_rituals_hd.md#magie-hostile ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_mort.md b/Data/HD/hd_l5r_rituals_mort.md index ce369869..0ca3e859 100644 --- a/Data/HD/hd_l5r_rituals_mort.md +++ b/Data/HD/hd_l5r_rituals_mort.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Mort -Source: (L5R p72) Id: l5r_rituals_hd.md#mort ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_nombre_de_succes.md b/Data/HD/hd_l5r_rituals_nombre_de_succes.md index dc752c5a..0bdb919b 100644 --- a/Data/HD/hd_l5r_rituals_nombre_de_succes.md +++ b/Data/HD/hd_l5r_rituals_nombre_de_succes.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Nombre de succès -Source: (L5R p72) Id: l5r_rituals_hd.md#nombre-de-succès ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_parametres_du_rituel_et_modificateurs_au_dd_des_tests_de_competence.md b/Data/HD/hd_l5r_rituals_parametres_du_rituel_et_modificateurs_au_dd_des_tests_de_competence.md index f59e8343..ec270f53 100644 --- a/Data/HD/hd_l5r_rituals_parametres_du_rituel_et_modificateurs_au_dd_des_tests_de_competence.md +++ b/Data/HD/hd_l5r_rituals_parametres_du_rituel_et_modificateurs_au_dd_des_tests_de_competence.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Paramètres du rituel et modificateurs au DD des tests de compétence -Source: (L5R p71) Id: l5r_rituals_hd.md#paramètres-du-rituel-et-modificateurs-au-dd-des-tests-de-compétence ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p71) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_perce_reves.md b/Data/HD/hd_l5r_rituals_perce_reves.md index ecf6243c..1e53eb78 100644 --- a/Data/HD/hd_l5r_rituals_perce_reves.md +++ b/Data/HD/hd_l5r_rituals_perce_reves.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Perce-rêves -Source: (L5R p74) Id: l5r_rituals_hd.md#perce-rêves ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 3 +Source: (L5R p74) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_quelques_exemples_de_rituel.md b/Data/HD/hd_l5r_rituals_quelques_exemples_de_rituel.md index 39427536..580c739c 100644 --- a/Data/HD/hd_l5r_rituals_quelques_exemples_de_rituel.md +++ b/Data/HD/hd_l5r_rituals_quelques_exemples_de_rituel.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Quelques exemples de rituel -Source: (L5R p72) Id: l5r_rituals_hd.md#quelques-exemples-de-rituel ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 2 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_renversement.md b/Data/HD/hd_l5r_rituals_renversement.md index 3a794eb7..e9c2b185 100644 --- a/Data/HD/hd_l5r_rituals_renversement.md +++ b/Data/HD/hd_l5r_rituals_renversement.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Renversement -Source: (L5R p72) Id: l5r_rituals_hd.md#renversement ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 5 +Source: (L5R p72) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_resister_au_rituel.md b/Data/HD/hd_l5r_rituals_resister_au_rituel.md index 387a32df..5f8f2a6a 100644 --- a/Data/HD/hd_l5r_rituals_resister_au_rituel.md +++ b/Data/HD/hd_l5r_rituals_resister_au_rituel.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Résister au rituel -Source: (L5R p68) Id: l5r_rituals_hd.md#résister-au-rituel ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 4 +Source: (L5R p68) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_sourcelin.md b/Data/HD/hd_l5r_rituals_sourcelin.md index 41f70891..f1ccf8ab 100644 --- a/Data/HD/hd_l5r_rituals_sourcelin.md +++ b/Data/HD/hd_l5r_rituals_sourcelin.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Sourcelin -Source: (L5R p75) Id: l5r_rituals_hd.md#sourcelin ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 2 +Source: (L5R p75) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rituals_tests_de_competence.md b/Data/HD/hd_l5r_rituals_tests_de_competence.md index cb36b360..72cc1e70 100644 --- a/Data/HD/hd_l5r_rituals_tests_de_competence.md +++ b/Data/HD/hd_l5r_rituals_tests_de_competence.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Tests de compétence -Source: (L5R p68) Id: l5r_rituals_hd.md#tests-de-compétence ParentLink: l5r_rituals_hd.md#lancer-un-rituel ParentName: Lancer un rituel NameLevel: 3 +Source: (L5R p68) Attributes: {} --- > [Lancer un rituel](hd_l5r_rituals.md) diff --git a/Data/HD/hd_l5r_rogue.md b/Data/HD/hd_l5r_rogue.md index 22683e8a..0109919a 100644 --- a/Data/HD/hd_l5r_rogue.md +++ b/Data/HD/hd_l5r_rogue.md @@ -1,12 +1,12 @@ --- !Items -Name: Le savant -Source: (L5R p65) Id: l5r_rogue_hd.md#le-savant RootId: l5r_rogue_hd.md ParentLink: l5r_index_hd.md +Name: Le savant ParentName: Les Cinq Royaumes NameLevel: 2 +Source: (L5R p65) Attributes: {} --- >  [Les Cinq Royaumes](hd_l5r_index.md) diff --git a/Data/HD/hd_l5r_rogue_argot_des_voleurs_devient_don_des_langues.md b/Data/HD/hd_l5r_rogue_argot_des_voleurs_devient_don_des_langues.md index d4f18c09..eaa8b36c 100644 --- a/Data/HD/hd_l5r_rogue_argot_des_voleurs_devient_don_des_langues.md +++ b/Data/HD/hd_l5r_rogue_argot_des_voleurs_devient_don_des_langues.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Argot des voleurs devient don des langues -Source: (L5R p65) Id: l5r_rogue_hd.md#argot-des-voleurs-devient-don-des-langues ParentLink: l5r_rogue_hd.md#le-savant ParentName: Le savant NameLevel: 4 +Source: (L5R p65) Attributes: {} --- > [Le savant](hd_l5r_rogue.md) diff --git a/Data/HD/hd_l5r_rogue_attaque_sournoise_devient_tome_des_mysteres.md b/Data/HD/hd_l5r_rogue_attaque_sournoise_devient_tome_des_mysteres.md index 2c256204..f817fb8a 100644 --- a/Data/HD/hd_l5r_rogue_attaque_sournoise_devient_tome_des_mysteres.md +++ b/Data/HD/hd_l5r_rogue_attaque_sournoise_devient_tome_des_mysteres.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Attaque sournoise devient Tome des mystères -Source: (L5R p65) Id: l5r_rogue_hd.md#attaque-sournoise-devient-tome-des-mystères ParentLink: l5r_rogue_hd.md#le-savant ParentName: Le savant NameLevel: 4 +Source: (L5R p65) Attributes: {} --- > [Le savant](hd_l5r_rogue.md) diff --git a/Data/HD/hd_l5r_rogue_esquive_instinctive_devient_revelation.md b/Data/HD/hd_l5r_rogue_esquive_instinctive_devient_revelation.md index 5fc02ef7..7b44de6e 100644 --- a/Data/HD/hd_l5r_rogue_esquive_instinctive_devient_revelation.md +++ b/Data/HD/hd_l5r_rogue_esquive_instinctive_devient_revelation.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Esquive instinctive devient révélation -Source: (L5R p66) Id: l5r_rogue_hd.md#esquive-instinctive-devient-révélation ParentLink: l5r_rogue_hd.md#le-savant ParentName: Le savant NameLevel: 4 +Source: (L5R p66) Attributes: {} --- > [Le savant](hd_l5r_rogue.md) diff --git a/Data/HD/hd_l5r_rogue_insaisissable_devient_revelation_amelioree.md b/Data/HD/hd_l5r_rogue_insaisissable_devient_revelation_amelioree.md index 2b1dd008..6cd8f6e2 100644 --- a/Data/HD/hd_l5r_rogue_insaisissable_devient_revelation_amelioree.md +++ b/Data/HD/hd_l5r_rogue_insaisissable_devient_revelation_amelioree.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Insaisissable devient révélation améliorée -Source: (L5R p66) Id: l5r_rogue_hd.md#insaisissable-devient-révélation-améliorée ParentLink: l5r_rogue_hd.md#le-savant ParentName: Le savant NameLevel: 4 +Source: (L5R p66) Attributes: {} --- > [Le savant](hd_l5r_rogue.md) diff --git a/Data/HD/hd_l5r_rogue_maitrises.md b/Data/HD/hd_l5r_rogue_maitrises.md index 6a58b9cf..fef7c3c1 100644 --- a/Data/HD/hd_l5r_rogue_maitrises.md +++ b/Data/HD/hd_l5r_rogue_maitrises.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Maîtrises -Source: (L5R p65) Id: l5r_rogue_hd.md#maîtrises ParentLink: l5r_rogue_hd.md#le-savant ParentName: Le savant NameLevel: 4 +Source: (L5R p65) Attributes: {} --- > [Le savant](hd_l5r_rogue.md) diff --git a/Data/HD/hd_l5r_rogue_points_de_combativite.md b/Data/HD/hd_l5r_rogue_points_de_combativite.md index 30989ebf..fdbfa123 100644 --- a/Data/HD/hd_l5r_rogue_points_de_combativite.md +++ b/Data/HD/hd_l5r_rogue_points_de_combativite.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Points de combativité -Source: (L5R p65) Id: l5r_rogue_hd.md#points-de-combativité ParentLink: l5r_rogue_hd.md#le-savant ParentName: Le savant NameLevel: 4 +Source: (L5R p65) Attributes: {} --- > [Le savant](hd_l5r_rogue.md) diff --git a/Data/HD/hd_l5r_rogue_ruse_devient_maitre_herboriste.md b/Data/HD/hd_l5r_rogue_ruse_devient_maitre_herboriste.md index 18c9251b..ffddf2fe 100644 --- a/Data/HD/hd_l5r_rogue_ruse_devient_maitre_herboriste.md +++ b/Data/HD/hd_l5r_rogue_ruse_devient_maitre_herboriste.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Ruse devient maître herboriste -Source: (L5R p66) Id: l5r_rogue_hd.md#ruse-devient-maître-herboriste ParentLink: l5r_rogue_hd.md#le-savant ParentName: Le savant NameLevel: 4 +Source: (L5R p66) Attributes: {} --- > [Le savant](hd_l5r_rogue.md) diff --git a/Data/HD/hd_languages.md b/Data/HD/hd_languages.md index 811530b7..994b8e6b 100644 --- a/Data/HD/hd_languages.md +++ b/Data/HD/hd_languages.md @@ -1,13 +1,13 @@ --- !Items -Name: Langues -AltName: Languages (SRD p59) -Source: (MDR p75) Id: languages_hd.md#langues RootId: languages_hd.md ParentLink: personnality_background_hd.md# +Name: Langues ParentName: Personnalité et Historique NameLevel: 1 +AltName: Languages (SRD p59) +Source: (MDR p75) Attributes: {} --- >  [Personnalité et Historique](personnality_background_hd.md#) diff --git a/Data/HD/hd_madness.md b/Data/HD/hd_madness.md index 22a9fb7a..d560f2ff 100644 --- a/Data/HD/hd_madness.md +++ b/Data/HD/hd_madness.md @@ -1,13 +1,13 @@ --- !Items -Name: La folie -AltName: Madness -Source: (CEO p380)(SRD p201) Id: madness_hd.md#la-folie RootId: madness_hd.md ParentLink: index.md +Name: La folie ParentName: Créatures et oppositions NameLevel: 2 +AltName: Madness +Source: (CEO p380)(SRD p201) Attributes: {} --- >  [Créatures et oppositions](index.md) diff --git a/Data/HD/hd_magicitems.md b/Data/HD/hd_magicitems.md index 1627693f..5feb1e65 100644 --- a/Data/HD/hd_magicitems.md +++ b/Data/HD/hd_magicitems.md @@ -1,13 +1,13 @@ --- !Items -Name: Objets magiques -AltName: Magic Items (SRD p206) -Source: (CDC p129) Id: magicitems_hd.md#objets-magiques RootId: magicitems_hd.md ParentLink: index.md +Name: Objets magiques ParentName: Cadre de campagne NameLevel: 1 +AltName: Magic Items (SRD p206) +Source: (CDC p129) Attributes: {} --- >  [Cadre de campagne](index.md) diff --git a/Data/HD/hd_magicitems_az.md b/Data/HD/hd_magicitems_az.md index 82c8a0da..1d4d6076 100644 --- a/Data/HD/hd_magicitems_az.md +++ b/Data/HD/hd_magicitems_az.md @@ -1,13 +1,13 @@ --- !GenericItem Name: Les objets magiques -AltName: Magic Items A-Z (SRD p207) -Source: (COC p138) Id: magicitems_az_hd.md#les-objets-magiques RootId: magicitems_az_hd.md ParentLink: index.md ParentName: Cadre de campagne NameLevel: 2 +AltName: Magic Items A-Z (SRD p207) +Source: (COC p138) Attributes: {} --- >  [Cadre de campagne](index.md) diff --git a/Data/HD/hd_magicitems_harmonisation.md b/Data/HD/hd_magicitems_harmonisation.md index 79e81b11..0606b14a 100644 --- a/Data/HD/hd_magicitems_harmonisation.md +++ b/Data/HD/hd_magicitems_harmonisation.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Harmonisation -AltName: Attunement (SRD p206) -Source: (CDC p130) Id: magicitems_hd.md#harmonisation ParentLink: magicitems_hd.md#objets-magiques ParentName: Objets magiques NameLevel: 3 +AltName: Attunement (SRD p206) +Source: (CDC p130) Attributes: {} --- > [Objets magiques](hd_magicitems.md) diff --git a/Data/HD/hd_manage_health.md b/Data/HD/hd_manage_health.md index 9fcb11dd..dffac625 100644 --- a/Data/HD/hd_manage_health.md +++ b/Data/HD/hd_manage_health.md @@ -1,9 +1,9 @@ --- !Items -Name: Gérer la santé Id: manage_health_hd.md#gérer-la-santé RootId: manage_health_hd.md ParentLink: index.md +Name: Gérer la santé ParentName: Manuel des règles NameLevel: 1 Attributes: {} diff --git a/Data/HD/hd_monk_points_de_vie.md b/Data/HD/hd_monk_points_de_vie.md index fa630fa0..31be71b4 100644 --- a/Data/HD/hd_monk_points_de_vie.md +++ b/Data/HD/hd_monk_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d8 par niveau de moine HitPointsAt1stLevel: 8 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d8 (ou 5) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de moine après le niveau 1 Id: monk_hd.md#points-de-vie ParentLink: monk_hd.md#moine -Name: Points de vie ParentName: Moine NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_movement.md b/Data/HD/hd_movement.md index 88ce7d29..de6c712d 100644 --- a/Data/HD/hd_movement.md +++ b/Data/HD/hd_movement.md @@ -1,13 +1,13 @@ --- !Items -Name: Déplacement -AltName: Movement (SRD p84) -Source: (MDR p270) Id: movement_hd.md#déplacement RootId: movement_hd.md ParentLink: adventure_hd.md +Name: Déplacement ParentName: Partir à l'aventure NameLevel: 1 +AltName: Movement (SRD p84) +Source: (MDR p270) Attributes: {} --- >  [Partir à l'aventure](hd_adventure.md) diff --git a/Data/HD/hd_multiclassing.md b/Data/HD/hd_multiclassing.md index 654c8aa2..f67719dd 100644 --- a/Data/HD/hd_multiclassing.md +++ b/Data/HD/hd_multiclassing.md @@ -1,13 +1,13 @@ --- !Items -Name: Multiclassage -AltName: Multiclassing (SRD p56) -Source: (MDR p242) Id: multiclassing_hd.md#multiclassage RootId: multiclassing_hd.md ParentLink: custom_options_hd.md +Name: Multiclassage ParentName: Options de personnalisation NameLevel: 1 +AltName: Multiclassing (SRD p56) +Source: (MDR p242) Attributes: {} --- >  [Options de personnalisation](hd_custom_options.md) diff --git a/Data/HD/hd_objects.md b/Data/HD/hd_objects.md index 4a521fbf..3412fe5f 100644 --- a/Data/HD/hd_objects.md +++ b/Data/HD/hd_objects.md @@ -1,13 +1,13 @@ --- !Items -Name: Les objets -AltName: 'Objects ' -Source: (CEO p380)(SRD p203) Id: objects_hd.md#les-objets RootId: objects_hd.md ParentLink: index.md +Name: Les objets ParentName: Créatures et oppositions NameLevel: 2 +AltName: 'Objects ' +Source: (CEO p380)(SRD p203) Attributes: {} --- >  [Créatures et oppositions](index.md) diff --git a/Data/HD/hd_paladin_points_de_vie.md b/Data/HD/hd_paladin_points_de_vie.md index 1ce48a7d..21bbd162 100644 --- a/Data/HD/hd_paladin_points_de_vie.md +++ b/Data/HD/hd_paladin_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d10 par niveau de paladin HitPointsAt1stLevel: 10 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d10 (ou 6) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de paladin après le niveau 1 Id: paladin_hd.md#points-de-vie ParentLink: paladin_hd.md#paladin -Name: Points de vie ParentName: Paladin NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_pantheons.md b/Data/HD/hd_pantheons.md index a4c840bd..765dee34 100644 --- a/Data/HD/hd_pantheons.md +++ b/Data/HD/hd_pantheons.md @@ -1,13 +1,13 @@ --- !Items -Name: Panthéons historiques et fantastiques -AltName: Pantheons -Source: (MDR p413)(SRD p360) Id: pantheons_hd.md#panthéons-historiques-et-fantastiques RootId: pantheons_hd.md ParentLink: index.md +Name: Panthéons historiques et fantastiques ParentName: Manuel des règles NameLevel: 1 +AltName: Pantheons +Source: (MDR p413)(SRD p360) Attributes: {} --- >  [Manuel des règles](index.md) diff --git a/Data/HD/hd_pantheons_le_pantheon_celtique.md b/Data/HD/hd_pantheons_le_pantheon_celtique.md index 52da1269..0d7de8f4 100644 --- a/Data/HD/hd_pantheons_le_pantheon_celtique.md +++ b/Data/HD/hd_pantheons_le_pantheon_celtique.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Le panthéon celtique -AltName: The Celtic Pantheon -Source: (MDR p413)(SRD p360) Id: pantheons_hd.md#le-panthéon-celtique ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 3 +AltName: The Celtic Pantheon +Source: (MDR p413)(SRD p360) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_le_pantheon_d_osgild.md b/Data/HD/hd_pantheons_le_pantheon_d_osgild.md index e78baf83..99d5c097 100644 --- a/Data/HD/hd_pantheons_le_pantheon_d_osgild.md +++ b/Data/HD/hd_pantheons_le_pantheon_d_osgild.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Le panthéon d’Osgild -Source: (MDR p413) Id: pantheons_hd.md#le-panthéon-d’osgild ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 3 +Source: (MDR p413) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_le_pantheon_egyptien.md b/Data/HD/hd_pantheons_le_pantheon_egyptien.md index 06788767..b97c2e84 100644 --- a/Data/HD/hd_pantheons_le_pantheon_egyptien.md +++ b/Data/HD/hd_pantheons_le_pantheon_egyptien.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Le panthéon égyptien -AltName: 'Pantheons ' -Source: (MDR p413)(SRD p360) Id: pantheons_hd.md#le-panthéon-égyptien ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 3 +AltName: 'Pantheons ' +Source: (MDR p413)(SRD p360) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_le_pantheon_grec.md b/Data/HD/hd_pantheons_le_pantheon_grec.md index 003252c5..28864136 100644 --- a/Data/HD/hd_pantheons_le_pantheon_grec.md +++ b/Data/HD/hd_pantheons_le_pantheon_grec.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Le panthéon grec -AltName: Pantheons -Source: (MDR p413)(SRD p360) Id: pantheons_hd.md#le-panthéon-grec ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 3 +AltName: Pantheons +Source: (MDR p413)(SRD p360) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_le_pantheon_nordique.md b/Data/HD/hd_pantheons_le_pantheon_nordique.md index 7bec69cd..9530d2a9 100644 --- a/Data/HD/hd_pantheons_le_pantheon_nordique.md +++ b/Data/HD/hd_pantheons_le_pantheon_nordique.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Le panthéon nordique -AltName: 'Pantheons ' -Source: (MDR p413)(SRD p360) Id: pantheons_hd.md#le-panthéon-nordique ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 3 +AltName: 'Pantheons ' +Source: (MDR p413)(SRD p360) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_les_divinites_celtiques.md b/Data/HD/hd_pantheons_les_divinites_celtiques.md index 20ea31dc..d96e43f9 100644 --- a/Data/HD/hd_pantheons_les_divinites_celtiques.md +++ b/Data/HD/hd_pantheons_les_divinites_celtiques.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les divinités celtiques -AltName: Celtic Deities -Source: (MDR p414)(SRD p360) Id: pantheons_hd.md#les-divinités-celtiques ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 4 +AltName: Celtic Deities +Source: (MDR p414)(SRD p360) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_les_divinites_d_osgild.md b/Data/HD/hd_pantheons_les_divinites_d_osgild.md index 4c1e9d87..c8308252 100644 --- a/Data/HD/hd_pantheons_les_divinites_d_osgild.md +++ b/Data/HD/hd_pantheons_les_divinites_d_osgild.md @@ -1,11 +1,11 @@ --- !GenericItem Name: Les divinités d’Osgild -Source: (MDR p416) Id: pantheons_hd.md#les-divinités-d’osgild ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 4 +Source: (MDR p416) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_les_divinites_egyptiennes.md b/Data/HD/hd_pantheons_les_divinites_egyptiennes.md index 4a9ea41b..7373bdbf 100644 --- a/Data/HD/hd_pantheons_les_divinites_egyptiennes.md +++ b/Data/HD/hd_pantheons_les_divinites_egyptiennes.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les divinités égyptiennes -AltName: Egyptian Deities -Source: (MDR p415)(SRD p361) Id: pantheons_hd.md#les-divinités-égyptiennes ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 4 +AltName: Egyptian Deities +Source: (MDR p415)(SRD p361) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_les_divinites_grecques.md b/Data/HD/hd_pantheons_les_divinites_grecques.md index d47c393d..03f7ac84 100644 --- a/Data/HD/hd_pantheons_les_divinites_grecques.md +++ b/Data/HD/hd_pantheons_les_divinites_grecques.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les divinités grecques -AltName: Greek Deities -Source: (MDR p414)(SRD p361) Id: pantheons_hd.md#les-divinités-grecques ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 4 +AltName: Greek Deities +Source: (MDR p414)(SRD p361) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_pantheons_les_divinites_nordiques.md b/Data/HD/hd_pantheons_les_divinites_nordiques.md index 49eea253..190d8331 100644 --- a/Data/HD/hd_pantheons_les_divinites_nordiques.md +++ b/Data/HD/hd_pantheons_les_divinites_nordiques.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les divinités nordiques -AltName: Norse Deities -Source: (MDR p415)(SRD p361) Id: pantheons_hd.md#les-divinités-nordiques ParentLink: pantheons_hd.md#panthéons-historiques-et-fantastiques ParentName: Panthéons historiques et fantastiques NameLevel: 4 +AltName: Norse Deities +Source: (MDR p415)(SRD p361) Attributes: {} --- > [Panthéons historiques et fantastiques](hd_pantheons.md) diff --git a/Data/HD/hd_personnality_background.md b/Data/HD/hd_personnality_background.md index dd7462db..bc696090 100644 --- a/Data/HD/hd_personnality_background.md +++ b/Data/HD/hd_personnality_background.md @@ -1,9 +1,9 @@ --- !Items -Name: Personnalité et Historique Id: personnality_background_hd.md#personnalité-et-historique RootId: personnality_background_hd.md ParentLink: index.md +Name: Personnalité et Historique ParentName: Manuel des règles NameLevel: 1 Attributes: {} diff --git a/Data/HD/hd_planes.md b/Data/HD/hd_planes.md index c40fca22..e01f9663 100644 --- a/Data/HD/hd_planes.md +++ b/Data/HD/hd_planes.md @@ -1,13 +1,13 @@ --- !Items -Name: Jouer dans un multivers -AltName: 'Planes ' -Source: (CDC p120)(SRD p363) Id: planes_hd.md#jouer-dans-un-multivers RootId: planes_hd.md ParentLink: index.md +Name: Jouer dans un multivers ParentName: Cadre de campagne NameLevel: 2 +AltName: 'Planes ' +Source: (CDC p120)(SRD p363) Attributes: {} --- >  [Cadre de campagne](index.md) diff --git a/Data/HD/hd_poisons.md b/Data/HD/hd_poisons.md index f411fd84..87eaab77 100644 --- a/Data/HD/hd_poisons.md +++ b/Data/HD/hd_poisons.md @@ -1,12 +1,12 @@ --- !Items -Name: Les poisons -AltName: Poisons Id: poisons_hd.md#les-poisons RootId: poisons_hd.md ParentLink: index.md +Name: Les poisons ParentName: Créatures et oppositions NameLevel: 2 +AltName: Poisons Attributes: {} --- >  [Créatures et oppositions](index.md) diff --git a/Data/HD/hd_races.md b/Data/HD/hd_races.md index bed74a1e..ae095c1a 100644 --- a/Data/HD/hd_races.md +++ b/Data/HD/hd_races.md @@ -1,13 +1,13 @@ --- !Items -Name: Races -AltName: Races -Source: (MDR p36)(SRD p3) Id: races_hd.md#races RootId: races_hd.md ParentLink: index.md +Name: Races ParentName: Manuel des règles NameLevel: 1 +AltName: Races +Source: (MDR p36)(SRD p3) Attributes: {} --- >  [Manuel des règles](index.md) diff --git a/Data/HD/hd_races_age.md b/Data/HD/hd_races_age.md index 05ddeea9..f1d03f7d 100644 --- a/Data/HD/hd_races_age.md +++ b/Data/HD/hd_races_age.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Âge -AltName: Age -Source: (MDR p36)(SRD p3) Id: races_hd.md#Âge ParentLink: races_hd.md#traits-raciaux ParentName: Traits raciaux NameLevel: 4 +AltName: Age +Source: (MDR p36)(SRD p3) Attributes: {} --- > [Traits raciaux](hd_races_traits_raciaux.md) diff --git a/Data/HD/hd_races_alignement.md b/Data/HD/hd_races_alignement.md index dbb3fa56..da876de7 100644 --- a/Data/HD/hd_races_alignement.md +++ b/Data/HD/hd_races_alignement.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Alignement -AltName: Alignment -Source: (MDR p36)(SRD p3) Id: races_hd.md#alignement ParentLink: races_hd.md#traits-raciaux ParentName: Traits raciaux NameLevel: 4 +AltName: Alignment +Source: (MDR p36)(SRD p3) Attributes: {} --- > [Traits raciaux](hd_races_traits_raciaux.md) diff --git a/Data/HD/hd_races_augmentation_de_caracteristiques.md b/Data/HD/hd_races_augmentation_de_caracteristiques.md index 6d9e77d6..4444d9db 100644 --- a/Data/HD/hd_races_augmentation_de_caracteristiques.md +++ b/Data/HD/hd_races_augmentation_de_caracteristiques.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Augmentation de caractéristiques -AltName: Ability Score Increase -Source: (MDR p36)(SRD p3) Id: races_hd.md#augmentation-de-caractéristiques ParentLink: races_hd.md#traits-raciaux ParentName: Traits raciaux NameLevel: 4 +AltName: Ability Score Increase +Source: (MDR p36)(SRD p3) Attributes: {} --- > [Traits raciaux](hd_races_traits_raciaux.md) diff --git a/Data/HD/hd_races_langues.md b/Data/HD/hd_races_langues.md index 7253db5b..c9e86cf0 100644 --- a/Data/HD/hd_races_langues.md +++ b/Data/HD/hd_races_langues.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Langues -AltName: Languages -Source: (MDR p37)(SRD p3) Id: races_hd.md#langues ParentLink: races_hd.md#traits-raciaux ParentName: Traits raciaux NameLevel: 4 +AltName: Languages +Source: (MDR p37)(SRD p3) Attributes: {} --- > [Traits raciaux](hd_races_traits_raciaux.md) diff --git a/Data/HD/hd_races_peuples.md b/Data/HD/hd_races_peuples.md index 20f625f3..925158a4 100644 --- a/Data/HD/hd_races_peuples.md +++ b/Data/HD/hd_races_peuples.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Peuples -AltName: Subraces -Source: (MDR p37)(SRD p3) Id: races_hd.md#peuples ParentLink: races_hd.md#traits-raciaux ParentName: Traits raciaux NameLevel: 4 +AltName: Subraces +Source: (MDR p37)(SRD p3) Attributes: {} --- > [Traits raciaux](hd_races_traits_raciaux.md) diff --git a/Data/HD/hd_races_taille.md b/Data/HD/hd_races_taille.md index 44cc700f..b355626a 100644 --- a/Data/HD/hd_races_taille.md +++ b/Data/HD/hd_races_taille.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Taille -AltName: Size -Source: (MDR p37)(SRD p3) Id: races_hd.md#taille ParentLink: races_hd.md#traits-raciaux ParentName: Traits raciaux NameLevel: 4 +AltName: Size +Source: (MDR p37)(SRD p3) Attributes: {} --- > [Traits raciaux](hd_races_traits_raciaux.md) diff --git a/Data/HD/hd_races_traits_raciaux.md b/Data/HD/hd_races_traits_raciaux.md index 18949328..06d44632 100644 --- a/Data/HD/hd_races_traits_raciaux.md +++ b/Data/HD/hd_races_traits_raciaux.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Traits raciaux -AltName: Racial Traits -Source: (MDR p36)(SRD p3) Id: races_hd.md#traits-raciaux ParentLink: races_hd.md#races ParentName: Races NameLevel: 3 +AltName: Racial Traits +Source: (MDR p36)(SRD p3) Attributes: {} --- > [Races](hd_races.md) diff --git a/Data/HD/hd_races_vitesse.md b/Data/HD/hd_races_vitesse.md index d28167a4..29c0213f 100644 --- a/Data/HD/hd_races_vitesse.md +++ b/Data/HD/hd_races_vitesse.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Vitesse -AltName: Speed -Source: (MDR p37)(SRD p3) Id: races_hd.md#vitesse ParentLink: races_hd.md#traits-raciaux ParentName: Traits raciaux NameLevel: 4 +AltName: Speed +Source: (MDR p37)(SRD p3) Attributes: {} --- > [Traits raciaux](hd_races_traits_raciaux.md) diff --git a/Data/HD/hd_ranger_points_de_vie.md b/Data/HD/hd_ranger_points_de_vie.md index 723389c6..f32ca36b 100644 --- a/Data/HD/hd_ranger_points_de_vie.md +++ b/Data/HD/hd_ranger_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d10 par niveau de rôdeur HitPointsAt1stLevel: 10 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d10 (ou 6) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de rôdeur après le niveau 1 Id: ranger_hd.md#points-de-vie ParentLink: ranger_hd.md#rôdeur -Name: Points de vie ParentName: Rôdeur NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_resting.md b/Data/HD/hd_resting.md index aef346c2..201e77e0 100644 --- a/Data/HD/hd_resting.md +++ b/Data/HD/hd_resting.md @@ -1,13 +1,13 @@ --- !Items -Name: Repos -AltName: Resting (SRD p87) -Source: (MDR p303) Id: resting_hd.md#repos RootId: resting_hd.md ParentLink: manage_health_hd.md +Name: Repos ParentName: Gérer la santé NameLevel: 1 +AltName: Resting (SRD p87) +Source: (MDR p303) Attributes: {} --- >  [Gérer la santé](hd_manage_health.md) diff --git a/Data/HD/hd_rogue_points_de_vie.md b/Data/HD/hd_rogue_points_de_vie.md index df20078d..25c780df 100644 --- a/Data/HD/hd_rogue_points_de_vie.md +++ b/Data/HD/hd_rogue_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d8 par niveau de roublard HitPointsAt1stLevel: 8 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d8 (ou 5) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de roublard après le niveau 1 Id: rogue_hd.md#points-de-vie ParentLink: rogue_hd.md#roublard -Name: Points de vie ParentName: Roublard NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_sentient_magicitems.md b/Data/HD/hd_sentient_magicitems.md index b79ff40c..38fbdd3e 100644 --- a/Data/HD/hd_sentient_magicitems.md +++ b/Data/HD/hd_sentient_magicitems.md @@ -1,13 +1,13 @@ --- !Items -Name: Objets magiques intelligents -AltName: Sentient Magic Items (SRD p251) -Source: (CDC p189) Id: sentient_magicitems_hd.md#objets-magiques-intelligents RootId: sentient_magicitems_hd.md ParentLink: index.md +Name: Objets magiques intelligents ParentName: Cadre de campagne NameLevel: 1 +AltName: Sentient Magic Items (SRD p251) +Source: (CDC p189) Attributes: {} --- >  [Cadre de campagne](index.md) diff --git a/Data/HD/hd_sorcerer_points_de_vie.md b/Data/HD/hd_sorcerer_points_de_vie.md index 2942e43a..4f961cdc 100644 --- a/Data/HD/hd_sorcerer_points_de_vie.md +++ b/Data/HD/hd_sorcerer_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d6 par niveau d'ensorceleur HitPointsAt1stLevel: 6 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d6 (ou 4) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau d'ensorceleur après le niveau 1 Id: sorcerer_hd.md#points-de-vie ParentLink: sorcerer_hd.md#ensorceleur -Name: Points de vie ParentName: Ensorceleur NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_spellcasting.md b/Data/HD/hd_spellcasting.md index b2abc5d2..1c99bbe8 100644 --- a/Data/HD/hd_spellcasting.md +++ b/Data/HD/hd_spellcasting.md @@ -1,13 +1,13 @@ --- !Items -Name: Lancer des sorts -AltName: Spellcasting (SRD p100) -Source: (MDR p306) Id: spellcasting_hd.md#lancer-des-sorts RootId: spellcasting_hd.md ParentLink: index.md +Name: Lancer des sorts ParentName: Manuel des règles NameLevel: 1 +AltName: Spellcasting (SRD p100) +Source: (MDR p306) Attributes: {} --- >  [Manuel des règles](index.md) diff --git a/Data/HD/hd_spellcasting_action_bonus.md b/Data/HD/hd_spellcasting_action_bonus.md index d6e9a666..f6edbb10 100644 --- a/Data/HD/hd_spellcasting_action_bonus.md +++ b/Data/HD/hd_spellcasting_action_bonus.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Action bonus -AltName: Bonus Action (SRD p101) -Source: (MDR p307) Id: spellcasting_hd.md#action-bonus ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Bonus Action (SRD p101) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_cibles.md b/Data/HD/hd_spellcasting_cibles.md index ac69a0be..d6104b94 100644 --- a/Data/HD/hd_spellcasting_cibles.md +++ b/Data/HD/hd_spellcasting_cibles.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Cibles -AltName: Targets (SRD p102) -Source: (MDR p308) Id: spellcasting_hd.md#cibles ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Targets (SRD p102) +Source: (MDR p308) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_combiner_les_effets_magiques.md b/Data/HD/hd_spellcasting_combiner_les_effets_magiques.md index e29b5f9f..d9b924b1 100644 --- a/Data/HD/hd_spellcasting_combiner_les_effets_magiques.md +++ b/Data/HD/hd_spellcasting_combiner_les_effets_magiques.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Combiner les effets magiques -AltName: Combining Magical Effects (SRD p104) -Source: (MDR p310) Id: spellcasting_hd.md#combiner-les-effets-magiques ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Combining Magical Effects (SRD p104) +Source: (MDR p310) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_composantes.md b/Data/HD/hd_spellcasting_composantes.md index a2b6af95..1bf7f4ff 100644 --- a/Data/HD/hd_spellcasting_composantes.md +++ b/Data/HD/hd_spellcasting_composantes.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Composantes -AltName: Components (SRD p101) -Source: (MDR p308) Id: spellcasting_hd.md#composantes ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Components (SRD p101) +Source: (MDR p308) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_concentration.md b/Data/HD/hd_spellcasting_concentration.md index 65c1f745..10a58b54 100644 --- a/Data/HD/hd_spellcasting_concentration.md +++ b/Data/HD/hd_spellcasting_concentration.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Concentration -AltName: Concentration (SRD p102) -Source: (MDR p308) Id: spellcasting_hd.md#concentration ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Concentration (SRD p102) +Source: (MDR p308) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_cone.md b/Data/HD/hd_spellcasting_cone.md index 5ba46502..7ce2d3e4 100644 --- a/Data/HD/hd_spellcasting_cone.md +++ b/Data/HD/hd_spellcasting_cone.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Cône -AltName: Cone (SRD p103) -Source: (MDR p309) Id: spellcasting_hd.md#cône ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Cone (SRD p103) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_cube.md b/Data/HD/hd_spellcasting_cube.md index e26bec70..537d3e06 100644 --- a/Data/HD/hd_spellcasting_cube.md +++ b/Data/HD/hd_spellcasting_cube.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Cube -AltName: Cube (SRD p103) -Source: (MDR p309) Id: spellcasting_hd.md#cube ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Cube (SRD p103) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_cylindre.md b/Data/HD/hd_spellcasting_cylindre.md index 0a759f86..d18d00a6 100644 --- a/Data/HD/hd_spellcasting_cylindre.md +++ b/Data/HD/hd_spellcasting_cylindre.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Cylindre -AltName: Cylinder (SRD p103) -Source: (MDR p309) Id: spellcasting_hd.md#cylindre ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Cylinder (SRD p103) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_duree.md b/Data/HD/hd_spellcasting_duree.md index e83ab94b..2b6cab08 100644 --- a/Data/HD/hd_spellcasting_duree.md +++ b/Data/HD/hd_spellcasting_duree.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Durée -AltName: Duration (SRD p102) -Source: (MDR p308) Id: spellcasting_hd.md#durée ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Duration (SRD p102) +Source: (MDR p308) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_emplacements_de_sorts.md b/Data/HD/hd_spellcasting_emplacements_de_sorts.md index f7266cfe..f390ba95 100644 --- a/Data/HD/hd_spellcasting_emplacements_de_sorts.md +++ b/Data/HD/hd_spellcasting_emplacements_de_sorts.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Emplacements de sorts -AltName: Spell Slots (SRD p100) -Source: (MDR p306) Id: spellcasting_hd.md#emplacements-de-sorts ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Spell Slots (SRD p100) +Source: (MDR p306) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_instantanee.md b/Data/HD/hd_spellcasting_instantanee.md index 287b2308..5fa76359 100644 --- a/Data/HD/hd_spellcasting_instantanee.md +++ b/Data/HD/hd_spellcasting_instantanee.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Instantanée -AltName: Instantaneous (SRD p102) -Source: (MDR p308) Id: spellcasting_hd.md#instantanée ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Instantaneous (SRD p102) +Source: (MDR p308) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_jets_dattaque.md b/Data/HD/hd_spellcasting_jets_dattaque.md index d858675d..3e6bd278 100644 --- a/Data/HD/hd_spellcasting_jets_dattaque.md +++ b/Data/HD/hd_spellcasting_jets_dattaque.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Jets d'attaque -AltName: Attack Rolls (SRD p103) -Source: (MDR p310) Id: spellcasting_hd.md#jets-dattaque ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Attack Rolls (SRD p103) +Source: (MDR p310) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_jets_de_sauvegarde.md b/Data/HD/hd_spellcasting_jets_de_sauvegarde.md index 084be96d..3bc0e51b 100644 --- a/Data/HD/hd_spellcasting_jets_de_sauvegarde.md +++ b/Data/HD/hd_spellcasting_jets_de_sauvegarde.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Jets de sauvegarde -AltName: Saving Throws (SRD p103) -Source: (MDR p309) Id: spellcasting_hd.md#jets-de-sauvegarde ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Saving Throws (SRD p103) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_lancer_un_sort.md b/Data/HD/hd_spellcasting_lancer_un_sort.md index b11ff070..55341c43 100644 --- a/Data/HD/hd_spellcasting_lancer_un_sort.md +++ b/Data/HD/hd_spellcasting_lancer_un_sort.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Lancer un sort -AltName: Casting a Spell (SRD p101) -Source: (MDR p307) Id: spellcasting_hd.md#lancer-un-sort ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 2 +AltName: Casting a Spell (SRD p101) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_lancer_un_sort_via_un_emplacement_de_niveau_superieur.md b/Data/HD/hd_spellcasting_lancer_un_sort_via_un_emplacement_de_niveau_superieur.md index 3b92bb58..3f8eea42 100644 --- a/Data/HD/hd_spellcasting_lancer_un_sort_via_un_emplacement_de_niveau_superieur.md +++ b/Data/HD/hd_spellcasting_lancer_un_sort_via_un_emplacement_de_niveau_superieur.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Lancer un sort via un emplacement de niveau supérieur -AltName: Casting a Spell at a Higher Level (SRD p100) -Source: (MDR p306) Id: spellcasting_hd.md#lancer-un-sort-via-un-emplacement-de-niveau-supérieur ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Casting a Spell at a Higher Level (SRD p100) +Source: (MDR p306) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_les_ecoles_de_magie.md b/Data/HD/hd_spellcasting_les_ecoles_de_magie.md index 9b64ea17..78bd6072 100644 --- a/Data/HD/hd_spellcasting_les_ecoles_de_magie.md +++ b/Data/HD/hd_spellcasting_les_ecoles_de_magie.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les écoles de magie -AltName: The Schools of Magic (SRD p103) -Source: (MDR p310) Id: spellcasting_hd.md#les-écoles-de-magie ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 2 +AltName: The Schools of Magic (SRD p103) +Source: (MDR p310) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_les_incantations_en_armure.md b/Data/HD/hd_spellcasting_les_incantations_en_armure.md index e36180af..a7c4d3bc 100644 --- a/Data/HD/hd_spellcasting_les_incantations_en_armure.md +++ b/Data/HD/hd_spellcasting_les_incantations_en_armure.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les incantations en armure -AltName: Casting in Armor (SRD p100) -Source: (MDR p307) Id: spellcasting_hd.md#les-incantations-en-armure ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Casting in Armor (SRD p100) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_les_rituels.md b/Data/HD/hd_spellcasting_les_rituels.md index 546fe69f..b05f5968 100644 --- a/Data/HD/hd_spellcasting_les_rituels.md +++ b/Data/HD/hd_spellcasting_les_rituels.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les rituels -AltName: Rituals (SRD p101) -Source: (MDR p307) Id: spellcasting_hd.md#les-rituels ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Rituals (SRD p101) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_les_sorts_connus_et_les_sorts_prepares.md b/Data/HD/hd_spellcasting_les_sorts_connus_et_les_sorts_prepares.md index 70498940..916ec84b 100644 --- a/Data/HD/hd_spellcasting_les_sorts_connus_et_les_sorts_prepares.md +++ b/Data/HD/hd_spellcasting_les_sorts_connus_et_les_sorts_prepares.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les sorts connus et les sorts préparés -AltName: Known and Prepared Spells (SRD p100) -Source: (MDR p306) Id: spellcasting_hd.md#les-sorts-connus-et-les-sorts-préparés ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Known and Prepared Spells (SRD p100) +Source: (MDR p306) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_les_tours_de_magie.md b/Data/HD/hd_spellcasting_les_tours_de_magie.md index 66c9000b..c0ec599a 100644 --- a/Data/HD/hd_spellcasting_les_tours_de_magie.md +++ b/Data/HD/hd_spellcasting_les_tours_de_magie.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Les tours de magie -AltName: Cantrips (SRD p101) -Source: (MDR p307) Id: spellcasting_hd.md#les-tours-de-magie ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Cantrips (SRD p101) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_ligne.md b/Data/HD/hd_spellcasting_ligne.md index a33b54d2..86e087fa 100644 --- a/Data/HD/hd_spellcasting_ligne.md +++ b/Data/HD/hd_spellcasting_ligne.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Ligne -AltName: Line (SRD p103) -Source: (MDR p309) Id: spellcasting_hd.md#ligne ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Line (SRD p103) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_long_temps_dincantation.md b/Data/HD/hd_spellcasting_long_temps_dincantation.md index 84b72d3c..36a3535e 100644 --- a/Data/HD/hd_spellcasting_long_temps_dincantation.md +++ b/Data/HD/hd_spellcasting_long_temps_dincantation.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Long temps d'incantation -AltName: Longer Casting Times (SRD p101) -Source: (MDR p307) Id: spellcasting_hd.md#long-temps-dincantation ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Longer Casting Times (SRD p101) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_materielles_m.md b/Data/HD/hd_spellcasting_materielles_m.md index 95f97c24..9629a793 100644 --- a/Data/HD/hd_spellcasting_materielles_m.md +++ b/Data/HD/hd_spellcasting_materielles_m.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Matérielles (M) -AltName: Material (M) (SRD p102) -Source: (MDR p308) Id: spellcasting_hd.md#matérielles-m ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Material (M) (SRD p102) +Source: (MDR p308) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_niveau_de_sort.md b/Data/HD/hd_spellcasting_niveau_de_sort.md index c736d1f5..f3b017ad 100644 --- a/Data/HD/hd_spellcasting_niveau_de_sort.md +++ b/Data/HD/hd_spellcasting_niveau_de_sort.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Niveau de sort -AltName: Spell Level (SRD p100) -Source: (MDR p306) Id: spellcasting_hd.md#niveau-de-sort ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Spell Level (SRD p100) +Source: (MDR p306) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_portee.md b/Data/HD/hd_spellcasting_portee.md index 7b439e78..e04f2161 100644 --- a/Data/HD/hd_spellcasting_portee.md +++ b/Data/HD/hd_spellcasting_portee.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Portée -AltName: Range (SRD p101) -Source: (MDR p307) Id: spellcasting_hd.md#portée ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Range (SRD p101) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_quest_ce_quun_sort_.md b/Data/HD/hd_spellcasting_quest_ce_quun_sort_.md index c3475252..3b628116 100644 --- a/Data/HD/hd_spellcasting_quest_ce_quun_sort_.md +++ b/Data/HD/hd_spellcasting_quest_ce_quun_sort_.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Qu'est-ce qu'un sort ? -AltName: What Is a Spell? (SRD p100) -Source: (MDR p306) Id: spellcasting_hd.md#quest-ce-quun-sort-? ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 2 +AltName: What Is a Spell? (SRD p100) +Source: (MDR p306) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_reaction.md b/Data/HD/hd_spellcasting_reaction.md index 3b85fad3..41da2c57 100644 --- a/Data/HD/hd_spellcasting_reaction.md +++ b/Data/HD/hd_spellcasting_reaction.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Réaction -AltName: Reactions (SRD p101) -Source: (MDR p307) Id: spellcasting_hd.md#réaction ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Reactions (SRD p101) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_se_prendre_pour_cible.md b/Data/HD/hd_spellcasting_se_prendre_pour_cible.md index 000f40e7..5506237c 100644 --- a/Data/HD/hd_spellcasting_se_prendre_pour_cible.md +++ b/Data/HD/hd_spellcasting_se_prendre_pour_cible.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Se prendre pour cible -AltName: Targeting Yourself (SRD p102) -Source: (MDR p309) Id: spellcasting_hd.md#se-prendre-pour-cible ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Targeting Yourself (SRD p102) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_somatiques_s.md b/Data/HD/hd_spellcasting_somatiques_s.md index 56103e1b..6cb3fcc2 100644 --- a/Data/HD/hd_spellcasting_somatiques_s.md +++ b/Data/HD/hd_spellcasting_somatiques_s.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Somatiques (S) -AltName: Somatic (S) (SRD p101) -Source: (MDR p308) Id: spellcasting_hd.md#somatiques-s ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Somatic (S) (SRD p101) +Source: (MDR p308) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_sphere.md b/Data/HD/hd_spellcasting_sphere.md index ff48ee0e..bb8d69e3 100644 --- a/Data/HD/hd_spellcasting_sphere.md +++ b/Data/HD/hd_spellcasting_sphere.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Sphère -AltName: Sphere (SRD p103) -Source: (MDR p309) Id: spellcasting_hd.md#sphère ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Sphere (SRD p103) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_temps_dincantation.md b/Data/HD/hd_spellcasting_temps_dincantation.md index a987eca0..de020a76 100644 --- a/Data/HD/hd_spellcasting_temps_dincantation.md +++ b/Data/HD/hd_spellcasting_temps_dincantation.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Temps d'incantation -AltName: Casting Time (SRD p101) -Source: (MDR p307) Id: spellcasting_hd.md#temps-dincantation ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Casting Time (SRD p101) +Source: (MDR p307) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_un_chemin_degage_jusqua_la_cible.md b/Data/HD/hd_spellcasting_un_chemin_degage_jusqua_la_cible.md index 054a5add..a426ccbf 100644 --- a/Data/HD/hd_spellcasting_un_chemin_degage_jusqua_la_cible.md +++ b/Data/HD/hd_spellcasting_un_chemin_degage_jusqua_la_cible.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Un chemin dégagé jusqu'à la cible -AltName: A Clear Path to the Target (SRD p102) -Source: (MDR p309) Id: spellcasting_hd.md#un-chemin-dégagé-jusquà-la-cible ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: A Clear Path to the Target (SRD p102) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_verbales_v.md b/Data/HD/hd_spellcasting_verbales_v.md index 90d4c571..4f92e5f4 100644 --- a/Data/HD/hd_spellcasting_verbales_v.md +++ b/Data/HD/hd_spellcasting_verbales_v.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Verbales (V) -AltName: Verbal (V) (SRD p101) -Source: (MDR p308) Id: spellcasting_hd.md#verbales-v ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 4 +AltName: Verbal (V) (SRD p101) +Source: (MDR p308) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_spellcasting_zone_deffet.md b/Data/HD/hd_spellcasting_zone_deffet.md index 1ece3a1e..acba3b7d 100644 --- a/Data/HD/hd_spellcasting_zone_deffet.md +++ b/Data/HD/hd_spellcasting_zone_deffet.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Zone d'effet -AltName: Areas of Effect (SRD p102) -Source: (MDR p309) Id: spellcasting_hd.md#zone-deffet ParentLink: spellcasting_hd.md#lancer-des-sorts ParentName: Lancer des sorts NameLevel: 3 +AltName: Areas of Effect (SRD p102) +Source: (MDR p309) Attributes: {} --- > [Lancer des sorts](hd_spellcasting.md) diff --git a/Data/HD/hd_time.md b/Data/HD/hd_time.md index 1bdfd92e..57835725 100644 --- a/Data/HD/hd_time.md +++ b/Data/HD/hd_time.md @@ -1,13 +1,13 @@ --- !GenericItem Name: Écoulement du temps -AltName: Time (SRD p84) -Source: (MDR p270) Id: time_hd.md#Écoulement-du-temps RootId: time_hd.md ParentLink: adventure_hd.md ParentName: Partir à l'aventure NameLevel: 1 +AltName: Time (SRD p84) +Source: (MDR p270) Attributes: {} --- >  [Partir à l'aventure](hd_adventure.md) diff --git a/Data/HD/hd_traps.md b/Data/HD/hd_traps.md index 9d062770..46dc8663 100644 --- a/Data/HD/hd_traps.md +++ b/Data/HD/hd_traps.md @@ -1,13 +1,13 @@ --- !Items -Name: Les pièges -AltName: 'Traps ' -Source: (CEO 374)(SRD p195) Id: traps_hd.md#les-pièges RootId: traps_hd.md ParentLink: index.md +Name: Les pièges ParentName: Créatures et oppositions NameLevel: 2 +AltName: 'Traps ' +Source: (CEO 374)(SRD p195) Attributes: {} --- >  [Créatures et oppositions](index.md) diff --git a/Data/HD/hd_warlock_points_de_vie.md b/Data/HD/hd_warlock_points_de_vie.md index 83db458b..e07bc78c 100644 --- a/Data/HD/hd_warlock_points_de_vie.md +++ b/Data/HD/hd_warlock_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d8 par niveau de sorcier HitPointsAt1stLevel: 8 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d8 (ou 5) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de sorcier après le niveau 1 Id: warlock_hd.md#points-de-vie ParentLink: warlock_hd.md#sorcier -Name: Points de vie ParentName: Sorcier NameLevel: 2 Attributes: {} diff --git a/Data/HD/hd_weapons.md b/Data/HD/hd_weapons.md index 779e5b99..2ba2e0fe 100644 --- a/Data/HD/hd_weapons.md +++ b/Data/HD/hd_weapons.md @@ -1,13 +1,13 @@ --- !Items -Name: Armes -AltName: Weapons (SRD p64) -Source: (MDR p226) Id: weapons_hd.md#armes RootId: weapons_hd.md ParentLink: equipment_hd.md +Name: Armes ParentName: Équipement NameLevel: 1 +AltName: Weapons (SRD p64) +Source: (MDR p226) Attributes: {} --- >  [Équipement](hd_equipment.md) diff --git a/Data/HD/hd_weapons_a_deux_mains.md b/Data/HD/hd_weapons_a_deux_mains.md index 96615109..6718de07 100644 --- a/Data/HD/hd_weapons_a_deux_mains.md +++ b/Data/HD/hd_weapons_a_deux_mains.md @@ -1,12 +1,12 @@ --- !GenericItem Name: À deux mains -AltName: Two-Handed (SRD p65) -Source: (MDR p226) Id: weapons_hd.md#À-deux-mains ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Two-Handed (SRD p65) +Source: (MDR p226) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_allonge.md b/Data/HD/hd_weapons_allonge.md index eb60362f..1f34833e 100644 --- a/Data/HD/hd_weapons_allonge.md +++ b/Data/HD/hd_weapons_allonge.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Allonge -AltName: Reach (SRD p65) -Source: (MDR p226) Id: weapons_hd.md#allonge ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Reach (SRD p65) +Source: (MDR p226) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_armes_en_argent.md b/Data/HD/hd_weapons_armes_en_argent.md index b7f34fd2..336ebd31 100644 --- a/Data/HD/hd_weapons_armes_en_argent.md +++ b/Data/HD/hd_weapons_armes_en_argent.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Armes en argent -AltName: Silvered Weapons (SRD p65) -Source: (MDR p228) Id: weapons_hd.md#armes-en-argent ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 4 +AltName: Silvered Weapons (SRD p65) +Source: (MDR p228) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_armes_improvisees.md b/Data/HD/hd_weapons_armes_improvisees.md index b02fbf83..4d09098e 100644 --- a/Data/HD/hd_weapons_armes_improvisees.md +++ b/Data/HD/hd_weapons_armes_improvisees.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Armes improvisées -AltName: Improvised Weapons (SRD p65) -Source: (MDR p228) Id: weapons_hd.md#armes-improvisées ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 4 +AltName: Improvised Weapons (SRD p65) +Source: (MDR p228) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_chargement.md b/Data/HD/hd_weapons_chargement.md index 4640475e..bbb14321 100644 --- a/Data/HD/hd_weapons_chargement.md +++ b/Data/HD/hd_weapons_chargement.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Chargement -AltName: Loading (SRD p65) -Source: (MDR p226) Id: weapons_hd.md#chargement ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Loading (SRD p65) +Source: (MDR p226) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_finesse.md b/Data/HD/hd_weapons_finesse.md index dd36829c..6ff6c261 100644 --- a/Data/HD/hd_weapons_finesse.md +++ b/Data/HD/hd_weapons_finesse.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Finesse -AltName: Finesse (SRD p64) -Source: (MDR p227) Id: weapons_hd.md#finesse ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Finesse (SRD p64) +Source: (MDR p227) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_lancer.md b/Data/HD/hd_weapons_lancer.md index 3ebafd7d..d098351f 100644 --- a/Data/HD/hd_weapons_lancer.md +++ b/Data/HD/hd_weapons_lancer.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Lancer -AltName: Thrown (SRD p65) -Source: (MDR p227) Id: weapons_hd.md#lancer ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Thrown (SRD p65) +Source: (MDR p227) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_legere.md b/Data/HD/hd_weapons_legere.md index 1223d2ec..ac048ef6 100644 --- a/Data/HD/hd_weapons_legere.md +++ b/Data/HD/hd_weapons_legere.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Légère -AltName: Light (SRD p65) -Source: (MDR p227) Id: weapons_hd.md#légère ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Light (SRD p65) +Source: (MDR p227) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_lourde.md b/Data/HD/hd_weapons_lourde.md index 52580efc..da6200e6 100644 --- a/Data/HD/hd_weapons_lourde.md +++ b/Data/HD/hd_weapons_lourde.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Lourde -AltName: Heavy (SRD p65) -Source: (MDR p227) Id: weapons_hd.md#lourde ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Heavy (SRD p65) +Source: (MDR p227) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_maitrise_des_armes.md b/Data/HD/hd_weapons_maitrise_des_armes.md index c23fa35c..c38735f4 100644 --- a/Data/HD/hd_weapons_maitrise_des_armes.md +++ b/Data/HD/hd_weapons_maitrise_des_armes.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Maîtrise des armes -AltName: Weapon Proficiency (SRD p64) -Source: (MDR p226) Id: weapons_hd.md#maîtrise-des-armes ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 3 +AltName: Weapon Proficiency (SRD p64) +Source: (MDR p226) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_munitions.md b/Data/HD/hd_weapons_munitions.md index 626c4988..1af1fa18 100644 --- a/Data/HD/hd_weapons_munitions.md +++ b/Data/HD/hd_weapons_munitions.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Munitions -AltName: Ammunition (SRD p64) -Source: (MDR p227) Id: weapons_hd.md#munitions ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Ammunition (SRD p64) +Source: (MDR p227) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_polyvalente.md b/Data/HD/hd_weapons_polyvalente.md index bb78939f..360232fc 100644 --- a/Data/HD/hd_weapons_polyvalente.md +++ b/Data/HD/hd_weapons_polyvalente.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Polyvalente -AltName: Versatile (SRD p65) -Source: (MDR p227) Id: weapons_hd.md#polyvalente ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Versatile (SRD p65) +Source: (MDR p227) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_portee.md b/Data/HD/hd_weapons_portee.md index 2dfd9de3..06064bde 100644 --- a/Data/HD/hd_weapons_portee.md +++ b/Data/HD/hd_weapons_portee.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Portée -AltName: Range (SRD p65) -Source: (MDR p227) Id: weapons_hd.md#portée ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Range (SRD p65) +Source: (MDR p227) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_proprietes_des_armes.md b/Data/HD/hd_weapons_proprietes_des_armes.md index 891fdc50..5b531451 100644 --- a/Data/HD/hd_weapons_proprietes_des_armes.md +++ b/Data/HD/hd_weapons_proprietes_des_armes.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Propriétés des armes -AltName: Weapon Properties (SRD p64) -Source: (MDR p226) Id: weapons_hd.md#propriétés-des-armes ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 3 +AltName: Weapon Properties (SRD p64) +Source: (MDR p226) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_weapons_speciale.md b/Data/HD/hd_weapons_speciale.md index 37fd6fb7..3abe7cda 100644 --- a/Data/HD/hd_weapons_speciale.md +++ b/Data/HD/hd_weapons_speciale.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Spéciale -AltName: Special (SRD p65) -Source: (MDR p228) Id: weapons_hd.md#spéciale ParentLink: weapons_hd.md#armes ParentName: Armes NameLevel: 5 +AltName: Special (SRD p65) +Source: (MDR p228) Attributes: {} --- > [Armes](hd_weapons.md) diff --git a/Data/HD/hd_wizard_points_de_vie.md b/Data/HD/hd_wizard_points_de_vie.md index 2889afc5..1e7261fa 100644 --- a/Data/HD/hd_wizard_points_de_vie.md +++ b/Data/HD/hd_wizard_points_de_vie.md @@ -1,11 +1,11 @@ --- !ClassHitPointsItem +Name: Points de vie HitDice: 1d6 par niveau de magicien HitPointsAt1stLevel: 6 + votre modificateur de [Constitution](hd_abilities_constitution.md) HitPointsAtHigherLevels: 1d6 (ou 4) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de magicien après le niveau 1 Id: wizard_hd.md#points-de-vie ParentLink: wizard_hd.md#magicien -Name: Points de vie ParentName: Magicien NameLevel: 2 Attributes: {} diff --git a/Data/HD/sandbox.md b/Data/HD/sandbox.md index fa82a0e2..fb7cacc2 100644 --- a/Data/HD/sandbox.md +++ b/Data/HD/sandbox.md @@ -1,12 +1,12 @@ --- !Items -Name: Sandbox -AltName: Races Id: sandbox.md#sandbox RootId: sandbox.md ParentLink: .md# +Name: Sandbox ParentName: '' NameLevel: 1 +AltName: Races Attributes: Book: (MDR p36)(SRD p3) --- diff --git a/Data/HD/srd_conditions.md b/Data/HD/srd_conditions.md index 6441ecb7..c3ffb0fa 100644 --- a/Data/HD/srd_conditions.md +++ b/Data/HD/srd_conditions.md @@ -1,13 +1,13 @@ --- !Items -Name: Conditions -AltName: '[États spéciaux](hd_conditions.md)' -Source: (SRD p358) Id: conditions_vo.md#conditions RootId: conditions_vo.md ParentLink: index.md +Name: Conditions ParentName: SRD NameLevel: 1 +AltName: '[États spéciaux](hd_conditions.md)' +Source: (SRD p358) Attributes: {} --- >  [SRD](index.md) diff --git a/Data/HD/srd_conditions_blinded.md b/Data/HD/srd_conditions_blinded.md index fdf690dd..ec5ff1ed 100644 --- a/Data/HD/srd_conditions_blinded.md +++ b/Data/HD/srd_conditions_blinded.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Blinded -AltName: '[Aveuglé](hd_conditions_aveugle.md)' -Source: (SRD p358) Id: conditions_vo.md#blinded ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Aveuglé](hd_conditions_aveugle.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_charmed.md b/Data/HD/srd_conditions_charmed.md index 7e5366e7..689ef360 100644 --- a/Data/HD/srd_conditions_charmed.md +++ b/Data/HD/srd_conditions_charmed.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Charmed -AltName: '[Charmé](hd_conditions_charme.md)' -Source: (SRD p358) Id: conditions_vo.md#charmed ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Charmé](hd_conditions_charme.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_deafened.md b/Data/HD/srd_conditions_deafened.md index 2a7739fc..bb7850f5 100644 --- a/Data/HD/srd_conditions_deafened.md +++ b/Data/HD/srd_conditions_deafened.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Deafened -AltName: '[Assourdi](hd_conditions_assourdi.md)' -Source: (SRD p358) Id: conditions_vo.md#deafened ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Assourdi](hd_conditions_assourdi.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_exhaustion.md b/Data/HD/srd_conditions_exhaustion.md index 1602c3d1..3195d12c 100644 --- a/Data/HD/srd_conditions_exhaustion.md +++ b/Data/HD/srd_conditions_exhaustion.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Exhaustion -AltName: '[Fatigue et épuisement](hd_conditions_fatigue_et_epuisement.md)' -Source: (SRD p358) Id: conditions_vo.md#exhaustion ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Fatigue et épuisement](hd_conditions_fatigue_et_epuisement.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_frightened.md b/Data/HD/srd_conditions_frightened.md index 0c6e810a..92e4b33c 100644 --- a/Data/HD/srd_conditions_frightened.md +++ b/Data/HD/srd_conditions_frightened.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Frightened -AltName: '[Terrorisé](hd_conditions_terrorise.md)' -Source: (SRD p358) Id: conditions_vo.md#frightened ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Terrorisé](hd_conditions_terrorise.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_grappled.md b/Data/HD/srd_conditions_grappled.md index 58eae6b7..c2c24cf5 100644 --- a/Data/HD/srd_conditions_grappled.md +++ b/Data/HD/srd_conditions_grappled.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Grappled -AltName: '[Empoigné](hd_conditions_empoigne.md)' -Source: (SRD p358) Id: conditions_vo.md#grappled ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Empoigné](hd_conditions_empoigne.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_incapacitated.md b/Data/HD/srd_conditions_incapacitated.md index c238f35c..b2b341aa 100644 --- a/Data/HD/srd_conditions_incapacitated.md +++ b/Data/HD/srd_conditions_incapacitated.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Incapacitated -AltName: '[Neutralisé](hd_conditions_neutralise.md)' -Source: (SRD p358) Id: conditions_vo.md#incapacitated ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Neutralisé](hd_conditions_neutralise.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_invisible.md b/Data/HD/srd_conditions_invisible.md index ac29504a..540068f7 100644 --- a/Data/HD/srd_conditions_invisible.md +++ b/Data/HD/srd_conditions_invisible.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Invisible -AltName: '[Invisible](hd_conditions_invisible.md)' -Source: (SRD p358) Id: conditions_vo.md#invisible ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Invisible](hd_conditions_invisible.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_paralyzed.md b/Data/HD/srd_conditions_paralyzed.md index a263aafa..097fd17b 100644 --- a/Data/HD/srd_conditions_paralyzed.md +++ b/Data/HD/srd_conditions_paralyzed.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Paralyzed -AltName: '[Paralysé](hd_conditions_paralyse.md)' -Source: (SRD p358) Id: conditions_vo.md#paralyzed ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Paralysé](hd_conditions_paralyse.md)' +Source: (SRD p358) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_petrified.md b/Data/HD/srd_conditions_petrified.md index 381aa988..4350c67b 100644 --- a/Data/HD/srd_conditions_petrified.md +++ b/Data/HD/srd_conditions_petrified.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Petrified -AltName: '[Pétrifié](hd_conditions_petrifie.md)' -Source: (SRD p359) Id: conditions_vo.md#petrified ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Pétrifié](hd_conditions_petrifie.md)' +Source: (SRD p359) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_poisoned.md b/Data/HD/srd_conditions_poisoned.md index 087bd6ee..722518d3 100644 --- a/Data/HD/srd_conditions_poisoned.md +++ b/Data/HD/srd_conditions_poisoned.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Poisoned -AltName: '[Empoisonné](hd_conditions_empoisonne.md)' -Source: (SRD p359) Id: conditions_vo.md#poisoned ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Empoisonné](hd_conditions_empoisonne.md)' +Source: (SRD p359) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_prone.md b/Data/HD/srd_conditions_prone.md index 7f741708..6b3f9169 100644 --- a/Data/HD/srd_conditions_prone.md +++ b/Data/HD/srd_conditions_prone.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Prone -AltName: '[À terre](hd_conditions_a_terre.md)' -Source: (SRD p359) Id: conditions_vo.md#prone ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[À terre](hd_conditions_a_terre.md)' +Source: (SRD p359) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_restrained.md b/Data/HD/srd_conditions_restrained.md index 7b9a337e..3869cbf9 100644 --- a/Data/HD/srd_conditions_restrained.md +++ b/Data/HD/srd_conditions_restrained.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Restrained -AltName: '[Entravé](hd_conditions_entrave.md)' -Source: (SRD p359) Id: conditions_vo.md#restrained ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Entravé](hd_conditions_entrave.md)' +Source: (SRD p359) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_stunned.md b/Data/HD/srd_conditions_stunned.md index 2102b228..ba2afb76 100644 --- a/Data/HD/srd_conditions_stunned.md +++ b/Data/HD/srd_conditions_stunned.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Stunned -AltName: '[Étourdi](hd_conditions_etourdi.md)' -Source: (SRD p359) Id: conditions_vo.md#stunned ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Étourdi](hd_conditions_etourdi.md)' +Source: (SRD p359) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/HD/srd_conditions_unconscious.md b/Data/HD/srd_conditions_unconscious.md index 4befe4bf..8f2f1471 100644 --- a/Data/HD/srd_conditions_unconscious.md +++ b/Data/HD/srd_conditions_unconscious.md @@ -1,12 +1,12 @@ --- !GenericItem Name: Unconscious -AltName: '[Inconscient](hd_conditions_inconscient.md)' -Source: (SRD p359) Id: conditions_vo.md#unconscious ParentLink: conditions_vo.md#conditions ParentName: Conditions NameLevel: 1 +AltName: '[Inconscient](hd_conditions_inconscient.md)' +Source: (SRD p359) Attributes: {} --- > [Conditions](srd_conditions.md) diff --git a/Data/alignment_hd.md b/Data/alignment_hd.md index 73845c8e..22b5486f 100644 --- a/Data/alignment_hd.md +++ b/Data/alignment_hd.md @@ -10,86 +10,128 @@ - AltName: Alignment (SRD p58) - Source: (MDR p75) + + Une créature typique de l'univers du jeu a un alignement qui permet de donner une idée générale de son point de vue moral et de ce qui dicte son attitude. L'alignement est une combinaison de deux facteurs : l'un identifie la morale (Bon, Mauvais ou Neutre) et l'autre son positionnement par rapport à la société et à l'ordre (Loyal, Chaotique ou Neutre). Il existe neuf combinaisons de ces deux critères, et donc neuf alignements possibles. Voici ci-dessous un bref résumé du comportement typique que l'on peut attendre d'une créature en fonction de son alignement. Chaque individu peut avoir un comportement très différent des exemples proposés. Il se trouve en effet peu de créatures qui adhèrent et correspondent parfaitement à leur alignement. - + + + #### Loyal Bon (LB) + + On peut compter sur ces créatures pour faire ce qui est considéré comme bien en société. Les dragons d'or, les licornes, la majorité des paladins et des nains sont d'alignement Loyal Bon. - + - + + + #### Neutre Bon (NB) + + Ces créatures font de leur mieux pour aider les autres en fonction de leurs besoins. De nombreux célestes, quelques géants des nuages et la plupart des gnomes sont d'alignement Neutre Bon. - + - + + + #### Chaotique Bon (CB) + + Ces créatures agissent en suivant leur conscience, sans tenir compte des attentes des autres, tout en conservant un grand respect pour la vie. On trouve parmi les créatures qui ont l'alignement Chaotique Bon les dragons de cuivre, et la plupart des elfes. - + - + + + #### Loyal Neutre (LN) + + Ces individus sont respectueux de la loi, d'une tradition ou de leur code de conduite personnel. C'est le cas de nombreux moines et magiciens. - + - + + + #### Neutre (N) + + C'est l'alignement de ceux qui préfèrent se tenir à distance des dilemmes moraux et n'aiment pas prendre parti. Ils font ce qui leur paraît approprié sur le moment. Les hommes-lézards, la plupart des druides et de nombreux humains sont d'alignement Neutre. - + - + + + #### Chaotique Neutre (CN) + + Ces créatures écoutent leurs désirs et font passer leur propre liberté avant tout. On trouve parmi les créatures d'alignement Chaotique Neutre de nombreux barbares et roublards et quelques bardes. - + - + + + #### Loyal Mauvais (LM) + + Voilà l'alignement des créatures qui s'appliquent à méthodiquement prendre ce dont elles ont envie dans le cadre d'un code ou d'une tradition, de leur loyauté ou d'un ordre. Les créatures d'alignement Loyal Mauvais sont les diables, les dragons bleus et les hobgobelins. - + - + + + #### Neutre Mauvais (NM) + + C'est l'alignement des créatures qui font ce qu'elles veulent tant qu'elles peuvent s'en tirer. De nombreux elfes de sang, quelques géants des nuages et les gobelins sont d'alignement Neutre Mauvais. - + - + + + #### Chaotique Mauvais (CM) + + Ces créatures n'hésitent pas à être violentes de manière arbitraire. Elles se laissent mener par leur cupidité, leur haine ou leur soif de sang. Les démons, les dragons rouges et les orcs sont d'alignement Chaotique Mauvais. - + + + ### L'alignement dans le multivers + + Pour de nombreuses créatures douées de raison, l'alignement est un choix moral. Les humains, les nains, les elfes et les autres races humanoïdes peuvent choisir la voie qui leur convient le mieux entre le bien et le mal, la loi et le chaos. Les légendes racontent que les dieux d'alignement Bon qui ont créé ces races leur ont donné cette capacité de choisir leur voie, bien conscients que faire le bien n'est qu'une autre forme d'esclavage s'il n'est pas le fruit du libre arbitre. Les divinités maléfiques qui ont créé les autres races ne les ont quant à elles créées que pour les servir. Ces races ont donc une forte tendance naturelle à suivre la nature de leurs dieux. La plupart des orcs partagent ainsi la nature sauvage et violente des dieux orcs et sont naturellement enclins au mal. Et même si un orc choisit de faire le bien, il passera sa vie à lutter contre sa tendance naturelle. (Même les demi-orcs ressentent l'influence des dieux orcs.) @@ -98,6 +140,8 @@ L'alignement est une composante essentielle de la nature des célestes et des fi La majorité des créatures qui ne sont pas douées de raison n'ont pas d'alignement. Elles sont dites non-alignées. De telles créatures sont incapables de faire un choix moral ou éthique et agissent en fonction de leur nature animale. Les requins sont de sauvages prédateurs, par exemple, mais ils ne sont en rien maléfiques. Ils n'ont pas d'alignement. + + diff --git a/Data/library.db b/Data/library.db index 9179c971..041b7d08 100644 Binary files a/Data/library.db and b/Data/library.db differ