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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

File diff suppressed because it is too large Load diff

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 2 Name: Augure
AltName: '[Augury](srd_spells_augury.md)'
Type: Divination Type: Divination
Level: 2
CastingTime: 1 minute CastingTime: 1 minute
Range: personnelle 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) 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 Duration: instantanée
Classes: '[Clerc](hd_cleric.md)' Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p325)(SRD)
Id: spells_hd.md#augure Id: spells_hd.md#augure
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Augure
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Augury](srd_spells_augury.md)'
Source: (MDR p325)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

@ -1,19 +1,19 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: tour de magie Name: Aura du héros
Type: Enchantement Type: Enchantement
Level: tour de magie
CastingTime: 1 action CastingTime: 1 action
Range: personnelle Range: personnelle
Components: V, S Components: V, S
Duration: concentration, jusqu'à 1 minute 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)' 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 Id: spells_hd.md#aura-du-héros
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Aura du héros
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
Source: (MDR p326)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 8 Name: Aura sacrée
AltName: '[Holy Aura](srd_spells_holy_aura.md)'
Type: Abjuration Type: Abjuration
Level: 8
CastingTime: 1 action CastingTime: 1 action
Range: personnelle 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é) 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 Duration: concentration, jusqu'à 1 minute
Classes: '[Clerc](hd_cleric.md)' Classes: '[Clerc](hd_cleric.md)'
Source: (MDR p326)
Id: spells_hd.md#aura-sacrée Id: spells_hd.md#aura-sacrée
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Aura sacrée
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Holy Aura](srd_spells_holy_aura.md)'
Source: (MDR p326)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,21 +1,21 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 2 Name: Bouche magique
AltName: '[Magic Mouth](srd_spells_magic_mouth.md)'
Type: Illusion Type: Illusion
Ritual: rituel Level: 2
CastingTime: 1 minute CastingTime: 1 minute
Range: 9 mètres 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) 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 Duration: jusqu'à dissipation
Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)'
Source: (MDR p328)(SRD)
Ritual: rituel
Id: spells_hd.md#bouche-magique Id: spells_hd.md#bouche-magique
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Bouche magique
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Magic Mouth](srd_spells_magic_mouth.md)'
Source: (MDR p328)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 1 Name: Bouclier
AltName: '[Shield](srd_spells_shield.md)'
Type: Abjuration 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)_ 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 Range: personnelle
Components: V, S Components: V, S
Duration: 1 round Duration: 1 round
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p328)(SRD)
Id: spells_hd.md#bouclier Id: spells_hd.md#bouclier
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Bouclier
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Shield](srd_spells_shield.md)'
Source: (MDR p328)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,19 +1,19 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 3 Name: Catalepsie
Type: Nécromancie Type: Nécromancie
Level: 3
CastingTime: 1 action CastingTime: 1 action
Range: 18 mètres Range: 18 mètres
Components: V, S, M (un petit morceau de linceul) Components: V, S, M (un petit morceau de linceul)
Duration: 1 heure 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)' 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 Id: spells_hd.md#catalepsie
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Catalepsie
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
Source: (MDR p331)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 5 Name: Cercle de téléportation
AltName: '[Teleportation Circle](srd_spells_teleportation_circle.md)'
Type: Invocation Type: Invocation
Level: 5
CastingTime: 1 minute CastingTime: 1 minute
Range: 3 mètres 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) 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 Duration: 1 round
Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' 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 Id: spells_hd.md#cercle-de-téléportation
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Cercle de téléportation
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Teleportation Circle](srd_spells_teleportation_circle.md)'
Source: (MDR p331)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 3 Name: Cercle magique
AltName: '[Magic Circle](srd_spells_magic_circle.md)'
Type: Abjuration Type: Abjuration
Level: 3
CastingTime: 1 minute CastingTime: 1 minute
Range: 3 mètres 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) 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 Duration: 1 heure
Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' 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 Id: spells_hd.md#cercle-magique
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Cercle magique
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Magic Circle](srd_spells_magic_circle.md)'
Source: (MDR p331)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 6 Name: Chaîne d'éclairs
AltName: '[Chain Lightning](srd_spells_chain_lightning.md)'
Type: Évocation Type: Évocation
Level: 6
CastingTime: 1 action CastingTime: 1 action
Range: 450 mètres 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) 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 Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)'
Source: (MDR p332)
Id: spells_hd.md#chaîne-déclairs Id: spells_hd.md#chaîne-déclairs
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Chaîne d'éclairs
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Chain Lightning](srd_spells_chain_lightning.md)'
Source: (MDR p332)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 9 Name: Changement de forme
AltName: '[Shapechange](srd_spells_shapechange.md)'
Type: Transmutation Type: Transmutation
Level: 9
CastingTime: 1 action CastingTime: 1 action
Range: personnelle 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) 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 Duration: concentration, jusqu'à 1 heure
Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)'
Source: (MDR p333)(SRD)
Id: spells_hd.md#changement-de-forme Id: spells_hd.md#changement-de-forme
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Changement de forme
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Shapechange](srd_spells_shapechange.md)'
Source: (MDR p333)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 1 Name: Charme-personne
AltName: '[Charm Person](srd_spells_charm_person.md)'
Type: Enchantement Type: Enchantement
Level: 1
CastingTime: 1 action CastingTime: 1 action
Range: 9 mètres Range: 9 mètres
Components: V, S Components: V, S
Duration: 1 heure 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)' 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 Id: spells_hd.md#charme-personne
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Charme-personne
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Charm Person](srd_spells_charm_person.md)'
Source: (MDR p333)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

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

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 3 Name: Clairvoyance
AltName: '[Clairvoyance](srd_spells_clairvoyance.md)'
Type: Divination Type: Divination
Level: 3
CastingTime: 10 minutes CastingTime: 10 minutes
Range: 1,5 kilomètre 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) 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 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)' 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 Id: spells_hd.md#clairvoyance
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Clairvoyance
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Clairvoyance](srd_spells_clairvoyance.md)'
Source: (MDR p334)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 8 Name: Clone
AltName: '[Clone](srd_spells_clone.md)'
Type: Nécromancie Type: Nécromancie
Level: 8
CastingTime: 1 heure CastingTime: 1 heure
Range: contact 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) 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 Duration: instantanée
Classes: '[Magicien](hd_wizard.md)' Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p335)(SRD)
Id: spells_hd.md#clone Id: spells_hd.md#clone
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Clone
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Clone](srd_spells_clone.md)'
Source: (MDR p335)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 4 Name: Coffre secret
AltName: '[Secret Chest](srd_spells_secret_chest.md)'
Type: Invocation Type: Invocation
Level: 4
CastingTime: 1 action CastingTime: 1 action
Range: contact 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) 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 Duration: instantanée
Classes: '[Magicien](hd_wizard.md)' Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p335)
Id: spells_hd.md#coffre-secret Id: spells_hd.md#coffre-secret
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Coffre secret
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Secret Chest](srd_spells_secret_chest.md)'
Source: (MDR p335)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 4 Name: Confusion
AltName: '[Confusion](srd_spells_confusion.md)'
Type: Enchantement Type: Enchantement
Level: 4
CastingTime: 1 action CastingTime: 1 action
Range: 27 mètres Range: 27 mètres
Components: V, S, M (trois coquilles de noix) Components: V, S, M (trois coquilles de noix)
Duration: concentration, jusqu'à 1 minute 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)' 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 Id: spells_hd.md#confusion
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Confusion
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Confusion](srd_spells_confusion.md)'
Source: (MDR p338)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

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

