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

Properties imbriquées

This commit is contained in:
Yan Maniez 2019-04-09 12:35:03 +02:00
parent 1cc172d0f3
commit 471d4c1636
698 changed files with 5552 additions and 5533 deletions

View file

@ -55,7 +55,10 @@ namespace AideDeJeu.ViewModels
public Item ParseItem(string source, ref ContainerBlock.Enumerator enumerator, Dictionary<string, Item> allItems)
{
var currentItem = GetNewItem(enumerator.Current);
currentItem.Markdown = string.Empty;
PropertyInfo currentProp = null;
Dictionary<string, PropertyInfo> currentProps = new Dictionary<string, PropertyInfo>();
currentProps["Markdown"] = currentItem.GetType().GetProperty("Markdown", BindingFlags.Public | BindingFlags.Instance);
if (currentItem != null)
{
@ -134,46 +137,50 @@ namespace AideDeJeu.ViewModels
{
prop.SetValue(currentItem, "", null);
currentProp = prop;
currentProps[parsedComment.Name] = prop;
}
enumerator.MoveNext();
}
else
{
currentProp = null;
currentProps.Remove(parsedComment.Name);
enumerator.MoveNext();
}
}
else // comment html différent de item et property
{
var md = enumerator.Current.ToMarkdownString();
currentItem.Markdown += md;
if (currentProp != null)
{
currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null);
}
AddBlockContent(currentItem, currentProps, enumerator.Current);
//currentItem.Markdown += md;
//if (currentProp != null)
//{
// currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null);
//}
enumerator.MoveNext();
}
}
else // autre chose qu'un comment html
{
var md = enumerator.Current.ToMarkdownString();
currentItem.Markdown += md;
if (currentProp != null)
{
currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null);
}
AddBlockContent(currentItem, currentProps, enumerator.Current);
//var md = enumerator.Current.ToMarkdownString();
//currentItem.Markdown += md;
//if (currentProp != null)
//{
// currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null);
//}
enumerator.MoveNext();
}
}
else // autre chose qu'un block html
{
ParseItemProperties(source, currentItem, block);
var md = enumerator.Current.ToMarkdownString();
currentItem.Markdown += md;
if (currentProp != null)
{
currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null);
}
AddBlockContent(currentItem, currentProps, enumerator.Current);
//var md = enumerator.Current.ToMarkdownString();
//currentItem.Markdown += md;
//if (currentProp != null)
//{
// currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null);
//}
enumerator.MoveNext();
}
}
@ -187,6 +194,17 @@ namespace AideDeJeu.ViewModels
return currentItem;
}
void AddBlockContent(Item currentItem, Dictionary<string, PropertyInfo> props, Block block)
{
var md = block.ToMarkdownString();
foreach (var propkv in props)
{
var prop = propkv.Value;
prop.SetValue(currentItem, prop.GetValue(currentItem) + md, null);
}
}
public bool ParseItemProperties(string source, Item item, Block block)
{
switch (block)

View file

@ -57,6 +57,7 @@
<ScrollView Orientation="Vertical">
<StackLayout>
<mdview:MarkdownView Markdown="{Binding SelectedPlayerCharacter.Background.Description}" />
<mdview:MarkdownView Markdown="{Binding SelectedPlayerCharacter.SubBackground.Description}" />
<mdview:MarkdownView Markdown="{Binding SelectedPlayerCharacter.Background.Markdown}" />
<mdview:MarkdownView Markdown="{Binding SelectedPlayerCharacter.SubBackground.Markdown}" />
</StackLayout>

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Barbare
AltName: Barbarian (SRD p8)
Source: (MDR p114)
Id: barbarian_hd.md#barbare
RootId: barbarian_hd.md
ParentLink: classes_hd.md
Name: Barbare
ParentName: Classes
NameLevel: 1
AltName: Barbarian (SRD p8)
Source: (MDR p114)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Barde
AltName: Bard (SRD p11)
Source: (MDR p121)
Id: bard_hd.md#barde
RootId: bard_hd.md
ParentLink: classes_hd.md
Name: Barde
ParentName: Classes
NameLevel: 1
AltName: Bard (SRD p11)
Source: (MDR p121)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Clerc
AltName: Cleric (SRD p15)
Source: (MDR p129)
Id: cleric_hd.md#clerc
RootId: cleric_hd.md
ParentLink: classes_hd.md
Name: Clerc
ParentName: Classes
NameLevel: 1
AltName: Cleric (SRD p15)
Source: (MDR p129)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Druide
AltName: Druid (SRD p17)
Source: (MDR p142)
Id: druid_hd.md#druide
RootId: druid_hd.md
ParentLink: classes_hd.md
Name: Druide
ParentName: Classes
NameLevel: 1
AltName: Druid (SRD p17)
Source: (MDR p142)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Guerrier
AltName: Fighter (SRD p24)
Source: (MDR p160)
Id: fighter_hd.md#guerrier
RootId: fighter_hd.md
ParentLink: classes_hd.md
Name: Guerrier
ParentName: Classes
NameLevel: 1
AltName: Fighter (SRD p24)
Source: (MDR p160)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Moine
AltName: Monk (SRD p26)
Source: (MDR p176)
Id: monk_hd.md#moine
RootId: monk_hd.md
ParentLink: classes_hd.md
Name: Moine
ParentName: Classes
NameLevel: 1
AltName: Monk (SRD p26)
Source: (MDR p176)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Paladin
AltName: Paladin (SRD p30)
Source: (MDR p183)
Id: paladin_hd.md#paladin
RootId: paladin_hd.md
ParentLink: classes_hd.md
Name: Paladin
ParentName: Classes
NameLevel: 1
AltName: Paladin (SRD p30)
Source: (MDR p183)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Rôdeur
AltName: Ranger (SRD p35)
Source: (MDR p194)
Id: ranger_hd.md#rôdeur
RootId: ranger_hd.md
ParentLink: classes_hd.md
Name: Rôdeur
ParentName: Classes
NameLevel: 1
AltName: Ranger (SRD p35)
Source: (MDR p194)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Roublard
AltName: Rogue (SRD p39)
Source: (MDR p202)
Id: rogue_hd.md#roublard
RootId: rogue_hd.md
ParentLink: classes_hd.md
Name: Roublard
ParentName: Classes
NameLevel: 1
AltName: Rogue (SRD p39)
Source: (MDR p202)
Attributes: {}
---
>  [Classes](hd_classes.md)

View file

@ -1,13 +1,13 @@
---
!ClassItem
Name: Ensorceleur
AltName: Sorcerer (SRD p41)
Source: (MDR p152)
Id: sorcerer_hd.md#ensorceleur
RootId: sorcerer_hd.md
ParentLink: classes_hd.md
Name: Ensorceleur
ParentName: Classes
NameLevel: 1
AltName: Sorcerer (SRD p41)
Source: (MDR p152)
Attributes: {}
---
>  [Classes](hd_classes.md)

File diff suppressed because it is too large Load diff

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Agrandir/rétrécir
AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)'
Type: Transmutation
Level: 2
CastingTime: 1 action
Range: 9 mètres
Components: V, S, M (une pincée de limaille de fer)
Duration: concentration, jusqu'à 1 minute
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p320)(SRD)
Id: spells_hd.md#agrandirrétrécir
ParentLink: spells_hd.md#sorts
Name: Agrandir/rétrécir
ParentName: Sorts
NameLevel: 1
AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)'
Source: (MDR p320)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Aide
AltName: '[Aid](srd_spells_aid.md)'
Type: Abjuration
Level: 2
CastingTime: 1 action
Range: 9 mètres
Components: V, S, M (une minuscule bandelette de tissu blanc)
Duration: 8 heures
Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)'
Source: (MDR p320)(SRD)
Id: spells_hd.md#aide
ParentLink: spells_hd.md#sorts
Name: Aide
ParentName: Sorts
NameLevel: 1
AltName: '[Aid](srd_spells_aid.md)'
Source: (MDR p320)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Alarme
AltName: '[Alarm](srd_spells_alarm.md)'
Type: Abjuration
Ritual: rituel
Level: 1
CastingTime: 1 minute
Range: 9 mètres
Components: V, S, M (une minuscule clochette et un filament en argent)
Duration: 8 heures
Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)'
Source: (MDR p320)(SRD)
Ritual: rituel
Id: spells_hd.md#alarme
ParentLink: spells_hd.md#sorts
Name: Alarme
ParentName: Sorts
NameLevel: 1
AltName: '[Alarm](srd_spells_alarm.md)'
Source: (MDR p320)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 6
Name: Allié planaire
AltName: '[Planar Ally](srd_spells_planar_ally.md)'
Type: Invocation
Level: 6
CastingTime: 10 minutes
Range: 18 mètres
Components: V, S
Duration: instantanée
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p320)(SRD)
Id: spells_hd.md#allié-planaire
ParentLink: spells_hd.md#sorts
Name: Allié planaire
ParentName: Sorts
NameLevel: 1
AltName: '[Planar Ally](srd_spells_planar_ally.md)'
Source: (MDR p320)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Amélioration de caractéristique
AltName: '[Enhance Ability](srd_spells_enhance_ability.md)'
Type: Transmutation
Level: 2
CastingTime: 1 action
Range: contact
Components: V, S, M (des poils ou des plumes venant d'un animal)
Duration: concentration, jusqu'à 1 heure
Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)'
Source: (MDR p321)(SRD)
Id: spells_hd.md#amélioration-de-caractéristique
ParentLink: spells_hd.md#sorts
Name: Amélioration de caractéristique
ParentName: Sorts
NameLevel: 1
AltName: '[Enhance Ability](srd_spells_enhance_ability.md)'
Source: (MDR p321)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Amitié avec les animaux
AltName: '[Animal Friendship](srd_spells_animal_friendship.md)'
Type: Enchantement
Level: 1
CastingTime: 1 action
Range: 9 mètres
Components: V, S, M (un peu de nourriture)
Duration: 24 heures
Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)'
Source: (MDR p321)(SRD)
Id: spells_hd.md#amitié-avec-les-animaux
ParentLink: spells_hd.md#sorts
Name: Amitié avec les animaux
ParentName: Sorts
NameLevel: 1
AltName: '[Animal Friendship](srd_spells_animal_friendship.md)'
Source: (MDR p321)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Animation des morts
AltName: '[Animate Dead](srd_spells_animate_dead.md)'
Type: Nécromancie
Level: 3
CastingTime: 1 minute
Range: 3 mètres
Components: V, S, M (une goutte de sang, un lambeau de chair et une pincée de poudre d'os)
Duration: instantanée
Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)'
Source: (MDR p321)(SRD)
Id: spells_hd.md#animation-des-morts
ParentLink: spells_hd.md#sorts
Name: Animation des morts
ParentName: Sorts
NameLevel: 1
AltName: '[Animate Dead](srd_spells_animate_dead.md)'
Source: (MDR p321)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Animation des objets
AltName: '[Animate Objects](srd_spells_animate_objects.md)'
Type: Transmutation
Level: 5
CastingTime: 1 action
Range: 36 mètres
Components: V, S
Duration: concentration, jusqu'à 1 minute
Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p322)(SRD)
Id: spells_hd.md#animation-des-objets
ParentLink: spells_hd.md#sorts
Name: Animation des objets
ParentName: Sorts
NameLevel: 1
AltName: '[Animate Objects](srd_spells_animate_objects.md)'
Source: (MDR p322)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Apaisement des émotions
AltName: '[Calm Emotions](srd_spells_calm_emotions.md)'
Type: Enchantement
Level: 2
CastingTime: 1 action
Range: 18 mètres
Components: V, S
Duration: concentration, jusqu'à 1 minute
Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)'
Source: (MDR p322)(SRD)
Id: spells_hd.md#apaisement-des-émotions
ParentLink: spells_hd.md#sorts
Name: Apaisement des émotions
ParentName: Sorts
NameLevel: 1
AltName: '[Calm Emotions](srd_spells_calm_emotions.md)'
Source: (MDR p322)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Apparence trompeuse
AltName: '[Seeming](srd_spells_seeming.md)'
Type: Illusion
Level: 5
CastingTime: 1 action
Range: 9 mètres
Components: V, S
Duration: 8 heures
Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p323)(SRD)
Id: spells_hd.md#apparence-trompeuse
ParentLink: spells_hd.md#sorts
Name: Apparence trompeuse
ParentName: Sorts
NameLevel: 1
AltName: '[Seeming](srd_spells_seeming.md)'
Source: (MDR p323)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Appel de familier
AltName: '[Find Familiar](srd_spells_find_familiar.md)'
Type: Invocation
Ritual: rituel
Level: 1
CastingTime: 1 heure
Range: 3 mètres
Components: V, S, M (10 po de charbon, d'encens et d'herbe à faire brûler dans un brasero en laiton)
Duration: instantanée
Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p323)(SRD)
Ritual: rituel
Id: spells_hd.md#appel-de-familier
ParentLink: spells_hd.md#sorts
Name: Appel de familier
ParentName: Sorts
NameLevel: 1
AltName: '[Find Familiar](srd_spells_find_familiar.md)'
Source: (MDR p323)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Appel de la foudre
AltName: '[Call Lightning](srd_spells_call_lightning.md)'
Type: Invocation
Level: 3
CastingTime: 1 action
Range: 36 mètres
Components: V, S
Duration: concentration, jusqu'à 10 minutes
Classes: '[Druide](hd_druid.md)'
Source: (MDR p324)(SRD)
Id: spells_hd.md#appel-de-la-foudre
ParentLink: spells_hd.md#sorts
Name: Appel de la foudre
ParentName: Sorts
NameLevel: 1
AltName: '[Call Lightning](srd_spells_call_lightning.md)'
Source: (MDR p324)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Arc enchanté
Type: Enchantement
Level: 5
CastingTime: 1 action
Range: contact
Components: V, S, M (un arc)
Duration: 1 minute
Classes: '[Rôdeur](hd_ranger.md)'
Source: (MDR p324)
Id: spells_hd.md#arc-enchanté
ParentLink: spells_hd.md#sorts
Name: Arc enchanté
ParentName: Sorts
NameLevel: 1
Source: (MDR p324)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Arme magique
AltName: '[Magic Weapon](srd_spells_magic_weapon.md)'
Type: Transmutation
Level: 2
CastingTime: 1 action bonus
Range: contact
Components: V, S
Duration: concentration, jusqu'à 1 heure
Classes: '[Magicien](hd_wizard.md), [Paladin](hd_paladin.md)'
Source: (MDR p324)(SRD)
Id: spells_hd.md#arme-magique
ParentLink: spells_hd.md#sorts
Name: Arme magique
ParentName: Sorts
NameLevel: 1
AltName: '[Magic Weapon](srd_spells_magic_weapon.md)'
Source: (MDR p324)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Arme sainte
Type: Transmutation
Level: 3
CastingTime: 1 action
Range: contact
Components: V, S
Duration: concentration, jusqu'à 1 heure
Classes: '[Paladin](hd_paladin.md)'
Source: (MDR p324)
Id: spells_hd.md#arme-sainte
ParentLink: spells_hd.md#sorts
Name: Arme sainte
ParentName: Sorts
NameLevel: 1
Source: (MDR p324)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Arme spirituelle
AltName: '[Spiritual Weapon](srd_spells_spiritual_weapon.md)'
Type: Évocation
Level: 2
CastingTime: 1 action bonus
Range: 18 mètres
Components: V, S
Duration: 1 minute
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p324)(SRD)
Id: spells_hd.md#arme-spirituelle
ParentLink: spells_hd.md#sorts
Name: Arme spirituelle
ParentName: Sorts
NameLevel: 1
AltName: '[Spiritual Weapon](srd_spells_spiritual_weapon.md)'
Source: (MDR p324)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Armure du mage
AltName: '[Mage Armor](srd_spells_mage_armor.md)'
Type: Abjuration
Level: 1
CastingTime: 1 action
Range: contact
Components: V, S, M (un bout de cuir tanné)
Duration: 8 heures
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p324)(SRD)
Id: spells_hd.md#armure-du-mage
ParentLink: spells_hd.md#sorts
Name: Armure du mage
ParentName: Sorts
NameLevel: 1
AltName: '[Mage Armor](srd_spells_mage_armor.md)'
Source: (MDR p324)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 9
Name: Arrêt du temps
AltName: '[Time Stop](srd_spells_time_stop.md)'
Type: Transmutation
Level: 9
CastingTime: 1 action
Range: personnelle
Components: V
Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p325)(SRD)
Id: spells_hd.md#arrêt-du-temps
ParentLink: spells_hd.md#sorts
Name: Arrêt du temps
ParentName: Sorts
NameLevel: 1
AltName: '[Time Stop](srd_spells_time_stop.md)'
Source: (MDR p325)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: tour de magie
Name: Aspersion acide
AltName: '[Acid Splash](srd_spells_acid_splash.md)'
Type: Invocation
Level: tour de magie
CastingTime: 1 action
Range: 18 mètres
Components: V, S
Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p325)(SRD)
Id: spells_hd.md#aspersion-acide
ParentLink: spells_hd.md#sorts
Name: Aspersion acide
ParentName: Sorts
NameLevel: 1
AltName: '[Acid Splash](srd_spells_acid_splash.md)'
Source: (MDR p325)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 4
Name: Assassin imaginaire
AltName: '[Phantasmal Killer](srd_spells_phantasmal_killer.md)'
Type: Illusion
Level: 4
CastingTime: 1 action
Range: 36 mètres
Components: V, S
Duration: concentration, jusqu'à 1 minute
Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p325)(SRD)
Id: spells_hd.md#assassin-imaginaire
ParentLink: spells_hd.md#sorts
Name: Assassin imaginaire
ParentName: Sorts
NameLevel: 1
AltName: '[Phantasmal Killer](srd_spells_phantasmal_killer.md)'
Source: (MDR p325)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: tour de magie
Name: Assistance
AltName: '[Guidance](srd_spells_guidance.md)'
Type: Divination
Level: tour de magie
CastingTime: 1 action
Range: contact
Components: V, S
Duration: concentration, jusqu'à 1 minute
Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)'
Source: (MDR p325)(SRD)
Id: spells_hd.md#assistance
ParentLink: spells_hd.md#sorts
Name: Assistance
ParentName: Sorts
NameLevel: 1
AltName: '[Guidance](srd_spells_guidance.md)'
Source: (MDR p325)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Augure
AltName: '[Augury](srd_spells_augury.md)'
Type: Divination
Level: 2
CastingTime: 1 minute
Range: personnelle
Components: V, S, M (bâtonnets, os ou petits objets similaires d'une valeur minimale de 25 po, portant des marques spéciales)
Duration: instantanée
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p325)(SRD)
Id: spells_hd.md#augure
ParentLink: spells_hd.md#sorts
Name: Augure
ParentName: Sorts
NameLevel: 1
AltName: '[Augury](srd_spells_augury.md)'
Source: (MDR p325)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Aura de force
Type: Abjuration
Level: 5
CastingTime: 1 action
Range: 9 mètres
Components: V
Duration: Concentration, jusqu'à 10 minutes
Classes: '[Paladin](hd_paladin.md)'
Source: (MDR p325)
Id: spells_hd.md#aura-de-force
ParentLink: spells_hd.md#sorts
Name: Aura de force
ParentName: Sorts
NameLevel: 1
Source: (MDR p325)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: tour de magie
Name: Aura du héros
Type: Enchantement
Level: tour de magie
CastingTime: 1 action
Range: personnelle
Components: V, S
Duration: concentration, jusqu'à 1 minute
Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)'
Source: (MDR p326)
Id: spells_hd.md#aura-du-héros
ParentLink: spells_hd.md#sorts
Name: Aura du héros
ParentName: Sorts
NameLevel: 1
Source: (MDR p326)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Aura magique de l'arcaniste
AltName: "[Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)"
Type: Illusion
Level: 2
CastingTime: 1 action
Range: contact
Components: V, S, M (un petit carré de soie)
Duration: 24 heures
Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)'
Source: (MDR p326)
Id: spells_hd.md#aura-magique-de-larcaniste
ParentLink: spells_hd.md#sorts
Name: Aura magique de l'arcaniste
ParentName: Sorts
NameLevel: 1
AltName: "[Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)"
Source: (MDR p326)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 8
Name: Aura sacrée
AltName: '[Holy Aura](srd_spells_holy_aura.md)'
Type: Abjuration
Level: 8
CastingTime: 1 action
Range: personnelle
Components: V, S, M (un petit reliquaire d'une valeur minimum de 1 000 po contenant une relique sacrée, comme un bout de la robe d'un saint ou un morceau de parchemin prélevé sur un texte sacré)
Duration: concentration, jusqu'à 1 minute
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p326)
Id: spells_hd.md#aura-sacrée
ParentLink: spells_hd.md#sorts
Name: Aura sacrée
ParentName: Sorts
NameLevel: 1
AltName: '[Holy Aura](srd_spells_holy_aura.md)'
Source: (MDR p326)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 8
Name: Bagou
AltName: '[Glibness](srd_spells_glibness.md)'
Type: Transmutation
Level: 8
CastingTime: 1 action
Range: personnelle
Components: V
Duration: 1 heure
Classes: '[Barde](hd_bard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p326)(SRD)
Id: spells_hd.md#bagou
ParentLink: spells_hd.md#sorts
Name: Bagou
ParentName: Sorts
NameLevel: 1
AltName: '[Glibness](srd_spells_glibness.md)'
Source: (MDR p326)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Baies nourricières
AltName: '[Goodberry](srd_spells_goodberry.md)'
Type: Transmutation
Level: 1
CastingTime: 1 action
Range: contact
Components: V, S, M (un brin de gui)
Duration: instantanée
Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)'
Source: (MDR p326)(SRD)
Id: spells_hd.md#baies-nourricières
ParentLink: spells_hd.md#sorts
Name: Baies nourricières
ParentName: Sorts
NameLevel: 1
AltName: '[Goodberry](srd_spells_goodberry.md)'
Source: (MDR p326)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Balisage
AltName: '[Guiding Bolt](srd_spells_guiding_bolt.md)'
Type: Évocation
Level: 1
CastingTime: 1 action
Range: 36 mètres
Components: V, S
Duration: 1 round
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p327)(SRD)
Id: spells_hd.md#balisage
ParentLink: spells_hd.md#sorts
Name: Balisage
ParentName: Sorts
NameLevel: 1
AltName: '[Guiding Bolt](srd_spells_guiding_bolt.md)'
Source: (MDR p327)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 4
Name: Bannissement
AltName: '[Banishment](srd_spells_banishment.md)'
Type: Abjuration
Level: 4
CastingTime: 1 action
Range: 18 mètres
Components: V, S, M (un objet qui répugne à la cible)
Duration: concentration, jusqu'à 1 minute
Classes: '[Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)'
Source: (MDR p327)(SRD)
Id: spells_hd.md#bannissement
ParentLink: spells_hd.md#sorts
Name: Bannissement
ParentName: Sorts
NameLevel: 1
AltName: '[Banishment](srd_spells_banishment.md)'
Source: (MDR p327)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 6
Name: Barrière de lames
AltName: '[Blade Barrier](srd_spells_blade_barrier.md)'
Type: Évocation
Level: 6
CastingTime: 1 action
Range: 27 mètres
Components: V, S
Duration: concentration, jusqu'à 10 minutes
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p327)(SRD)
Id: spells_hd.md#barrière-de-lames
ParentLink: spells_hd.md#sorts
Name: Barrière de lames
ParentName: Sorts
NameLevel: 1
AltName: '[Blade Barrier](srd_spells_blade_barrier.md)'
Source: (MDR p327)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Bénédiction
AltName: '[Bless](srd_spells_bless.md)'
Type: Enchantement
Level: 1
CastingTime: 1 action
Range: 9 mètres
Components: V, S, M (un peu d'eau bénite à asperger)
Duration: concentration, jusqu'à 1 minute
Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)'
Source: (MDR p327)(SRD)
Id: spells_hd.md#bénédiction
ParentLink: spells_hd.md#sorts
Name: Bénédiction
ParentName: Sorts
NameLevel: 1
AltName: '[Bless](srd_spells_bless.md)'
Source: (MDR p327)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Bénédiction héroïque
Type: Divination
Level: 3
CastingTime: 1 action
Range: 18 mètres
Components: V
Duration: concentration, jusqu'à 1 minute
Classes: '[Paladin](hd_paladin.md)'
Source: (MDR p327)
Id: spells_hd.md#bénédiction-héroïque
ParentLink: spells_hd.md#sorts
Name: Bénédiction héroïque
ParentName: Sorts
NameLevel: 1
Source: (MDR p327)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Blessure
AltName: '[Inflict Wounds](srd_spells_inflict_wounds.md)'
Type: Nécromancie
Level: 1
CastingTime: 1 action
Range: contact
Components: V, S
Duration: instantanée
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p327)(SRD)
Id: spells_hd.md#blessure
ParentLink: spells_hd.md#sorts
Name: Blessure
ParentName: Sorts
NameLevel: 1
AltName: '[Inflict Wounds](srd_spells_inflict_wounds.md)'
Source: (MDR p327)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Bouche magique
AltName: '[Magic Mouth](srd_spells_magic_mouth.md)'
Type: Illusion
Ritual: rituel
Level: 2
CastingTime: 1 minute
Range: 9 mètres
Components: V, S, M (un rayon de miel et de la poussière de jade d'une valeur de 10 po, que le sort consume)
Duration: jusqu'à dissipation
Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)'
Source: (MDR p328)(SRD)
Ritual: rituel
Id: spells_hd.md#bouche-magique
ParentLink: spells_hd.md#sorts
Name: Bouche magique
ParentName: Sorts
NameLevel: 1
AltName: '[Magic Mouth](srd_spells_magic_mouth.md)'
Source: (MDR p328)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Bouclier
AltName: '[Shield](srd_spells_shield.md)'
Type: Abjuration
Level: 1
CastingTime: 1 réaction à effectuer lorsque vous êtes touché par une attaque ou un sort de _[projectile magique](hd_spells_projectile_magique.md)_
Range: personnelle
Components: V, S
Duration: 1 round
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p328)(SRD)
Id: spells_hd.md#bouclier
ParentLink: spells_hd.md#sorts
Name: Bouclier
ParentName: Sorts
NameLevel: 1
AltName: '[Shield](srd_spells_shield.md)'
Source: (MDR p328)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 4
Name: Bouclier de feu
AltName: '[Fire Shield](srd_spells_fire_shield.md)'
Type: Évocation
Level: 4
CastingTime: 1 action
Range: personnelle
Components: V, S, M (un morceau de phosphore ou une luciole)
Duration: 10 minutes
Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p328)(SRD)
Id: spells_hd.md#bouclier-de-feu
ParentLink: spells_hd.md#sorts
Name: Bouclier de feu
ParentName: Sorts
NameLevel: 1
AltName: '[Fire Shield](srd_spells_fire_shield.md)'
Source: (MDR p328)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Bouclier de la foi
AltName: '[Shield of Faith](srd_spells_shield_of_faith.md)'
Type: Abjuration
Level: 1
CastingTime: 1 action bonus
Range: 18 mètres
Components: V, S, M (un petit parchemin avec un extrait de texte sacré)
Duration: concentration, jusqu'à 10 minutes
Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)'
Source: (MDR p328)(SRD)
Id: spells_hd.md#bouclier-de-la-foi
ParentLink: spells_hd.md#sorts
Name: Bouclier de la foi
ParentName: Sorts
NameLevel: 1
AltName: '[Shield of Faith](srd_spells_shield_of_faith.md)'
Source: (MDR p328)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: tour de magie
Name: Bouffée de poison
AltName: '[Poison Spray](srd_spells_poison_spray.md)'
Type: Invocation
Level: tour de magie
CastingTime: 1 action
Range: 3 mètres
Components: V, S
Duration: instantanée
Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p328)(SRD)
Id: spells_hd.md#bouffée-de-poison
ParentLink: spells_hd.md#sorts
Name: Bouffée de poison
ParentName: Sorts
NameLevel: 1
AltName: '[Poison Spray](srd_spells_poison_spray.md)'
Source: (MDR p328)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Boule de feu
AltName: '[Fireball](srd_spells_fireball.md)'
Type: Évocation
Level: 3
CastingTime: 1 action
Range: 45 mètres
Components: V, S, M (une petite boule de guano de chauve-souris et du soufre)
Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p328)(SRD)
Id: spells_hd.md#boule-de-feu
ParentLink: spells_hd.md#sorts
Name: Boule de feu
ParentName: Sorts
NameLevel: 1
AltName: '[Fireball](srd_spells_fireball.md)'
Source: (MDR p328)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 7
Name: Boule de feu à explosion retardée
AltName: '[Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)'
Type: Évocation
Level: 7
CastingTime: 1 action
Range: 45 mètres
Components: V, S, M (une petite boule de guano de chauve-souris et du soufre)
Duration: concentration, jusqu'à 1 minute
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p329)(SRD)
Id: spells_hd.md#boule-de-feu-à-explosion-retardée
ParentLink: spells_hd.md#sorts
Name: Boule de feu à explosion retardée
ParentName: Sorts
NameLevel: 1
AltName: '[Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)'
Source: (MDR p329)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Bourrasque
AltName: '[Gust of Wind](srd_spells_gust_of_wind.md)'
Type: Évocation
Level: 2
CastingTime: 1 action
Range: personnelle (ligne de 18 mètres)
Components: V, S, M (une graine de légume)
Duration: concentration, jusqu'à 1 minute
Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p329)(SRD)
Id: spells_hd.md#bourrasque
ParentLink: spells_hd.md#sorts
Name: Bourrasque
ParentName: Sorts
NameLevel: 1
AltName: '[Gust of Wind](srd_spells_gust_of_wind.md)'
Source: (MDR p329)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Briser
AltName: '[Shatter](srd_spells_shatter.md)'
Type: Évocation
Level: 2
CastingTime: 1 action
Range: 18 mètres
Components: V, S, M (un éclat de mica)
Duration: instantanée
Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p330)(SRD)
Id: spells_hd.md#briser
ParentLink: spells_hd.md#sorts
Name: Briser
ParentName: Sorts
NameLevel: 1
AltName: '[Shatter](srd_spells_shatter.md)'
Source: (MDR p330)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Brûlure du juste
Type: Évocation
Level: 1
CastingTime: 1 action
Range: personnelle
Components: V
Duration: concentration, jusqu'à 1 minute
Classes: '[Paladin](hd_paladin.md)'
Source: (MDR p330)
Id: spells_hd.md#brûlure-du-juste
ParentLink: spells_hd.md#sorts
Name: Brûlure du juste
ParentName: Sorts
NameLevel: 1
Source: (MDR p330)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 7
Name: Cage de force
AltName: '[Forcecage](srd_spells_forcecage.md)'
Type: Évocation
Level: 7
CastingTime: 1 action
Range: 30 mètres
Components: V, S, M (poussière de rubis d'une valeur de 1 500 po)
Duration: 1 heure
Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p330)(SRD)
Id: spells_hd.md#cage-de-force
ParentLink: spells_hd.md#sorts
Name: Cage de force
ParentName: Sorts
NameLevel: 1
AltName: '[Forcecage](srd_spells_forcecage.md)'
Source: (MDR p330)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Caresse du vampire
AltName: '[Vampiric Touch](srd_spells_vampiric_touch.md)'
Type: Nécromancie
Level: 3
CastingTime: 1 action
Range: personnelle
Components: V, S
Duration: concentration, jusqu'à 1 minute
Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p330)(SRD)
Id: spells_hd.md#caresse-du-vampire
ParentLink: spells_hd.md#sorts
Name: Caresse du vampire
ParentName: Sorts
NameLevel: 1
AltName: '[Vampiric Touch](srd_spells_vampiric_touch.md)'
Source: (MDR p330)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Catalepsie
Type: Nécromancie
Level: 3
CastingTime: 1 action
Range: 18 mètres
Components: V, S, M (un petit morceau de linceul)
Duration: 1 heure
Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)'
Source: (MDR p331)
Id: spells_hd.md#catalepsie
ParentLink: spells_hd.md#sorts
Name: Catalepsie
ParentName: Sorts
NameLevel: 1
Source: (MDR p331)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Cécité/surdité
AltName: '[Blindness/Deafness](srd_spells_blindnessdeafness.md)'
Type: Nécromancie
Level: 2
CastingTime: 1 action
Range: 9 mètres
Components: V
Duration: 1 minute
Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p331)(SRD)
Id: spells_hd.md#cécitésurdité
ParentLink: spells_hd.md#sorts
Name: Cécité/surdité
ParentName: Sorts
NameLevel: 1
AltName: '[Blindness/Deafness](srd_spells_blindnessdeafness.md)'
Source: (MDR p331)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 6
Name: Cercle de mort
AltName: '[Circle of Death](srd_spells_circle_of_death.md)'
Type: Nécromancie
Level: 6
CastingTime: 1 action
Range: 45 mètres
Components: V, S, M (la poudre d'une perle noire broyée d'une valeur minimale de 500 po)
Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p331)(SRD)
Id: spells_hd.md#cercle-de-mort
ParentLink: spells_hd.md#sorts
Name: Cercle de mort
ParentName: Sorts
NameLevel: 1
AltName: '[Circle of Death](srd_spells_circle_of_death.md)'
Source: (MDR p331)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Cercle de téléportation
AltName: '[Teleportation Circle](srd_spells_teleportation_circle.md)'
Type: Invocation
Level: 5
CastingTime: 1 minute
Range: 3 mètres
Components: V, M (des craies et des encres rares contenant des extraits de pierres précieuses pour une valeur de 50 po, que le sort consume)
Duration: 1 round
Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p331)(SRD)
Id: spells_hd.md#cercle-de-téléportation
ParentLink: spells_hd.md#sorts
Name: Cercle de téléportation
ParentName: Sorts
NameLevel: 1
AltName: '[Teleportation Circle](srd_spells_teleportation_circle.md)'
Source: (MDR p331)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Cercle magique
AltName: '[Magic Circle](srd_spells_magic_circle.md)'
Type: Abjuration
Level: 3
CastingTime: 1 minute
Range: 3 mètres
Components: V, S, M (eau bénite ou poudre d'argent et de fer d'une valeur minimale de 100 po, que le sort consume)
Duration: 1 heure
Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)'
Source: (MDR p331)(SRD)
Id: spells_hd.md#cercle-magique
ParentLink: spells_hd.md#sorts
Name: Cercle magique
ParentName: Sorts
NameLevel: 1
AltName: '[Magic Circle](srd_spells_magic_circle.md)'
Source: (MDR p331)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 6
Name: Chaîne d'éclairs
AltName: '[Chain Lightning](srd_spells_chain_lightning.md)'
Type: Évocation
Level: 6
CastingTime: 1 action
Range: 450 mètres
Components: V, S, M (un éclat d'ambre, de verre ou de cristal, trois épingles en argent et un morceau de fourrure)
Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p332)
Id: spells_hd.md#chaîne-déclairs
ParentLink: spells_hd.md#sorts
Name: Chaîne d'éclairs
ParentName: Sorts
NameLevel: 1
AltName: '[Chain Lightning](srd_spells_chain_lightning.md)'
Source: (MDR p332)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 8
Name: Champ antimagie
AltName: '[Antimagic Field](srd_spells_antimagic_field.md)'
Type: Abjuration
Level: 8
CastingTime: 1 action
Range: personnelle (sphère de 3 mètres de rayon)
Components: V, S, M (une pincée de poudre de fer ou de limaille)
Duration: concentration, jusqu'à 1 heure
Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)'
Source: (MDR p332)(SRD)
Id: spells_hd.md#champ-antimagie
ParentLink: spells_hd.md#sorts
Name: Champ antimagie
ParentName: Sorts
NameLevel: 1
AltName: '[Antimagic Field](srd_spells_antimagic_field.md)'
Source: (MDR p332)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 9
Name: Changement de forme
AltName: '[Shapechange](srd_spells_shapechange.md)'
Type: Transmutation
Level: 9
CastingTime: 1 action
Range: personnelle
Components: V, S, M (un diadème de jade d'une valeur minimale de 1 500 po, que vous devez coiffer avant de lancer le sort)
Duration: concentration, jusqu'à 1 heure
Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)'
Source: (MDR p333)(SRD)
Id: spells_hd.md#changement-de-forme
ParentLink: spells_hd.md#sorts
Name: Changement de forme
ParentName: Sorts
NameLevel: 1
AltName: '[Shapechange](srd_spells_shapechange.md)'
Source: (MDR p333)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 7
Name: Changement de plan
AltName: '[Plane Shift](srd_spells_plane_shift.md)'
Type: Invocation
Level: 7
CastingTime: 1 action
Range: contact
Components: V, S, M (un diapason de métal valant au moins 250 po, harmonisé avec un plan d'existence donné)
Duration: instantanée
Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p333)(SRD)
Id: spells_hd.md#changement-de-plan
ParentLink: spells_hd.md#sorts
Name: Changement de plan
ParentName: Sorts
NameLevel: 1
AltName: '[Plane Shift](srd_spells_plane_shift.md)'
Source: (MDR p333)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Charme-personne
AltName: '[Charm Person](srd_spells_charm_person.md)'
Type: Enchantement
Level: 1
CastingTime: 1 action
Range: 9 mètres
Components: V, S
Duration: 1 heure
Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)'
Source: (MDR p333)(SRD)
Id: spells_hd.md#charme-personne
ParentLink: spells_hd.md#sorts
Name: Charme-personne
ParentName: Sorts
NameLevel: 1
AltName: '[Charm Person](srd_spells_charm_person.md)'
Source: (MDR p333)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Chauffer le métal
AltName: '[Heat Metal](srd_spells_heat_metal.md)'
Type: Transmutation
Level: 2
CastingTime: 1 action
Range: 18 mètres
Components: V, S, M (un bout de fer et une flamme)
Duration: concentration, jusqu'à 1 minute
Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md)'
Source: (MDR p334)(SRD)
Id: spells_hd.md#chauffer-le-métal
ParentLink: spells_hd.md#sorts
Name: Chauffer le métal
ParentName: Sorts
NameLevel: 1
AltName: '[Heat Metal](srd_spells_heat_metal.md)'
Source: (MDR p334)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 4
Name: Chien de garde
AltName: '[Faithful Hound](srd_spells_faithful_hound.md)'
Type: Invocation
Level: 4
CastingTime: 1 action
Range: 9 mètres
Components: V, S, M (un petit sifflet en argent, un éclat d'os et une ficelle)
Duration: 8 heures
Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p334)
Id: spells_hd.md#chien-de-garde
ParentLink: spells_hd.md#sorts
Name: Chien de garde
ParentName: Sorts
NameLevel: 1
AltName: '[Faithful Hound](srd_spells_faithful_hound.md)'
Source: (MDR p334)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Choc des titans
Type: Enchantement
Level: 1
CastingTime: 1 action
Range: 9 mètres
Components: V, S
Duration: 1 minute
Classes: '[Paladin](hd_paladin.md)'
Source: (MDR p334)
Id: spells_hd.md#choc-des-titans
ParentLink: spells_hd.md#sorts
Name: Choc des titans
ParentName: Sorts
NameLevel: 1
Source: (MDR p334)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Clairvoyance
AltName: '[Clairvoyance](srd_spells_clairvoyance.md)'
Type: Divination
Level: 3
CastingTime: 10 minutes
Range: 1,5 kilomètre
Components: V, S, M (un focaliseur d'une valeur minimale de 100 po, soit une corne incrustée de pierreries pour l'ouïe, soit un oeil de verre pour la vue)
Duration: concentration, jusqu'à 10 minutes
Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)'
Source: (MDR p334)(SRD)
Id: spells_hd.md#clairvoyance
ParentLink: spells_hd.md#sorts
Name: Clairvoyance
ParentName: Sorts
NameLevel: 1
AltName: '[Clairvoyance](srd_spells_clairvoyance.md)'
Source: (MDR p334)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Clignotement
AltName: '[Blink](srd_spells_blink.md)'
Type: Transmutation
Level: 3
CastingTime: 1 action
Range: personnelle
Components: V, S
Duration: 1 minute
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p334)(SRD)
Id: spells_hd.md#clignotement
ParentLink: spells_hd.md#sorts
Name: Clignotement
ParentName: Sorts
NameLevel: 1
AltName: '[Blink](srd_spells_blink.md)'
Source: (MDR p334)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 8
Name: Clone
AltName: '[Clone](srd_spells_clone.md)'
Type: Nécromancie
Level: 8
CastingTime: 1 heure
Range: contact
Components: V, S, M (un diamant valant au moins 1 000 po et un cube d'au moins 2,5 centimètres d'arête de chair de la créature à cloner, le sort consommant ces deux composantes, ainsi qu'un réceptacle d'une valeur minimale de 2 000 po qui dispose d'un couvercle susceptible d'être scellé, et assez grand pour contenir une créature de taille M, comme une grande urne, un cercueil, un cavité remplie de boue creusée dans la terre ou un récipient de cristal rempli d'eau salée)
Duration: instantanée
Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p335)(SRD)
Id: spells_hd.md#clone
ParentLink: spells_hd.md#sorts
Name: Clone
ParentName: Sorts
NameLevel: 1
AltName: '[Clone](srd_spells_clone.md)'
Source: (MDR p335)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Coercition mystique
AltName: '[Geas](srd_spells_geas.md)'
Type: Enchantement
Level: 5
CastingTime: 1 minute
Range: 18 mètres
Components: V
Duration: 30 jours
Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md)'
Source: (MDR p335)(SRD)
Id: spells_hd.md#coercition-mystique
ParentLink: spells_hd.md#sorts
Name: Coercition mystique
ParentName: Sorts
NameLevel: 1
AltName: '[Geas](srd_spells_geas.md)'
Source: (MDR p335)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 4
Name: Coffre secret
AltName: '[Secret Chest](srd_spells_secret_chest.md)'
Type: Invocation
Level: 4
CastingTime: 1 action
Range: contact
Components: V, S, M (un superbe coffre de 90x60x60 centimètres, fait de matériaux rares d'une valeur minimale de 5 000 po et une réplique du coffre de taille TP, faite des mêmes matériaux et valant au moins 50 po)
Duration: instantanée
Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p335)
Id: spells_hd.md#coffre-secret
ParentLink: spells_hd.md#sorts
Name: Coffre secret
ParentName: Sorts
NameLevel: 1
AltName: '[Secret Chest](srd_spells_secret_chest.md)'
Source: (MDR p335)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Colère des damnés
Type: Invocation
Level: 3
CastingTime: 1 action
Range: 30 mètres
Components: V, S, M (un peu de cendre et de poussière d'os)
Duration: concentration, jusqu'à 1 minute
Classes: '[Sorcier](hd_warlock.md)'
Source: (MDR p336)
Id: spells_hd.md#colère-des-damnés
ParentLink: spells_hd.md#sorts
Name: Colère des damnés
ParentName: Sorts
NameLevel: 1
Source: (MDR p336)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Collet magique
Type: Invocation
Level: 2
CastingTime: 1 action
Range: 12 mètres
Components: V, S, M (une ficelle)
Duration: 1 heure
Classes: '[Rôdeur](hd_ranger.md)'
Source: (MDR p336)
Id: spells_hd.md#collet-magique
ParentLink: spells_hd.md#sorts
Name: Collet magique
ParentName: Sorts
NameLevel: 1
Source: (MDR p336)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Colonne de flamme
AltName: '[Flame Strike](srd_spells_flame_strike.md)'
Type: Évocation
Level: 5
CastingTime: 1 action
Range: 18 mètres
Components: V, S, M (une pincée de soufre)
Duration: instantanée
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p336)(SRD)
Id: spells_hd.md#colonne-de-flamme
ParentLink: spells_hd.md#sorts
Name: Colonne de flamme
ParentName: Sorts
NameLevel: 1
AltName: '[Flame Strike](srd_spells_flame_strike.md)'
Source: (MDR p336)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Communication avec les animaux
AltName: '[Speak with Animals](srd_spells_speak_with_animals.md)'
Type: Divination
Ritual: rituel
Level: 1
CastingTime: 1 action
Range: personnelle
Components: V, S
Duration: 10 minutes
Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)'
Source: (MDR p336)(SRD)
Ritual: rituel
Id: spells_hd.md#communication-avec-les-animaux
ParentLink: spells_hd.md#sorts
Name: Communication avec les animaux
ParentName: Sorts
NameLevel: 1
AltName: '[Speak with Animals](srd_spells_speak_with_animals.md)'
Source: (MDR p336)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Communication avec les morts
AltName: '[Speak with Dead](srd_spells_speak_with_dead.md)'
Type: Nécromancie
Level: 3
CastingTime: 1 action
Range: 3 mètres
Components: V, S, M (encens incandescent)
Duration: 10 minutes
Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)'
Source: (MDR p336)(SRD)
Id: spells_hd.md#communication-avec-les-morts
ParentLink: spells_hd.md#sorts
Name: Communication avec les morts
ParentName: Sorts
NameLevel: 1
AltName: '[Speak with Dead](srd_spells_speak_with_dead.md)'
Source: (MDR p336)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Communication avec les plantes
AltName: '[Speak with Plants](srd_spells_speak_with_plants.md)'
Type: Transmutation
Level: 3
CastingTime: 1 action
Range: personnelle (9 mètres de rayon)
Components: V, S
Duration: 10 minutes
Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)'
Source: (MDR p337)(SRD)
Id: spells_hd.md#communication-avec-les-plantes
ParentLink: spells_hd.md#sorts
Name: Communication avec les plantes
ParentName: Sorts
NameLevel: 1
AltName: '[Speak with Plants](srd_spells_speak_with_plants.md)'
Source: (MDR p337)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Communion
AltName: '[Commune](srd_spells_commune.md)'
Type: Divination
Ritual: rituel
Level: 5
CastingTime: 1 minute
Range: personnelle
Components: V, S, M (de l'encens et une fiole d'eau bénite ou maudite)
Duration: 1 minute
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p337)(SRD)
Ritual: rituel
Id: spells_hd.md#communion
ParentLink: spells_hd.md#sorts
Name: Communion
ParentName: Sorts
NameLevel: 1
AltName: '[Commune](srd_spells_commune.md)'
Source: (MDR p337)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Communion avec la nature
AltName: '[Commune with Nature](srd_spells_commune_with_nature.md)'
Type: Divination
Ritual: rituel
Level: 5
CastingTime: 1 minute
Range: personnelle
Components: V, S
Duration: instantanée
Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)'
Source: (MDR p337)(SRD)
Ritual: rituel
Id: spells_hd.md#communion-avec-la-nature
ParentLink: spells_hd.md#sorts
Name: Communion avec la nature
ParentName: Sorts
NameLevel: 1
AltName: '[Commune with Nature](srd_spells_commune_with_nature.md)'
Source: (MDR p337)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,19 +1,19 @@
---
!SpellItem
Family: SpellHD
Level: 2
Name: Compagnon animal
Type: Enchantement
Level: 2
CastingTime: 1 minute
Range: 12 mètres
Components: V, S, M (un peu de nourriture adaptée à l'animal)
Duration: 24 heures
Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)'
Source: (MDR p337)
Id: spells_hd.md#compagnon-animal
ParentLink: spells_hd.md#sorts
Name: Compagnon animal
ParentName: Sorts
NameLevel: 1
Source: (MDR p337)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 1
Name: Compréhension des langues
AltName: '[Comprehend Languages](srd_spells_comprehend_languages.md)'
Type: Divination
Ritual: rituel
Level: 1
CastingTime: 1 action
Range: personnelle
Components: V, S, M (une pincée de suie et de sel)
Duration: 1 heure
Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p338)(SRD)
Ritual: rituel
Id: spells_hd.md#compréhension-des-langues
ParentLink: spells_hd.md#sorts
Name: Compréhension des langues
ParentName: Sorts
NameLevel: 1
AltName: '[Comprehend Languages](srd_spells_comprehend_languages.md)'
Source: (MDR p338)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 4
Name: Compulsion
AltName: '[Compulsion](srd_spells_compulsion.md)'
Type: Enchantement
Level: 4
CastingTime: 1 action
Range: 9 mètres
Components: V, S
Duration: concentration, jusqu'à 1 minute
Classes: '[Barde](hd_bard.md), [Ombrelame](hd_rogue_ombrelame.md)'
Source: (MDR p338)(SRD)
Id: spells_hd.md#compulsion
ParentLink: spells_hd.md#sorts
Name: Compulsion
ParentName: Sorts
NameLevel: 1
AltName: '[Compulsion](srd_spells_compulsion.md)'
Source: (MDR p338)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Cône de froid
AltName: '[Cone of Cold](srd_spells_cone_of_cold.md)'
Type: Évocation
Level: 5
CastingTime: 1 action
Range: personnelle (cône de 18 mètres)
Components: V, S, M (un petit cône de cristal ou de verre)
Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p338)(SRD)
Id: spells_hd.md#cône-de-froid
ParentLink: spells_hd.md#sorts
Name: Cône de froid
ParentName: Sorts
NameLevel: 1
AltName: '[Cone of Cold](srd_spells_cone_of_cold.md)'
Source: (MDR p338)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 4
Name: Confusion
AltName: '[Confusion](srd_spells_confusion.md)'
Type: Enchantement
Level: 4
CastingTime: 1 action
Range: 27 mètres
Components: V, S, M (trois coquilles de noix)
Duration: concentration, jusqu'à 1 minute
Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)'
Source: (MDR p338)(SRD)
Id: spells_hd.md#confusion
ParentLink: spells_hd.md#sorts
Name: Confusion
ParentName: Sorts
NameLevel: 1
AltName: '[Confusion](srd_spells_confusion.md)'
Source: (MDR p338)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: tour de magie
Name: Contact glacial
AltName: '[Chill Touch](srd_spells_chill_touch.md)'
Type: Nécromancie
Level: tour de magie
CastingTime: 1 action
Range: 36 mètres
Components: V, S
Duration: 1 round
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p339)(SRD)
Id: spells_hd.md#contact-glacial
ParentLink: spells_hd.md#sorts
Name: Contact glacial
ParentName: Sorts
NameLevel: 1
AltName: '[Chill Touch](srd_spells_chill_touch.md)'
Source: (MDR p339)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Contacter un autre plan
AltName: '[Contact Other Plane](srd_spells_contact_other_plane.md)'
Type: Divination
Ritual: rituel
Level: 5
CastingTime: 1 minute
Range: personnelle
Components: V
Duration: 1 minute
Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p339)(SRD)
Ritual: rituel
Id: spells_hd.md#contacter-un-autre-plan
ParentLink: spells_hd.md#sorts
Name: Contacter un autre plan
ParentName: Sorts
NameLevel: 1
AltName: '[Contact Other Plane](srd_spells_contact_other_plane.md)'
Source: (MDR p339)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Contagion
AltName: '[Contagion](srd_spells_contagion.md)'
Type: Nécromancie
Level: 5
CastingTime: 1 action
Range: contact
Components: V, S
Duration: 7 jours
Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)'
Source: (MDR p339)(SRD)
Id: spells_hd.md#contagion
ParentLink: spells_hd.md#sorts
Name: Contagion
ParentName: Sorts
NameLevel: 1
AltName: '[Contagion](srd_spells_contagion.md)'
Source: (MDR p339)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 6
Name: Contamination
AltName: '[Harm](srd_spells_harm.md)'
Type: Nécromancie
Level: 6
CastingTime: 1 action
Range: 18 mètres
Components: V, S
Duration: instantanée
Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p340)(SRD)
Id: spells_hd.md#contamination
ParentLink: spells_hd.md#sorts
Name: Contamination
ParentName: Sorts
NameLevel: 1
AltName: '[Harm](srd_spells_harm.md)'
Source: (MDR p340)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 6
Name: Contingence
AltName: '[Contingency](srd_spells_contingency.md)'
Type: Évocation
Level: 6
CastingTime: 10 minutes
Range: personnelle
Components: V, S, M (une statuette de vous taillée dans l'ivoire et ornée de gemmes d'une valeur minimum de 1 500 po)
Duration: 10 jours
Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p340)(SRD)
Id: spells_hd.md#contingence
ParentLink: spells_hd.md#sorts
Name: Contingence
ParentName: Sorts
NameLevel: 1
AltName: '[Contingency](srd_spells_contingency.md)'
Source: (MDR p340)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 3
Name: Contresort
AltName: '[Counterspell](srd_spells_counterspell.md)'
Type: Abjuration
Level: 3
CastingTime: 1 réaction à utiliser quand vous voyez une créature située dans un rayon de 18 mètres autour de vous lancer un sort
Range: 18 mètres
Components: S
Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p340)(SRD)
Id: spells_hd.md#contresort
ParentLink: spells_hd.md#sorts
Name: Contresort
ParentName: Sorts
NameLevel: 1
AltName: '[Counterspell](srd_spells_counterspell.md)'
Source: (MDR p340)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 4
Name: Contrôle de l'eau
AltName: '[Control Water](srd_spells_control_water.md)'
Type: Transmutation
Level: 4
CastingTime: 1 action
Range: 90 mètres
Components: V, S, M (une goutte d'eau et une pincée de poussière)
Duration: concentration, jusqu'à 10 minutes
Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)'
Source: (MDR p340)
Id: spells_hd.md#contrôle-de-leau
ParentLink: spells_hd.md#sorts
Name: Contrôle de l'eau
ParentName: Sorts
NameLevel: 1
AltName: '[Control Water](srd_spells_control_water.md)'
Source: (MDR p340)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 8
Name: Contrôle du climat
AltName: '[Control Weather](srd_spells_control_weather.md)'
Type: Transmutation
Level: 8
CastingTime: 10 minutes
Range: personnelle (rayon de 7,5 kilomètres)
Components: V, S, M (encens incandescent et un peu de bois et de terre mélangés dans de l'eau)
Duration: concentration, jusqu'à 8 heures
Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)'
Source: (MDR p341)(SRD)
Id: spells_hd.md#contrôle-du-climat
ParentLink: spells_hd.md#sorts
Name: Contrôle du climat
ParentName: Sorts
NameLevel: 1
AltName: '[Control Weather](srd_spells_control_weather.md)'
Source: (MDR p341)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,21 +1,21 @@
---
!SpellItem
Family: SpellHD
Level: 6
Name: Convocations instantanées
AltName: '[Instant Summons](srd_spells_instant_summons.md)'
Type: Invocation
Ritual: rituel
Level: 6
CastingTime: 1 minute
Range: contact
Components: V, S, M (un saphir d'une valeur de 1 000 po)
Duration: jusqu'à dissipation
Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p342)
Ritual: rituel
Id: spells_hd.md#convocations-instantanées
ParentLink: spells_hd.md#sorts
Name: Convocations instantanées
ParentName: Sorts
NameLevel: 1
AltName: '[Instant Summons](srd_spells_instant_summons.md)'
Source: (MDR p342)
Attributes: {}
---
> [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
---
!SpellItem
Family: SpellHD
Level: 5
Name: Coquille antivie
AltName: '[Antilife Shell](srd_spells_antilife_shell.md)'
Type: Abjuration
Level: 5
CastingTime: 1 action
Range: personnelle (3 mètres de rayon)
Components: V, S
Duration: concentration, jusqu'à 1 heure
Classes: '[Druide](hd_druid.md)'
Source: (MDR p342)(SRD)
Id: spells_hd.md#coquille-antivie
ParentLink: spells_hd.md#sorts
Name: Coquille antivie
ParentName: Sorts
NameLevel: 1
AltName: '[Antilife Shell](srd_spells_antilife_shell.md)'
Source: (MDR p342)(SRD)
Attributes: {}
---
> [Sorts](hd_spells.md)

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