1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 23:16:09 +00:00

Correctifs models

This commit is contained in:
Yan Maniez 2019-04-03 22:25:07 +02:00
parent afb4dc2788
commit e05b0ede3b
104 changed files with 261 additions and 379 deletions

View file

@ -1,12 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class BackgroundItem : Item

View file

@ -1,12 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class BackgroundSpecialtyItem : Item

View file

@ -1,6 +1,4 @@
using AideDeJeuLib;
namespace AideDeJeu.Models
namespace AideDeJeuLib
{
public class ClassEquipmentItem : Item
{

View file

@ -1,6 +1,4 @@
using AideDeJeuLib;
namespace AideDeJeu.Models
namespace AideDeJeuLib
{
public class ClassEvolutionItem : Item
{

View file

@ -1,6 +1,4 @@
using AideDeJeuLib;
namespace AideDeJeu.Models
namespace AideDeJeuLib
{
public class ClassFeatureItem : Item
{

View file

@ -1,6 +1,4 @@
using AideDeJeuLib;
namespace AideDeJeu.Models
namespace AideDeJeuLib
{
public class ClassHitPointsItem : Item
{

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class ClassItem : Item
{
}

View file

@ -1,6 +1,4 @@
using AideDeJeuLib;
namespace AideDeJeu.Models
namespace AideDeJeuLib
{
public class ClassProficienciesItem : Item
{

View file

@ -1,11 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using AideDeJeu.Tools;
using Markdig.Syntax;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class Equipment : Item
{

View file

@ -1,7 +1,4 @@
using AideDeJeu.ViewModels;
using System;
using System.Collections.Generic;
using System.Text;
namespace AideDeJeuLib
{

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class FeatItem : Item
{
}

View file

@ -1,9 +1,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib

View file

@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using Markdig.Syntax;
using System.Runtime.Serialization;
namespace AideDeJeuLib
{

View file

@ -2,14 +2,12 @@
using AideDeJeu.ViewModels;
using SQLite;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Runtime.Serialization;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Xml;
using YamlDotNet.Core;
using YamlDotNet.Core.Events;
using YamlDotNet.Serialization;
@ -197,17 +195,9 @@ namespace AideDeJeuLib
{
{ "Generic", typeof(Generic) },
{ "Monster", typeof(Monster) },
//{ "MonsterHD", typeof(MonsterHD) },
//{ "MonsterVO", typeof(MonsterVO) },
{ "Monsters", typeof(Monsters) },
//{ "MonstersHD", typeof(MonstersHD) },
//{ "MonstersVO", typeof(MonstersVO) },
{ "Spell", typeof(Spell) },
//{ "SpellHD", typeof(SpellHD) },
//{ "SpellVO", typeof(SpellVO) },
{ "Spells", typeof(Spells) },
//{ "SpellsHD", typeof(SpellsHD) },
//{ "SpellsVO", typeof(SpellsVO) },
{ "Equipment", typeof(Equipment) },
{ "Equipments", typeof(Equipments) },
{ "LinkItem", typeof(LinkItem) },
@ -228,6 +218,12 @@ namespace AideDeJeuLib
{ "BackgroundSpecialtyItem", typeof(BackgroundSpecialtyItem) },
{ "BackgroundItem", typeof(BackgroundItem) },
{ "SkillItem", typeof(SkillItem) },
{ "ClassEquipmentItem", typeof(ClassEquipmentItem) },
{ "ClassEvolutionItem", typeof(ClassEvolutionItem) },
{ "ClassFeatureItem", typeof(ClassFeatureItem) },
{ "ClassHitPointsItem", typeof(ClassHitPointsItem) },
{ "ClassProficienciesItem", typeof(ClassProficienciesItem) },
{ "Items", typeof(Items) },
{ "Item", typeof(Item) },
};

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class Items : Item
{

View file

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using AideDeJeu.Tools;
using Markdig.Syntax;
using System.Text.RegularExpressions;
namespace AideDeJeuLib
{

View file

@ -1,9 +1,4 @@
using AideDeJeuLib;
using System;
using System.Collections.Generic;
using System.Text;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class MagicItem : Item
{

View file

@ -1,8 +1,4 @@
using AideDeJeu.ViewModels;
using AideDeJeuLib;
using System;
using System.Collections.Generic;
using System.Text;
namespace AideDeJeuLib
{

View file

@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class PageItem : Item
{

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class PersonalityDefectItem : Item
{
}

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class PersonalityIdealItem : Item
{
}

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class PersonalityLinkItem : Item
{
}

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class PersonalityTraitItem : Item
{
}

View file

@ -1,10 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
using System.Runtime.Serialization;
namespace AideDeJeuLib
{

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class SkillItem : Item
{

View file

@ -1,14 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
namespace AideDeJeuLib
namespace AideDeJeuLib
{
public class SubBackgroundItem : BackgroundItem
{
}

View file

@ -1,14 +1,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
using System.Runtime.Serialization;
namespace AideDeJeuLib
{
public class SubClassItem : ClassItem
{
[DataMember]

View file

@ -1,10 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using AideDeJeu.ViewModels;
using YamlDotNet.Serialization;
using System.Runtime.Serialization;
namespace AideDeJeuLib
{

View file

@ -100,7 +100,7 @@ namespace AideDeJeu.ViewModels
public List<string> Abilities { get; set; } = new List<string>()
{
"3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18"
"2 (-4)", "3 (-4)", "4 (-3)", "5 (-3)", "6 (-2)", "7 (-2)", "8 (-1)", "9 (-1)", "10 (+0)", "11 (+0)", "12 (+1)", "13 (+1)", "14 (+2)", "15 (+2)", "16 (+3)", "17 (+3)", "18 (+4)", "19 (+4)", "20 (+5)", "21 (+5)"
};
public List<string> Levels { get; set; } = new List<string>()
{

View file

@ -5,7 +5,6 @@
xmlns:tools="clr-namespace:AideDeJeu.Tools"
xmlns:mdview="clr-namespace:Xam.Forms.Markdown"
x:Name="This"
Visual="Material"
Title="Création de personnage"
>
<ContentPage.Resources>
@ -15,71 +14,40 @@
</ResourceDictionary>
</ContentPage.Resources>
<StackLayout Orientation="Vertical">
<Picker Title="Niveau" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Levels}" ItemDisplayBinding="{Binding}" />
<TableView Margin="10,0">
<TableRoot>
<TableSection Title="Généralités">
<ViewCell Height="50">
<!--<StackLayout Orientation="Horizontal">
<Label Text="Niveau" WidthRequest="100" />-->
<Picker Title="Niveau" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Levels}" ItemDisplayBinding="{Binding}" />
<!--</StackLayout>-->
<Picker Title="Niveau" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Levels}" ItemDisplayBinding="{Binding StringFormat='Niveau : {0}'}" />
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Race" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Races}" ItemDisplayBinding="{Binding Name}" SelectedIndex="{Binding RaceSelectedIndex, Mode=TwoWay}" />
</StackLayout>
<Picker Title="Race" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Races}" ItemDisplayBinding="{Binding Name}" SelectedIndex="{Binding RaceSelectedIndex, Mode=TwoWay}" />
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Classe" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Classes}" ItemDisplayBinding="{Binding Name}" SelectedIndex="{Binding ClassSelectedIndex, Mode=TwoWay}" />
</StackLayout>
<Picker Title="Classe" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Classes}" ItemDisplayBinding="{Binding Name}" SelectedIndex="{Binding ClassSelectedIndex, Mode=TwoWay}" />
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Historique" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Backgrounds}" ItemDisplayBinding="{Binding Name}" SelectedIndex="{Binding BackgroundSelectedIndex, Mode=TwoWay}" />
</StackLayout>
<Picker Title="Historique" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Backgrounds}" ItemDisplayBinding="{Binding Name}" SelectedIndex="{Binding BackgroundSelectedIndex, Mode=TwoWay}" />
</ViewCell>
</TableSection>
<TableSection Title="Caractéristiques">
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Force" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding}" />
</StackLayout>
<Picker Title="Force" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding StringFormat='Force : {0}'}" />
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Dextérité" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding}" />
</StackLayout>
<Picker Title="Dextérité" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding StringFormat='Dextérité : {0}'}" />
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Constitution" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding}" />
</StackLayout>
<Picker Title="Constitution" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding StringFormat='Constitution : {0}'}" />
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Intelligence" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding}" />
</StackLayout>
<Picker Title="Intelligence" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding StringFormat='Intelligence : {0}'}" />
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Sagesse" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding}" />
</StackLayout>
<Picker Title="Sagesse" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding StringFormat='Sagesse : {0}'}" />
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal">
<Label Text="Charisme" WidthRequest="100" />
<Picker HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding}" />
</StackLayout>
<Picker Title="Charisme" HorizontalOptions="FillAndExpand" ItemsSource="{Binding Abilities}" ItemDisplayBinding="{Binding StringFormat='Charisme : {0}'}" />
</ViewCell>
</TableSection>
</TableRoot>

View file

@ -1,17 +1,14 @@
---
!ClassItem
Id: barbarian_hd.md#barbarepoints-de-vie
Id: barbarian_hd.md#barbare
RootId: barbarian_hd.md
ParentLink: classes_hd.md
Name: BarbarePoints de vie
Name: Barbare
ParentName: Classes
NameLevel: 2
NameLevel: 1
AltName: Barbarian (SRD p8)
Source: (MDR p114)
Attributes:
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
Attributes: {}
---
>  [Classes](hd_classes.md)
@ -26,9 +23,78 @@ Attributes:
En tant que barbare, vous bénéficiez des aptitudes de classe suivantes.
## Points de vie
**Dés de vie :** 1d12 par niveau de barbare
**Points de vie au niveau 1 :** 12 + votre modificateur de [Constitution](hd_abilities_constitution.md)
**Points de vie aux niveaux supérieurs :** 1d12 (ou 7) + votre modificateur de [Constitution](hd_abilities_constitution.md) par niveau de barbare après le premier niveau
## [Points de vie](hd_barbarian_points_de_vie.md)
## [Maîtrises](hd_barbarian_maitrises.md)
## [Équipement](hd_barbarian_equipement.md)
# [Tableau d'évolution](hd_barbarian_tableau_devolution.md)
## [Rage](hd_barbarian_rage.md)
## [Défense sans armure](hd_barbarian_defense_sans_armure.md)
## [Témérité](hd_barbarian_temerite.md)
## [Sens du danger](hd_barbarian_sens_du_danger.md)
## [Voie primitive](hd_barbarian_voie_primitive.md)
## [Amélioration de caractéristiques](hd_barbarian_amelioration_de_caracteristiques.md)
## [Attaque supplémentaire](hd_barbarian_attaque_supplementaire.md)
## [Déplacement rapide](hd_barbarian_deplacement_rapide.md)
## [Instinct sauvage](hd_barbarian_instinct_sauvage.md)
## [Critique brutal](hd_barbarian_critique_brutal.md)
## [Rage implacable](hd_barbarian_rage_implacable.md)
## [Rage ininterrompue](hd_barbarian_rage_ininterrompue.md)
## [Puissance indomptable](hd_barbarian_puissance_indomptable.md)
## [Champion primitif](hd_barbarian_champion_primitif.md)
# [Voies primitives](hd_barbarian_voies_primitives.md)

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#amélioration-de-caractéristiques
ParentLink: barbarian_hd.md#barbare
Name: Amélioration de caractéristiques

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#attaque-supplémentaire
ParentLink: barbarian_hd.md#barbare
Name: Attaque supplémentaire

View file

@ -1,16 +1,17 @@
---
!SubClassItem
Name: Voie du berserker
Source: (MDR p116)
ParentClassId: hd_barbarian.md
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)
Attributes: {}
---
>  [Voies primitives](barbarian_hd.md#voies-primitives)
>  [Voies primitives](hd_barbarian_voies_primitives.md)
---

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#champion-primitif
ParentLink: barbarian_hd.md#barbare
Name: Champion primitif

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#critique-brutal
ParentLink: barbarian_hd.md#barbare
Name: Critique brutal

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#défense-sans-armure
ParentLink: barbarian_hd.md#barbare
Name: Défense sans armure

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#déplacement-rapide
ParentLink: barbarian_hd.md#barbare
Name: Déplacement rapide

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassEquipmentItem
Id: barbarian_hd.md#Équipement
ParentLink: barbarian_hd.md#barbare
Name: Équipement

View file

@ -1,15 +1,16 @@
---
!SubClassItem
Name: Voie du hurlement
Source: (MDR p118)
ParentClassId: hd_barbarian.md
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)
Attributes: {}
---
>  [Voies primitives](barbarian_hd.md#voies-primitives)
>  [Voies primitives](hd_barbarian_voies_primitives.md)
---

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#instinct-sauvage
ParentLink: barbarian_hd.md#barbare
Name: Instinct sauvage

View file

@ -1,11 +1,16 @@
---
!Generic
!ClassProficienciesItem
Id: barbarian_hd.md#maîtrises
ParentLink: barbarian_hd.md#barbare
Name: Maîtrises
ParentName: Barbare
NameLevel: 2
Attributes: {}
Attributes:
Armor: '[armures légères](equipment_hd_with_type_armurelégère.md), [armures intermédiaires](equipment_hd_with_type_armureintermédiaire.md), [boucliers](hd_equipment_bouclier.md)'
Weapons: '[armes courantes](equipment_hd_with_type_armecourante.md), [armes de guerre]'
Tools: aucun
SavingThrows: '[Force](hd_abilities_strength.md), [Constitution](hd_abilities_constitution.md)'
Skills: choisissez deux compétences parmi [Athlétisme](hd_abilities_strength_athletisme.md), [Dressage](hd_abilities_wisdom_dressage.md), [Intimidation](hd_abilities_charisma_intimidation.md), [Nature](hd_abilities_intelligence_nature.md), [Perception](hd_abilities_wisdom_perception.md) et [Survie](hd_abilities_wisdom_survie.md)
---
> [Barbare](hd_barbarian.md)

View file

@ -1,5 +1,8 @@
---
!Generic
!ClassHitPointsItem
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

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#puissance-indomptable
ParentLink: barbarian_hd.md#barbare
Name: Puissance indomptable

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#rage
ParentLink: barbarian_hd.md#barbare
Name: Rage

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#rage-implacable
ParentLink: barbarian_hd.md#barbare
Name: Rage implacable

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#rage-ininterrompue
ParentLink: barbarian_hd.md#barbare
Name: Rage ininterrompue

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#sens-du-danger
ParentLink: barbarian_hd.md#barbare
Name: Sens du danger

View file

@ -1,15 +1,16 @@
---
!SubClassItem
Name: Voie des esprits
Source: (MDR p117)
ParentClassId: hd_barbarian.md
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)
Attributes: {}
---
>  [Voies primitives](barbarian_hd.md#voies-primitives)
>  [Voies primitives](hd_barbarian_voies_primitives.md)
---

View file

@ -1,15 +1,16 @@
---
!SubClassItem
Name: Voie de l'acier
Source: (MDR p117)
ParentClassId: hd_barbarian.md
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)
Attributes: {}
---
>  [Voies primitives](barbarian_hd.md#voies-primitives)
>  [Voies primitives](hd_barbarian_voies_primitives.md)
---

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassEvolutionItem
Id: barbarian_hd.md#tableau-dévolution
ParentLink: barbarian_hd.md#barbare
Name: Tableau d'évolution

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#témérité
ParentLink: barbarian_hd.md#barbare
Name: Témérité

View file

@ -1,5 +1,5 @@
---
!Generic
!ClassFeatureItem
Id: barbarian_hd.md#voie-primitive
ParentLink: barbarian_hd.md#barbare
Name: Voie primitive

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Collège des saltimbanques
Source: (MDR p126)
ParentClassId: hd_bard.md
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)
Attributes: {}
---
>  [Collèges bardiques](hd_bard_colleges_bardiques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Collège des diplomates
Source: (MDR p125)
ParentClassId: hd_bard.md
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)
Attributes: {}
---
>  [Collèges bardiques](hd_bard_colleges_bardiques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Collège des hérauts
Source: (MDR p126)
ParentClassId: hd_bard.md
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)
Attributes: {}
---
>  [Collèges bardiques](hd_bard_colleges_bardiques.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Collège du savoir
Source: (MDR p125)
ParentClassId: hd_bard.md
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)
Attributes: {}
---
>  [Collèges bardiques](hd_bard_colleges_bardiques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Guide spirituel
Source: (MDR p138)
ParentClassId: hd_cleric.md
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)
Attributes: {}
---
>  [Domaines divins](hd_cleric_domaines_divins.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Domaine de la Vie
Source: (MDR p418)
ParentClassId: hd_cleric.md
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)
Attributes: {}
---
>  [Domaines divins](hd_cleric_domaines_divins.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Prêtre
Source: (MDR p132)
ParentClassId: hd_cleric.md
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)
Attributes: {}
---
>  [Domaines divins](hd_cleric_domaines_divins.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Théurge
Source: (MDR p139)
ParentClassId: hd_cleric.md
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)
Attributes: {}
---
>  [Domaines divins](hd_cleric_domaines_divins.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Gardien des traditions
Source: (MDR p137)
ParentClassId: hd_cleric.md
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)
Attributes: {}
---
>  [Domaines divins](hd_cleric_domaines_divins.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Cercle des profondeurs
Source: (MDR p150)
ParentClassId: hd_druid.md
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)
Attributes: {}
---
>  [Cercles druidiques](hd_druid_cercles_druidiques.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Cercle de la terre
Source: (MDR p145)
ParentClassId: hd_druid.md
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)
Attributes: {}
---
>  [Cercles druidiques](hd_druid_cercles_druidiques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Cercle des fées
Source: (MDR p149)
ParentClassId: hd_druid.md
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)
Attributes: {}
---
>  [Cercles druidiques](hd_druid_cercles_druidiques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Cercle des saisons
Source: (MDR p147)
ParentClassId: hd_druid.md
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)
Attributes: {}
---
>  [Cercles druidiques](hd_druid_cercles_druidiques.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Champion
Source: (MDR p162)
ParentClassId: hd_fighter.md
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)
Attributes: {}
---
>  [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Défenseur
Source: (MDR p163)
ParentClassId: hd_fighter.md
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)
Attributes: {}
---
>  [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Sorcelame
Source: (MDR p163)
ParentClassId: hd_fighter.md
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)
Attributes: {}
---
>  [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Bretteur
Source: (MDR p162)
ParentClassId: hd_fighter.md
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)
Attributes: {}
---
>  [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Voie de l'illumination
Source: (MDR p180)
ParentClassId: hd_monk.md
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)
Attributes: {}
---
>  [Traditions monacales](hd_monk_traditions_monacales.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Voie des cinq animaux
Source: (MDR p180)
ParentClassId: hd_monk.md
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)
Attributes: {}
---
>  [Traditions monacales](hd_monk_traditions_monacales.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Voie de la souplesse
Source: (MDR p181)
ParentClassId: hd_monk.md
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)
Attributes: {}
---
>  [Traditions monacales](hd_monk_traditions_monacales.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Voie de la main ouverte
Source: (MDR p179)
ParentClassId: hd_monk.md
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)
Attributes: {}
---
>  [Traditions monacales](hd_monk_traditions_monacales.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Serment de dévotion
Source: (MDR p186)
ParentClassId: hd_paladin.md
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)
Attributes: {}
---
>  [Serments sacrés](hd_paladin_serments_sacres.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Serment d'obédience
Source: (MDR p187)
ParentClassId: hd_paladin.md
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)
Attributes: {}
---
>  [Serments sacrés](hd_paladin_serments_sacres.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Serment de perfection
Source: (MDR p189)
ParentClassId: hd_paladin.md
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)
Attributes: {}
---
>  [Serments sacrés](hd_paladin_serments_sacres.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Serment de piété
Source: (MDR p190)
ParentClassId: hd_paladin.md
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)
Attributes: {}
---
>  [Serments sacrés](hd_paladin_serments_sacres.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Serment de rédemption
Source: (MDR p191)
ParentClassId: hd_paladin.md
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)
Attributes: {}
---
>  [Serments sacrés](hd_paladin_serments_sacres.md)

View file

@ -1,12 +1,12 @@
---
!SubClassItem
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)
Attributes: {}
---
>  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)

View file

@ -1,12 +1,12 @@
---
!SubClassItem
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)
Attributes: {}
---
>  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
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)
Attributes: {}
---
>  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)

View file

@ -1,12 +1,12 @@
---
!SubClassItem
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)
Attributes: {}
---
>  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)

View file

@ -1,12 +1,12 @@
---
!SubClassItem
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)
Attributes: {}
---
>  [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Brute
Source: (MDR p205)
ParentClassId: hd_rogue.md
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)
Attributes: {}
---
>  [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Ombrelame
Source: (MDR p206)
ParentClassId: hd_rogue.md
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)
Attributes: {}
---
>  [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Espion
Source: (MDR p206)
ParentClassId: hd_rogue.md
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)
Attributes: {}
---
>  [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Voleur
Source: (MDR p204)
ParentClassId: hd_rogue.md
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)
Attributes: {}
---
>  [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Lignée céleste
Source: (MDR p156)
ParentClassId: hd_sorcerer.md
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)
Attributes: {}
---
>  [Origines magiques](hd_sorcerer_origines_magiques.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Lignée draconique
Source: (MDR p155)
ParentClassId: hd_sorcerer.md
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)
Attributes: {}
---
>  [Origines magiques](hd_sorcerer_origines_magiques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Lignée féerique
Source: (MDR p157)
ParentClassId: hd_sorcerer.md
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)
Attributes: {}
---
>  [Origines magiques](hd_sorcerer_origines_magiques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Lignée infernale
Source: (MDR p158)
ParentClassId: hd_sorcerer.md
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)
Attributes: {}
---
>  [Origines magiques](hd_sorcerer_origines_magiques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: La puissance des profondeurs
Source: (MDR p216)
ParentClassId: hd_warlock.md
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)
Attributes: {}
---
>  [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: L'entité extra-dimensionnelle
Source: (MDR p217)
ParentClassId: hd_warlock.md
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)
Attributes: {}
---
>  [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)

View file

@ -1,14 +1,14 @@
---
!SubClassItem
Name: Le fiélon
Source: (MDR p215)
ParentClassId: hd_warlock.md
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)
Attributes: {}
---
>  [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Le seigneur immortel
Source: (MDR p215)
ParentClassId: hd_warlock.md
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)
Attributes: {}
---
>  [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
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)
Attributes: {}
---
>  [Sorcier](hd_warlock.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
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)
Attributes: {}
---
>  [Sorcier](hd_warlock.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Académicien
Source: (MDR p169)
ParentClassId: hd_wizard.md
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)
Attributes: {}
---
>  [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)

View file

@ -1,13 +1,13 @@
---
!SubClassItem
Name: Élémentaliste
Source: (MDR p171)
ParentClassId: hd_wizard.md
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)
Attributes: {}
---
>  [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)

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