diff --git a/AideDeJeu/AideDeJeuCmd/Program.cs b/AideDeJeu/AideDeJeuCmd/Program.cs index 7113b659..ccb9a013 100644 --- a/AideDeJeu/AideDeJeuCmd/Program.cs +++ b/AideDeJeu/AideDeJeuCmd/Program.cs @@ -361,6 +361,33 @@ namespace AideDeJeuCmd var spells = await context.Spells.ToListAsync(); var classes = await context.Classes.ToListAsync(); var races = await context.Races.ToListAsync(); + var items = await context.Items.ToListAsync(); + + foreach (var c in classes) + { + var parent = items.Where(it => it.Id == c.ParentLink).FirstOrDefault(); + if (parent != null) + { + var pparent = items.Where(iit => iit.Id == parent.ParentLink).FirstOrDefault(); + if(pparent != null && pparent is ClassItem) + { + Console.WriteLine($"{pparent.Name} - {c.Name}"); + } + } + } + + foreach(var r in races) + { + var parent = items.Where(it => it.Id == r.ParentLink).FirstOrDefault(); + if(parent != null && parent is RaceItem) + { + Console.WriteLine($"{parent.Name} - {r.Name}"); + } + else + { + Console.WriteLine($"{r.Name}"); + } + } //var item1 = monsters.FirstOrDefault(); @@ -374,7 +401,6 @@ namespace AideDeJeuCmd //var test2m = item2.Markdown; //var test2ym = item2.YamlMarkdown; - var items = await context.Items.ToListAsync(); var matchids = new Dictionary(); diff --git a/Data/HD/hd_aasimar.md b/Data/HD/hd_aasimar.md index 3c5c65c1..ffc1dd43 100644 --- a/Data/HD/hd_aasimar.md +++ b/Data/HD/hd_aasimar.md @@ -1,5 +1,7 @@ --- !RaceItem +WisdomBonus: 1. +CharismaBonus: 2 Id: aasimar_hd.md#aasimar RootId: aasimar_hd.md ParentLink: races_hd.md#races diff --git a/Data/HD/hd_barbarian.md b/Data/HD/hd_barbarian.md index 694e9d57..bc67cb39 100644 --- a/Data/HD/hd_barbarian.md +++ b/Data/HD/hd_barbarian.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Barbare +Source: (MDR p114) Id: barbarian_hd.md#barbare RootId: barbarian_hd.md ParentLink: classes_hd.md -Name: Barbare ParentName: Classes NameLevel: 1 AltName: Barbarian (SRD p8) -Source: (MDR p114) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_barbarian_berserker.md b/Data/HD/hd_barbarian_berserker.md index 11d032e1..c7310696 100644 --- a/Data/HD/hd_barbarian_berserker.md +++ b/Data/HD/hd_barbarian_berserker.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Voie du berserker +Source: (MDR p116) Id: barbarian_berserker_hd.md#voie-du-berserker RootId: barbarian_berserker_hd.md ParentLink: barbarian_hd.md#voies-primitives -Name: Voie du berserker ParentName: Voies primitives NameLevel: 1 AltName: Wisdom (SRD p9) -Source: (MDR p116) --- >  [Voies primitives](hd_barbarian_voies_primitives.md) diff --git a/Data/HD/hd_barbarian_howling.md b/Data/HD/hd_barbarian_howling.md index aae80370..a39dd4ea 100644 --- a/Data/HD/hd_barbarian_howling.md +++ b/Data/HD/hd_barbarian_howling.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Voie du hurlement +Source: (MDR p118) Id: barbarian_howling_hd.md#voie-du-hurlement RootId: barbarian_howling_hd.md ParentLink: barbarian_hd.md#voies-primitives -Name: Voie du hurlement ParentName: Voies primitives NameLevel: 1 -Source: (MDR p118) --- >  [Voies primitives](hd_barbarian_voies_primitives.md) diff --git a/Data/HD/hd_barbarian_spirits.md b/Data/HD/hd_barbarian_spirits.md index 1cdaf6ec..806c8d5b 100644 --- a/Data/HD/hd_barbarian_spirits.md +++ b/Data/HD/hd_barbarian_spirits.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Voie des esprits +Source: (MDR p117) Id: barbarian_spirits_hd.md#voie-des-esprits RootId: barbarian_spirits_hd.md ParentLink: barbarian_hd.md#voies-primitives -Name: Voie des esprits ParentName: Voies primitives NameLevel: 1 -Source: (MDR p117) --- >  [Voies primitives](hd_barbarian_voies_primitives.md) diff --git a/Data/HD/hd_barbarian_steel.md b/Data/HD/hd_barbarian_steel.md index fa144433..57310a28 100644 --- a/Data/HD/hd_barbarian_steel.md +++ b/Data/HD/hd_barbarian_steel.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Voie de l'acier +Source: (MDR p117) Id: barbarian_steel_hd.md#voie-de-lacier RootId: barbarian_steel_hd.md ParentLink: barbarian_hd.md#voies-primitives -Name: Voie de l'acier ParentName: Voies primitives NameLevel: 1 -Source: (MDR p117) --- >  [Voies primitives](hd_barbarian_voies_primitives.md) diff --git a/Data/HD/hd_bard.md b/Data/HD/hd_bard.md index 2efd5586..771ae645 100644 --- a/Data/HD/hd_bard.md +++ b/Data/HD/hd_bard.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Barde +Source: (MDR p121) Id: bard_hd.md#barde RootId: bard_hd.md ParentLink: classes_hd.md -Name: Barde ParentName: Classes NameLevel: 1 AltName: Bard (SRD p11) -Source: (MDR p121) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_bard_acrobats.md b/Data/HD/hd_bard_acrobats.md index dea5ca77..11cb5a42 100644 --- a/Data/HD/hd_bard_acrobats.md +++ b/Data/HD/hd_bard_acrobats.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Collège des saltimbanques +Source: (MDR p126) Id: bard_acrobats_hd.md#collège-des-saltimbanques RootId: bard_acrobats_hd.md ParentLink: bard_hd.md#collèges-bardiques -Name: Collège des saltimbanques ParentName: Collèges bardiques NameLevel: 1 -Source: (MDR p126) --- >  [Collèges bardiques](hd_bard_colleges_bardiques.md) diff --git a/Data/HD/hd_bard_diplomats.md b/Data/HD/hd_bard_diplomats.md index 7a866048..3b6e1ccd 100644 --- a/Data/HD/hd_bard_diplomats.md +++ b/Data/HD/hd_bard_diplomats.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Collège des diplomates +Source: (MDR p125) Id: bard_diplomats_hd.md#collège-des-diplomates RootId: bard_diplomats_hd.md ParentLink: bard_hd.md#collèges-bardiques -Name: Collège des diplomates ParentName: Collèges bardiques NameLevel: 1 -Source: (MDR p125) --- >  [Collèges bardiques](hd_bard_colleges_bardiques.md) diff --git a/Data/HD/hd_bard_heralds.md b/Data/HD/hd_bard_heralds.md index b9cd2b49..31e51272 100644 --- a/Data/HD/hd_bard_heralds.md +++ b/Data/HD/hd_bard_heralds.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Collège des hérauts +Source: (MDR p126) Id: bard_heralds_hd.md#collège-des-hérauts RootId: bard_heralds_hd.md ParentLink: bard_hd.md#collèges-bardiques -Name: Collège des hérauts ParentName: Collèges bardiques NameLevel: 1 -Source: (MDR p126) --- >  [Collèges bardiques](hd_bard_colleges_bardiques.md) diff --git a/Data/HD/hd_bard_knowledge.md b/Data/HD/hd_bard_knowledge.md index 2afb803b..085c44ed 100644 --- a/Data/HD/hd_bard_knowledge.md +++ b/Data/HD/hd_bard_knowledge.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Collège du savoir +Source: (MDR p125) Id: bard_knowledge_hd.md#collège-du-savoir RootId: bard_knowledge_hd.md ParentLink: bard_hd.md#collèges-bardiques -Name: Collège du savoir ParentName: Collèges bardiques NameLevel: 1 AltName: College of Lore (SRD p13) -Source: (MDR p125) --- >  [Collèges bardiques](hd_bard_colleges_bardiques.md) diff --git a/Data/HD/hd_cleric.md b/Data/HD/hd_cleric.md index 0635f61d..1c99a888 100644 --- a/Data/HD/hd_cleric.md +++ b/Data/HD/hd_cleric.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Clerc +Source: (MDR p129) Id: cleric_hd.md#clerc RootId: cleric_hd.md ParentLink: classes_hd.md -Name: Clerc ParentName: Classes NameLevel: 1 AltName: ' (SRD p15)' -Source: (MDR p129) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_cleric_guide.md b/Data/HD/hd_cleric_guide.md index 58e1ea1d..314c649b 100644 --- a/Data/HD/hd_cleric_guide.md +++ b/Data/HD/hd_cleric_guide.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Guide spirituel +Source: (MDR p138) Id: cleric_guide_hd.md#guide-spirituel RootId: cleric_guide_hd.md ParentLink: cleric_hd.md#domaines-divins -Name: Guide spirituel ParentName: Domaines divins NameLevel: 1 -Source: (MDR p138) --- >  [Domaines divins](hd_cleric_domaines_divins.md) diff --git a/Data/HD/hd_cleric_life.md b/Data/HD/hd_cleric_life.md index 745bcd27..21fd0b39 100644 --- a/Data/HD/hd_cleric_life.md +++ b/Data/HD/hd_cleric_life.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Domaine de la Vie +Source: (MDR p418) Id: cleric_life_hd.md#domaine-de-la-vie RootId: cleric_life_hd.md ParentLink: cleric_hd.md#domaines-divins -Name: Domaine de la Vie ParentName: Domaines divins NameLevel: 1 AltName: Life Domain (SRD p17) -Source: (MDR p418) --- >  [Domaines divins](hd_cleric_domaines_divins.md) diff --git a/Data/HD/hd_cleric_priest.md b/Data/HD/hd_cleric_priest.md index 16091dbf..ebbc6390 100644 --- a/Data/HD/hd_cleric_priest.md +++ b/Data/HD/hd_cleric_priest.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Prêtre +Source: (MDR p132) Id: cleric_priest_hd.md#prêtre RootId: cleric_priest_hd.md ParentLink: cleric_hd.md#domaines-divins -Name: Prêtre ParentName: Domaines divins NameLevel: 1 -Source: (MDR p132) --- >  [Domaines divins](hd_cleric_domaines_divins.md) diff --git a/Data/HD/hd_cleric_theurgist.md b/Data/HD/hd_cleric_theurgist.md index bf6d5e4b..a3eff38e 100644 --- a/Data/HD/hd_cleric_theurgist.md +++ b/Data/HD/hd_cleric_theurgist.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Théurge +Source: (MDR p139) Id: cleric_theurgist_hd.md#théurge RootId: cleric_theurgist_hd.md ParentLink: cleric_hd.md#domaines-divins -Name: Théurge ParentName: Domaines divins NameLevel: 1 -Source: (MDR p139) --- >  [Domaines divins](hd_cleric_domaines_divins.md) diff --git a/Data/HD/hd_cleric_theurgist_nombre_de_sorts_de_clercs_connus.md b/Data/HD/hd_cleric_theurgist_nombre_de_sorts_de_clercs_connus.md index 9d17ea09..886571ca 100644 --- a/Data/HD/hd_cleric_theurgist_nombre_de_sorts_de_clercs_connus.md +++ b/Data/HD/hd_cleric_theurgist_nombre_de_sorts_de_clercs_connus.md @@ -16,10 +16,3 @@ NameLevel: 3 |---|---|---|---|---|---|---|---|---|---| |Sorts|8|8|7|6|5|4|3|2|2| -[Force]: abilities_strength_hd.md -[Dextérité]: abilities_dexterity_hd.md -[Constitution]: abilities_constitution_hd.md -[Intelligence]: abilities_intelligence_hd.md -[Sagesse]: abilities_wisdom_hd.md -[Charisme]: abilities_charisma_hd.md -[Arcanes]: abilities_intelligence_hd.md#arcanes diff --git a/Data/HD/hd_cleric_traditions.md b/Data/HD/hd_cleric_traditions.md index 8c9ac1eb..c182976a 100644 --- a/Data/HD/hd_cleric_traditions.md +++ b/Data/HD/hd_cleric_traditions.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Gardien des traditions +Source: (MDR p137) Id: cleric_traditions_hd.md#gardien-des-traditions RootId: cleric_traditions_hd.md ParentLink: cleric_hd.md#domaines-divins -Name: Gardien des traditions ParentName: Domaines divins NameLevel: 1 -Source: (MDR p137) --- >  [Domaines divins](hd_cleric_domaines_divins.md) diff --git a/Data/HD/hd_demi_ogre.md b/Data/HD/hd_demi_ogre.md index 2304d605..28037607 100644 --- a/Data/HD/hd_demi_ogre.md +++ b/Data/HD/hd_demi_ogre.md @@ -1,5 +1,7 @@ --- !RaceItem +StrengthBonus: 2 +ConstitutionBonus: 2 Id: demi-ogre_hd.md#demi-ogre RootId: demi-ogre_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_dragonborn.md b/Data/HD/hd_dragonborn.md index f8bf2588..24351884 100644 --- a/Data/HD/hd_dragonborn.md +++ b/Data/HD/hd_dragonborn.md @@ -1,5 +1,7 @@ --- !RaceItem +StrengthBonus: 2 +CharismaBonus: 1 Id: dragonborn_hd.md#sangdragon RootId: dragonborn_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_druid.md b/Data/HD/hd_druid.md index 89d4196b..ef088d29 100644 --- a/Data/HD/hd_druid.md +++ b/Data/HD/hd_druid.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Druide +Source: (MDR p142) Id: druid_hd.md#druide RootId: druid_hd.md ParentLink: classes_hd.md -Name: Druide ParentName: Classes NameLevel: 1 AltName: Druid (SRD p17) -Source: (MDR p142) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_druid_depths.md b/Data/HD/hd_druid_depths.md index 574bd803..62f4d881 100644 --- a/Data/HD/hd_druid_depths.md +++ b/Data/HD/hd_druid_depths.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Cercle des profondeurs +Source: (MDR p150) Id: druid_depths_hd.md#cercle-des-profondeurs RootId: druid_depths_hd.md ParentLink: druid_hd.md#cercles-druidiques -Name: Cercle des profondeurs ParentName: Cercles druidiques NameLevel: 1 -Source: (MDR p150) --- >  [Cercles druidiques](hd_druid_cercles_druidiques.md) diff --git a/Data/HD/hd_druid_earth.md b/Data/HD/hd_druid_earth.md index 06208bc7..f66e908c 100644 --- a/Data/HD/hd_druid_earth.md +++ b/Data/HD/hd_druid_earth.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Cercle de la terre +Source: (MDR p145) Id: druid_earth_hd.md#cercle-de-la-terre RootId: druid_earth_hd.md ParentLink: druid_hd.md#cercles-druidiques -Name: Cercle de la terre ParentName: Cercles druidiques NameLevel: 1 AltName: Circle of the Land (SRD p21) -Source: (MDR p145) --- >  [Cercles druidiques](hd_druid_cercles_druidiques.md) diff --git a/Data/HD/hd_druid_fairies.md b/Data/HD/hd_druid_fairies.md index eabf2af8..b6a5f361 100644 --- a/Data/HD/hd_druid_fairies.md +++ b/Data/HD/hd_druid_fairies.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Cercle des fées +Source: (MDR p149) Id: druid_fairies_hd.md#cercle-des-fées RootId: druid_fairies_hd.md ParentLink: druid_hd.md#cercles-druidiques -Name: Cercle des fées ParentName: Cercles druidiques NameLevel: 1 -Source: (MDR p149) --- >  [Cercles druidiques](hd_druid_cercles_druidiques.md) diff --git a/Data/HD/hd_druid_seasons.md b/Data/HD/hd_druid_seasons.md index 64a81876..92119264 100644 --- a/Data/HD/hd_druid_seasons.md +++ b/Data/HD/hd_druid_seasons.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Cercle des saisons +Source: (MDR p147) Id: druid_seasons_hd.md#cercle-des-saisons RootId: druid_seasons_hd.md ParentLink: druid_hd.md#cercles-druidiques -Name: Cercle des saisons ParentName: Cercles druidiques NameLevel: 1 -Source: (MDR p147) --- >  [Cercles druidiques](hd_druid_cercles_druidiques.md) diff --git a/Data/HD/hd_dwarf.md b/Data/HD/hd_dwarf.md index db474f7e..5e46907d 100644 --- a/Data/HD/hd_dwarf.md +++ b/Data/HD/hd_dwarf.md @@ -1,5 +1,6 @@ --- !RaceItem +ConstitutionBonus: 2 Id: dwarf_hd.md#nain RootId: dwarf_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_dwarf_nain_des_laves.md b/Data/HD/hd_dwarf_nain_des_laves.md index c5aa7536..0015e22e 100644 --- a/Data/HD/hd_dwarf_nain_des_laves.md +++ b/Data/HD/hd_dwarf_nain_des_laves.md @@ -1,5 +1,6 @@ --- !RaceItem +StrengthBonus: 1 Id: dwarf_hd.md#nain-des-laves ParentLink: dwarf_hd.md#nain Name: Nain des laves diff --git a/Data/HD/hd_dwarf_nain_des_pierres.md b/Data/HD/hd_dwarf_nain_des_pierres.md index 36196afd..fdd9c37a 100644 --- a/Data/HD/hd_dwarf_nain_des_pierres.md +++ b/Data/HD/hd_dwarf_nain_des_pierres.md @@ -1,5 +1,6 @@ --- !RaceItem +IntelligenceBonus: 1 Id: dwarf_hd.md#nain-des-pierres ParentLink: dwarf_hd.md#nain Name: Nain des pierres diff --git a/Data/HD/hd_dwarf_nain_des_tertres.md b/Data/HD/hd_dwarf_nain_des_tertres.md index 35104a8b..74e3810e 100644 --- a/Data/HD/hd_dwarf_nain_des_tertres.md +++ b/Data/HD/hd_dwarf_nain_des_tertres.md @@ -1,5 +1,6 @@ --- !RaceItem +WisdomBonus: 1 Id: dwarf_hd.md#nain-des-tertres ParentLink: dwarf_hd.md#nain Name: Nain des tertres diff --git a/Data/HD/hd_elf.md b/Data/HD/hd_elf.md index f84c213c..cf8a7277 100644 --- a/Data/HD/hd_elf.md +++ b/Data/HD/hd_elf.md @@ -1,5 +1,6 @@ --- !RaceItem +DexterityBonus: 2 Id: elf_hd.md#elfe RootId: elf_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_elf_elfe_daether.md b/Data/HD/hd_elf_elfe_daether.md index 9f2b0366..2f19f08e 100644 --- a/Data/HD/hd_elf_elfe_daether.md +++ b/Data/HD/hd_elf_elfe_daether.md @@ -1,5 +1,6 @@ --- !RaceItem +IntelligenceBonus: 1 Id: elf_hd.md#elfe-daether ParentLink: elf_hd.md#elfe Name: Elfe d'aether diff --git a/Data/HD/hd_elf_elfe_de_fer.md b/Data/HD/hd_elf_elfe_de_fer.md index 850c628f..c5c4e4c6 100644 --- a/Data/HD/hd_elf_elfe_de_fer.md +++ b/Data/HD/hd_elf_elfe_de_fer.md @@ -1,5 +1,6 @@ --- !RaceItem +CharismaBonus: 1 Id: elf_hd.md#elfe-de-fer ParentLink: elf_hd.md#elfe Name: Elfe de fer diff --git a/Data/HD/hd_elf_elfe_des_sylves.md b/Data/HD/hd_elf_elfe_des_sylves.md index e9ffbfff..df37b04e 100644 --- a/Data/HD/hd_elf_elfe_des_sylves.md +++ b/Data/HD/hd_elf_elfe_des_sylves.md @@ -1,5 +1,6 @@ --- !RaceItem +WisdomBonus: 1 Id: elf_hd.md#elfe-des-sylves ParentLink: elf_hd.md#elfe Name: Elfe des sylves diff --git a/Data/HD/hd_felys.md b/Data/HD/hd_felys.md index 67a1e508..7c101595 100644 --- a/Data/HD/hd_felys.md +++ b/Data/HD/hd_felys.md @@ -1,5 +1,7 @@ --- !RaceItem +DexterityBonus: 2 +WisdomBonus: 1 Id: felys_hd.md#félys RootId: felys_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_fighter.md b/Data/HD/hd_fighter.md index 77636f25..ae00a1cd 100644 --- a/Data/HD/hd_fighter.md +++ b/Data/HD/hd_fighter.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Guerrier +Source: (MDR p160) Id: fighter_hd.md#guerrier RootId: fighter_hd.md ParentLink: classes_hd.md -Name: Guerrier ParentName: Classes NameLevel: 1 AltName: Fighter (SRD p24) -Source: (MDR p160) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_fighter_champion.md b/Data/HD/hd_fighter_champion.md index 4a7d28f8..f32c3766 100644 --- a/Data/HD/hd_fighter_champion.md +++ b/Data/HD/hd_fighter_champion.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Champion +Source: (MDR p162) Id: fighter_champion_hd.md#champion RootId: fighter_champion_hd.md ParentLink: fighter_hd.md#archétypes-martiaux -Name: Champion ParentName: Archétypes martiaux NameLevel: 1 AltName: Champion (SRD p25) -Source: (MDR p162) --- >  [Archétypes martiaux](hd_fighter_archetypes_martiaux.md) diff --git a/Data/HD/hd_fighter_defender.md b/Data/HD/hd_fighter_defender.md index efa1bbc7..a5b7957c 100644 --- a/Data/HD/hd_fighter_defender.md +++ b/Data/HD/hd_fighter_defender.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Défenseur +Source: (MDR p163) Id: fighter_defender_hd.md#défenseur RootId: fighter_defender_hd.md ParentLink: fighter_hd.md#archétypes-martiaux -Name: Défenseur ParentName: Archétypes martiaux NameLevel: 1 -Source: (MDR p163) --- >  [Archétypes martiaux](hd_fighter_archetypes_martiaux.md) diff --git a/Data/HD/hd_fighter_spellblade.md b/Data/HD/hd_fighter_spellblade.md index c6bc6724..feddbfb3 100644 --- a/Data/HD/hd_fighter_spellblade.md +++ b/Data/HD/hd_fighter_spellblade.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Sorcelame +Source: (MDR p163) Id: fighter_spellblade_hd.md#sorcelame RootId: fighter_spellblade_hd.md ParentLink: fighter_hd.md#archétypes-martiaux -Name: Sorcelame ParentName: Archétypes martiaux NameLevel: 1 -Source: (MDR p163) --- >  [Archétypes martiaux](hd_fighter_archetypes_martiaux.md) diff --git a/Data/HD/hd_fighter_swordsman.md b/Data/HD/hd_fighter_swordsman.md index f4e2adcc..001efe34 100644 --- a/Data/HD/hd_fighter_swordsman.md +++ b/Data/HD/hd_fighter_swordsman.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Bretteur +Source: (MDR p162) Id: fighter_swordsman_hd.md#bretteur RootId: fighter_swordsman_hd.md ParentLink: fighter_hd.md#archétypes-martiaux -Name: Bretteur ParentName: Archétypes martiaux NameLevel: 1 -Source: (MDR p162) --- >  [Archétypes martiaux](hd_fighter_archetypes_martiaux.md) diff --git a/Data/HD/hd_gnome.md b/Data/HD/hd_gnome.md index 6e4fa42d..91cea856 100644 --- a/Data/HD/hd_gnome.md +++ b/Data/HD/hd_gnome.md @@ -1,5 +1,6 @@ --- !RaceItem +IntelligenceBonus: 2 Id: gnome_hd.md#gnome RootId: gnome_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_gnome_gnome_des_fees.md b/Data/HD/hd_gnome_gnome_des_fees.md index f1e95be9..2f09e04c 100644 --- a/Data/HD/hd_gnome_gnome_des_fees.md +++ b/Data/HD/hd_gnome_gnome_des_fees.md @@ -1,5 +1,6 @@ --- !RaceItem +DexterityBonus: 1 Id: gnome_hd.md#gnome-des-fées ParentLink: gnome_hd.md#gnome Name: Gnome des fées @@ -17,7 +18,9 @@ Source: (MDR p49) Les gnomes des fées sont très habiles et leur relation à la nature leur donne une aisance particulière pour le pistage. -**Augmentation de caractéristiques.** Votre valeur de [Dextérité](hd_abilities_dexterity.md) augmente de 1. Sens aiguisés. Vos sens supérieurs vous permettent de suivre n'importe quelle piste. Vous bénéficiez d'un avantage à tous vos tests de [Sagesse (Survie)](hd_abilities_wisdom_survie.md) effectués afin de pister une créature. +**Augmentation de caractéristiques.** Votre valeur de [Dextérité](hd_abilities_dexterity.md) augmente de 1. + +**Sens aiguisés.** Vos sens supérieurs vous permettent de suivre n'importe quelle piste. Vous bénéficiez d'un avantage à tous vos tests de [Sagesse (Survie)](hd_abilities_wisdom_survie.md) effectués afin de pister une créature. **Projection spirituelle.** En dépensant une action, lorsque vous êtes en pleine forêt, vous pouvez appeler un petit animal : un petit oiseau de la taille d'une mésange ou d'un moineau ou un rongeur. Vous sifflez une étrange mélodie et, au bout d'une minute, une créature se présente à vous. Cette dernière doit être présente dans les environs afin de répondre à l'appel. Une fois la créature devant vous, vous projetez votre esprit et vos sens en elle. Vous pouvez prendre son contrôle et voir et entendre par ses yeux et ses oreilles. La projection dure 10 minutes et ne vous permet pas d'éloigner la créature de plus de 500 mètres de vous. Tant que le contrôle dure, vous ne pouvez pas voir, entendre, ni agir avec votre propre corps. Vous pouvez mettre fin à tout moment à votre emprise et revenir dans votre corps, sans autre contrecoup. Subir un coup ou des dégâts vous ramène immédiatement dans votre corps, libérant la créature de votre emprise. Cependant, dans ce cas, vous êtes désorienté et subissez un désavantage à toutes vos actions pendant 1 minute. Il en va de même si l'animal est tué pendant la projection. Vous devez terminer un repos long avant de pouvoir réutiliser cette capacité. ce pouvoir fonctionne aussi en zone urbaine. Il vous faut cependant vous trouver dans une zone où la nature est encore présente et puissante (un souterrain naturel, un bosquet sacré, un jardin luxuriant, etc...). diff --git a/Data/HD/hd_gnome_gnome_des_lacs.md b/Data/HD/hd_gnome_gnome_des_lacs.md index c2cd8e0c..3b531389 100644 --- a/Data/HD/hd_gnome_gnome_des_lacs.md +++ b/Data/HD/hd_gnome_gnome_des_lacs.md @@ -1,5 +1,6 @@ --- !RaceItem +WisdomBonus: 1 Id: gnome_hd.md#gnome-des-lacs ParentLink: gnome_hd.md#gnome Name: Gnome des lacs diff --git a/Data/HD/hd_gnome_gnome_des_roches.md b/Data/HD/hd_gnome_gnome_des_roches.md index 78ff0651..720c220a 100644 --- a/Data/HD/hd_gnome_gnome_des_roches.md +++ b/Data/HD/hd_gnome_gnome_des_roches.md @@ -1,5 +1,6 @@ --- !RaceItem +ConstitutionBonus: 1 Id: gnome_hd.md#gnome-des-roches ParentLink: gnome_hd.md#gnome Name: Gnome des roches diff --git a/Data/HD/hd_half_elf.md b/Data/HD/hd_half_elf.md index a7f33377..91387c1a 100644 --- a/Data/HD/hd_half_elf.md +++ b/Data/HD/hd_half_elf.md @@ -1,5 +1,6 @@ --- !RaceItem +CharismaBonus: 2 Id: half-elf_hd.md#demi-elfe RootId: half-elf_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_half_orc.md b/Data/HD/hd_half_orc.md index b000800e..1fc28c53 100644 --- a/Data/HD/hd_half_orc.md +++ b/Data/HD/hd_half_orc.md @@ -1,5 +1,7 @@ --- !RaceItem +StrengthBonus: 2 +ConstitutionBonus: 1 Id: half-orc_hd.md#demi-orc RootId: half-orc_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_halfling.md b/Data/HD/hd_halfling.md index 5b3fb9c8..cca2931d 100644 --- a/Data/HD/hd_halfling.md +++ b/Data/HD/hd_halfling.md @@ -1,5 +1,6 @@ --- !RaceItem +DexterityBonus: 2 Id: halfling_hd.md#halfelin RootId: halfling_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_halfling_halfelin_grand_sabot.md b/Data/HD/hd_halfling_halfelin_grand_sabot.md index b6e060fd..27ddf2e5 100644 --- a/Data/HD/hd_halfling_halfelin_grand_sabot.md +++ b/Data/HD/hd_halfling_halfelin_grand_sabot.md @@ -1,5 +1,6 @@ --- !RaceItem +ConstitutionBonus: 1 Id: halfling_hd.md#halfelin-grand-sabot ParentLink: halfling_hd.md#halfelin Name: Halfelin grand-sabot diff --git a/Data/HD/hd_halfling_halfelin_pied_leger.md b/Data/HD/hd_halfling_halfelin_pied_leger.md index 8f0a7465..637337ff 100644 --- a/Data/HD/hd_halfling_halfelin_pied_leger.md +++ b/Data/HD/hd_halfling_halfelin_pied_leger.md @@ -1,5 +1,6 @@ --- !RaceItem +CharismaBonus: 1 Id: halfling_hd.md#halfelin-pied-léger ParentLink: halfling_hd.md#halfelin Name: Halfelin pied-léger diff --git a/Data/HD/hd_homme_serpent.md b/Data/HD/hd_homme_serpent.md index 76c56410..4b42563e 100644 --- a/Data/HD/hd_homme_serpent.md +++ b/Data/HD/hd_homme_serpent.md @@ -1,5 +1,7 @@ --- !RaceItem +WisdomBonus: 2 +CharismaBonus: 1 Id: homme-serpent_hd.md#homme-serpent RootId: homme-serpent_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_human.md b/Data/HD/hd_human.md index 18f29fef..889b0183 100644 --- a/Data/HD/hd_human.md +++ b/Data/HD/hd_human.md @@ -1,5 +1,6 @@ --- !RaceItem +AllFeaturesBonus: 1 Id: human_hd.md#humain RootId: human_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_monk.md b/Data/HD/hd_monk.md index 8af1e532..7fbeda62 100644 --- a/Data/HD/hd_monk.md +++ b/Data/HD/hd_monk.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Moine +Source: (MDR p176) Id: monk_hd.md#moine RootId: monk_hd.md ParentLink: classes_hd.md -Name: Moine ParentName: Classes NameLevel: 1 AltName: Monk (SRD p26) -Source: (MDR p176) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_monk_enlightenment.md b/Data/HD/hd_monk_enlightenment.md index a4346201..bab2a39a 100644 --- a/Data/HD/hd_monk_enlightenment.md +++ b/Data/HD/hd_monk_enlightenment.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Voie de l'illumination +Source: (MDR p180) Id: monk_enlightenment_hd.md#voie-de-lillumination RootId: monk_enlightenment_hd.md ParentLink: monk_hd.md#traditions-monacales -Name: Voie de l'illumination ParentName: Traditions monacales NameLevel: 1 -Source: (MDR p180) --- >  [Traditions monacales](hd_monk_traditions_monacales.md) diff --git a/Data/HD/hd_monk_fiveanimals.md b/Data/HD/hd_monk_fiveanimals.md index 65a19427..a9986142 100644 --- a/Data/HD/hd_monk_fiveanimals.md +++ b/Data/HD/hd_monk_fiveanimals.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Voie des cinq animaux +Source: (MDR p180) Id: monk_fiveanimals_hd.md#voie-des-cinq-animaux RootId: monk_fiveanimals_hd.md ParentLink: monk_hd.md#traditions-monacales -Name: Voie des cinq animaux ParentName: Traditions monacales NameLevel: 1 -Source: (MDR p180) --- >  [Traditions monacales](hd_monk_traditions_monacales.md) diff --git a/Data/HD/hd_monk_flexibility.md b/Data/HD/hd_monk_flexibility.md index 03181ad2..7e50ec8b 100644 --- a/Data/HD/hd_monk_flexibility.md +++ b/Data/HD/hd_monk_flexibility.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Voie de la souplesse +Source: (MDR p181) Id: monk_flexibility_hd.md#voie-de-la-souplesse RootId: monk_flexibility_hd.md ParentLink: monk_hd.md#traditions-monacales -Name: Voie de la souplesse ParentName: Traditions monacales NameLevel: 1 -Source: (MDR p181) --- >  [Traditions monacales](hd_monk_traditions_monacales.md) diff --git a/Data/HD/hd_monk_openhand.md b/Data/HD/hd_monk_openhand.md index 439fd348..194c1785 100644 --- a/Data/HD/hd_monk_openhand.md +++ b/Data/HD/hd_monk_openhand.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Voie de la main ouverte +Source: (MDR p179) Id: monk_openhand_hd.md#voie-de-la-main-ouverte RootId: monk_openhand_hd.md ParentLink: monk_hd.md#traditions-monacales -Name: Voie de la main ouverte ParentName: Traditions monacales NameLevel: 1 AltName: Way of the Open Hand (SRD p28) -Source: (MDR p179) --- >  [Traditions monacales](hd_monk_traditions_monacales.md) diff --git a/Data/HD/hd_paladin.md b/Data/HD/hd_paladin.md index f2dd5de1..a20e09a9 100644 --- a/Data/HD/hd_paladin.md +++ b/Data/HD/hd_paladin.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Paladin +Source: (MDR p183) Id: paladin_hd.md#paladin RootId: paladin_hd.md ParentLink: classes_hd.md -Name: Paladin ParentName: Classes NameLevel: 1 AltName: Paladin (SRD p30) -Source: (MDR p183) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_paladin_devotion.md b/Data/HD/hd_paladin_devotion.md index 75a3f0d2..82c51a08 100644 --- a/Data/HD/hd_paladin_devotion.md +++ b/Data/HD/hd_paladin_devotion.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Serment de dévotion +Source: (MDR p186) Id: paladin_devotion_hd.md#serment-de-dévotion RootId: paladin_devotion_hd.md ParentLink: paladin_hd.md#serments-sacrés -Name: Serment de dévotion ParentName: Serments sacrés NameLevel: 1 AltName: Oath of Devotion (SRD p32) -Source: (MDR p186) --- >  [Serments sacrés](hd_paladin_serments_sacres.md) diff --git a/Data/HD/hd_paladin_obedience.md b/Data/HD/hd_paladin_obedience.md index fe1c5025..d298cfbd 100644 --- a/Data/HD/hd_paladin_obedience.md +++ b/Data/HD/hd_paladin_obedience.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Serment d'obédience +Source: (MDR p187) Id: paladin_obedience_hd.md#serment-dobédience RootId: paladin_obedience_hd.md ParentLink: paladin_hd.md#serments-sacrés -Name: Serment d'obédience ParentName: Serments sacrés NameLevel: 1 -Source: (MDR p187) --- >  [Serments sacrés](hd_paladin_serments_sacres.md) diff --git a/Data/HD/hd_paladin_perfection.md b/Data/HD/hd_paladin_perfection.md index bfb466bf..65e1060d 100644 --- a/Data/HD/hd_paladin_perfection.md +++ b/Data/HD/hd_paladin_perfection.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Serment de perfection +Source: (MDR p189) Id: paladin_perfection_hd.md#serment-de-perfection RootId: paladin_perfection_hd.md ParentLink: paladin_hd.md#serments-sacrés -Name: Serment de perfection ParentName: Serments sacrés NameLevel: 1 -Source: (MDR p189) --- >  [Serments sacrés](hd_paladin_serments_sacres.md) diff --git a/Data/HD/hd_paladin_piety.md b/Data/HD/hd_paladin_piety.md index 1a095a21..05e0f8d1 100644 --- a/Data/HD/hd_paladin_piety.md +++ b/Data/HD/hd_paladin_piety.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Serment de piété +Source: (MDR p190) Id: paladin_piety_hd.md#serment-de-piété RootId: paladin_piety_hd.md ParentLink: paladin_hd.md#serments-sacrés -Name: Serment de piété ParentName: Serments sacrés NameLevel: 1 -Source: (MDR p190) --- >  [Serments sacrés](hd_paladin_serments_sacres.md) diff --git a/Data/HD/hd_paladin_redemption.md b/Data/HD/hd_paladin_redemption.md index 99559bf2..e04d4d27 100644 --- a/Data/HD/hd_paladin_redemption.md +++ b/Data/HD/hd_paladin_redemption.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Serment de rédemption +Source: (MDR p191) Id: paladin_redemption_hd.md#serment-de-rédemption RootId: paladin_redemption_hd.md ParentLink: paladin_hd.md#serments-sacrés -Name: Serment de rédemption ParentName: Serments sacrés NameLevel: 1 -Source: (MDR p191) --- >  [Serments sacrés](hd_paladin_serments_sacres.md) diff --git a/Data/HD/hd_ranger.md b/Data/HD/hd_ranger.md index 88249e0b..b2af452b 100644 --- a/Data/HD/hd_ranger.md +++ b/Data/HD/hd_ranger.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Rôdeur +Source: (MDR p194) Id: ranger_hd.md#rôdeur RootId: ranger_hd.md ParentLink: classes_hd.md -Name: Rôdeur ParentName: Classes NameLevel: 1 AltName: Ranger (SRD p35) -Source: (MDR p194) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_ranger_arcane.md b/Data/HD/hd_ranger_arcane.md index a3ab8b19..d5c7b49a 100644 --- a/Data/HD/hd_ranger_arcane.md +++ b/Data/HD/hd_ranger_arcane.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Archer arcanique +Source: (MDR p198) Id: ranger_arcane_hd.md#archer-arcanique RootId: ranger_arcane_hd.md ParentLink: ranger_hd.md#archétypes-de-rôdeurs -Name: Archer arcanique ParentName: Archétypes de rôdeur NameLevel: 1 -Source: (MDR p198) --- >  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) diff --git a/Data/HD/hd_ranger_exile.md b/Data/HD/hd_ranger_exile.md index 2d96d8cf..6a387b0c 100644 --- a/Data/HD/hd_ranger_exile.md +++ b/Data/HD/hd_ranger_exile.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Exilé +Source: (MDR p199) Id: ranger_exile_hd.md#exilé RootId: ranger_exile_hd.md ParentLink: ranger_hd.md#archétypes-de-rôdeurs -Name: Exilé ParentName: Archétypes de rôdeur NameLevel: 1 -Source: (MDR p199) --- >  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) diff --git a/Data/HD/hd_ranger_hunter.md b/Data/HD/hd_ranger_hunter.md index a1f55c00..b4db79f2 100644 --- a/Data/HD/hd_ranger_hunter.md +++ b/Data/HD/hd_ranger_hunter.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Chasseur +Source: (MDR p198) Id: ranger_hunter_hd.md#chasseur RootId: ranger_hunter_hd.md ParentLink: ranger_hd.md#archétypes-de-rôdeurs -Name: Chasseur ParentName: Archétypes de rôdeur NameLevel: 1 AltName: Hunter (SRD p37) -Source: (MDR p198) --- >  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) diff --git a/Data/HD/hd_ranger_pisteur.md b/Data/HD/hd_ranger_pisteur.md index 285084c6..157fd48d 100644 --- a/Data/HD/hd_ranger_pisteur.md +++ b/Data/HD/hd_ranger_pisteur.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: 'Pisteur : un rôdeur alternatif' +Source: (MDR p200) Id: ranger_pisteur_hd.md#pisteur--un-rôdeur-alternatif RootId: ranger_pisteur_hd.md ParentLink: ranger_hd.md#archétypes-de-rôdeurs -Name: 'Pisteur : un rôdeur alternatif' ParentName: Archétypes de rôdeur NameLevel: 1 -Source: (MDR p200) --- >  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) diff --git a/Data/HD/hd_ranger_tracker.md b/Data/HD/hd_ranger_tracker.md index 48ebd373..732d75b0 100644 --- a/Data/HD/hd_ranger_tracker.md +++ b/Data/HD/hd_ranger_tracker.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Traqueur +Source: (MDR p199) Id: ranger_tracker_hd.md#traqueur RootId: ranger_tracker_hd.md ParentLink: ranger_hd.md#archétypes-de-rôdeurs -Name: Traqueur ParentName: Archétypes de rôdeur NameLevel: 1 -Source: (MDR p199) --- >  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) diff --git a/Data/HD/hd_rogue.md b/Data/HD/hd_rogue.md index 4e32b96a..96d1cfb0 100644 --- a/Data/HD/hd_rogue.md +++ b/Data/HD/hd_rogue.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Roublard +Source: (MDR p202) Id: rogue_hd.md#roublard RootId: rogue_hd.md ParentLink: classes_hd.md -Name: Roublard ParentName: Classes NameLevel: 1 AltName: Rogue (SRD p39) -Source: (MDR p202) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_rogue_brute.md b/Data/HD/hd_rogue_brute.md index eff9a2b1..a3e10646 100644 --- a/Data/HD/hd_rogue_brute.md +++ b/Data/HD/hd_rogue_brute.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Brute +Source: (MDR p205) Id: rogue_brute_hd.md#brute RootId: rogue_brute_hd.md ParentLink: rogue_hd.md#archétypes-de-roublard -Name: Brute ParentName: Archétypes de roublard NameLevel: 1 -Source: (MDR p205) --- >  [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md) diff --git a/Data/HD/hd_rogue_ombrelame.md b/Data/HD/hd_rogue_ombrelame.md index 1c6c2aa8..2fbaeca6 100644 --- a/Data/HD/hd_rogue_ombrelame.md +++ b/Data/HD/hd_rogue_ombrelame.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Ombrelame +Source: (MDR p206) Id: rogue_ombrelame_hd.md#ombrelame RootId: rogue_ombrelame_hd.md ParentLink: rogue_hd.md#archétypes-de-roublard -Name: Ombrelame ParentName: Archétypes de roublard NameLevel: 1 -Source: (MDR p206) --- >  [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md) diff --git a/Data/HD/hd_rogue_spy.md b/Data/HD/hd_rogue_spy.md index 4b0ef0b0..ceab68f8 100644 --- a/Data/HD/hd_rogue_spy.md +++ b/Data/HD/hd_rogue_spy.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Espion +Source: (MDR p206) Id: rogue_spy_hd.md#espion RootId: rogue_spy_hd.md ParentLink: rogue_hd.md#archétypes-de-roublard -Name: Espion ParentName: Archétypes de roublard NameLevel: 1 -Source: (MDR p206) --- >  [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md) diff --git a/Data/HD/hd_rogue_thief.md b/Data/HD/hd_rogue_thief.md index e81ff8c4..efc69e3f 100644 --- a/Data/HD/hd_rogue_thief.md +++ b/Data/HD/hd_rogue_thief.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Voleur +Source: (MDR p204) Id: rogue_thief_hd.md#voleur RootId: rogue_thief_hd.md ParentLink: rogue_hd.md#archétypes-de-roublard -Name: Voleur ParentName: Archétypes de roublard NameLevel: 1 AltName: Thief (SRD p40) -Source: (MDR p204) --- >  [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md) diff --git a/Data/HD/hd_sorcerer.md b/Data/HD/hd_sorcerer.md index ee805b6d..4ecc0b90 100644 --- a/Data/HD/hd_sorcerer.md +++ b/Data/HD/hd_sorcerer.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Ensorceleur +Source: (MDR p152) Id: sorcerer_hd.md#ensorceleur RootId: sorcerer_hd.md ParentLink: classes_hd.md -Name: Ensorceleur ParentName: Classes NameLevel: 1 AltName: Sorcerer (SRD p41) -Source: (MDR p152) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_sorcerer_celestial.md b/Data/HD/hd_sorcerer_celestial.md index d9d65a12..88d2a92b 100644 --- a/Data/HD/hd_sorcerer_celestial.md +++ b/Data/HD/hd_sorcerer_celestial.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Lignée céleste +Source: (MDR p156) Id: sorcerer_celestial_hd.md#lignée-céleste RootId: sorcerer_celestial_hd.md ParentLink: sorcerer_hd.md#origines-magiques -Name: Lignée céleste ParentName: Origines magiques NameLevel: 1 -Source: (MDR p156) --- >  [Origines magiques](hd_sorcerer_origines_magiques.md) diff --git a/Data/HD/hd_sorcerer_draconic.md b/Data/HD/hd_sorcerer_draconic.md index 4ef94f12..feb6cb2d 100644 --- a/Data/HD/hd_sorcerer_draconic.md +++ b/Data/HD/hd_sorcerer_draconic.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Lignée draconique +Source: (MDR p155) Id: sorcerer_draconic_hd.md#lignée-draconique RootId: sorcerer_draconic_hd.md ParentLink: sorcerer_hd.md#origines-magiques -Name: Lignée draconique ParentName: Origines magiques NameLevel: 1 AltName: Draconic Bloodline (SRD p44) -Source: (MDR p155) --- >  [Origines magiques](hd_sorcerer_origines_magiques.md) diff --git a/Data/HD/hd_sorcerer_fairy.md b/Data/HD/hd_sorcerer_fairy.md index 868d5049..62cd906f 100644 --- a/Data/HD/hd_sorcerer_fairy.md +++ b/Data/HD/hd_sorcerer_fairy.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Lignée féerique +Source: (MDR p157) Id: sorcerer_fairy_hd.md#lignée-féerique RootId: sorcerer_fairy_hd.md ParentLink: sorcerer_hd.md#origines-magiques -Name: Lignée féerique ParentName: Origines magiques NameLevel: 1 -Source: (MDR p157) --- >  [Origines magiques](hd_sorcerer_origines_magiques.md) diff --git a/Data/HD/hd_sorcerer_infernal.md b/Data/HD/hd_sorcerer_infernal.md index 111ec39d..d43c10fc 100644 --- a/Data/HD/hd_sorcerer_infernal.md +++ b/Data/HD/hd_sorcerer_infernal.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Lignée infernale +Source: (MDR p158) Id: sorcerer_infernal_hd.md#lignée-infernale RootId: sorcerer_infernal_hd.md ParentLink: sorcerer_hd.md#origines-magiques -Name: Lignée infernale ParentName: Origines magiques NameLevel: 1 -Source: (MDR p158) --- >  [Origines magiques](hd_sorcerer_origines_magiques.md) diff --git a/Data/HD/hd_tiefling.md b/Data/HD/hd_tiefling.md index 32393825..219d9646 100644 --- a/Data/HD/hd_tiefling.md +++ b/Data/HD/hd_tiefling.md @@ -1,5 +1,7 @@ --- !RaceItem +IntelligenceBonus: 1 +CharismaBonus: 2 Id: tiefling_hd.md#tieffelin RootId: tiefling_hd.md ParentLink: races_hd.md# diff --git a/Data/HD/hd_warlock.md b/Data/HD/hd_warlock.md index 5e8b3d02..861398a9 100644 --- a/Data/HD/hd_warlock.md +++ b/Data/HD/hd_warlock.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Sorcier +Source: (MDR p209) Id: warlock_hd.md#sorcier RootId: warlock_hd.md ParentLink: classes_hd.md -Name: Sorcier ParentName: Classes NameLevel: 1 AltName: Warlock (SRD p46) -Source: (MDR p209) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_warlock_depths.md b/Data/HD/hd_warlock_depths.md index 2c64878a..5deb62e0 100644 --- a/Data/HD/hd_warlock_depths.md +++ b/Data/HD/hd_warlock_depths.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: La puissance des profondeurs +Source: (MDR p216) Id: warlock_depths_hd.md#la-puissance-des-profondeurs RootId: warlock_depths_hd.md ParentLink: warlock_hd.md#protecteurs-doutre-monde -Name: La puissance des profondeurs ParentName: Protecteurs d'outre-monde NameLevel: 1 -Source: (MDR p216) --- >  [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md) diff --git a/Data/HD/hd_warlock_extradimensional.md b/Data/HD/hd_warlock_extradimensional.md index df85ff43..c22f4d49 100644 --- a/Data/HD/hd_warlock_extradimensional.md +++ b/Data/HD/hd_warlock_extradimensional.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: L'entité extra-dimensionnelle +Source: (MDR p217) Id: warlock_extradimensional_hd.md#lentité-extra-dimensionnelle RootId: warlock_extradimensional_hd.md ParentLink: warlock_hd.md#protecteurs-doutre-monde -Name: L'entité extra-dimensionnelle ParentName: Protecteurs d'outre-monde NameLevel: 1 -Source: (MDR p217) --- >  [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md) diff --git a/Data/HD/hd_warlock_fiendish.md b/Data/HD/hd_warlock_fiendish.md index b5a9a2f3..5d6bc4fc 100644 --- a/Data/HD/hd_warlock_fiendish.md +++ b/Data/HD/hd_warlock_fiendish.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Le fiélon +Source: (MDR p215) Id: warlock_fiendish_hd.md#le-fiélon RootId: warlock_fiendish_hd.md ParentLink: warlock_hd.md#protecteurs-doutre-monde -Name: Le fiélon ParentName: Protecteurs d'outre-monde NameLevel: 1 AltName: The Fiend (SRD p50) -Source: (MDR p215) --- >  [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md) diff --git a/Data/HD/hd_warlock_immortal.md b/Data/HD/hd_warlock_immortal.md index ad6febad..14641ed7 100644 --- a/Data/HD/hd_warlock_immortal.md +++ b/Data/HD/hd_warlock_immortal.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Le seigneur immortel +Source: (MDR p215) Id: warlock_immortal_hd.md#le-seigneur-immortel RootId: warlock_immortal_hd.md ParentLink: warlock_hd.md#protecteurs-doutre-monde -Name: Le seigneur immortel ParentName: Protecteurs d'outre-monde NameLevel: 1 -Source: (MDR p215) --- >  [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md) diff --git a/Data/HD/hd_warlock_occultsummons.md b/Data/HD/hd_warlock_occultsummons.md index db32a36e..e6c8abc9 100644 --- a/Data/HD/hd_warlock_occultsummons.md +++ b/Data/HD/hd_warlock_occultsummons.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Invocations occultes +Source: (MDR p213) Id: warlock_occultsummons_hd.md#invocations-occultes RootId: warlock_occultsummons_hd.md ParentLink: warlock_hd.md -Name: Invocations occultes ParentName: Sorcier NameLevel: 1 AltName: Eldritch Invocations (SRD p48) -Source: (MDR p213) --- >  [Sorcier](hd_warlock.md) diff --git a/Data/HD/hd_warlock_pact.md b/Data/HD/hd_warlock_pact.md index b736e3ef..ca41679f 100644 --- a/Data/HD/hd_warlock_pact.md +++ b/Data/HD/hd_warlock_pact.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Pacte +Source: (MDR p211) Id: warlock_pact_hd.md#pacte RootId: warlock_pact_hd.md ParentLink: warlock_hd.md -Name: Pacte ParentName: Sorcier NameLevel: 1 AltName: Pact Boon (SRD p47) -Source: (MDR p211) --- >  [Sorcier](hd_warlock.md) diff --git a/Data/HD/hd_wizard.md b/Data/HD/hd_wizard.md index 3a5a04c2..1c5f0c16 100644 --- a/Data/HD/hd_wizard.md +++ b/Data/HD/hd_wizard.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: Magicien +Source: (MDR p166) Id: wizard_hd.md#magicien RootId: wizard_hd.md ParentLink: classes_hd.md -Name: Magicien ParentName: Classes NameLevel: 1 AltName: Wizard (SRD p52) -Source: (MDR p166) --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_wizard_academician.md b/Data/HD/hd_wizard_academician.md index a627c93b..1e71d621 100644 --- a/Data/HD/hd_wizard_academician.md +++ b/Data/HD/hd_wizard_academician.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Académicien +Source: (MDR p169) Id: wizard_academician_hd.md#académicien RootId: wizard_academician_hd.md ParentLink: wizard_hd.md#traditions-arcaniques -Name: Académicien ParentName: Traditions arcaniques NameLevel: 1 -Source: (MDR p169) --- >  [Traditions arcaniques](hd_wizard_traditions_arcaniques.md) diff --git a/Data/HD/hd_wizard_elementalist.md b/Data/HD/hd_wizard_elementalist.md index 7191cb0e..3370c72a 100644 --- a/Data/HD/hd_wizard_elementalist.md +++ b/Data/HD/hd_wizard_elementalist.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Élémentaliste +Source: (MDR p171) Id: wizard_elementalist_hd.md#Élémentaliste RootId: wizard_elementalist_hd.md ParentLink: wizard_hd.md#traditions-arcaniques -Name: Élémentaliste ParentName: Traditions arcaniques NameLevel: 1 -Source: (MDR p171) --- >  [Traditions arcaniques](hd_wizard_traditions_arcaniques.md) diff --git a/Data/HD/hd_wizard_eminence.md b/Data/HD/hd_wizard_eminence.md index 2b87b339..82bcf689 100644 --- a/Data/HD/hd_wizard_eminence.md +++ b/Data/HD/hd_wizard_eminence.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Éminence grise +Source: (MDR p174) Id: wizard_eminence_hd.md#Éminence-grise RootId: wizard_eminence_hd.md ParentLink: wizard_hd.md#traditions-arcaniques -Name: Éminence grise ParentName: Traditions arcaniques NameLevel: 1 -Source: (MDR p174) --- >  [Traditions arcaniques](hd_wizard_traditions_arcaniques.md) diff --git a/Data/HD/hd_wizard_evocation.md b/Data/HD/hd_wizard_evocation.md index 32322648..e38e6856 100644 --- a/Data/HD/hd_wizard_evocation.md +++ b/Data/HD/hd_wizard_evocation.md @@ -1,13 +1,13 @@ --- -!Items +!ClassItem +Name: École d'évocation +Source: (MDR p419) Id: wizard_evocation_hd.md#École-dévocation RootId: wizard_evocation_hd.md ParentLink: wizard_hd.md#traditions-arcaniques -Name: École d'évocation ParentName: Traditions arcaniques NameLevel: 1 AltName: School of Evocation (SRD p54) -Source: (MDR p419) --- >  [Traditions arcaniques](hd_wizard_traditions_arcaniques.md) diff --git a/Data/HD/hd_wizard_surveyor.md b/Data/HD/hd_wizard_surveyor.md index f7ad4a94..330432eb 100644 --- a/Data/HD/hd_wizard_surveyor.md +++ b/Data/HD/hd_wizard_surveyor.md @@ -1,12 +1,12 @@ --- -!Items +!ClassItem +Name: Arpenteur +Source: (MDR p171) Id: wizard_surveyor_hd.md#arpenteur RootId: wizard_surveyor_hd.md ParentLink: wizard_hd.md#traditions-arcaniques -Name: Arpenteur ParentName: Traditions arcaniques NameLevel: 1 -Source: (MDR p171) --- >  [Traditions arcaniques](hd_wizard_traditions_arcaniques.md) diff --git a/Data/barbarian_berserker_hd.md b/Data/barbarian_berserker_hd.md index 8069fa1e..a5f4df26 100644 --- a/Data/barbarian_berserker_hd.md +++ b/Data/barbarian_berserker_hd.md @@ -1,5 +1,5 @@ - +[Voies primitives](barbarian_hd.md#voies-primitives) @@ -42,7 +42,7 @@ Si la créature réussit son [jet de sauvegarde], vous ne pouvez plus utiliser c - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/barbarian_hd.md b/Data/barbarian_hd.md index c29051d2..f9c66d37 100644 --- a/Data/barbarian_hd.md +++ b/Data/barbarian_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -223,7 +223,7 @@ Au niveau 20, vous êtes devenu une véritable force de la nature. Vos valeurs d - + diff --git a/Data/barbarian_howling_hd.md b/Data/barbarian_howling_hd.md index 837009e9..959f5327 100644 --- a/Data/barbarian_howling_hd.md +++ b/Data/barbarian_howling_hd.md @@ -1,5 +1,5 @@ - +[Voies primitives](barbarian_hd.md#voies-primitives) @@ -59,7 +59,7 @@ Le cri sauvage est à la fois un cri de guerre et de joie sauvage que vous pouss - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/barbarian_spirits_hd.md b/Data/barbarian_spirits_hd.md index a689d43e..83464113 100644 --- a/Data/barbarian_spirits_hd.md +++ b/Data/barbarian_spirits_hd.md @@ -1,5 +1,5 @@ - +[Voies primitives](barbarian_hd.md#voies-primitives) @@ -73,7 +73,7 @@ Désormais, lorsque vous terminez un repos court, vous récupérez un point de l - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/barbarian_steel_hd.md b/Data/barbarian_steel_hd.md index 4bc4b262..eeb39621 100644 --- a/Data/barbarian_steel_hd.md +++ b/Data/barbarian_steel_hd.md @@ -1,5 +1,5 @@ - +[Voies primitives](barbarian_hd.md#voies-primitives) @@ -49,7 +49,7 @@ Au niveau 14 et par la suite, lorsque vous êtes sous l'effet de la rage, vous b - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/bard_acrobats_hd.md b/Data/bard_acrobats_hd.md index 805562ce..e53eeeec 100644 --- a/Data/bard_acrobats_hd.md +++ b/Data/bard_acrobats_hd.md @@ -1,5 +1,5 @@ - +[Collèges bardiques](bard_hd.md#collèges-bardiques) @@ -66,7 +66,7 @@ Au niveau 14, votre spécialité fait de vous un professionnel accompli et un ad - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/bard_diplomats_hd.md b/Data/bard_diplomats_hd.md index 46bacfcc..6284b3df 100644 --- a/Data/bard_diplomats_hd.md +++ b/Data/bard_diplomats_hd.md @@ -1,5 +1,5 @@ - +[Collèges bardiques](bard_hd.md#collèges-bardiques) @@ -43,7 +43,7 @@ Au niveau 14, lorsqu'un de vos sorts de l'école d'enchantement cesse de faire e - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde [Force]: abilities_strength_hd.md diff --git a/Data/bard_hd.md b/Data/bard_hd.md index c374dff6..0a360a43 100644 --- a/Data/bard_hd.md +++ b/Data/bard_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -227,7 +227,7 @@ Une fois que vous atteignez le niveau 20, quand vous faites un jet d'initiative - + [Collège du savoir]: bard_knowledge_hd.md [Collège des diplomates]: bard_diplomats_hd.md diff --git a/Data/bard_heralds_hd.md b/Data/bard_heralds_hd.md index b2fb9bc6..d4a2d2c6 100644 --- a/Data/bard_heralds_hd.md +++ b/Data/bard_heralds_hd.md @@ -1,5 +1,5 @@ - +[Collèges bardiques](bard_hd.md#collèges-bardiques) @@ -47,7 +47,7 @@ Au niveau 14, sur un champ de bataille, votre simple présence assure les protag - + [jets de sauvegarde]: abilities_hd.md#jets-de-sauvegarde [terrorisé]: conditions_hd.md#terrorisé diff --git a/Data/bard_knowledge_hd.md b/Data/bard_knowledge_hd.md index d11483b5..d3efc190 100644 --- a/Data/bard_knowledge_hd.md +++ b/Data/bard_knowledge_hd.md @@ -1,5 +1,5 @@ - +[Collèges bardiques](bard_hd.md#collèges-bardiques) @@ -50,6 +50,6 @@ Les sorts que vous choisissez fonctionnent pour vous comme des sorts de barde ma - + diff --git a/Data/cleric_guide_hd.md b/Data/cleric_guide_hd.md index e01fffe6..6b353ee2 100644 --- a/Data/cleric_guide_hd.md +++ b/Data/cleric_guide_hd.md @@ -1,5 +1,5 @@ - +[Domaines divins](cleric_hd.md#domaines-divins) @@ -110,7 +110,7 @@ Lorsque vous atteignez le niveau 17, vous devenez capable de ressentir l'état - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde [jets de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/cleric_hd.md b/Data/cleric_hd.md index d0d54fc8..5fa307b6 100644 --- a/Data/cleric_hd.md +++ b/Data/cleric_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -209,7 +209,7 @@ Au niveau 20, votre déité répond automatiquement à votre appel, vous n'avez - + [Prêtre]: cleric_priest_hd.md [Gardien des traditions]: cleric_traditions_hd.md diff --git a/Data/cleric_life_hd.md b/Data/cleric_life_hd.md index c5cf3bca..f58b8454 100644 --- a/Data/cleric_life_hd.md +++ b/Data/cleric_life_hd.md @@ -1,5 +1,5 @@ - +[Domaines divins](cleric_hd.md#domaines-divins) @@ -76,6 +76,6 @@ Au niveau 8, vous gagnez la capacité d’insuffler de l’énergie divine dans - + diff --git a/Data/cleric_priest_hd.md b/Data/cleric_priest_hd.md index cf619a55..1b46d583 100644 --- a/Data/cleric_priest_hd.md +++ b/Data/cleric_priest_hd.md @@ -1,5 +1,5 @@ - +[Domaines divins](cleric_hd.md#domaines-divins) @@ -501,7 +501,7 @@ Accueillir dans le corps d'un simple mortel ne serait-ce qu'une infime partie de - + [léger comme une plume]: spells_hd.md#léger-comme-une-plume [bourrasque]: spells_hd.md#bourrasque diff --git a/Data/cleric_theurgist_hd.md b/Data/cleric_theurgist_hd.md index f4624111..d1fe8383 100644 --- a/Data/cleric_theurgist_hd.md +++ b/Data/cleric_theurgist_hd.md @@ -1,5 +1,5 @@ - +[Domaines divins](cleric_hd.md#domaines-divins) @@ -88,6 +88,9 @@ Votre étude exhaustive des différentes traditions et théories magiques vous p |---|---|---|---|---|---|---|---|---|---| |Sorts|8|8|7|6|5|4|3|2|2| + + + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/cleric_traditions_hd.md b/Data/cleric_traditions_hd.md index fd70a57f..781c770b 100644 --- a/Data/cleric_traditions_hd.md +++ b/Data/cleric_traditions_hd.md @@ -1,5 +1,5 @@ - +[Domaines divins](cleric_hd.md#domaines-divins) @@ -91,7 +91,7 @@ Désormais, vous êtes capable de lancer le sort soin des blessures de groupe en - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/druid_depths_hd.md b/Data/druid_depths_hd.md index 9ef7e786..fa78cc37 100644 --- a/Data/druid_depths_hd.md +++ b/Data/druid_depths_hd.md @@ -1,5 +1,5 @@ - +[Cercles druidiques](druid_hd.md#cercles-druidiques) @@ -71,7 +71,7 @@ Vous devez terminer votre déplacement à l'air libre. Si ce n'est pas le cas, v - + [Oxydeur]: monsters_hd.md#oxydeur diff --git a/Data/druid_earth_hd.md b/Data/druid_earth_hd.md index 852d04e6..e5a09ff0 100644 --- a/Data/druid_earth_hd.md +++ b/Data/druid_earth_hd.md @@ -1,5 +1,5 @@ - +[Cercles druidiques](druid_hd.md#cercles-druidiques) @@ -166,7 +166,7 @@ La créature est consciente de cet effet avant de vous attaquer. - + [enchevêtrement]: spells_hd.md#enchevêtrement [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/druid_fairies_hd.md b/Data/druid_fairies_hd.md index 26ae2094..1facb172 100644 --- a/Data/druid_fairies_hd.md +++ b/Data/druid_fairies_hd.md @@ -1,5 +1,5 @@ - +[Cercles druidiques](druid_hd.md#cercles-druidiques) @@ -92,7 +92,7 @@ Vous maîtrisez à présent la plus puissante magie des fées. - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/druid_hd.md b/Data/druid_hd.md index edca77f6..1f2f5fc7 100644 --- a/Data/druid_hd.md +++ b/Data/druid_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -203,7 +203,7 @@ De plus, vous pouvez ignorer les composantes verbales et somatiques de vos sorts - + [Cercle de la terre]: druid_earth_hd.md [Cercle des saisons]: druid_seasons_hd.md diff --git a/Data/druid_seasons_hd.md b/Data/druid_seasons_hd.md index 5fc8d85b..ac62e2e9 100644 --- a/Data/druid_seasons_hd.md +++ b/Data/druid_seasons_hd.md @@ -1,5 +1,5 @@ - +[Cercles druidiques](druid_hd.md#cercles-druidiques) @@ -160,7 +160,7 @@ Cette aptitude remplace et annule l'aptitude du même nom obtenue par les druide - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/fighter_champion_hd.md b/Data/fighter_champion_hd.md index 7ceca914..43d8af48 100644 --- a/Data/fighter_champion_hd.md +++ b/Data/fighter_champion_hd.md @@ -1,5 +1,5 @@ - +[Archétypes martiaux](fighter_hd.md#archétypes-martiaux) @@ -54,7 +54,7 @@ Au niveau 18, vous avez atteint le summum de votre endurance en combat. Si, au d - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/fighter_defender_hd.md b/Data/fighter_defender_hd.md index f90abbf9..becb3d4c 100644 --- a/Data/fighter_defender_hd.md +++ b/Data/fighter_defender_hd.md @@ -1,5 +1,5 @@ - +[Archétypes martiaux](fighter_hd.md#archétypes-martiaux) @@ -66,7 +66,7 @@ Enfin, lorsque vous utilisez l'aptitude bloquer un adversaire, vous pouvez déso - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/fighter_hd.md b/Data/fighter_hd.md index 90d98c09..40c4a26d 100644 --- a/Data/fighter_hd.md +++ b/Data/fighter_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -180,7 +180,7 @@ Chaque guerrier a sa propre approche du combat et de la façon de se perfectionn - + [Champion]: fighter_champion_hd.md [Bretteur]: fighter_swordsman_hd.md diff --git a/Data/fighter_spellblade_hd.md b/Data/fighter_spellblade_hd.md index 21a01822..6737b063 100644 --- a/Data/fighter_spellblade_hd.md +++ b/Data/fighter_spellblade_hd.md @@ -1,5 +1,5 @@ - +[Archétypes martiaux](fighter_hd.md#archétypes-martiaux) @@ -98,7 +98,7 @@ Lorsque vous atteignez le niveau 18, vous pouvez lancer un sort dont le temps d' - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/fighter_swordsman_hd.md b/Data/fighter_swordsman_hd.md index 7f454ecd..69de7678 100644 --- a/Data/fighter_swordsman_hd.md +++ b/Data/fighter_swordsman_hd.md @@ -1,5 +1,5 @@ - +[Archétypes martiaux](fighter_hd.md#archétypes-martiaux) @@ -53,7 +53,7 @@ De plus, à chaque fois que vous utilisez votre aptitude de frappe chirurgicale, - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/library.db b/Data/library.db index 1fe8aba8..f162ce0f 100644 Binary files a/Data/library.db and b/Data/library.db differ diff --git a/Data/monk_enlightenment_hd.md b/Data/monk_enlightenment_hd.md index e0138c2e..734d1355 100644 --- a/Data/monk_enlightenment_hd.md +++ b/Data/monk_enlightenment_hd.md @@ -1,5 +1,5 @@ - +[Traditions monacales](monk_hd.md#traditions-monacales) @@ -37,7 +37,7 @@ Vous devenez capable de les lancer comme s'il s'agissait de sorts de clerc et il - + [jets de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/monk_fiveanimals_hd.md b/Data/monk_fiveanimals_hd.md index adbadc3e..d7ada650 100644 --- a/Data/monk_fiveanimals_hd.md +++ b/Data/monk_fiveanimals_hd.md @@ -1,5 +1,5 @@ - +[Traditions monacales](monk_hd.md#traditions-monacales) @@ -53,7 +53,7 @@ Lorsque vous atteignez le niveau 17, en dépensant 3 points de ki, vous pouvez u - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/monk_flexibility_hd.md b/Data/monk_flexibility_hd.md index 95ae63c5..a54449ab 100644 --- a/Data/monk_flexibility_hd.md +++ b/Data/monk_flexibility_hd.md @@ -1,5 +1,5 @@ - +[Traditions monacales](monk_hd.md#traditions-monacales) @@ -53,7 +53,7 @@ Lorsque vous réussissez une empoignade, vous pouvez dépenser 3 points de ki po - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/monk_hd.md b/Data/monk_hd.md index c357e989..2bd7a8b3 100644 --- a/Data/monk_hd.md +++ b/Data/monk_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -294,7 +294,7 @@ Il est possible de suivre quatre traditions monacales différentes dans les mona - + [Voie de la main ouverte]: monk_openhand_hd.md [Voie des cinq animaux]: monk_fiveanimals_hd.md diff --git a/Data/monk_openhand_hd.md b/Data/monk_openhand_hd.md index 3895751a..44a6eb76 100644 --- a/Data/monk_openhand_hd.md +++ b/Data/monk_openhand_hd.md @@ -1,5 +1,5 @@ - +[Traditions monacales](monk_hd.md#traditions-monacales) @@ -52,7 +52,7 @@ Vous ne pouvez utiliser cette aptitude que sur une seule créature à la fois et - + [à terre]: conditions_hd.md#À-terre [Force]: abilities_strength_hd.md diff --git a/Data/paladin_devotion_hd.md b/Data/paladin_devotion_hd.md index 21ef2627..dc27b321 100644 --- a/Data/paladin_devotion_hd.md +++ b/Data/paladin_devotion_hd.md @@ -1,5 +1,5 @@ - +[Serments sacrés](paladin_hd.md#serments-sacrés) @@ -96,7 +96,7 @@ Après un usage de cette aptitude, vous devez terminer un repos long pour la rec - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde [jets de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/paladin_hd.md b/Data/paladin_hd.md index 5f39ab66..0c7d2e9c 100644 --- a/Data/paladin_hd.md +++ b/Data/paladin_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -310,7 +310,7 @@ Pour devenir un paladin, vous devez prêter un serment qui vous engage à servir - + [Serment de dévotion]: paladin_devotion_hd.md [Serment d'obédience]: paladin_obedience_hd.md diff --git a/Data/paladin_obedience_hd.md b/Data/paladin_obedience_hd.md index 0950b2a6..9a861cd2 100644 --- a/Data/paladin_obedience_hd.md +++ b/Data/paladin_obedience_hd.md @@ -1,5 +1,5 @@ - +[Serments sacrés](paladin_hd.md#serments-sacrés) @@ -92,7 +92,7 @@ Vous devez terminer un repos long avant de pouvoir de nouveau utiliser cette apt - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/paladin_perfection_hd.md b/Data/paladin_perfection_hd.md index 7b5fa7a3..3ca6ceb0 100644 --- a/Data/paladin_perfection_hd.md +++ b/Data/paladin_perfection_hd.md @@ -1,5 +1,5 @@ - +[Serments sacrés](paladin_hd.md#serments-sacrés) @@ -89,7 +89,7 @@ De plus, vous devenez résistant à tous les dégâts subis et vous obtenez un a - + [à terre]: conditions_hd.md#À-terre [Force]: abilities_strength_hd.md diff --git a/Data/paladin_piety_hd.md b/Data/paladin_piety_hd.md index d40b0e33..b58b38df 100644 --- a/Data/paladin_piety_hd.md +++ b/Data/paladin_piety_hd.md @@ -1,5 +1,5 @@ - +[Serments sacrés](paladin_hd.md#serments-sacrés) @@ -97,7 +97,7 @@ Vous devez terminer un repos long avant de pouvoir utiliser cette aptitude à no - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/paladin_redemption_hd.md b/Data/paladin_redemption_hd.md index bfb626ab..55ededfa 100644 --- a/Data/paladin_redemption_hd.md +++ b/Data/paladin_redemption_hd.md @@ -1,5 +1,5 @@ - +[Serments sacrés](paladin_hd.md#serments-sacrés) @@ -100,7 +100,7 @@ Au prix d'une action et d'un niveau d'épuisement, vous pouvez désormais prendr - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/ranger_arcane_hd.md b/Data/ranger_arcane_hd.md index 55369611..c0eae863 100644 --- a/Data/ranger_arcane_hd.md +++ b/Data/ranger_arcane_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) @@ -49,7 +49,7 @@ La flèche tueuse possède les propriétés d'une flèche ordinaire non magique - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/ranger_exile_hd.md b/Data/ranger_exile_hd.md index df3d24cc..effd3d4f 100644 --- a/Data/ranger_exile_hd.md +++ b/Data/ranger_exile_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) @@ -45,7 +45,7 @@ Lorsque vous atteignez le niveau 7, une longue lutte ou une longue rancoeur vous - + [jets de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/ranger_hd.md b/Data/ranger_hd.md index 02d98979..e58e7ac1 100644 --- a/Data/ranger_hd.md +++ b/Data/ranger_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -282,7 +282,7 @@ Les idéaux du rôdeur se déclinent en quatre types de spécialisations : l'arc - + [Chasseur]: ranger_hunter_hd.md [Archer arcanique]: ranger_arcane_hd.md diff --git a/Data/ranger_hunter_hd.md b/Data/ranger_hunter_hd.md index df508bc5..4a108ba4 100644 --- a/Data/ranger_hunter_hd.md +++ b/Data/ranger_hunter_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) @@ -72,7 +72,7 @@ Esquive instinctive. Quand un attaquant que vous pouvez voir réussit une attaqu - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/ranger_pisteur_hd.md b/Data/ranger_pisteur_hd.md index 00bad698..cfd77acb 100644 --- a/Data/ranger_pisteur_hd.md +++ b/Data/ranger_pisteur_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) @@ -45,6 +45,6 @@ Au niveau 13, vous pouvez choisir un deuxième style de combat. - + diff --git a/Data/ranger_tracker_hd.md b/Data/ranger_tracker_hd.md index fe8223cf..646abf53 100644 --- a/Data/ranger_tracker_hd.md +++ b/Data/ranger_tracker_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs) @@ -71,7 +71,7 @@ Au niveau 15, vous obtenez un terrain de prédilection supplémentaire. De plus, - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/rogue_brute_hd.md b/Data/rogue_brute_hd.md index fda512c5..3cd77311 100644 --- a/Data/rogue_brute_hd.md +++ b/Data/rogue_brute_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de roublard](rogue_hd.md#archétypes-de-roublard) @@ -59,7 +59,7 @@ Vous n'êtes sans doute pas comparable à un guerrier pour taper à tour de bras - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/rogue_hd.md b/Data/rogue_hd.md index f165c8a4..4a97960c 100644 --- a/Data/rogue_hd.md +++ b/Data/rogue_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -215,7 +215,7 @@ Il ne s'agit pas nécessairement de votre profession, mais d'une description des - + [Voleur]: rogue_thief_hd.md [Brute]: rogue_brute_hd.md diff --git a/Data/rogue_ombrelame_hd.md b/Data/rogue_ombrelame_hd.md index aa9b1ccf..81332a1c 100644 --- a/Data/rogue_ombrelame_hd.md +++ b/Data/rogue_ombrelame_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de roublard](rogue_hd.md#archétypes-de-roublard) @@ -98,7 +98,7 @@ Enfin, vous pouvez bénéficier de votre aptitude énergie de l'ombre une second - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/rogue_spy_hd.md b/Data/rogue_spy_hd.md index dc6313ef..9cdc3a25 100644 --- a/Data/rogue_spy_hd.md +++ b/Data/rogue_spy_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de roublard](rogue_hd.md#archétypes-de-roublard) @@ -69,7 +69,7 @@ Lorsque vous atteignez le niveau 13, vous ne pouvez plus être la cible de magie - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/rogue_thief_hd.md b/Data/rogue_thief_hd.md index 34700c4b..5cdccb6e 100644 --- a/Data/rogue_thief_hd.md +++ b/Data/rogue_thief_hd.md @@ -1,5 +1,5 @@ - +[Archétypes de roublard](rogue_hd.md#archétypes-de-roublard) @@ -60,7 +60,7 @@ Lors du premier round de chaque combat, vous pouvez jouer deux tours. Vous jouez - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/sorcerer_celestial_hd.md b/Data/sorcerer_celestial_hd.md index 3952ad66..8667145e 100644 --- a/Data/sorcerer_celestial_hd.md +++ b/Data/sorcerer_celestial_hd.md @@ -1,5 +1,5 @@ - +[Origines magiques](sorcerer_hd.md#origines-magiques) @@ -63,7 +63,7 @@ Pendant 1 minute ou jusqu'à ce que vous perdiez votre concentration (avec les m - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/sorcerer_draconic_hd.md b/Data/sorcerer_draconic_hd.md index 36054fd5..8518940a 100644 --- a/Data/sorcerer_draconic_hd.md +++ b/Data/sorcerer_draconic_hd.md @@ -1,5 +1,5 @@ - +[Origines magiques](sorcerer_hd.md#origines-magiques) @@ -92,7 +92,7 @@ Une créature qui réussit son [jet de sauvegarde] est immunisée à votre aura - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/sorcerer_fairy_hd.md b/Data/sorcerer_fairy_hd.md index 397c9cfa..2aa0a9d1 100644 --- a/Data/sorcerer_fairy_hd.md +++ b/Data/sorcerer_fairy_hd.md @@ -1,5 +1,5 @@ - +[Origines magiques](sorcerer_hd.md#origines-magiques) @@ -63,7 +63,7 @@ Vous pouvez y mettre fin à tout moment en utilisant une action. - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/sorcerer_hd.md b/Data/sorcerer_hd.md index 07f71a87..2d491d30 100644 --- a/Data/sorcerer_hd.md +++ b/Data/sorcerer_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -284,7 +284,7 @@ La magie innée des ensorceleurs peut provenir de plusieurs origines. Même si d - + [Lignée draconique]: sorcerer_draconic_hd.md [Lignée céleste]: sorcerer_celestial_hd.md diff --git a/Data/sorcerer_infernal_hd.md b/Data/sorcerer_infernal_hd.md index 7bb91877..323c2308 100644 --- a/Data/sorcerer_infernal_hd.md +++ b/Data/sorcerer_infernal_hd.md @@ -1,5 +1,5 @@ - +[Origines magiques](sorcerer_hd.md#origines-magiques) @@ -61,7 +61,7 @@ La transformation vous coûte un nombre de points de sorcellerie égal à l'indi - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/warlock_depths_hd.md b/Data/warlock_depths_hd.md index 42402a75..685eeccb 100644 --- a/Data/warlock_depths_hd.md +++ b/Data/warlock_depths_hd.md @@ -1,5 +1,5 @@ - +[Protecteurs d'outre-monde](warlock_hd.md#protecteurs-doutre-monde) @@ -73,7 +73,7 @@ Vous devez terminer un repos long avant de pouvoir de nouveau utiliser cette apt - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/warlock_extradimensional_hd.md b/Data/warlock_extradimensional_hd.md index b15807e0..0826ede9 100644 --- a/Data/warlock_extradimensional_hd.md +++ b/Data/warlock_extradimensional_hd.md @@ -1,5 +1,5 @@ - +[Protecteurs d'outre-monde](warlock_hd.md#protecteurs-doutre-monde) @@ -63,7 +63,7 @@ Si aucun espace libre n'existe à portée, vous êtes perdu dans les limbes et c - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde [jets de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/warlock_fiendish_hd.md b/Data/warlock_fiendish_hd.md index 1fc51c80..bce20d6c 100644 --- a/Data/warlock_fiendish_hd.md +++ b/Data/warlock_fiendish_hd.md @@ -1,5 +1,5 @@ - +[Protecteurs d'outre-monde](warlock_hd.md#protecteurs-doutre-monde) @@ -68,7 +68,7 @@ Une fois que vous avez utilisé cette aptitude, vous devez attendre d'avoir term - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/warlock_hd.md b/Data/warlock_hd.md index bc8b8f12..13ac53e5 100644 --- a/Data/warlock_hd.md +++ b/Data/warlock_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -214,7 +214,7 @@ Pacte du grimoire. Votre livre des ombres peut être un ouvrage très ancien, no - + [Le fiélon]: warlock_fiendish_hd.md [Le seigneur immortel]: warlock_immortal_hd.md diff --git a/Data/warlock_immortal_hd.md b/Data/warlock_immortal_hd.md index 20406e13..a4245582 100644 --- a/Data/warlock_immortal_hd.md +++ b/Data/warlock_immortal_hd.md @@ -1,5 +1,5 @@ - +[Protecteurs d'outre-monde](warlock_hd.md#protecteurs-doutre-monde) @@ -68,7 +68,7 @@ Enfin, la difficulté du [jet de sauvegarde] de votre [pacte avec la Mort] est a - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/warlock_occultsummons_hd.md b/Data/warlock_occultsummons_hd.md index 0a9ea571..e664f967 100644 --- a/Data/warlock_occultsummons_hd.md +++ b/Data/warlock_occultsummons_hd.md @@ -1,5 +1,5 @@ - +[Sorcier](warlock_hd.md) @@ -312,7 +312,7 @@ Vous pouvez lancer fléau en utilisant un emplacement de sort de sorcier. Vous d - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/warlock_pact_hd.md b/Data/warlock_pact_hd.md index c752e5ee..3c1117bb 100644 --- a/Data/warlock_pact_hd.md +++ b/Data/warlock_pact_hd.md @@ -1,5 +1,5 @@ - +[Sorcier](warlock_hd.md) @@ -50,7 +50,7 @@ Si vous perdez votre livre des ombres, vous pouvez accomplir une cérémonie d'u - + diff --git a/Data/wizard_academician_hd.md b/Data/wizard_academician_hd.md index fe001d66..2568393f 100644 --- a/Data/wizard_academician_hd.md +++ b/Data/wizard_academician_hd.md @@ -1,5 +1,5 @@ - +[Traditions arcaniques](wizard_hd.md#traditions-arcaniques) @@ -103,7 +103,7 @@ Sorts supérieurs. Lorsque vous lancez un sort de votre école qui utilise un em - + [jet de sauvegarde]: abilities_hd.md#jets-de-sauvegarde [jets de sauvegarde]: abilities_hd.md#jets-de-sauvegarde diff --git a/Data/wizard_elementalist_hd.md b/Data/wizard_elementalist_hd.md index d953026d..ede68e3d 100644 --- a/Data/wizard_elementalist_hd.md +++ b/Data/wizard_elementalist_hd.md @@ -1,5 +1,5 @@ - +[Traditions arcaniques](wizard_hd.md#traditions-arcaniques) @@ -153,7 +153,7 @@ Au niveau 14, vous pouvez dépenser une action bonus pour augmenter de 2 niveaux - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/wizard_eminence_hd.md b/Data/wizard_eminence_hd.md index 7e6fd413..0b907f21 100644 --- a/Data/wizard_eminence_hd.md +++ b/Data/wizard_eminence_hd.md @@ -1,5 +1,5 @@ - +[Traditions arcaniques](wizard_hd.md#traditions-arcaniques) @@ -79,7 +79,7 @@ Vous pouvez lancer vos quatre sorts privilégiés ([compréhension des langues], - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md diff --git a/Data/wizard_evocation_hd.md b/Data/wizard_evocation_hd.md index 147b9d4e..d41b5783 100644 --- a/Data/wizard_evocation_hd.md +++ b/Data/wizard_evocation_hd.md @@ -1,5 +1,5 @@ - +[Traditions arcaniques](wizard_hd.md#traditions-arcaniques) @@ -56,6 +56,6 @@ Vous pouvez utiliser une fois cette aptitude sans ressentir d'effet indésirable - + diff --git a/Data/wizard_hd.md b/Data/wizard_hd.md index 2db8c3e2..3e6a3577 100644 --- a/Data/wizard_hd.md +++ b/Data/wizard_hd.md @@ -1,5 +1,5 @@ - +[Classes](classes_hd.md) @@ -218,7 +218,7 @@ L'apparence de votre grimoire. Votre grimoire est une compilation unique de sort - + [Académicien]: wizard_academician_hd.md [Arpenteur]: wizard_surveyor_hd.md diff --git a/Data/wizard_surveyor_hd.md b/Data/wizard_surveyor_hd.md index 11317cdf..8eb2d166 100644 --- a/Data/wizard_surveyor_hd.md +++ b/Data/wizard_surveyor_hd.md @@ -1,5 +1,5 @@ - +[Traditions arcaniques](wizard_hd.md#traditions-arcaniques) @@ -57,7 +57,7 @@ Vous obtenez la maîtrise d'une nouvelle compétence de la liste proposée au ni - + [Force]: abilities_strength_hd.md [Dextérité]: abilities_dexterity_hd.md