mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2026-02-06 08:33:43 +00:00
Refonte NameLevel
This commit is contained in:
parent
471d4c1636
commit
2f17832932
1756 changed files with 7259 additions and 7248 deletions
|
|
@ -213,6 +213,13 @@ namespace AideDeJeu.ViewModels
|
||||||
return ParseItemProperties(source, item, table);
|
return ParseItemProperties(source, item, table);
|
||||||
case ContainerBlock blocks:
|
case ContainerBlock blocks:
|
||||||
return ParseItemProperties(source, item, blocks);
|
return ParseItemProperties(source, item, blocks);
|
||||||
|
case HeadingBlock heading:
|
||||||
|
bool isnamee = ParseItemProperties(source, item, heading.Inline, heading);
|
||||||
|
if (isnamee)
|
||||||
|
{
|
||||||
|
//item.NameLevel = heading.Level;
|
||||||
|
}
|
||||||
|
return isnamee;
|
||||||
case LeafBlock leaf:
|
case LeafBlock leaf:
|
||||||
bool isname = ParseItemProperties(source, item, leaf.Inline);
|
bool isname = ParseItemProperties(source, item, leaf.Inline);
|
||||||
if(isname)
|
if(isname)
|
||||||
|
|
@ -220,7 +227,7 @@ namespace AideDeJeu.ViewModels
|
||||||
if(leaf is HeadingBlock)
|
if(leaf is HeadingBlock)
|
||||||
{
|
{
|
||||||
var headingBlock = leaf as HeadingBlock;
|
var headingBlock = leaf as HeadingBlock;
|
||||||
item.NameLevel = headingBlock.Level;
|
//item.NameLevel = headingBlock.Level;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return isname;
|
return isname;
|
||||||
|
|
@ -238,7 +245,7 @@ namespace AideDeJeu.ViewModels
|
||||||
return isname;
|
return isname;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool ParseItemProperties(string source, Item item, ContainerInline inlines)
|
public bool ParseItemProperties(string source, Item item, ContainerInline inlines, HeadingBlock headingBlock = null)
|
||||||
{
|
{
|
||||||
bool isname = false;
|
bool isname = false;
|
||||||
if (inlines == null)
|
if (inlines == null)
|
||||||
|
|
@ -267,6 +274,10 @@ namespace AideDeJeu.ViewModels
|
||||||
if(propertyName == "Name")
|
if(propertyName == "Name")
|
||||||
{
|
{
|
||||||
isname = true;
|
isname = true;
|
||||||
|
if (headingBlock != null)
|
||||||
|
{
|
||||||
|
item.NameLevel = headingBlock.Level;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
prop = item.GetType().GetProperty(propertyName, BindingFlags.Public | BindingFlags.Instance);
|
prop = item.GetType().GetProperty(propertyName, BindingFlags.Public | BindingFlags.Instance);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Avantage et désavantage
|
||||||
Id: abilities_hd.md#avantage-et-désavantage
|
Id: abilities_hd.md#avantage-et-désavantage
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Avantage et désavantage
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Bonus de maîtrise
|
||||||
Id: abilities_hd.md#bonus-de-maîtrise
|
Id: abilities_hd.md#bonus-de-maîtrise
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Bonus de maîtrise
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Autres tests de Charisme
|
||||||
Id: abilities_charisma_hd.md#autres-tests-de-charisme
|
Id: abilities_charisma_hd.md#autres-tests-de-charisme
|
||||||
ParentLink: abilities_charisma_hd.md#charisme
|
ParentLink: abilities_charisma_hd.md#charisme
|
||||||
Name: Autres tests de Charisme
|
|
||||||
ParentName: Charisme
|
ParentName: Charisme
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Caractéristique d'incantation
|
||||||
Id: abilities_charisma_hd.md#caractéristique-dincantation
|
Id: abilities_charisma_hd.md#caractéristique-dincantation
|
||||||
ParentLink: abilities_charisma_hd.md#charisme
|
ParentLink: abilities_charisma_hd.md#charisme
|
||||||
Name: Caractéristique d'incantation
|
|
||||||
ParentName: Charisme
|
ParentName: Charisme
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Intimidation
|
||||||
Id: abilities_charisma_hd.md#intimidation
|
Id: abilities_charisma_hd.md#intimidation
|
||||||
ParentLink: abilities_charisma_hd.md#charisme
|
ParentLink: abilities_charisma_hd.md#charisme
|
||||||
Name: Intimidation
|
|
||||||
ParentName: Charisme
|
ParentName: Charisme
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Persuasion
|
||||||
Id: abilities_charisma_hd.md#persuasion
|
Id: abilities_charisma_hd.md#persuasion
|
||||||
ParentLink: abilities_charisma_hd.md#charisme
|
ParentLink: abilities_charisma_hd.md#charisme
|
||||||
Name: Persuasion
|
|
||||||
ParentName: Charisme
|
ParentName: Charisme
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Représentation
|
||||||
Id: abilities_charisma_hd.md#représentation
|
Id: abilities_charisma_hd.md#représentation
|
||||||
ParentLink: abilities_charisma_hd.md#charisme
|
ParentLink: abilities_charisma_hd.md#charisme
|
||||||
Name: Représentation
|
|
||||||
ParentName: Charisme
|
ParentName: Charisme
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Supercherie
|
||||||
Id: abilities_charisma_hd.md#supercherie
|
Id: abilities_charisma_hd.md#supercherie
|
||||||
ParentLink: abilities_charisma_hd.md#charisme
|
ParentLink: abilities_charisma_hd.md#charisme
|
||||||
Name: Supercherie
|
|
||||||
ParentName: Charisme
|
ParentName: Charisme
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests de Charisme
|
||||||
Id: abilities_charisma_hd.md#tests-de-charisme
|
Id: abilities_charisma_hd.md#tests-de-charisme
|
||||||
ParentLink: abilities_charisma_hd.md#charisme
|
ParentLink: abilities_charisma_hd.md#charisme
|
||||||
Name: Tests de Charisme
|
|
||||||
ParentName: Charisme
|
ParentName: Charisme
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Compétences
|
||||||
Id: abilities_hd.md#compétences
|
Id: abilities_hd.md#compétences
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Compétences
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Points de vie
|
||||||
Id: abilities_constitution_hd.md#points-de-vie
|
Id: abilities_constitution_hd.md#points-de-vie
|
||||||
ParentLink: abilities_constitution_hd.md#constitution
|
ParentLink: abilities_constitution_hd.md#constitution
|
||||||
Name: Points de vie
|
|
||||||
ParentName: Constitution
|
ParentName: Constitution
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests de Constitution
|
||||||
Id: abilities_constitution_hd.md#tests-de-constitution
|
Id: abilities_constitution_hd.md#tests-de-constitution
|
||||||
ParentLink: abilities_constitution_hd.md#constitution
|
ParentLink: abilities_constitution_hd.md#constitution
|
||||||
Name: Tests de Constitution
|
|
||||||
ParentName: Constitution
|
ParentName: Constitution
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Acrobaties
|
||||||
Id: abilities_dexterity_hd.md#acrobaties
|
Id: abilities_dexterity_hd.md#acrobaties
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Acrobaties
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Autres tests de Dextérité
|
||||||
Id: abilities_dexterity_hd.md#autres-tests-de-dextérité
|
Id: abilities_dexterity_hd.md#autres-tests-de-dextérité
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Autres tests de Dextérité
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Classe d'armure
|
||||||
Id: abilities_dexterity_hd.md#classe-darmure
|
Id: abilities_dexterity_hd.md#classe-darmure
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Classe d'armure
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Discrétion
|
||||||
Id: abilities_dexterity_hd.md#discrétion
|
Id: abilities_dexterity_hd.md#discrétion
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Discrétion
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Escamotage
|
||||||
Id: abilities_dexterity_hd.md#escamotage
|
Id: abilities_dexterity_hd.md#escamotage
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Escamotage
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Initiative
|
||||||
Id: abilities_dexterity_hd.md#initiative
|
Id: abilities_dexterity_hd.md#initiative
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Initiative
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Jets d'attaque et de dégâts
|
||||||
Id: abilities_dexterity_hd.md#jets-dattaque-et-de-dégâts
|
Id: abilities_dexterity_hd.md#jets-dattaque-et-de-dégâts
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Jets d'attaque et de dégâts
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Perception passive
|
||||||
Id: abilities_dexterity_hd.md#perception-passive
|
Id: abilities_dexterity_hd.md#perception-passive
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Perception passive
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Que pouvez-vous voir ?
|
||||||
Id: abilities_dexterity_hd.md#que-pouvez-vous-voir-?
|
Id: abilities_dexterity_hd.md#que-pouvez-vous-voir-?
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Que pouvez-vous voir ?
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Se cacher
|
||||||
Id: abilities_dexterity_hd.md#se-cacher
|
Id: abilities_dexterity_hd.md#se-cacher
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Se cacher
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests de Dextérité
|
||||||
Id: abilities_dexterity_hd.md#tests-de-dextérité
|
Id: abilities_dexterity_hd.md#tests-de-dextérité
|
||||||
ParentLink: abilities_dexterity_hd.md#dextérité
|
ParentLink: abilities_dexterity_hd.md#dextérité
|
||||||
Name: Tests de Dextérité
|
|
||||||
ParentName: Dextérité
|
ParentName: Dextérité
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Arcanes
|
||||||
Id: abilities_intelligence_hd.md#arcanes
|
Id: abilities_intelligence_hd.md#arcanes
|
||||||
ParentLink: abilities_intelligence_hd.md#intelligence
|
ParentLink: abilities_intelligence_hd.md#intelligence
|
||||||
Name: Arcanes
|
|
||||||
ParentName: Intelligence
|
ParentName: Intelligence
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Autres tests d'Intelligence
|
||||||
Id: abilities_intelligence_hd.md#autres-tests-dintelligence
|
Id: abilities_intelligence_hd.md#autres-tests-dintelligence
|
||||||
ParentLink: abilities_intelligence_hd.md#intelligence
|
ParentLink: abilities_intelligence_hd.md#intelligence
|
||||||
Name: Autres tests d'Intelligence
|
|
||||||
ParentName: Intelligence
|
ParentName: Intelligence
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Caractéristique d'incantation
|
||||||
Id: abilities_intelligence_hd.md#caractéristique-dincantation
|
Id: abilities_intelligence_hd.md#caractéristique-dincantation
|
||||||
ParentLink: abilities_intelligence_hd.md#intelligence
|
ParentLink: abilities_intelligence_hd.md#intelligence
|
||||||
Name: Caractéristique d'incantation
|
|
||||||
ParentName: Intelligence
|
ParentName: Intelligence
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Histoire
|
||||||
Id: abilities_intelligence_hd.md#histoire
|
Id: abilities_intelligence_hd.md#histoire
|
||||||
ParentLink: abilities_intelligence_hd.md#intelligence
|
ParentLink: abilities_intelligence_hd.md#intelligence
|
||||||
Name: Histoire
|
|
||||||
ParentName: Intelligence
|
ParentName: Intelligence
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Investigation
|
||||||
Id: abilities_intelligence_hd.md#investigation
|
Id: abilities_intelligence_hd.md#investigation
|
||||||
ParentLink: abilities_intelligence_hd.md#intelligence
|
ParentLink: abilities_intelligence_hd.md#intelligence
|
||||||
Name: Investigation
|
|
||||||
ParentName: Intelligence
|
ParentName: Intelligence
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Nature
|
||||||
Id: abilities_intelligence_hd.md#nature
|
Id: abilities_intelligence_hd.md#nature
|
||||||
ParentLink: abilities_intelligence_hd.md#intelligence
|
ParentLink: abilities_intelligence_hd.md#intelligence
|
||||||
Name: Nature
|
|
||||||
ParentName: Intelligence
|
ParentName: Intelligence
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Religion
|
||||||
Id: abilities_intelligence_hd.md#religion
|
Id: abilities_intelligence_hd.md#religion
|
||||||
ParentLink: abilities_intelligence_hd.md#intelligence
|
ParentLink: abilities_intelligence_hd.md#intelligence
|
||||||
Name: Religion
|
|
||||||
ParentName: Intelligence
|
ParentName: Intelligence
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests d'Intelligence
|
||||||
Id: abilities_intelligence_hd.md#tests-dintelligence
|
Id: abilities_intelligence_hd.md#tests-dintelligence
|
||||||
ParentLink: abilities_intelligence_hd.md#intelligence
|
ParentLink: abilities_intelligence_hd.md#intelligence
|
||||||
Name: Tests d'Intelligence
|
|
||||||
ParentName: Intelligence
|
ParentName: Intelligence
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Jets de sauvegarde
|
||||||
Id: abilities_hd.md#jets-de-sauvegarde
|
Id: abilities_hd.md#jets-de-sauvegarde
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Jets de sauvegarde
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Opposition
|
||||||
Id: abilities_hd.md#opposition
|
Id: abilities_hd.md#opposition
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Opposition
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: 'Option : compétences associées avec différentes caractéristiques'
|
||||||
Id: abilities_hd.md#option--compétences-associées-avec-différentes-caractéristiques
|
Id: abilities_hd.md#option--compétences-associées-avec-différentes-caractéristiques
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: 'Option : compétences associées avec différentes caractéristiques'
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Athlétisme
|
||||||
Id: abilities_strength_hd.md#athlétisme
|
Id: abilities_strength_hd.md#athlétisme
|
||||||
ParentLink: abilities_strength_hd.md#force
|
ParentLink: abilities_strength_hd.md#force
|
||||||
Name: Athlétisme
|
|
||||||
ParentName: Force
|
ParentName: Force
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: 'Autres tests de Force '
|
||||||
Id: abilities_strength_hd.md#autres-tests-de-force-
|
Id: abilities_strength_hd.md#autres-tests-de-force-
|
||||||
ParentLink: abilities_strength_hd.md#force
|
ParentLink: abilities_strength_hd.md#force
|
||||||
Name: 'Autres tests de Force '
|
|
||||||
ParentName: Force
|
ParentName: Force
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Capacité de charge
|
||||||
Id: abilities_strength_hd.md#capacité-de-charge
|
Id: abilities_strength_hd.md#capacité-de-charge
|
||||||
ParentLink: abilities_strength_hd.md#force
|
ParentLink: abilities_strength_hd.md#force
|
||||||
Name: Capacité de charge
|
|
||||||
ParentName: Force
|
ParentName: Force
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Jets d'attaque et de dégâts
|
||||||
Id: abilities_strength_hd.md#jets-dattaque-et-de-dégâts
|
Id: abilities_strength_hd.md#jets-dattaque-et-de-dégâts
|
||||||
ParentLink: abilities_strength_hd.md#force
|
ParentLink: abilities_strength_hd.md#force
|
||||||
Name: Jets d'attaque et de dégâts
|
|
||||||
ParentName: Force
|
ParentName: Force
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Pousser, tirer, soulever
|
||||||
Id: abilities_strength_hd.md#pousser-tirer-soulever
|
Id: abilities_strength_hd.md#pousser-tirer-soulever
|
||||||
ParentLink: abilities_strength_hd.md#force
|
ParentLink: abilities_strength_hd.md#force
|
||||||
Name: Pousser, tirer, soulever
|
|
||||||
ParentName: Force
|
ParentName: Force
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Soulever et transporter
|
||||||
Id: abilities_strength_hd.md#soulever-et-transporter
|
Id: abilities_strength_hd.md#soulever-et-transporter
|
||||||
ParentLink: abilities_strength_hd.md#force
|
ParentLink: abilities_strength_hd.md#force
|
||||||
Name: Soulever et transporter
|
|
||||||
ParentName: Force
|
ParentName: Force
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Taille et Force
|
||||||
Id: abilities_strength_hd.md#taille-et-force
|
Id: abilities_strength_hd.md#taille-et-force
|
||||||
ParentLink: abilities_strength_hd.md#force
|
ParentLink: abilities_strength_hd.md#force
|
||||||
Name: Taille et Force
|
|
||||||
ParentName: Force
|
ParentName: Force
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests de Force
|
||||||
Id: abilities_strength_hd.md#tests-de-force
|
Id: abilities_strength_hd.md#tests-de-force
|
||||||
ParentLink: abilities_strength_hd.md#force
|
ParentLink: abilities_strength_hd.md#force
|
||||||
Name: Tests de Force
|
|
||||||
ParentName: Force
|
ParentName: Force
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests de caractéristique
|
||||||
Id: abilities_hd.md#tests-de-caractéristique
|
Id: abilities_hd.md#tests-de-caractéristique
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Tests de caractéristique
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests de groupe
|
||||||
Id: abilities_hd.md#tests-de-groupe
|
Id: abilities_hd.md#tests-de-groupe
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Tests de groupe
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests passifs
|
||||||
Id: abilities_hd.md#tests-passifs
|
Id: abilities_hd.md#tests-passifs
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Tests passifs
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Travailler ensemble
|
||||||
Id: abilities_hd.md#travailler-ensemble
|
Id: abilities_hd.md#travailler-ensemble
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Travailler ensemble
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Utiliser chaque caractéristique
|
||||||
Id: abilities_hd.md#utiliser-chaque-caractéristique
|
Id: abilities_hd.md#utiliser-chaque-caractéristique
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Utiliser chaque caractéristique
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Valeurs de caractéristiques et modificateurs
|
||||||
Id: abilities_hd.md#valeurs-de-caractéristiques-et-modificateurs
|
Id: abilities_hd.md#valeurs-de-caractéristiques-et-modificateurs
|
||||||
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
ParentLink: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
Name: Valeurs de caractéristiques et modificateurs
|
|
||||||
ParentName: Utiliser les caractéristiques
|
ParentName: Utiliser les caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Autres tests de Sagesse
|
||||||
Id: abilities_wisdom_hd.md#autres-tests-de-sagesse
|
Id: abilities_wisdom_hd.md#autres-tests-de-sagesse
|
||||||
ParentLink: abilities_wisdom_hd.md#sagesse
|
ParentLink: abilities_wisdom_hd.md#sagesse
|
||||||
Name: Autres tests de Sagesse
|
|
||||||
ParentName: Sagesse
|
ParentName: Sagesse
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Caractéristique d'incantation
|
||||||
Id: abilities_wisdom_hd.md#caractéristique-dincantation
|
Id: abilities_wisdom_hd.md#caractéristique-dincantation
|
||||||
ParentLink: abilities_wisdom_hd.md#sagesse
|
ParentLink: abilities_wisdom_hd.md#sagesse
|
||||||
Name: Caractéristique d'incantation
|
|
||||||
ParentName: Sagesse
|
ParentName: Sagesse
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Dressage
|
||||||
Id: abilities_wisdom_hd.md#dressage
|
Id: abilities_wisdom_hd.md#dressage
|
||||||
ParentLink: abilities_wisdom_hd.md#sagesse
|
ParentLink: abilities_wisdom_hd.md#sagesse
|
||||||
Name: Dressage
|
|
||||||
ParentName: Sagesse
|
ParentName: Sagesse
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Médecine
|
||||||
Id: abilities_wisdom_hd.md#médecine
|
Id: abilities_wisdom_hd.md#médecine
|
||||||
ParentLink: abilities_wisdom_hd.md#sagesse
|
ParentLink: abilities_wisdom_hd.md#sagesse
|
||||||
Name: Médecine
|
|
||||||
ParentName: Sagesse
|
ParentName: Sagesse
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Perception
|
||||||
Id: abilities_wisdom_hd.md#perception
|
Id: abilities_wisdom_hd.md#perception
|
||||||
ParentLink: abilities_wisdom_hd.md#sagesse
|
ParentLink: abilities_wisdom_hd.md#sagesse
|
||||||
Name: Perception
|
|
||||||
ParentName: Sagesse
|
ParentName: Sagesse
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Perspicacité
|
||||||
Id: abilities_wisdom_hd.md#perspicacité
|
Id: abilities_wisdom_hd.md#perspicacité
|
||||||
ParentLink: abilities_wisdom_hd.md#sagesse
|
ParentLink: abilities_wisdom_hd.md#sagesse
|
||||||
Name: Perspicacité
|
|
||||||
ParentName: Sagesse
|
ParentName: Sagesse
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Survie
|
||||||
Id: abilities_wisdom_hd.md#survie
|
Id: abilities_wisdom_hd.md#survie
|
||||||
ParentLink: abilities_wisdom_hd.md#sagesse
|
ParentLink: abilities_wisdom_hd.md#sagesse
|
||||||
Name: Survie
|
|
||||||
ParentName: Sagesse
|
ParentName: Sagesse
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Tests de Sagesse
|
||||||
Id: abilities_wisdom_hd.md#tests-de-sagesse
|
Id: abilities_wisdom_hd.md#tests-de-sagesse
|
||||||
ParentLink: abilities_wisdom_hd.md#sagesse
|
ParentLink: abilities_wisdom_hd.md#sagesse
|
||||||
Name: Tests de Sagesse
|
|
||||||
ParentName: Sagesse
|
ParentName: Sagesse
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Chaotique Bon (CB)
|
||||||
Id: alignment_hd.md#chaotique-bon-cb
|
Id: alignment_hd.md#chaotique-bon-cb
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Chaotique Bon (CB)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Chaotique Mauvais (CM)
|
||||||
Id: alignment_hd.md#chaotique-mauvais-cm
|
Id: alignment_hd.md#chaotique-mauvais-cm
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Chaotique Mauvais (CM)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Chaotique Neutre (CN)
|
||||||
Id: alignment_hd.md#chaotique-neutre-cn
|
Id: alignment_hd.md#chaotique-neutre-cn
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Chaotique Neutre (CN)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: L'alignement dans le multivers
|
||||||
Id: alignment_hd.md#lalignement-dans-le-multivers
|
Id: alignment_hd.md#lalignement-dans-le-multivers
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: L'alignement dans le multivers
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 3
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Loyal Bon (LB)
|
||||||
Id: alignment_hd.md#loyal-bon-lb
|
Id: alignment_hd.md#loyal-bon-lb
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Loyal Bon (LB)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Loyal Mauvais (LM)
|
||||||
Id: alignment_hd.md#loyal-mauvais-lm
|
Id: alignment_hd.md#loyal-mauvais-lm
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Loyal Mauvais (LM)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Loyal Neutre (LN)
|
||||||
Id: alignment_hd.md#loyal-neutre-ln
|
Id: alignment_hd.md#loyal-neutre-ln
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Loyal Neutre (LN)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Neutre Bon (NB)
|
||||||
Id: alignment_hd.md#neutre-bon-nb
|
Id: alignment_hd.md#neutre-bon-nb
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Neutre Bon (NB)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Neutre Mauvais (NM)
|
||||||
Id: alignment_hd.md#neutre-mauvais-nm
|
Id: alignment_hd.md#neutre-mauvais-nm
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Neutre Mauvais (NM)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Neutre (N)
|
||||||
Id: alignment_hd.md#neutre-n
|
Id: alignment_hd.md#neutre-n
|
||||||
ParentLink: alignment_hd.md#alignement
|
ParentLink: alignment_hd.md#alignement
|
||||||
Name: Neutre (N)
|
|
||||||
ParentName: Alignement
|
ParentName: Alignement
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: armor_hd.md#armures-intermédiaires
|
|
||||||
ParentLink: armor_hd.md#armures
|
|
||||||
Name: Armures intermédiaires
|
Name: Armures intermédiaires
|
||||||
ParentName: Armures
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Medium Armor (SRD p63)
|
AltName: Medium Armor (SRD p63)
|
||||||
Source: (MDR p224)
|
Source: (MDR p224)
|
||||||
|
Id: armor_hd.md#armures-intermédiaires
|
||||||
|
ParentLink: armor_hd.md#armures
|
||||||
|
ParentName: Armures
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Armures](hd_armor.md)
|
> [Armures](hd_armor.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: armor_hd.md#armures-légères
|
|
||||||
ParentLink: armor_hd.md#armures
|
|
||||||
Name: Armures légères
|
Name: Armures légères
|
||||||
ParentName: Armures
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Light Armor (SRD p63)
|
AltName: Light Armor (SRD p63)
|
||||||
Source: (MDR p223)
|
Source: (MDR p223)
|
||||||
|
Id: armor_hd.md#armures-légères
|
||||||
|
ParentLink: armor_hd.md#armures
|
||||||
|
ParentName: Armures
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Armures](hd_armor.md)
|
> [Armures](hd_armor.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: armor_hd.md#armures-lourdes
|
|
||||||
ParentLink: armor_hd.md#armures
|
|
||||||
Name: Armures lourdes
|
Name: Armures lourdes
|
||||||
ParentName: Armures
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Heavy Armor (SRD p63)
|
AltName: Heavy Armor (SRD p63)
|
||||||
Source: (MDR p225)
|
Source: (MDR p225)
|
||||||
|
Id: armor_hd.md#armures-lourdes
|
||||||
|
ParentLink: armor_hd.md#armures
|
||||||
|
ParentName: Armures
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Armures](hd_armor.md)
|
> [Armures](hd_armor.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: armor_hd.md#enfiler-et-retirer-une-armure
|
|
||||||
ParentLink: armor_hd.md#armures
|
|
||||||
Name: Enfiler et retirer une armure
|
Name: Enfiler et retirer une armure
|
||||||
ParentName: Armures
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Getting Into and Out of Armor (SRD p64)
|
AltName: Getting Into and Out of Armor (SRD p64)
|
||||||
Source: (MDR p225)
|
Source: (MDR p225)
|
||||||
|
Id: armor_hd.md#enfiler-et-retirer-une-armure
|
||||||
|
ParentLink: armor_hd.md#armures
|
||||||
|
ParentName: Armures
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Armures](hd_armor.md)
|
> [Armures](hd_armor.md)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: ANNEAU DE LUNE
|
||||||
|
Source: (CDC p191)
|
||||||
Id: artifacts_hd.md#anneau-de-lune
|
Id: artifacts_hd.md#anneau-de-lune
|
||||||
ParentLink: artifacts_hd.md#artefacts
|
ParentLink: artifacts_hd.md#artefacts
|
||||||
Name: ANNEAU DE LUNE
|
|
||||||
ParentName: Artefacts
|
ParentName: Artefacts
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (CDC p191)
|
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Artefacts](hd_artifacts.md)
|
> [Artefacts](hd_artifacts.md)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: BOUCLIER DE HROLJNIR
|
||||||
|
Source: (CDC p191)
|
||||||
Id: artifacts_hd.md#bouclier-de-hroljnir
|
Id: artifacts_hd.md#bouclier-de-hroljnir
|
||||||
ParentLink: artifacts_hd.md#artefacts
|
ParentLink: artifacts_hd.md#artefacts
|
||||||
Name: BOUCLIER DE HROLJNIR
|
|
||||||
ParentName: Artefacts
|
ParentName: Artefacts
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (CDC p191)
|
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Artefacts](hd_artifacts.md)
|
> [Artefacts](hd_artifacts.md)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: LYRE DE LA REINE SYLVESTRE
|
||||||
|
Source: (CDC p192)
|
||||||
Id: artifacts_hd.md#lyre-de-la-reine-sylvestre
|
Id: artifacts_hd.md#lyre-de-la-reine-sylvestre
|
||||||
ParentLink: artifacts_hd.md#artefacts
|
ParentLink: artifacts_hd.md#artefacts
|
||||||
Name: LYRE DE LA REINE SYLVESTRE
|
|
||||||
ParentName: Artefacts
|
ParentName: Artefacts
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (CDC p192)
|
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Artefacts](hd_artifacts.md)
|
> [Artefacts](hd_artifacts.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: artifacts_hd.md#orbe-des-dragons
|
|
||||||
ParentLink: artifacts_hd.md#artefacts
|
|
||||||
Name: ORBE DES DRAGONS
|
Name: ORBE DES DRAGONS
|
||||||
ParentName: Artefacts
|
|
||||||
NameLevel: 2
|
|
||||||
AltName: Orb of Dragonkind (SRD p252)
|
AltName: Orb of Dragonkind (SRD p252)
|
||||||
Source: (CDC p192)
|
Source: (CDC p192)
|
||||||
|
Id: artifacts_hd.md#orbe-des-dragons
|
||||||
|
ParentLink: artifacts_hd.md#artefacts
|
||||||
|
ParentName: Artefacts
|
||||||
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Artefacts](hd_artifacts.md)
|
> [Artefacts](hd_artifacts.md)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: PERLE DES PROFONDEURS
|
||||||
|
Source: (CDC p193)
|
||||||
Id: artifacts_hd.md#perle-des-profondeurs
|
Id: artifacts_hd.md#perle-des-profondeurs
|
||||||
ParentLink: artifacts_hd.md#artefacts
|
ParentLink: artifacts_hd.md#artefacts
|
||||||
Name: PERLE DES PROFONDEURS
|
|
||||||
ParentName: Artefacts
|
ParentName: Artefacts
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Source: (CDC p193)
|
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Artefacts](hd_artifacts.md)
|
> [Artefacts](hd_artifacts.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: backgrounds_hd.md#Équipement
|
|
||||||
ParentLink: backgrounds_hd.md#historique
|
|
||||||
Name: Équipement
|
Name: Équipement
|
||||||
ParentName: Historique
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Equipment (SRD p60)
|
AltName: Equipment (SRD p60)
|
||||||
Source: (MDR p77)
|
Source: (MDR p77)
|
||||||
|
Id: backgrounds_hd.md#Équipement
|
||||||
|
ParentLink: backgrounds_hd.md#historique
|
||||||
|
ParentName: Historique
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Historique](hd_backgrounds.md)
|
> [Historique](hd_backgrounds.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: backgrounds_hd.md#langues
|
|
||||||
ParentLink: backgrounds_hd.md#historique
|
|
||||||
Name: Langues
|
Name: Langues
|
||||||
ParentName: Historique
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Languages (SRD p60)
|
AltName: Languages (SRD p60)
|
||||||
Source: (MDR p77)
|
Source: (MDR p77)
|
||||||
|
Id: backgrounds_hd.md#langues
|
||||||
|
ParentLink: backgrounds_hd.md#historique
|
||||||
|
ParentName: Historique
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Historique](hd_backgrounds.md)
|
> [Historique](hd_backgrounds.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: backgrounds_hd.md#maîtrises
|
|
||||||
ParentLink: backgrounds_hd.md#historique
|
|
||||||
Name: Maîtrises
|
Name: Maîtrises
|
||||||
ParentName: Historique
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Proficiencies (SRD p60)
|
AltName: Proficiencies (SRD p60)
|
||||||
Source: (MDR p77)
|
Source: (MDR p77)
|
||||||
|
Id: backgrounds_hd.md#maîtrises
|
||||||
|
ParentLink: backgrounds_hd.md#historique
|
||||||
|
ParentName: Historique
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Historique](hd_backgrounds.md)
|
> [Historique](hd_backgrounds.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: backgrounds_hd.md#personnaliser-votre-historique
|
|
||||||
ParentLink: backgrounds_hd.md#historique
|
|
||||||
Name: Personnaliser votre historique
|
Name: Personnaliser votre historique
|
||||||
ParentName: Historique
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Customizing a Background (SRD p60)
|
AltName: Customizing a Background (SRD p60)
|
||||||
Source: (MDR p78)
|
Source: (MDR p78)
|
||||||
|
Id: backgrounds_hd.md#personnaliser-votre-historique
|
||||||
|
ParentLink: backgrounds_hd.md#historique
|
||||||
|
ParentName: Historique
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Historique](hd_backgrounds.md)
|
> [Historique](hd_backgrounds.md)
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
Id: backgrounds_hd.md#suggestions-de-personnalités
|
|
||||||
ParentLink: backgrounds_hd.md#historique
|
|
||||||
Name: Suggestions de personnalités
|
Name: Suggestions de personnalités
|
||||||
ParentName: Historique
|
|
||||||
NameLevel: 3
|
|
||||||
AltName: Suggested Characteristics (SRD p60)
|
AltName: Suggested Characteristics (SRD p60)
|
||||||
Source: (MDR p77)
|
Source: (MDR p77)
|
||||||
|
Id: backgrounds_hd.md#suggestions-de-personnalités
|
||||||
|
ParentLink: backgrounds_hd.md#historique
|
||||||
|
ParentName: Historique
|
||||||
|
NameLevel: 3
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Historique](hd_backgrounds.md)
|
> [Historique](hd_backgrounds.md)
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Amélioration de caractéristiques
|
||||||
Id: barbarian_hd.md#amélioration-de-caractéristiques
|
Id: barbarian_hd.md#amélioration-de-caractéristiques
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Amélioration de caractéristiques
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Attaque supplémentaire
|
||||||
Id: barbarian_hd.md#attaque-supplémentaire
|
Id: barbarian_hd.md#attaque-supplémentaire
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Attaque supplémentaire
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
|
Name: Voie du berserker
|
||||||
|
Source: (MDR p116)
|
||||||
|
AltName: Wisdom (SRD p9)
|
||||||
ParentClassId: hd_barbarian.md
|
ParentClassId: hd_barbarian.md
|
||||||
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)
|
|
||||||
Source: (MDR p116)
|
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
---
|
---
|
||||||
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
> [Voies primitives](hd_barbarian_voies_primitives.md)
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Frénésie
|
||||||
Id: barbarian_berserker_hd.md#frénésie
|
Id: barbarian_berserker_hd.md#frénésie
|
||||||
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
|
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
|
||||||
Name: Frénésie
|
|
||||||
ParentName: Voie du berserker
|
ParentName: Voie du berserker
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Rage aveugle
|
||||||
Id: barbarian_berserker_hd.md#rage-aveugle
|
Id: barbarian_berserker_hd.md#rage-aveugle
|
||||||
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
|
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
|
||||||
Name: Rage aveugle
|
|
||||||
ParentName: Voie du berserker
|
ParentName: Voie du berserker
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Représailles
|
||||||
Id: barbarian_berserker_hd.md#représailles
|
Id: barbarian_berserker_hd.md#représailles
|
||||||
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
|
ParentLink: barbarian_berserker_hd.md#voie-du-berserker
|
||||||
Name: Représailles
|
|
||||||
ParentName: Voie du berserker
|
ParentName: Voie du berserker
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Champion primitif
|
||||||
Id: barbarian_hd.md#champion-primitif
|
Id: barbarian_hd.md#champion-primitif
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Champion primitif
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Critique brutal
|
||||||
Id: barbarian_hd.md#critique-brutal
|
Id: barbarian_hd.md#critique-brutal
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Critique brutal
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Défense sans armure
|
||||||
Id: barbarian_hd.md#défense-sans-armure
|
Id: barbarian_hd.md#défense-sans-armure
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Défense sans armure
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Déplacement rapide
|
||||||
Id: barbarian_hd.md#déplacement-rapide
|
Id: barbarian_hd.md#déplacement-rapide
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Déplacement rapide
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!SubClassItem
|
!SubClassItem
|
||||||
|
Name: Voie du hurlement
|
||||||
|
Source: (MDR p118)
|
||||||
ParentClassId: hd_barbarian.md
|
ParentClassId: hd_barbarian.md
|
||||||
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,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Cri sauvage
|
||||||
Id: barbarian_howling_hd.md#cri-sauvage
|
Id: barbarian_howling_hd.md#cri-sauvage
|
||||||
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
||||||
Name: Cri sauvage
|
|
||||||
ParentName: Voie du hurlement
|
ParentName: Voie du hurlement
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Hurlement du tonnerre
|
||||||
Id: barbarian_howling_hd.md#hurlement-du-tonnerre
|
Id: barbarian_howling_hd.md#hurlement-du-tonnerre
|
||||||
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
||||||
Name: Hurlement du tonnerre
|
|
||||||
ParentName: Voie du hurlement
|
ParentName: Voie du hurlement
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Hurlement terrifiant
|
||||||
Id: barbarian_howling_hd.md#hurlement-terrifiant
|
Id: barbarian_howling_hd.md#hurlement-terrifiant
|
||||||
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
||||||
Name: Hurlement terrifiant
|
|
||||||
ParentName: Voie du hurlement
|
ParentName: Voie du hurlement
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Intimidant
|
||||||
Id: barbarian_howling_hd.md#intimidant
|
Id: barbarian_howling_hd.md#intimidant
|
||||||
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
||||||
Name: Intimidant
|
|
||||||
ParentName: Voie du hurlement
|
ParentName: Voie du hurlement
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!GenericItem
|
!GenericItem
|
||||||
|
Name: Scarification rituelle
|
||||||
Id: barbarian_howling_hd.md#scarification-rituelle
|
Id: barbarian_howling_hd.md#scarification-rituelle
|
||||||
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
ParentLink: barbarian_howling_hd.md#voie-du-hurlement
|
||||||
Name: Scarification rituelle
|
|
||||||
ParentName: Voie du hurlement
|
ParentName: Voie du hurlement
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Instinct sauvage
|
||||||
Id: barbarian_hd.md#instinct-sauvage
|
Id: barbarian_hd.md#instinct-sauvage
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Instinct sauvage
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Puissance indomptable
|
||||||
Id: barbarian_hd.md#puissance-indomptable
|
Id: barbarian_hd.md#puissance-indomptable
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Puissance indomptable
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!ClassFeatureItem
|
!ClassFeatureItem
|
||||||
|
Name: Rage
|
||||||
Id: barbarian_hd.md#rage
|
Id: barbarian_hd.md#rage
|
||||||
ParentLink: barbarian_hd.md#barbare
|
ParentLink: barbarian_hd.md#barbare
|
||||||
Name: Rage
|
|
||||||
ParentName: Barbare
|
ParentName: Barbare
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
Attributes: {}
|
Attributes: {}
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue