mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 06:56:10 +00:00
Classe
This commit is contained in:
parent
9bdd734df3
commit
fba536500f
1659 changed files with 7951 additions and 7153 deletions
|
|
@ -6,27 +6,37 @@ namespace AideDeJeuLib
|
||||||
public class ClassEvolutionItem : Item
|
public class ClassEvolutionItem : Item
|
||||||
{
|
{
|
||||||
public string Table { get; set; }
|
public string Table { get; set; }
|
||||||
public List<string> BindableTable
|
public string[,] BindableTable
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return ExtractSimpleTable(Table);
|
return ExtractSimpleTable(Table);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public List<string> ExtractSimpleTable(string table)
|
public string[,] ExtractSimpleTable(string table)
|
||||||
{
|
{
|
||||||
var lines = table.Split('\n');
|
var rows = table.Split('\n');
|
||||||
var result = new List<string>();
|
var countRows = rows.Count(r => r.StartsWith("|"));
|
||||||
foreach (var line in lines.Skip(2))
|
var countCols = rows.FirstOrDefault().Count(c => c == '|') - 1;
|
||||||
|
var matrix = new string[countCols, countRows];
|
||||||
|
var y = 0;
|
||||||
|
foreach (var row in rows)
|
||||||
{
|
{
|
||||||
if (line.StartsWith("|"))
|
var x = 0;
|
||||||
|
if (row.StartsWith("|"))
|
||||||
{
|
{
|
||||||
var cols = line.Split('|');
|
var allcols = row.Split('|');
|
||||||
var text = cols[2].Replace("<!--br-->", " ").Replace(" ", " ");
|
var cols = allcols.Skip(1).Take(allcols.Length - 2);
|
||||||
result.Add(text);
|
foreach (var col in cols)
|
||||||
|
{
|
||||||
|
var text = col.Replace("<!--br-->", " ").Replace(" ", " ");
|
||||||
|
matrix[x, y] = text;
|
||||||
|
x++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
y++;
|
||||||
}
|
}
|
||||||
return result;
|
return matrix;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,21 +33,46 @@ namespace AideDeJeu.ViewModels.PlayerCharacter
|
||||||
public string Description { get { return Class?.Description; } }
|
public string Description { get { return Class?.Description; } }
|
||||||
public string Markdown { get { return Class?.Markdown; } }
|
public string Markdown { get { return Class?.Markdown; } }
|
||||||
|
|
||||||
|
private List<ClassFeatureItem> _LeveledFeatures = null;
|
||||||
public List<ClassFeatureItem> LeveledFeatures
|
public List<ClassFeatureItem> LeveledFeatures
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
var table = Evolution.ExtractSimpleTable(Evolution.Table);
|
return _LeveledFeatures;
|
||||||
var feats = table[1];
|
}
|
||||||
var leveledFeats = new List<ClassFeatureItem>();
|
set
|
||||||
foreach(var feature in Features)
|
{
|
||||||
|
SetProperty(ref _LeveledFeatures, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public int ColumnIndex(string[,] table, string columnName)
|
||||||
|
{
|
||||||
|
for (var c = 0; c < table.GetLength(0); c++)
|
||||||
|
{
|
||||||
|
if(table[c, 0] == columnName)
|
||||||
{
|
{
|
||||||
if(feats.Contains(feature.Name))
|
return c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
public void InitLeveledFeatures()
|
||||||
|
{
|
||||||
|
if (Evolution != null)
|
||||||
|
{
|
||||||
|
var table = Evolution.ExtractSimpleTable(Evolution.Table);
|
||||||
|
|
||||||
|
var feats = table[ColumnIndex(table, "Aptitudes"), 2];
|
||||||
|
var leveledFeats = new List<ClassFeatureItem>();
|
||||||
|
foreach (var feature in Features)
|
||||||
|
{
|
||||||
|
if (feats.Contains(feature.Id))
|
||||||
{
|
{
|
||||||
leveledFeats.Add(feature);
|
leveledFeats.Add(feature);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return leveledFeats;
|
LeveledFeatures = leveledFeats;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -60,6 +85,7 @@ namespace AideDeJeu.ViewModels.PlayerCharacter
|
||||||
Equipment = await context.ClassEquipments.Where(c => c.ParentLink == Class.Id).FirstOrDefaultAsync();
|
Equipment = await context.ClassEquipments.Where(c => c.ParentLink == Class.Id).FirstOrDefaultAsync();
|
||||||
Evolution = await context.ClassEvolutions.Where(c => c.ParentLink == Class.Id).FirstOrDefaultAsync();
|
Evolution = await context.ClassEvolutions.Where(c => c.ParentLink == Class.Id).FirstOrDefaultAsync();
|
||||||
Features = await context.ClassFeatures.Where(c => c.ParentLink == Class.Id).ToListAsync();
|
Features = await context.ClassFeatures.Where(c => c.ParentLink == Class.Id).ToListAsync();
|
||||||
|
InitLeveledFeatures();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -213,6 +213,49 @@ namespace AideDeJeu.ViewModels
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class Matrix
|
||||||
|
{
|
||||||
|
private Dictionary<string, Object> Data = new Dictionary<string, object>();
|
||||||
|
public object this[int x, int y]
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
string key = this.GetKey(x, y);
|
||||||
|
return Data.ContainsKey(key) ? Data[key] : null;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
string key = this.GetKey(x, y);
|
||||||
|
if (value == null)
|
||||||
|
Data.Remove(key);
|
||||||
|
else
|
||||||
|
Data[key] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private string GetKey(int x, int y)
|
||||||
|
{
|
||||||
|
return String.Join(",", new[] { x, y });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public void ParseItemProperties(string source, Item item, Markdig.Extensions.Tables.Table table)
|
||||||
|
{
|
||||||
|
Markdig.Extensions.Tables.TableRow firstRow = table.FirstOrDefault() as Markdig.Extensions.Tables.TableRow;
|
||||||
|
var matrix = new string[firstRow.Count, table.Count];
|
||||||
|
int y = 0;
|
||||||
|
foreach (Markdig.Extensions.Tables.TableRow row in table)
|
||||||
|
{
|
||||||
|
int x = 0;
|
||||||
|
foreach (Markdig.Extensions.Tables.TableCell col in row)
|
||||||
|
{
|
||||||
|
ParseItemProperties(source, item, col);
|
||||||
|
matrix[x, y] = col.ToMarkdownString();
|
||||||
|
x++;
|
||||||
|
}
|
||||||
|
y++;
|
||||||
|
}
|
||||||
|
Debug.WriteLine(matrix);
|
||||||
|
}
|
||||||
|
|
||||||
public void ParseItemProperties(string source, Item item, ContainerBlock blocks)
|
public void ParseItemProperties(string source, Item item, ContainerBlock blocks)
|
||||||
{
|
{
|
||||||
foreach (var block in blocks)
|
foreach (var block in blocks)
|
||||||
|
|
|
||||||
|
|
@ -85,9 +85,22 @@
|
||||||
<views:ItemView BindingContext="{Binding}" Name="#### Jets de sauvegarde" Description="{Binding SelectedPlayerCharacter.Class.Proficiencies.SavingThrows}" />
|
<views:ItemView BindingContext="{Binding}" Name="#### Jets de sauvegarde" Description="{Binding SelectedPlayerCharacter.Class.Proficiencies.SavingThrows}" />
|
||||||
<views:ItemView BindingContext="{Binding}" Name="#### Compétences" Description="{Binding SelectedPlayerCharacter.Class.Proficiencies.Skills}" />
|
<views:ItemView BindingContext="{Binding}" Name="#### Compétences" Description="{Binding SelectedPlayerCharacter.Class.Proficiencies.Skills}" />
|
||||||
|
|
||||||
|
<views:ItemView BindingContext="{Binding}" Name="#### Équipement" Description="{Binding SelectedPlayerCharacter.Class.Equipment.Description}" />
|
||||||
|
|
||||||
|
<StackLayout BindableLayout.ItemsSource="{Binding SelectedPlayerCharacter.Class.LeveledFeatures}">
|
||||||
|
<BindableLayout.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
<StackLayout>
|
||||||
|
<views:ItemView BindingContext="{Binding}" Name="{Binding Name, StringFormat='#### {0}'}" Description="{Binding Description}" />
|
||||||
|
</StackLayout>
|
||||||
|
</DataTemplate>
|
||||||
|
</BindableLayout.ItemTemplate>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
</Frame>
|
</Frame>
|
||||||
<mdview:MarkdownView Theme="{StaticResource MonsterMarkdownTheme}" Markdown="{Binding SelectedPlayerCharacter.Class.Markdown}" />
|
|
||||||
|
<!--<mdview:MarkdownView Theme="{StaticResource MonsterMarkdownTheme}" Markdown="{Binding SelectedPlayerCharacter.Class.Markdown}" />-->
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
</ContentPage>
|
</ContentPage>
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,13 @@
|
||||||
FullName: Aasimar
|
FullName: Aasimar
|
||||||
WisdomBonus: 1
|
WisdomBonus: 1
|
||||||
CharismaBonus: 2
|
CharismaBonus: 2
|
||||||
|
AbilityScoreIncrease: Votre valeur de [Charisme](hd_abilities_charisma.md) augmente de 2 et votre valeur de [Sagesse](hd_abilities_wisdom.md) de 1.
|
||||||
Age: Les aasimars vieillissent à un rythme comparable à celui des humains. Leur espérance de vie est cependant supérieure, et ils peuvent dépasser les 120 ans.
|
Age: Les aasimars vieillissent à un rythme comparable à celui des humains. Leur espérance de vie est cependant supérieure, et ils peuvent dépasser les 120 ans.
|
||||||
Alignment: L'ascendance céleste des aasimars influe souvent sur leur alignement. Les alignements Loyal et Bon sont communs chez eux. Cependant, il n'est pas rare que certains se rebellent contre leur propre nature et tendent vers un alignement Chaotique.
|
Alignment: L'ascendance céleste des aasimars influe souvent sur leur alignement. Les alignements Loyal et Bon sont communs chez eux. Cependant, il n'est pas rare que certains se rebellent contre leur propre nature et tendent vers un alignement Chaotique.
|
||||||
Size: Les aasimars sont d'une taille et d'une corpulence comparable aux humains. Ils sont de taille moyenne.
|
Size: Les aasimars sont d'une taille et d'une corpulence comparable aux humains. Ils sont de taille moyenne.
|
||||||
Speed: Votre vitesse au sol de base est de 9 mètres.
|
Speed: Votre vitesse au sol de base est de 9 mètres.
|
||||||
Darkvision: Grâce à votre ascendance céleste, vous avez hérité d'une vision supérieure dans l'obscurité et dans la lumière faible. Dans un rayon de 18 mètres, vous pouvez voir dans une zone de lumière faible comme s'il s'agissait d'une lumière vive et dans l'obscurité comme s'il s'agissait d'une lumière faible. Par contre, vous ne distinguez pas les couleurs dans l'obscurité, seulement des nuances de gris.
|
Darkvision: Grâce à votre ascendance céleste, vous avez hérité d'une vision supérieure dans l'obscurité et dans la lumière faible. Dans un rayon de 18 mètres, vous pouvez voir dans une zone de lumière faible comme s'il s'agissait d'une lumière vive et dans l'obscurité comme s'il s'agissait d'une lumière faible. Par contre, vous ne distinguez pas les couleurs dans l'obscurité, seulement des nuances de gris.
|
||||||
Languages: Vous pouvez lire, écrire et parler le commun, ainsi que le céleste.
|
Languages: Vous pouvez lire, écrire et parler le commun, ainsi que le céleste.
|
||||||
AbilityScoreIncrease: Votre valeur de [Charisme](hd_abilities_charisma.md) augmente de 2 et votre valeur de [Sagesse](hd_abilities_wisdom.md) de 1.
|
|
||||||
Id: aasimar_hd.md#aasimar
|
Id: aasimar_hd.md#aasimar
|
||||||
RootId: aasimar_hd.md
|
RootId: aasimar_hd.md
|
||||||
ParentLink: races_hd.md#races
|
ParentLink: races_hd.md#races
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Utiliser les caractéristiques
|
||||||
|
AltName: Using Ability Scores (SRD p76)
|
||||||
|
Source: (MDR p258)
|
||||||
Id: abilities_hd.md#utiliser-les-caractéristiques
|
Id: abilities_hd.md#utiliser-les-caractéristiques
|
||||||
RootId: abilities_hd.md
|
RootId: abilities_hd.md
|
||||||
ParentLink: index.md
|
ParentLink: index.md
|
||||||
Name: Utiliser les caractéristiques
|
|
||||||
ParentName: Manuel des règles
|
ParentName: Manuel des règles
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Using Ability Scores (SRD p76)
|
|
||||||
Source: (MDR p258)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Manuel des règles](index.md)'
|
ParentNameLink: '[Manuel des règles](index.md)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Charisme
|
||||||
|
AltName: Charisma (SRD p82)
|
||||||
|
Source: (MDR p265)
|
||||||
Id: abilities_charisma_hd.md#charisme
|
Id: abilities_charisma_hd.md#charisme
|
||||||
RootId: abilities_charisma_hd.md
|
RootId: abilities_charisma_hd.md
|
||||||
ParentLink: abilities_hd.md
|
ParentLink: abilities_hd.md
|
||||||
Name: Charisme
|
|
||||||
ParentName: Caractéristiques
|
ParentName: Caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Charisma (SRD p82)
|
|
||||||
Source: (MDR p265)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Caractéristiques](hd_abilities.md)'
|
ParentNameLink: '[Caractéristiques](hd_abilities.md)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Dextérité
|
||||||
|
AltName: Dexterity (SRD p80)
|
||||||
|
Source: (MDR p263)
|
||||||
Id: abilities_dexterity_hd.md#dextérité
|
Id: abilities_dexterity_hd.md#dextérité
|
||||||
RootId: abilities_dexterity_hd.md
|
RootId: abilities_dexterity_hd.md
|
||||||
ParentLink: abilities_hd.md
|
ParentLink: abilities_hd.md
|
||||||
Name: Dextérité
|
|
||||||
ParentName: Caractéristiques
|
ParentName: Caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Dexterity (SRD p80)
|
|
||||||
Source: (MDR p263)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Caractéristiques](hd_abilities.md)'
|
ParentNameLink: '[Caractéristiques](hd_abilities.md)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Force
|
||||||
|
AltName: Strength (SRD p79)
|
||||||
|
Source: (MDR p262)
|
||||||
Id: abilities_strength_hd.md#force
|
Id: abilities_strength_hd.md#force
|
||||||
RootId: abilities_strength_hd.md
|
RootId: abilities_strength_hd.md
|
||||||
ParentLink: abilities_hd.md
|
ParentLink: abilities_hd.md
|
||||||
Name: Force
|
|
||||||
ParentName: Caractéristiques
|
ParentName: Caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Strength (SRD p79)
|
|
||||||
Source: (MDR p262)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Caractéristiques](hd_abilities.md)'
|
ParentNameLink: '[Caractéristiques](hd_abilities.md)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Sagesse
|
||||||
|
AltName: Wisdom (SRD p82)
|
||||||
|
Source: (MDR p265)
|
||||||
Id: abilities_wisdom_hd.md#sagesse
|
Id: abilities_wisdom_hd.md#sagesse
|
||||||
RootId: abilities_wisdom_hd.md
|
RootId: abilities_wisdom_hd.md
|
||||||
ParentLink: abilities_hd.md
|
ParentLink: abilities_hd.md
|
||||||
Name: Sagesse
|
|
||||||
ParentName: Caractéristiques
|
ParentName: Caractéristiques
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Wisdom (SRD p82)
|
|
||||||
Source: (MDR p265)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Caractéristiques](hd_abilities.md)'
|
ParentNameLink: '[Caractéristiques](hd_abilities.md)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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,9 +1,9 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Partir à l'aventure
|
||||||
Id: adventure_hd.md#partir-à-laventure
|
Id: adventure_hd.md#partir-à-laventure
|
||||||
RootId: adventure_hd.md
|
RootId: adventure_hd.md
|
||||||
ParentLink: index.md
|
ParentLink: index.md
|
||||||
Name: Partir à l'aventure
|
|
||||||
ParentName: Manuel des règles
|
ParentName: Manuel des règles
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Alignement
|
||||||
|
AltName: Alignment (SRD p58)
|
||||||
|
Source: (MDR p75)
|
||||||
Id: alignment_hd.md#alignement
|
Id: alignment_hd.md#alignement
|
||||||
RootId: alignment_hd.md
|
RootId: alignment_hd.md
|
||||||
ParentLink: personnality_background_hd.md#
|
ParentLink: personnality_background_hd.md#
|
||||||
Name: Alignement
|
|
||||||
ParentName: Personnalité et Historique
|
ParentName: Personnalité et Historique
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Alignment (SRD p58)
|
|
||||||
Source: (MDR p75)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Personnalité et Historique](personnality_background_hd.md#)'
|
ParentNameLink: '[Personnalité et Historique](personnality_background_hd.md#)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Armures
|
||||||
|
AltName: Armor (SRD p62)
|
||||||
|
Source: (MDR p223)
|
||||||
Id: armor_hd.md#armures
|
Id: armor_hd.md#armures
|
||||||
RootId: armor_hd.md
|
RootId: armor_hd.md
|
||||||
ParentLink: equipment_hd.md
|
ParentLink: equipment_hd.md
|
||||||
Name: Armures
|
|
||||||
ParentName: Équipement
|
ParentName: Équipement
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Armor (SRD p62)
|
|
||||||
Source: (MDR p223)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Équipement](hd_equipment.md)'
|
ParentNameLink: '[Équipement](hd_equipment.md)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: Armures intermédiaires
|
Name: Armures intermédiaires
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: Armures légères
|
Name: Armures légères
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: Armures lourdes
|
Name: Armures lourdes
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: Enfiler et retirer une armure
|
Name: Enfiler et retirer une armure
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Artefacts
|
||||||
|
AltName: Artifacts (SRD p252)
|
||||||
|
Source: (CDC p191)
|
||||||
Id: artifacts_hd.md#artefacts
|
Id: artifacts_hd.md#artefacts
|
||||||
RootId: artifacts_hd.md
|
RootId: artifacts_hd.md
|
||||||
ParentLink: index.md
|
ParentLink: index.md
|
||||||
Name: Artefacts
|
|
||||||
ParentName: Cadre de campagne
|
ParentName: Cadre de campagne
|
||||||
NameLevel: 1
|
NameLevel: 1
|
||||||
AltName: Artifacts (SRD p252)
|
|
||||||
Source: (CDC p191)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Cadre de campagne](index.md)'
|
ParentNameLink: '[Cadre de campagne](index.md)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: ANNEAU DE LUNE
|
Name: ANNEAU DE LUNE
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: BOUCLIER DE HROLJNIR
|
Name: BOUCLIER DE HROLJNIR
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: LYRE DE LA REINE SYLVESTRE
|
Name: LYRE DE LA REINE SYLVESTRE
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: ORBE DES DRAGONS
|
Name: ORBE DES DRAGONS
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: PERLE DES PROFONDEURS
|
Name: PERLE DES PROFONDEURS
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_brigand_hd.md#personnalités-suggérées
|
Id: background_brigand_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_brigand_hd.md#brigand
|
ParentLink: background_brigand_hd.md#brigand
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Brigand
|
ParentName: Brigand
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_crapule_hd.md#personnalités-suggérées
|
Id: background_crapule_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_crapule_hd.md#crapule
|
ParentLink: background_crapule_hd.md#crapule
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Crapule
|
ParentName: Crapule
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
Id: background_devot_hd.md#personnalités-suggérées
|
|
||||||
ParentLink: background_devot_hd.md#dévot
|
|
||||||
Name: Personnalités suggérées
|
Name: Personnalités suggérées
|
||||||
ParentName: Dévot
|
|
||||||
NameLevel: 4
|
|
||||||
AltName: 'Feature: Suggested Characteristics (SRD p61)'
|
AltName: 'Feature: Suggested Characteristics (SRD p61)'
|
||||||
Source: (MDR p82)
|
Source: (MDR p82)
|
||||||
|
Id: background_devot_hd.md#personnalités-suggérées
|
||||||
|
ParentLink: background_devot_hd.md#dévot
|
||||||
|
ParentName: Dévot
|
||||||
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
Name: Personnalités suggérées
|
Name: Personnalités suggérées
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_erudit_hd.md#personnalités-suggérées
|
Id: background_erudit_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_erudit_hd.md#Érudit
|
ParentLink: background_erudit_hd.md#Érudit
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Érudit
|
ParentName: Érudit
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_explorateur_hd.md#personnalités-suggérées
|
Id: background_explorateur_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_explorateur_hd.md#explorateur
|
ParentLink: background_explorateur_hd.md#explorateur
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Explorateur
|
ParentName: Explorateur
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_hommedeloi_hd.md#personnalités-suggérées
|
Id: background_hommedeloi_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_hommedeloi_hd.md#homme-de-loi
|
ParentLink: background_hommedeloi_hd.md#homme-de-loi
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Homme de loi
|
ParentName: Homme de loi
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_itinerant_hd.md#personnalités-suggérées
|
Id: background_itinerant_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_itinerant_hd.md#itinérant
|
ParentLink: background_itinerant_hd.md#itinérant
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Itinérant
|
ParentName: Itinérant
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_manouvrier_hd.md#personnalités-suggérées
|
Id: background_manouvrier_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_manouvrier_hd.md#manouvrier
|
ParentLink: background_manouvrier_hd.md#manouvrier
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Manouvrier
|
ParentName: Manouvrier
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_membredeguilde_hd.md#personnalités-suggérées
|
Id: background_membredeguilde_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_membredeguilde_hd.md#membre-de-guilde
|
ParentLink: background_membredeguilde_hd.md#membre-de-guilde
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Membre de guilde
|
ParentName: Membre de guilde
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_militaire_hd.md#personnalités-suggérées
|
Id: background_militaire_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_militaire_hd.md#militaire
|
ParentLink: background_militaire_hd.md#militaire
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Militaire
|
ParentName: Militaire
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_misereux_hd.md#personnalités-suggérées
|
Id: background_misereux_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_misereux_hd.md#miséreux
|
ParentLink: background_misereux_hd.md#miséreux
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Miséreux
|
ParentName: Miséreux
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_primitif_hd.md#personnalités-suggérées
|
Id: background_primitif_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_primitif_hd.md#primitif
|
ParentLink: background_primitif_hd.md#primitif
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Primitif
|
ParentName: Primitif
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_sangbleu_hd.md#personnalités-suggérées
|
Id: background_sangbleu_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_sangbleu_hd.md#sang-bleu
|
ParentLink: background_sangbleu_hd.md#sang-bleu
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Sang bleu
|
ParentName: Sang bleu
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_serviteur_hd.md#personnalités-suggérées
|
Id: background_serviteur_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_serviteur_hd.md#serviteur
|
ParentLink: background_serviteur_hd.md#serviteur
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Serviteur
|
ParentName: Serviteur
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_solitaire_hd.md#personnalités-suggérées
|
Id: background_solitaire_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_solitaire_hd.md#solitaire
|
ParentLink: background_solitaire_hd.md#solitaire
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Solitaire
|
ParentName: Solitaire
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Personnalités suggérées
|
||||||
Id: background_villageois_hd.md#personnalités-suggérées
|
Id: background_villageois_hd.md#personnalités-suggérées
|
||||||
ParentLink: background_villageois_hd.md#villageois
|
ParentLink: background_villageois_hd.md#villageois
|
||||||
Name: Personnalités suggérées
|
|
||||||
ParentName: Villageois
|
ParentName: Villageois
|
||||||
NameLevel: 4
|
NameLevel: 4
|
||||||
Attributes:
|
Attributes:
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
!Items
|
!Items
|
||||||
|
Name: Historique
|
||||||
|
AltName: Backgrounds (SRD p60)
|
||||||
|
Source: (MDR p77)
|
||||||
Id: backgrounds_hd.md#historique
|
Id: backgrounds_hd.md#historique
|
||||||
RootId: backgrounds_hd.md
|
RootId: backgrounds_hd.md
|
||||||
ParentLink: personnality_background_hd.md#
|
ParentLink: personnality_background_hd.md#
|
||||||
Name: Historique
|
|
||||||
ParentName: Personnalité et Historique
|
ParentName: Personnalité et Historique
|
||||||
NameLevel: 2
|
NameLevel: 2
|
||||||
AltName: Backgrounds (SRD p60)
|
|
||||||
Source: (MDR p77)
|
|
||||||
Attributes:
|
Attributes:
|
||||||
ParentNameLink: '[Personnalité et Historique](personnality_background_hd.md#)'
|
ParentNameLink: '[Personnalité et Historique](personnality_background_hd.md#)'
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: Équipement
|
Name: Équipement
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: Langues
|
Name: Langues
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
Name: Maîtrises
|
Name: Maîtrises
|
||||||
Markdown: >+
|
Markdown: >+
|
||||||
|
|
|
||||||
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