View file

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

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 6 Name: Contingence
AltName: '[Contingency](srd_spells_contingency.md)'
Type: Évocation Type: Évocation
Level: 6
CastingTime: 10 minutes CastingTime: 10 minutes
Range: personnelle 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) 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 Duration: 10 jours
Classes: '[Magicien](hd_wizard.md)' Classes: '[Magicien](hd_wizard.md)'
Source: (MDR p340)(SRD)
Id: spells_hd.md#contingence Id: spells_hd.md#contingence
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Contingence
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Contingency](srd_spells_contingency.md)'
Source: (MDR p340)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 3 Name: Contresort
AltName: '[Counterspell](srd_spells_counterspell.md)'
Type: Abjuration 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 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 Range: 18 mètres
Components: S Components: S
Duration: instantanée Duration: instantanée
Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)'
Source: (MDR p340)(SRD)
Id: spells_hd.md#contresort Id: spells_hd.md#contresort
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Contresort
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Counterspell](srd_spells_counterspell.md)'
Source: (MDR p340)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

@ -1,20 +1,20 @@
--- ---
!SpellItem !SpellItem
Family: SpellHD Family: SpellHD
Level: 8 Name: Contrôle du climat
AltName: '[Control Weather](srd_spells_control_weather.md)'
Type: Transmutation Type: Transmutation
Level: 8
CastingTime: 10 minutes CastingTime: 10 minutes
Range: personnelle (rayon de 7,5 kilomètres) 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) 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 Duration: concentration, jusqu'à 8 heures
Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' 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 Id: spells_hd.md#contrôle-du-climat
ParentLink: spells_hd.md#sorts ParentLink: spells_hd.md#sorts
Name: Contrôle du climat
ParentName: Sorts ParentName: Sorts
NameLevel: 1 NameLevel: 1
AltName: '[Control Weather](srd_spells_control_weather.md)'
Source: (MDR p341)(SRD)
Attributes: {} Attributes: {}
--- ---
> [Sorts](hd_spells.md) > [Sorts](hd_spells.md)

View file

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

View file

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

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