mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 15:06:06 +00:00
Attributes partout
This commit is contained in:
parent
f4746fd478
commit
1dc349319f
82 changed files with 193 additions and 135 deletions
|
|
@ -11,19 +11,32 @@ namespace AideDeJeuLib
|
||||||
|
|
||||||
public class RaceItem : Item
|
public class RaceItem : Item
|
||||||
{
|
{
|
||||||
|
[DataMember]
|
||||||
public string StrengthBonus { get; set; }
|
public string StrengthBonus { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string DexterityBonus { get; set; }
|
public string DexterityBonus { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string ConstitutionBonus { get; set; }
|
public string ConstitutionBonus { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string IntelligenceBonus { get; set; }
|
public string IntelligenceBonus { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string WisdomBonus { get; set; }
|
public string WisdomBonus { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string CharismaBonus { get; set; }
|
public string CharismaBonus { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string AnyAbilityBonus { get; set; }
|
public string AnyAbilityBonus { get; set; }
|
||||||
|
|
||||||
|
[DataMember]
|
||||||
public string Age { get; set; }
|
public string Age { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string Alignment { get; set; }
|
public string Alignment { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string Size { get; set; }
|
public string Size { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string Speed { get; set; }
|
public string Speed { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string Darkvision { get; set; }
|
public string Darkvision { get; set; }
|
||||||
|
[DataMember]
|
||||||
public string Languages { get; set; }
|
public string Languages { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -178,6 +178,7 @@ namespace AideDeJeu.ViewModels
|
||||||
return isname;
|
return isname;
|
||||||
}
|
}
|
||||||
PropertyInfo prop = null;
|
PropertyInfo prop = null;
|
||||||
|
string propertyName = null;
|
||||||
foreach (var inline in inlines)
|
foreach (var inline in inlines)
|
||||||
{
|
{
|
||||||
if (inline is HtmlInline)
|
if (inline is HtmlInline)
|
||||||
|
|
@ -190,10 +191,11 @@ namespace AideDeJeu.ViewModels
|
||||||
else if (tag.StartsWith("<!--/"))
|
else if (tag.StartsWith("<!--/"))
|
||||||
{
|
{
|
||||||
prop = null;
|
prop = null;
|
||||||
|
propertyName = null;
|
||||||
}
|
}
|
||||||
else if (tag.StartsWith("<!--") && !tag.StartsWith("<!--/"))
|
else if (tag.StartsWith("<!--") && !tag.StartsWith("<!--/"))
|
||||||
{
|
{
|
||||||
var propertyName = tag.Substring(4, tag.Length - 7);
|
propertyName = tag.Substring(4, tag.Length - 7);
|
||||||
if(propertyName == "Name")
|
if(propertyName == "Name")
|
||||||
{
|
{
|
||||||
isname = true;
|
isname = true;
|
||||||
|
|
@ -207,6 +209,17 @@ namespace AideDeJeu.ViewModels
|
||||||
{
|
{
|
||||||
prop.SetValue(item, prop.GetValue(item) + inline.ToMarkdownString(), null);
|
prop.SetValue(item, prop.GetValue(item) + inline.ToMarkdownString(), null);
|
||||||
}
|
}
|
||||||
|
else if(propertyName != null)
|
||||||
|
{
|
||||||
|
if (item.Attributes.ContainsKey(propertyName))
|
||||||
|
{
|
||||||
|
item.Attributes[propertyName] += inline.ToMarkdownString();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
item.Attributes[propertyName] = inline.ToMarkdownString();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return isname;
|
return isname;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,9 @@ Name: Aasimar
|
||||||
ParentName: Races
|
ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Source: (MDR p59)
|
Source: (MDR p59)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Charisme](hd_abilities_charisma.md) augmente de 2 et votre valeur de [Sagesse](hd_abilities_wisdom.md) de 1.
|
||||||
|
CelestialResistance: Vous êtes résistant aux dégâts nécrotiques.
|
||||||
---
|
---
|
||||||
> [Races](hd_races.md)
|
> [Races](hd_races.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voie du berserker
|
|
||||||
Source: (MDR p116)
|
|
||||||
Id: barbarian_berserker_hd.md#voie-du-berserker
|
Id: barbarian_berserker_hd.md#voie-du-berserker
|
||||||
RootId: barbarian_berserker_hd.md
|
RootId: barbarian_berserker_hd.md
|
||||||
ParentLink: barbarian_hd.md#voies-primitives
|
ParentLink: barbarian_hd.md#voies-primitives
|
||||||
|
Name: Voie du berserker
|
||||||
ParentName: Voies primitives
|
ParentName: Voies primitives
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Wisdom (SRD p9)
|
AltName: Wisdom (SRD p9)
|
||||||
|
Source: (MDR p116)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voie du hurlement
|
|
||||||
Source: (MDR p118)
|
|
||||||
Id: barbarian_howling_hd.md#voie-du-hurlement
|
Id: barbarian_howling_hd.md#voie-du-hurlement
|
||||||
RootId: barbarian_howling_hd.md
|
RootId: barbarian_howling_hd.md
|
||||||
ParentLink: barbarian_hd.md#voies-primitives
|
ParentLink: barbarian_hd.md#voies-primitives
|
||||||
|
Name: Voie du hurlement
|
||||||
ParentName: Voies primitives
|
ParentName: Voies primitives
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p118)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voie des esprits
|
|
||||||
Source: (MDR p117)
|
|
||||||
Id: barbarian_spirits_hd.md#voie-des-esprits
|
Id: barbarian_spirits_hd.md#voie-des-esprits
|
||||||
RootId: barbarian_spirits_hd.md
|
RootId: barbarian_spirits_hd.md
|
||||||
ParentLink: barbarian_hd.md#voies-primitives
|
ParentLink: barbarian_hd.md#voies-primitives
|
||||||
|
Name: Voie des esprits
|
||||||
ParentName: Voies primitives
|
ParentName: Voies primitives
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p117)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voie de l'acier
|
|
||||||
Source: (MDR p117)
|
|
||||||
Id: barbarian_steel_hd.md#voie-de-lacier
|
Id: barbarian_steel_hd.md#voie-de-lacier
|
||||||
RootId: barbarian_steel_hd.md
|
RootId: barbarian_steel_hd.md
|
||||||
ParentLink: barbarian_hd.md#voies-primitives
|
ParentLink: barbarian_hd.md#voies-primitives
|
||||||
|
Name: Voie de l'acier
|
||||||
ParentName: Voies primitives
|
ParentName: Voies primitives
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p117)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Collège des saltimbanques
|
|
||||||
Source: (MDR p126)
|
|
||||||
Id: bard_acrobats_hd.md#collège-des-saltimbanques
|
Id: bard_acrobats_hd.md#collège-des-saltimbanques
|
||||||
RootId: bard_acrobats_hd.md
|
RootId: bard_acrobats_hd.md
|
||||||
ParentLink: bard_hd.md#collèges-bardiques
|
ParentLink: bard_hd.md#collèges-bardiques
|
||||||
|
Name: Collège des saltimbanques
|
||||||
ParentName: Collèges bardiques
|
ParentName: Collèges bardiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p126)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Collèges bardiques](hd_bard_colleges_bardiques.md)
|
> [Collèges bardiques](hd_bard_colleges_bardiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Collège des diplomates
|
|
||||||
Source: (MDR p125)
|
|
||||||
Id: bard_diplomats_hd.md#collège-des-diplomates
|
Id: bard_diplomats_hd.md#collège-des-diplomates
|
||||||
RootId: bard_diplomats_hd.md
|
RootId: bard_diplomats_hd.md
|
||||||
ParentLink: bard_hd.md#collèges-bardiques
|
ParentLink: bard_hd.md#collèges-bardiques
|
||||||
|
Name: Collège des diplomates
|
||||||
ParentName: Collèges bardiques
|
ParentName: Collèges bardiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p125)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Collèges bardiques](hd_bard_colleges_bardiques.md)
|
> [Collèges bardiques](hd_bard_colleges_bardiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Collège des hérauts
|
|
||||||
Source: (MDR p126)
|
|
||||||
Id: bard_heralds_hd.md#collège-des-hérauts
|
Id: bard_heralds_hd.md#collège-des-hérauts
|
||||||
RootId: bard_heralds_hd.md
|
RootId: bard_heralds_hd.md
|
||||||
ParentLink: bard_hd.md#collèges-bardiques
|
ParentLink: bard_hd.md#collèges-bardiques
|
||||||
|
Name: Collège des hérauts
|
||||||
ParentName: Collèges bardiques
|
ParentName: Collèges bardiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p126)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Collèges bardiques](hd_bard_colleges_bardiques.md)
|
> [Collèges bardiques](hd_bard_colleges_bardiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Collège du savoir
|
|
||||||
Source: (MDR p125)
|
|
||||||
Id: bard_knowledge_hd.md#collège-du-savoir
|
Id: bard_knowledge_hd.md#collège-du-savoir
|
||||||
RootId: bard_knowledge_hd.md
|
RootId: bard_knowledge_hd.md
|
||||||
ParentLink: bard_hd.md#collèges-bardiques
|
ParentLink: bard_hd.md#collèges-bardiques
|
||||||
|
Name: Collège du savoir
|
||||||
ParentName: Collèges bardiques
|
ParentName: Collèges bardiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: College of Lore (SRD p13)
|
AltName: College of Lore (SRD p13)
|
||||||
|
Source: (MDR p125)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Collèges bardiques](hd_bard_colleges_bardiques.md)
|
> [Collèges bardiques](hd_bard_colleges_bardiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Guide spirituel
|
|
||||||
Source: (MDR p138)
|
|
||||||
Id: cleric_guide_hd.md#guide-spirituel
|
Id: cleric_guide_hd.md#guide-spirituel
|
||||||
RootId: cleric_guide_hd.md
|
RootId: cleric_guide_hd.md
|
||||||
ParentLink: cleric_hd.md#domaines-divins
|
ParentLink: cleric_hd.md#domaines-divins
|
||||||
|
Name: Guide spirituel
|
||||||
ParentName: Domaines divins
|
ParentName: Domaines divins
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p138)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Domaines divins](hd_cleric_domaines_divins.md)
|
> [Domaines divins](hd_cleric_domaines_divins.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Domaine de la Vie
|
|
||||||
Source: (MDR p418)
|
|
||||||
Id: cleric_life_hd.md#domaine-de-la-vie
|
Id: cleric_life_hd.md#domaine-de-la-vie
|
||||||
RootId: cleric_life_hd.md
|
RootId: cleric_life_hd.md
|
||||||
ParentLink: cleric_hd.md#domaines-divins
|
ParentLink: cleric_hd.md#domaines-divins
|
||||||
|
Name: Domaine de la Vie
|
||||||
ParentName: Domaines divins
|
ParentName: Domaines divins
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Life Domain (SRD p17)
|
AltName: Life Domain (SRD p17)
|
||||||
|
Source: (MDR p418)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Domaines divins](hd_cleric_domaines_divins.md)
|
> [Domaines divins](hd_cleric_domaines_divins.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Prêtre
|
|
||||||
Source: (MDR p132)
|
|
||||||
Id: cleric_priest_hd.md#prêtre
|
Id: cleric_priest_hd.md#prêtre
|
||||||
RootId: cleric_priest_hd.md
|
RootId: cleric_priest_hd.md
|
||||||
ParentLink: cleric_hd.md#domaines-divins
|
ParentLink: cleric_hd.md#domaines-divins
|
||||||
|
Name: Prêtre
|
||||||
ParentName: Domaines divins
|
ParentName: Domaines divins
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p132)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Domaines divins](hd_cleric_domaines_divins.md)
|
> [Domaines divins](hd_cleric_domaines_divins.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Théurge
|
|
||||||
Source: (MDR p139)
|
|
||||||
Id: cleric_theurgist_hd.md#théurge
|
Id: cleric_theurgist_hd.md#théurge
|
||||||
RootId: cleric_theurgist_hd.md
|
RootId: cleric_theurgist_hd.md
|
||||||
ParentLink: cleric_hd.md#domaines-divins
|
ParentLink: cleric_hd.md#domaines-divins
|
||||||
|
Name: Théurge
|
||||||
ParentName: Domaines divins
|
ParentName: Domaines divins
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p139)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Domaines divins](hd_cleric_domaines_divins.md)
|
> [Domaines divins](hd_cleric_domaines_divins.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Gardien des traditions
|
|
||||||
Source: (MDR p137)
|
|
||||||
Id: cleric_traditions_hd.md#gardien-des-traditions
|
Id: cleric_traditions_hd.md#gardien-des-traditions
|
||||||
RootId: cleric_traditions_hd.md
|
RootId: cleric_traditions_hd.md
|
||||||
ParentLink: cleric_hd.md#domaines-divins
|
ParentLink: cleric_hd.md#domaines-divins
|
||||||
|
Name: Gardien des traditions
|
||||||
ParentName: Domaines divins
|
ParentName: Domaines divins
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p137)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Domaines divins](hd_cleric_domaines_divins.md)
|
> [Domaines divins](hd_cleric_domaines_divins.md)
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,8 @@ Name: Demi-ogre
|
||||||
ParentName: Races
|
ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Source: (MDR p62)
|
Source: (MDR p62)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Constitution](hd_abilities_constitution.md) augmente de 2 et votre valeur de [Force](hd_abilities_strength.md) de 2.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,11 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Dragonborn (SRD p5)
|
AltName: Dragonborn (SRD p5)
|
||||||
Source: (MDR p69)
|
Source: (MDR p69)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Force](hd_abilities_strength.md) augmente de 2 et votre valeur de [Charisme](hd_abilities_charisma.md) de 1.
|
||||||
|
DraconicAncestry: Vous avez des ancêtres draconiques. Choisissez un type de dragon dans le tableau des ascendances. Votre choix détermine votre souffle et votre résistance aux dégâts, comme indiqué dans le tableau.
|
||||||
|
BreathWeapon: Vous pouvez utiliser votre action pour exhaler une vague d'énergie destructrice. La taille, la forme et le type de dégâts que vous causez sont liés à votre ascendance.
|
||||||
|
DamageResistance: Vous bénéficiez d'une résistance au type de dégâts associé à votre ascendance.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Cercle des profondeurs
|
|
||||||
Source: (MDR p150)
|
|
||||||
Id: druid_depths_hd.md#cercle-des-profondeurs
|
Id: druid_depths_hd.md#cercle-des-profondeurs
|
||||||
RootId: druid_depths_hd.md
|
RootId: druid_depths_hd.md
|
||||||
ParentLink: druid_hd.md#cercles-druidiques
|
ParentLink: druid_hd.md#cercles-druidiques
|
||||||
|
Name: Cercle des profondeurs
|
||||||
ParentName: Cercles druidiques
|
ParentName: Cercles druidiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p150)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Cercles druidiques](hd_druid_cercles_druidiques.md)
|
> [Cercles druidiques](hd_druid_cercles_druidiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Cercle de la terre
|
|
||||||
Source: (MDR p145)
|
|
||||||
Id: druid_earth_hd.md#cercle-de-la-terre
|
Id: druid_earth_hd.md#cercle-de-la-terre
|
||||||
RootId: druid_earth_hd.md
|
RootId: druid_earth_hd.md
|
||||||
ParentLink: druid_hd.md#cercles-druidiques
|
ParentLink: druid_hd.md#cercles-druidiques
|
||||||
|
Name: Cercle de la terre
|
||||||
ParentName: Cercles druidiques
|
ParentName: Cercles druidiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Circle of the Land (SRD p21)
|
AltName: Circle of the Land (SRD p21)
|
||||||
|
Source: (MDR p145)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Cercles druidiques](hd_druid_cercles_druidiques.md)
|
> [Cercles druidiques](hd_druid_cercles_druidiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Cercle des fées
|
|
||||||
Source: (MDR p149)
|
|
||||||
Id: druid_fairies_hd.md#cercle-des-fées
|
Id: druid_fairies_hd.md#cercle-des-fées
|
||||||
RootId: druid_fairies_hd.md
|
RootId: druid_fairies_hd.md
|
||||||
ParentLink: druid_hd.md#cercles-druidiques
|
ParentLink: druid_hd.md#cercles-druidiques
|
||||||
|
Name: Cercle des fées
|
||||||
ParentName: Cercles druidiques
|
ParentName: Cercles druidiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p149)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Cercles druidiques](hd_druid_cercles_druidiques.md)
|
> [Cercles druidiques](hd_druid_cercles_druidiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Cercle des saisons
|
|
||||||
Source: (MDR p147)
|
|
||||||
Id: druid_seasons_hd.md#cercle-des-saisons
|
Id: druid_seasons_hd.md#cercle-des-saisons
|
||||||
RootId: druid_seasons_hd.md
|
RootId: druid_seasons_hd.md
|
||||||
ParentLink: druid_hd.md#cercles-druidiques
|
ParentLink: druid_hd.md#cercles-druidiques
|
||||||
|
Name: Cercle des saisons
|
||||||
ParentName: Cercles druidiques
|
ParentName: Cercles druidiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p147)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Cercles druidiques](hd_druid_cercles_druidiques.md)
|
> [Cercles druidiques](hd_druid_cercles_druidiques.md)
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,8 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Dwarf (SRD p3)
|
AltName: Dwarf (SRD p3)
|
||||||
Source: (MDR p57)
|
Source: (MDR p57)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Constitution](hd_abilities_constitution.md) augmente de 2.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@ Name: Nain des laves
|
||||||
ParentName: Nain
|
ParentName: Nain
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (MDR p57)
|
Source: (MDR p57)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Force](hd_abilities_strength.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Nain](hd_dwarf.md)
|
> [Nain](hd_dwarf.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@ Name: Nain des pierres
|
||||||
ParentName: Nain
|
ParentName: Nain
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (MDR p57)
|
Source: (MDR p57)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur d'[Intelligence](hd_abilities_intelligence.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Nain](hd_dwarf.md)
|
> [Nain](hd_dwarf.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,8 @@ ParentName: Nain
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
AltName: Hill Dwarf (SRD p3)
|
AltName: Hill Dwarf (SRD p3)
|
||||||
Source: (MDR p57)
|
Source: (MDR p57)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Sagesse](hd_abilities_wisdom.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Nain](hd_dwarf.md)
|
> [Nain](hd_dwarf.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,8 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Elf (SRD p4)
|
AltName: Elf (SRD p4)
|
||||||
Source: (MDR p44)
|
Source: (MDR p44)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Dextérité](hd_abilities_dexterity.md) augmente de 2.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,8 @@ ParentName: Elfe
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
AltName: High Elf (SRD p4)
|
AltName: High Elf (SRD p4)
|
||||||
Source: (MDR p45)
|
Source: (MDR p45)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur d'[Intelligence](hd_abilities_intelligence.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Elfe](hd_elf.md)
|
> [Elfe](hd_elf.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@ Name: Elfe de fer
|
||||||
ParentName: Elfe
|
ParentName: Elfe
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (MDR p45)
|
Source: (MDR p45)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Charisme](hd_abilities_charisma.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Elfe](hd_elf.md)
|
> [Elfe](hd_elf.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@ Name: Elfe des sylves
|
||||||
ParentName: Elfe
|
ParentName: Elfe
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (MDR p45)
|
Source: (MDR p45)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Sagesse](hd_abilities_wisdom.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Elfe](hd_elf.md)
|
> [Elfe](hd_elf.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,8 @@ Name: Félys
|
||||||
ParentName: Races
|
ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Source: (MDR p64)
|
Source: (MDR p64)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Dextérité](hd_abilities_dexterity.md) augmente de 2 et votre valeur de [Sagesse](hd_abilities_wisdom.md) de 1.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Champion
|
|
||||||
Source: (MDR p162)
|
|
||||||
Id: fighter_champion_hd.md#champion
|
Id: fighter_champion_hd.md#champion
|
||||||
RootId: fighter_champion_hd.md
|
RootId: fighter_champion_hd.md
|
||||||
ParentLink: fighter_hd.md#archétypes-martiaux
|
ParentLink: fighter_hd.md#archétypes-martiaux
|
||||||
|
Name: Champion
|
||||||
ParentName: Archétypes martiaux
|
ParentName: Archétypes martiaux
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Champion (SRD p25)
|
AltName: Champion (SRD p25)
|
||||||
|
Source: (MDR p162)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)
|
> [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Défenseur
|
|
||||||
Source: (MDR p163)
|
|
||||||
Id: fighter_defender_hd.md#défenseur
|
Id: fighter_defender_hd.md#défenseur
|
||||||
RootId: fighter_defender_hd.md
|
RootId: fighter_defender_hd.md
|
||||||
ParentLink: fighter_hd.md#archétypes-martiaux
|
ParentLink: fighter_hd.md#archétypes-martiaux
|
||||||
|
Name: Défenseur
|
||||||
ParentName: Archétypes martiaux
|
ParentName: Archétypes martiaux
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p163)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)
|
> [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Sorcelame
|
|
||||||
Source: (MDR p163)
|
|
||||||
Id: fighter_spellblade_hd.md#sorcelame
|
Id: fighter_spellblade_hd.md#sorcelame
|
||||||
RootId: fighter_spellblade_hd.md
|
RootId: fighter_spellblade_hd.md
|
||||||
ParentLink: fighter_hd.md#archétypes-martiaux
|
ParentLink: fighter_hd.md#archétypes-martiaux
|
||||||
|
Name: Sorcelame
|
||||||
ParentName: Archétypes martiaux
|
ParentName: Archétypes martiaux
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p163)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)
|
> [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Bretteur
|
|
||||||
Source: (MDR p162)
|
|
||||||
Id: fighter_swordsman_hd.md#bretteur
|
Id: fighter_swordsman_hd.md#bretteur
|
||||||
RootId: fighter_swordsman_hd.md
|
RootId: fighter_swordsman_hd.md
|
||||||
ParentLink: fighter_hd.md#archétypes-martiaux
|
ParentLink: fighter_hd.md#archétypes-martiaux
|
||||||
|
Name: Bretteur
|
||||||
ParentName: Archétypes martiaux
|
ParentName: Archétypes martiaux
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p162)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)
|
> [Archétypes martiaux](hd_fighter_archetypes_martiaux.md)
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,8 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Gnome (SRD p6)
|
AltName: Gnome (SRD p6)
|
||||||
Source: (MDR p48)
|
Source: (MDR p48)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur d'[Intelligence](hd_abilities_intelligence.md) augmente de 2.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@ Name: Gnome des fées
|
||||||
ParentName: Gnome
|
ParentName: Gnome
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (MDR p49)
|
Source: (MDR p49)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Dextérité](hd_abilities_dexterity.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Gnome](hd_gnome.md)
|
> [Gnome](hd_gnome.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@ Name: Gnome des lacs
|
||||||
ParentName: Gnome
|
ParentName: Gnome
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (MDR p49)
|
Source: (MDR p49)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Sagesse](hd_abilities_wisdom.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Gnome](hd_gnome.md)
|
> [Gnome](hd_gnome.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,8 @@ ParentName: Gnome
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
AltName: Rock Gnome (SRD p6)
|
AltName: Rock Gnome (SRD p6)
|
||||||
Source: (MDR p48)
|
Source: (MDR p48)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Constitution](hd_abilities_constitution.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Gnome](hd_gnome.md)
|
> [Gnome](hd_gnome.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,8 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Half-Elf (SRD p6)
|
AltName: Half-Elf (SRD p6)
|
||||||
Source: (MDR p39)
|
Source: (MDR p39)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Charisme](hd_abilities_charisma.md) augmente de 2 et deux autres valeurs de votre choix de 1.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,8 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Half-Orc (SRD p7)
|
AltName: Half-Orc (SRD p7)
|
||||||
Source: (MDR p41)
|
Source: (MDR p41)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Force](hd_abilities_strength.md) augmente de 2 et votre valeur de [Constitution](hd_abilities_constitution.md) de 1.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,8 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Halfling (SRD p4)
|
AltName: Halfling (SRD p4)
|
||||||
Source: (MDR p52)
|
Source: (MDR p52)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Dextérité](hd_abilities_dexterity.md) augmente de 2.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@ Name: Halfelin grand-sabot
|
||||||
ParentName: Halfelin
|
ParentName: Halfelin
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (MDR p52)
|
Source: (MDR p52)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Constitution](hd_abilities_constitution.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Halfelin](hd_halfling.md)
|
> [Halfelin](hd_halfling.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,8 @@ ParentName: Halfelin
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
AltName: Lightfoot (SRD p5)
|
AltName: Lightfoot (SRD p5)
|
||||||
Source: (MDR p52)
|
Source: (MDR p52)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Charisme](hd_abilities_charisma.md) augmente de 1.
|
||||||
---
|
---
|
||||||
> [Halfelin](hd_halfling.md)
|
> [Halfelin](hd_halfling.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,8 @@ Name: Homme serpent
|
||||||
ParentName: Races
|
ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Source: (MDR p66)
|
Source: (MDR p66)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Sagesse](hd_abilities_wisdom.md) augmente de 2 et votre valeur de [Charisme](hd_abilities_charisma.md) de 1.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,8 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Human (SRD p5)
|
AltName: Human (SRD p5)
|
||||||
Source: (MDR p54)
|
Source: (MDR p54)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: La valeur de toutes vos caractéristiques augmente de 1.
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voie de l'illumination
|
|
||||||
Source: (MDR p180)
|
|
||||||
Id: monk_enlightenment_hd.md#voie-de-lillumination
|
Id: monk_enlightenment_hd.md#voie-de-lillumination
|
||||||
RootId: monk_enlightenment_hd.md
|
RootId: monk_enlightenment_hd.md
|
||||||
ParentLink: monk_hd.md#traditions-monacales
|
ParentLink: monk_hd.md#traditions-monacales
|
||||||
|
Name: Voie de l'illumination
|
||||||
ParentName: Traditions monacales
|
ParentName: Traditions monacales
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p180)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions monacales](hd_monk_traditions_monacales.md)
|
> [Traditions monacales](hd_monk_traditions_monacales.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voie des cinq animaux
|
|
||||||
Source: (MDR p180)
|
|
||||||
Id: monk_fiveanimals_hd.md#voie-des-cinq-animaux
|
Id: monk_fiveanimals_hd.md#voie-des-cinq-animaux
|
||||||
RootId: monk_fiveanimals_hd.md
|
RootId: monk_fiveanimals_hd.md
|
||||||
ParentLink: monk_hd.md#traditions-monacales
|
ParentLink: monk_hd.md#traditions-monacales
|
||||||
|
Name: Voie des cinq animaux
|
||||||
ParentName: Traditions monacales
|
ParentName: Traditions monacales
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p180)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions monacales](hd_monk_traditions_monacales.md)
|
> [Traditions monacales](hd_monk_traditions_monacales.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voie de la souplesse
|
|
||||||
Source: (MDR p181)
|
|
||||||
Id: monk_flexibility_hd.md#voie-de-la-souplesse
|
Id: monk_flexibility_hd.md#voie-de-la-souplesse
|
||||||
RootId: monk_flexibility_hd.md
|
RootId: monk_flexibility_hd.md
|
||||||
ParentLink: monk_hd.md#traditions-monacales
|
ParentLink: monk_hd.md#traditions-monacales
|
||||||
|
Name: Voie de la souplesse
|
||||||
ParentName: Traditions monacales
|
ParentName: Traditions monacales
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p181)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions monacales](hd_monk_traditions_monacales.md)
|
> [Traditions monacales](hd_monk_traditions_monacales.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voie de la main ouverte
|
|
||||||
Source: (MDR p179)
|
|
||||||
Id: monk_openhand_hd.md#voie-de-la-main-ouverte
|
Id: monk_openhand_hd.md#voie-de-la-main-ouverte
|
||||||
RootId: monk_openhand_hd.md
|
RootId: monk_openhand_hd.md
|
||||||
ParentLink: monk_hd.md#traditions-monacales
|
ParentLink: monk_hd.md#traditions-monacales
|
||||||
|
Name: Voie de la main ouverte
|
||||||
ParentName: Traditions monacales
|
ParentName: Traditions monacales
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Way of the Open Hand (SRD p28)
|
AltName: Way of the Open Hand (SRD p28)
|
||||||
|
Source: (MDR p179)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions monacales](hd_monk_traditions_monacales.md)
|
> [Traditions monacales](hd_monk_traditions_monacales.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Serment de dévotion
|
|
||||||
Source: (MDR p186)
|
|
||||||
Id: paladin_devotion_hd.md#serment-de-dévotion
|
Id: paladin_devotion_hd.md#serment-de-dévotion
|
||||||
RootId: paladin_devotion_hd.md
|
RootId: paladin_devotion_hd.md
|
||||||
ParentLink: paladin_hd.md#serments-sacrés
|
ParentLink: paladin_hd.md#serments-sacrés
|
||||||
|
Name: Serment de dévotion
|
||||||
ParentName: Serments sacrés
|
ParentName: Serments sacrés
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Oath of Devotion (SRD p32)
|
AltName: Oath of Devotion (SRD p32)
|
||||||
|
Source: (MDR p186)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Serment d'obédience
|
|
||||||
Source: (MDR p187)
|
|
||||||
Id: paladin_obedience_hd.md#serment-dobédience
|
Id: paladin_obedience_hd.md#serment-dobédience
|
||||||
RootId: paladin_obedience_hd.md
|
RootId: paladin_obedience_hd.md
|
||||||
ParentLink: paladin_hd.md#serments-sacrés
|
ParentLink: paladin_hd.md#serments-sacrés
|
||||||
|
Name: Serment d'obédience
|
||||||
ParentName: Serments sacrés
|
ParentName: Serments sacrés
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p187)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Serment de perfection
|
|
||||||
Source: (MDR p189)
|
|
||||||
Id: paladin_perfection_hd.md#serment-de-perfection
|
Id: paladin_perfection_hd.md#serment-de-perfection
|
||||||
RootId: paladin_perfection_hd.md
|
RootId: paladin_perfection_hd.md
|
||||||
ParentLink: paladin_hd.md#serments-sacrés
|
ParentLink: paladin_hd.md#serments-sacrés
|
||||||
|
Name: Serment de perfection
|
||||||
ParentName: Serments sacrés
|
ParentName: Serments sacrés
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p189)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Serment de piété
|
|
||||||
Source: (MDR p190)
|
|
||||||
Id: paladin_piety_hd.md#serment-de-piété
|
Id: paladin_piety_hd.md#serment-de-piété
|
||||||
RootId: paladin_piety_hd.md
|
RootId: paladin_piety_hd.md
|
||||||
ParentLink: paladin_hd.md#serments-sacrés
|
ParentLink: paladin_hd.md#serments-sacrés
|
||||||
|
Name: Serment de piété
|
||||||
ParentName: Serments sacrés
|
ParentName: Serments sacrés
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p190)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Serment de rédemption
|
|
||||||
Source: (MDR p191)
|
|
||||||
Id: paladin_redemption_hd.md#serment-de-rédemption
|
Id: paladin_redemption_hd.md#serment-de-rédemption
|
||||||
RootId: paladin_redemption_hd.md
|
RootId: paladin_redemption_hd.md
|
||||||
ParentLink: paladin_hd.md#serments-sacrés
|
ParentLink: paladin_hd.md#serments-sacrés
|
||||||
|
Name: Serment de rédemption
|
||||||
ParentName: Serments sacrés
|
ParentName: Serments sacrés
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p191)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
> [Serments sacrés](hd_paladin_serments_sacres.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Archer arcanique
|
|
||||||
Source: (MDR p198)
|
|
||||||
Id: ranger_arcane_hd.md#archer-arcanique
|
Id: ranger_arcane_hd.md#archer-arcanique
|
||||||
RootId: ranger_arcane_hd.md
|
RootId: ranger_arcane_hd.md
|
||||||
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
||||||
|
Name: Archer arcanique
|
||||||
ParentName: Archétypes de rôdeur
|
ParentName: Archétypes de rôdeur
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p198)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Exilé
|
|
||||||
Source: (MDR p199)
|
|
||||||
Id: ranger_exile_hd.md#exilé
|
Id: ranger_exile_hd.md#exilé
|
||||||
RootId: ranger_exile_hd.md
|
RootId: ranger_exile_hd.md
|
||||||
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
||||||
|
Name: Exilé
|
||||||
ParentName: Archétypes de rôdeur
|
ParentName: Archétypes de rôdeur
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p199)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Chasseur
|
|
||||||
Source: (MDR p198)
|
|
||||||
Id: ranger_hunter_hd.md#chasseur
|
Id: ranger_hunter_hd.md#chasseur
|
||||||
RootId: ranger_hunter_hd.md
|
RootId: ranger_hunter_hd.md
|
||||||
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
||||||
|
Name: Chasseur
|
||||||
ParentName: Archétypes de rôdeur
|
ParentName: Archétypes de rôdeur
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Hunter (SRD p37)
|
AltName: Hunter (SRD p37)
|
||||||
|
Source: (MDR p198)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: 'Pisteur : un rôdeur alternatif'
|
|
||||||
Source: (MDR p200)
|
|
||||||
Id: ranger_pisteur_hd.md#pisteur--un-rôdeur-alternatif
|
Id: ranger_pisteur_hd.md#pisteur--un-rôdeur-alternatif
|
||||||
RootId: ranger_pisteur_hd.md
|
RootId: ranger_pisteur_hd.md
|
||||||
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
||||||
|
Name: 'Pisteur : un rôdeur alternatif'
|
||||||
ParentName: Archétypes de rôdeur
|
ParentName: Archétypes de rôdeur
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p200)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Traqueur
|
|
||||||
Source: (MDR p199)
|
|
||||||
Id: ranger_tracker_hd.md#traqueur
|
Id: ranger_tracker_hd.md#traqueur
|
||||||
RootId: ranger_tracker_hd.md
|
RootId: ranger_tracker_hd.md
|
||||||
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
ParentLink: ranger_hd.md#archétypes-de-rôdeurs
|
||||||
|
Name: Traqueur
|
||||||
ParentName: Archétypes de rôdeur
|
ParentName: Archétypes de rôdeur
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p199)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
> [Archétypes de rôdeur](ranger_hd.md#archétypes-de-rôdeurs)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Brute
|
|
||||||
Source: (MDR p205)
|
|
||||||
Id: rogue_brute_hd.md#brute
|
Id: rogue_brute_hd.md#brute
|
||||||
RootId: rogue_brute_hd.md
|
RootId: rogue_brute_hd.md
|
||||||
ParentLink: rogue_hd.md#archétypes-de-roublard
|
ParentLink: rogue_hd.md#archétypes-de-roublard
|
||||||
|
Name: Brute
|
||||||
ParentName: Archétypes de roublard
|
ParentName: Archétypes de roublard
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p205)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)
|
> [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Ombrelame
|
|
||||||
Source: (MDR p206)
|
|
||||||
Id: rogue_ombrelame_hd.md#ombrelame
|
Id: rogue_ombrelame_hd.md#ombrelame
|
||||||
RootId: rogue_ombrelame_hd.md
|
RootId: rogue_ombrelame_hd.md
|
||||||
ParentLink: rogue_hd.md#archétypes-de-roublard
|
ParentLink: rogue_hd.md#archétypes-de-roublard
|
||||||
|
Name: Ombrelame
|
||||||
ParentName: Archétypes de roublard
|
ParentName: Archétypes de roublard
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p206)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)
|
> [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Espion
|
|
||||||
Source: (MDR p206)
|
|
||||||
Id: rogue_spy_hd.md#espion
|
Id: rogue_spy_hd.md#espion
|
||||||
RootId: rogue_spy_hd.md
|
RootId: rogue_spy_hd.md
|
||||||
ParentLink: rogue_hd.md#archétypes-de-roublard
|
ParentLink: rogue_hd.md#archétypes-de-roublard
|
||||||
|
Name: Espion
|
||||||
ParentName: Archétypes de roublard
|
ParentName: Archétypes de roublard
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p206)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)
|
> [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Voleur
|
|
||||||
Source: (MDR p204)
|
|
||||||
Id: rogue_thief_hd.md#voleur
|
Id: rogue_thief_hd.md#voleur
|
||||||
RootId: rogue_thief_hd.md
|
RootId: rogue_thief_hd.md
|
||||||
ParentLink: rogue_hd.md#archétypes-de-roublard
|
ParentLink: rogue_hd.md#archétypes-de-roublard
|
||||||
|
Name: Voleur
|
||||||
ParentName: Archétypes de roublard
|
ParentName: Archétypes de roublard
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Thief (SRD p40)
|
AltName: Thief (SRD p40)
|
||||||
|
Source: (MDR p204)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)
|
> [Archétypes de roublard](hd_rogue_archetypes_de_roublard.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Lignée céleste
|
|
||||||
Source: (MDR p156)
|
|
||||||
Id: sorcerer_celestial_hd.md#lignée-céleste
|
Id: sorcerer_celestial_hd.md#lignée-céleste
|
||||||
RootId: sorcerer_celestial_hd.md
|
RootId: sorcerer_celestial_hd.md
|
||||||
ParentLink: sorcerer_hd.md#origines-magiques
|
ParentLink: sorcerer_hd.md#origines-magiques
|
||||||
|
Name: Lignée céleste
|
||||||
ParentName: Origines magiques
|
ParentName: Origines magiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p156)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Origines magiques](hd_sorcerer_origines_magiques.md)
|
> [Origines magiques](hd_sorcerer_origines_magiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Lignée draconique
|
|
||||||
Source: (MDR p155)
|
|
||||||
Id: sorcerer_draconic_hd.md#lignée-draconique
|
Id: sorcerer_draconic_hd.md#lignée-draconique
|
||||||
RootId: sorcerer_draconic_hd.md
|
RootId: sorcerer_draconic_hd.md
|
||||||
ParentLink: sorcerer_hd.md#origines-magiques
|
ParentLink: sorcerer_hd.md#origines-magiques
|
||||||
|
Name: Lignée draconique
|
||||||
ParentName: Origines magiques
|
ParentName: Origines magiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Draconic Bloodline (SRD p44)
|
AltName: Draconic Bloodline (SRD p44)
|
||||||
|
Source: (MDR p155)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Origines magiques](hd_sorcerer_origines_magiques.md)
|
> [Origines magiques](hd_sorcerer_origines_magiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Lignée féerique
|
|
||||||
Source: (MDR p157)
|
|
||||||
Id: sorcerer_fairy_hd.md#lignée-féerique
|
Id: sorcerer_fairy_hd.md#lignée-féerique
|
||||||
RootId: sorcerer_fairy_hd.md
|
RootId: sorcerer_fairy_hd.md
|
||||||
ParentLink: sorcerer_hd.md#origines-magiques
|
ParentLink: sorcerer_hd.md#origines-magiques
|
||||||
|
Name: Lignée féerique
|
||||||
ParentName: Origines magiques
|
ParentName: Origines magiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p157)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Origines magiques](hd_sorcerer_origines_magiques.md)
|
> [Origines magiques](hd_sorcerer_origines_magiques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Lignée infernale
|
|
||||||
Source: (MDR p158)
|
|
||||||
Id: sorcerer_infernal_hd.md#lignée-infernale
|
Id: sorcerer_infernal_hd.md#lignée-infernale
|
||||||
RootId: sorcerer_infernal_hd.md
|
RootId: sorcerer_infernal_hd.md
|
||||||
ParentLink: sorcerer_hd.md#origines-magiques
|
ParentLink: sorcerer_hd.md#origines-magiques
|
||||||
|
Name: Lignée infernale
|
||||||
ParentName: Origines magiques
|
ParentName: Origines magiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p158)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Origines magiques](hd_sorcerer_origines_magiques.md)
|
> [Origines magiques](hd_sorcerer_origines_magiques.md)
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,10 @@ ParentName: Races
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Tiefling (SRD p7)
|
AltName: Tiefling (SRD p7)
|
||||||
Source: (MDR p71)
|
Source: (MDR p71)
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Charisme](hd_abilities_charisma.md) augmente de 2 et votre valeur d'[Intelligence](hd_abilities_intelligence.md) de 1.
|
||||||
|
HellishResistance: Vous êtes résistant aux dégâts de feu.
|
||||||
|
InfernalLegacy: Vous connaissez le tour de magie thaumaturgie. Quand vous atteignez le niveau 3, vous pouvez lancer une fois le sort représailles infernales comme sort de niveau 2 grâce à ce trait. Pour pouvoir lancer de nouveau ce sort, vous devez terminer un repos long. À partir du niveau 5, vous pouvez lancer une fois le sort ténèbres grâce à ce trait. Pour pouvoir lancer de nouveau ce sort, vous devez finir un repos long. Votre caractéristique d'incantation pour lancer ces sorts est le [Charisme](hd_abilities_charisma.md).
|
||||||
---
|
---
|
||||||
> [Races](races_hd.md#)
|
> [Races](races_hd.md#)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: La puissance des profondeurs
|
|
||||||
Source: (MDR p216)
|
|
||||||
Id: warlock_depths_hd.md#la-puissance-des-profondeurs
|
Id: warlock_depths_hd.md#la-puissance-des-profondeurs
|
||||||
RootId: warlock_depths_hd.md
|
RootId: warlock_depths_hd.md
|
||||||
ParentLink: warlock_hd.md#protecteurs-doutre-monde
|
ParentLink: warlock_hd.md#protecteurs-doutre-monde
|
||||||
|
Name: La puissance des profondeurs
|
||||||
ParentName: Protecteurs d'outre-monde
|
ParentName: Protecteurs d'outre-monde
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p216)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)
|
> [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: L'entité extra-dimensionnelle
|
|
||||||
Source: (MDR p217)
|
|
||||||
Id: warlock_extradimensional_hd.md#lentité-extra-dimensionnelle
|
Id: warlock_extradimensional_hd.md#lentité-extra-dimensionnelle
|
||||||
RootId: warlock_extradimensional_hd.md
|
RootId: warlock_extradimensional_hd.md
|
||||||
ParentLink: warlock_hd.md#protecteurs-doutre-monde
|
ParentLink: warlock_hd.md#protecteurs-doutre-monde
|
||||||
|
Name: L'entité extra-dimensionnelle
|
||||||
ParentName: Protecteurs d'outre-monde
|
ParentName: Protecteurs d'outre-monde
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p217)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)
|
> [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Le fiélon
|
|
||||||
Source: (MDR p215)
|
|
||||||
Id: warlock_fiendish_hd.md#le-fiélon
|
Id: warlock_fiendish_hd.md#le-fiélon
|
||||||
RootId: warlock_fiendish_hd.md
|
RootId: warlock_fiendish_hd.md
|
||||||
ParentLink: warlock_hd.md#protecteurs-doutre-monde
|
ParentLink: warlock_hd.md#protecteurs-doutre-monde
|
||||||
|
Name: Le fiélon
|
||||||
ParentName: Protecteurs d'outre-monde
|
ParentName: Protecteurs d'outre-monde
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: The Fiend (SRD p50)
|
AltName: The Fiend (SRD p50)
|
||||||
|
Source: (MDR p215)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)
|
> [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Le seigneur immortel
|
|
||||||
Source: (MDR p215)
|
|
||||||
Id: warlock_immortal_hd.md#le-seigneur-immortel
|
Id: warlock_immortal_hd.md#le-seigneur-immortel
|
||||||
RootId: warlock_immortal_hd.md
|
RootId: warlock_immortal_hd.md
|
||||||
ParentLink: warlock_hd.md#protecteurs-doutre-monde
|
ParentLink: warlock_hd.md#protecteurs-doutre-monde
|
||||||
|
Name: Le seigneur immortel
|
||||||
ParentName: Protecteurs d'outre-monde
|
ParentName: Protecteurs d'outre-monde
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p215)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)
|
> [Protecteurs d'outre-monde](hd_warlock_protecteurs_doutre_monde.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Invocations occultes
|
|
||||||
Source: (MDR p213)
|
|
||||||
Id: warlock_occultsummons_hd.md#invocations-occultes
|
Id: warlock_occultsummons_hd.md#invocations-occultes
|
||||||
RootId: warlock_occultsummons_hd.md
|
RootId: warlock_occultsummons_hd.md
|
||||||
ParentLink: warlock_hd.md
|
ParentLink: warlock_hd.md
|
||||||
|
Name: Invocations occultes
|
||||||
ParentName: Sorcier
|
ParentName: Sorcier
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Eldritch Invocations (SRD p48)
|
AltName: Eldritch Invocations (SRD p48)
|
||||||
|
Source: (MDR p213)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Sorcier](hd_warlock.md)
|
> [Sorcier](hd_warlock.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Pacte
|
|
||||||
Source: (MDR p211)
|
|
||||||
Id: warlock_pact_hd.md#pacte
|
Id: warlock_pact_hd.md#pacte
|
||||||
RootId: warlock_pact_hd.md
|
RootId: warlock_pact_hd.md
|
||||||
ParentLink: warlock_hd.md
|
ParentLink: warlock_hd.md
|
||||||
|
Name: Pacte
|
||||||
ParentName: Sorcier
|
ParentName: Sorcier
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Pact Boon (SRD p47)
|
AltName: Pact Boon (SRD p47)
|
||||||
|
Source: (MDR p211)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Sorcier](hd_warlock.md)
|
> [Sorcier](hd_warlock.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Académicien
|
|
||||||
Source: (MDR p169)
|
|
||||||
Id: wizard_academician_hd.md#académicien
|
Id: wizard_academician_hd.md#académicien
|
||||||
RootId: wizard_academician_hd.md
|
RootId: wizard_academician_hd.md
|
||||||
ParentLink: wizard_hd.md#traditions-arcaniques
|
ParentLink: wizard_hd.md#traditions-arcaniques
|
||||||
|
Name: Académicien
|
||||||
ParentName: Traditions arcaniques
|
ParentName: Traditions arcaniques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p169)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Élémentaliste
|
|
||||||
Source: (MDR p171)
|
|
||||||
Id: wizard_elementalist_hd.md#Élémentaliste
|
Id: wizard_elementalist_hd.md#Élémentaliste
|
||||||
RootId: wizard_elementalist_hd.md
|
RootId: wizard_elementalist_hd.md
|
||||||
ParentLink: wizard_hd.md#traditions-arcaniques
|
ParentLink: wizard_hd.md#traditions-arcaniques
|
||||||
|
Name: Élémentaliste
|
||||||
ParentName: Traditions arcaniques
|
ParentName: Traditions arcaniques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p171)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Éminence grise
|
|
||||||
Source: (MDR p174)
|
|
||||||
Id: wizard_eminence_hd.md#Éminence-grise
|
Id: wizard_eminence_hd.md#Éminence-grise
|
||||||
RootId: wizard_eminence_hd.md
|
RootId: wizard_eminence_hd.md
|
||||||
ParentLink: wizard_hd.md#traditions-arcaniques
|
ParentLink: wizard_hd.md#traditions-arcaniques
|
||||||
|
Name: Éminence grise
|
||||||
ParentName: Traditions arcaniques
|
ParentName: Traditions arcaniques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p174)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: École d'évocation
|
|
||||||
Source: (MDR p419)
|
|
||||||
Id: wizard_evocation_hd.md#École-dévocation
|
Id: wizard_evocation_hd.md#École-dévocation
|
||||||
RootId: wizard_evocation_hd.md
|
RootId: wizard_evocation_hd.md
|
||||||
ParentLink: wizard_hd.md#traditions-arcaniques
|
ParentLink: wizard_hd.md#traditions-arcaniques
|
||||||
|
Name: École d'évocation
|
||||||
ParentName: Traditions arcaniques
|
ParentName: Traditions arcaniques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: School of Evocation (SRD p54)
|
AltName: School of Evocation (SRD p54)
|
||||||
|
Source: (MDR p419)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
Name: Arpenteur
|
|
||||||
Source: (MDR p171)
|
|
||||||
Id: wizard_surveyor_hd.md#arpenteur
|
Id: wizard_surveyor_hd.md#arpenteur
|
||||||
RootId: wizard_surveyor_hd.md
|
RootId: wizard_surveyor_hd.md
|
||||||
ParentLink: wizard_hd.md#traditions-arcaniques
|
ParentLink: wizard_hd.md#traditions-arcaniques
|
||||||
|
Name: Arpenteur
|
||||||
ParentName: Traditions arcaniques
|
ParentName: Traditions arcaniques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
|
Source: (MDR p171)
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
> [Traditions arcaniques](hd_wizard_traditions_arcaniques.md)
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,8 @@ Name: Agrandir/rétrécir
|
||||||
ParentName: Sandbox
|
ParentName: Sandbox
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)'
|
AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)'
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
Book: (HD)(SRD p)
|
||||||
---
|
---
|
||||||
> [Sandbox](sandbox.md)
|
> [Sandbox](sandbox.md)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@ Name: Sandbox
|
||||||
ParentName: ''
|
ParentName: ''
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Races
|
AltName: Races
|
||||||
Attributes: {}
|
Attributes:
|
||||||
|
Book: (MDR p36)(SRD p3)
|
||||||
---
|
---
|
||||||
> [](.md#)
|
> [](.md#)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue