diff --git a/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs index f319c427..38bd719b 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs @@ -55,7 +55,10 @@ namespace AideDeJeu.ViewModels public Item ParseItem(string source, ref ContainerBlock.Enumerator enumerator, Dictionary allItems) { var currentItem = GetNewItem(enumerator.Current); + currentItem.Markdown = string.Empty; PropertyInfo currentProp = null; + Dictionary currentProps = new Dictionary(); + currentProps["Markdown"] = currentItem.GetType().GetProperty("Markdown", BindingFlags.Public | BindingFlags.Instance); if (currentItem != null) { @@ -134,46 +137,50 @@ namespace AideDeJeu.ViewModels { prop.SetValue(currentItem, "", null); currentProp = prop; + currentProps[parsedComment.Name] = prop; } enumerator.MoveNext(); } else { currentProp = null; + currentProps.Remove(parsedComment.Name); enumerator.MoveNext(); } } else // comment html différent de item et property { - var md = enumerator.Current.ToMarkdownString(); - currentItem.Markdown += md; - if (currentProp != null) - { - currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null); - } + AddBlockContent(currentItem, currentProps, enumerator.Current); + //currentItem.Markdown += md; + //if (currentProp != null) + //{ + // currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null); + //} enumerator.MoveNext(); } } else // autre chose qu'un comment html { - var md = enumerator.Current.ToMarkdownString(); - currentItem.Markdown += md; - if (currentProp != null) - { - currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null); - } + AddBlockContent(currentItem, currentProps, enumerator.Current); + //var md = enumerator.Current.ToMarkdownString(); + //currentItem.Markdown += md; + //if (currentProp != null) + //{ + // currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null); + //} enumerator.MoveNext(); } } else // autre chose qu'un block html { ParseItemProperties(source, currentItem, block); - var md = enumerator.Current.ToMarkdownString(); - currentItem.Markdown += md; - if (currentProp != null) - { - currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null); - } + AddBlockContent(currentItem, currentProps, enumerator.Current); + //var md = enumerator.Current.ToMarkdownString(); + //currentItem.Markdown += md; + //if (currentProp != null) + //{ + // currentProp.SetValue(currentItem, currentProp.GetValue(currentItem) + md, null); + //} enumerator.MoveNext(); } } @@ -187,6 +194,17 @@ namespace AideDeJeu.ViewModels return currentItem; } + void AddBlockContent(Item currentItem, Dictionary props, Block block) + { + var md = block.ToMarkdownString(); + foreach (var propkv in props) + { + var prop = propkv.Value; + prop.SetValue(currentItem, prop.GetValue(currentItem) + md, null); + } + } + + public bool ParseItemProperties(string source, Item item, Block block) { switch (block) diff --git a/AideDeJeu/AideDeJeu/Views/PlayerCharacterEditorPage.xaml b/AideDeJeu/AideDeJeu/Views/PlayerCharacterEditorPage.xaml index b97963e0..cded05d7 100644 --- a/AideDeJeu/AideDeJeu/Views/PlayerCharacterEditorPage.xaml +++ b/AideDeJeu/AideDeJeu/Views/PlayerCharacterEditorPage.xaml @@ -57,6 +57,7 @@ + diff --git a/Data/HD/hd_barbarian.md b/Data/HD/hd_barbarian.md index 55675889..742b2cd7 100644 --- a/Data/HD/hd_barbarian.md +++ b/Data/HD/hd_barbarian.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Barbare +AltName: Barbarian (SRD p8) +Source: (MDR p114) Id: barbarian_hd.md#barbare RootId: barbarian_hd.md ParentLink: classes_hd.md -Name: Barbare ParentName: Classes NameLevel: 1 -AltName: Barbarian (SRD p8) -Source: (MDR p114) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_bard.md b/Data/HD/hd_bard.md index d07f4ebb..5292c630 100644 --- a/Data/HD/hd_bard.md +++ b/Data/HD/hd_bard.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Barde +AltName: Bard (SRD p11) +Source: (MDR p121) Id: bard_hd.md#barde RootId: bard_hd.md ParentLink: classes_hd.md -Name: Barde ParentName: Classes NameLevel: 1 -AltName: Bard (SRD p11) -Source: (MDR p121) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_cleric.md b/Data/HD/hd_cleric.md index 54ce84e8..e1a8586a 100644 --- a/Data/HD/hd_cleric.md +++ b/Data/HD/hd_cleric.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Clerc +AltName: Cleric (SRD p15) +Source: (MDR p129) Id: cleric_hd.md#clerc RootId: cleric_hd.md ParentLink: classes_hd.md -Name: Clerc ParentName: Classes NameLevel: 1 -AltName: Cleric (SRD p15) -Source: (MDR p129) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_druid.md b/Data/HD/hd_druid.md index d7819497..82c13c92 100644 --- a/Data/HD/hd_druid.md +++ b/Data/HD/hd_druid.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Druide +AltName: Druid (SRD p17) +Source: (MDR p142) Id: druid_hd.md#druide RootId: druid_hd.md ParentLink: classes_hd.md -Name: Druide ParentName: Classes NameLevel: 1 -AltName: Druid (SRD p17) -Source: (MDR p142) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_fighter.md b/Data/HD/hd_fighter.md index aa07d7f4..a0ca87b3 100644 --- a/Data/HD/hd_fighter.md +++ b/Data/HD/hd_fighter.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Guerrier +AltName: Fighter (SRD p24) +Source: (MDR p160) Id: fighter_hd.md#guerrier RootId: fighter_hd.md ParentLink: classes_hd.md -Name: Guerrier ParentName: Classes NameLevel: 1 -AltName: Fighter (SRD p24) -Source: (MDR p160) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_monk.md b/Data/HD/hd_monk.md index b9bc5a35..6ef304ca 100644 --- a/Data/HD/hd_monk.md +++ b/Data/HD/hd_monk.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Moine +AltName: Monk (SRD p26) +Source: (MDR p176) Id: monk_hd.md#moine RootId: monk_hd.md ParentLink: classes_hd.md -Name: Moine ParentName: Classes NameLevel: 1 -AltName: Monk (SRD p26) -Source: (MDR p176) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_paladin.md b/Data/HD/hd_paladin.md index 481cdf46..c3fedabe 100644 --- a/Data/HD/hd_paladin.md +++ b/Data/HD/hd_paladin.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Paladin +AltName: Paladin (SRD p30) +Source: (MDR p183) Id: paladin_hd.md#paladin RootId: paladin_hd.md ParentLink: classes_hd.md -Name: Paladin ParentName: Classes NameLevel: 1 -AltName: Paladin (SRD p30) -Source: (MDR p183) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_ranger.md b/Data/HD/hd_ranger.md index 749b3291..59b82fce 100644 --- a/Data/HD/hd_ranger.md +++ b/Data/HD/hd_ranger.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Rôdeur +AltName: Ranger (SRD p35) +Source: (MDR p194) Id: ranger_hd.md#rôdeur RootId: ranger_hd.md ParentLink: classes_hd.md -Name: Rôdeur ParentName: Classes NameLevel: 1 -AltName: Ranger (SRD p35) -Source: (MDR p194) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_rogue.md b/Data/HD/hd_rogue.md index 83f8d64d..123d1bdc 100644 --- a/Data/HD/hd_rogue.md +++ b/Data/HD/hd_rogue.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Roublard +AltName: Rogue (SRD p39) +Source: (MDR p202) Id: rogue_hd.md#roublard RootId: rogue_hd.md ParentLink: classes_hd.md -Name: Roublard ParentName: Classes NameLevel: 1 -AltName: Rogue (SRD p39) -Source: (MDR p202) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_sorcerer.md b/Data/HD/hd_sorcerer.md index 8ed2f71c..2b376b3f 100644 --- a/Data/HD/hd_sorcerer.md +++ b/Data/HD/hd_sorcerer.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Ensorceleur +AltName: Sorcerer (SRD p41) +Source: (MDR p152) Id: sorcerer_hd.md#ensorceleur RootId: sorcerer_hd.md ParentLink: classes_hd.md -Name: Ensorceleur ParentName: Classes NameLevel: 1 -AltName: Sorcerer (SRD p41) -Source: (MDR p152) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_spells.md b/Data/HD/hd_spells.md index 8448d361..c118aba4 100644 --- a/Data/HD/hd_spells.md +++ b/Data/HD/hd_spells.md @@ -1,6142 +1,6142 @@ --- !SpellItems +Family: SpellHD Classes: Barde|Clerc|Druide|Ensorceleur|Magicien|Ombrelame|Paladin|Rôdeur|Sorcier Levels: Sorts mineurs|Niveau 1|Niveau 2|Niveau 3|Niveau 4|Niveau 5|Niveau 6|Niveau 7|Niveau 8|Niveau 9 Schools: Abjuration|Divination|Enchantement|Évocation|Illusion|Invocation|Nécromancie|Transmutation Rituals: Rituel Sources: SRD|MDR -Family: SpellHD +Name: Sorts +AltName: '[Spells](srd_spells.md)' SubItems: - !SpellItem Family: SpellHD - Level: 2 + Name: Agrandir/rétrécir + AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une pincée de limaille de fer) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p320)(SRD) Id: spells_hd.md#agrandirrétrécir ParentLink: spells_hd.md#sorts - Name: Agrandir/rétrécir ParentName: Sorts NameLevel: 1 - AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)' - Source: (MDR p320)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Aide + AltName: '[Aid](srd_spells_aid.md)' Type: Abjuration + Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une minuscule bandelette de tissu blanc) Duration: 8 heures Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p320)(SRD) Id: spells_hd.md#aide ParentLink: spells_hd.md#sorts - Name: Aide ParentName: Sorts NameLevel: 1 - AltName: '[Aid](srd_spells_aid.md)' - Source: (MDR p320)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Alarme + AltName: '[Alarm](srd_spells_alarm.md)' Type: Abjuration - Ritual: rituel + Level: 1 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (une minuscule clochette et un filament en argent) Duration: 8 heures Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p320)(SRD) + Ritual: rituel Id: spells_hd.md#alarme ParentLink: spells_hd.md#sorts - Name: Alarme ParentName: Sorts NameLevel: 1 - AltName: '[Alarm](srd_spells_alarm.md)' - Source: (MDR p320)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Allié planaire + AltName: '[Planar Ally](srd_spells_planar_ally.md)' Type: Invocation + Level: 6 CastingTime: 10 minutes Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p320)(SRD) Id: spells_hd.md#allié-planaire ParentLink: spells_hd.md#sorts - Name: Allié planaire ParentName: Sorts NameLevel: 1 - AltName: '[Planar Ally](srd_spells_planar_ally.md)' - Source: (MDR p320)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Amélioration de caractéristique + AltName: '[Enhance Ability](srd_spells_enhance_ability.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (des poils ou des plumes venant d'un animal) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' + Source: (MDR p321)(SRD) Id: spells_hd.md#amélioration-de-caractéristique ParentLink: spells_hd.md#sorts - Name: Amélioration de caractéristique ParentName: Sorts NameLevel: 1 - AltName: '[Enhance Ability](srd_spells_enhance_ability.md)' - Source: (MDR p321)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Amitié avec les animaux + AltName: '[Animal Friendship](srd_spells_animal_friendship.md)' Type: Enchantement + Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un peu de nourriture) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p321)(SRD) Id: spells_hd.md#amitié-avec-les-animaux ParentLink: spells_hd.md#sorts - Name: Amitié avec les animaux ParentName: Sorts NameLevel: 1 - AltName: '[Animal Friendship](srd_spells_animal_friendship.md)' - Source: (MDR p321)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Animation des morts + AltName: '[Animate Dead](srd_spells_animate_dead.md)' Type: Nécromancie + Level: 3 CastingTime: 1 minute Range: 3 mètres Components: V, S, M (une goutte de sang, un lambeau de chair et une pincée de poudre d'os) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' + Source: (MDR p321)(SRD) Id: spells_hd.md#animation-des-morts ParentLink: spells_hd.md#sorts - Name: Animation des morts ParentName: Sorts NameLevel: 1 - AltName: '[Animate Dead](srd_spells_animate_dead.md)' - Source: (MDR p321)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Animation des objets + AltName: '[Animate Objects](srd_spells_animate_objects.md)' Type: Transmutation + Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p322)(SRD) Id: spells_hd.md#animation-des-objets ParentLink: spells_hd.md#sorts - Name: Animation des objets ParentName: Sorts NameLevel: 1 - AltName: '[Animate Objects](srd_spells_animate_objects.md)' - Source: (MDR p322)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Apaisement des émotions + AltName: '[Calm Emotions](srd_spells_calm_emotions.md)' Type: Enchantement + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)' + Source: (MDR p322)(SRD) Id: spells_hd.md#apaisement-des-émotions ParentLink: spells_hd.md#sorts - Name: Apaisement des émotions ParentName: Sorts NameLevel: 1 - AltName: '[Calm Emotions](srd_spells_calm_emotions.md)' - Source: (MDR p322)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Apparence trompeuse + AltName: '[Seeming](srd_spells_seeming.md)' Type: Illusion + Level: 5 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 8 heures Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p323)(SRD) Id: spells_hd.md#apparence-trompeuse ParentLink: spells_hd.md#sorts - Name: Apparence trompeuse ParentName: Sorts NameLevel: 1 - AltName: '[Seeming](srd_spells_seeming.md)' - Source: (MDR p323)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Appel de familier + AltName: '[Find Familiar](srd_spells_find_familiar.md)' Type: Invocation - Ritual: rituel + Level: 1 CastingTime: 1 heure Range: 3 mètres Components: V, S, M (10 po de charbon, d'encens et d'herbe à faire brûler dans un brasero en laiton) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p323)(SRD) + Ritual: rituel Id: spells_hd.md#appel-de-familier ParentLink: spells_hd.md#sorts - Name: Appel de familier ParentName: Sorts NameLevel: 1 - AltName: '[Find Familiar](srd_spells_find_familiar.md)' - Source: (MDR p323)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Appel de la foudre + AltName: '[Call Lightning](srd_spells_call_lightning.md)' Type: Invocation + Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md)' + Source: (MDR p324)(SRD) Id: spells_hd.md#appel-de-la-foudre ParentLink: spells_hd.md#sorts - Name: Appel de la foudre ParentName: Sorts NameLevel: 1 - AltName: '[Call Lightning](srd_spells_call_lightning.md)' - Source: (MDR p324)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Arc enchanté Type: Enchantement + Level: 5 CastingTime: 1 action Range: contact Components: V, S, M (un arc) Duration: 1 minute Classes: '[Rôdeur](hd_ranger.md)' + Source: (MDR p324) Id: spells_hd.md#arc-enchanté ParentLink: spells_hd.md#sorts - Name: Arc enchanté ParentName: Sorts NameLevel: 1 - Source: (MDR p324) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Arme magique + AltName: '[Magic Weapon](srd_spells_magic_weapon.md)' Type: Transmutation + Level: 2 CastingTime: 1 action bonus Range: contact Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Magicien](hd_wizard.md), [Paladin](hd_paladin.md)' + Source: (MDR p324)(SRD) Id: spells_hd.md#arme-magique ParentLink: spells_hd.md#sorts - Name: Arme magique ParentName: Sorts NameLevel: 1 - AltName: '[Magic Weapon](srd_spells_magic_weapon.md)' - Source: (MDR p324)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Arme sainte Type: Transmutation + Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p324) Id: spells_hd.md#arme-sainte ParentLink: spells_hd.md#sorts - Name: Arme sainte ParentName: Sorts NameLevel: 1 - Source: (MDR p324) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Arme spirituelle + AltName: '[Spiritual Weapon](srd_spells_spiritual_weapon.md)' Type: Évocation + Level: 2 CastingTime: 1 action bonus Range: 18 mètres Components: V, S Duration: 1 minute Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p324)(SRD) Id: spells_hd.md#arme-spirituelle ParentLink: spells_hd.md#sorts - Name: Arme spirituelle ParentName: Sorts NameLevel: 1 - AltName: '[Spiritual Weapon](srd_spells_spiritual_weapon.md)' - Source: (MDR p324)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Armure du mage + AltName: '[Mage Armor](srd_spells_mage_armor.md)' Type: Abjuration + Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (un bout de cuir tanné) Duration: 8 heures Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p324)(SRD) Id: spells_hd.md#armure-du-mage ParentLink: spells_hd.md#sorts - Name: Armure du mage ParentName: Sorts NameLevel: 1 - AltName: '[Mage Armor](srd_spells_mage_armor.md)' - Source: (MDR p324)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Arrêt du temps + AltName: '[Time Stop](srd_spells_time_stop.md)' Type: Transmutation + Level: 9 CastingTime: 1 action Range: personnelle Components: V Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p325)(SRD) Id: spells_hd.md#arrêt-du-temps ParentLink: spells_hd.md#sorts - Name: Arrêt du temps ParentName: Sorts NameLevel: 1 - AltName: '[Time Stop](srd_spells_time_stop.md)' - Source: (MDR p325)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Aspersion acide + AltName: '[Acid Splash](srd_spells_acid_splash.md)' Type: Invocation + Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p325)(SRD) Id: spells_hd.md#aspersion-acide ParentLink: spells_hd.md#sorts - Name: Aspersion acide ParentName: Sorts NameLevel: 1 - AltName: '[Acid Splash](srd_spells_acid_splash.md)' - Source: (MDR p325)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Assassin imaginaire + AltName: '[Phantasmal Killer](srd_spells_phantasmal_killer.md)' Type: Illusion + Level: 4 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p325)(SRD) Id: spells_hd.md#assassin-imaginaire ParentLink: spells_hd.md#sorts - Name: Assassin imaginaire ParentName: Sorts NameLevel: 1 - AltName: '[Phantasmal Killer](srd_spells_phantasmal_killer.md)' - Source: (MDR p325)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Assistance + AltName: '[Guidance](srd_spells_guidance.md)' Type: Divination + Level: tour de magie CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p325)(SRD) Id: spells_hd.md#assistance ParentLink: spells_hd.md#sorts - Name: Assistance ParentName: Sorts NameLevel: 1 - AltName: '[Guidance](srd_spells_guidance.md)' - Source: (MDR p325)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Augure + AltName: '[Augury](srd_spells_augury.md)' Type: Divination + Level: 2 CastingTime: 1 minute Range: personnelle Components: V, S, M (bâtonnets, os ou petits objets similaires d'une valeur minimale de 25 po, portant des marques spéciales) Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p325)(SRD) Id: spells_hd.md#augure ParentLink: spells_hd.md#sorts - Name: Augure ParentName: Sorts NameLevel: 1 - AltName: '[Augury](srd_spells_augury.md)' - Source: (MDR p325)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Aura de force Type: Abjuration + Level: 5 CastingTime: 1 action Range: 9 mètres Components: V Duration: Concentration, jusqu'à 10 minutes Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p325) Id: spells_hd.md#aura-de-force ParentLink: spells_hd.md#sorts - Name: Aura de force ParentName: Sorts NameLevel: 1 - Source: (MDR p325) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Aura du héros Type: Enchantement + Level: tour de magie CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p326) Id: spells_hd.md#aura-du-héros ParentLink: spells_hd.md#sorts - Name: Aura du héros ParentName: Sorts NameLevel: 1 - Source: (MDR p326) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Aura magique de l'arcaniste + AltName: "[Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)" Type: Illusion + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (un petit carré de soie) Duration: 24 heures Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p326) Id: spells_hd.md#aura-magique-de-larcaniste ParentLink: spells_hd.md#sorts - Name: Aura magique de l'arcaniste ParentName: Sorts NameLevel: 1 - AltName: "[Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)" - Source: (MDR p326) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Aura sacrée + AltName: '[Holy Aura](srd_spells_holy_aura.md)' Type: Abjuration + Level: 8 CastingTime: 1 action Range: personnelle Components: V, S, M (un petit reliquaire d'une valeur minimum de 1 000 po contenant une relique sacrée, comme un bout de la robe d'un saint ou un morceau de parchemin prélevé sur un texte sacré) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p326) Id: spells_hd.md#aura-sacrée ParentLink: spells_hd.md#sorts - Name: Aura sacrée ParentName: Sorts NameLevel: 1 - AltName: '[Holy Aura](srd_spells_holy_aura.md)' - Source: (MDR p326) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Bagou + AltName: '[Glibness](srd_spells_glibness.md)' Type: Transmutation + Level: 8 CastingTime: 1 action Range: personnelle Components: V Duration: 1 heure Classes: '[Barde](hd_bard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p326)(SRD) Id: spells_hd.md#bagou ParentLink: spells_hd.md#sorts - Name: Bagou ParentName: Sorts NameLevel: 1 - AltName: '[Glibness](srd_spells_glibness.md)' - Source: (MDR p326)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Baies nourricières + AltName: '[Goodberry](srd_spells_goodberry.md)' Type: Transmutation + Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (un brin de gui) Duration: instantanée Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p326)(SRD) Id: spells_hd.md#baies-nourricières ParentLink: spells_hd.md#sorts - Name: Baies nourricières ParentName: Sorts NameLevel: 1 - AltName: '[Goodberry](srd_spells_goodberry.md)' - Source: (MDR p326)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Balisage + AltName: '[Guiding Bolt](srd_spells_guiding_bolt.md)' Type: Évocation + Level: 1 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: 1 round Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p327)(SRD) Id: spells_hd.md#balisage ParentLink: spells_hd.md#sorts - Name: Balisage ParentName: Sorts NameLevel: 1 - AltName: '[Guiding Bolt](srd_spells_guiding_bolt.md)' - Source: (MDR p327)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Bannissement + AltName: '[Banishment](srd_spells_banishment.md)' Type: Abjuration + Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un objet qui répugne à la cible) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' + Source: (MDR p327)(SRD) Id: spells_hd.md#bannissement ParentLink: spells_hd.md#sorts - Name: Bannissement ParentName: Sorts NameLevel: 1 - AltName: '[Banishment](srd_spells_banishment.md)' - Source: (MDR p327)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Barrière de lames + AltName: '[Blade Barrier](srd_spells_blade_barrier.md)' Type: Évocation + Level: 6 CastingTime: 1 action Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p327)(SRD) Id: spells_hd.md#barrière-de-lames ParentLink: spells_hd.md#sorts - Name: Barrière de lames ParentName: Sorts NameLevel: 1 - AltName: '[Blade Barrier](srd_spells_blade_barrier.md)' - Source: (MDR p327)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Bénédiction + AltName: '[Bless](srd_spells_bless.md)' Type: Enchantement + Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un peu d'eau bénite à asperger) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p327)(SRD) Id: spells_hd.md#bénédiction ParentLink: spells_hd.md#sorts - Name: Bénédiction ParentName: Sorts NameLevel: 1 - AltName: '[Bless](srd_spells_bless.md)' - Source: (MDR p327)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Bénédiction héroïque Type: Divination + Level: 3 CastingTime: 1 action Range: 18 mètres Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p327) Id: spells_hd.md#bénédiction-héroïque ParentLink: spells_hd.md#sorts - Name: Bénédiction héroïque ParentName: Sorts NameLevel: 1 - Source: (MDR p327) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Blessure + AltName: '[Inflict Wounds](srd_spells_inflict_wounds.md)' Type: Nécromancie + Level: 1 CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p327)(SRD) Id: spells_hd.md#blessure ParentLink: spells_hd.md#sorts - Name: Blessure ParentName: Sorts NameLevel: 1 - AltName: '[Inflict Wounds](srd_spells_inflict_wounds.md)' - Source: (MDR p327)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Bouche magique + AltName: '[Magic Mouth](srd_spells_magic_mouth.md)' Type: Illusion - Ritual: rituel + Level: 2 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (un rayon de miel et de la poussière de jade d'une valeur de 10 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p328)(SRD) + Ritual: rituel Id: spells_hd.md#bouche-magique ParentLink: spells_hd.md#sorts - Name: Bouche magique ParentName: Sorts NameLevel: 1 - AltName: '[Magic Mouth](srd_spells_magic_mouth.md)' - Source: (MDR p328)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Bouclier + AltName: '[Shield](srd_spells_shield.md)' Type: Abjuration + Level: 1 CastingTime: 1 réaction à effectuer lorsque vous êtes touché par une attaque ou un sort de _[projectile magique](hd_spells_projectile_magique.md)_ Range: personnelle Components: V, S Duration: 1 round Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p328)(SRD) Id: spells_hd.md#bouclier ParentLink: spells_hd.md#sorts - Name: Bouclier ParentName: Sorts NameLevel: 1 - AltName: '[Shield](srd_spells_shield.md)' - Source: (MDR p328)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Bouclier de feu + AltName: '[Fire Shield](srd_spells_fire_shield.md)' Type: Évocation + Level: 4 CastingTime: 1 action Range: personnelle Components: V, S, M (un morceau de phosphore ou une luciole) Duration: 10 minutes Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p328)(SRD) Id: spells_hd.md#bouclier-de-feu ParentLink: spells_hd.md#sorts - Name: Bouclier de feu ParentName: Sorts NameLevel: 1 - AltName: '[Fire Shield](srd_spells_fire_shield.md)' - Source: (MDR p328)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Bouclier de la foi + AltName: '[Shield of Faith](srd_spells_shield_of_faith.md)' Type: Abjuration + Level: 1 CastingTime: 1 action bonus Range: 18 mètres Components: V, S, M (un petit parchemin avec un extrait de texte sacré) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p328)(SRD) Id: spells_hd.md#bouclier-de-la-foi ParentLink: spells_hd.md#sorts - Name: Bouclier de la foi ParentName: Sorts NameLevel: 1 - AltName: '[Shield of Faith](srd_spells_shield_of_faith.md)' - Source: (MDR p328)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Bouffée de poison + AltName: '[Poison Spray](srd_spells_poison_spray.md)' Type: Invocation + Level: tour de magie CastingTime: 1 action Range: 3 mètres Components: V, S Duration: instantanée Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p328)(SRD) Id: spells_hd.md#bouffée-de-poison ParentLink: spells_hd.md#sorts - Name: Bouffée de poison ParentName: Sorts NameLevel: 1 - AltName: '[Poison Spray](srd_spells_poison_spray.md)' - Source: (MDR p328)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Boule de feu + AltName: '[Fireball](srd_spells_fireball.md)' Type: Évocation + Level: 3 CastingTime: 1 action Range: 45 mètres Components: V, S, M (une petite boule de guano de chauve-souris et du soufre) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p328)(SRD) Id: spells_hd.md#boule-de-feu ParentLink: spells_hd.md#sorts - Name: Boule de feu ParentName: Sorts NameLevel: 1 - AltName: '[Fireball](srd_spells_fireball.md)' - Source: (MDR p328)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Boule de feu à explosion retardée + AltName: '[Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)' Type: Évocation + Level: 7 CastingTime: 1 action Range: 45 mètres Components: V, S, M (une petite boule de guano de chauve-souris et du soufre) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p329)(SRD) Id: spells_hd.md#boule-de-feu-à-explosion-retardée ParentLink: spells_hd.md#sorts - Name: Boule de feu à explosion retardée ParentName: Sorts NameLevel: 1 - AltName: '[Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)' - Source: (MDR p329)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Bourrasque + AltName: '[Gust of Wind](srd_spells_gust_of_wind.md)' Type: Évocation + Level: 2 CastingTime: 1 action Range: personnelle (ligne de 18 mètres) Components: V, S, M (une graine de légume) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p329)(SRD) Id: spells_hd.md#bourrasque ParentLink: spells_hd.md#sorts - Name: Bourrasque ParentName: Sorts NameLevel: 1 - AltName: '[Gust of Wind](srd_spells_gust_of_wind.md)' - Source: (MDR p329)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Briser + AltName: '[Shatter](srd_spells_shatter.md)' Type: Évocation + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un éclat de mica) Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p330)(SRD) Id: spells_hd.md#briser ParentLink: spells_hd.md#sorts - Name: Briser ParentName: Sorts NameLevel: 1 - AltName: '[Shatter](srd_spells_shatter.md)' - Source: (MDR p330)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Brûlure du juste Type: Évocation + Level: 1 CastingTime: 1 action Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p330) Id: spells_hd.md#brûlure-du-juste ParentLink: spells_hd.md#sorts - Name: Brûlure du juste ParentName: Sorts NameLevel: 1 - Source: (MDR p330) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Cage de force + AltName: '[Forcecage](srd_spells_forcecage.md)' Type: Évocation + Level: 7 CastingTime: 1 action Range: 30 mètres Components: V, S, M (poussière de rubis d'une valeur de 1 500 po) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p330)(SRD) Id: spells_hd.md#cage-de-force ParentLink: spells_hd.md#sorts - Name: Cage de force ParentName: Sorts NameLevel: 1 - AltName: '[Forcecage](srd_spells_forcecage.md)' - Source: (MDR p330)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Caresse du vampire + AltName: '[Vampiric Touch](srd_spells_vampiric_touch.md)' Type: Nécromancie + Level: 3 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p330)(SRD) Id: spells_hd.md#caresse-du-vampire ParentLink: spells_hd.md#sorts - Name: Caresse du vampire ParentName: Sorts NameLevel: 1 - AltName: '[Vampiric Touch](srd_spells_vampiric_touch.md)' - Source: (MDR p330)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Catalepsie Type: Nécromancie + Level: 3 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un petit morceau de linceul) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p331) Id: spells_hd.md#catalepsie ParentLink: spells_hd.md#sorts - Name: Catalepsie ParentName: Sorts NameLevel: 1 - Source: (MDR p331) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Cécité/surdité + AltName: '[Blindness/Deafness](srd_spells_blindnessdeafness.md)' Type: Nécromancie + Level: 2 CastingTime: 1 action Range: 9 mètres Components: V Duration: 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p331)(SRD) Id: spells_hd.md#cécitésurdité ParentLink: spells_hd.md#sorts - Name: Cécité/surdité ParentName: Sorts NameLevel: 1 - AltName: '[Blindness/Deafness](srd_spells_blindnessdeafness.md)' - Source: (MDR p331)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Cercle de mort + AltName: '[Circle of Death](srd_spells_circle_of_death.md)' Type: Nécromancie + Level: 6 CastingTime: 1 action Range: 45 mètres Components: V, S, M (la poudre d'une perle noire broyée d'une valeur minimale de 500 po) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p331)(SRD) Id: spells_hd.md#cercle-de-mort ParentLink: spells_hd.md#sorts - Name: Cercle de mort ParentName: Sorts NameLevel: 1 - AltName: '[Circle of Death](srd_spells_circle_of_death.md)' - Source: (MDR p331)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Cercle de téléportation + AltName: '[Teleportation Circle](srd_spells_teleportation_circle.md)' Type: Invocation + Level: 5 CastingTime: 1 minute Range: 3 mètres Components: V, M (des craies et des encres rares contenant des extraits de pierres précieuses pour une valeur de 50 po, que le sort consume) Duration: 1 round Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p331)(SRD) Id: spells_hd.md#cercle-de-téléportation ParentLink: spells_hd.md#sorts - Name: Cercle de téléportation ParentName: Sorts NameLevel: 1 - AltName: '[Teleportation Circle](srd_spells_teleportation_circle.md)' - Source: (MDR p331)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Cercle magique + AltName: '[Magic Circle](srd_spells_magic_circle.md)' Type: Abjuration + Level: 3 CastingTime: 1 minute Range: 3 mètres Components: V, S, M (eau bénite ou poudre d'argent et de fer d'une valeur minimale de 100 po, que le sort consume) Duration: 1 heure Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' + Source: (MDR p331)(SRD) Id: spells_hd.md#cercle-magique ParentLink: spells_hd.md#sorts - Name: Cercle magique ParentName: Sorts NameLevel: 1 - AltName: '[Magic Circle](srd_spells_magic_circle.md)' - Source: (MDR p331)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Chaîne d'éclairs + AltName: '[Chain Lightning](srd_spells_chain_lightning.md)' Type: Évocation + Level: 6 CastingTime: 1 action Range: 450 mètres Components: V, S, M (un éclat d'ambre, de verre ou de cristal, trois épingles en argent et un morceau de fourrure) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p332) Id: spells_hd.md#chaîne-déclairs ParentLink: spells_hd.md#sorts - Name: Chaîne d'éclairs ParentName: Sorts NameLevel: 1 - AltName: '[Chain Lightning](srd_spells_chain_lightning.md)' - Source: (MDR p332) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Champ antimagie + AltName: '[Antimagic Field](srd_spells_antimagic_field.md)' Type: Abjuration + Level: 8 CastingTime: 1 action Range: personnelle (sphère de 3 mètres de rayon) Components: V, S, M (une pincée de poudre de fer ou de limaille) Duration: concentration, jusqu'à 1 heure Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' + Source: (MDR p332)(SRD) Id: spells_hd.md#champ-antimagie ParentLink: spells_hd.md#sorts - Name: Champ antimagie ParentName: Sorts NameLevel: 1 - AltName: '[Antimagic Field](srd_spells_antimagic_field.md)' - Source: (MDR p332)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Changement de forme + AltName: '[Shapechange](srd_spells_shapechange.md)' Type: Transmutation + Level: 9 CastingTime: 1 action Range: personnelle Components: V, S, M (un diadème de jade d'une valeur minimale de 1 500 po, que vous devez coiffer avant de lancer le sort) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p333)(SRD) Id: spells_hd.md#changement-de-forme ParentLink: spells_hd.md#sorts - Name: Changement de forme ParentName: Sorts NameLevel: 1 - AltName: '[Shapechange](srd_spells_shapechange.md)' - Source: (MDR p333)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Changement de plan + AltName: '[Plane Shift](srd_spells_plane_shift.md)' Type: Invocation + Level: 7 CastingTime: 1 action Range: contact Components: V, S, M (un diapason de métal valant au moins 250 po, harmonisé avec un plan d'existence donné) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p333)(SRD) Id: spells_hd.md#changement-de-plan ParentLink: spells_hd.md#sorts - Name: Changement de plan ParentName: Sorts NameLevel: 1 - AltName: '[Plane Shift](srd_spells_plane_shift.md)' - Source: (MDR p333)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Charme-personne + AltName: '[Charm Person](srd_spells_charm_person.md)' Type: Enchantement + Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 heure Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p333)(SRD) Id: spells_hd.md#charme-personne ParentLink: spells_hd.md#sorts - Name: Charme-personne ParentName: Sorts NameLevel: 1 - AltName: '[Charm Person](srd_spells_charm_person.md)' - Source: (MDR p333)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Chauffer le métal + AltName: '[Heat Metal](srd_spells_heat_metal.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un bout de fer et une flamme) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md)' + Source: (MDR p334)(SRD) Id: spells_hd.md#chauffer-le-métal ParentLink: spells_hd.md#sorts - Name: Chauffer le métal ParentName: Sorts NameLevel: 1 - AltName: '[Heat Metal](srd_spells_heat_metal.md)' - Source: (MDR p334)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Chien de garde + AltName: '[Faithful Hound](srd_spells_faithful_hound.md)' Type: Invocation + Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un petit sifflet en argent, un éclat d'os et une ficelle) Duration: 8 heures Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p334) Id: spells_hd.md#chien-de-garde ParentLink: spells_hd.md#sorts - Name: Chien de garde ParentName: Sorts NameLevel: 1 - AltName: '[Faithful Hound](srd_spells_faithful_hound.md)' - Source: (MDR p334) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Choc des titans Type: Enchantement + Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p334) Id: spells_hd.md#choc-des-titans ParentLink: spells_hd.md#sorts - Name: Choc des titans ParentName: Sorts NameLevel: 1 - Source: (MDR p334) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Clairvoyance + AltName: '[Clairvoyance](srd_spells_clairvoyance.md)' Type: Divination + Level: 3 CastingTime: 10 minutes Range: 1,5 kilomètre Components: V, S, M (un focaliseur d'une valeur minimale de 100 po, soit une corne incrustée de pierreries pour l'ouïe, soit un oeil de verre pour la vue) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p334)(SRD) Id: spells_hd.md#clairvoyance ParentLink: spells_hd.md#sorts - Name: Clairvoyance ParentName: Sorts NameLevel: 1 - AltName: '[Clairvoyance](srd_spells_clairvoyance.md)' - Source: (MDR p334)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Clignotement + AltName: '[Blink](srd_spells_blink.md)' Type: Transmutation + Level: 3 CastingTime: 1 action Range: personnelle Components: V, S Duration: 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p334)(SRD) Id: spells_hd.md#clignotement ParentLink: spells_hd.md#sorts - Name: Clignotement ParentName: Sorts NameLevel: 1 - AltName: '[Blink](srd_spells_blink.md)' - Source: (MDR p334)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Clone + AltName: '[Clone](srd_spells_clone.md)' Type: Nécromancie + Level: 8 CastingTime: 1 heure Range: contact Components: V, S, M (un diamant valant au moins 1 000 po et un cube d'au moins 2,5 centimètres d'arête de chair de la créature à cloner, le sort consommant ces deux composantes, ainsi qu'un réceptacle d'une valeur minimale de 2 000 po qui dispose d'un couvercle susceptible d'être scellé, et assez grand pour contenir une créature de taille M, comme une grande urne, un cercueil, un cavité remplie de boue creusée dans la terre ou un récipient de cristal rempli d'eau salée) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p335)(SRD) Id: spells_hd.md#clone ParentLink: spells_hd.md#sorts - Name: Clone ParentName: Sorts NameLevel: 1 - AltName: '[Clone](srd_spells_clone.md)' - Source: (MDR p335)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Coercition mystique + AltName: '[Geas](srd_spells_geas.md)' Type: Enchantement + Level: 5 CastingTime: 1 minute Range: 18 mètres Components: V Duration: 30 jours Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md)' + Source: (MDR p335)(SRD) Id: spells_hd.md#coercition-mystique ParentLink: spells_hd.md#sorts - Name: Coercition mystique ParentName: Sorts NameLevel: 1 - AltName: '[Geas](srd_spells_geas.md)' - Source: (MDR p335)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Coffre secret + AltName: '[Secret Chest](srd_spells_secret_chest.md)' Type: Invocation + Level: 4 CastingTime: 1 action Range: contact Components: V, S, M (un superbe coffre de 90x60x60 centimètres, fait de matériaux rares d'une valeur minimale de 5 000 po et une réplique du coffre de taille TP, faite des mêmes matériaux et valant au moins 50 po) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p335) Id: spells_hd.md#coffre-secret ParentLink: spells_hd.md#sorts - Name: Coffre secret ParentName: Sorts NameLevel: 1 - AltName: '[Secret Chest](srd_spells_secret_chest.md)' - Source: (MDR p335) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Colère des damnés Type: Invocation + Level: 3 CastingTime: 1 action Range: 30 mètres Components: V, S, M (un peu de cendre et de poussière d'os) Duration: concentration, jusqu'à 1 minute Classes: '[Sorcier](hd_warlock.md)' + Source: (MDR p336) Id: spells_hd.md#colère-des-damnés ParentLink: spells_hd.md#sorts - Name: Colère des damnés ParentName: Sorts NameLevel: 1 - Source: (MDR p336) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Collet magique Type: Invocation + Level: 2 CastingTime: 1 action Range: 12 mètres Components: V, S, M (une ficelle) Duration: 1 heure Classes: '[Rôdeur](hd_ranger.md)' + Source: (MDR p336) Id: spells_hd.md#collet-magique ParentLink: spells_hd.md#sorts - Name: Collet magique ParentName: Sorts NameLevel: 1 - Source: (MDR p336) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Colonne de flamme + AltName: '[Flame Strike](srd_spells_flame_strike.md)' Type: Évocation + Level: 5 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une pincée de soufre) Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p336)(SRD) Id: spells_hd.md#colonne-de-flamme ParentLink: spells_hd.md#sorts - Name: Colonne de flamme ParentName: Sorts NameLevel: 1 - AltName: '[Flame Strike](srd_spells_flame_strike.md)' - Source: (MDR p336)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Communication avec les animaux + AltName: '[Speak with Animals](srd_spells_speak_with_animals.md)' Type: Divination - Ritual: rituel + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S Duration: 10 minutes Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p336)(SRD) + Ritual: rituel Id: spells_hd.md#communication-avec-les-animaux ParentLink: spells_hd.md#sorts - Name: Communication avec les animaux ParentName: Sorts NameLevel: 1 - AltName: '[Speak with Animals](srd_spells_speak_with_animals.md)' - Source: (MDR p336)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Communication avec les morts + AltName: '[Speak with Dead](srd_spells_speak_with_dead.md)' Type: Nécromancie + Level: 3 CastingTime: 1 action Range: 3 mètres Components: V, S, M (encens incandescent) Duration: 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)' + Source: (MDR p336)(SRD) Id: spells_hd.md#communication-avec-les-morts ParentLink: spells_hd.md#sorts - Name: Communication avec les morts ParentName: Sorts NameLevel: 1 - AltName: '[Speak with Dead](srd_spells_speak_with_dead.md)' - Source: (MDR p336)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Communication avec les plantes + AltName: '[Speak with Plants](srd_spells_speak_with_plants.md)' Type: Transmutation + Level: 3 CastingTime: 1 action Range: personnelle (9 mètres de rayon) Components: V, S Duration: 10 minutes Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p337)(SRD) Id: spells_hd.md#communication-avec-les-plantes ParentLink: spells_hd.md#sorts - Name: Communication avec les plantes ParentName: Sorts NameLevel: 1 - AltName: '[Speak with Plants](srd_spells_speak_with_plants.md)' - Source: (MDR p337)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Communion + AltName: '[Commune](srd_spells_commune.md)' Type: Divination - Ritual: rituel + Level: 5 CastingTime: 1 minute Range: personnelle Components: V, S, M (de l'encens et une fiole d'eau bénite ou maudite) Duration: 1 minute Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p337)(SRD) + Ritual: rituel Id: spells_hd.md#communion ParentLink: spells_hd.md#sorts - Name: Communion ParentName: Sorts NameLevel: 1 - AltName: '[Commune](srd_spells_commune.md)' - Source: (MDR p337)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Communion avec la nature + AltName: '[Commune with Nature](srd_spells_commune_with_nature.md)' Type: Divination - Ritual: rituel + Level: 5 CastingTime: 1 minute Range: personnelle Components: V, S Duration: instantanée Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p337)(SRD) + Ritual: rituel Id: spells_hd.md#communion-avec-la-nature ParentLink: spells_hd.md#sorts - Name: Communion avec la nature ParentName: Sorts NameLevel: 1 - AltName: '[Commune with Nature](srd_spells_commune_with_nature.md)' - Source: (MDR p337)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Compagnon animal Type: Enchantement + Level: 2 CastingTime: 1 minute Range: 12 mètres Components: V, S, M (un peu de nourriture adaptée à l'animal) Duration: 24 heures Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p337) Id: spells_hd.md#compagnon-animal ParentLink: spells_hd.md#sorts - Name: Compagnon animal ParentName: Sorts NameLevel: 1 - Source: (MDR p337) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Compréhension des langues + AltName: '[Comprehend Languages](srd_spells_comprehend_languages.md)' Type: Divination - Ritual: rituel + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (une pincée de suie et de sel) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p338)(SRD) + Ritual: rituel Id: spells_hd.md#compréhension-des-langues ParentLink: spells_hd.md#sorts - Name: Compréhension des langues ParentName: Sorts NameLevel: 1 - AltName: '[Comprehend Languages](srd_spells_comprehend_languages.md)' - Source: (MDR p338)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Compulsion + AltName: '[Compulsion](srd_spells_compulsion.md)' Type: Enchantement + Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p338)(SRD) Id: spells_hd.md#compulsion ParentLink: spells_hd.md#sorts - Name: Compulsion ParentName: Sorts NameLevel: 1 - AltName: '[Compulsion](srd_spells_compulsion.md)' - Source: (MDR p338)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Cône de froid + AltName: '[Cone of Cold](srd_spells_cone_of_cold.md)' Type: Évocation + Level: 5 CastingTime: 1 action Range: personnelle (cône de 18 mètres) Components: V, S, M (un petit cône de cristal ou de verre) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p338)(SRD) Id: spells_hd.md#cône-de-froid ParentLink: spells_hd.md#sorts - Name: Cône de froid ParentName: Sorts NameLevel: 1 - AltName: '[Cone of Cold](srd_spells_cone_of_cold.md)' - Source: (MDR p338)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Confusion + AltName: '[Confusion](srd_spells_confusion.md)' Type: Enchantement + Level: 4 CastingTime: 1 action Range: 27 mètres Components: V, S, M (trois coquilles de noix) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p338)(SRD) Id: spells_hd.md#confusion ParentLink: spells_hd.md#sorts - Name: Confusion ParentName: Sorts NameLevel: 1 - AltName: '[Confusion](srd_spells_confusion.md)' - Source: (MDR p338)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Contact glacial + AltName: '[Chill Touch](srd_spells_chill_touch.md)' Type: Nécromancie + Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S Duration: 1 round Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p339)(SRD) Id: spells_hd.md#contact-glacial ParentLink: spells_hd.md#sorts - Name: Contact glacial ParentName: Sorts NameLevel: 1 - AltName: '[Chill Touch](srd_spells_chill_touch.md)' - Source: (MDR p339)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Contacter un autre plan + AltName: '[Contact Other Plane](srd_spells_contact_other_plane.md)' Type: Divination - Ritual: rituel + Level: 5 CastingTime: 1 minute Range: personnelle Components: V Duration: 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p339)(SRD) + Ritual: rituel Id: spells_hd.md#contacter-un-autre-plan ParentLink: spells_hd.md#sorts - Name: Contacter un autre plan ParentName: Sorts NameLevel: 1 - AltName: '[Contact Other Plane](srd_spells_contact_other_plane.md)' - Source: (MDR p339)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Contagion + AltName: '[Contagion](srd_spells_contagion.md)' Type: Nécromancie + Level: 5 CastingTime: 1 action Range: contact Components: V, S Duration: 7 jours Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p339)(SRD) Id: spells_hd.md#contagion ParentLink: spells_hd.md#sorts - Name: Contagion ParentName: Sorts NameLevel: 1 - AltName: '[Contagion](srd_spells_contagion.md)' - Source: (MDR p339)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Contamination + AltName: '[Harm](srd_spells_harm.md)' Type: Nécromancie + Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p340)(SRD) Id: spells_hd.md#contamination ParentLink: spells_hd.md#sorts - Name: Contamination ParentName: Sorts NameLevel: 1 - AltName: '[Harm](srd_spells_harm.md)' - Source: (MDR p340)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Contingence + AltName: '[Contingency](srd_spells_contingency.md)' Type: Évocation + Level: 6 CastingTime: 10 minutes Range: personnelle Components: V, S, M (une statuette de vous taillée dans l'ivoire et ornée de gemmes d'une valeur minimum de 1 500 po) Duration: 10 jours Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p340)(SRD) Id: spells_hd.md#contingence ParentLink: spells_hd.md#sorts - Name: Contingence ParentName: Sorts NameLevel: 1 - AltName: '[Contingency](srd_spells_contingency.md)' - Source: (MDR p340)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Contresort + AltName: '[Counterspell](srd_spells_counterspell.md)' Type: Abjuration + Level: 3 CastingTime: 1 réaction à utiliser quand vous voyez une créature située dans un rayon de 18 mètres autour de vous lancer un sort Range: 18 mètres Components: S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p340)(SRD) Id: spells_hd.md#contresort ParentLink: spells_hd.md#sorts - Name: Contresort ParentName: Sorts NameLevel: 1 - AltName: '[Counterspell](srd_spells_counterspell.md)' - Source: (MDR p340)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Contrôle de l'eau + AltName: '[Control Water](srd_spells_control_water.md)' Type: Transmutation + Level: 4 CastingTime: 1 action Range: 90 mètres Components: V, S, M (une goutte d'eau et une pincée de poussière) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p340) Id: spells_hd.md#contrôle-de-leau ParentLink: spells_hd.md#sorts - Name: Contrôle de l'eau ParentName: Sorts NameLevel: 1 - AltName: '[Control Water](srd_spells_control_water.md)' - Source: (MDR p340) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Contrôle du climat + AltName: '[Control Weather](srd_spells_control_weather.md)' Type: Transmutation + Level: 8 CastingTime: 10 minutes Range: personnelle (rayon de 7,5 kilomètres) Components: V, S, M (encens incandescent et un peu de bois et de terre mélangés dans de l'eau) Duration: concentration, jusqu'à 8 heures Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p341)(SRD) Id: spells_hd.md#contrôle-du-climat ParentLink: spells_hd.md#sorts - Name: Contrôle du climat ParentName: Sorts NameLevel: 1 - AltName: '[Control Weather](srd_spells_control_weather.md)' - Source: (MDR p341)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Convocations instantanées + AltName: '[Instant Summons](srd_spells_instant_summons.md)' Type: Invocation - Ritual: rituel + Level: 6 CastingTime: 1 minute Range: contact Components: V, S, M (un saphir d'une valeur de 1 000 po) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p342) + Ritual: rituel Id: spells_hd.md#convocations-instantanées ParentLink: spells_hd.md#sorts - Name: Convocations instantanées ParentName: Sorts NameLevel: 1 - AltName: '[Instant Summons](srd_spells_instant_summons.md)' - Source: (MDR p342) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Coquille antivie + AltName: '[Antilife Shell](srd_spells_antilife_shell.md)' Type: Abjuration + Level: 5 CastingTime: 1 action Range: personnelle (3 mètres de rayon) Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md)' + Source: (MDR p342)(SRD) Id: spells_hd.md#coquille-antivie ParentLink: spells_hd.md#sorts - Name: Coquille antivie ParentName: Sorts NameLevel: 1 - AltName: '[Antilife Shell](srd_spells_antilife_shell.md)' - Source: (MDR p342)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Corde enchantée + AltName: '[Rope Trick](srd_spells_rope_trick.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (extrait de maïs en poudre et boucle de parchemin torsadé) Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p342)(SRD) Id: spells_hd.md#corde-enchantée ParentLink: spells_hd.md#sorts - Name: Corde enchantée ParentName: Sorts NameLevel: 1 - AltName: '[Rope Trick](srd_spells_rope_trick.md)' - Source: (MDR p342)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Couleurs dansantes + AltName: '[Color Spray](srd_spells_color_spray.md)' Type: Illusion + Level: 1 CastingTime: 1 action Range: personnelle (cône de 4,50 mètres) Components: V, S, M (une poignée de poudre ou de sable, colorée en rouge, jaune et bleu) Duration: 1 round Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p343)(SRD) Id: spells_hd.md#couleurs-dansantes ParentLink: spells_hd.md#sorts - Name: Couleurs dansantes ParentName: Sorts NameLevel: 1 - AltName: '[Color Spray](srd_spells_color_spray.md)' - Source: (MDR p343)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Création + AltName: '[Creation](srd_spells_creation.md)' Type: Illusion + Level: 5 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (un petit bout de matière de même type que l'objet que vous voulez créer) Duration: spéciale Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p343)(SRD) Id: spells_hd.md#création ParentLink: spells_hd.md#sorts - Name: Création ParentName: Sorts NameLevel: 1 - AltName: '[Creation](srd_spells_creation.md)' - Source: (MDR p343)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Création de mort-vivant + AltName: '[Create Undead](srd_spells_create_undead.md)' Type: Nécromancie + Level: 6 CastingTime: 1 minute Range: 3 mètres Components: V, S, M (un pot d'argile rempli de poussière tombale, un pot d'argile rempli d'eau saumâtre et un onyx noir d'une valeur de 150 po par cadavre) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p343)(SRD) Id: spells_hd.md#création-de-mort-vivant ParentLink: spells_hd.md#sorts - Name: Création de mort-vivant ParentName: Sorts NameLevel: 1 - AltName: '[Create Undead](srd_spells_create_undead.md)' - Source: (MDR p343)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Création de nourriture et d'eau + AltName: '[Create Food and Water](srd_spells_create_food_and_water.md)' Type: Invocation + Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p344) Id: spells_hd.md#création-de-nourriture-et-deau ParentLink: spells_hd.md#sorts - Name: Création de nourriture et d'eau ParentName: Sorts NameLevel: 1 - AltName: '[Create Food and Water](srd_spells_create_food_and_water.md)' - Source: (MDR p344) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Création ou destruction d'eau + AltName: '[Create or Destroy Water](srd_spells_create_or_destroy_water.md)' Type: Transmutation + Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une goutte d'eau pour créer de l'eau ou quelques grains de sable pour en détruire) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p344) Id: spells_hd.md#création-ou-destruction-deau ParentLink: spells_hd.md#sorts - Name: Création ou destruction d'eau ParentName: Sorts NameLevel: 1 - AltName: '[Create or Destroy Water](srd_spells_create_or_destroy_water.md)' - Source: (MDR p344) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Croissance d'épines + AltName: '[Spike Growth](srd_spells_spike_growth.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: 45 mètres Components: V, S, M (sept épines acérées ou sept brindilles taillées en pointe) Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p344) Id: spells_hd.md#croissance-dépines ParentLink: spells_hd.md#sorts - Name: Croissance d'épines ParentName: Sorts NameLevel: 1 - AltName: '[Spike Growth](srd_spells_spike_growth.md)' - Source: (MDR p344) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Croissance végétale + AltName: '[Plant Growth](srd_spells_plant_growth.md)' Type: Transmutation + Level: 3 CastingTime: 1 action ou 8 heures Range: 45 mètres Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p344)(SRD) Id: spells_hd.md#croissance-végétale ParentLink: spells_hd.md#sorts - Name: Croissance végétale ParentName: Sorts NameLevel: 1 - AltName: '[Plant Growth](srd_spells_plant_growth.md)' - Source: (MDR p344)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Danse irrésistible + AltName: '[Irresistible Dance](srd_spells_irresistible_dance.md)' Type: Enchantement + Level: 6 CastingTime: 1 action Range: 9 mètres Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p344) Id: spells_hd.md#danse-irrésistible ParentLink: spells_hd.md#sorts - Name: Danse irrésistible ParentName: Sorts NameLevel: 1 - AltName: '[Irresistible Dance](srd_spells_irresistible_dance.md)' - Source: (MDR p344) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Déblocage + AltName: '[Knock](srd_spells_knock.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p345)(SRD) Id: spells_hd.md#déblocage ParentLink: spells_hd.md#sorts - Name: Déblocage ParentName: Sorts NameLevel: 1 - AltName: '[Knock](srd_spells_knock.md)' - Source: (MDR p345)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Déguisement + AltName: '[Disguise Self](srd_spells_disguise_self.md)' Type: Illusion + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S Duration: 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p345)(SRD) Id: spells_hd.md#déguisement ParentLink: spells_hd.md#sorts - Name: Déguisement ParentName: Sorts NameLevel: 1 - AltName: '[Disguise Self](srd_spells_disguise_self.md)' - Source: (MDR p345)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Demi-plan + AltName: '[Demiplane](srd_spells_demiplane.md)' Type: Invocation + Level: 8 CastingTime: 1 action Range: 18 mètres Components: S Duration: 1 heure Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p345)(SRD) Id: spells_hd.md#demi-plan ParentLink: spells_hd.md#sorts - Name: Demi-plan ParentName: Sorts NameLevel: 1 - AltName: '[Demiplane](srd_spells_demiplane.md)' - Source: (MDR p345)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Déplacer la terre + AltName: '[Move Earth](srd_spells_move_earth.md)' Type: Transmutation + Level: 6 CastingTime: 1 action Range: 36 mètres Components: "V, S, M (une lame de fer et un petit sac contenant un mélange de terres : de l'argile, du terreau et du sable)" Duration: concentration, jusqu'à 2 heures Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p345)(SRD) Id: spells_hd.md#déplacer-la-terre ParentLink: spells_hd.md#sorts - Name: Déplacer la terre ParentName: Sorts NameLevel: 1 - AltName: '[Move Earth](srd_spells_move_earth.md)' - Source: (MDR p345)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Désintégration + AltName: '[Disintegrate](srd_spells_disintegrate.md)' Type: Transmutation + Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, S, M (de la magnétite et une pincée de poussière) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p346)(SRD) Id: spells_hd.md#désintégration ParentLink: spells_hd.md#sorts - Name: Désintégration ParentName: Sorts NameLevel: 1 - AltName: '[Disintegrate](srd_spells_disintegrate.md)' - Source: (MDR p346)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Dessiccation Type: Transmutation + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une goutte d'eau) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p346) Id: spells_hd.md#dessiccation ParentLink: spells_hd.md#sorts - Name: Dessiccation ParentName: Sorts NameLevel: 1 - Source: (MDR p346) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Détection de la magie + AltName: '[Detect Magic](srd_spells_detect_magic.md)' Type: Divination - Ritual: rituel + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p346)(SRD) + Ritual: rituel Id: spells_hd.md#détection-de-la-magie ParentLink: spells_hd.md#sorts - Name: Détection de la magie ParentName: Sorts NameLevel: 1 - AltName: '[Detect Magic](srd_spells_detect_magic.md)' - Source: (MDR p346)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Détection des pensées + AltName: '[Detect Thoughts](srd_spells_detect_thoughts.md)' Type: Divination + Level: 2 CastingTime: 1 action Range: personnelle Components: V, S, M (une pièce de cuivre) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p346)(SRD) Id: spells_hd.md#détection-des-pensées ParentLink: spells_hd.md#sorts - Name: Détection des pensées ParentName: Sorts NameLevel: 1 - AltName: '[Detect Thoughts](srd_spells_detect_thoughts.md)' - Source: (MDR p346)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Détection du mal et du bien + AltName: '[Detect Evil and Good](srd_spells_detect_evil_and_good.md)' Type: Divination + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p347)(SRD) Id: spells_hd.md#détection-du-mal-et-du-bien ParentLink: spells_hd.md#sorts - Name: Détection du mal et du bien ParentName: Sorts NameLevel: 1 - AltName: '[Detect Evil and Good](srd_spells_detect_evil_and_good.md)' - Source: (MDR p347)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Détection du poison et des maladies + AltName: '[Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)' Type: Divination - Ritual: rituel + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (un brin d'if) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p347)(SRD) + Ritual: rituel Id: spells_hd.md#détection-du-poison-et-des-maladies ParentLink: spells_hd.md#sorts - Name: Détection du poison et des maladies ParentName: Sorts NameLevel: 1 - AltName: '[Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)' - Source: (MDR p347)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Disque flottant + AltName: '[Floating Disk](srd_spells_floating_disk.md)' Type: Invocation - Ritual: rituel + Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une goutte de mercure) Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p347) + Ritual: rituel Id: spells_hd.md#disque-flottant ParentLink: spells_hd.md#sorts - Name: Disque flottant ParentName: Sorts NameLevel: 1 - AltName: '[Floating Disk](srd_spells_floating_disk.md)' - Source: (MDR p347) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Dissipation de la magie + AltName: '[Dispel Magic](srd_spells_dispel_magic.md)' Type: Abjuration + Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' + Source: (MDR p347)(SRD) Id: spells_hd.md#dissipation-de-la-magie ParentLink: spells_hd.md#sorts - Name: Dissipation de la magie ParentName: Sorts NameLevel: 1 - AltName: '[Dispel Magic](srd_spells_dispel_magic.md)' - Source: (MDR p347)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Dissipation du mal et du bien + AltName: '[Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)' Type: Abjuration + Level: 5 CastingTime: 1 action Range: personnelle Components: V, S, M (eau bénite ou poudre d'argent et de fer) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p347)(SRD) Id: spells_hd.md#dissipation-du-mal-et-du-bien ParentLink: spells_hd.md#sorts - Name: Dissipation du mal et du bien ParentName: Sorts NameLevel: 1 - AltName: '[Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)' - Source: (MDR p347)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Divination + AltName: '[Divination](srd_spells_divination.md)' Type: Divination - Ritual: rituel + Level: 4 CastingTime: 1 action Range: personnelle Components: V, S, M (de l'encens et une offrande sacrificielle adaptée à votre religion, l'ensemble valant au moins 25 po, et le sort consume les deux) Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p348)(SRD) + Ritual: rituel Id: spells_hd.md#divination ParentLink: spells_hd.md#sorts - Name: Divination ParentName: Sorts NameLevel: 1 - AltName: '[Divination](srd_spells_divination.md)' - Source: (MDR p348)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Doigt de mort + AltName: '[Finger of Death](srd_spells_finger_of_death.md)' Type: Nécromancie + Level: 7 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p348)(SRD) Id: spells_hd.md#doigt-de-mort ParentLink: spells_hd.md#sorts - Name: Doigt de mort ParentName: Sorts NameLevel: 1 - AltName: '[Finger of Death](srd_spells_finger_of_death.md)' - Source: (MDR p348)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Dominer un humanoïde + AltName: '[Dominate Person](srd_spells_dominate_person.md)' Type: Enchantement + Level: 5 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p348)(SRD) Id: spells_hd.md#dominer-un-humanoïde ParentLink: spells_hd.md#sorts - Name: Dominer un humanoïde ParentName: Sorts NameLevel: 1 - AltName: '[Dominate Person](srd_spells_dominate_person.md)' - Source: (MDR p348)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Dominer un monstre + AltName: '[Dominate Monster](srd_spells_dominate_monster.md)' Type: Enchantement + Level: 8 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p349)(SRD) Id: spells_hd.md#dominer-un-monstre ParentLink: spells_hd.md#sorts - Name: Dominer un monstre ParentName: Sorts NameLevel: 1 - AltName: '[Dominate Monster](srd_spells_dominate_monster.md)' - Source: (MDR p349)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Dominer une bête + AltName: '[Dominate Beast](srd_spells_dominate_beast.md)' Type: Enchantement + Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' + Source: (MDR p349)(SRD) Id: spells_hd.md#dominer-une-bête ParentLink: spells_hd.md#sorts - Name: Dominer une bête ParentName: Sorts NameLevel: 1 - AltName: '[Dominate Beast](srd_spells_dominate_beast.md)' - Source: (MDR p349)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Doux repos + AltName: '[Gentle Repose](srd_spells_gentle_repose.md)' Type: Nécromancie - Ritual: rituel + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une pincée de sel et une pièce de cuivre à poser sur chaque oeil du cadavre et qui doivent rester en place pendant toute la durée du sort) Duration: 10 jours Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' + Source: (MDR p349)(SRD) + Ritual: rituel Id: spells_hd.md#doux-repos ParentLink: spells_hd.md#sorts - Name: Doux repos ParentName: Sorts NameLevel: 1 - AltName: '[Gentle Repose](srd_spells_gentle_repose.md)' - Source: (MDR p349)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Druidisme + AltName: '[Druidcraft](srd_spells_druidcraft.md)' Type: Transmutation + Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: V, S Duration: instantanée Classes: '[Druide](hd_druid.md)' + Source: (MDR p349)(SRD) Id: spells_hd.md#druidisme ParentLink: spells_hd.md#sorts - Name: Druidisme ParentName: Sorts NameLevel: 1 - AltName: '[Druidcraft](srd_spells_druidcraft.md)' - Source: (MDR p349)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Éclair + AltName: '[Lightning Bolt](srd_spells_lightning_bolt.md)' Type: Évocation + Level: 3 CastingTime: 1 action Range: personnelle (ligne de 30 mètres) Components: V, S, M (un peu de fourrure et une baguette en ambre, en cristal ou en verre) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p350)(SRD) Id: spells_hd.md#Éclair ParentLink: spells_hd.md#sorts - Name: Éclair ParentName: Sorts NameLevel: 1 - AltName: '[Lightning Bolt](srd_spells_lightning_bolt.md)' - Source: (MDR p350)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Éclat de bois Type: Invocation + Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V, S, M (une écharde de bois) Duration: instantanée Classes: '[Druide](hd_druid.md)' + Source: (MDR p350) Id: spells_hd.md#Éclat-de-bois ParentLink: spells_hd.md#sorts - Name: Éclat de bois ParentName: Sorts NameLevel: 1 - Source: (MDR p350) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Éclat du soleil + AltName: '[Sunburst](srd_spells_sunburst.md)' Type: Évocation + Level: 8 CastingTime: 1 action Range: 45 mètres Components: V, S, M (du feu et un éclat d'héliotrope) Duration: instantanée Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p350)(SRD) Id: spells_hd.md#Éclat-du-soleil ParentLink: spells_hd.md#sorts - Name: Éclat du soleil ParentName: Sorts NameLevel: 1 - AltName: '[Sunburst](srd_spells_sunburst.md)' - Source: (MDR p350)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Embruns prismatiques + AltName: '[Prismatic Spray](srd_spells_prismatic_spray.md)' Type: Évocation + Level: 7 CastingTime: 1 action Range: personnelle (cône de 18 mètres) Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p350)(SRD) Id: spells_hd.md#embruns-prismatiques ParentLink: spells_hd.md#sorts - Name: Embruns prismatiques ParentName: Sorts NameLevel: 1 - AltName: '[Prismatic Spray](srd_spells_prismatic_spray.md)' - Source: (MDR p350)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Emprisonnement + AltName: '[Imprisonment](srd_spells_imprisonment.md)' Type: Abjuration + Level: 9 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (un portrait sur un vélin ou une statuette sculptée à l'effigie de la cible et une composante spéciale qui varie en fonction de la version du sort choisie et vaut au moins 500 po par dé de vie de la cible) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p351)(SRD) Id: spells_hd.md#emprisonnement ParentLink: spells_hd.md#sorts - Name: Emprisonnement ParentName: Sorts NameLevel: 1 - AltName: '[Imprisonment](srd_spells_imprisonment.md)' - Source: (MDR p351)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Enchevêtrement + AltName: '[Entangle](srd_spells_entangle.md)' Type: Invocation + Level: 1 CastingTime: 1 action Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md)' + Source: (MDR p352)(SRD) Id: spells_hd.md#enchevêtrement ParentLink: spells_hd.md#sorts - Name: Enchevêtrement ParentName: Sorts NameLevel: 1 - AltName: '[Entangle](srd_spells_entangle.md)' - Source: (MDR p352)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Entrave planaire + AltName: '[Planar Binding](srd_spells_planar_binding.md)' Type: Abjuration + Level: 5 CastingTime: 1 heure Range: 18 mètres Components: V, S, M (un bijou d'une valeur minimale de 1 000 po, que le sort consume) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p352)(SRD) Id: spells_hd.md#entrave-planaire ParentLink: spells_hd.md#sorts - Name: Entrave planaire ParentName: Sorts NameLevel: 1 - AltName: '[Planar Binding](srd_spells_planar_binding.md)' - Source: (MDR p352)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Envoi de message + AltName: '[Sending](srd_spells_sending.md)' Type: Évocation + Level: 3 CastingTime: 1 action Range: illimitée Components: V, S, M (un petit bout de fil de cuivre) Duration: 1 round Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p352)(SRD) Id: spells_hd.md#envoi-de-message ParentLink: spells_hd.md#sorts - Name: Envoi de message ParentName: Sorts NameLevel: 1 - AltName: '[Sending](srd_spells_sending.md)' - Source: (MDR p352)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Envoûtement + AltName: '[Enthrall](srd_spells_enthrall.md)' Type: Enchantement + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p352)(SRD) Id: spells_hd.md#envoûtement ParentLink: spells_hd.md#sorts - Name: Envoûtement ParentName: Sorts NameLevel: 1 - AltName: '[Enthrall](srd_spells_enthrall.md)' - Source: (MDR p352)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Épargner les mourants + AltName: '[Spare the Dying](srd_spells_spare_the_dying.md)' Type: Nécromancie + Level: tour de magie CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p352)(SRD) Id: spells_hd.md#Épargner-les-mourants ParentLink: spells_hd.md#sorts - Name: Épargner les mourants ParentName: Sorts NameLevel: 1 - AltName: '[Spare the Dying](srd_spells_spare_the_dying.md)' - Source: (MDR p352)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Épée du juste Type: Évocation + Level: 5 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p353) Id: spells_hd.md#Épée-du-juste ParentLink: spells_hd.md#sorts - Name: Épée du juste ParentName: Sorts NameLevel: 1 - Source: (MDR p353) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Épée magique + AltName: '[Arcane Sword](srd_spells_arcane_sword.md)' Type: Évocation + Level: 7 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une épée en platine miniature avec le pommeau et la poignée en cuivre et zinc, d'une valeur de 250 po) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p353) Id: spells_hd.md#Épée-magique ParentLink: spells_hd.md#sorts - Name: Épée magique ParentName: Sorts NameLevel: 1 - AltName: '[Arcane Sword](srd_spells_arcane_sword.md)' - Source: (MDR p353) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Esprit faible + AltName: '[Feeblemind](srd_spells_feeblemind.md)' Type: Enchantement + Level: 8 CastingTime: 1 action Range: 45 mètres Components: V, S, M (une poignée de sphères en argile, en cristal, en verre ou minérales) Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p353)(SRD) Id: spells_hd.md#esprit-faible ParentLink: spells_hd.md#sorts - Name: Esprit faible ParentName: Sorts NameLevel: 1 - AltName: '[Feeblemind](srd_spells_feeblemind.md)' - Source: (MDR p353)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Esprit impénétrable + AltName: '[Mind Blank](srd_spells_mind_blank.md)' Type: Abjuration + Level: 8 CastingTime: 1 action Range: contact Components: V, S Duration: 24 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p353)(SRD) Id: spells_hd.md#esprit-impénétrable ParentLink: spells_hd.md#sorts - Name: Esprit impénétrable ParentName: Sorts NameLevel: 1 - AltName: '[Mind Blank](srd_spells_mind_blank.md)' - Source: (MDR p353)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Esprits gardiens + AltName: '[Spirit Guardians](srd_spells_spirit_guardians.md)' Type: Invocation + Level: 3 CastingTime: 1 action Range: personnelle (4,5 mètres de rayon) Components: V, S M (un symbole sacré) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p353)(SRD) Id: spells_hd.md#esprits-gardiens ParentLink: spells_hd.md#sorts - Name: Esprits gardiens ParentName: Sorts NameLevel: 1 - AltName: '[Spirit Guardians](srd_spells_spirit_guardians.md)' - Source: (MDR p353)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Étrangeté + AltName: '[Weird](srd_spells_weird.md)' Type: Illusion + Level: 9 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p354)(SRD) Id: spells_hd.md#Étrangeté ParentLink: spells_hd.md#sorts - Name: Étrangeté ParentName: Sorts NameLevel: 1 - AltName: '[Weird](srd_spells_weird.md)' - Source: (MDR p354)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Éveil + AltName: '[Awaken](srd_spells_awaken.md)' Type: Transmutation + Level: 5 CastingTime: 8 heures Range: contact Components: V, S, M (une agate d'une valeur minimale de 1 000 po, que le sort consomme) Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md)' + Source: (MDR p354)(SRD) Id: spells_hd.md#Éveil ParentLink: spells_hd.md#sorts - Name: Éveil ParentName: Sorts NameLevel: 1 - AltName: '[Awaken](srd_spells_awaken.md)' - Source: (MDR p354)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Excavation Type: Transmutation + Level: 8 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une cuillère) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p354) Id: spells_hd.md#excavation ParentLink: spells_hd.md#sorts - Name: Excavation ParentName: Sorts NameLevel: 1 - Source: (MDR p354) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Expiation du juste Type: Évocation + Level: 4 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p354) Id: spells_hd.md#expiation-du-juste ParentLink: spells_hd.md#sorts - Name: Expiation du juste ParentName: Sorts NameLevel: 1 - Source: (MDR p354) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Explosion occulte + AltName: '[Eldritch Blast](srd_spells_eldritch_blast.md)' Type: Évocation + Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Sorcier](hd_warlock.md)' + Source: (MDR p354)(SRD) Id: spells_hd.md#explosion-occulte ParentLink: spells_hd.md#sorts - Name: Explosion occulte ParentName: Sorts NameLevel: 1 - AltName: '[Eldritch Blast](srd_spells_eldritch_blast.md)' - Source: (MDR p354)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Fabrication + AltName: '[Fabricate](srd_spells_fabricate.md)' Type: Transmutation + Level: 4 CastingTime: 10 minutes Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p354)(SRD) Id: spells_hd.md#fabrication ParentLink: spells_hd.md#sorts - Name: Fabrication ParentName: Sorts NameLevel: 1 - AltName: '[Fabricate](srd_spells_fabricate.md)' - Source: (MDR p354)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Façonnage de la pierre + AltName: '[Stone Shape](srd_spells_stone_shape.md)' Type: Transmutation + Level: 4 CastingTime: 1 action Range: contact Components: V, S, M (argile molle, à façonner pour lui donner approximativement la forme de l'objet de pierre désiré) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p355)(SRD) Id: spells_hd.md#façonnage-de-la-pierre ParentLink: spells_hd.md#sorts - Name: Façonnage de la pierre ParentName: Sorts NameLevel: 1 - AltName: '[Stone Shape](srd_spells_stone_shape.md)' - Source: (MDR p355)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Faveur divine + AltName: '[Divine Favor](srd_spells_divine_favor.md)' Type: Évocation + Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p355)(SRD) Id: spells_hd.md#faveur-divine ParentLink: spells_hd.md#sorts - Name: Faveur divine ParentName: Sorts NameLevel: 1 - AltName: '[Divine Favor](srd_spells_divine_favor.md)' - Source: (MDR p355)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Festin des héros + AltName: "[Heroes' Feast](srd_spells_heroes_feast.md)" Type: Invocation + Level: 6 CastingTime: 10 minutes Range: 9 mètres Components: V, S, M (un bol incrusté de gemmes d'une valeur minimale de 1 000 po, que le sort consume) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p355)(SRD) Id: spells_hd.md#festin-des-héros ParentLink: spells_hd.md#sorts - Name: Festin des héros ParentName: Sorts NameLevel: 1 - AltName: "[Heroes' Feast](srd_spells_heroes_feast.md)" - Source: (MDR p355)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Flamboiement funeste Type: Invocation + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (morceau d'onyx) Duration: instantanée Classes: '[Sorcier](hd_warlock.md)' + Source: (MDR p355) Id: spells_hd.md#flamboiement-funeste ParentLink: spells_hd.md#sorts - Name: Flamboiement funeste ParentName: Sorts NameLevel: 1 - Source: (MDR p355) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Flamme éternelle + AltName: '[Continual Flame](srd_spells_continual_flame.md)' Type: Évocation + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (poussière de rubis d'une valeur de 50 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' + Source: (MDR p355)(SRD) Id: spells_hd.md#flamme-éternelle ParentLink: spells_hd.md#sorts - Name: Flamme éternelle ParentName: Sorts NameLevel: 1 - AltName: '[Continual Flame](srd_spells_continual_flame.md)' - Source: (MDR p355)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Flamme sacrée + AltName: '[Sacred Flame](srd_spells_sacred_flame.md)' Type: Évocation + Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p355)(SRD) Id: spells_hd.md#flamme-sacrée ParentLink: spells_hd.md#sorts - Name: Flamme sacrée ParentName: Sorts NameLevel: 1 - AltName: '[Sacred Flame](srd_spells_sacred_flame.md)' - Source: (MDR p355)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Fléau + AltName: '[Bane](srd_spells_bane.md)' Type: Enchantement + Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une goutte de sang) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)' + Source: (MDR p356)(SRD) Id: spells_hd.md#fléau ParentLink: spells_hd.md#sorts - Name: Fléau ParentName: Sorts NameLevel: 1 - AltName: '[Bane](srd_spells_bane.md)' - Source: (MDR p356)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Fléau d'insectes + AltName: '[Insect Plague](srd_spells_insect_plague.md)' Type: Invocation + Level: 5 CastingTime: 1 action Range: 90 mètres Components: V, S, M (un peu de sucre en poudre, quelques graines de céréales et une tache de graisse) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' + Source: (MDR p356) Id: spells_hd.md#fléau-dinsectes ParentLink: spells_hd.md#sorts - Name: Fléau d'insectes ParentName: Sorts NameLevel: 1 - AltName: '[Insect Plague](srd_spells_insect_plague.md)' - Source: (MDR p356) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Flèche acide + AltName: '[Acid Arrow](srd_spells_acid_arrow.md)' Type: Évocation + Level: 2 CastingTime: 1 action Range: 27 mètres Components: V, S, M (poudre de feuille de rhubarbe et estomac de vipère) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p356) Id: spells_hd.md#flèche-acide ParentLink: spells_hd.md#sorts - Name: Flèche acide ParentName: Sorts NameLevel: 1 - AltName: '[Acid Arrow](srd_spells_acid_arrow.md)' - Source: (MDR p356) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Flétrissement + AltName: '[Blight](srd_spells_blight.md)' Type: Nécromancie + Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: instantanée Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p356)(SRD) Id: spells_hd.md#flétrissement ParentLink: spells_hd.md#sorts - Name: Flétrissement ParentName: Sorts NameLevel: 1 - AltName: '[Blight](srd_spells_blight.md)' - Source: (MDR p356)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Flou + AltName: '[Blur](srd_spells_blur.md)' Type: Illusion + Level: 2 CastingTime: 1 action Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p356)(SRD) Id: spells_hd.md#flou ParentLink: spells_hd.md#sorts - Name: Flou ParentName: Sorts NameLevel: 1 - AltName: '[Blur](srd_spells_blur.md)' - Source: (MDR p356)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Forme éthérée + AltName: '[Etherealness](srd_spells_etherealness.md)' Type: Transmutation + Level: 7 CastingTime: 1 action Range: personnelle Components: V, S Duration: jusqu'à 8 heures Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p356)(SRD) Id: spells_hd.md#forme-éthérée ParentLink: spells_hd.md#sorts - Name: Forme éthérée ParentName: Sorts NameLevel: 1 - AltName: '[Etherealness](srd_spells_etherealness.md)' - Source: (MDR p356)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Forme gazeuse + AltName: '[Gaseous Form](srd_spells_gaseous_form.md)' Type: Transmutation + Level: 3 CastingTime: 1 action Range: contact Components: V, S, M (un morceau de gaze et une volute de fumée) Duration: concentration, jusqu'à 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p357)(SRD) Id: spells_hd.md#forme-gazeuse ParentLink: spells_hd.md#sorts - Name: Forme gazeuse ParentName: Sorts NameLevel: 1 - AltName: '[Gaseous Form](srd_spells_gaseous_form.md)' - Source: (MDR p357)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Formes animales + AltName: '[Animal Shapes](srd_spells_animal_shapes.md)' Type: Transmutation + Level: 8 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: concentration, jusqu'à 24 heures Classes: '[Druide](hd_druid.md)' + Source: (MDR p357)(SRD) Id: spells_hd.md#formes-animales ParentLink: spells_hd.md#sorts - Name: Formes animales ParentName: Sorts NameLevel: 1 - AltName: '[Animal Shapes](srd_spells_animal_shapes.md)' - Source: (MDR p357)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Fou rire + AltName: '[Hideous Laughter](srd_spells_hideous_laughter.md)' Type: Enchantement + Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (de minuscules tartes et une plume à agiter dans les airs) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p357) Id: spells_hd.md#fou-rire ParentLink: spells_hd.md#sorts - Name: Fou rire ParentName: Sorts NameLevel: 1 - AltName: '[Hideous Laughter](srd_spells_hideous_laughter.md)' - Source: (MDR p357) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Frappe du juste Type: Évocation + Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p358) Id: spells_hd.md#frappe-du-juste ParentLink: spells_hd.md#sorts - Name: Frappe du juste ParentName: Sorts NameLevel: 1 - Source: (MDR p358) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Frappe lumineuse + AltName: '[Branding Smite](srd_spells_branding_smite.md)' Type: Évocation + Level: 2 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p358)(SRD) Id: spells_hd.md#frappe-lumineuse ParentLink: spells_hd.md#sorts - Name: Frappe lumineuse ParentName: Sorts NameLevel: 1 - AltName: '[Branding Smite](srd_spells_branding_smite.md)' - Source: (MDR p358)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Fusion dans la pierre + AltName: '[Meld into Stone](srd_spells_meld_into_stone.md)' Type: Transmutation - Ritual: rituel + Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: 8 heures Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p358)(SRD) + Ritual: rituel Id: spells_hd.md#fusion-dans-la-pierre ParentLink: spells_hd.md#sorts - Name: Fusion dans la pierre ParentName: Sorts NameLevel: 1 - AltName: '[Meld into Stone](srd_spells_meld_into_stone.md)' - Source: (MDR p358)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Gardien de la foi + AltName: '[Guardian of Faith](srd_spells_guardian_of_faith.md)' Type: Invocation + Level: 4 CastingTime: 1 action Range: 9 mètres Components: V Duration: 8 heures Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p358)(SRD) Id: spells_hd.md#gardien-de-la-foi ParentLink: spells_hd.md#sorts - Name: Gardien de la foi ParentName: Sorts NameLevel: 1 - AltName: '[Guardian of Faith](srd_spells_guardian_of_faith.md)' - Source: (MDR p358)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Geyser d'énergie Type: Évocation + Level: 1 CastingTime: 1 action Range: 27 mètres Components: V, S, M (une petite poire remplie d'air) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md)' + Source: (MDR p359) Id: spells_hd.md#geyser-dénergie ParentLink: spells_hd.md#sorts - Name: Geyser d'énergie ParentName: Sorts NameLevel: 1 - Source: (MDR p359) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Globe d'invulnérabilité + AltName: '[Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)' Type: Abjuration + Level: 6 CastingTime: 1 action Range: personnelle (3 mètres de rayon) Components: V, S, M (une perle de verre ou de cristal qui explose à la fin du sort) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p359) Id: spells_hd.md#globe-dinvulnérabilité ParentLink: spells_hd.md#sorts - Name: Globe d'invulnérabilité ParentName: Sorts NameLevel: 1 - AltName: '[Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)' - Source: (MDR p359) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Glyphe de protection + AltName: '[Glyph of Warding](srd_spells_glyph_of_warding.md)' Type: Abjuration + Level: 3 CastingTime: 1 heure Range: contact Components: V, S, M (encens et poudre de diamant d'une valeur minimale de 200 po, que le sort consume) Duration: jusqu'à dissipation ou déclenchement Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' + Source: (MDR p359)(SRD) Id: spells_hd.md#glyphe-de-protection ParentLink: spells_hd.md#sorts - Name: Glyphe de protection ParentName: Sorts NameLevel: 1 - AltName: '[Glyph of Warding](srd_spells_glyph_of_warding.md)' - Source: (MDR p359)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Gourdin magique + AltName: '[Shillelagh](srd_spells_shillelagh.md)' Type: Transmutation + Level: tour de magie CastingTime: 1 action bonus Range: contact Components: V, S, M (du gui, une feuille de trèfle et un bâton ou un gourdin) Duration: 1 minute Classes: '[Druide](hd_druid.md)' + Source: (MDR p360)(SRD) Id: spells_hd.md#gourdin-magique ParentLink: spells_hd.md#sorts - Name: Gourdin magique ParentName: Sorts NameLevel: 1 - AltName: '[Shillelagh](srd_spells_shillelagh.md)' - Source: (MDR p360)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Graisse + AltName: '[Grease](srd_spells_grease.md)' Type: Invocation + Level: 1 CastingTime: 1 action Range: 18 mètres Components: V, S, M (de la couenne de porc ou du beurre) Duration: 1 minute Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p360)(SRD) Id: spells_hd.md#graisse ParentLink: spells_hd.md#sorts - Name: Graisse ParentName: Sorts NameLevel: 1 - AltName: '[Grease](srd_spells_grease.md)' - Source: (MDR p360)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Grande foulée + AltName: '[Longstrider](srd_spells_longstrider.md)' Type: Transmutation + Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (une pincée de poussière) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p360)(SRD) Id: spells_hd.md#grande-foulée ParentLink: spells_hd.md#sorts - Name: Grande foulée ParentName: Sorts NameLevel: 1 - AltName: '[Longstrider](srd_spells_longstrider.md)' - Source: (MDR p360)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Guérison + AltName: '[Heal](srd_spells_heal.md)' Type: Évocation + Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p360)(SRD) Id: spells_hd.md#guérison ParentLink: spells_hd.md#sorts - Name: Guérison ParentName: Sorts NameLevel: 1 - AltName: '[Heal](srd_spells_heal.md)' - Source: (MDR p360)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Guérison de groupe + AltName: '[Mass Heal](srd_spells_mass_heal.md)' Type: Évocation + Level: 9 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#guérison-de-groupe ParentLink: spells_hd.md#sorts - Name: Guérison de groupe ParentName: Sorts NameLevel: 1 - AltName: '[Mass Heal](srd_spells_mass_heal.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Harmonique miraculeuse Type: Évocation + Level: 9 CastingTime: 1 action Range: 12 mètres Components: V, S, M (un verre en cristal d'une valeur de 500 po) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md)' + Source: (MDR p) Id: spells_hd.md#harmonique-miraculeuse ParentLink: spells_hd.md#sorts - Name: Harmonique miraculeuse ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Hâte + AltName: '[Haste](srd_spells_haste.md)' Type: Transmutation + Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un copeau de racine de réglisse) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#hâte ParentLink: spells_hd.md#sorts - Name: Hâte ParentName: Sorts NameLevel: 1 - AltName: '[Haste](srd_spells_haste.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Héroïsme + AltName: '[Heroism](srd_spells_heroism.md)' Type: Enchantement + Level: 1 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Paladin](hd_paladin.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#héroïsme ParentLink: spells_hd.md#sorts - Name: Héroïsme ParentName: Sorts NameLevel: 1 - AltName: '[Heroism](srd_spells_heroism.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Identification + AltName: '[Identify](srd_spells_identify.md)' Type: Divination - Ritual: rituel + Level: 1 CastingTime: 1 minute Range: contact Components: V, S, M (une perle d'une valeur minimale de 100 po et une plume de hibou) Duration: instantanée Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#identification ParentLink: spells_hd.md#sorts - Name: Identification ParentName: Sorts NameLevel: 1 - AltName: '[Identify](srd_spells_identify.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Illusion mineure + AltName: '[Minor Illusion](srd_spells_minor_illusion.md)' Type: Illusion + Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: S, M (un morceau de toison) Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#illusion-mineure ParentLink: spells_hd.md#sorts - Name: Illusion mineure ParentName: Sorts NameLevel: 1 - AltName: '[Minor Illusion](srd_spells_minor_illusion.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Illusion programmée + AltName: '[Programmed Illusion](srd_spells_programmed_illusion.md)' Type: Illusion + Level: 6 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un morceau de toison et de la poussière de jade d'une valeur de 25 po) Duration: jusqu'à dissipation Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#illusion-programmée ParentLink: spells_hd.md#sorts - Name: Illusion programmée ParentName: Sorts NameLevel: 1 - AltName: '[Programmed Illusion](srd_spells_programmed_illusion.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Image majeure + AltName: '[Major Image](srd_spells_major_image.md)' Type: Illusion + Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un morceau de toison) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#image-majeure ParentLink: spells_hd.md#sorts - Name: Image majeure ParentName: Sorts NameLevel: 1 - AltName: '[Major Image](srd_spells_major_image.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Image miroir + AltName: '[Mirror Image](srd_spells_mirror_image.md)' Type: Illusion + Level: 2 CastingTime: 1 action Range: personnelle Components: V, S Duration: 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#image-miroir ParentLink: spells_hd.md#sorts - Name: Image miroir ParentName: Sorts NameLevel: 1 - AltName: '[Mirror Image](srd_spells_mirror_image.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Image projetée + AltName: '[Project Image](srd_spells_project_image.md)' Type: Illusion + Level: 7 CastingTime: 1 action Range: 750 kilomètres Components: V, S, M (une petite réplique de votre personne construite avec des matériaux valant au moins 5 po) Duration: concentration, jusqu'à 1 jour Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#image-projetée ParentLink: spells_hd.md#sorts - Name: Image projetée ParentName: Sorts NameLevel: 1 - AltName: '[Project Image](srd_spells_project_image.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Image silencieuse + AltName: '[Silent Image](srd_spells_silent_image.md)' Type: Illusion + Level: 1 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un morceau de toison) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#image-silencieuse ParentLink: spells_hd.md#sorts - Name: Image silencieuse ParentName: Sorts NameLevel: 1 - AltName: '[Silent Image](srd_spells_silent_image.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Immobiliser un humanoïde + AltName: '[Hold Person](srd_spells_hold_person.md)' Type: Enchantement + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un petit morceau de fer bien droit) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#immobiliser-un-humanoïde ParentLink: spells_hd.md#sorts - Name: Immobiliser un humanoïde ParentName: Sorts NameLevel: 1 - AltName: '[Hold Person](srd_spells_hold_person.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Immobiliser un monstre + AltName: '[Hold Monster](srd_spells_hold_monster.md)' Type: Enchantement + Level: 5 CastingTime: 1 action Range: 27 mètres Components: V, S, M (un petit morceau de fer bien droit) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#immobiliser-un-monstre ParentLink: spells_hd.md#sorts - Name: Immobiliser un monstre ParentName: Sorts NameLevel: 1 - AltName: '[Hold Monster](srd_spells_hold_monster.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Injonction + AltName: '[Command](srd_spells_command.md)' Type: Enchantement + Level: 1 CastingTime: 1 action Range: 18 mètres Components: V Duration: 1 round Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#injonction ParentLink: spells_hd.md#sorts - Name: Injonction ParentName: Sorts NameLevel: 1 - AltName: '[Command](srd_spells_command.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Insecte géant + AltName: '[Giant Insect](srd_spells_giant_insect.md)' Type: Transmutation + Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#insecte-géant ParentLink: spells_hd.md#sorts - Name: Insecte géant ParentName: Sorts NameLevel: 1 - AltName: '[Giant Insect](srd_spells_giant_insect.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Instrument fantomatique Type: Illusion + Level: 1 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un archet et un morceau d'os) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md)' + Source: (MDR p) Id: spells_hd.md#instrument-fantomatique ParentLink: spells_hd.md#sorts - Name: Instrument fantomatique ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Interdiction + AltName: '[Forbiddance](srd_spells_forbiddance.md)' Type: Abjuration - Ritual: rituel + Level: 6 CastingTime: 10 minutes Range: contact Components: V, S, M (un peu d'eau bénite, un encens rare et un rubis en poudre d'une valeur minimale de 1 000 po) Duration: 1 jour Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#interdiction ParentLink: spells_hd.md#sorts - Name: Interdiction ParentName: Sorts NameLevel: 1 - AltName: '[Forbiddance](srd_spells_forbiddance.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Inversion de la gravité + AltName: '[Reverse Gravity](srd_spells_reverse_gravity.md)' Type: Transmutation + Level: 7 CastingTime: 1 action Range: 30 mètres Components: V, S, M (de la magnétite et de la limaille de fer) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#inversion-de-la-gravité ParentLink: spells_hd.md#sorts - Name: Inversion de la gravité ParentName: Sorts NameLevel: 1 - AltName: '[Reverse Gravity](srd_spells_reverse_gravity.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Invisibilité + AltName: '[Invisibility](srd_spells_invisibility.md)' Type: Illusion + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (un cil enrobé de gomme arabique) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#invisibilité ParentLink: spells_hd.md#sorts - Name: Invisibilité ParentName: Sorts NameLevel: 1 - AltName: '[Invisibility](srd_spells_invisibility.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Invisibilité supérieure + AltName: '[Greater Invisibility](srd_spells_greater_invisibility.md)' Type: Illusion + Level: 4 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#invisibilité-supérieure ParentLink: spells_hd.md#sorts - Name: Invisibilité supérieure ParentName: Sorts NameLevel: 1 - AltName: '[Greater Invisibility](srd_spells_greater_invisibility.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Invoquer des animaux + AltName: '[Conjure Animals](srd_spells_conjure_animals.md)' Type: Invocation + Level: 3 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-des-animaux ParentLink: spells_hd.md#sorts - Name: Invoquer des animaux ParentName: Sorts NameLevel: 1 - AltName: '[Conjure Animals](srd_spells_conjure_animals.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Invoquer des élémentaires mineurs + AltName: '[Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)' Type: Invocation + Level: 4 CastingTime: 1 minute Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-des-élémentaires-mineurs ParentLink: spells_hd.md#sorts - Name: Invoquer des élémentaires mineurs ParentName: Sorts NameLevel: 1 - AltName: '[Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Invoquer des êtres des bois + AltName: '[Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)' Type: Invocation + Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une baie de houx par créature invoquée) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-des-êtres-des-bois ParentLink: spells_hd.md#sorts - Name: Invoquer des êtres des bois ParentName: Sorts NameLevel: 1 - AltName: '[Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Invoquer un céleste + AltName: '[Conjure Celestial](srd_spells_conjure_celestial.md)' Type: Invocation + Level: 7 CastingTime: 1 minute Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-un-céleste ParentLink: spells_hd.md#sorts - Name: Invoquer un céleste ParentName: Sorts NameLevel: 1 - AltName: '[Conjure Celestial](srd_spells_conjure_celestial.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Invoquer un élémentaire + AltName: '[Conjure Elemental](srd_spells_conjure_elemental.md)' Type: Invocation + Level: 5 CastingTime: 1 minute Range: 27 mètres Components: V, S, M (encens à brûler pour l'air, argile molle pour la terre, soufre et phosphore pour le feu, ou sable et eau pour l'eau) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-un-élémentaire ParentLink: spells_hd.md#sorts - Name: Invoquer un élémentaire ParentName: Sorts NameLevel: 1 - AltName: '[Conjure Elemental](srd_spells_conjure_elemental.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Invoquer une fée + AltName: '[Conjure Fey](srd_spells_conjure_fey.md)' Type: Invocation + Level: 6 CastingTime: 1 minute Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-une-fée ParentLink: spells_hd.md#sorts - Name: Invoquer une fée ParentName: Sorts NameLevel: 1 - AltName: '[Conjure Fey](srd_spells_conjure_fey.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Jeter une malédiction + AltName: '[Bestow curse](srd_spells_bestow_curse.md)' Type: Nécromancie + Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#jeter-une-malédiction ParentLink: spells_hd.md#sorts - Name: Jeter une malédiction ParentName: Sorts NameLevel: 1 - AltName: '[Bestow curse](srd_spells_bestow_curse.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Jugement dernier Type: Nécromancie + Level: 5 CastingTime: 1 action Range: 9 m Components: V, S Duration: instantanée Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p) Id: spells_hd.md#jugement-dernier ParentLink: spells_hd.md#sorts - Name: Jugement dernier ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Labyrinthe + AltName: '[Maze](srd_spells_maze.md)' Type: Invocation + Level: 8 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#labyrinthe ParentLink: spells_hd.md#sorts - Name: Labyrinthe ParentName: Sorts NameLevel: 1 - AltName: '[Maze](srd_spells_maze.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Lame de feu + AltName: '[Flame Blade](srd_spells_flame_blade.md)' Type: Évocation + Level: 2 CastingTime: 1 action bonus Range: personnelle Components: V, S, M (feuille de sumac) Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lame-de-feu ParentLink: spells_hd.md#sorts - Name: Lame de feu ParentName: Sorts NameLevel: 1 - AltName: '[Flame Blade](srd_spells_flame_blade.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Lance du juste Type: Transmutation + Level: 3 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p) Id: spells_hd.md#lance-du-juste ParentLink: spells_hd.md#sorts - Name: Lance du juste ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Langues + AltName: '[Tongues](srd_spells_tongues.md)' Type: Divination + Level: 3 CastingTime: 1 action Range: contact Components: V, M (un modèle réduit de ziggourat en argile) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#langues ParentLink: spells_hd.md#sorts - Name: Langues ParentName: Sorts NameLevel: 1 - AltName: '[Tongues](srd_spells_tongues.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Légende + AltName: '[Legend Lore](srd_spells_legend_lore.md)' Type: Divination + Level: 5 CastingTime: 10 minutes Range: personnelle Components: V, S, M (de l'encens d'une valeur minimale de 250 po que le sort consume et quatre bandelettes d'ivoire valant au moins 50 po chaque) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#légende ParentLink: spells_hd.md#sorts - Name: Légende ParentName: Sorts NameLevel: 1 - AltName: '[Legend Lore](srd_spells_legend_lore.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Léger comme une plume + AltName: '[Feather Fall](srd_spells_feather_fall.md)' Type: Transmutation + Level: 1 CastingTime: 1 réaction, que vous effectuez quand vous-même ou une créature située dans un rayon de 18 mètres tombe soudain Range: 18 mètres Components: V, M (une petite plume ou un peu de duvet) Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#léger-comme-une-plume ParentLink: spells_hd.md#sorts - Name: Léger comme une plume ParentName: Sorts NameLevel: 1 - AltName: '[Feather Fall](srd_spells_feather_fall.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Lenteur + AltName: '[Slow](srd_spells_slow.md)' Type: Transmutation + Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S, M (une goutte de mélasse) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lenteur ParentLink: spells_hd.md#sorts - Name: Lenteur ParentName: Sorts NameLevel: 1 - AltName: '[Slow](srd_spells_slow.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Lever une malédiction + AltName: '[Remove Curse](srd_spells_remove_curse.md)' Type: Abjuration + Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lever-une-malédiction ParentLink: spells_hd.md#sorts - Name: Lever une malédiction ParentName: Sorts NameLevel: 1 - AltName: '[Remove Curse](srd_spells_remove_curse.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Lévitation + AltName: '[Levitate](srd_spells_levitate.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (soit une petite boucle de cuir, soit un bout de fil de métal doré formant la silhouette d'une cuillère au long manche) Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lévitation ParentLink: spells_hd.md#sorts - Name: Lévitation ParentName: Sorts NameLevel: 1 - AltName: '[Levitate](srd_spells_levitate.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Liane chasseresse Type: Invocation + Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p) Id: spells_hd.md#liane-chasseresse ParentLink: spells_hd.md#sorts - Name: Liane chasseresse ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Liberté de mouvement + AltName: '[Freedom of Movement](srd_spells_freedom_of_movement.md)' Type: Abjuration + Level: 4 CastingTime: 1 action Range: contact Components: V, S, M (un lien de cuir enroulé autour d'un bras ou d'un appendice similaire) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#liberté-de-mouvement ParentLink: spells_hd.md#sorts - Name: Liberté de mouvement ParentName: Sorts NameLevel: 1 - AltName: '[Freedom of Movement](srd_spells_freedom_of_movement.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Lien de protection + AltName: '[Warding Bond](srd_spells_warding_bond.md)' Type: Abjuration + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une paire d'anneaux de platine valant chacun au moins 50 po, que la cible et vous devez porter pendant toute la durée) Duration: 1 heure Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lien-de-protection ParentLink: spells_hd.md#sorts - Name: Lien de protection ParentName: Sorts NameLevel: 1 - AltName: '[Warding Bond](srd_spells_warding_bond.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Lien télépathique + AltName: '[Telepathic Bond](srd_spells_telepathic_bond.md)' Type: Divination - Ritual: rituel + Level: 5 CastingTime: 1 action Range: 9 mètres Components: V, S, M (bouts de coquille d'oeuf issus de deux espèces de créatures différentes) Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p) + Ritual: rituel Id: spells_hd.md#lien-télépathique ParentLink: spells_hd.md#sorts - Name: Lien télépathique ParentName: Sorts NameLevel: 1 - AltName: '[Telepathic Bond](srd_spells_telepathic_bond.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Localiser des animaux ou des plantes + AltName: '[Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)' Type: Divination - Ritual: rituel + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (des poils de chien de chasse) Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#localiser-des-animaux-ou-des-plantes ParentLink: spells_hd.md#sorts - Name: Localiser des animaux ou des plantes ParentName: Sorts NameLevel: 1 - AltName: '[Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Localiser un objet + AltName: '[Locate Object](srd_spells_locate_object.md)' Type: Divination + Level: 2 CastingTime: 1 action Range: personnelle Components: V, S, M (une branche fourchue) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#localiser-un-objet ParentLink: spells_hd.md#sorts - Name: Localiser un objet ParentName: Sorts NameLevel: 1 - AltName: '[Locate Object](srd_spells_locate_object.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Localiser une créature + AltName: '[Locate Creature](srd_spells_locate_creature.md)' Type: Divination + Level: 4 CastingTime: 1 action Range: personnelle Components: V, S, M (des poils de chien de chasse) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#localiser-une-créature ParentLink: spells_hd.md#sorts - Name: Localiser une créature ParentName: Sorts NameLevel: 1 - AltName: '[Locate Creature](srd_spells_locate_creature.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Lueur d'espoir + AltName: '[Beacon of Hope](srd_spells_beacon_of_hope.md)' Type: Abjuration + Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p) Id: spells_hd.md#lueur-despoir ParentLink: spells_hd.md#sorts - Name: Lueur d'espoir ParentName: Sorts NameLevel: 1 - AltName: '[Beacon of Hope](srd_spells_beacon_of_hope.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Lueurs féeriques + AltName: '[Faerie Fire](srd_spells_faerie_fire.md)' Type: Évocation + Level: 1 CastingTime: 1 action Range: 18 mètres Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lueurs-féeriques ParentLink: spells_hd.md#sorts - Name: Lueurs féeriques ParentName: Sorts NameLevel: 1 - AltName: '[Faerie Fire](srd_spells_faerie_fire.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Lumière + AltName: '[Light](srd_spells_light.md)' Type: Évocation + Level: tour de magie CastingTime: 1 action Range: contact Components: V, M (une luciole ou de la mousse phosphorescente) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lumière ParentLink: spells_hd.md#sorts - Name: Lumière ParentName: Sorts NameLevel: 1 - AltName: '[Light](srd_spells_light.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Lumière du jour + AltName: '[Daylight](srd_spells_daylight.md)' Type: Évocation + Level: 3 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: 1 heure Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lumière-du-jour ParentLink: spells_hd.md#sorts - Name: Lumière du jour ParentName: Sorts NameLevel: 1 - AltName: '[Daylight](srd_spells_daylight.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Lumières dansantes + AltName: '[Dancing Lights](srd_spells_dancing_lights.md)' Type: Évocation + Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S, M (un bout de phosphore ou d'orme, ou un ver luisant) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#lumières-dansantes ParentLink: spells_hd.md#sorts - Name: Lumières dansantes ParentName: Sorts NameLevel: 1 - AltName: '[Dancing Lights](srd_spells_dancing_lights.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Main du mage + AltName: '[Mage Hand](srd_spells_mage_hand.md)' Type: Invocation + Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#main-du-mage ParentLink: spells_hd.md#sorts - Name: Main du mage ParentName: Sorts NameLevel: 1 - AltName: '[Mage Hand](srd_spells_mage_hand.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Main magique + AltName: '[Arcane Hand](srd_spells_arcane_hand.md)' Type: Évocation + Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S, M (une coquille d'oeuf et un gant en peau de serpent) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#main-magique ParentLink: spells_hd.md#sorts - Name: Main magique ParentName: Sorts NameLevel: 1 - AltName: '[Arcane Hand](srd_spells_arcane_hand.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Mains brûlantes + AltName: '[Burning Hands](srd_spells_burning_hands.md)' Type: Évocation + Level: 1 CastingTime: 1 action Range: personnelle (cône de 4,50 mètres) Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mains-brûlantes ParentLink: spells_hd.md#sorts - Name: Mains brûlantes ParentName: Sorts NameLevel: 1 - AltName: '[Burning Hands](srd_spells_burning_hands.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Manoir somptueux + AltName: '[Magnificent Mansion](srd_spells_magnificent_mansion.md)' Type: Invocation + Level: 7 CastingTime: 1 minute Range: 90 mètres Components: V, S, M (un portrait miniature gravé dans de l'ivoire, un bout de marbre poli et une minuscule cuillère en argent, chaque objet devant valoir au minimum 5 po) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#manoir-somptueux ParentLink: spells_hd.md#sorts - Name: Manoir somptueux ParentName: Sorts NameLevel: 1 - AltName: '[Magnificent Mansion](srd_spells_magnificent_mansion.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Manteau de givre Type: Abjuration + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (un peu d'eau) Duration: 8 heures Classes: '[Sorcier](hd_warlock.md)' + Source: (MDR p) Id: spells_hd.md#manteau-de-givre ParentLink: spells_hd.md#sorts - Name: Manteau de givre ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Marche sur l'eau + AltName: '[Water Walk](srd_spells_water_walk.md)' Type: Transmutation - Ritual: rituel + Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un bout de liège) Duration: 1 heure Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p) + Ritual: rituel Id: spells_hd.md#marche-sur-leau ParentLink: spells_hd.md#sorts - Name: Marche sur l'eau ParentName: Sorts NameLevel: 1 - AltName: '[Water Walk](srd_spells_water_walk.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Marche sur le vent + AltName: '[Wind Walk](srd_spells_wind_walk.md)' Type: Transmutation + Level: 6 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (du feu et de l'eau bénite) Duration: 8 heures Classes: '[Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#marche-sur-le-vent ParentLink: spells_hd.md#sorts - Name: Marche sur le vent ParentName: Sorts NameLevel: 1 - AltName: '[Wind Walk](srd_spells_wind_walk.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Marque du chasseur + AltName: "[Hunter's Mark](srd_spells_hunters_mark.md)" Type: Divination + Level: 1 CastingTime: 1 action bonus Range: 27 mètres Components: V Duration: concentration, jusqu'à 1 heure Classes: '[Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#marque-du-chasseur ParentLink: spells_hd.md#sorts - Name: Marque du chasseur ParentName: Sorts NameLevel: 1 - AltName: "[Hunter's Mark](srd_spells_hunters_mark.md)" - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Mauvais oeil + AltName: '[Eyebite](srd_spells_eyebite.md)' Type: Nécromancie + Level: 6 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mauvais-oeil ParentLink: spells_hd.md#sorts - Name: Mauvais oeil ParentName: Sorts NameLevel: 1 - AltName: '[Eyebite](srd_spells_eyebite.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Message + AltName: '[Message](srd_spells_message.md)' Type: Transmutation + Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S, M (un petit bout de fil de cuivre) Duration: 1 round Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#message ParentLink: spells_hd.md#sorts - Name: Message ParentName: Sorts NameLevel: 1 - AltName: '[Message](srd_spells_message.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Messager animal + AltName: '[Animal Messenger](srd_spells_animal_messenger.md)' Type: Enchantement - Ritual: rituel + Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un peu de nourriture) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#messager-animal ParentLink: spells_hd.md#sorts - Name: Messager animal ParentName: Sorts NameLevel: 1 - AltName: '[Animal Messenger](srd_spells_animal_messenger.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Métamorphose + AltName: '[Polymorph](srd_spells_polymorph.md)' Type: Transmutation + Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un cocon de chenille) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#métamorphose ParentLink: spells_hd.md#sorts - Name: Métamorphose ParentName: Sorts NameLevel: 1 - AltName: '[Polymorph](srd_spells_polymorph.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Métamorphose suprême + AltName: '[True Polymorph](srd_spells_true_polymorph.md)' Type: Transmutation + Level: 9 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une goutte de mercure, une cuillerée de gomme arabique et une volute de fumée) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#métamorphose-suprême ParentLink: spells_hd.md#sorts - Name: Métamorphose suprême ParentName: Sorts NameLevel: 1 - AltName: '[True Polymorph](srd_spells_true_polymorph.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Mirage + AltName: '[Mirage Arcane](srd_spells_mirage_arcane.md)' Type: Illusion + Level: 7 CastingTime: 10 minutes Range: vision Components: V, S Duration: 10 jours Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mirage ParentLink: spells_hd.md#sorts - Name: Mirage ParentName: Sorts NameLevel: 1 - AltName: '[Mirage Arcane](srd_spells_mirage_arcane.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Modification de mémoire + AltName: '[Modify Memory](srd_spells_modify_memory.md)' Type: Enchantement + Level: 5 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: "concentration, jusqu'à 1 minute " Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#modification-de-mémoire ParentLink: spells_hd.md#sorts - Name: Modification de mémoire ParentName: Sorts NameLevel: 1 - AltName: '[Modify Memory](srd_spells_modify_memory.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Modifier son apparence + AltName: '[Alter Self](srd_spells_alter_self.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#modifier-son-apparence ParentLink: spells_hd.md#sorts - Name: Modifier son apparence ParentName: Sorts NameLevel: 1 - AltName: '[Alter Self](srd_spells_alter_self.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Monture fantôme + AltName: '[Phantom Steed](srd_spells_phantom_steed.md)' Type: Illusion - Ritual: rituel + Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#monture-fantôme ParentLink: spells_hd.md#sorts - Name: Monture fantôme ParentName: Sorts NameLevel: 1 - AltName: '[Phantom Steed](srd_spells_phantom_steed.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Moquerie cruelle + AltName: '[Vicious Mockery](srd_spells_vicious_mockery.md)' Type: Enchantement + Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#moquerie-cruelle ParentLink: spells_hd.md#sorts - Name: Moquerie cruelle ParentName: Sorts NameLevel: 1 - AltName: '[Vicious Mockery](srd_spells_vicious_mockery.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Mot de guérison + AltName: '[Healing Word](srd_spells_healing_word.md)' Type: Évocation + Level: 1 CastingTime: 1 action bonus Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-guérison ParentLink: spells_hd.md#sorts - Name: Mot de guérison ParentName: Sorts NameLevel: 1 - AltName: '[Healing Word](srd_spells_healing_word.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Mot de guérison de groupe + AltName: '[Mass Healing Word](srd_spells_mass_healing_word.md)' Type: Évocation + Level: 3 CastingTime: 1 action bonus Range: 18 mètres Components: V Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-guérison-de-groupe ParentLink: spells_hd.md#sorts - Name: Mot de guérison de groupe ParentName: Sorts NameLevel: 1 - AltName: '[Mass Healing Word](srd_spells_mass_healing_word.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Mot de pouvoir étourdissant + AltName: '[Power Word Stun](srd_spells_power_word_stun.md)' Type: Enchantement + Level: 8 CastingTime: 1 action Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-pouvoir-étourdissant ParentLink: spells_hd.md#sorts - Name: Mot de pouvoir étourdissant ParentName: Sorts NameLevel: 1 - AltName: '[Power Word Stun](srd_spells_power_word_stun.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Mot de pouvoir mortel + AltName: '[Power Word Kill](srd_spells_power_word_kill.md)' Type: Enchantement + Level: 9 CastingTime: 1 action Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-pouvoir-mortel ParentLink: spells_hd.md#sorts - Name: Mot de pouvoir mortel ParentName: Sorts NameLevel: 1 - AltName: '[Power Word Kill](srd_spells_power_word_kill.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Mot de retour + AltName: '[Word of Recall](srd_spells_word_of_recall.md)' Type: Invocation + Level: 6 CastingTime: 1 action Range: 1,5 mètre Components: V Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-retour ParentLink: spells_hd.md#sorts - Name: Mot de retour ParentName: Sorts NameLevel: 1 - AltName: '[Word of Recall](srd_spells_word_of_recall.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Motif hypnotique + AltName: '[Hypnotic Pattern](srd_spells_hypnotic_pattern.md)' Type: Illusion + Level: 3 CastingTime: 1 action Range: 36 mètres Components: S, M (un bâtonnet d'encens incandescent ou une fiole de cristal remplie d'une matière phosphorescente) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#motif-hypnotique ParentLink: spells_hd.md#sorts - Name: Motif hypnotique ParentName: Sorts NameLevel: 1 - AltName: '[Hypnotic Pattern](srd_spells_hypnotic_pattern.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Mur d'épines + AltName: '[Wall of Thorns](srd_spells_wall_of_thorns.md)' Type: Invocation + Level: 6 CastingTime: 1 action Range: 36 mètres Components: V, S, M (une poignée d'épines) Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md)' + Source: (MDR p) Id: spells_hd.md#mur-dépines ParentLink: spells_hd.md#sorts - Name: Mur d'épines ParentName: Sorts NameLevel: 1 - AltName: '[Wall of Thorns](srd_spells_wall_of_thorns.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Mur de feu + AltName: '[Wall of Fire](srd_spells_wall_of_fire.md)' Type: Évocation + Level: 4 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un éclat de phosphore) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-feu ParentLink: spells_hd.md#sorts - Name: Mur de feu ParentName: Sorts NameLevel: 1 - AltName: '[Wall of Fire](srd_spells_wall_of_fire.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Mur de force + AltName: '[Wall of Force](srd_spells_wall_of_force.md)' Type: Évocation + Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S, M (une pincée de poudre de gemme translucide) Duration: concentration, jusqu'à 10 minutes Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-force ParentLink: spells_hd.md#sorts - Name: Mur de force ParentName: Sorts NameLevel: 1 - AltName: '[Wall of Force](srd_spells_wall_of_force.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Mur de glace + AltName: '[Wall of Ice](srd_spells_wall_of_ice.md)' Type: Évocation + Level: 6 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un éclat de quartz) Duration: concentration, jusqu'à 10 minutes Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-glace ParentLink: spells_hd.md#sorts - Name: Mur de glace ParentName: Sorts NameLevel: 1 - AltName: '[Wall of Ice](srd_spells_wall_of_ice.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Mur de pierre + AltName: '[Wall of Stone](srd_spells_wall_of_stone.md)' Type: Évocation + Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un petit bloc de granite) Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-pierre ParentLink: spells_hd.md#sorts - Name: Mur de pierre ParentName: Sorts NameLevel: 1 - AltName: '[Wall of Stone](srd_spells_wall_of_stone.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Mur de vent + AltName: '[Wind Wall](srd_spells_wind_wall.md)' Type: Évocation + Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un petit éventail et une plume exotique) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-vent ParentLink: spells_hd.md#sorts - Name: Mur de vent ParentName: Sorts NameLevel: 1 - AltName: '[Wind Wall](srd_spells_wind_wall.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Mur prismatique + AltName: '[Prismatic Wall](srd_spells_prismatic_wall.md)' Type: Abjuration + Level: 9 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: 10 minutes Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#mur-prismatique ParentLink: spells_hd.md#sorts - Name: Mur prismatique ParentName: Sorts NameLevel: 1 - AltName: '[Prismatic Wall](srd_spells_prismatic_wall.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Nappe de brouillard + AltName: '[Fog Cloud](srd_spells_fog_cloud.md)' Type: Invocation + Level: 1 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#nappe-de-brouillard ParentLink: spells_hd.md#sorts - Name: Nappe de brouillard ParentName: Sorts NameLevel: 1 - AltName: '[Fog Cloud](srd_spells_fog_cloud.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Nimbe de bienfaisance Type: Abjuration + Level: 4 CastingTime: 1 action Range: personnelle Components: V Duration: concentration, jusqu'à 10 minutes Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p) Id: spells_hd.md#nimbe-de-bienfaisance ParentLink: spells_hd.md#sorts - Name: Nimbe de bienfaisance ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Non-détection + AltName: '[Nondetection](srd_spells_nondetection.md)' Type: Abjuration + Level: 3 CastingTime: 1 action Range: contact Components: V, S, M (une pincée de poussière de diamant d'une valeur de 25 po, que le sort consume une fois saupoudrée sur la cible) Duration: 8 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#non-détection ParentLink: spells_hd.md#sorts - Name: Non-détection ParentName: Sorts NameLevel: 1 - AltName: '[Nondetection](srd_spells_nondetection.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Nuage incendiaire + AltName: '[Incendiary Cloud](srd_spells_incendiary_cloud.md)' Type: Invocation + Level: 8 CastingTime: 1 action Range: 45 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#nuage-incendiaire ParentLink: spells_hd.md#sorts - Name: Nuage incendiaire ParentName: Sorts NameLevel: 1 - AltName: '[Incendiary Cloud](srd_spells_incendiary_cloud.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Nuage mortel + AltName: '[Cloudkill](srd_spells_cloudkill.md)' Type: Invocation + Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#nuage-mortel ParentLink: spells_hd.md#sorts - Name: Nuage mortel ParentName: Sorts NameLevel: 1 - AltName: '[Cloudkill](srd_spells_cloudkill.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Nuage puant + AltName: '[Stinking Cloud](srd_spells_stinking_cloud.md)' Type: Invocation + Level: 3 CastingTime: 1 action Range: 27 mètres Components: V, S, M (un oeuf pourri ou des feuilles de chou pourri) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#nuage-puant ParentLink: spells_hd.md#sorts - Name: Nuage puant ParentName: Sorts NameLevel: 1 - AltName: '[Stinking Cloud](srd_spells_stinking_cloud.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Nuée de météores + AltName: '[Meteor Swarm](srd_spells_meteor_swarm.md)' Type: Évocation + Level: 9 CastingTime: 1 action Range: 1,5 kilomètre Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#nuée-de-météores ParentLink: spells_hd.md#sorts - Name: Nuée de météores ParentName: Sorts NameLevel: 1 - AltName: '[Meteor Swarm](srd_spells_meteor_swarm.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Nuée de projectiles Type: Invocation + Level: 5 CastingTime: 1 action bonus Range: selon l'arme utilisée Components: V, S, M (un projectile) Duration: instantané Classes: '[Rôdeur](hd_ranger.md)' + Source: (MDR p) Id: spells_hd.md#nuée-de-projectiles ParentLink: spells_hd.md#sorts - Name: Nuée de projectiles ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Oeil magique + AltName: '[Arcane Eye](srd_spells_arcane_eye.md)' Type: Divination + Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S, M (des poils de chauve-souris) Duration: concentration, jusqu'à 1 heure Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#oeil-magique ParentLink: spells_hd.md#sorts - Name: Oeil magique ParentName: Sorts NameLevel: 1 - AltName: '[Arcane Eye](srd_spells_arcane_eye.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Offrande inéluctable Type: Enchantement + Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p) Id: spells_hd.md#offrande-inéluctable ParentLink: spells_hd.md#sorts - Name: Offrande inéluctable ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Ombres imaginaires Type: Illusion + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un morceau de charbon) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p) Id: spells_hd.md#ombres-imaginaires ParentLink: spells_hd.md#sorts - Name: Ombres imaginaires ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Panacée Type: Abjuration + Level: 4 CastingTime: 1 action Range: personnelle (3 mètres de rayon) Components: V, S Duration: Instantanée Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p) Id: spells_hd.md#panacée ParentLink: spells_hd.md#sorts - Name: Panacée ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Parole divine + AltName: '[Divine Word](srd_spells_divine_word.md)' Type: Évocation + Level: 7 CastingTime: 1 action bonus Range: 9 mètres Components: V Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#parole-divine ParentLink: spells_hd.md#sorts - Name: Parole divine ParentName: Sorts NameLevel: 1 - AltName: '[Divine Word](srd_spells_divine_word.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Pas brumeux + AltName: '[Misty Step](srd_spells_misty_step.md)' Type: Invocation + Level: 2 CastingTime: 1 action bonus Range: personnelle Components: V Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#pas-brumeux ParentLink: spells_hd.md#sorts - Name: Pas brumeux ParentName: Sorts NameLevel: 1 - AltName: '[Misty Step](srd_spells_misty_step.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Passage dimensionnel Type: Invocation + Level: 6 CastingTime: 1 action Range: 150 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p) Id: spells_hd.md#passage-dimensionnel ParentLink: spells_hd.md#sorts - Name: Passage dimensionnel ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Passage par les arbres + AltName: '[Tree Stride](srd_spells_tree_stride.md)' Type: Invocation + Level: 5 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#passage-par-les-arbres ParentLink: spells_hd.md#sorts - Name: Passage par les arbres ParentName: Sorts NameLevel: 1 - AltName: '[Tree Stride](srd_spells_tree_stride.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Passage sans trace + AltName: '[Pass without Trace](srd_spells_pass_without_trace.md)' Type: Abjuration + Level: 2 CastingTime: 1 action Range: personnelle Components: V, S, M (cendres d'une feuille de gui et une brindille d'épicéa) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#passage-sans-trace ParentLink: spells_hd.md#sorts - Name: Passage sans trace ParentName: Sorts NameLevel: 1 - AltName: '[Pass without Trace](srd_spells_pass_without_trace.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Passe-muraille + AltName: '[Passwall](srd_spells_passwall.md)' Type: Transmutation + Level: 5 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une pincée de graines de sésame) Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#passe-muraille ParentLink: spells_hd.md#sorts - Name: Passe-muraille ParentName: Sorts NameLevel: 1 - AltName: '[Passwall](srd_spells_passwall.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Pattes d'araignée + AltName: '[Spider Climb](srd_spells_spider_climb.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une goutte de bitume et une araignée) Duration: concentration, jusqu'à 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p) Id: spells_hd.md#pattes-daraignée ParentLink: spells_hd.md#sorts - Name: Pattes d'araignée ParentName: Sorts NameLevel: 1 - AltName: '[Spider Climb](srd_spells_spider_climb.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Peau d'écorce + AltName: '[Barkskin](srd_spells_barkskin.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une poignée d'écorce de chêne) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p) Id: spells_hd.md#peau-décorce ParentLink: spells_hd.md#sorts - Name: Peau d'écorce ParentName: Sorts NameLevel: 1 - AltName: '[Barkskin](srd_spells_barkskin.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Peau de pierre + AltName: '[Stoneskin](srd_spells_stoneskin.md)' Type: Abjuration + Level: 4 CastingTime: 1 action Range: contact Components: V, S, M (poussière de diamant d'une valeur de 100 po, que le sort consume) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#peau-de-pierre ParentLink: spells_hd.md#sorts - Name: Peau de pierre ParentName: Sorts NameLevel: 1 - AltName: '[Stoneskin](srd_spells_stoneskin.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Petite hutte + AltName: '[Tiny Hut](srd_spells_tiny_hut.md)' Type: Évocation - Ritual: rituel + Level: 3 CastingTime: 1 minute Range: personnelle (hémisphère de 3 mètres de rayon) Components: V, S, M (une petite perle de cristal) Duration: 8 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p) + Ritual: rituel Id: spells_hd.md#petite-hutte ParentLink: spells_hd.md#sorts - Name: Petite hutte ParentName: Sorts NameLevel: 1 - AltName: '[Tiny Hut](srd_spells_tiny_hut.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Pétrification + AltName: '[Flesh to Stone](srd_spells_flesh_to_stone.md)' Type: Transmutation + Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une pincée de chaux, de l'eau et de la terre) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#pétrification ParentLink: spells_hd.md#sorts - Name: Pétrification ParentName: Sorts NameLevel: 1 - AltName: '[Flesh to Stone](srd_spells_flesh_to_stone.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Peur + AltName: '[Fear](srd_spells_fear.md)' Type: Illusion + Level: 3 CastingTime: 1 action Range: personnelle (cône de 9 mètres) Components: V, S, M (une plume blanche ou un coeur de poule) Duration: concentration, jusqu'à 1 minute. Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#peur ParentLink: spells_hd.md#sorts - Name: Peur ParentName: Sorts NameLevel: 1 - AltName: '[Fear](srd_spells_fear.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Pluie de projectiles Type: Invocation + Level: 3 CastingTime: 1 action bonus Range: selon l'arme utilisée Components: V, S, M (un projectile) Duration: instantané Classes: '[Rôdeur](hd_ranger.md)' + Source: (MDR p) Id: spells_hd.md#pluie-de-projectiles ParentLink: spells_hd.md#sorts - Name: Pluie de projectiles ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Poigne électrique + AltName: '[Shocking Grasp](srd_spells_shocking_grasp.md)' Type: Évocation + Level: tour de magie CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#poigne-électrique ParentLink: spells_hd.md#sorts - Name: Poigne électrique ParentName: Sorts NameLevel: 1 - AltName: '[Shocking Grasp](srd_spells_shocking_grasp.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Poison naturel Type: Invocation + Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p) Id: spells_hd.md#poison-naturel ParentLink: spells_hd.md#sorts - Name: Poison naturel ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Portail + AltName: '[Gate](srd_spells_gate.md)' Type: Invocation + Level: 9 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un diamant d'une valeur minimale de 5 000 po) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#portail ParentLink: spells_hd.md#sorts - Name: Portail ParentName: Sorts NameLevel: 1 - AltName: '[Gate](srd_spells_gate.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Porte dimensionnelle + AltName: '[Dimension Door](srd_spells_dimension_door.md)' Type: Invocation + Level: 4 CastingTime: 1 action Range: 150 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#porte-dimensionnelle ParentLink: spells_hd.md#sorts - Name: Porte dimensionnelle ParentName: Sorts NameLevel: 1 - AltName: '[Dimension Door](srd_spells_dimension_door.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Porte-bonheur Type: Abjuration + Level: tour de magie CastingTime: 1 action Range: personnel Components: V, S, M (objet porte-bonheur) Duration: 1 round Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p) Id: spells_hd.md#porte-bonheur ParentLink: spells_hd.md#sorts - Name: Porte-bonheur ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Possession + AltName: '[Magic Jar](srd_spells_magic_jar.md)' Type: Nécromancie + Level: 6 CastingTime: 1 minute Range: personnelle Components: V, S, M (une gemme, un cristal, un reliquaire ou un autre réceptacle ornemental d'une valeur minimale de 500 po) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#possession ParentLink: spells_hd.md#sorts - Name: Possession ParentName: Sorts NameLevel: 1 - AltName: '[Magic Jar](srd_spells_magic_jar.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Prémonition + AltName: '[Foresight](srd_spells_foresight.md)' Type: Divination + Level: 9 CastingTime: 1 minute Range: contact Components: V, S, M (une plume d'oiseau chanteur) Duration: 8 heures Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#prémonition ParentLink: spells_hd.md#sorts - Name: Prémonition ParentName: Sorts NameLevel: 1 - AltName: '[Foresight](srd_spells_foresight.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Prestidigitation + AltName: '[Prestidigitation](srd_spells_prestidigitation.md)' Type: Transmutation + Level: tour de magie CastingTime: 1 action Range: 3 mètres Components: V, S Duration: jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#prestidigitation ParentLink: spells_hd.md#sorts - Name: Prestidigitation ParentName: Sorts NameLevel: 1 - AltName: '[Prestidigitation](srd_spells_prestidigitation.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Prière de soins + AltName: '[Prayer of Healing](srd_spells_prayer_of_healing.md)' Type: Évocation + Level: 2 CastingTime: 10 minutes Range: 9 mètres Components: V Duration: instantanée Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#prière-de-soins ParentLink: spells_hd.md#sorts - Name: Prière de soins ParentName: Sorts NameLevel: 1 - AltName: '[Prayer of Healing](srd_spells_prayer_of_healing.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Produire une flamme + AltName: '[Produce Flame](srd_spells_produce_flame.md)' Type: Invocation + Level: tour de magie CastingTime: 1 action Range: personnelle Components: V, S Duration: 10 minutes Classes: '[Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#produire-une-flamme ParentLink: spells_hd.md#sorts - Name: Produire une flamme ParentName: Sorts NameLevel: 1 - AltName: '[Produce Flame](srd_spells_produce_flame.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Projectile magique + AltName: '[Magic Missile](srd_spells_magic_missile.md)' Type: Évocation + Level: 1 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#projectile-magique ParentLink: spells_hd.md#sorts - Name: Projectile magique ParentName: Sorts NameLevel: 1 - AltName: '[Magic Missile](srd_spells_magic_missile.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Projectile toxique Type: Invocation + Level: 3 CastingTime: 1 action bonus Range: selon l'arme utilisée Components: V, S, M (un projectile) Duration: instantané Classes: '[Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p) Id: spells_hd.md#projectile-toxique ParentLink: spells_hd.md#sorts - Name: Projectile toxique ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Projection astrale + AltName: '[Astral Projection](srd_spells_astral_projection.md)' Type: Nécromancie + Level: 9 CastingTime: 1 heure Range: 3 mètres Components: V, S, M (un zircon jaune d'une valeur minimale de 1 000 po et un lingot d'argent gravé d'une valeur minimale de 100 po par créature ; le sort consomme ces composantes) Duration: spéciale Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#projection-astrale ParentLink: spells_hd.md#sorts - Name: Projection astrale ParentName: Sorts NameLevel: 1 - AltName: '[Astral Projection](srd_spells_astral_projection.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Protection contre la mort + AltName: '[Death Ward](srd_spells_death_ward.md)' Type: Abjuration + Level: 4 CastingTime: 1 action Range: contact Components: V, S Duration: 8 heures Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#protection-contre-la-mort ParentLink: spells_hd.md#sorts - Name: Protection contre la mort ParentName: Sorts NameLevel: 1 - AltName: '[Death Ward](srd_spells_death_ward.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Protection contre le mal et le bien + AltName: '[Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)' Type: Abjuration + Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (eau bénite ou poudre de fer et d'argent, que le sort consume) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#protection-contre-le-mal-et-le-bien ParentLink: spells_hd.md#sorts - Name: Protection contre le mal et le bien ParentName: Sorts NameLevel: 1 - AltName: '[Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Protection contre le poison + AltName: '[Protection from Poison](srd_spells_protection_from_poison.md)' Type: Abjuration + Level: 2 CastingTime: 1 action Range: contact Components: V, S Duration: 1 heure Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#protection-contre-le-poison ParentLink: spells_hd.md#sorts - Name: Protection contre le poison ParentName: Sorts NameLevel: 1 - AltName: '[Protection from Poison](srd_spells_protection_from_poison.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Protection contre les énergies + AltName: '[Protection from Energy](srd_spells_protection_from_energy.md)' Type: Abjuration + Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Ombrelame](hd_rogue_ombrelame.md)' + Source: (MDR p) Id: spells_hd.md#protection-contre-les-énergies ParentLink: spells_hd.md#sorts - Name: Protection contre les énergies ParentName: Sorts NameLevel: 1 - AltName: '[Protection from Energy](srd_spells_protection_from_energy.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Protections et sceaux + AltName: '[Guards and Wards](srd_spells_guards_and_wards.md)' Type: Abjuration + Level: 6 CastingTime: 10 minutes Range: contact Components: V, S, M (encens incandescent, petite dose de soufre et d'huile, cordelette avec des noeuds, petite dose de sang d'ombre des roches et petit sceptre en argent d'une valeur minimale de 10 po) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#protections-et-sceaux ParentLink: spells_hd.md#sorts - Name: Protections et sceaux ParentName: Sorts NameLevel: 1 - AltName: '[Guards and Wards](srd_spells_guards_and_wards.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Purification de la nourriture et de l'eau + AltName: '[Purify Food and Drink](srd_spells_purify_food_and_drink.md)' Type: Transmutation - Ritual: rituel + Level: 1 CastingTime: 1 action Range: 3 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md)' + Source: (MDR p) + Ritual: rituel Id: spells_hd.md#purification-de-la-nourriture-et-de-leau ParentLink: spells_hd.md#sorts - Name: Purification de la nourriture et de l'eau ParentName: Sorts NameLevel: 1 - AltName: '[Purify Food and Drink](srd_spells_purify_food_and_drink.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Putréfaction Type: Nécromancie + Level: 1 CastingTime: 1 action Range: 30 mètres Components: V, S, M Duration: concentration, jusqu'à 1 heure Classes: '[Sorcier](hd_warlock.md)' + Source: (MDR p) Id: spells_hd.md#putréfaction ParentLink: spells_hd.md#sorts - Name: Putréfaction ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Rappel à la vie + AltName: '[Raise Dead](srd_spells_raise_dead.md)' Type: Nécromancie + Level: 5 CastingTime: 1 heure Range: contact Components: V, S, M (un diamant d'une valeur minimale de 500 po, que le sort consume) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p) Id: spells_hd.md#rappel-à-la-vie ParentLink: spells_hd.md#sorts - Name: Rappel à la vie ParentName: Sorts NameLevel: 1 - AltName: '[Raise Dead](srd_spells_raise_dead.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Rayon affaiblissant + AltName: '[Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)' Type: Nécromancie + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#rayon-affaiblissant ParentLink: spells_hd.md#sorts - Name: Rayon affaiblissant ParentName: Sorts NameLevel: 1 - AltName: '[Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Rayon ardent + AltName: '[Scorching Ray](srd_spells_scorching_ray.md)' Type: Évocation + Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#rayon-ardent ParentLink: spells_hd.md#sorts - Name: Rayon ardent ParentName: Sorts NameLevel: 1 - AltName: '[Scorching Ray](srd_spells_scorching_ray.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Rayon de givre + AltName: '[Ray of Frost](srd_spells_ray_of_frost.md)' Type: Évocation + Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#rayon-de-givre ParentLink: spells_hd.md#sorts - Name: Rayon de givre ParentName: Sorts NameLevel: 1 - AltName: '[Ray of Frost](srd_spells_ray_of_frost.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Rayon de lune + AltName: '[Moonbeam](srd_spells_moonbeam.md)' Type: Évocation + Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S, M (quelques graines de lierre, peu importe l'espèce, et un éclat de feldspath opalescent) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#rayon-de-lune ParentLink: spells_hd.md#sorts - Name: Rayon de lune ParentName: Sorts NameLevel: 1 - AltName: '[Moonbeam](srd_spells_moonbeam.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Rayon de soleil + AltName: '[Sunbeam](srd_spells_sunbeam.md)' Type: Évocation + Level: 6 CastingTime: 1 action Range: personnelle (ligne de 18 mètres) Components: V, S, M (une loupe) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#rayon-de-soleil ParentLink: spells_hd.md#sorts - Name: Rayon de soleil ParentName: Sorts NameLevel: 1 - AltName: '[Sunbeam](srd_spells_sunbeam.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Régénération + AltName: '[Regenerate](srd_spells_regenerate.md)' Type: Transmutation + Level: 7 CastingTime: 1 minute Range: contact Components: V, S, M (un moulin à prières et de l'eau bénite) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#régénération ParentLink: spells_hd.md#sorts - Name: Régénération ParentName: Sorts NameLevel: 1 - AltName: '[Regenerate](srd_spells_regenerate.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Réincarnation + AltName: '[Reincarnate](srd_spells_reincarnate.md)' Type: Transmutation + Level: 5 CastingTime: 1 heure Range: contact Components: V, S, M (huiles et onguents rares d'une valeur minimale de 1 000 po, que le sort consume) Duration: instantanée Classes: '[Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#réincarnation ParentLink: spells_hd.md#sorts - Name: Réincarnation ParentName: Sorts NameLevel: 1 - AltName: '[Reincarnate](srd_spells_reincarnate.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Réparation + AltName: '[Mending](srd_spells_mending.md)' Type: Transmutation + Level: tour de magie CastingTime: 1 minute Range: contact Components: V, S, M (deux magnétites) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#réparation ParentLink: spells_hd.md#sorts - Name: Réparation ParentName: Sorts NameLevel: 1 - AltName: '[Mending](srd_spells_mending.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Repli expéditif + AltName: '[Expeditious Retreat](srd_spells_expeditious_retreat.md)' Type: Transmutation + Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#repli-expéditif ParentLink: spells_hd.md#sorts - Name: Repli expéditif ParentName: Sorts NameLevel: 1 - AltName: '[Expeditious Retreat](srd_spells_expeditious_retreat.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Représailles infernales + AltName: '[Hellish Rebuke](srd_spells_hellish_rebuke.md)' Type: Évocation + Level: 1 CastingTime: 1 réaction en réponse aux dégâts que vous inflige une créature située dans votre champ de vision et dans un rayon de 18 mètres autour de vous Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#représailles-infernales ParentLink: spells_hd.md#sorts - Name: Représailles infernales ParentName: Sorts NameLevel: 1 - AltName: '[Hellish Rebuke](srd_spells_hellish_rebuke.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Répulsion/attirance + AltName: '[Antipathy/Sympathy](srd_spells_antipathysympathy.md)' Type: Enchantement + Level: 8 CastingTime: 1 heure Range: 18 mètres Components: V, S, M (un cristal d'alun trempé dans le vinaigre pour répulsion ou une goutte de miel pour attirance) Duration: 10 jours Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#répulsionattirance ParentLink: spells_hd.md#sorts - Name: Répulsion/attirance ParentName: Sorts NameLevel: 1 - AltName: '[Antipathy/Sympathy](srd_spells_antipathysympathy.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Résistance + AltName: '[Resistance](srd_spells_resistance.md)' Type: Abjuration + Level: tour de magie CastingTime: 1 action Range: contact Components: V, S, M (une cape miniature) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#résistance ParentLink: spells_hd.md#sorts - Name: Résistance ParentName: Sorts NameLevel: 1 - AltName: '[Resistance](srd_spells_resistance.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Respiration aquatique + AltName: '[Water Breathing](srd_spells_water_breathing.md)' Type: Transmutation - Ritual: rituel + Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un petit roseau ou un brin de paille) Duration: 24 heures Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#respiration-aquatique ParentLink: spells_hd.md#sorts - Name: Respiration aquatique ParentName: Sorts NameLevel: 1 - AltName: '[Water Breathing](srd_spells_water_breathing.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Restauration inférieure + AltName: '[Lesser Restoration](srd_spells_lesser_restoration.md)' Type: Abjuration + Level: 2 CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#restauration-inférieure ParentLink: spells_hd.md#sorts - Name: Restauration inférieure ParentName: Sorts NameLevel: 1 - AltName: '[Lesser Restoration](srd_spells_lesser_restoration.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Restauration supérieure + AltName: '[Greater Restoration](srd_spells_greater_restoration.md)' Type: Abjuration + Level: 5 CastingTime: 1 action Range: contact Components: V, S, M (poussière de diamant d'une valeur minimale de 100 po, que le sort consume) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#restauration-supérieure ParentLink: spells_hd.md#sorts - Name: Restauration supérieure ParentName: Sorts NameLevel: 1 - AltName: '[Greater Restoration](srd_spells_greater_restoration.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Résurrection + AltName: '[Resurrection](srd_spells_resurrection.md)' Type: Nécromancie + Level: 7 CastingTime: 1 heure Range: contact Components: V, S, M (un diamant d'une valeur minimale de 1 000 po, que le sort consume) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#résurrection ParentLink: spells_hd.md#sorts - Name: Résurrection ParentName: Sorts NameLevel: 1 - AltName: '[Resurrection](srd_spells_resurrection.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Résurrection suprême + AltName: '[True Resurrection](srd_spells_true_resurrection.md)' Type: Nécromancie + Level: 9 CastingTime: 1 heure Range: contact Components: V, S, M (un peu d'eau bénite à asperger et des diamants d'une valeur minimale de 25 000 po, que le sort consume) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#résurrection-suprême ParentLink: spells_hd.md#sorts - Name: Résurrection suprême ParentName: Sorts NameLevel: 1 - AltName: '[True Resurrection](srd_spells_true_resurrection.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Rêve + AltName: '[Dream](srd_spells_dream.md)' Type: Illusion + Level: 5 CastingTime: 1 minute Range: spéciale Components: V, S, M (une poignée de sable, une goutte d'encre et une plume d'écrivain prélevée sur un oiseau endormi) Duration: 8 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#rêve ParentLink: spells_hd.md#sorts - Name: Rêve ParentName: Sorts NameLevel: 1 - AltName: '[Dream](srd_spells_dream.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Revigorer + AltName: '[Revivify](srd_spells_revivify.md)' Type: Nécromancie + Level: 3 CastingTime: 1 action Range: contact Components: V, S, M (diamant d'une valeur de 300 po, que le sort consume) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#revigorer ParentLink: spells_hd.md#sorts - Name: Revigorer ParentName: Sorts NameLevel: 1 - AltName: '[Revivify](srd_spells_revivify.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Sanctification + AltName: '[Hallow](srd_spells_hallow.md)' Type: Évocation + Level: 5 CastingTime: 24 heures Range: contact Components: V, S, M (herbes, huiles et encens d'une valeur minimale de 1 000 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#sanctification ParentLink: spells_hd.md#sorts - Name: Sanctification ParentName: Sorts NameLevel: 1 - AltName: '[Hallow](srd_spells_hallow.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Sanctuaire + AltName: '[Sanctuary](srd_spells_sanctuary.md)' Type: Abjuration + Level: 1 CastingTime: 1 action bonus Range: 9 mètres Components: V, S, M (un petit miroir en argent) Duration: 1 minute Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#sanctuaire ParentLink: spells_hd.md#sorts - Name: Sanctuaire ParentName: Sorts NameLevel: 1 - AltName: '[Sanctuary](srd_spells_sanctuary.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Sanctuaire privé + AltName: '[Private Sanctum](srd_spells_private_sanctum.md)' Type: Abjuration + Level: 4 CastingTime: 10 minutes Range: 36 mètres Components: V, S, M (une mince feuille de plomb, un morceau de verre opaque, un bout de coton ou de tissu et de la chrysolite en poudre) Duration: 24 heures Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#sanctuaire-privé ParentLink: spells_hd.md#sorts - Name: Sanctuaire privé ParentName: Sorts NameLevel: 1 - AltName: '[Private Sanctum](srd_spells_private_sanctum.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Sang du démon Type: Nécromancie + Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (une fiole d'un mélange de sang et d'acide) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#sang-du-démon ParentLink: spells_hd.md#sorts - Name: Sang du démon ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Saut + AltName: '[Jump](srd_spells_jump.md)' Type: Transmutation + Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (une patte arrière de sauterelle) Duration: 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#saut ParentLink: spells_hd.md#sorts - Name: Saut ParentName: Sorts NameLevel: 1 - AltName: '[Jump](srd_spells_jump.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Scrutation + AltName: '[Scrying](srd_spells_scrying.md)' Type: Divination + Level: 5 CastingTime: 10 minutes Range: personnelle Components: V, S, M (un focaliseur d'une valeur minimale de 1 000 po comme une boule de cristal, un miroir en argent ou un bénitier rempli d'eau bénite) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#scrutation ParentLink: spells_hd.md#sorts - Name: Scrutation ParentName: Sorts NameLevel: 1 - AltName: '[Scrying](srd_spells_scrying.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Séquestration + AltName: '[Sequester](srd_spells_sequester.md)' Type: Transmutation + Level: 7 CastingTime: 1 action Range: contact Components: V, S, M (une poudre de diamant, d'émeraude, de rubis et de saphir d'une valeur minimum de 5 000 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#séquestration ParentLink: spells_hd.md#sorts - Name: Séquestration ParentName: Sorts NameLevel: 1 - AltName: '[Sequester](srd_spells_sequester.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Serviteur invisible + AltName: '[Unseen Servant](srd_spells_unseen_servant.md)' Type: Invocation - Ritual: rituel + Level: 1 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un bout de ficelle et un morceau de bois) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#serviteur-invisible ParentLink: spells_hd.md#sorts - Name: Serviteur invisible ParentName: Sorts NameLevel: 1 - AltName: '[Unseen Servant](srd_spells_unseen_servant.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Silence + AltName: '[Silence](srd_spells_silence.md)' Type: Illusion - Ritual: rituel + Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#silence ParentLink: spells_hd.md#sorts - Name: Silence ParentName: Sorts NameLevel: 1 - AltName: '[Silence](srd_spells_silence.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Simulacre + AltName: '[Simulacrum](srd_spells_simulacrum.md)' Type: Illusion + Level: 7 CastingTime: 12 heures Range: contact Components: V, S, M (de la neige ou de la glace en quantité suffisante pour faire une reproduction grandeur nature de la créature à dupliquer ; des cheveux, des rognures d'ongles ou un autre échantillon de la créature à dupliquer, à placer dans la neige ou la glace, et de la poudre de rubis d'une valeur minimale de 1 500 po que le sort consume, à saupoudrer sur le double) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#simulacre ParentLink: spells_hd.md#sorts - Name: Simulacre ParentName: Sorts NameLevel: 1 - AltName: '[Simulacrum](srd_spells_simulacrum.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Simulacre de vie + AltName: '[False Life](srd_spells_false_life.md)' Type: Nécromancie + Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (une petite quantité d'alcool ou de spiritueux) Duration: 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#simulacre-de-vie ParentLink: spells_hd.md#sorts - Name: Simulacre de vie ParentName: Sorts NameLevel: 1 - AltName: '[False Life](srd_spells_false_life.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Soin des blessures + AltName: '[Cure Wounds](srd_spells_cure_wounds.md)' Type: Évocation + Level: 1 CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#soin-des-blessures ParentLink: spells_hd.md#sorts - Name: Soin des blessures ParentName: Sorts NameLevel: 1 - AltName: '[Cure Wounds](srd_spells_cure_wounds.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Soin des blessures de groupe + AltName: '[Mass Cure Wounds](srd_spells_mass_cure_wounds.md)' Type: Évocation + Level: 5 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#soin-des-blessures-de-groupe ParentLink: spells_hd.md#sorts - Name: Soin des blessures de groupe ParentName: Sorts NameLevel: 1 - AltName: '[Mass Cure Wounds](srd_spells_mass_cure_wounds.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Sommeil + AltName: '[Sleep](srd_spells_sleep.md)' Type: Enchantement + Level: 1 CastingTime: 1 action Range: 27 mètres Components: V, S, M (une pincée de sable fin, des pétales de rose ou un criquet) Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#sommeil ParentLink: spells_hd.md#sorts - Name: Sommeil ParentName: Sorts NameLevel: 1 - AltName: '[Sleep](srd_spells_sleep.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Souhait + AltName: '[Wish](srd_spells_wish.md)' Type: Invocation + Level: 9 CastingTime: 1 action Range: personnelle Components: V Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#souhait ParentLink: spells_hd.md#sorts - Name: Souhait ParentName: Sorts NameLevel: 1 - AltName: '[Wish](srd_spells_wish.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Sphère de feu + AltName: '[Flaming Sphere](srd_spells_flaming_sphere.md)' Type: Invocation + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un bout de suif, une pincée de soufre et un peu de poudre de fer) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#sphère-de-feu ParentLink: spells_hd.md#sorts - Name: Sphère de feu ParentName: Sorts NameLevel: 1 - AltName: '[Flaming Sphere](srd_spells_flaming_sphere.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Sphère glacée + AltName: '[Freezing Sphere](srd_spells_freezing_sphere.md)' Type: Évocation + Level: 6 CastingTime: 1 action Range: 90 mètres Components: V, S, M (une petite sphère de cristal) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#sphère-glacée ParentLink: spells_hd.md#sorts - Name: Sphère glacée ParentName: Sorts NameLevel: 1 - AltName: '[Freezing Sphere](srd_spells_freezing_sphere.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Sphère résiliente + AltName: '[Resilient Sphere](srd_spells_resilient_sphere.md)' Type: Évocation + Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un bout de cristal transparent hémisphérique et son équivalent en gomme arabique) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#sphère-résiliente ParentLink: spells_hd.md#sorts - Name: Sphère résiliente ParentName: Sorts NameLevel: 1 - AltName: '[Resilient Sphere](srd_spells_resilient_sphere.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Stalagmites fulgurantes Type: Invocation + Level: 2 CastingTime: 1 action Range: 30 mètres Components: V, S Duration: concentration, jusqu'à 1 minute. Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p) Id: spells_hd.md#stalagmites-fulgurantes ParentLink: spells_hd.md#sorts - Name: Stalagmites fulgurantes ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Strangulation Type: Invocation + Level: 1 CastingTime: 1 action Range: 9 m Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p) Id: spells_hd.md#strangulation ParentLink: spells_hd.md#sorts - Name: Strangulation ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Suggestion + AltName: '[Suggestion](srd_spells_suggestion.md)' Type: Enchantement + Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, M (une langue de serpent et soit un rayon de miel, soit une goutte d'huile d'olive) Duration: concentration, jusqu'à 8 heures Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#suggestion ParentLink: spells_hd.md#sorts - Name: Suggestion ParentName: Sorts NameLevel: 1 - AltName: '[Suggestion](srd_spells_suggestion.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Suggestion de groupe + AltName: '[Mass Suggestion](srd_spells_mass_suggestion.md)' Type: Enchantement + Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, M (une langue de serpent et soit un rayon de miel, soit une goutte d'huile d'olive) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#suggestion-de-groupe ParentLink: spells_hd.md#sorts - Name: Suggestion de groupe ParentName: Sorts NameLevel: 1 - AltName: '[Mass Suggestion](srd_spells_mass_suggestion.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Symbole + AltName: '[Symbol](srd_spells_symbol.md)' Type: Abjuration + Level: 7 CastingTime: 1 minute Range: contact Components: V, S, M (mercure, phosphore et poudre de diamant et d'opale d'une valeur totale d'au moins 1 000 po, que le sort consume) Duration: jusqu'à dissipation ou déclenchement Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#symbole ParentLink: spells_hd.md#sorts - Name: Symbole ParentName: Sorts NameLevel: 1 - AltName: '[Symbol](srd_spells_symbol.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Télékinésie + AltName: '[Telekinesis](srd_spells_telekinesis.md)' Type: Transmutation + Level: 5 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#télékinésie ParentLink: spells_hd.md#sorts - Name: Télékinésie ParentName: Sorts NameLevel: 1 - AltName: '[Telekinesis](srd_spells_telekinesis.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Téléportation + AltName: '[Teleport](srd_spells_teleport.md)' Type: Invocation + Level: 7 CastingTime: 1 action Range: 3 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#téléportation ParentLink: spells_hd.md#sorts - Name: Téléportation ParentName: Sorts NameLevel: 1 - AltName: '[Teleport](srd_spells_teleport.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 7 + Name: Tempête de feu + AltName: '[Fire Storm](srd_spells_fire_storm.md)' Type: Évocation + Level: 7 CastingTime: 1 action Range: 45 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#tempête-de-feu ParentLink: spells_hd.md#sorts - Name: Tempête de feu ParentName: Sorts NameLevel: 1 - AltName: '[Fire Storm](srd_spells_fire_storm.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Tempête de grêle + AltName: '[Ice Storm](srd_spells_ice_storm.md)' Type: Évocation + Level: 4 CastingTime: 1 action Range: 90 mètres Components: V, S, M (une pincée de poussière et quelques gouttes d'eau) Duration: instantanée Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#tempête-de-grêle ParentLink: spells_hd.md#sorts - Name: Tempête de grêle ParentName: Sorts NameLevel: 1 - AltName: '[Ice Storm](srd_spells_ice_storm.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Tempête de neige + AltName: '[Sleet Storm](srd_spells_sleet_storm.md)' Type: Invocation + Level: 3 CastingTime: 1 action Range: 45 mètres Components: V, S, M (une pincée de poussière et quelques gouttes d'eau) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#tempête-de-neige ParentLink: spells_hd.md#sorts - Name: Tempête de neige ParentName: Sorts NameLevel: 1 - AltName: '[Sleet Storm](srd_spells_sleet_storm.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Tempête de sable Type: Invocation + Level: 8 CastingTime: 1 action Range: 1 kilomètre Components: V, S, M (une rose des sables) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md)' + Source: (MDR p) Id: spells_hd.md#tempête-de-sable ParentLink: spells_hd.md#sorts - Name: Tempête de sable ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 9 + Name: Tempête vengeresse + AltName: '[Storm of Vengeance](srd_spells_storm_of_vengeance.md)' Type: Invocation + Level: 9 CastingTime: 1 action Range: champ de vision Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#tempête-vengeresse ParentLink: spells_hd.md#sorts - Name: Tempête vengeresse ParentName: Sorts NameLevel: 1 - AltName: '[Storm of Vengeance](srd_spells_storm_of_vengeance.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Ténèbres + AltName: '[Darkness](srd_spells_darkness.md)' Type: Évocation + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, M (des poils de chauve-souris et une goutte de poix ou un bout de charbon) Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#ténèbres ParentLink: spells_hd.md#sorts - Name: Ténèbres ParentName: Sorts NameLevel: 1 - AltName: '[Darkness](srd_spells_darkness.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Tentacules noirs + AltName: '[Black Tentacles](srd_spells_black_tentacles.md)' Type: Invocation + Level: 4 CastingTime: 1 action Range: 27 mètres Components: V, S, M (un bout de tentacule appartenant à une pieuvre ou un calmar géant) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#tentacules-noirs ParentLink: spells_hd.md#sorts - Name: Tentacules noirs ParentName: Sorts NameLevel: 1 - AltName: '[Black Tentacles](srd_spells_black_tentacles.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 4 + Name: Terrain hallucinatoire + AltName: '[Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)' Type: Illusion + Level: 4 CastingTime: 10 minutes Range: 90 mètres Components: V, S, M (une pierre, une brindille et un bout de plante verte) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#terrain-hallucinatoire ParentLink: spells_hd.md#sorts - Name: Terrain hallucinatoire ParentName: Sorts NameLevel: 1 - AltName: '[Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Texte illusoire + AltName: '[Illusory Script](srd_spells_illusory_script.md)' Type: Illusion - Ritual: rituel + Level: 1 CastingTime: 1 minute Range: contact Components: S, M (de l'encre à base de plomb valant au minimum 10 po, que le sort consume) Duration: 10 jours Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) + Ritual: rituel Id: spells_hd.md#texte-illusoire ParentLink: spells_hd.md#sorts - Name: Texte illusoire ParentName: Sorts NameLevel: 1 - AltName: '[Illusory Script](srd_spells_illusory_script.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Thaumaturgie + AltName: '[Thaumaturgy](srd_spells_thaumaturgy.md)' Type: Transmutation + Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: V Duration: jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#thaumaturgie ParentLink: spells_hd.md#sorts - Name: Thaumaturgie ParentName: Sorts NameLevel: 1 - AltName: '[Thaumaturgy](srd_spells_thaumaturgy.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Toile d'araignée + AltName: '[Web](srd_spells_web.md)' Type: Invocation + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un bout de toile d'araignée) Duration: concentration, jusqu'à 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#toile-daraignée ParentLink: spells_hd.md#sorts - Name: Toile d'araignée ParentName: Sorts NameLevel: 1 - AltName: '[Web](srd_spells_web.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Trait de feu + AltName: '[Fire Bolt](srd_spells_fire_bolt.md)' Type: Évocation + Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#trait-de-feu ParentLink: spells_hd.md#sorts - Name: Trait de feu ParentName: Sorts NameLevel: 1 - AltName: '[Fire Bolt](srd_spells_fire_bolt.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Transpercer Type: Invocation + Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Rôdeur](hd_ranger.md)' + Source: (MDR p) Id: spells_hd.md#transpercer ParentLink: spells_hd.md#sorts - Name: Transpercer ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Transport végétal + AltName: '[Transport via Plants](srd_spells_transport_via_plants.md)' Type: Invocation + Level: 6 CastingTime: 1 action Range: 3 mètres Components: V, S Duration: 1 round Classes: '[Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#transport-végétal ParentLink: spells_hd.md#sorts - Name: Transport végétal ParentName: Sorts NameLevel: 1 - AltName: '[Transport via Plants](srd_spells_transport_via_plants.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 8 + Name: Tremblement de terre + AltName: '[Earthquake](srd_spells_earthquake.md)' Type: Évocation + Level: 8 CastingTime: 1 action Range: 150 mètres Components: V, S, M (une pincée de poussière, un caillou et un peu d'argile) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#tremblement-de-terre ParentLink: spells_hd.md#sorts - Name: Tremblement de terre ParentName: Sorts NameLevel: 1 - AltName: '[Earthquake](srd_spells_earthquake.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 5 + Name: Tromperie + AltName: '[Mislead](srd_spells_mislead.md)' Type: Illusion + Level: 5 CastingTime: 1 action Range: personnelle Components: S Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#tromperie ParentLink: spells_hd.md#sorts - Name: Tromperie ParentName: Sorts NameLevel: 1 - AltName: '[Mislead](srd_spells_mislead.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Trouver les pièges + AltName: '[Find Traps](srd_spells_find_traps.md)' Type: Divination + Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#trouver-les-pièges ParentLink: spells_hd.md#sorts - Name: Trouver les pièges ParentName: Sorts NameLevel: 1 - AltName: '[Find Traps](srd_spells_find_traps.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Trouver un chemin + AltName: '[Find the Path](srd_spells_find_the_path.md)' Type: Divination + Level: 6 CastingTime: 1 minute Range: personnelle Components: V, S, M (un ensemble d'instruments de divination comme des os, des bâtonnets en ivoire, des cartes, des dents ou des runes gravées d'une valeur de 100 po et un objet venant de l'endroit que vous cherchez) Duration: concentration, jusqu'à 1 jour Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#trouver-un-chemin ParentLink: spells_hd.md#sorts - Name: Trouver un chemin ParentName: Sorts NameLevel: 1 - AltName: '[Find the Path](srd_spells_find_the_path.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Trouver une monture + AltName: '[Find Steed](srd_spells_find_steed.md)' Type: Invocation + Level: 2 CastingTime: 10 minutes Range: 9 mètres Components: V, S Duration: instantanée Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#trouver-une-monture ParentLink: spells_hd.md#sorts - Name: Trouver une monture ParentName: Sorts NameLevel: 1 - AltName: '[Find Steed](srd_spells_find_steed.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 1 + Name: Vague tonnante + AltName: '[Thunderwave](srd_spells_thunderwave.md)' Type: Évocation + Level: 1 CastingTime: 1 action Range: personnelle (cube de 4,50 mètres) Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#vague-tonnante ParentLink: spells_hd.md#sorts - Name: Vague tonnante ParentName: Sorts NameLevel: 1 - AltName: '[Thunderwave](srd_spells_thunderwave.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Verrou magique + AltName: '[Arcane Lock](srd_spells_arcane_lock.md)' Type: Abjuration + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (poussière d'or d'une valeur minimum de 25 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#verrou-magique ParentLink: spells_hd.md#sorts - Name: Verrou magique ParentName: Sorts NameLevel: 1 - AltName: '[Arcane Lock](srd_spells_arcane_lock.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: tour de magie + Name: Viser juste + AltName: '[True Strike](srd_spells_true_strike.md)' Type: Divination + Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: S Duration: concentration, jusqu'à 1 round Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#viser-juste ParentLink: spells_hd.md#sorts - Name: Viser juste ParentName: Sorts NameLevel: 1 - AltName: '[True Strike](srd_spells_true_strike.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Vision dans le noir + AltName: '[Darkvision](srd_spells_darkvision.md)' Type: Transmutation + Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une pincée de carotte séchée ou une agate) Duration: 8 heures Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#vision-dans-le-noir ParentLink: spells_hd.md#sorts - Name: Vision dans le noir ParentName: Sorts NameLevel: 1 - AltName: '[Darkvision](srd_spells_darkvision.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 6 + Name: Vision suprême + AltName: '[True Seeing](srd_spells_true_seeing.md)' Type: Divination + Level: 6 CastingTime: 1 action Range: contact Components: V, S, M (un collyre coûtant 25 po, fait de poudre de champignon, de safran et de graisse, que le sort consume) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#vision-suprême ParentLink: spells_hd.md#sorts - Name: Vision suprême ParentName: Sorts NameLevel: 1 - AltName: '[True Seeing](srd_spells_true_seeing.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Vitalité Type: Évocation + Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 minute Classes: '[Paladin](hd_paladin.md)' + Source: (MDR p) Id: spells_hd.md#vitalité ParentLink: spells_hd.md#sorts - Name: Vitalité ParentName: Sorts NameLevel: 1 - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Voir l'invisible + AltName: '[See Invisibility](srd_spells_see_invisibility.md)' Type: Divination + Level: 2 CastingTime: 1 action Range: personnelle Components: V, S, M (une pincée de talc et un saupoudrage de poudre d'argent) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' + Source: (MDR p) Id: spells_hd.md#voir-linvisible ParentLink: spells_hd.md#sorts - Name: Voir l'invisible ParentName: Sorts NameLevel: 1 - AltName: '[See Invisibility](srd_spells_see_invisibility.md)' - Source: (MDR p) Attributes: {} - !SpellItem Family: SpellHD - Level: 3 + Name: Vol + AltName: '[Fly](srd_spells_fly.md)' Type: Transmutation + Level: 3 CastingTime: 1 action Range: contact Components: V, S, M (une rémige) Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#vol ParentLink: spells_hd.md#sorts - Name: Vol ParentName: Sorts NameLevel: 1 - AltName: '[Fly](srd_spells_fly.md)' - Source: (MDR p)(SRD) Attributes: {} - !SpellItem Family: SpellHD - Level: 2 + Name: Zone de vérité + AltName: '[Zone of Truth](srd_spells_zone_of_truth.md)' Type: Enchantement + Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' + Source: (MDR p)(SRD) Id: spells_hd.md#zone-de-vérité ParentLink: spells_hd.md#sorts - Name: Zone de vérité ParentName: Sorts NameLevel: 1 - AltName: '[Zone of Truth](srd_spells_zone_of_truth.md)' - Source: (MDR p)(SRD) Attributes: {} Id: spells_hd.md#sorts RootId: spells_hd.md ParentLink: index.md -Name: Sorts ParentName: Manuel des règles NameLevel: 1 -AltName: '[Spells](srd_spells.md)' Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_agrandirretrecir.md b/Data/HD/hd_spells_agrandirretrecir.md index 86a16bd1..e928b210 100644 --- a/Data/HD/hd_spells_agrandirretrecir.md +++ b/Data/HD/hd_spells_agrandirretrecir.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Agrandir/rétrécir +AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une pincée de limaille de fer) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p320)(SRD) Id: spells_hd.md#agrandirrétrécir ParentLink: spells_hd.md#sorts -Name: Agrandir/rétrécir ParentName: Sorts NameLevel: 1 -AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)' -Source: (MDR p320)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_aide.md b/Data/HD/hd_spells_aide.md index c814017d..900b733a 100644 --- a/Data/HD/hd_spells_aide.md +++ b/Data/HD/hd_spells_aide.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Aide +AltName: '[Aid](srd_spells_aid.md)' Type: Abjuration +Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une minuscule bandelette de tissu blanc) Duration: 8 heures Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p320)(SRD) Id: spells_hd.md#aide ParentLink: spells_hd.md#sorts -Name: Aide ParentName: Sorts NameLevel: 1 -AltName: '[Aid](srd_spells_aid.md)' -Source: (MDR p320)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_alarme.md b/Data/HD/hd_spells_alarme.md index 98b7e1a7..eb35ed8f 100644 --- a/Data/HD/hd_spells_alarme.md +++ b/Data/HD/hd_spells_alarme.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Alarme +AltName: '[Alarm](srd_spells_alarm.md)' Type: Abjuration -Ritual: rituel +Level: 1 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (une minuscule clochette et un filament en argent) Duration: 8 heures Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p320)(SRD) +Ritual: rituel Id: spells_hd.md#alarme ParentLink: spells_hd.md#sorts -Name: Alarme ParentName: Sorts NameLevel: 1 -AltName: '[Alarm](srd_spells_alarm.md)' -Source: (MDR p320)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_allie_planaire.md b/Data/HD/hd_spells_allie_planaire.md index 31aec9b2..f1fd50a2 100644 --- a/Data/HD/hd_spells_allie_planaire.md +++ b/Data/HD/hd_spells_allie_planaire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Allié planaire +AltName: '[Planar Ally](srd_spells_planar_ally.md)' Type: Invocation +Level: 6 CastingTime: 10 minutes Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p320)(SRD) Id: spells_hd.md#allié-planaire ParentLink: spells_hd.md#sorts -Name: Allié planaire ParentName: Sorts NameLevel: 1 -AltName: '[Planar Ally](srd_spells_planar_ally.md)' -Source: (MDR p320)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_amelioration_de_caracteristique.md b/Data/HD/hd_spells_amelioration_de_caracteristique.md index 0c89192a..652af1e8 100644 --- a/Data/HD/hd_spells_amelioration_de_caracteristique.md +++ b/Data/HD/hd_spells_amelioration_de_caracteristique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Amélioration de caractéristique +AltName: '[Enhance Ability](srd_spells_enhance_ability.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (des poils ou des plumes venant d'un animal) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' +Source: (MDR p321)(SRD) Id: spells_hd.md#amélioration-de-caractéristique ParentLink: spells_hd.md#sorts -Name: Amélioration de caractéristique ParentName: Sorts NameLevel: 1 -AltName: '[Enhance Ability](srd_spells_enhance_ability.md)' -Source: (MDR p321)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_amitie_avec_les_animaux.md b/Data/HD/hd_spells_amitie_avec_les_animaux.md index 8d7e9340..73e42ca5 100644 --- a/Data/HD/hd_spells_amitie_avec_les_animaux.md +++ b/Data/HD/hd_spells_amitie_avec_les_animaux.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Amitié avec les animaux +AltName: '[Animal Friendship](srd_spells_animal_friendship.md)' Type: Enchantement +Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un peu de nourriture) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p321)(SRD) Id: spells_hd.md#amitié-avec-les-animaux ParentLink: spells_hd.md#sorts -Name: Amitié avec les animaux ParentName: Sorts NameLevel: 1 -AltName: '[Animal Friendship](srd_spells_animal_friendship.md)' -Source: (MDR p321)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_animation_des_morts.md b/Data/HD/hd_spells_animation_des_morts.md index 2d41752d..00f647c1 100644 --- a/Data/HD/hd_spells_animation_des_morts.md +++ b/Data/HD/hd_spells_animation_des_morts.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Animation des morts +AltName: '[Animate Dead](srd_spells_animate_dead.md)' Type: Nécromancie +Level: 3 CastingTime: 1 minute Range: 3 mètres Components: V, S, M (une goutte de sang, un lambeau de chair et une pincée de poudre d'os) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' +Source: (MDR p321)(SRD) Id: spells_hd.md#animation-des-morts ParentLink: spells_hd.md#sorts -Name: Animation des morts ParentName: Sorts NameLevel: 1 -AltName: '[Animate Dead](srd_spells_animate_dead.md)' -Source: (MDR p321)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_animation_des_objets.md b/Data/HD/hd_spells_animation_des_objets.md index c1f5067e..3c96067e 100644 --- a/Data/HD/hd_spells_animation_des_objets.md +++ b/Data/HD/hd_spells_animation_des_objets.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Animation des objets +AltName: '[Animate Objects](srd_spells_animate_objects.md)' Type: Transmutation +Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p322)(SRD) Id: spells_hd.md#animation-des-objets ParentLink: spells_hd.md#sorts -Name: Animation des objets ParentName: Sorts NameLevel: 1 -AltName: '[Animate Objects](srd_spells_animate_objects.md)' -Source: (MDR p322)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_apaisement_des_emotions.md b/Data/HD/hd_spells_apaisement_des_emotions.md index d7683a9b..0cccfd98 100644 --- a/Data/HD/hd_spells_apaisement_des_emotions.md +++ b/Data/HD/hd_spells_apaisement_des_emotions.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Apaisement des émotions +AltName: '[Calm Emotions](srd_spells_calm_emotions.md)' Type: Enchantement +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)' +Source: (MDR p322)(SRD) Id: spells_hd.md#apaisement-des-émotions ParentLink: spells_hd.md#sorts -Name: Apaisement des émotions ParentName: Sorts NameLevel: 1 -AltName: '[Calm Emotions](srd_spells_calm_emotions.md)' -Source: (MDR p322)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_apparence_trompeuse.md b/Data/HD/hd_spells_apparence_trompeuse.md index a82e9d12..c7eecf30 100644 --- a/Data/HD/hd_spells_apparence_trompeuse.md +++ b/Data/HD/hd_spells_apparence_trompeuse.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Apparence trompeuse +AltName: '[Seeming](srd_spells_seeming.md)' Type: Illusion +Level: 5 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 8 heures Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p323)(SRD) Id: spells_hd.md#apparence-trompeuse ParentLink: spells_hd.md#sorts -Name: Apparence trompeuse ParentName: Sorts NameLevel: 1 -AltName: '[Seeming](srd_spells_seeming.md)' -Source: (MDR p323)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_appel_de_familier.md b/Data/HD/hd_spells_appel_de_familier.md index 6c90e61c..9053194c 100644 --- a/Data/HD/hd_spells_appel_de_familier.md +++ b/Data/HD/hd_spells_appel_de_familier.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Appel de familier +AltName: '[Find Familiar](srd_spells_find_familiar.md)' Type: Invocation -Ritual: rituel +Level: 1 CastingTime: 1 heure Range: 3 mètres Components: V, S, M (10 po de charbon, d'encens et d'herbe à faire brûler dans un brasero en laiton) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p323)(SRD) +Ritual: rituel Id: spells_hd.md#appel-de-familier ParentLink: spells_hd.md#sorts -Name: Appel de familier ParentName: Sorts NameLevel: 1 -AltName: '[Find Familiar](srd_spells_find_familiar.md)' -Source: (MDR p323)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_appel_de_la_foudre.md b/Data/HD/hd_spells_appel_de_la_foudre.md index bc31b1a0..2d6e1fd3 100644 --- a/Data/HD/hd_spells_appel_de_la_foudre.md +++ b/Data/HD/hd_spells_appel_de_la_foudre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Appel de la foudre +AltName: '[Call Lightning](srd_spells_call_lightning.md)' Type: Invocation +Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md)' +Source: (MDR p324)(SRD) Id: spells_hd.md#appel-de-la-foudre ParentLink: spells_hd.md#sorts -Name: Appel de la foudre ParentName: Sorts NameLevel: 1 -AltName: '[Call Lightning](srd_spells_call_lightning.md)' -Source: (MDR p324)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_arc_enchante.md b/Data/HD/hd_spells_arc_enchante.md index ccd77f22..28bd41f3 100644 --- a/Data/HD/hd_spells_arc_enchante.md +++ b/Data/HD/hd_spells_arc_enchante.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Arc enchanté Type: Enchantement +Level: 5 CastingTime: 1 action Range: contact Components: V, S, M (un arc) Duration: 1 minute Classes: '[Rôdeur](hd_ranger.md)' +Source: (MDR p324) Id: spells_hd.md#arc-enchanté ParentLink: spells_hd.md#sorts -Name: Arc enchanté ParentName: Sorts NameLevel: 1 -Source: (MDR p324) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_arme_magique.md b/Data/HD/hd_spells_arme_magique.md index b52d83e5..a6272f77 100644 --- a/Data/HD/hd_spells_arme_magique.md +++ b/Data/HD/hd_spells_arme_magique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Arme magique +AltName: '[Magic Weapon](srd_spells_magic_weapon.md)' Type: Transmutation +Level: 2 CastingTime: 1 action bonus Range: contact Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Magicien](hd_wizard.md), [Paladin](hd_paladin.md)' +Source: (MDR p324)(SRD) Id: spells_hd.md#arme-magique ParentLink: spells_hd.md#sorts -Name: Arme magique ParentName: Sorts NameLevel: 1 -AltName: '[Magic Weapon](srd_spells_magic_weapon.md)' -Source: (MDR p324)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_arme_sainte.md b/Data/HD/hd_spells_arme_sainte.md index 10de4671..2b75c724 100644 --- a/Data/HD/hd_spells_arme_sainte.md +++ b/Data/HD/hd_spells_arme_sainte.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Arme sainte Type: Transmutation +Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p324) Id: spells_hd.md#arme-sainte ParentLink: spells_hd.md#sorts -Name: Arme sainte ParentName: Sorts NameLevel: 1 -Source: (MDR p324) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_arme_spirituelle.md b/Data/HD/hd_spells_arme_spirituelle.md index 0bb8a97a..a860e694 100644 --- a/Data/HD/hd_spells_arme_spirituelle.md +++ b/Data/HD/hd_spells_arme_spirituelle.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Arme spirituelle +AltName: '[Spiritual Weapon](srd_spells_spiritual_weapon.md)' Type: Évocation +Level: 2 CastingTime: 1 action bonus Range: 18 mètres Components: V, S Duration: 1 minute Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p324)(SRD) Id: spells_hd.md#arme-spirituelle ParentLink: spells_hd.md#sorts -Name: Arme spirituelle ParentName: Sorts NameLevel: 1 -AltName: '[Spiritual Weapon](srd_spells_spiritual_weapon.md)' -Source: (MDR p324)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_armure_du_mage.md b/Data/HD/hd_spells_armure_du_mage.md index eb02aa1b..30e6d697 100644 --- a/Data/HD/hd_spells_armure_du_mage.md +++ b/Data/HD/hd_spells_armure_du_mage.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Armure du mage +AltName: '[Mage Armor](srd_spells_mage_armor.md)' Type: Abjuration +Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (un bout de cuir tanné) Duration: 8 heures Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p324)(SRD) Id: spells_hd.md#armure-du-mage ParentLink: spells_hd.md#sorts -Name: Armure du mage ParentName: Sorts NameLevel: 1 -AltName: '[Mage Armor](srd_spells_mage_armor.md)' -Source: (MDR p324)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_arret_du_temps.md b/Data/HD/hd_spells_arret_du_temps.md index ba9bcb85..1023aa45 100644 --- a/Data/HD/hd_spells_arret_du_temps.md +++ b/Data/HD/hd_spells_arret_du_temps.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Arrêt du temps +AltName: '[Time Stop](srd_spells_time_stop.md)' Type: Transmutation +Level: 9 CastingTime: 1 action Range: personnelle Components: V Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p325)(SRD) Id: spells_hd.md#arrêt-du-temps ParentLink: spells_hd.md#sorts -Name: Arrêt du temps ParentName: Sorts NameLevel: 1 -AltName: '[Time Stop](srd_spells_time_stop.md)' -Source: (MDR p325)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_aspersion_acide.md b/Data/HD/hd_spells_aspersion_acide.md index 1c1c60ff..ec22dbb2 100644 --- a/Data/HD/hd_spells_aspersion_acide.md +++ b/Data/HD/hd_spells_aspersion_acide.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Aspersion acide +AltName: '[Acid Splash](srd_spells_acid_splash.md)' Type: Invocation +Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p325)(SRD) Id: spells_hd.md#aspersion-acide ParentLink: spells_hd.md#sorts -Name: Aspersion acide ParentName: Sorts NameLevel: 1 -AltName: '[Acid Splash](srd_spells_acid_splash.md)' -Source: (MDR p325)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_assassin_imaginaire.md b/Data/HD/hd_spells_assassin_imaginaire.md index df8e4258..03a730c2 100644 --- a/Data/HD/hd_spells_assassin_imaginaire.md +++ b/Data/HD/hd_spells_assassin_imaginaire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Assassin imaginaire +AltName: '[Phantasmal Killer](srd_spells_phantasmal_killer.md)' Type: Illusion +Level: 4 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p325)(SRD) Id: spells_hd.md#assassin-imaginaire ParentLink: spells_hd.md#sorts -Name: Assassin imaginaire ParentName: Sorts NameLevel: 1 -AltName: '[Phantasmal Killer](srd_spells_phantasmal_killer.md)' -Source: (MDR p325)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_assistance.md b/Data/HD/hd_spells_assistance.md index 5f159e51..ac1ac447 100644 --- a/Data/HD/hd_spells_assistance.md +++ b/Data/HD/hd_spells_assistance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Assistance +AltName: '[Guidance](srd_spells_guidance.md)' Type: Divination +Level: tour de magie CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p325)(SRD) Id: spells_hd.md#assistance ParentLink: spells_hd.md#sorts -Name: Assistance ParentName: Sorts NameLevel: 1 -AltName: '[Guidance](srd_spells_guidance.md)' -Source: (MDR p325)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_augure.md b/Data/HD/hd_spells_augure.md index 2f0a6ebe..5d119158 100644 --- a/Data/HD/hd_spells_augure.md +++ b/Data/HD/hd_spells_augure.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Augure +AltName: '[Augury](srd_spells_augury.md)' Type: Divination +Level: 2 CastingTime: 1 minute Range: personnelle Components: V, S, M (bâtonnets, os ou petits objets similaires d'une valeur minimale de 25 po, portant des marques spéciales) Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p325)(SRD) Id: spells_hd.md#augure ParentLink: spells_hd.md#sorts -Name: Augure ParentName: Sorts NameLevel: 1 -AltName: '[Augury](srd_spells_augury.md)' -Source: (MDR p325)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_aura_de_force.md b/Data/HD/hd_spells_aura_de_force.md index 1962f581..5a8af69f 100644 --- a/Data/HD/hd_spells_aura_de_force.md +++ b/Data/HD/hd_spells_aura_de_force.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Aura de force Type: Abjuration +Level: 5 CastingTime: 1 action Range: 9 mètres Components: V Duration: Concentration, jusqu'à 10 minutes Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p325) Id: spells_hd.md#aura-de-force ParentLink: spells_hd.md#sorts -Name: Aura de force ParentName: Sorts NameLevel: 1 -Source: (MDR p325) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_aura_du_heros.md b/Data/HD/hd_spells_aura_du_heros.md index a2efb8ca..032a9ad0 100644 --- a/Data/HD/hd_spells_aura_du_heros.md +++ b/Data/HD/hd_spells_aura_du_heros.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Aura du héros Type: Enchantement +Level: tour de magie CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p326) Id: spells_hd.md#aura-du-héros ParentLink: spells_hd.md#sorts -Name: Aura du héros ParentName: Sorts NameLevel: 1 -Source: (MDR p326) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_aura_magique_de_larcaniste.md b/Data/HD/hd_spells_aura_magique_de_larcaniste.md index f546c870..2f4895ec 100644 --- a/Data/HD/hd_spells_aura_magique_de_larcaniste.md +++ b/Data/HD/hd_spells_aura_magique_de_larcaniste.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Aura magique de l'arcaniste +AltName: "[Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)" Type: Illusion +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (un petit carré de soie) Duration: 24 heures Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p326) Id: spells_hd.md#aura-magique-de-larcaniste ParentLink: spells_hd.md#sorts -Name: Aura magique de l'arcaniste ParentName: Sorts NameLevel: 1 -AltName: "[Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)" -Source: (MDR p326) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_aura_sacree.md b/Data/HD/hd_spells_aura_sacree.md index f0193593..9adb26dd 100644 --- a/Data/HD/hd_spells_aura_sacree.md +++ b/Data/HD/hd_spells_aura_sacree.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Aura sacrée +AltName: '[Holy Aura](srd_spells_holy_aura.md)' Type: Abjuration +Level: 8 CastingTime: 1 action Range: personnelle Components: V, S, M (un petit reliquaire d'une valeur minimum de 1 000 po contenant une relique sacrée, comme un bout de la robe d'un saint ou un morceau de parchemin prélevé sur un texte sacré) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p326) Id: spells_hd.md#aura-sacrée ParentLink: spells_hd.md#sorts -Name: Aura sacrée ParentName: Sorts NameLevel: 1 -AltName: '[Holy Aura](srd_spells_holy_aura.md)' -Source: (MDR p326) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_bagou.md b/Data/HD/hd_spells_bagou.md index ad018c86..87d5a5e7 100644 --- a/Data/HD/hd_spells_bagou.md +++ b/Data/HD/hd_spells_bagou.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Bagou +AltName: '[Glibness](srd_spells_glibness.md)' Type: Transmutation +Level: 8 CastingTime: 1 action Range: personnelle Components: V Duration: 1 heure Classes: '[Barde](hd_bard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p326)(SRD) Id: spells_hd.md#bagou ParentLink: spells_hd.md#sorts -Name: Bagou ParentName: Sorts NameLevel: 1 -AltName: '[Glibness](srd_spells_glibness.md)' -Source: (MDR p326)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_baies_nourricieres.md b/Data/HD/hd_spells_baies_nourricieres.md index 9babf152..6274c150 100644 --- a/Data/HD/hd_spells_baies_nourricieres.md +++ b/Data/HD/hd_spells_baies_nourricieres.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Baies nourricières +AltName: '[Goodberry](srd_spells_goodberry.md)' Type: Transmutation +Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (un brin de gui) Duration: instantanée Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p326)(SRD) Id: spells_hd.md#baies-nourricières ParentLink: spells_hd.md#sorts -Name: Baies nourricières ParentName: Sorts NameLevel: 1 -AltName: '[Goodberry](srd_spells_goodberry.md)' -Source: (MDR p326)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_balisage.md b/Data/HD/hd_spells_balisage.md index 75df02d7..95079df8 100644 --- a/Data/HD/hd_spells_balisage.md +++ b/Data/HD/hd_spells_balisage.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Balisage +AltName: '[Guiding Bolt](srd_spells_guiding_bolt.md)' Type: Évocation +Level: 1 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: 1 round Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p327)(SRD) Id: spells_hd.md#balisage ParentLink: spells_hd.md#sorts -Name: Balisage ParentName: Sorts NameLevel: 1 -AltName: '[Guiding Bolt](srd_spells_guiding_bolt.md)' -Source: (MDR p327)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_bannissement.md b/Data/HD/hd_spells_bannissement.md index e22617e0..1349296f 100644 --- a/Data/HD/hd_spells_bannissement.md +++ b/Data/HD/hd_spells_bannissement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Bannissement +AltName: '[Banishment](srd_spells_banishment.md)' Type: Abjuration +Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un objet qui répugne à la cible) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' +Source: (MDR p327)(SRD) Id: spells_hd.md#bannissement ParentLink: spells_hd.md#sorts -Name: Bannissement ParentName: Sorts NameLevel: 1 -AltName: '[Banishment](srd_spells_banishment.md)' -Source: (MDR p327)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_barriere_de_lames.md b/Data/HD/hd_spells_barriere_de_lames.md index 70a6fcc1..834c5560 100644 --- a/Data/HD/hd_spells_barriere_de_lames.md +++ b/Data/HD/hd_spells_barriere_de_lames.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Barrière de lames +AltName: '[Blade Barrier](srd_spells_blade_barrier.md)' Type: Évocation +Level: 6 CastingTime: 1 action Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p327)(SRD) Id: spells_hd.md#barrière-de-lames ParentLink: spells_hd.md#sorts -Name: Barrière de lames ParentName: Sorts NameLevel: 1 -AltName: '[Blade Barrier](srd_spells_blade_barrier.md)' -Source: (MDR p327)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_benediction.md b/Data/HD/hd_spells_benediction.md index 3d0f31d2..140d1683 100644 --- a/Data/HD/hd_spells_benediction.md +++ b/Data/HD/hd_spells_benediction.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Bénédiction +AltName: '[Bless](srd_spells_bless.md)' Type: Enchantement +Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un peu d'eau bénite à asperger) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p327)(SRD) Id: spells_hd.md#bénédiction ParentLink: spells_hd.md#sorts -Name: Bénédiction ParentName: Sorts NameLevel: 1 -AltName: '[Bless](srd_spells_bless.md)' -Source: (MDR p327)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_benediction_heroique.md b/Data/HD/hd_spells_benediction_heroique.md index 90e2c1b6..c375c299 100644 --- a/Data/HD/hd_spells_benediction_heroique.md +++ b/Data/HD/hd_spells_benediction_heroique.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Bénédiction héroïque Type: Divination +Level: 3 CastingTime: 1 action Range: 18 mètres Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p327) Id: spells_hd.md#bénédiction-héroïque ParentLink: spells_hd.md#sorts -Name: Bénédiction héroïque ParentName: Sorts NameLevel: 1 -Source: (MDR p327) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_blessure.md b/Data/HD/hd_spells_blessure.md index afb51cb5..eaff576c 100644 --- a/Data/HD/hd_spells_blessure.md +++ b/Data/HD/hd_spells_blessure.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Blessure +AltName: '[Inflict Wounds](srd_spells_inflict_wounds.md)' Type: Nécromancie +Level: 1 CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p327)(SRD) Id: spells_hd.md#blessure ParentLink: spells_hd.md#sorts -Name: Blessure ParentName: Sorts NameLevel: 1 -AltName: '[Inflict Wounds](srd_spells_inflict_wounds.md)' -Source: (MDR p327)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_bouche_magique.md b/Data/HD/hd_spells_bouche_magique.md index 490b7f98..e9c3ba72 100644 --- a/Data/HD/hd_spells_bouche_magique.md +++ b/Data/HD/hd_spells_bouche_magique.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Bouche magique +AltName: '[Magic Mouth](srd_spells_magic_mouth.md)' Type: Illusion -Ritual: rituel +Level: 2 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (un rayon de miel et de la poussière de jade d'une valeur de 10 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p328)(SRD) +Ritual: rituel Id: spells_hd.md#bouche-magique ParentLink: spells_hd.md#sorts -Name: Bouche magique ParentName: Sorts NameLevel: 1 -AltName: '[Magic Mouth](srd_spells_magic_mouth.md)' -Source: (MDR p328)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_bouclier.md b/Data/HD/hd_spells_bouclier.md index 84e30414..f6d760c3 100644 --- a/Data/HD/hd_spells_bouclier.md +++ b/Data/HD/hd_spells_bouclier.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Bouclier +AltName: '[Shield](srd_spells_shield.md)' Type: Abjuration +Level: 1 CastingTime: 1 réaction à effectuer lorsque vous êtes touché par une attaque ou un sort de _[projectile magique](hd_spells_projectile_magique.md)_ Range: personnelle Components: V, S Duration: 1 round Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p328)(SRD) Id: spells_hd.md#bouclier ParentLink: spells_hd.md#sorts -Name: Bouclier ParentName: Sorts NameLevel: 1 -AltName: '[Shield](srd_spells_shield.md)' -Source: (MDR p328)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_bouclier_de_feu.md b/Data/HD/hd_spells_bouclier_de_feu.md index 34c1a60d..2d2e732b 100644 --- a/Data/HD/hd_spells_bouclier_de_feu.md +++ b/Data/HD/hd_spells_bouclier_de_feu.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Bouclier de feu +AltName: '[Fire Shield](srd_spells_fire_shield.md)' Type: Évocation +Level: 4 CastingTime: 1 action Range: personnelle Components: V, S, M (un morceau de phosphore ou une luciole) Duration: 10 minutes Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p328)(SRD) Id: spells_hd.md#bouclier-de-feu ParentLink: spells_hd.md#sorts -Name: Bouclier de feu ParentName: Sorts NameLevel: 1 -AltName: '[Fire Shield](srd_spells_fire_shield.md)' -Source: (MDR p328)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_bouclier_de_la_foi.md b/Data/HD/hd_spells_bouclier_de_la_foi.md index 63e93ed1..8eb7ce4c 100644 --- a/Data/HD/hd_spells_bouclier_de_la_foi.md +++ b/Data/HD/hd_spells_bouclier_de_la_foi.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Bouclier de la foi +AltName: '[Shield of Faith](srd_spells_shield_of_faith.md)' Type: Abjuration +Level: 1 CastingTime: 1 action bonus Range: 18 mètres Components: V, S, M (un petit parchemin avec un extrait de texte sacré) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p328)(SRD) Id: spells_hd.md#bouclier-de-la-foi ParentLink: spells_hd.md#sorts -Name: Bouclier de la foi ParentName: Sorts NameLevel: 1 -AltName: '[Shield of Faith](srd_spells_shield_of_faith.md)' -Source: (MDR p328)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_bouffee_de_poison.md b/Data/HD/hd_spells_bouffee_de_poison.md index c0bc2880..9f875c22 100644 --- a/Data/HD/hd_spells_bouffee_de_poison.md +++ b/Data/HD/hd_spells_bouffee_de_poison.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Bouffée de poison +AltName: '[Poison Spray](srd_spells_poison_spray.md)' Type: Invocation +Level: tour de magie CastingTime: 1 action Range: 3 mètres Components: V, S Duration: instantanée Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p328)(SRD) Id: spells_hd.md#bouffée-de-poison ParentLink: spells_hd.md#sorts -Name: Bouffée de poison ParentName: Sorts NameLevel: 1 -AltName: '[Poison Spray](srd_spells_poison_spray.md)' -Source: (MDR p328)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_boule_de_feu.md b/Data/HD/hd_spells_boule_de_feu.md index d86bb8e8..acc32e34 100644 --- a/Data/HD/hd_spells_boule_de_feu.md +++ b/Data/HD/hd_spells_boule_de_feu.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Boule de feu +AltName: '[Fireball](srd_spells_fireball.md)' Type: Évocation +Level: 3 CastingTime: 1 action Range: 45 mètres Components: V, S, M (une petite boule de guano de chauve-souris et du soufre) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p328)(SRD) Id: spells_hd.md#boule-de-feu ParentLink: spells_hd.md#sorts -Name: Boule de feu ParentName: Sorts NameLevel: 1 -AltName: '[Fireball](srd_spells_fireball.md)' -Source: (MDR p328)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_boule_de_feu_a_explosion_retardee.md b/Data/HD/hd_spells_boule_de_feu_a_explosion_retardee.md index 67067755..db8664ae 100644 --- a/Data/HD/hd_spells_boule_de_feu_a_explosion_retardee.md +++ b/Data/HD/hd_spells_boule_de_feu_a_explosion_retardee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Boule de feu à explosion retardée +AltName: '[Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)' Type: Évocation +Level: 7 CastingTime: 1 action Range: 45 mètres Components: V, S, M (une petite boule de guano de chauve-souris et du soufre) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p329)(SRD) Id: spells_hd.md#boule-de-feu-à-explosion-retardée ParentLink: spells_hd.md#sorts -Name: Boule de feu à explosion retardée ParentName: Sorts NameLevel: 1 -AltName: '[Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)' -Source: (MDR p329)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_bourrasque.md b/Data/HD/hd_spells_bourrasque.md index 7971f410..557da562 100644 --- a/Data/HD/hd_spells_bourrasque.md +++ b/Data/HD/hd_spells_bourrasque.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Bourrasque +AltName: '[Gust of Wind](srd_spells_gust_of_wind.md)' Type: Évocation +Level: 2 CastingTime: 1 action Range: personnelle (ligne de 18 mètres) Components: V, S, M (une graine de légume) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p329)(SRD) Id: spells_hd.md#bourrasque ParentLink: spells_hd.md#sorts -Name: Bourrasque ParentName: Sorts NameLevel: 1 -AltName: '[Gust of Wind](srd_spells_gust_of_wind.md)' -Source: (MDR p329)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_briser.md b/Data/HD/hd_spells_briser.md index 8ddd4cdc..d6edb5bc 100644 --- a/Data/HD/hd_spells_briser.md +++ b/Data/HD/hd_spells_briser.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Briser +AltName: '[Shatter](srd_spells_shatter.md)' Type: Évocation +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un éclat de mica) Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p330)(SRD) Id: spells_hd.md#briser ParentLink: spells_hd.md#sorts -Name: Briser ParentName: Sorts NameLevel: 1 -AltName: '[Shatter](srd_spells_shatter.md)' -Source: (MDR p330)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_brulure_du_juste.md b/Data/HD/hd_spells_brulure_du_juste.md index 61453166..81e57aeb 100644 --- a/Data/HD/hd_spells_brulure_du_juste.md +++ b/Data/HD/hd_spells_brulure_du_juste.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Brûlure du juste Type: Évocation +Level: 1 CastingTime: 1 action Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p330) Id: spells_hd.md#brûlure-du-juste ParentLink: spells_hd.md#sorts -Name: Brûlure du juste ParentName: Sorts NameLevel: 1 -Source: (MDR p330) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_cage_de_force.md b/Data/HD/hd_spells_cage_de_force.md index 1f42ae8e..9153a1b4 100644 --- a/Data/HD/hd_spells_cage_de_force.md +++ b/Data/HD/hd_spells_cage_de_force.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Cage de force +AltName: '[Forcecage](srd_spells_forcecage.md)' Type: Évocation +Level: 7 CastingTime: 1 action Range: 30 mètres Components: V, S, M (poussière de rubis d'une valeur de 1 500 po) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p330)(SRD) Id: spells_hd.md#cage-de-force ParentLink: spells_hd.md#sorts -Name: Cage de force ParentName: Sorts NameLevel: 1 -AltName: '[Forcecage](srd_spells_forcecage.md)' -Source: (MDR p330)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_caresse_du_vampire.md b/Data/HD/hd_spells_caresse_du_vampire.md index f4be58e1..9a5ad650 100644 --- a/Data/HD/hd_spells_caresse_du_vampire.md +++ b/Data/HD/hd_spells_caresse_du_vampire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Caresse du vampire +AltName: '[Vampiric Touch](srd_spells_vampiric_touch.md)' Type: Nécromancie +Level: 3 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p330)(SRD) Id: spells_hd.md#caresse-du-vampire ParentLink: spells_hd.md#sorts -Name: Caresse du vampire ParentName: Sorts NameLevel: 1 -AltName: '[Vampiric Touch](srd_spells_vampiric_touch.md)' -Source: (MDR p330)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_catalepsie.md b/Data/HD/hd_spells_catalepsie.md index 29446190..29cfcf8b 100644 --- a/Data/HD/hd_spells_catalepsie.md +++ b/Data/HD/hd_spells_catalepsie.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Catalepsie Type: Nécromancie +Level: 3 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un petit morceau de linceul) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p331) Id: spells_hd.md#catalepsie ParentLink: spells_hd.md#sorts -Name: Catalepsie ParentName: Sorts NameLevel: 1 -Source: (MDR p331) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_cecitesurdite.md b/Data/HD/hd_spells_cecitesurdite.md index dcaf788c..00ec15df 100644 --- a/Data/HD/hd_spells_cecitesurdite.md +++ b/Data/HD/hd_spells_cecitesurdite.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Cécité/surdité +AltName: '[Blindness/Deafness](srd_spells_blindnessdeafness.md)' Type: Nécromancie +Level: 2 CastingTime: 1 action Range: 9 mètres Components: V Duration: 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p331)(SRD) Id: spells_hd.md#cécitésurdité ParentLink: spells_hd.md#sorts -Name: Cécité/surdité ParentName: Sorts NameLevel: 1 -AltName: '[Blindness/Deafness](srd_spells_blindnessdeafness.md)' -Source: (MDR p331)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_cercle_de_mort.md b/Data/HD/hd_spells_cercle_de_mort.md index 869f6d48..b4ad17a3 100644 --- a/Data/HD/hd_spells_cercle_de_mort.md +++ b/Data/HD/hd_spells_cercle_de_mort.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Cercle de mort +AltName: '[Circle of Death](srd_spells_circle_of_death.md)' Type: Nécromancie +Level: 6 CastingTime: 1 action Range: 45 mètres Components: V, S, M (la poudre d'une perle noire broyée d'une valeur minimale de 500 po) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p331)(SRD) Id: spells_hd.md#cercle-de-mort ParentLink: spells_hd.md#sorts -Name: Cercle de mort ParentName: Sorts NameLevel: 1 -AltName: '[Circle of Death](srd_spells_circle_of_death.md)' -Source: (MDR p331)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_cercle_de_teleportation.md b/Data/HD/hd_spells_cercle_de_teleportation.md index 4151fe4e..67f15d6f 100644 --- a/Data/HD/hd_spells_cercle_de_teleportation.md +++ b/Data/HD/hd_spells_cercle_de_teleportation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Cercle de téléportation +AltName: '[Teleportation Circle](srd_spells_teleportation_circle.md)' Type: Invocation +Level: 5 CastingTime: 1 minute Range: 3 mètres Components: V, M (des craies et des encres rares contenant des extraits de pierres précieuses pour une valeur de 50 po, que le sort consume) Duration: 1 round Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p331)(SRD) Id: spells_hd.md#cercle-de-téléportation ParentLink: spells_hd.md#sorts -Name: Cercle de téléportation ParentName: Sorts NameLevel: 1 -AltName: '[Teleportation Circle](srd_spells_teleportation_circle.md)' -Source: (MDR p331)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_cercle_magique.md b/Data/HD/hd_spells_cercle_magique.md index 844d738e..d87d957c 100644 --- a/Data/HD/hd_spells_cercle_magique.md +++ b/Data/HD/hd_spells_cercle_magique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Cercle magique +AltName: '[Magic Circle](srd_spells_magic_circle.md)' Type: Abjuration +Level: 3 CastingTime: 1 minute Range: 3 mètres Components: V, S, M (eau bénite ou poudre d'argent et de fer d'une valeur minimale de 100 po, que le sort consume) Duration: 1 heure Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' +Source: (MDR p331)(SRD) Id: spells_hd.md#cercle-magique ParentLink: spells_hd.md#sorts -Name: Cercle magique ParentName: Sorts NameLevel: 1 -AltName: '[Magic Circle](srd_spells_magic_circle.md)' -Source: (MDR p331)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_chaine_declairs.md b/Data/HD/hd_spells_chaine_declairs.md index 1fc26a15..1bc6859e 100644 --- a/Data/HD/hd_spells_chaine_declairs.md +++ b/Data/HD/hd_spells_chaine_declairs.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Chaîne d'éclairs +AltName: '[Chain Lightning](srd_spells_chain_lightning.md)' Type: Évocation +Level: 6 CastingTime: 1 action Range: 450 mètres Components: V, S, M (un éclat d'ambre, de verre ou de cristal, trois épingles en argent et un morceau de fourrure) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p332) Id: spells_hd.md#chaîne-déclairs ParentLink: spells_hd.md#sorts -Name: Chaîne d'éclairs ParentName: Sorts NameLevel: 1 -AltName: '[Chain Lightning](srd_spells_chain_lightning.md)' -Source: (MDR p332) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_champ_antimagie.md b/Data/HD/hd_spells_champ_antimagie.md index 3b38e01a..1e24f5fd 100644 --- a/Data/HD/hd_spells_champ_antimagie.md +++ b/Data/HD/hd_spells_champ_antimagie.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Champ antimagie +AltName: '[Antimagic Field](srd_spells_antimagic_field.md)' Type: Abjuration +Level: 8 CastingTime: 1 action Range: personnelle (sphère de 3 mètres de rayon) Components: V, S, M (une pincée de poudre de fer ou de limaille) Duration: concentration, jusqu'à 1 heure Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' +Source: (MDR p332)(SRD) Id: spells_hd.md#champ-antimagie ParentLink: spells_hd.md#sorts -Name: Champ antimagie ParentName: Sorts NameLevel: 1 -AltName: '[Antimagic Field](srd_spells_antimagic_field.md)' -Source: (MDR p332)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_changement_de_forme.md b/Data/HD/hd_spells_changement_de_forme.md index 26def656..01eca358 100644 --- a/Data/HD/hd_spells_changement_de_forme.md +++ b/Data/HD/hd_spells_changement_de_forme.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Changement de forme +AltName: '[Shapechange](srd_spells_shapechange.md)' Type: Transmutation +Level: 9 CastingTime: 1 action Range: personnelle Components: V, S, M (un diadème de jade d'une valeur minimale de 1 500 po, que vous devez coiffer avant de lancer le sort) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p333)(SRD) Id: spells_hd.md#changement-de-forme ParentLink: spells_hd.md#sorts -Name: Changement de forme ParentName: Sorts NameLevel: 1 -AltName: '[Shapechange](srd_spells_shapechange.md)' -Source: (MDR p333)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_changement_de_plan.md b/Data/HD/hd_spells_changement_de_plan.md index 3c3aa5b7..2d91f56a 100644 --- a/Data/HD/hd_spells_changement_de_plan.md +++ b/Data/HD/hd_spells_changement_de_plan.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Changement de plan +AltName: '[Plane Shift](srd_spells_plane_shift.md)' Type: Invocation +Level: 7 CastingTime: 1 action Range: contact Components: V, S, M (un diapason de métal valant au moins 250 po, harmonisé avec un plan d'existence donné) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p333)(SRD) Id: spells_hd.md#changement-de-plan ParentLink: spells_hd.md#sorts -Name: Changement de plan ParentName: Sorts NameLevel: 1 -AltName: '[Plane Shift](srd_spells_plane_shift.md)' -Source: (MDR p333)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_charme_personne.md b/Data/HD/hd_spells_charme_personne.md index f059ab7d..f18b7094 100644 --- a/Data/HD/hd_spells_charme_personne.md +++ b/Data/HD/hd_spells_charme_personne.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Charme-personne +AltName: '[Charm Person](srd_spells_charm_person.md)' Type: Enchantement +Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 heure Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p333)(SRD) Id: spells_hd.md#charme-personne ParentLink: spells_hd.md#sorts -Name: Charme-personne ParentName: Sorts NameLevel: 1 -AltName: '[Charm Person](srd_spells_charm_person.md)' -Source: (MDR p333)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_chauffer_le_metal.md b/Data/HD/hd_spells_chauffer_le_metal.md index 29b9e7d4..a1f69d8b 100644 --- a/Data/HD/hd_spells_chauffer_le_metal.md +++ b/Data/HD/hd_spells_chauffer_le_metal.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Chauffer le métal +AltName: '[Heat Metal](srd_spells_heat_metal.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un bout de fer et une flamme) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md)' +Source: (MDR p334)(SRD) Id: spells_hd.md#chauffer-le-métal ParentLink: spells_hd.md#sorts -Name: Chauffer le métal ParentName: Sorts NameLevel: 1 -AltName: '[Heat Metal](srd_spells_heat_metal.md)' -Source: (MDR p334)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_chien_de_garde.md b/Data/HD/hd_spells_chien_de_garde.md index 11797b65..b59dd34c 100644 --- a/Data/HD/hd_spells_chien_de_garde.md +++ b/Data/HD/hd_spells_chien_de_garde.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Chien de garde +AltName: '[Faithful Hound](srd_spells_faithful_hound.md)' Type: Invocation +Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un petit sifflet en argent, un éclat d'os et une ficelle) Duration: 8 heures Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p334) Id: spells_hd.md#chien-de-garde ParentLink: spells_hd.md#sorts -Name: Chien de garde ParentName: Sorts NameLevel: 1 -AltName: '[Faithful Hound](srd_spells_faithful_hound.md)' -Source: (MDR p334) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_choc_des_titans.md b/Data/HD/hd_spells_choc_des_titans.md index 2e03f59f..5dc2a058 100644 --- a/Data/HD/hd_spells_choc_des_titans.md +++ b/Data/HD/hd_spells_choc_des_titans.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Choc des titans Type: Enchantement +Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p334) Id: spells_hd.md#choc-des-titans ParentLink: spells_hd.md#sorts -Name: Choc des titans ParentName: Sorts NameLevel: 1 -Source: (MDR p334) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_clairvoyance.md b/Data/HD/hd_spells_clairvoyance.md index ac552b79..16871eaf 100644 --- a/Data/HD/hd_spells_clairvoyance.md +++ b/Data/HD/hd_spells_clairvoyance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Clairvoyance +AltName: '[Clairvoyance](srd_spells_clairvoyance.md)' Type: Divination +Level: 3 CastingTime: 10 minutes Range: 1,5 kilomètre Components: V, S, M (un focaliseur d'une valeur minimale de 100 po, soit une corne incrustée de pierreries pour l'ouïe, soit un oeil de verre pour la vue) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p334)(SRD) Id: spells_hd.md#clairvoyance ParentLink: spells_hd.md#sorts -Name: Clairvoyance ParentName: Sorts NameLevel: 1 -AltName: '[Clairvoyance](srd_spells_clairvoyance.md)' -Source: (MDR p334)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_clignotement.md b/Data/HD/hd_spells_clignotement.md index f2e4ef76..a6fb1e6b 100644 --- a/Data/HD/hd_spells_clignotement.md +++ b/Data/HD/hd_spells_clignotement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Clignotement +AltName: '[Blink](srd_spells_blink.md)' Type: Transmutation +Level: 3 CastingTime: 1 action Range: personnelle Components: V, S Duration: 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p334)(SRD) Id: spells_hd.md#clignotement ParentLink: spells_hd.md#sorts -Name: Clignotement ParentName: Sorts NameLevel: 1 -AltName: '[Blink](srd_spells_blink.md)' -Source: (MDR p334)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_clone.md b/Data/HD/hd_spells_clone.md index e7837070..ead8d3c0 100644 --- a/Data/HD/hd_spells_clone.md +++ b/Data/HD/hd_spells_clone.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Clone +AltName: '[Clone](srd_spells_clone.md)' Type: Nécromancie +Level: 8 CastingTime: 1 heure Range: contact Components: V, S, M (un diamant valant au moins 1 000 po et un cube d'au moins 2,5 centimètres d'arête de chair de la créature à cloner, le sort consommant ces deux composantes, ainsi qu'un réceptacle d'une valeur minimale de 2 000 po qui dispose d'un couvercle susceptible d'être scellé, et assez grand pour contenir une créature de taille M, comme une grande urne, un cercueil, un cavité remplie de boue creusée dans la terre ou un récipient de cristal rempli d'eau salée) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p335)(SRD) Id: spells_hd.md#clone ParentLink: spells_hd.md#sorts -Name: Clone ParentName: Sorts NameLevel: 1 -AltName: '[Clone](srd_spells_clone.md)' -Source: (MDR p335)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_coercition_mystique.md b/Data/HD/hd_spells_coercition_mystique.md index a1476f9d..9897c81d 100644 --- a/Data/HD/hd_spells_coercition_mystique.md +++ b/Data/HD/hd_spells_coercition_mystique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Coercition mystique +AltName: '[Geas](srd_spells_geas.md)' Type: Enchantement +Level: 5 CastingTime: 1 minute Range: 18 mètres Components: V Duration: 30 jours Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md)' +Source: (MDR p335)(SRD) Id: spells_hd.md#coercition-mystique ParentLink: spells_hd.md#sorts -Name: Coercition mystique ParentName: Sorts NameLevel: 1 -AltName: '[Geas](srd_spells_geas.md)' -Source: (MDR p335)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_coffre_secret.md b/Data/HD/hd_spells_coffre_secret.md index 659900d6..de14dfc6 100644 --- a/Data/HD/hd_spells_coffre_secret.md +++ b/Data/HD/hd_spells_coffre_secret.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Coffre secret +AltName: '[Secret Chest](srd_spells_secret_chest.md)' Type: Invocation +Level: 4 CastingTime: 1 action Range: contact Components: V, S, M (un superbe coffre de 90x60x60 centimètres, fait de matériaux rares d'une valeur minimale de 5 000 po et une réplique du coffre de taille TP, faite des mêmes matériaux et valant au moins 50 po) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p335) Id: spells_hd.md#coffre-secret ParentLink: spells_hd.md#sorts -Name: Coffre secret ParentName: Sorts NameLevel: 1 -AltName: '[Secret Chest](srd_spells_secret_chest.md)' -Source: (MDR p335) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_colere_des_damnes.md b/Data/HD/hd_spells_colere_des_damnes.md index 872d9633..15ea815e 100644 --- a/Data/HD/hd_spells_colere_des_damnes.md +++ b/Data/HD/hd_spells_colere_des_damnes.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Colère des damnés Type: Invocation +Level: 3 CastingTime: 1 action Range: 30 mètres Components: V, S, M (un peu de cendre et de poussière d'os) Duration: concentration, jusqu'à 1 minute Classes: '[Sorcier](hd_warlock.md)' +Source: (MDR p336) Id: spells_hd.md#colère-des-damnés ParentLink: spells_hd.md#sorts -Name: Colère des damnés ParentName: Sorts NameLevel: 1 -Source: (MDR p336) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_collet_magique.md b/Data/HD/hd_spells_collet_magique.md index 253b4c7f..84eeb56d 100644 --- a/Data/HD/hd_spells_collet_magique.md +++ b/Data/HD/hd_spells_collet_magique.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Collet magique Type: Invocation +Level: 2 CastingTime: 1 action Range: 12 mètres Components: V, S, M (une ficelle) Duration: 1 heure Classes: '[Rôdeur](hd_ranger.md)' +Source: (MDR p336) Id: spells_hd.md#collet-magique ParentLink: spells_hd.md#sorts -Name: Collet magique ParentName: Sorts NameLevel: 1 -Source: (MDR p336) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_colonne_de_flamme.md b/Data/HD/hd_spells_colonne_de_flamme.md index 8a636879..19ce78d0 100644 --- a/Data/HD/hd_spells_colonne_de_flamme.md +++ b/Data/HD/hd_spells_colonne_de_flamme.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Colonne de flamme +AltName: '[Flame Strike](srd_spells_flame_strike.md)' Type: Évocation +Level: 5 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une pincée de soufre) Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p336)(SRD) Id: spells_hd.md#colonne-de-flamme ParentLink: spells_hd.md#sorts -Name: Colonne de flamme ParentName: Sorts NameLevel: 1 -AltName: '[Flame Strike](srd_spells_flame_strike.md)' -Source: (MDR p336)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_communication_avec_les_animaux.md b/Data/HD/hd_spells_communication_avec_les_animaux.md index aabe8068..2288cbb2 100644 --- a/Data/HD/hd_spells_communication_avec_les_animaux.md +++ b/Data/HD/hd_spells_communication_avec_les_animaux.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Communication avec les animaux +AltName: '[Speak with Animals](srd_spells_speak_with_animals.md)' Type: Divination -Ritual: rituel +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S Duration: 10 minutes Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p336)(SRD) +Ritual: rituel Id: spells_hd.md#communication-avec-les-animaux ParentLink: spells_hd.md#sorts -Name: Communication avec les animaux ParentName: Sorts NameLevel: 1 -AltName: '[Speak with Animals](srd_spells_speak_with_animals.md)' -Source: (MDR p336)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_communication_avec_les_morts.md b/Data/HD/hd_spells_communication_avec_les_morts.md index 1179c737..2f9e6ea3 100644 --- a/Data/HD/hd_spells_communication_avec_les_morts.md +++ b/Data/HD/hd_spells_communication_avec_les_morts.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Communication avec les morts +AltName: '[Speak with Dead](srd_spells_speak_with_dead.md)' Type: Nécromancie +Level: 3 CastingTime: 1 action Range: 3 mètres Components: V, S, M (encens incandescent) Duration: 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)' +Source: (MDR p336)(SRD) Id: spells_hd.md#communication-avec-les-morts ParentLink: spells_hd.md#sorts -Name: Communication avec les morts ParentName: Sorts NameLevel: 1 -AltName: '[Speak with Dead](srd_spells_speak_with_dead.md)' -Source: (MDR p336)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_communication_avec_les_plantes.md b/Data/HD/hd_spells_communication_avec_les_plantes.md index 431bf9c8..8d251939 100644 --- a/Data/HD/hd_spells_communication_avec_les_plantes.md +++ b/Data/HD/hd_spells_communication_avec_les_plantes.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Communication avec les plantes +AltName: '[Speak with Plants](srd_spells_speak_with_plants.md)' Type: Transmutation +Level: 3 CastingTime: 1 action Range: personnelle (9 mètres de rayon) Components: V, S Duration: 10 minutes Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p337)(SRD) Id: spells_hd.md#communication-avec-les-plantes ParentLink: spells_hd.md#sorts -Name: Communication avec les plantes ParentName: Sorts NameLevel: 1 -AltName: '[Speak with Plants](srd_spells_speak_with_plants.md)' -Source: (MDR p337)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_communion.md b/Data/HD/hd_spells_communion.md index 32495c6f..9b976034 100644 --- a/Data/HD/hd_spells_communion.md +++ b/Data/HD/hd_spells_communion.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Communion +AltName: '[Commune](srd_spells_commune.md)' Type: Divination -Ritual: rituel +Level: 5 CastingTime: 1 minute Range: personnelle Components: V, S, M (de l'encens et une fiole d'eau bénite ou maudite) Duration: 1 minute Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p337)(SRD) +Ritual: rituel Id: spells_hd.md#communion ParentLink: spells_hd.md#sorts -Name: Communion ParentName: Sorts NameLevel: 1 -AltName: '[Commune](srd_spells_commune.md)' -Source: (MDR p337)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_communion_avec_la_nature.md b/Data/HD/hd_spells_communion_avec_la_nature.md index 737a6f2a..1772e976 100644 --- a/Data/HD/hd_spells_communion_avec_la_nature.md +++ b/Data/HD/hd_spells_communion_avec_la_nature.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Communion avec la nature +AltName: '[Commune with Nature](srd_spells_commune_with_nature.md)' Type: Divination -Ritual: rituel +Level: 5 CastingTime: 1 minute Range: personnelle Components: V, S Duration: instantanée Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p337)(SRD) +Ritual: rituel Id: spells_hd.md#communion-avec-la-nature ParentLink: spells_hd.md#sorts -Name: Communion avec la nature ParentName: Sorts NameLevel: 1 -AltName: '[Commune with Nature](srd_spells_commune_with_nature.md)' -Source: (MDR p337)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_compagnon_animal.md b/Data/HD/hd_spells_compagnon_animal.md index c9a5b346..58373c16 100644 --- a/Data/HD/hd_spells_compagnon_animal.md +++ b/Data/HD/hd_spells_compagnon_animal.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Compagnon animal Type: Enchantement +Level: 2 CastingTime: 1 minute Range: 12 mètres Components: V, S, M (un peu de nourriture adaptée à l'animal) Duration: 24 heures Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p337) Id: spells_hd.md#compagnon-animal ParentLink: spells_hd.md#sorts -Name: Compagnon animal ParentName: Sorts NameLevel: 1 -Source: (MDR p337) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_comprehension_des_langues.md b/Data/HD/hd_spells_comprehension_des_langues.md index e0a77b9c..d67ec461 100644 --- a/Data/HD/hd_spells_comprehension_des_langues.md +++ b/Data/HD/hd_spells_comprehension_des_langues.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Compréhension des langues +AltName: '[Comprehend Languages](srd_spells_comprehend_languages.md)' Type: Divination -Ritual: rituel +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (une pincée de suie et de sel) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p338)(SRD) +Ritual: rituel Id: spells_hd.md#compréhension-des-langues ParentLink: spells_hd.md#sorts -Name: Compréhension des langues ParentName: Sorts NameLevel: 1 -AltName: '[Comprehend Languages](srd_spells_comprehend_languages.md)' -Source: (MDR p338)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_compulsion.md b/Data/HD/hd_spells_compulsion.md index 240f524f..9964a9d1 100644 --- a/Data/HD/hd_spells_compulsion.md +++ b/Data/HD/hd_spells_compulsion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Compulsion +AltName: '[Compulsion](srd_spells_compulsion.md)' Type: Enchantement +Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p338)(SRD) Id: spells_hd.md#compulsion ParentLink: spells_hd.md#sorts -Name: Compulsion ParentName: Sorts NameLevel: 1 -AltName: '[Compulsion](srd_spells_compulsion.md)' -Source: (MDR p338)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_cone_de_froid.md b/Data/HD/hd_spells_cone_de_froid.md index 85dcc7fe..2b58a999 100644 --- a/Data/HD/hd_spells_cone_de_froid.md +++ b/Data/HD/hd_spells_cone_de_froid.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Cône de froid +AltName: '[Cone of Cold](srd_spells_cone_of_cold.md)' Type: Évocation +Level: 5 CastingTime: 1 action Range: personnelle (cône de 18 mètres) Components: V, S, M (un petit cône de cristal ou de verre) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p338)(SRD) Id: spells_hd.md#cône-de-froid ParentLink: spells_hd.md#sorts -Name: Cône de froid ParentName: Sorts NameLevel: 1 -AltName: '[Cone of Cold](srd_spells_cone_of_cold.md)' -Source: (MDR p338)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_confusion.md b/Data/HD/hd_spells_confusion.md index af615cd9..e7e969eb 100644 --- a/Data/HD/hd_spells_confusion.md +++ b/Data/HD/hd_spells_confusion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Confusion +AltName: '[Confusion](srd_spells_confusion.md)' Type: Enchantement +Level: 4 CastingTime: 1 action Range: 27 mètres Components: V, S, M (trois coquilles de noix) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p338)(SRD) Id: spells_hd.md#confusion ParentLink: spells_hd.md#sorts -Name: Confusion ParentName: Sorts NameLevel: 1 -AltName: '[Confusion](srd_spells_confusion.md)' -Source: (MDR p338)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_contact_glacial.md b/Data/HD/hd_spells_contact_glacial.md index 29b2621c..1dceb461 100644 --- a/Data/HD/hd_spells_contact_glacial.md +++ b/Data/HD/hd_spells_contact_glacial.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Contact glacial +AltName: '[Chill Touch](srd_spells_chill_touch.md)' Type: Nécromancie +Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S Duration: 1 round Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p339)(SRD) Id: spells_hd.md#contact-glacial ParentLink: spells_hd.md#sorts -Name: Contact glacial ParentName: Sorts NameLevel: 1 -AltName: '[Chill Touch](srd_spells_chill_touch.md)' -Source: (MDR p339)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_contacter_un_autre_plan.md b/Data/HD/hd_spells_contacter_un_autre_plan.md index 273fc750..671b6464 100644 --- a/Data/HD/hd_spells_contacter_un_autre_plan.md +++ b/Data/HD/hd_spells_contacter_un_autre_plan.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Contacter un autre plan +AltName: '[Contact Other Plane](srd_spells_contact_other_plane.md)' Type: Divination -Ritual: rituel +Level: 5 CastingTime: 1 minute Range: personnelle Components: V Duration: 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p339)(SRD) +Ritual: rituel Id: spells_hd.md#contacter-un-autre-plan ParentLink: spells_hd.md#sorts -Name: Contacter un autre plan ParentName: Sorts NameLevel: 1 -AltName: '[Contact Other Plane](srd_spells_contact_other_plane.md)' -Source: (MDR p339)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_contagion.md b/Data/HD/hd_spells_contagion.md index 18d79471..61fe2493 100644 --- a/Data/HD/hd_spells_contagion.md +++ b/Data/HD/hd_spells_contagion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Contagion +AltName: '[Contagion](srd_spells_contagion.md)' Type: Nécromancie +Level: 5 CastingTime: 1 action Range: contact Components: V, S Duration: 7 jours Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p339)(SRD) Id: spells_hd.md#contagion ParentLink: spells_hd.md#sorts -Name: Contagion ParentName: Sorts NameLevel: 1 -AltName: '[Contagion](srd_spells_contagion.md)' -Source: (MDR p339)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_contamination.md b/Data/HD/hd_spells_contamination.md index 2a7216e6..379d8cb6 100644 --- a/Data/HD/hd_spells_contamination.md +++ b/Data/HD/hd_spells_contamination.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Contamination +AltName: '[Harm](srd_spells_harm.md)' Type: Nécromancie +Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p340)(SRD) Id: spells_hd.md#contamination ParentLink: spells_hd.md#sorts -Name: Contamination ParentName: Sorts NameLevel: 1 -AltName: '[Harm](srd_spells_harm.md)' -Source: (MDR p340)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_contingence.md b/Data/HD/hd_spells_contingence.md index f1e1e36c..123021c8 100644 --- a/Data/HD/hd_spells_contingence.md +++ b/Data/HD/hd_spells_contingence.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Contingence +AltName: '[Contingency](srd_spells_contingency.md)' Type: Évocation +Level: 6 CastingTime: 10 minutes Range: personnelle Components: V, S, M (une statuette de vous taillée dans l'ivoire et ornée de gemmes d'une valeur minimum de 1 500 po) Duration: 10 jours Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p340)(SRD) Id: spells_hd.md#contingence ParentLink: spells_hd.md#sorts -Name: Contingence ParentName: Sorts NameLevel: 1 -AltName: '[Contingency](srd_spells_contingency.md)' -Source: (MDR p340)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_contresort.md b/Data/HD/hd_spells_contresort.md index 2008d1ea..f70d035f 100644 --- a/Data/HD/hd_spells_contresort.md +++ b/Data/HD/hd_spells_contresort.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Contresort +AltName: '[Counterspell](srd_spells_counterspell.md)' Type: Abjuration +Level: 3 CastingTime: 1 réaction à utiliser quand vous voyez une créature située dans un rayon de 18 mètres autour de vous lancer un sort Range: 18 mètres Components: S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p340)(SRD) Id: spells_hd.md#contresort ParentLink: spells_hd.md#sorts -Name: Contresort ParentName: Sorts NameLevel: 1 -AltName: '[Counterspell](srd_spells_counterspell.md)' -Source: (MDR p340)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_controle_de_leau.md b/Data/HD/hd_spells_controle_de_leau.md index c8b68d5b..a182b35f 100644 --- a/Data/HD/hd_spells_controle_de_leau.md +++ b/Data/HD/hd_spells_controle_de_leau.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Contrôle de l'eau +AltName: '[Control Water](srd_spells_control_water.md)' Type: Transmutation +Level: 4 CastingTime: 1 action Range: 90 mètres Components: V, S, M (une goutte d'eau et une pincée de poussière) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p340) Id: spells_hd.md#contrôle-de-leau ParentLink: spells_hd.md#sorts -Name: Contrôle de l'eau ParentName: Sorts NameLevel: 1 -AltName: '[Control Water](srd_spells_control_water.md)' -Source: (MDR p340) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_controle_du_climat.md b/Data/HD/hd_spells_controle_du_climat.md index 2b3a7e38..37c6a0d5 100644 --- a/Data/HD/hd_spells_controle_du_climat.md +++ b/Data/HD/hd_spells_controle_du_climat.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Contrôle du climat +AltName: '[Control Weather](srd_spells_control_weather.md)' Type: Transmutation +Level: 8 CastingTime: 10 minutes Range: personnelle (rayon de 7,5 kilomètres) Components: V, S, M (encens incandescent et un peu de bois et de terre mélangés dans de l'eau) Duration: concentration, jusqu'à 8 heures Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p341)(SRD) Id: spells_hd.md#contrôle-du-climat ParentLink: spells_hd.md#sorts -Name: Contrôle du climat ParentName: Sorts NameLevel: 1 -AltName: '[Control Weather](srd_spells_control_weather.md)' -Source: (MDR p341)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_convocations_instantanees.md b/Data/HD/hd_spells_convocations_instantanees.md index 1183b445..247655a2 100644 --- a/Data/HD/hd_spells_convocations_instantanees.md +++ b/Data/HD/hd_spells_convocations_instantanees.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Convocations instantanées +AltName: '[Instant Summons](srd_spells_instant_summons.md)' Type: Invocation -Ritual: rituel +Level: 6 CastingTime: 1 minute Range: contact Components: V, S, M (un saphir d'une valeur de 1 000 po) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p342) +Ritual: rituel Id: spells_hd.md#convocations-instantanées ParentLink: spells_hd.md#sorts -Name: Convocations instantanées ParentName: Sorts NameLevel: 1 -AltName: '[Instant Summons](srd_spells_instant_summons.md)' -Source: (MDR p342) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_coquille_antivie.md b/Data/HD/hd_spells_coquille_antivie.md index c2fa34a8..57102322 100644 --- a/Data/HD/hd_spells_coquille_antivie.md +++ b/Data/HD/hd_spells_coquille_antivie.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Coquille antivie +AltName: '[Antilife Shell](srd_spells_antilife_shell.md)' Type: Abjuration +Level: 5 CastingTime: 1 action Range: personnelle (3 mètres de rayon) Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md)' +Source: (MDR p342)(SRD) Id: spells_hd.md#coquille-antivie ParentLink: spells_hd.md#sorts -Name: Coquille antivie ParentName: Sorts NameLevel: 1 -AltName: '[Antilife Shell](srd_spells_antilife_shell.md)' -Source: (MDR p342)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_corde_enchantee.md b/Data/HD/hd_spells_corde_enchantee.md index b72c096d..93fc9e26 100644 --- a/Data/HD/hd_spells_corde_enchantee.md +++ b/Data/HD/hd_spells_corde_enchantee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Corde enchantée +AltName: '[Rope Trick](srd_spells_rope_trick.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (extrait de maïs en poudre et boucle de parchemin torsadé) Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p342)(SRD) Id: spells_hd.md#corde-enchantée ParentLink: spells_hd.md#sorts -Name: Corde enchantée ParentName: Sorts NameLevel: 1 -AltName: '[Rope Trick](srd_spells_rope_trick.md)' -Source: (MDR p342)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_couleurs_dansantes.md b/Data/HD/hd_spells_couleurs_dansantes.md index 2075485a..ad4ef521 100644 --- a/Data/HD/hd_spells_couleurs_dansantes.md +++ b/Data/HD/hd_spells_couleurs_dansantes.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Couleurs dansantes +AltName: '[Color Spray](srd_spells_color_spray.md)' Type: Illusion +Level: 1 CastingTime: 1 action Range: personnelle (cône de 4,50 mètres) Components: V, S, M (une poignée de poudre ou de sable, colorée en rouge, jaune et bleu) Duration: 1 round Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p343)(SRD) Id: spells_hd.md#couleurs-dansantes ParentLink: spells_hd.md#sorts -Name: Couleurs dansantes ParentName: Sorts NameLevel: 1 -AltName: '[Color Spray](srd_spells_color_spray.md)' -Source: (MDR p343)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_creation.md b/Data/HD/hd_spells_creation.md index 92bdd57b..e58b920c 100644 --- a/Data/HD/hd_spells_creation.md +++ b/Data/HD/hd_spells_creation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Création +AltName: '[Creation](srd_spells_creation.md)' Type: Illusion +Level: 5 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (un petit bout de matière de même type que l'objet que vous voulez créer) Duration: spéciale Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p343)(SRD) Id: spells_hd.md#création ParentLink: spells_hd.md#sorts -Name: Création ParentName: Sorts NameLevel: 1 -AltName: '[Creation](srd_spells_creation.md)' -Source: (MDR p343)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_creation_de_mort_vivant.md b/Data/HD/hd_spells_creation_de_mort_vivant.md index b141c039..db8af287 100644 --- a/Data/HD/hd_spells_creation_de_mort_vivant.md +++ b/Data/HD/hd_spells_creation_de_mort_vivant.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Création de mort-vivant +AltName: '[Create Undead](srd_spells_create_undead.md)' Type: Nécromancie +Level: 6 CastingTime: 1 minute Range: 3 mètres Components: V, S, M (un pot d'argile rempli de poussière tombale, un pot d'argile rempli d'eau saumâtre et un onyx noir d'une valeur de 150 po par cadavre) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p343)(SRD) Id: spells_hd.md#création-de-mort-vivant ParentLink: spells_hd.md#sorts -Name: Création de mort-vivant ParentName: Sorts NameLevel: 1 -AltName: '[Create Undead](srd_spells_create_undead.md)' -Source: (MDR p343)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_creation_de_nourriture_et_deau.md b/Data/HD/hd_spells_creation_de_nourriture_et_deau.md index 24623a99..790d93ff 100644 --- a/Data/HD/hd_spells_creation_de_nourriture_et_deau.md +++ b/Data/HD/hd_spells_creation_de_nourriture_et_deau.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Création de nourriture et d'eau +AltName: '[Create Food and Water](srd_spells_create_food_and_water.md)' Type: Invocation +Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p344) Id: spells_hd.md#création-de-nourriture-et-deau ParentLink: spells_hd.md#sorts -Name: Création de nourriture et d'eau ParentName: Sorts NameLevel: 1 -AltName: '[Create Food and Water](srd_spells_create_food_and_water.md)' -Source: (MDR p344) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_creation_ou_destruction_deau.md b/Data/HD/hd_spells_creation_ou_destruction_deau.md index 10d77294..fd939618 100644 --- a/Data/HD/hd_spells_creation_ou_destruction_deau.md +++ b/Data/HD/hd_spells_creation_ou_destruction_deau.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Création ou destruction d'eau +AltName: '[Create or Destroy Water](srd_spells_create_or_destroy_water.md)' Type: Transmutation +Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une goutte d'eau pour créer de l'eau ou quelques grains de sable pour en détruire) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p344) Id: spells_hd.md#création-ou-destruction-deau ParentLink: spells_hd.md#sorts -Name: Création ou destruction d'eau ParentName: Sorts NameLevel: 1 -AltName: '[Create or Destroy Water](srd_spells_create_or_destroy_water.md)' -Source: (MDR p344) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_croissance_depines.md b/Data/HD/hd_spells_croissance_depines.md index 11d02841..a695ac59 100644 --- a/Data/HD/hd_spells_croissance_depines.md +++ b/Data/HD/hd_spells_croissance_depines.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Croissance d'épines +AltName: '[Spike Growth](srd_spells_spike_growth.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: 45 mètres Components: V, S, M (sept épines acérées ou sept brindilles taillées en pointe) Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p344) Id: spells_hd.md#croissance-dépines ParentLink: spells_hd.md#sorts -Name: Croissance d'épines ParentName: Sorts NameLevel: 1 -AltName: '[Spike Growth](srd_spells_spike_growth.md)' -Source: (MDR p344) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_croissance_vegetale.md b/Data/HD/hd_spells_croissance_vegetale.md index 1e0f2284..b4580ad4 100644 --- a/Data/HD/hd_spells_croissance_vegetale.md +++ b/Data/HD/hd_spells_croissance_vegetale.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Croissance végétale +AltName: '[Plant Growth](srd_spells_plant_growth.md)' Type: Transmutation +Level: 3 CastingTime: 1 action ou 8 heures Range: 45 mètres Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p344)(SRD) Id: spells_hd.md#croissance-végétale ParentLink: spells_hd.md#sorts -Name: Croissance végétale ParentName: Sorts NameLevel: 1 -AltName: '[Plant Growth](srd_spells_plant_growth.md)' -Source: (MDR p344)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_danse_irresistible.md b/Data/HD/hd_spells_danse_irresistible.md index 9cd75cbb..69d8be50 100644 --- a/Data/HD/hd_spells_danse_irresistible.md +++ b/Data/HD/hd_spells_danse_irresistible.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Danse irrésistible +AltName: '[Irresistible Dance](srd_spells_irresistible_dance.md)' Type: Enchantement +Level: 6 CastingTime: 1 action Range: 9 mètres Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p344) Id: spells_hd.md#danse-irrésistible ParentLink: spells_hd.md#sorts -Name: Danse irrésistible ParentName: Sorts NameLevel: 1 -AltName: '[Irresistible Dance](srd_spells_irresistible_dance.md)' -Source: (MDR p344) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_deblocage.md b/Data/HD/hd_spells_deblocage.md index 24d2e092..4c659ed2 100644 --- a/Data/HD/hd_spells_deblocage.md +++ b/Data/HD/hd_spells_deblocage.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Déblocage +AltName: '[Knock](srd_spells_knock.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p345)(SRD) Id: spells_hd.md#déblocage ParentLink: spells_hd.md#sorts -Name: Déblocage ParentName: Sorts NameLevel: 1 -AltName: '[Knock](srd_spells_knock.md)' -Source: (MDR p345)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_deguisement.md b/Data/HD/hd_spells_deguisement.md index d65b23ff..05fd8582 100644 --- a/Data/HD/hd_spells_deguisement.md +++ b/Data/HD/hd_spells_deguisement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Déguisement +AltName: '[Disguise Self](srd_spells_disguise_self.md)' Type: Illusion +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S Duration: 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p345)(SRD) Id: spells_hd.md#déguisement ParentLink: spells_hd.md#sorts -Name: Déguisement ParentName: Sorts NameLevel: 1 -AltName: '[Disguise Self](srd_spells_disguise_self.md)' -Source: (MDR p345)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_demi_plan.md b/Data/HD/hd_spells_demi_plan.md index 006676e7..a8abc290 100644 --- a/Data/HD/hd_spells_demi_plan.md +++ b/Data/HD/hd_spells_demi_plan.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Demi-plan +AltName: '[Demiplane](srd_spells_demiplane.md)' Type: Invocation +Level: 8 CastingTime: 1 action Range: 18 mètres Components: S Duration: 1 heure Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p345)(SRD) Id: spells_hd.md#demi-plan ParentLink: spells_hd.md#sorts -Name: Demi-plan ParentName: Sorts NameLevel: 1 -AltName: '[Demiplane](srd_spells_demiplane.md)' -Source: (MDR p345)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_deplacer_la_terre.md b/Data/HD/hd_spells_deplacer_la_terre.md index 9d0a9081..7dfe6fba 100644 --- a/Data/HD/hd_spells_deplacer_la_terre.md +++ b/Data/HD/hd_spells_deplacer_la_terre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Déplacer la terre +AltName: '[Move Earth](srd_spells_move_earth.md)' Type: Transmutation +Level: 6 CastingTime: 1 action Range: 36 mètres Components: "V, S, M (une lame de fer et un petit sac contenant un mélange de terres : de l'argile, du terreau et du sable)" Duration: concentration, jusqu'à 2 heures Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p345)(SRD) Id: spells_hd.md#déplacer-la-terre ParentLink: spells_hd.md#sorts -Name: Déplacer la terre ParentName: Sorts NameLevel: 1 -AltName: '[Move Earth](srd_spells_move_earth.md)' -Source: (MDR p345)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_desintegration.md b/Data/HD/hd_spells_desintegration.md index f4d14a52..53e49386 100644 --- a/Data/HD/hd_spells_desintegration.md +++ b/Data/HD/hd_spells_desintegration.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Désintégration +AltName: '[Disintegrate](srd_spells_disintegrate.md)' Type: Transmutation +Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, S, M (de la magnétite et une pincée de poussière) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p346)(SRD) Id: spells_hd.md#désintégration ParentLink: spells_hd.md#sorts -Name: Désintégration ParentName: Sorts NameLevel: 1 -AltName: '[Disintegrate](srd_spells_disintegrate.md)' -Source: (MDR p346)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_dessiccation.md b/Data/HD/hd_spells_dessiccation.md index e3adeba4..39dee912 100644 --- a/Data/HD/hd_spells_dessiccation.md +++ b/Data/HD/hd_spells_dessiccation.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Dessiccation Type: Transmutation +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une goutte d'eau) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p346) Id: spells_hd.md#dessiccation ParentLink: spells_hd.md#sorts -Name: Dessiccation ParentName: Sorts NameLevel: 1 -Source: (MDR p346) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_detection_de_la_magie.md b/Data/HD/hd_spells_detection_de_la_magie.md index 2e4e83fa..d5b0ab9a 100644 --- a/Data/HD/hd_spells_detection_de_la_magie.md +++ b/Data/HD/hd_spells_detection_de_la_magie.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Détection de la magie +AltName: '[Detect Magic](srd_spells_detect_magic.md)' Type: Divination -Ritual: rituel +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p346)(SRD) +Ritual: rituel Id: spells_hd.md#détection-de-la-magie ParentLink: spells_hd.md#sorts -Name: Détection de la magie ParentName: Sorts NameLevel: 1 -AltName: '[Detect Magic](srd_spells_detect_magic.md)' -Source: (MDR p346)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_detection_des_pensees.md b/Data/HD/hd_spells_detection_des_pensees.md index ae181467..612c2d9a 100644 --- a/Data/HD/hd_spells_detection_des_pensees.md +++ b/Data/HD/hd_spells_detection_des_pensees.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Détection des pensées +AltName: '[Detect Thoughts](srd_spells_detect_thoughts.md)' Type: Divination +Level: 2 CastingTime: 1 action Range: personnelle Components: V, S, M (une pièce de cuivre) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p346)(SRD) Id: spells_hd.md#détection-des-pensées ParentLink: spells_hd.md#sorts -Name: Détection des pensées ParentName: Sorts NameLevel: 1 -AltName: '[Detect Thoughts](srd_spells_detect_thoughts.md)' -Source: (MDR p346)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_detection_du_mal_et_du_bien.md b/Data/HD/hd_spells_detection_du_mal_et_du_bien.md index b26cbf6b..49066d76 100644 --- a/Data/HD/hd_spells_detection_du_mal_et_du_bien.md +++ b/Data/HD/hd_spells_detection_du_mal_et_du_bien.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Détection du mal et du bien +AltName: '[Detect Evil and Good](srd_spells_detect_evil_and_good.md)' Type: Divination +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p347)(SRD) Id: spells_hd.md#détection-du-mal-et-du-bien ParentLink: spells_hd.md#sorts -Name: Détection du mal et du bien ParentName: Sorts NameLevel: 1 -AltName: '[Detect Evil and Good](srd_spells_detect_evil_and_good.md)' -Source: (MDR p347)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_detection_du_poison_et_des_maladies.md b/Data/HD/hd_spells_detection_du_poison_et_des_maladies.md index 5762e853..d273e601 100644 --- a/Data/HD/hd_spells_detection_du_poison_et_des_maladies.md +++ b/Data/HD/hd_spells_detection_du_poison_et_des_maladies.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Détection du poison et des maladies +AltName: '[Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)' Type: Divination -Ritual: rituel +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (un brin d'if) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p347)(SRD) +Ritual: rituel Id: spells_hd.md#détection-du-poison-et-des-maladies ParentLink: spells_hd.md#sorts -Name: Détection du poison et des maladies ParentName: Sorts NameLevel: 1 -AltName: '[Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)' -Source: (MDR p347)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_disque_flottant.md b/Data/HD/hd_spells_disque_flottant.md index 4a15a640..71ef61ad 100644 --- a/Data/HD/hd_spells_disque_flottant.md +++ b/Data/HD/hd_spells_disque_flottant.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Disque flottant +AltName: '[Floating Disk](srd_spells_floating_disk.md)' Type: Invocation -Ritual: rituel +Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une goutte de mercure) Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p347) +Ritual: rituel Id: spells_hd.md#disque-flottant ParentLink: spells_hd.md#sorts -Name: Disque flottant ParentName: Sorts NameLevel: 1 -AltName: '[Floating Disk](srd_spells_floating_disk.md)' -Source: (MDR p347) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_dissipation_de_la_magie.md b/Data/HD/hd_spells_dissipation_de_la_magie.md index e747974c..de9dd6d6 100644 --- a/Data/HD/hd_spells_dissipation_de_la_magie.md +++ b/Data/HD/hd_spells_dissipation_de_la_magie.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Dissipation de la magie +AltName: '[Dispel Magic](srd_spells_dispel_magic.md)' Type: Abjuration +Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' +Source: (MDR p347)(SRD) Id: spells_hd.md#dissipation-de-la-magie ParentLink: spells_hd.md#sorts -Name: Dissipation de la magie ParentName: Sorts NameLevel: 1 -AltName: '[Dispel Magic](srd_spells_dispel_magic.md)' -Source: (MDR p347)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_dissipation_du_mal_et_du_bien.md b/Data/HD/hd_spells_dissipation_du_mal_et_du_bien.md index fe712b91..87e35a13 100644 --- a/Data/HD/hd_spells_dissipation_du_mal_et_du_bien.md +++ b/Data/HD/hd_spells_dissipation_du_mal_et_du_bien.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Dissipation du mal et du bien +AltName: '[Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)' Type: Abjuration +Level: 5 CastingTime: 1 action Range: personnelle Components: V, S, M (eau bénite ou poudre d'argent et de fer) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p347)(SRD) Id: spells_hd.md#dissipation-du-mal-et-du-bien ParentLink: spells_hd.md#sorts -Name: Dissipation du mal et du bien ParentName: Sorts NameLevel: 1 -AltName: '[Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)' -Source: (MDR p347)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_divination.md b/Data/HD/hd_spells_divination.md index 106eef92..4bf8c76b 100644 --- a/Data/HD/hd_spells_divination.md +++ b/Data/HD/hd_spells_divination.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Divination +AltName: '[Divination](srd_spells_divination.md)' Type: Divination -Ritual: rituel +Level: 4 CastingTime: 1 action Range: personnelle Components: V, S, M (de l'encens et une offrande sacrificielle adaptée à votre religion, l'ensemble valant au moins 25 po, et le sort consume les deux) Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p348)(SRD) +Ritual: rituel Id: spells_hd.md#divination ParentLink: spells_hd.md#sorts -Name: Divination ParentName: Sorts NameLevel: 1 -AltName: '[Divination](srd_spells_divination.md)' -Source: (MDR p348)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_doigt_de_mort.md b/Data/HD/hd_spells_doigt_de_mort.md index 764e61c8..4f0c4f00 100644 --- a/Data/HD/hd_spells_doigt_de_mort.md +++ b/Data/HD/hd_spells_doigt_de_mort.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Doigt de mort +AltName: '[Finger of Death](srd_spells_finger_of_death.md)' Type: Nécromancie +Level: 7 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p348)(SRD) Id: spells_hd.md#doigt-de-mort ParentLink: spells_hd.md#sorts -Name: Doigt de mort ParentName: Sorts NameLevel: 1 -AltName: '[Finger of Death](srd_spells_finger_of_death.md)' -Source: (MDR p348)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_dominer_un_humanoide.md b/Data/HD/hd_spells_dominer_un_humanoide.md index c3d60276..7463c123 100644 --- a/Data/HD/hd_spells_dominer_un_humanoide.md +++ b/Data/HD/hd_spells_dominer_un_humanoide.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Dominer un humanoïde +AltName: '[Dominate Person](srd_spells_dominate_person.md)' Type: Enchantement +Level: 5 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p348)(SRD) Id: spells_hd.md#dominer-un-humanoïde ParentLink: spells_hd.md#sorts -Name: Dominer un humanoïde ParentName: Sorts NameLevel: 1 -AltName: '[Dominate Person](srd_spells_dominate_person.md)' -Source: (MDR p348)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_dominer_un_monstre.md b/Data/HD/hd_spells_dominer_un_monstre.md index b9b87b8b..9362ca63 100644 --- a/Data/HD/hd_spells_dominer_un_monstre.md +++ b/Data/HD/hd_spells_dominer_un_monstre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Dominer un monstre +AltName: '[Dominate Monster](srd_spells_dominate_monster.md)' Type: Enchantement +Level: 8 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p349)(SRD) Id: spells_hd.md#dominer-un-monstre ParentLink: spells_hd.md#sorts -Name: Dominer un monstre ParentName: Sorts NameLevel: 1 -AltName: '[Dominate Monster](srd_spells_dominate_monster.md)' -Source: (MDR p349)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_dominer_une_bete.md b/Data/HD/hd_spells_dominer_une_bete.md index 9e03baa2..a1845f4a 100644 --- a/Data/HD/hd_spells_dominer_une_bete.md +++ b/Data/HD/hd_spells_dominer_une_bete.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Dominer une bête +AltName: '[Dominate Beast](srd_spells_dominate_beast.md)' Type: Enchantement +Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' +Source: (MDR p349)(SRD) Id: spells_hd.md#dominer-une-bête ParentLink: spells_hd.md#sorts -Name: Dominer une bête ParentName: Sorts NameLevel: 1 -AltName: '[Dominate Beast](srd_spells_dominate_beast.md)' -Source: (MDR p349)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_doux_repos.md b/Data/HD/hd_spells_doux_repos.md index 4ab32d4b..61f37dde 100644 --- a/Data/HD/hd_spells_doux_repos.md +++ b/Data/HD/hd_spells_doux_repos.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Doux repos +AltName: '[Gentle Repose](srd_spells_gentle_repose.md)' Type: Nécromancie -Ritual: rituel +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une pincée de sel et une pièce de cuivre à poser sur chaque oeil du cadavre et qui doivent rester en place pendant toute la durée du sort) Duration: 10 jours Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' +Source: (MDR p349)(SRD) +Ritual: rituel Id: spells_hd.md#doux-repos ParentLink: spells_hd.md#sorts -Name: Doux repos ParentName: Sorts NameLevel: 1 -AltName: '[Gentle Repose](srd_spells_gentle_repose.md)' -Source: (MDR p349)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_druidisme.md b/Data/HD/hd_spells_druidisme.md index e8ffa560..abe99058 100644 --- a/Data/HD/hd_spells_druidisme.md +++ b/Data/HD/hd_spells_druidisme.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Druidisme +AltName: '[Druidcraft](srd_spells_druidcraft.md)' Type: Transmutation +Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: V, S Duration: instantanée Classes: '[Druide](hd_druid.md)' +Source: (MDR p349)(SRD) Id: spells_hd.md#druidisme ParentLink: spells_hd.md#sorts -Name: Druidisme ParentName: Sorts NameLevel: 1 -AltName: '[Druidcraft](srd_spells_druidcraft.md)' -Source: (MDR p349)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_eclair.md b/Data/HD/hd_spells_eclair.md index 85aab683..5f3f82ba 100644 --- a/Data/HD/hd_spells_eclair.md +++ b/Data/HD/hd_spells_eclair.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Éclair +AltName: '[Lightning Bolt](srd_spells_lightning_bolt.md)' Type: Évocation +Level: 3 CastingTime: 1 action Range: personnelle (ligne de 30 mètres) Components: V, S, M (un peu de fourrure et une baguette en ambre, en cristal ou en verre) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p350)(SRD) Id: spells_hd.md#Éclair ParentLink: spells_hd.md#sorts -Name: Éclair ParentName: Sorts NameLevel: 1 -AltName: '[Lightning Bolt](srd_spells_lightning_bolt.md)' -Source: (MDR p350)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_eclat_de_bois.md b/Data/HD/hd_spells_eclat_de_bois.md index 378e84f0..83489da6 100644 --- a/Data/HD/hd_spells_eclat_de_bois.md +++ b/Data/HD/hd_spells_eclat_de_bois.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Éclat de bois Type: Invocation +Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V, S, M (une écharde de bois) Duration: instantanée Classes: '[Druide](hd_druid.md)' +Source: (MDR p350) Id: spells_hd.md#Éclat-de-bois ParentLink: spells_hd.md#sorts -Name: Éclat de bois ParentName: Sorts NameLevel: 1 -Source: (MDR p350) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_eclat_du_soleil.md b/Data/HD/hd_spells_eclat_du_soleil.md index 9437e51f..90548b2c 100644 --- a/Data/HD/hd_spells_eclat_du_soleil.md +++ b/Data/HD/hd_spells_eclat_du_soleil.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Éclat du soleil +AltName: '[Sunburst](srd_spells_sunburst.md)' Type: Évocation +Level: 8 CastingTime: 1 action Range: 45 mètres Components: V, S, M (du feu et un éclat d'héliotrope) Duration: instantanée Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p350)(SRD) Id: spells_hd.md#Éclat-du-soleil ParentLink: spells_hd.md#sorts -Name: Éclat du soleil ParentName: Sorts NameLevel: 1 -AltName: '[Sunburst](srd_spells_sunburst.md)' -Source: (MDR p350)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_embruns_prismatiques.md b/Data/HD/hd_spells_embruns_prismatiques.md index b34a6707..9ab9ec41 100644 --- a/Data/HD/hd_spells_embruns_prismatiques.md +++ b/Data/HD/hd_spells_embruns_prismatiques.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Embruns prismatiques +AltName: '[Prismatic Spray](srd_spells_prismatic_spray.md)' Type: Évocation +Level: 7 CastingTime: 1 action Range: personnelle (cône de 18 mètres) Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p350)(SRD) Id: spells_hd.md#embruns-prismatiques ParentLink: spells_hd.md#sorts -Name: Embruns prismatiques ParentName: Sorts NameLevel: 1 -AltName: '[Prismatic Spray](srd_spells_prismatic_spray.md)' -Source: (MDR p350)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_emprisonnement.md b/Data/HD/hd_spells_emprisonnement.md index 2c9d4242..b960f6ec 100644 --- a/Data/HD/hd_spells_emprisonnement.md +++ b/Data/HD/hd_spells_emprisonnement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Emprisonnement +AltName: '[Imprisonment](srd_spells_imprisonment.md)' Type: Abjuration +Level: 9 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (un portrait sur un vélin ou une statuette sculptée à l'effigie de la cible et une composante spéciale qui varie en fonction de la version du sort choisie et vaut au moins 500 po par dé de vie de la cible) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p351)(SRD) Id: spells_hd.md#emprisonnement ParentLink: spells_hd.md#sorts -Name: Emprisonnement ParentName: Sorts NameLevel: 1 -AltName: '[Imprisonment](srd_spells_imprisonment.md)' -Source: (MDR p351)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_enchevetrement.md b/Data/HD/hd_spells_enchevetrement.md index 4eef6ad5..eb644ff3 100644 --- a/Data/HD/hd_spells_enchevetrement.md +++ b/Data/HD/hd_spells_enchevetrement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Enchevêtrement +AltName: '[Entangle](srd_spells_entangle.md)' Type: Invocation +Level: 1 CastingTime: 1 action Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md)' +Source: (MDR p352)(SRD) Id: spells_hd.md#enchevêtrement ParentLink: spells_hd.md#sorts -Name: Enchevêtrement ParentName: Sorts NameLevel: 1 -AltName: '[Entangle](srd_spells_entangle.md)' -Source: (MDR p352)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_entrave_planaire.md b/Data/HD/hd_spells_entrave_planaire.md index 3b5a4d92..4ac2b438 100644 --- a/Data/HD/hd_spells_entrave_planaire.md +++ b/Data/HD/hd_spells_entrave_planaire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Entrave planaire +AltName: '[Planar Binding](srd_spells_planar_binding.md)' Type: Abjuration +Level: 5 CastingTime: 1 heure Range: 18 mètres Components: V, S, M (un bijou d'une valeur minimale de 1 000 po, que le sort consume) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p352)(SRD) Id: spells_hd.md#entrave-planaire ParentLink: spells_hd.md#sorts -Name: Entrave planaire ParentName: Sorts NameLevel: 1 -AltName: '[Planar Binding](srd_spells_planar_binding.md)' -Source: (MDR p352)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_envoi_de_message.md b/Data/HD/hd_spells_envoi_de_message.md index a5a3c7ca..232353c2 100644 --- a/Data/HD/hd_spells_envoi_de_message.md +++ b/Data/HD/hd_spells_envoi_de_message.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Envoi de message +AltName: '[Sending](srd_spells_sending.md)' Type: Évocation +Level: 3 CastingTime: 1 action Range: illimitée Components: V, S, M (un petit bout de fil de cuivre) Duration: 1 round Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p352)(SRD) Id: spells_hd.md#envoi-de-message ParentLink: spells_hd.md#sorts -Name: Envoi de message ParentName: Sorts NameLevel: 1 -AltName: '[Sending](srd_spells_sending.md)' -Source: (MDR p352)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_envoutement.md b/Data/HD/hd_spells_envoutement.md index f436b46b..53224af7 100644 --- a/Data/HD/hd_spells_envoutement.md +++ b/Data/HD/hd_spells_envoutement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Envoûtement +AltName: '[Enthrall](srd_spells_enthrall.md)' Type: Enchantement +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p352)(SRD) Id: spells_hd.md#envoûtement ParentLink: spells_hd.md#sorts -Name: Envoûtement ParentName: Sorts NameLevel: 1 -AltName: '[Enthrall](srd_spells_enthrall.md)' -Source: (MDR p352)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_epargner_les_mourants.md b/Data/HD/hd_spells_epargner_les_mourants.md index d8f69bbd..ccd06962 100644 --- a/Data/HD/hd_spells_epargner_les_mourants.md +++ b/Data/HD/hd_spells_epargner_les_mourants.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Épargner les mourants +AltName: '[Spare the Dying](srd_spells_spare_the_dying.md)' Type: Nécromancie +Level: tour de magie CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p352)(SRD) Id: spells_hd.md#Épargner-les-mourants ParentLink: spells_hd.md#sorts -Name: Épargner les mourants ParentName: Sorts NameLevel: 1 -AltName: '[Spare the Dying](srd_spells_spare_the_dying.md)' -Source: (MDR p352)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_epee_du_juste.md b/Data/HD/hd_spells_epee_du_juste.md index 311f5cee..d1dfb60b 100644 --- a/Data/HD/hd_spells_epee_du_juste.md +++ b/Data/HD/hd_spells_epee_du_juste.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Épée du juste Type: Évocation +Level: 5 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p353) Id: spells_hd.md#Épée-du-juste ParentLink: spells_hd.md#sorts -Name: Épée du juste ParentName: Sorts NameLevel: 1 -Source: (MDR p353) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_epee_magique.md b/Data/HD/hd_spells_epee_magique.md index fc352f72..32c8e7ec 100644 --- a/Data/HD/hd_spells_epee_magique.md +++ b/Data/HD/hd_spells_epee_magique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Épée magique +AltName: '[Arcane Sword](srd_spells_arcane_sword.md)' Type: Évocation +Level: 7 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une épée en platine miniature avec le pommeau et la poignée en cuivre et zinc, d'une valeur de 250 po) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p353) Id: spells_hd.md#Épée-magique ParentLink: spells_hd.md#sorts -Name: Épée magique ParentName: Sorts NameLevel: 1 -AltName: '[Arcane Sword](srd_spells_arcane_sword.md)' -Source: (MDR p353) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_esprit_faible.md b/Data/HD/hd_spells_esprit_faible.md index 1d4dd2f5..498e0079 100644 --- a/Data/HD/hd_spells_esprit_faible.md +++ b/Data/HD/hd_spells_esprit_faible.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Esprit faible +AltName: '[Feeblemind](srd_spells_feeblemind.md)' Type: Enchantement +Level: 8 CastingTime: 1 action Range: 45 mètres Components: V, S, M (une poignée de sphères en argile, en cristal, en verre ou minérales) Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p353)(SRD) Id: spells_hd.md#esprit-faible ParentLink: spells_hd.md#sorts -Name: Esprit faible ParentName: Sorts NameLevel: 1 -AltName: '[Feeblemind](srd_spells_feeblemind.md)' -Source: (MDR p353)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_esprit_impenetrable.md b/Data/HD/hd_spells_esprit_impenetrable.md index 7b15ad1d..98270b4d 100644 --- a/Data/HD/hd_spells_esprit_impenetrable.md +++ b/Data/HD/hd_spells_esprit_impenetrable.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Esprit impénétrable +AltName: '[Mind Blank](srd_spells_mind_blank.md)' Type: Abjuration +Level: 8 CastingTime: 1 action Range: contact Components: V, S Duration: 24 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p353)(SRD) Id: spells_hd.md#esprit-impénétrable ParentLink: spells_hd.md#sorts -Name: Esprit impénétrable ParentName: Sorts NameLevel: 1 -AltName: '[Mind Blank](srd_spells_mind_blank.md)' -Source: (MDR p353)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_esprits_gardiens.md b/Data/HD/hd_spells_esprits_gardiens.md index 35d7b8ca..8b6a8ba9 100644 --- a/Data/HD/hd_spells_esprits_gardiens.md +++ b/Data/HD/hd_spells_esprits_gardiens.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Esprits gardiens +AltName: '[Spirit Guardians](srd_spells_spirit_guardians.md)' Type: Invocation +Level: 3 CastingTime: 1 action Range: personnelle (4,5 mètres de rayon) Components: V, S M (un symbole sacré) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p353)(SRD) Id: spells_hd.md#esprits-gardiens ParentLink: spells_hd.md#sorts -Name: Esprits gardiens ParentName: Sorts NameLevel: 1 -AltName: '[Spirit Guardians](srd_spells_spirit_guardians.md)' -Source: (MDR p353)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_etrangete.md b/Data/HD/hd_spells_etrangete.md index dfbbab51..af750527 100644 --- a/Data/HD/hd_spells_etrangete.md +++ b/Data/HD/hd_spells_etrangete.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Étrangeté +AltName: '[Weird](srd_spells_weird.md)' Type: Illusion +Level: 9 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p354)(SRD) Id: spells_hd.md#Étrangeté ParentLink: spells_hd.md#sorts -Name: Étrangeté ParentName: Sorts NameLevel: 1 -AltName: '[Weird](srd_spells_weird.md)' -Source: (MDR p354)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_eveil.md b/Data/HD/hd_spells_eveil.md index 92f9a6ba..196ead52 100644 --- a/Data/HD/hd_spells_eveil.md +++ b/Data/HD/hd_spells_eveil.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Éveil +AltName: '[Awaken](srd_spells_awaken.md)' Type: Transmutation +Level: 5 CastingTime: 8 heures Range: contact Components: V, S, M (une agate d'une valeur minimale de 1 000 po, que le sort consomme) Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md)' +Source: (MDR p354)(SRD) Id: spells_hd.md#Éveil ParentLink: spells_hd.md#sorts -Name: Éveil ParentName: Sorts NameLevel: 1 -AltName: '[Awaken](srd_spells_awaken.md)' -Source: (MDR p354)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_excavation.md b/Data/HD/hd_spells_excavation.md index 32b1b801..70754c4e 100644 --- a/Data/HD/hd_spells_excavation.md +++ b/Data/HD/hd_spells_excavation.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Excavation Type: Transmutation +Level: 8 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une cuillère) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p354) Id: spells_hd.md#excavation ParentLink: spells_hd.md#sorts -Name: Excavation ParentName: Sorts NameLevel: 1 -Source: (MDR p354) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_expiation_du_juste.md b/Data/HD/hd_spells_expiation_du_juste.md index 10caa933..4c67f6f1 100644 --- a/Data/HD/hd_spells_expiation_du_juste.md +++ b/Data/HD/hd_spells_expiation_du_juste.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Expiation du juste Type: Évocation +Level: 4 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p354) Id: spells_hd.md#expiation-du-juste ParentLink: spells_hd.md#sorts -Name: Expiation du juste ParentName: Sorts NameLevel: 1 -Source: (MDR p354) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_explosion_occulte.md b/Data/HD/hd_spells_explosion_occulte.md index d1943d68..04afaf77 100644 --- a/Data/HD/hd_spells_explosion_occulte.md +++ b/Data/HD/hd_spells_explosion_occulte.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Explosion occulte +AltName: '[Eldritch Blast](srd_spells_eldritch_blast.md)' Type: Évocation +Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Sorcier](hd_warlock.md)' +Source: (MDR p354)(SRD) Id: spells_hd.md#explosion-occulte ParentLink: spells_hd.md#sorts -Name: Explosion occulte ParentName: Sorts NameLevel: 1 -AltName: '[Eldritch Blast](srd_spells_eldritch_blast.md)' -Source: (MDR p354)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_fabrication.md b/Data/HD/hd_spells_fabrication.md index e0b3f480..fa2a8b5e 100644 --- a/Data/HD/hd_spells_fabrication.md +++ b/Data/HD/hd_spells_fabrication.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Fabrication +AltName: '[Fabricate](srd_spells_fabricate.md)' Type: Transmutation +Level: 4 CastingTime: 10 minutes Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p354)(SRD) Id: spells_hd.md#fabrication ParentLink: spells_hd.md#sorts -Name: Fabrication ParentName: Sorts NameLevel: 1 -AltName: '[Fabricate](srd_spells_fabricate.md)' -Source: (MDR p354)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_faconnage_de_la_pierre.md b/Data/HD/hd_spells_faconnage_de_la_pierre.md index 37963eb4..18063944 100644 --- a/Data/HD/hd_spells_faconnage_de_la_pierre.md +++ b/Data/HD/hd_spells_faconnage_de_la_pierre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Façonnage de la pierre +AltName: '[Stone Shape](srd_spells_stone_shape.md)' Type: Transmutation +Level: 4 CastingTime: 1 action Range: contact Components: V, S, M (argile molle, à façonner pour lui donner approximativement la forme de l'objet de pierre désiré) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p355)(SRD) Id: spells_hd.md#façonnage-de-la-pierre ParentLink: spells_hd.md#sorts -Name: Façonnage de la pierre ParentName: Sorts NameLevel: 1 -AltName: '[Stone Shape](srd_spells_stone_shape.md)' -Source: (MDR p355)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_faveur_divine.md b/Data/HD/hd_spells_faveur_divine.md index 72fab1fa..8103bedb 100644 --- a/Data/HD/hd_spells_faveur_divine.md +++ b/Data/HD/hd_spells_faveur_divine.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Faveur divine +AltName: '[Divine Favor](srd_spells_divine_favor.md)' Type: Évocation +Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p355)(SRD) Id: spells_hd.md#faveur-divine ParentLink: spells_hd.md#sorts -Name: Faveur divine ParentName: Sorts NameLevel: 1 -AltName: '[Divine Favor](srd_spells_divine_favor.md)' -Source: (MDR p355)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_festin_des_heros.md b/Data/HD/hd_spells_festin_des_heros.md index e458d80f..44adc610 100644 --- a/Data/HD/hd_spells_festin_des_heros.md +++ b/Data/HD/hd_spells_festin_des_heros.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Festin des héros +AltName: "[Heroes' Feast](srd_spells_heroes_feast.md)" Type: Invocation +Level: 6 CastingTime: 10 minutes Range: 9 mètres Components: V, S, M (un bol incrusté de gemmes d'une valeur minimale de 1 000 po, que le sort consume) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p355)(SRD) Id: spells_hd.md#festin-des-héros ParentLink: spells_hd.md#sorts -Name: Festin des héros ParentName: Sorts NameLevel: 1 -AltName: "[Heroes' Feast](srd_spells_heroes_feast.md)" -Source: (MDR p355)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_flamboiement_funeste.md b/Data/HD/hd_spells_flamboiement_funeste.md index ce683f28..f7b27a3e 100644 --- a/Data/HD/hd_spells_flamboiement_funeste.md +++ b/Data/HD/hd_spells_flamboiement_funeste.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Flamboiement funeste Type: Invocation +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (morceau d'onyx) Duration: instantanée Classes: '[Sorcier](hd_warlock.md)' +Source: (MDR p355) Id: spells_hd.md#flamboiement-funeste ParentLink: spells_hd.md#sorts -Name: Flamboiement funeste ParentName: Sorts NameLevel: 1 -Source: (MDR p355) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_flamme_eternelle.md b/Data/HD/hd_spells_flamme_eternelle.md index b820d69a..8aa73d61 100644 --- a/Data/HD/hd_spells_flamme_eternelle.md +++ b/Data/HD/hd_spells_flamme_eternelle.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Flamme éternelle +AltName: '[Continual Flame](srd_spells_continual_flame.md)' Type: Évocation +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (poussière de rubis d'une valeur de 50 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' +Source: (MDR p355)(SRD) Id: spells_hd.md#flamme-éternelle ParentLink: spells_hd.md#sorts -Name: Flamme éternelle ParentName: Sorts NameLevel: 1 -AltName: '[Continual Flame](srd_spells_continual_flame.md)' -Source: (MDR p355)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_flamme_sacree.md b/Data/HD/hd_spells_flamme_sacree.md index dc051598..458e0e16 100644 --- a/Data/HD/hd_spells_flamme_sacree.md +++ b/Data/HD/hd_spells_flamme_sacree.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Flamme sacrée +AltName: '[Sacred Flame](srd_spells_sacred_flame.md)' Type: Évocation +Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p355)(SRD) Id: spells_hd.md#flamme-sacrée ParentLink: spells_hd.md#sorts -Name: Flamme sacrée ParentName: Sorts NameLevel: 1 -AltName: '[Sacred Flame](srd_spells_sacred_flame.md)' -Source: (MDR p355)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_fleau.md b/Data/HD/hd_spells_fleau.md index 7f5ec32e..6c324b9d 100644 --- a/Data/HD/hd_spells_fleau.md +++ b/Data/HD/hd_spells_fleau.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Fléau +AltName: '[Bane](srd_spells_bane.md)' Type: Enchantement +Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une goutte de sang) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)' +Source: (MDR p356)(SRD) Id: spells_hd.md#fléau ParentLink: spells_hd.md#sorts -Name: Fléau ParentName: Sorts NameLevel: 1 -AltName: '[Bane](srd_spells_bane.md)' -Source: (MDR p356)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_fleau_dinsectes.md b/Data/HD/hd_spells_fleau_dinsectes.md index 66a0b8d6..477a4ef6 100644 --- a/Data/HD/hd_spells_fleau_dinsectes.md +++ b/Data/HD/hd_spells_fleau_dinsectes.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Fléau d'insectes +AltName: '[Insect Plague](srd_spells_insect_plague.md)' Type: Invocation +Level: 5 CastingTime: 1 action Range: 90 mètres Components: V, S, M (un peu de sucre en poudre, quelques graines de céréales et une tache de graisse) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' +Source: (MDR p356) Id: spells_hd.md#fléau-dinsectes ParentLink: spells_hd.md#sorts -Name: Fléau d'insectes ParentName: Sorts NameLevel: 1 -AltName: '[Insect Plague](srd_spells_insect_plague.md)' -Source: (MDR p356) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_fleche_acide.md b/Data/HD/hd_spells_fleche_acide.md index 6ec9641d..c7119b6f 100644 --- a/Data/HD/hd_spells_fleche_acide.md +++ b/Data/HD/hd_spells_fleche_acide.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Flèche acide +AltName: '[Acid Arrow](srd_spells_acid_arrow.md)' Type: Évocation +Level: 2 CastingTime: 1 action Range: 27 mètres Components: V, S, M (poudre de feuille de rhubarbe et estomac de vipère) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p356) Id: spells_hd.md#flèche-acide ParentLink: spells_hd.md#sorts -Name: Flèche acide ParentName: Sorts NameLevel: 1 -AltName: '[Acid Arrow](srd_spells_acid_arrow.md)' -Source: (MDR p356) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_fletrissement.md b/Data/HD/hd_spells_fletrissement.md index f25e1ba0..ad6909cf 100644 --- a/Data/HD/hd_spells_fletrissement.md +++ b/Data/HD/hd_spells_fletrissement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Flétrissement +AltName: '[Blight](srd_spells_blight.md)' Type: Nécromancie +Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: instantanée Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p356)(SRD) Id: spells_hd.md#flétrissement ParentLink: spells_hd.md#sorts -Name: Flétrissement ParentName: Sorts NameLevel: 1 -AltName: '[Blight](srd_spells_blight.md)' -Source: (MDR p356)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_flou.md b/Data/HD/hd_spells_flou.md index 9f92fb29..3508050a 100644 --- a/Data/HD/hd_spells_flou.md +++ b/Data/HD/hd_spells_flou.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Flou +AltName: '[Blur](srd_spells_blur.md)' Type: Illusion +Level: 2 CastingTime: 1 action Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p356)(SRD) Id: spells_hd.md#flou ParentLink: spells_hd.md#sorts -Name: Flou ParentName: Sorts NameLevel: 1 -AltName: '[Blur](srd_spells_blur.md)' -Source: (MDR p356)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_forme_etheree.md b/Data/HD/hd_spells_forme_etheree.md index fe4d9308..570b0d1d 100644 --- a/Data/HD/hd_spells_forme_etheree.md +++ b/Data/HD/hd_spells_forme_etheree.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Forme éthérée +AltName: '[Etherealness](srd_spells_etherealness.md)' Type: Transmutation +Level: 7 CastingTime: 1 action Range: personnelle Components: V, S Duration: jusqu'à 8 heures Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p356)(SRD) Id: spells_hd.md#forme-éthérée ParentLink: spells_hd.md#sorts -Name: Forme éthérée ParentName: Sorts NameLevel: 1 -AltName: '[Etherealness](srd_spells_etherealness.md)' -Source: (MDR p356)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_forme_gazeuse.md b/Data/HD/hd_spells_forme_gazeuse.md index b53351d6..f8f17662 100644 --- a/Data/HD/hd_spells_forme_gazeuse.md +++ b/Data/HD/hd_spells_forme_gazeuse.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Forme gazeuse +AltName: '[Gaseous Form](srd_spells_gaseous_form.md)' Type: Transmutation +Level: 3 CastingTime: 1 action Range: contact Components: V, S, M (un morceau de gaze et une volute de fumée) Duration: concentration, jusqu'à 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p357)(SRD) Id: spells_hd.md#forme-gazeuse ParentLink: spells_hd.md#sorts -Name: Forme gazeuse ParentName: Sorts NameLevel: 1 -AltName: '[Gaseous Form](srd_spells_gaseous_form.md)' -Source: (MDR p357)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_formes_animales.md b/Data/HD/hd_spells_formes_animales.md index 04611531..b222f607 100644 --- a/Data/HD/hd_spells_formes_animales.md +++ b/Data/HD/hd_spells_formes_animales.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Formes animales +AltName: '[Animal Shapes](srd_spells_animal_shapes.md)' Type: Transmutation +Level: 8 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: concentration, jusqu'à 24 heures Classes: '[Druide](hd_druid.md)' +Source: (MDR p357)(SRD) Id: spells_hd.md#formes-animales ParentLink: spells_hd.md#sorts -Name: Formes animales ParentName: Sorts NameLevel: 1 -AltName: '[Animal Shapes](srd_spells_animal_shapes.md)' -Source: (MDR p357)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_fou_rire.md b/Data/HD/hd_spells_fou_rire.md index 0ef9da0c..5a9bf6e0 100644 --- a/Data/HD/hd_spells_fou_rire.md +++ b/Data/HD/hd_spells_fou_rire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Fou rire +AltName: '[Hideous Laughter](srd_spells_hideous_laughter.md)' Type: Enchantement +Level: 1 CastingTime: 1 action Range: 9 mètres Components: V, S, M (de minuscules tartes et une plume à agiter dans les airs) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p357) Id: spells_hd.md#fou-rire ParentLink: spells_hd.md#sorts -Name: Fou rire ParentName: Sorts NameLevel: 1 -AltName: '[Hideous Laughter](srd_spells_hideous_laughter.md)' -Source: (MDR p357) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_frappe_du_juste.md b/Data/HD/hd_spells_frappe_du_juste.md index 07d8218e..5a924fbe 100644 --- a/Data/HD/hd_spells_frappe_du_juste.md +++ b/Data/HD/hd_spells_frappe_du_juste.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Frappe du juste Type: Évocation +Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p358) Id: spells_hd.md#frappe-du-juste ParentLink: spells_hd.md#sorts -Name: Frappe du juste ParentName: Sorts NameLevel: 1 -Source: (MDR p358) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_frappe_lumineuse.md b/Data/HD/hd_spells_frappe_lumineuse.md index 6f95f979..7cee1872 100644 --- a/Data/HD/hd_spells_frappe_lumineuse.md +++ b/Data/HD/hd_spells_frappe_lumineuse.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Frappe lumineuse +AltName: '[Branding Smite](srd_spells_branding_smite.md)' Type: Évocation +Level: 2 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p358)(SRD) Id: spells_hd.md#frappe-lumineuse ParentLink: spells_hd.md#sorts -Name: Frappe lumineuse ParentName: Sorts NameLevel: 1 -AltName: '[Branding Smite](srd_spells_branding_smite.md)' -Source: (MDR p358)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_fusion_dans_la_pierre.md b/Data/HD/hd_spells_fusion_dans_la_pierre.md index db1c7417..7b4a55fb 100644 --- a/Data/HD/hd_spells_fusion_dans_la_pierre.md +++ b/Data/HD/hd_spells_fusion_dans_la_pierre.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Fusion dans la pierre +AltName: '[Meld into Stone](srd_spells_meld_into_stone.md)' Type: Transmutation -Ritual: rituel +Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: 8 heures Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p358)(SRD) +Ritual: rituel Id: spells_hd.md#fusion-dans-la-pierre ParentLink: spells_hd.md#sorts -Name: Fusion dans la pierre ParentName: Sorts NameLevel: 1 -AltName: '[Meld into Stone](srd_spells_meld_into_stone.md)' -Source: (MDR p358)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_gardien_de_la_foi.md b/Data/HD/hd_spells_gardien_de_la_foi.md index 24980aaa..708e5713 100644 --- a/Data/HD/hd_spells_gardien_de_la_foi.md +++ b/Data/HD/hd_spells_gardien_de_la_foi.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Gardien de la foi +AltName: '[Guardian of Faith](srd_spells_guardian_of_faith.md)' Type: Invocation +Level: 4 CastingTime: 1 action Range: 9 mètres Components: V Duration: 8 heures Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p358)(SRD) Id: spells_hd.md#gardien-de-la-foi ParentLink: spells_hd.md#sorts -Name: Gardien de la foi ParentName: Sorts NameLevel: 1 -AltName: '[Guardian of Faith](srd_spells_guardian_of_faith.md)' -Source: (MDR p358)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_geyser_denergie.md b/Data/HD/hd_spells_geyser_denergie.md index e983a1fc..443eb0c3 100644 --- a/Data/HD/hd_spells_geyser_denergie.md +++ b/Data/HD/hd_spells_geyser_denergie.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Geyser d'énergie Type: Évocation +Level: 1 CastingTime: 1 action Range: 27 mètres Components: V, S, M (une petite poire remplie d'air) Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md)' +Source: (MDR p359) Id: spells_hd.md#geyser-dénergie ParentLink: spells_hd.md#sorts -Name: Geyser d'énergie ParentName: Sorts NameLevel: 1 -Source: (MDR p359) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_globe_dinvulnerabilite.md b/Data/HD/hd_spells_globe_dinvulnerabilite.md index a58a0280..583f1adc 100644 --- a/Data/HD/hd_spells_globe_dinvulnerabilite.md +++ b/Data/HD/hd_spells_globe_dinvulnerabilite.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Globe d'invulnérabilité +AltName: '[Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)' Type: Abjuration +Level: 6 CastingTime: 1 action Range: personnelle (3 mètres de rayon) Components: V, S, M (une perle de verre ou de cristal qui explose à la fin du sort) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p359) Id: spells_hd.md#globe-dinvulnérabilité ParentLink: spells_hd.md#sorts -Name: Globe d'invulnérabilité ParentName: Sorts NameLevel: 1 -AltName: '[Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)' -Source: (MDR p359) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_glyphe_de_protection.md b/Data/HD/hd_spells_glyphe_de_protection.md index e4eea21b..3708eaec 100644 --- a/Data/HD/hd_spells_glyphe_de_protection.md +++ b/Data/HD/hd_spells_glyphe_de_protection.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Glyphe de protection +AltName: '[Glyph of Warding](srd_spells_glyph_of_warding.md)' Type: Abjuration +Level: 3 CastingTime: 1 heure Range: contact Components: V, S, M (encens et poudre de diamant d'une valeur minimale de 200 po, que le sort consume) Duration: jusqu'à dissipation ou déclenchement Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' +Source: (MDR p359)(SRD) Id: spells_hd.md#glyphe-de-protection ParentLink: spells_hd.md#sorts -Name: Glyphe de protection ParentName: Sorts NameLevel: 1 -AltName: '[Glyph of Warding](srd_spells_glyph_of_warding.md)' -Source: (MDR p359)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_gourdin_magique.md b/Data/HD/hd_spells_gourdin_magique.md index deccc8a9..5b17cd19 100644 --- a/Data/HD/hd_spells_gourdin_magique.md +++ b/Data/HD/hd_spells_gourdin_magique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Gourdin magique +AltName: '[Shillelagh](srd_spells_shillelagh.md)' Type: Transmutation +Level: tour de magie CastingTime: 1 action bonus Range: contact Components: V, S, M (du gui, une feuille de trèfle et un bâton ou un gourdin) Duration: 1 minute Classes: '[Druide](hd_druid.md)' +Source: (MDR p360)(SRD) Id: spells_hd.md#gourdin-magique ParentLink: spells_hd.md#sorts -Name: Gourdin magique ParentName: Sorts NameLevel: 1 -AltName: '[Shillelagh](srd_spells_shillelagh.md)' -Source: (MDR p360)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_graisse.md b/Data/HD/hd_spells_graisse.md index 2f71362b..a300a911 100644 --- a/Data/HD/hd_spells_graisse.md +++ b/Data/HD/hd_spells_graisse.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Graisse +AltName: '[Grease](srd_spells_grease.md)' Type: Invocation +Level: 1 CastingTime: 1 action Range: 18 mètres Components: V, S, M (de la couenne de porc ou du beurre) Duration: 1 minute Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p360)(SRD) Id: spells_hd.md#graisse ParentLink: spells_hd.md#sorts -Name: Graisse ParentName: Sorts NameLevel: 1 -AltName: '[Grease](srd_spells_grease.md)' -Source: (MDR p360)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_grande_foulee.md b/Data/HD/hd_spells_grande_foulee.md index 73cda72b..55bad2d4 100644 --- a/Data/HD/hd_spells_grande_foulee.md +++ b/Data/HD/hd_spells_grande_foulee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Grande foulée +AltName: '[Longstrider](srd_spells_longstrider.md)' Type: Transmutation +Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (une pincée de poussière) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p360)(SRD) Id: spells_hd.md#grande-foulée ParentLink: spells_hd.md#sorts -Name: Grande foulée ParentName: Sorts NameLevel: 1 -AltName: '[Longstrider](srd_spells_longstrider.md)' -Source: (MDR p360)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_guerison.md b/Data/HD/hd_spells_guerison.md index 38264b6a..9f849b7b 100644 --- a/Data/HD/hd_spells_guerison.md +++ b/Data/HD/hd_spells_guerison.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Guérison +AltName: '[Heal](srd_spells_heal.md)' Type: Évocation +Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p360)(SRD) Id: spells_hd.md#guérison ParentLink: spells_hd.md#sorts -Name: Guérison ParentName: Sorts NameLevel: 1 -AltName: '[Heal](srd_spells_heal.md)' -Source: (MDR p360)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_guerison_de_groupe.md b/Data/HD/hd_spells_guerison_de_groupe.md index 60d8d4d3..1835cc54 100644 --- a/Data/HD/hd_spells_guerison_de_groupe.md +++ b/Data/HD/hd_spells_guerison_de_groupe.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Guérison de groupe +AltName: '[Mass Heal](srd_spells_mass_heal.md)' Type: Évocation +Level: 9 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#guérison-de-groupe ParentLink: spells_hd.md#sorts -Name: Guérison de groupe ParentName: Sorts NameLevel: 1 -AltName: '[Mass Heal](srd_spells_mass_heal.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_harmonique_miraculeuse.md b/Data/HD/hd_spells_harmonique_miraculeuse.md index de43aedd..c3755aff 100644 --- a/Data/HD/hd_spells_harmonique_miraculeuse.md +++ b/Data/HD/hd_spells_harmonique_miraculeuse.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Harmonique miraculeuse Type: Évocation +Level: 9 CastingTime: 1 action Range: 12 mètres Components: V, S, M (un verre en cristal d'une valeur de 500 po) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md)' +Source: (MDR p) Id: spells_hd.md#harmonique-miraculeuse ParentLink: spells_hd.md#sorts -Name: Harmonique miraculeuse ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_hate.md b/Data/HD/hd_spells_hate.md index 89ba113f..618868b0 100644 --- a/Data/HD/hd_spells_hate.md +++ b/Data/HD/hd_spells_hate.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Hâte +AltName: '[Haste](srd_spells_haste.md)' Type: Transmutation +Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un copeau de racine de réglisse) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#hâte ParentLink: spells_hd.md#sorts -Name: Hâte ParentName: Sorts NameLevel: 1 -AltName: '[Haste](srd_spells_haste.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_heroisme.md b/Data/HD/hd_spells_heroisme.md index b9fcd8c1..4c379cbc 100644 --- a/Data/HD/hd_spells_heroisme.md +++ b/Data/HD/hd_spells_heroisme.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Héroïsme +AltName: '[Heroism](srd_spells_heroism.md)' Type: Enchantement +Level: 1 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Paladin](hd_paladin.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#héroïsme ParentLink: spells_hd.md#sorts -Name: Héroïsme ParentName: Sorts NameLevel: 1 -AltName: '[Heroism](srd_spells_heroism.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_identification.md b/Data/HD/hd_spells_identification.md index c100387c..4fed868e 100644 --- a/Data/HD/hd_spells_identification.md +++ b/Data/HD/hd_spells_identification.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Identification +AltName: '[Identify](srd_spells_identify.md)' Type: Divination -Ritual: rituel +Level: 1 CastingTime: 1 minute Range: contact Components: V, S, M (une perle d'une valeur minimale de 100 po et une plume de hibou) Duration: instantanée Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#identification ParentLink: spells_hd.md#sorts -Name: Identification ParentName: Sorts NameLevel: 1 -AltName: '[Identify](srd_spells_identify.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_illusion_mineure.md b/Data/HD/hd_spells_illusion_mineure.md index c323f5cf..a0a628bf 100644 --- a/Data/HD/hd_spells_illusion_mineure.md +++ b/Data/HD/hd_spells_illusion_mineure.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Illusion mineure +AltName: '[Minor Illusion](srd_spells_minor_illusion.md)' Type: Illusion +Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: S, M (un morceau de toison) Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#illusion-mineure ParentLink: spells_hd.md#sorts -Name: Illusion mineure ParentName: Sorts NameLevel: 1 -AltName: '[Minor Illusion](srd_spells_minor_illusion.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_illusion_programmee.md b/Data/HD/hd_spells_illusion_programmee.md index 7e1e9439..4c8718d2 100644 --- a/Data/HD/hd_spells_illusion_programmee.md +++ b/Data/HD/hd_spells_illusion_programmee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Illusion programmée +AltName: '[Programmed Illusion](srd_spells_programmed_illusion.md)' Type: Illusion +Level: 6 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un morceau de toison et de la poussière de jade d'une valeur de 25 po) Duration: jusqu'à dissipation Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#illusion-programmée ParentLink: spells_hd.md#sorts -Name: Illusion programmée ParentName: Sorts NameLevel: 1 -AltName: '[Programmed Illusion](srd_spells_programmed_illusion.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_image_majeure.md b/Data/HD/hd_spells_image_majeure.md index df1b0c82..55f297f5 100644 --- a/Data/HD/hd_spells_image_majeure.md +++ b/Data/HD/hd_spells_image_majeure.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Image majeure +AltName: '[Major Image](srd_spells_major_image.md)' Type: Illusion +Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un morceau de toison) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#image-majeure ParentLink: spells_hd.md#sorts -Name: Image majeure ParentName: Sorts NameLevel: 1 -AltName: '[Major Image](srd_spells_major_image.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_image_miroir.md b/Data/HD/hd_spells_image_miroir.md index 34af27de..7933c4de 100644 --- a/Data/HD/hd_spells_image_miroir.md +++ b/Data/HD/hd_spells_image_miroir.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Image miroir +AltName: '[Mirror Image](srd_spells_mirror_image.md)' Type: Illusion +Level: 2 CastingTime: 1 action Range: personnelle Components: V, S Duration: 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#image-miroir ParentLink: spells_hd.md#sorts -Name: Image miroir ParentName: Sorts NameLevel: 1 -AltName: '[Mirror Image](srd_spells_mirror_image.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_image_projetee.md b/Data/HD/hd_spells_image_projetee.md index 709d6a67..d2e0f4ee 100644 --- a/Data/HD/hd_spells_image_projetee.md +++ b/Data/HD/hd_spells_image_projetee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Image projetée +AltName: '[Project Image](srd_spells_project_image.md)' Type: Illusion +Level: 7 CastingTime: 1 action Range: 750 kilomètres Components: V, S, M (une petite réplique de votre personne construite avec des matériaux valant au moins 5 po) Duration: concentration, jusqu'à 1 jour Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#image-projetée ParentLink: spells_hd.md#sorts -Name: Image projetée ParentName: Sorts NameLevel: 1 -AltName: '[Project Image](srd_spells_project_image.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_image_silencieuse.md b/Data/HD/hd_spells_image_silencieuse.md index 15447810..4a1d5026 100644 --- a/Data/HD/hd_spells_image_silencieuse.md +++ b/Data/HD/hd_spells_image_silencieuse.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Image silencieuse +AltName: '[Silent Image](srd_spells_silent_image.md)' Type: Illusion +Level: 1 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un morceau de toison) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#image-silencieuse ParentLink: spells_hd.md#sorts -Name: Image silencieuse ParentName: Sorts NameLevel: 1 -AltName: '[Silent Image](srd_spells_silent_image.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_immobiliser_un_humanoide.md b/Data/HD/hd_spells_immobiliser_un_humanoide.md index b82c2e59..4cceb1a6 100644 --- a/Data/HD/hd_spells_immobiliser_un_humanoide.md +++ b/Data/HD/hd_spells_immobiliser_un_humanoide.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Immobiliser un humanoïde +AltName: '[Hold Person](srd_spells_hold_person.md)' Type: Enchantement +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un petit morceau de fer bien droit) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#immobiliser-un-humanoïde ParentLink: spells_hd.md#sorts -Name: Immobiliser un humanoïde ParentName: Sorts NameLevel: 1 -AltName: '[Hold Person](srd_spells_hold_person.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_immobiliser_un_monstre.md b/Data/HD/hd_spells_immobiliser_un_monstre.md index 22854fd0..edbf207e 100644 --- a/Data/HD/hd_spells_immobiliser_un_monstre.md +++ b/Data/HD/hd_spells_immobiliser_un_monstre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Immobiliser un monstre +AltName: '[Hold Monster](srd_spells_hold_monster.md)' Type: Enchantement +Level: 5 CastingTime: 1 action Range: 27 mètres Components: V, S, M (un petit morceau de fer bien droit) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#immobiliser-un-monstre ParentLink: spells_hd.md#sorts -Name: Immobiliser un monstre ParentName: Sorts NameLevel: 1 -AltName: '[Hold Monster](srd_spells_hold_monster.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_injonction.md b/Data/HD/hd_spells_injonction.md index e5114791..b38f1270 100644 --- a/Data/HD/hd_spells_injonction.md +++ b/Data/HD/hd_spells_injonction.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Injonction +AltName: '[Command](srd_spells_command.md)' Type: Enchantement +Level: 1 CastingTime: 1 action Range: 18 mètres Components: V Duration: 1 round Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#injonction ParentLink: spells_hd.md#sorts -Name: Injonction ParentName: Sorts NameLevel: 1 -AltName: '[Command](srd_spells_command.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_insecte_geant.md b/Data/HD/hd_spells_insecte_geant.md index 271fe6d6..3ce8ab6a 100644 --- a/Data/HD/hd_spells_insecte_geant.md +++ b/Data/HD/hd_spells_insecte_geant.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Insecte géant +AltName: '[Giant Insect](srd_spells_giant_insect.md)' Type: Transmutation +Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#insecte-géant ParentLink: spells_hd.md#sorts -Name: Insecte géant ParentName: Sorts NameLevel: 1 -AltName: '[Giant Insect](srd_spells_giant_insect.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_instrument_fantomatique.md b/Data/HD/hd_spells_instrument_fantomatique.md index 05187a4d..6c346d1f 100644 --- a/Data/HD/hd_spells_instrument_fantomatique.md +++ b/Data/HD/hd_spells_instrument_fantomatique.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Instrument fantomatique Type: Illusion +Level: 1 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un archet et un morceau d'os) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md)' +Source: (MDR p) Id: spells_hd.md#instrument-fantomatique ParentLink: spells_hd.md#sorts -Name: Instrument fantomatique ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_interdiction.md b/Data/HD/hd_spells_interdiction.md index 4c48b61a..3af522d8 100644 --- a/Data/HD/hd_spells_interdiction.md +++ b/Data/HD/hd_spells_interdiction.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Interdiction +AltName: '[Forbiddance](srd_spells_forbiddance.md)' Type: Abjuration -Ritual: rituel +Level: 6 CastingTime: 10 minutes Range: contact Components: V, S, M (un peu d'eau bénite, un encens rare et un rubis en poudre d'une valeur minimale de 1 000 po) Duration: 1 jour Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#interdiction ParentLink: spells_hd.md#sorts -Name: Interdiction ParentName: Sorts NameLevel: 1 -AltName: '[Forbiddance](srd_spells_forbiddance.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_inversion_de_la_gravite.md b/Data/HD/hd_spells_inversion_de_la_gravite.md index c4c1b2c4..4900ed7f 100644 --- a/Data/HD/hd_spells_inversion_de_la_gravite.md +++ b/Data/HD/hd_spells_inversion_de_la_gravite.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Inversion de la gravité +AltName: '[Reverse Gravity](srd_spells_reverse_gravity.md)' Type: Transmutation +Level: 7 CastingTime: 1 action Range: 30 mètres Components: V, S, M (de la magnétite et de la limaille de fer) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#inversion-de-la-gravité ParentLink: spells_hd.md#sorts -Name: Inversion de la gravité ParentName: Sorts NameLevel: 1 -AltName: '[Reverse Gravity](srd_spells_reverse_gravity.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_invisibilite.md b/Data/HD/hd_spells_invisibilite.md index dfcc3479..48e3af9c 100644 --- a/Data/HD/hd_spells_invisibilite.md +++ b/Data/HD/hd_spells_invisibilite.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Invisibilité +AltName: '[Invisibility](srd_spells_invisibility.md)' Type: Illusion +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (un cil enrobé de gomme arabique) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#invisibilité ParentLink: spells_hd.md#sorts -Name: Invisibilité ParentName: Sorts NameLevel: 1 -AltName: '[Invisibility](srd_spells_invisibility.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_invisibilite_superieure.md b/Data/HD/hd_spells_invisibilite_superieure.md index bf1f82d4..f21dcf38 100644 --- a/Data/HD/hd_spells_invisibilite_superieure.md +++ b/Data/HD/hd_spells_invisibilite_superieure.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Invisibilité supérieure +AltName: '[Greater Invisibility](srd_spells_greater_invisibility.md)' Type: Illusion +Level: 4 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#invisibilité-supérieure ParentLink: spells_hd.md#sorts -Name: Invisibilité supérieure ParentName: Sorts NameLevel: 1 -AltName: '[Greater Invisibility](srd_spells_greater_invisibility.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_invoquer_des_animaux.md b/Data/HD/hd_spells_invoquer_des_animaux.md index 262e8739..5a8bfd88 100644 --- a/Data/HD/hd_spells_invoquer_des_animaux.md +++ b/Data/HD/hd_spells_invoquer_des_animaux.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Invoquer des animaux +AltName: '[Conjure Animals](srd_spells_conjure_animals.md)' Type: Invocation +Level: 3 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-des-animaux ParentLink: spells_hd.md#sorts -Name: Invoquer des animaux ParentName: Sorts NameLevel: 1 -AltName: '[Conjure Animals](srd_spells_conjure_animals.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_invoquer_des_elementaires_mineurs.md b/Data/HD/hd_spells_invoquer_des_elementaires_mineurs.md index b3cc6a48..60780c42 100644 --- a/Data/HD/hd_spells_invoquer_des_elementaires_mineurs.md +++ b/Data/HD/hd_spells_invoquer_des_elementaires_mineurs.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Invoquer des élémentaires mineurs +AltName: '[Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)' Type: Invocation +Level: 4 CastingTime: 1 minute Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-des-élémentaires-mineurs ParentLink: spells_hd.md#sorts -Name: Invoquer des élémentaires mineurs ParentName: Sorts NameLevel: 1 -AltName: '[Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_invoquer_des_etres_des_bois.md b/Data/HD/hd_spells_invoquer_des_etres_des_bois.md index b299bb19..6cff2f90 100644 --- a/Data/HD/hd_spells_invoquer_des_etres_des_bois.md +++ b/Data/HD/hd_spells_invoquer_des_etres_des_bois.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Invoquer des êtres des bois +AltName: '[Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)' Type: Invocation +Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une baie de houx par créature invoquée) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-des-êtres-des-bois ParentLink: spells_hd.md#sorts -Name: Invoquer des êtres des bois ParentName: Sorts NameLevel: 1 -AltName: '[Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_invoquer_un_celeste.md b/Data/HD/hd_spells_invoquer_un_celeste.md index ae10abd4..1fc492b8 100644 --- a/Data/HD/hd_spells_invoquer_un_celeste.md +++ b/Data/HD/hd_spells_invoquer_un_celeste.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Invoquer un céleste +AltName: '[Conjure Celestial](srd_spells_conjure_celestial.md)' Type: Invocation +Level: 7 CastingTime: 1 minute Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-un-céleste ParentLink: spells_hd.md#sorts -Name: Invoquer un céleste ParentName: Sorts NameLevel: 1 -AltName: '[Conjure Celestial](srd_spells_conjure_celestial.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_invoquer_un_elementaire.md b/Data/HD/hd_spells_invoquer_un_elementaire.md index 55beea9e..a7031d0d 100644 --- a/Data/HD/hd_spells_invoquer_un_elementaire.md +++ b/Data/HD/hd_spells_invoquer_un_elementaire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Invoquer un élémentaire +AltName: '[Conjure Elemental](srd_spells_conjure_elemental.md)' Type: Invocation +Level: 5 CastingTime: 1 minute Range: 27 mètres Components: V, S, M (encens à brûler pour l'air, argile molle pour la terre, soufre et phosphore pour le feu, ou sable et eau pour l'eau) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-un-élémentaire ParentLink: spells_hd.md#sorts -Name: Invoquer un élémentaire ParentName: Sorts NameLevel: 1 -AltName: '[Conjure Elemental](srd_spells_conjure_elemental.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_invoquer_une_fee.md b/Data/HD/hd_spells_invoquer_une_fee.md index c03db9d0..f78615f2 100644 --- a/Data/HD/hd_spells_invoquer_une_fee.md +++ b/Data/HD/hd_spells_invoquer_une_fee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Invoquer une fée +AltName: '[Conjure Fey](srd_spells_conjure_fey.md)' Type: Invocation +Level: 6 CastingTime: 1 minute Range: 27 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#invoquer-une-fée ParentLink: spells_hd.md#sorts -Name: Invoquer une fée ParentName: Sorts NameLevel: 1 -AltName: '[Conjure Fey](srd_spells_conjure_fey.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_jeter_une_malediction.md b/Data/HD/hd_spells_jeter_une_malediction.md index 06024bc8..a745bbef 100644 --- a/Data/HD/hd_spells_jeter_une_malediction.md +++ b/Data/HD/hd_spells_jeter_une_malediction.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Jeter une malédiction +AltName: '[Bestow curse](srd_spells_bestow_curse.md)' Type: Nécromancie +Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#jeter-une-malédiction ParentLink: spells_hd.md#sorts -Name: Jeter une malédiction ParentName: Sorts NameLevel: 1 -AltName: '[Bestow curse](srd_spells_bestow_curse.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_jugement_dernier.md b/Data/HD/hd_spells_jugement_dernier.md index a028dee8..230184f5 100644 --- a/Data/HD/hd_spells_jugement_dernier.md +++ b/Data/HD/hd_spells_jugement_dernier.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Jugement dernier Type: Nécromancie +Level: 5 CastingTime: 1 action Range: 9 m Components: V, S Duration: instantanée Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p) Id: spells_hd.md#jugement-dernier ParentLink: spells_hd.md#sorts -Name: Jugement dernier ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_labyrinthe.md b/Data/HD/hd_spells_labyrinthe.md index c1eeb185..1941296e 100644 --- a/Data/HD/hd_spells_labyrinthe.md +++ b/Data/HD/hd_spells_labyrinthe.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Labyrinthe +AltName: '[Maze](srd_spells_maze.md)' Type: Invocation +Level: 8 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#labyrinthe ParentLink: spells_hd.md#sorts -Name: Labyrinthe ParentName: Sorts NameLevel: 1 -AltName: '[Maze](srd_spells_maze.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lame_de_feu.md b/Data/HD/hd_spells_lame_de_feu.md index 54c73268..af74d3ed 100644 --- a/Data/HD/hd_spells_lame_de_feu.md +++ b/Data/HD/hd_spells_lame_de_feu.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Lame de feu +AltName: '[Flame Blade](srd_spells_flame_blade.md)' Type: Évocation +Level: 2 CastingTime: 1 action bonus Range: personnelle Components: V, S, M (feuille de sumac) Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lame-de-feu ParentLink: spells_hd.md#sorts -Name: Lame de feu ParentName: Sorts NameLevel: 1 -AltName: '[Flame Blade](srd_spells_flame_blade.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lance_du_juste.md b/Data/HD/hd_spells_lance_du_juste.md index fd54e598..1facf433 100644 --- a/Data/HD/hd_spells_lance_du_juste.md +++ b/Data/HD/hd_spells_lance_du_juste.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Lance du juste Type: Transmutation +Level: 3 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p) Id: spells_hd.md#lance-du-juste ParentLink: spells_hd.md#sorts -Name: Lance du juste ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_langues.md b/Data/HD/hd_spells_langues.md index 639ed4e4..8339bc87 100644 --- a/Data/HD/hd_spells_langues.md +++ b/Data/HD/hd_spells_langues.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Langues +AltName: '[Tongues](srd_spells_tongues.md)' Type: Divination +Level: 3 CastingTime: 1 action Range: contact Components: V, M (un modèle réduit de ziggourat en argile) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#langues ParentLink: spells_hd.md#sorts -Name: Langues ParentName: Sorts NameLevel: 1 -AltName: '[Tongues](srd_spells_tongues.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_legende.md b/Data/HD/hd_spells_legende.md index 4a81407d..142b9d1c 100644 --- a/Data/HD/hd_spells_legende.md +++ b/Data/HD/hd_spells_legende.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Légende +AltName: '[Legend Lore](srd_spells_legend_lore.md)' Type: Divination +Level: 5 CastingTime: 10 minutes Range: personnelle Components: V, S, M (de l'encens d'une valeur minimale de 250 po que le sort consume et quatre bandelettes d'ivoire valant au moins 50 po chaque) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#légende ParentLink: spells_hd.md#sorts -Name: Légende ParentName: Sorts NameLevel: 1 -AltName: '[Legend Lore](srd_spells_legend_lore.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_leger_comme_une_plume.md b/Data/HD/hd_spells_leger_comme_une_plume.md index 13cd65be..4983002c 100644 --- a/Data/HD/hd_spells_leger_comme_une_plume.md +++ b/Data/HD/hd_spells_leger_comme_une_plume.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Léger comme une plume +AltName: '[Feather Fall](srd_spells_feather_fall.md)' Type: Transmutation +Level: 1 CastingTime: 1 réaction, que vous effectuez quand vous-même ou une créature située dans un rayon de 18 mètres tombe soudain Range: 18 mètres Components: V, M (une petite plume ou un peu de duvet) Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#léger-comme-une-plume ParentLink: spells_hd.md#sorts -Name: Léger comme une plume ParentName: Sorts NameLevel: 1 -AltName: '[Feather Fall](srd_spells_feather_fall.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lenteur.md b/Data/HD/hd_spells_lenteur.md index b066f730..4a901501 100644 --- a/Data/HD/hd_spells_lenteur.md +++ b/Data/HD/hd_spells_lenteur.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Lenteur +AltName: '[Slow](srd_spells_slow.md)' Type: Transmutation +Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S, M (une goutte de mélasse) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lenteur ParentLink: spells_hd.md#sorts -Name: Lenteur ParentName: Sorts NameLevel: 1 -AltName: '[Slow](srd_spells_slow.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lever_une_malediction.md b/Data/HD/hd_spells_lever_une_malediction.md index adc2d436..bf663b48 100644 --- a/Data/HD/hd_spells_lever_une_malediction.md +++ b/Data/HD/hd_spells_lever_une_malediction.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Lever une malédiction +AltName: '[Remove Curse](srd_spells_remove_curse.md)' Type: Abjuration +Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lever-une-malédiction ParentLink: spells_hd.md#sorts -Name: Lever une malédiction ParentName: Sorts NameLevel: 1 -AltName: '[Remove Curse](srd_spells_remove_curse.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_levitation.md b/Data/HD/hd_spells_levitation.md index 874ce792..d355e6b8 100644 --- a/Data/HD/hd_spells_levitation.md +++ b/Data/HD/hd_spells_levitation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Lévitation +AltName: '[Levitate](srd_spells_levitate.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (soit une petite boucle de cuir, soit un bout de fil de métal doré formant la silhouette d'une cuillère au long manche) Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lévitation ParentLink: spells_hd.md#sorts -Name: Lévitation ParentName: Sorts NameLevel: 1 -AltName: '[Levitate](srd_spells_levitate.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_liane_chasseresse.md b/Data/HD/hd_spells_liane_chasseresse.md index 00753818..905b8d21 100644 --- a/Data/HD/hd_spells_liane_chasseresse.md +++ b/Data/HD/hd_spells_liane_chasseresse.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Liane chasseresse Type: Invocation +Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p) Id: spells_hd.md#liane-chasseresse ParentLink: spells_hd.md#sorts -Name: Liane chasseresse ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_liberte_de_mouvement.md b/Data/HD/hd_spells_liberte_de_mouvement.md index d4f1c9c0..cfa7493b 100644 --- a/Data/HD/hd_spells_liberte_de_mouvement.md +++ b/Data/HD/hd_spells_liberte_de_mouvement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Liberté de mouvement +AltName: '[Freedom of Movement](srd_spells_freedom_of_movement.md)' Type: Abjuration +Level: 4 CastingTime: 1 action Range: contact Components: V, S, M (un lien de cuir enroulé autour d'un bras ou d'un appendice similaire) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#liberté-de-mouvement ParentLink: spells_hd.md#sorts -Name: Liberté de mouvement ParentName: Sorts NameLevel: 1 -AltName: '[Freedom of Movement](srd_spells_freedom_of_movement.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lien_de_protection.md b/Data/HD/hd_spells_lien_de_protection.md index 8f6b74b9..d7e682ff 100644 --- a/Data/HD/hd_spells_lien_de_protection.md +++ b/Data/HD/hd_spells_lien_de_protection.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Lien de protection +AltName: '[Warding Bond](srd_spells_warding_bond.md)' Type: Abjuration +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une paire d'anneaux de platine valant chacun au moins 50 po, que la cible et vous devez porter pendant toute la durée) Duration: 1 heure Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lien-de-protection ParentLink: spells_hd.md#sorts -Name: Lien de protection ParentName: Sorts NameLevel: 1 -AltName: '[Warding Bond](srd_spells_warding_bond.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lien_telepathique.md b/Data/HD/hd_spells_lien_telepathique.md index 5415f5de..34bad7f3 100644 --- a/Data/HD/hd_spells_lien_telepathique.md +++ b/Data/HD/hd_spells_lien_telepathique.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Lien télépathique +AltName: '[Telepathic Bond](srd_spells_telepathic_bond.md)' Type: Divination -Ritual: rituel +Level: 5 CastingTime: 1 action Range: 9 mètres Components: V, S, M (bouts de coquille d'oeuf issus de deux espèces de créatures différentes) Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p) +Ritual: rituel Id: spells_hd.md#lien-télépathique ParentLink: spells_hd.md#sorts -Name: Lien télépathique ParentName: Sorts NameLevel: 1 -AltName: '[Telepathic Bond](srd_spells_telepathic_bond.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_localiser_des_animaux_ou_des_plantes.md b/Data/HD/hd_spells_localiser_des_animaux_ou_des_plantes.md index 24dc4852..ba988017 100644 --- a/Data/HD/hd_spells_localiser_des_animaux_ou_des_plantes.md +++ b/Data/HD/hd_spells_localiser_des_animaux_ou_des_plantes.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Localiser des animaux ou des plantes +AltName: '[Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)' Type: Divination -Ritual: rituel +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (des poils de chien de chasse) Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#localiser-des-animaux-ou-des-plantes ParentLink: spells_hd.md#sorts -Name: Localiser des animaux ou des plantes ParentName: Sorts NameLevel: 1 -AltName: '[Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_localiser_un_objet.md b/Data/HD/hd_spells_localiser_un_objet.md index 383d6621..122d2c9f 100644 --- a/Data/HD/hd_spells_localiser_un_objet.md +++ b/Data/HD/hd_spells_localiser_un_objet.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Localiser un objet +AltName: '[Locate Object](srd_spells_locate_object.md)' Type: Divination +Level: 2 CastingTime: 1 action Range: personnelle Components: V, S, M (une branche fourchue) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#localiser-un-objet ParentLink: spells_hd.md#sorts -Name: Localiser un objet ParentName: Sorts NameLevel: 1 -AltName: '[Locate Object](srd_spells_locate_object.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_localiser_une_creature.md b/Data/HD/hd_spells_localiser_une_creature.md index 8472cc02..024c2d0f 100644 --- a/Data/HD/hd_spells_localiser_une_creature.md +++ b/Data/HD/hd_spells_localiser_une_creature.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Localiser une créature +AltName: '[Locate Creature](srd_spells_locate_creature.md)' Type: Divination +Level: 4 CastingTime: 1 action Range: personnelle Components: V, S, M (des poils de chien de chasse) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#localiser-une-créature ParentLink: spells_hd.md#sorts -Name: Localiser une créature ParentName: Sorts NameLevel: 1 -AltName: '[Locate Creature](srd_spells_locate_creature.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lueur_despoir.md b/Data/HD/hd_spells_lueur_despoir.md index 01c21de1..aeb9d210 100644 --- a/Data/HD/hd_spells_lueur_despoir.md +++ b/Data/HD/hd_spells_lueur_despoir.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Lueur d'espoir +AltName: '[Beacon of Hope](srd_spells_beacon_of_hope.md)' Type: Abjuration +Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p) Id: spells_hd.md#lueur-despoir ParentLink: spells_hd.md#sorts -Name: Lueur d'espoir ParentName: Sorts NameLevel: 1 -AltName: '[Beacon of Hope](srd_spells_beacon_of_hope.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lueurs_feeriques.md b/Data/HD/hd_spells_lueurs_feeriques.md index 96b86199..484debb2 100644 --- a/Data/HD/hd_spells_lueurs_feeriques.md +++ b/Data/HD/hd_spells_lueurs_feeriques.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Lueurs féeriques +AltName: '[Faerie Fire](srd_spells_faerie_fire.md)' Type: Évocation +Level: 1 CastingTime: 1 action Range: 18 mètres Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lueurs-féeriques ParentLink: spells_hd.md#sorts -Name: Lueurs féeriques ParentName: Sorts NameLevel: 1 -AltName: '[Faerie Fire](srd_spells_faerie_fire.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lumiere.md b/Data/HD/hd_spells_lumiere.md index 164e6a67..9d9cffa3 100644 --- a/Data/HD/hd_spells_lumiere.md +++ b/Data/HD/hd_spells_lumiere.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Lumière +AltName: '[Light](srd_spells_light.md)' Type: Évocation +Level: tour de magie CastingTime: 1 action Range: contact Components: V, M (une luciole ou de la mousse phosphorescente) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lumière ParentLink: spells_hd.md#sorts -Name: Lumière ParentName: Sorts NameLevel: 1 -AltName: '[Light](srd_spells_light.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lumiere_du_jour.md b/Data/HD/hd_spells_lumiere_du_jour.md index 5a994c66..e4431898 100644 --- a/Data/HD/hd_spells_lumiere_du_jour.md +++ b/Data/HD/hd_spells_lumiere_du_jour.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Lumière du jour +AltName: '[Daylight](srd_spells_daylight.md)' Type: Évocation +Level: 3 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: 1 heure Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lumière-du-jour ParentLink: spells_hd.md#sorts -Name: Lumière du jour ParentName: Sorts NameLevel: 1 -AltName: '[Daylight](srd_spells_daylight.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_lumieres_dansantes.md b/Data/HD/hd_spells_lumieres_dansantes.md index 028af5da..db42dd8c 100644 --- a/Data/HD/hd_spells_lumieres_dansantes.md +++ b/Data/HD/hd_spells_lumieres_dansantes.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Lumières dansantes +AltName: '[Dancing Lights](srd_spells_dancing_lights.md)' Type: Évocation +Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S, M (un bout de phosphore ou d'orme, ou un ver luisant) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#lumières-dansantes ParentLink: spells_hd.md#sorts -Name: Lumières dansantes ParentName: Sorts NameLevel: 1 -AltName: '[Dancing Lights](srd_spells_dancing_lights.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_main_du_mage.md b/Data/HD/hd_spells_main_du_mage.md index b5b301f5..041c4b18 100644 --- a/Data/HD/hd_spells_main_du_mage.md +++ b/Data/HD/hd_spells_main_du_mage.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Main du mage +AltName: '[Mage Hand](srd_spells_mage_hand.md)' Type: Invocation +Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#main-du-mage ParentLink: spells_hd.md#sorts -Name: Main du mage ParentName: Sorts NameLevel: 1 -AltName: '[Mage Hand](srd_spells_mage_hand.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_main_magique.md b/Data/HD/hd_spells_main_magique.md index 4299c9b6..b1a28a8e 100644 --- a/Data/HD/hd_spells_main_magique.md +++ b/Data/HD/hd_spells_main_magique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Main magique +AltName: '[Arcane Hand](srd_spells_arcane_hand.md)' Type: Évocation +Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S, M (une coquille d'oeuf et un gant en peau de serpent) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#main-magique ParentLink: spells_hd.md#sorts -Name: Main magique ParentName: Sorts NameLevel: 1 -AltName: '[Arcane Hand](srd_spells_arcane_hand.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mains_brulantes.md b/Data/HD/hd_spells_mains_brulantes.md index be5f5932..9f7e0c4a 100644 --- a/Data/HD/hd_spells_mains_brulantes.md +++ b/Data/HD/hd_spells_mains_brulantes.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Mains brûlantes +AltName: '[Burning Hands](srd_spells_burning_hands.md)' Type: Évocation +Level: 1 CastingTime: 1 action Range: personnelle (cône de 4,50 mètres) Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mains-brûlantes ParentLink: spells_hd.md#sorts -Name: Mains brûlantes ParentName: Sorts NameLevel: 1 -AltName: '[Burning Hands](srd_spells_burning_hands.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_manoir_somptueux.md b/Data/HD/hd_spells_manoir_somptueux.md index dff81e1c..c9b27d97 100644 --- a/Data/HD/hd_spells_manoir_somptueux.md +++ b/Data/HD/hd_spells_manoir_somptueux.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Manoir somptueux +AltName: '[Magnificent Mansion](srd_spells_magnificent_mansion.md)' Type: Invocation +Level: 7 CastingTime: 1 minute Range: 90 mètres Components: V, S, M (un portrait miniature gravé dans de l'ivoire, un bout de marbre poli et une minuscule cuillère en argent, chaque objet devant valoir au minimum 5 po) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#manoir-somptueux ParentLink: spells_hd.md#sorts -Name: Manoir somptueux ParentName: Sorts NameLevel: 1 -AltName: '[Magnificent Mansion](srd_spells_magnificent_mansion.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_manteau_de_givre.md b/Data/HD/hd_spells_manteau_de_givre.md index e9fd7ce9..ae1b8c3b 100644 --- a/Data/HD/hd_spells_manteau_de_givre.md +++ b/Data/HD/hd_spells_manteau_de_givre.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Manteau de givre Type: Abjuration +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (un peu d'eau) Duration: 8 heures Classes: '[Sorcier](hd_warlock.md)' +Source: (MDR p) Id: spells_hd.md#manteau-de-givre ParentLink: spells_hd.md#sorts -Name: Manteau de givre ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_marche_sur_le_vent.md b/Data/HD/hd_spells_marche_sur_le_vent.md index cd4e0214..9f119e4a 100644 --- a/Data/HD/hd_spells_marche_sur_le_vent.md +++ b/Data/HD/hd_spells_marche_sur_le_vent.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Marche sur le vent +AltName: '[Wind Walk](srd_spells_wind_walk.md)' Type: Transmutation +Level: 6 CastingTime: 1 minute Range: 9 mètres Components: V, S, M (du feu et de l'eau bénite) Duration: 8 heures Classes: '[Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#marche-sur-le-vent ParentLink: spells_hd.md#sorts -Name: Marche sur le vent ParentName: Sorts NameLevel: 1 -AltName: '[Wind Walk](srd_spells_wind_walk.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_marche_sur_leau.md b/Data/HD/hd_spells_marche_sur_leau.md index 093e5466..25bd3125 100644 --- a/Data/HD/hd_spells_marche_sur_leau.md +++ b/Data/HD/hd_spells_marche_sur_leau.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Marche sur l'eau +AltName: '[Water Walk](srd_spells_water_walk.md)' Type: Transmutation -Ritual: rituel +Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un bout de liège) Duration: 1 heure Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p) +Ritual: rituel Id: spells_hd.md#marche-sur-leau ParentLink: spells_hd.md#sorts -Name: Marche sur l'eau ParentName: Sorts NameLevel: 1 -AltName: '[Water Walk](srd_spells_water_walk.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_marque_du_chasseur.md b/Data/HD/hd_spells_marque_du_chasseur.md index b317550f..95a09185 100644 --- a/Data/HD/hd_spells_marque_du_chasseur.md +++ b/Data/HD/hd_spells_marque_du_chasseur.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Marque du chasseur +AltName: "[Hunter's Mark](srd_spells_hunters_mark.md)" Type: Divination +Level: 1 CastingTime: 1 action bonus Range: 27 mètres Components: V Duration: concentration, jusqu'à 1 heure Classes: '[Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#marque-du-chasseur ParentLink: spells_hd.md#sorts -Name: Marque du chasseur ParentName: Sorts NameLevel: 1 -AltName: "[Hunter's Mark](srd_spells_hunters_mark.md)" -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mauvais_oeil.md b/Data/HD/hd_spells_mauvais_oeil.md index c72f4124..78ef19c0 100644 --- a/Data/HD/hd_spells_mauvais_oeil.md +++ b/Data/HD/hd_spells_mauvais_oeil.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Mauvais oeil +AltName: '[Eyebite](srd_spells_eyebite.md)' Type: Nécromancie +Level: 6 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mauvais-oeil ParentLink: spells_hd.md#sorts -Name: Mauvais oeil ParentName: Sorts NameLevel: 1 -AltName: '[Eyebite](srd_spells_eyebite.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_message.md b/Data/HD/hd_spells_message.md index b5dbb3e7..b5488aa0 100644 --- a/Data/HD/hd_spells_message.md +++ b/Data/HD/hd_spells_message.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Message +AltName: '[Message](srd_spells_message.md)' Type: Transmutation +Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S, M (un petit bout de fil de cuivre) Duration: 1 round Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#message ParentLink: spells_hd.md#sorts -Name: Message ParentName: Sorts NameLevel: 1 -AltName: '[Message](srd_spells_message.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_messager_animal.md b/Data/HD/hd_spells_messager_animal.md index 58f9fda0..1d5679dd 100644 --- a/Data/HD/hd_spells_messager_animal.md +++ b/Data/HD/hd_spells_messager_animal.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Messager animal +AltName: '[Animal Messenger](srd_spells_animal_messenger.md)' Type: Enchantement -Ritual: rituel +Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un peu de nourriture) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#messager-animal ParentLink: spells_hd.md#sorts -Name: Messager animal ParentName: Sorts NameLevel: 1 -AltName: '[Animal Messenger](srd_spells_animal_messenger.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_metamorphose.md b/Data/HD/hd_spells_metamorphose.md index ffbc292a..caba48c6 100644 --- a/Data/HD/hd_spells_metamorphose.md +++ b/Data/HD/hd_spells_metamorphose.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Métamorphose +AltName: '[Polymorph](srd_spells_polymorph.md)' Type: Transmutation +Level: 4 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un cocon de chenille) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#métamorphose ParentLink: spells_hd.md#sorts -Name: Métamorphose ParentName: Sorts NameLevel: 1 -AltName: '[Polymorph](srd_spells_polymorph.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_metamorphose_supreme.md b/Data/HD/hd_spells_metamorphose_supreme.md index f3baa83c..530e9f6d 100644 --- a/Data/HD/hd_spells_metamorphose_supreme.md +++ b/Data/HD/hd_spells_metamorphose_supreme.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Métamorphose suprême +AltName: '[True Polymorph](srd_spells_true_polymorph.md)' Type: Transmutation +Level: 9 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une goutte de mercure, une cuillerée de gomme arabique et une volute de fumée) Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#métamorphose-suprême ParentLink: spells_hd.md#sorts -Name: Métamorphose suprême ParentName: Sorts NameLevel: 1 -AltName: '[True Polymorph](srd_spells_true_polymorph.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mirage.md b/Data/HD/hd_spells_mirage.md index c31284e1..b4a6052f 100644 --- a/Data/HD/hd_spells_mirage.md +++ b/Data/HD/hd_spells_mirage.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Mirage +AltName: '[Mirage Arcane](srd_spells_mirage_arcane.md)' Type: Illusion +Level: 7 CastingTime: 10 minutes Range: vision Components: V, S Duration: 10 jours Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mirage ParentLink: spells_hd.md#sorts -Name: Mirage ParentName: Sorts NameLevel: 1 -AltName: '[Mirage Arcane](srd_spells_mirage_arcane.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_modification_de_memoire.md b/Data/HD/hd_spells_modification_de_memoire.md index 3b5a17e1..45d8fcba 100644 --- a/Data/HD/hd_spells_modification_de_memoire.md +++ b/Data/HD/hd_spells_modification_de_memoire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Modification de mémoire +AltName: '[Modify Memory](srd_spells_modify_memory.md)' Type: Enchantement +Level: 5 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: "concentration, jusqu'à 1 minute " Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#modification-de-mémoire ParentLink: spells_hd.md#sorts -Name: Modification de mémoire ParentName: Sorts NameLevel: 1 -AltName: '[Modify Memory](srd_spells_modify_memory.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_modifier_son_apparence.md b/Data/HD/hd_spells_modifier_son_apparence.md index d26e241d..3b941a56 100644 --- a/Data/HD/hd_spells_modifier_son_apparence.md +++ b/Data/HD/hd_spells_modifier_son_apparence.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Modifier son apparence +AltName: '[Alter Self](srd_spells_alter_self.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#modifier-son-apparence ParentLink: spells_hd.md#sorts -Name: Modifier son apparence ParentName: Sorts NameLevel: 1 -AltName: '[Alter Self](srd_spells_alter_self.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_monture_fantome.md b/Data/HD/hd_spells_monture_fantome.md index f406a19c..81111b7f 100644 --- a/Data/HD/hd_spells_monture_fantome.md +++ b/Data/HD/hd_spells_monture_fantome.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Monture fantôme +AltName: '[Phantom Steed](srd_spells_phantom_steed.md)' Type: Illusion -Ritual: rituel +Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#monture-fantôme ParentLink: spells_hd.md#sorts -Name: Monture fantôme ParentName: Sorts NameLevel: 1 -AltName: '[Phantom Steed](srd_spells_phantom_steed.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_moquerie_cruelle.md b/Data/HD/hd_spells_moquerie_cruelle.md index 383a9e3d..f4ef187c 100644 --- a/Data/HD/hd_spells_moquerie_cruelle.md +++ b/Data/HD/hd_spells_moquerie_cruelle.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Moquerie cruelle +AltName: '[Vicious Mockery](srd_spells_vicious_mockery.md)' Type: Enchantement +Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#moquerie-cruelle ParentLink: spells_hd.md#sorts -Name: Moquerie cruelle ParentName: Sorts NameLevel: 1 -AltName: '[Vicious Mockery](srd_spells_vicious_mockery.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mot_de_guerison.md b/Data/HD/hd_spells_mot_de_guerison.md index 9194c288..3bf0ebe0 100644 --- a/Data/HD/hd_spells_mot_de_guerison.md +++ b/Data/HD/hd_spells_mot_de_guerison.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Mot de guérison +AltName: '[Healing Word](srd_spells_healing_word.md)' Type: Évocation +Level: 1 CastingTime: 1 action bonus Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-guérison ParentLink: spells_hd.md#sorts -Name: Mot de guérison ParentName: Sorts NameLevel: 1 -AltName: '[Healing Word](srd_spells_healing_word.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mot_de_guerison_de_groupe.md b/Data/HD/hd_spells_mot_de_guerison_de_groupe.md index 8b60b147..11391807 100644 --- a/Data/HD/hd_spells_mot_de_guerison_de_groupe.md +++ b/Data/HD/hd_spells_mot_de_guerison_de_groupe.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Mot de guérison de groupe +AltName: '[Mass Healing Word](srd_spells_mass_healing_word.md)' Type: Évocation +Level: 3 CastingTime: 1 action bonus Range: 18 mètres Components: V Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-guérison-de-groupe ParentLink: spells_hd.md#sorts -Name: Mot de guérison de groupe ParentName: Sorts NameLevel: 1 -AltName: '[Mass Healing Word](srd_spells_mass_healing_word.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mot_de_pouvoir_etourdissant.md b/Data/HD/hd_spells_mot_de_pouvoir_etourdissant.md index 13f07950..ad661360 100644 --- a/Data/HD/hd_spells_mot_de_pouvoir_etourdissant.md +++ b/Data/HD/hd_spells_mot_de_pouvoir_etourdissant.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Mot de pouvoir étourdissant +AltName: '[Power Word Stun](srd_spells_power_word_stun.md)' Type: Enchantement +Level: 8 CastingTime: 1 action Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-pouvoir-étourdissant ParentLink: spells_hd.md#sorts -Name: Mot de pouvoir étourdissant ParentName: Sorts NameLevel: 1 -AltName: '[Power Word Stun](srd_spells_power_word_stun.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mot_de_pouvoir_mortel.md b/Data/HD/hd_spells_mot_de_pouvoir_mortel.md index a6587b97..cfb3055e 100644 --- a/Data/HD/hd_spells_mot_de_pouvoir_mortel.md +++ b/Data/HD/hd_spells_mot_de_pouvoir_mortel.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Mot de pouvoir mortel +AltName: '[Power Word Kill](srd_spells_power_word_kill.md)' Type: Enchantement +Level: 9 CastingTime: 1 action Range: 18 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-pouvoir-mortel ParentLink: spells_hd.md#sorts -Name: Mot de pouvoir mortel ParentName: Sorts NameLevel: 1 -AltName: '[Power Word Kill](srd_spells_power_word_kill.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mot_de_retour.md b/Data/HD/hd_spells_mot_de_retour.md index a4e0d32e..5d5def32 100644 --- a/Data/HD/hd_spells_mot_de_retour.md +++ b/Data/HD/hd_spells_mot_de_retour.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Mot de retour +AltName: '[Word of Recall](srd_spells_word_of_recall.md)' Type: Invocation +Level: 6 CastingTime: 1 action Range: 1,5 mètre Components: V Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mot-de-retour ParentLink: spells_hd.md#sorts -Name: Mot de retour ParentName: Sorts NameLevel: 1 -AltName: '[Word of Recall](srd_spells_word_of_recall.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_motif_hypnotique.md b/Data/HD/hd_spells_motif_hypnotique.md index 24fd5a94..96dfd94d 100644 --- a/Data/HD/hd_spells_motif_hypnotique.md +++ b/Data/HD/hd_spells_motif_hypnotique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Motif hypnotique +AltName: '[Hypnotic Pattern](srd_spells_hypnotic_pattern.md)' Type: Illusion +Level: 3 CastingTime: 1 action Range: 36 mètres Components: S, M (un bâtonnet d'encens incandescent ou une fiole de cristal remplie d'une matière phosphorescente) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#motif-hypnotique ParentLink: spells_hd.md#sorts -Name: Motif hypnotique ParentName: Sorts NameLevel: 1 -AltName: '[Hypnotic Pattern](srd_spells_hypnotic_pattern.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mur_de_feu.md b/Data/HD/hd_spells_mur_de_feu.md index f03abf56..c752edad 100644 --- a/Data/HD/hd_spells_mur_de_feu.md +++ b/Data/HD/hd_spells_mur_de_feu.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Mur de feu +AltName: '[Wall of Fire](srd_spells_wall_of_fire.md)' Type: Évocation +Level: 4 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un éclat de phosphore) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-feu ParentLink: spells_hd.md#sorts -Name: Mur de feu ParentName: Sorts NameLevel: 1 -AltName: '[Wall of Fire](srd_spells_wall_of_fire.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mur_de_force.md b/Data/HD/hd_spells_mur_de_force.md index fbc1bbe4..5f162338 100644 --- a/Data/HD/hd_spells_mur_de_force.md +++ b/Data/HD/hd_spells_mur_de_force.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Mur de force +AltName: '[Wall of Force](srd_spells_wall_of_force.md)' Type: Évocation +Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S, M (une pincée de poudre de gemme translucide) Duration: concentration, jusqu'à 10 minutes Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-force ParentLink: spells_hd.md#sorts -Name: Mur de force ParentName: Sorts NameLevel: 1 -AltName: '[Wall of Force](srd_spells_wall_of_force.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mur_de_glace.md b/Data/HD/hd_spells_mur_de_glace.md index 4e24d26c..3f70e74b 100644 --- a/Data/HD/hd_spells_mur_de_glace.md +++ b/Data/HD/hd_spells_mur_de_glace.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Mur de glace +AltName: '[Wall of Ice](srd_spells_wall_of_ice.md)' Type: Évocation +Level: 6 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un éclat de quartz) Duration: concentration, jusqu'à 10 minutes Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-glace ParentLink: spells_hd.md#sorts -Name: Mur de glace ParentName: Sorts NameLevel: 1 -AltName: '[Wall of Ice](srd_spells_wall_of_ice.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mur_de_pierre.md b/Data/HD/hd_spells_mur_de_pierre.md index d2529f3b..3183cca0 100644 --- a/Data/HD/hd_spells_mur_de_pierre.md +++ b/Data/HD/hd_spells_mur_de_pierre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Mur de pierre +AltName: '[Wall of Stone](srd_spells_wall_of_stone.md)' Type: Évocation +Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un petit bloc de granite) Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-pierre ParentLink: spells_hd.md#sorts -Name: Mur de pierre ParentName: Sorts NameLevel: 1 -AltName: '[Wall of Stone](srd_spells_wall_of_stone.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mur_de_vent.md b/Data/HD/hd_spells_mur_de_vent.md index c9bb2675..e61dee27 100644 --- a/Data/HD/hd_spells_mur_de_vent.md +++ b/Data/HD/hd_spells_mur_de_vent.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Mur de vent +AltName: '[Wind Wall](srd_spells_wind_wall.md)' Type: Évocation +Level: 3 CastingTime: 1 action Range: 36 mètres Components: V, S, M (un petit éventail et une plume exotique) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mur-de-vent ParentLink: spells_hd.md#sorts -Name: Mur de vent ParentName: Sorts NameLevel: 1 -AltName: '[Wind Wall](srd_spells_wind_wall.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mur_depines.md b/Data/HD/hd_spells_mur_depines.md index 1a6c615e..8717d2cd 100644 --- a/Data/HD/hd_spells_mur_depines.md +++ b/Data/HD/hd_spells_mur_depines.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Mur d'épines +AltName: '[Wall of Thorns](srd_spells_wall_of_thorns.md)' Type: Invocation +Level: 6 CastingTime: 1 action Range: 36 mètres Components: V, S, M (une poignée d'épines) Duration: concentration, jusqu'à 10 minutes Classes: '[Druide](hd_druid.md)' +Source: (MDR p) Id: spells_hd.md#mur-dépines ParentLink: spells_hd.md#sorts -Name: Mur d'épines ParentName: Sorts NameLevel: 1 -AltName: '[Wall of Thorns](srd_spells_wall_of_thorns.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_mur_prismatique.md b/Data/HD/hd_spells_mur_prismatique.md index 44a69233..719e1fdb 100644 --- a/Data/HD/hd_spells_mur_prismatique.md +++ b/Data/HD/hd_spells_mur_prismatique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Mur prismatique +AltName: '[Prismatic Wall](srd_spells_prismatic_wall.md)' Type: Abjuration +Level: 9 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: 10 minutes Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#mur-prismatique ParentLink: spells_hd.md#sorts -Name: Mur prismatique ParentName: Sorts NameLevel: 1 -AltName: '[Prismatic Wall](srd_spells_prismatic_wall.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_nappe_de_brouillard.md b/Data/HD/hd_spells_nappe_de_brouillard.md index 0628210e..fa409af9 100644 --- a/Data/HD/hd_spells_nappe_de_brouillard.md +++ b/Data/HD/hd_spells_nappe_de_brouillard.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Nappe de brouillard +AltName: '[Fog Cloud](srd_spells_fog_cloud.md)' Type: Invocation +Level: 1 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#nappe-de-brouillard ParentLink: spells_hd.md#sorts -Name: Nappe de brouillard ParentName: Sorts NameLevel: 1 -AltName: '[Fog Cloud](srd_spells_fog_cloud.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_nimbe_de_bienfaisance.md b/Data/HD/hd_spells_nimbe_de_bienfaisance.md index caf6a5ab..96dba6a4 100644 --- a/Data/HD/hd_spells_nimbe_de_bienfaisance.md +++ b/Data/HD/hd_spells_nimbe_de_bienfaisance.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Nimbe de bienfaisance Type: Abjuration +Level: 4 CastingTime: 1 action Range: personnelle Components: V Duration: concentration, jusqu'à 10 minutes Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p) Id: spells_hd.md#nimbe-de-bienfaisance ParentLink: spells_hd.md#sorts -Name: Nimbe de bienfaisance ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_non_detection.md b/Data/HD/hd_spells_non_detection.md index f33b52b8..c550bfbc 100644 --- a/Data/HD/hd_spells_non_detection.md +++ b/Data/HD/hd_spells_non_detection.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Non-détection +AltName: '[Nondetection](srd_spells_nondetection.md)' Type: Abjuration +Level: 3 CastingTime: 1 action Range: contact Components: V, S, M (une pincée de poussière de diamant d'une valeur de 25 po, que le sort consume une fois saupoudrée sur la cible) Duration: 8 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#non-détection ParentLink: spells_hd.md#sorts -Name: Non-détection ParentName: Sorts NameLevel: 1 -AltName: '[Nondetection](srd_spells_nondetection.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_nuage_incendiaire.md b/Data/HD/hd_spells_nuage_incendiaire.md index 069c4074..c55ebd15 100644 --- a/Data/HD/hd_spells_nuage_incendiaire.md +++ b/Data/HD/hd_spells_nuage_incendiaire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Nuage incendiaire +AltName: '[Incendiary Cloud](srd_spells_incendiary_cloud.md)' Type: Invocation +Level: 8 CastingTime: 1 action Range: 45 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#nuage-incendiaire ParentLink: spells_hd.md#sorts -Name: Nuage incendiaire ParentName: Sorts NameLevel: 1 -AltName: '[Incendiary Cloud](srd_spells_incendiary_cloud.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_nuage_mortel.md b/Data/HD/hd_spells_nuage_mortel.md index da6e10f3..15d4d342 100644 --- a/Data/HD/hd_spells_nuage_mortel.md +++ b/Data/HD/hd_spells_nuage_mortel.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Nuage mortel +AltName: '[Cloudkill](srd_spells_cloudkill.md)' Type: Invocation +Level: 5 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#nuage-mortel ParentLink: spells_hd.md#sorts -Name: Nuage mortel ParentName: Sorts NameLevel: 1 -AltName: '[Cloudkill](srd_spells_cloudkill.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_nuage_puant.md b/Data/HD/hd_spells_nuage_puant.md index 790ead68..2e6cf876 100644 --- a/Data/HD/hd_spells_nuage_puant.md +++ b/Data/HD/hd_spells_nuage_puant.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Nuage puant +AltName: '[Stinking Cloud](srd_spells_stinking_cloud.md)' Type: Invocation +Level: 3 CastingTime: 1 action Range: 27 mètres Components: V, S, M (un oeuf pourri ou des feuilles de chou pourri) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#nuage-puant ParentLink: spells_hd.md#sorts -Name: Nuage puant ParentName: Sorts NameLevel: 1 -AltName: '[Stinking Cloud](srd_spells_stinking_cloud.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_nuee_de_meteores.md b/Data/HD/hd_spells_nuee_de_meteores.md index 507b2730..99d093ce 100644 --- a/Data/HD/hd_spells_nuee_de_meteores.md +++ b/Data/HD/hd_spells_nuee_de_meteores.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Nuée de météores +AltName: '[Meteor Swarm](srd_spells_meteor_swarm.md)' Type: Évocation +Level: 9 CastingTime: 1 action Range: 1,5 kilomètre Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#nuée-de-météores ParentLink: spells_hd.md#sorts -Name: Nuée de météores ParentName: Sorts NameLevel: 1 -AltName: '[Meteor Swarm](srd_spells_meteor_swarm.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_nuee_de_projectiles.md b/Data/HD/hd_spells_nuee_de_projectiles.md index 08097659..85cc53a5 100644 --- a/Data/HD/hd_spells_nuee_de_projectiles.md +++ b/Data/HD/hd_spells_nuee_de_projectiles.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Nuée de projectiles Type: Invocation +Level: 5 CastingTime: 1 action bonus Range: selon l'arme utilisée Components: V, S, M (un projectile) Duration: instantané Classes: '[Rôdeur](hd_ranger.md)' +Source: (MDR p) Id: spells_hd.md#nuée-de-projectiles ParentLink: spells_hd.md#sorts -Name: Nuée de projectiles ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_oeil_magique.md b/Data/HD/hd_spells_oeil_magique.md index 5bba0590..0683db09 100644 --- a/Data/HD/hd_spells_oeil_magique.md +++ b/Data/HD/hd_spells_oeil_magique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Oeil magique +AltName: '[Arcane Eye](srd_spells_arcane_eye.md)' Type: Divination +Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S, M (des poils de chauve-souris) Duration: concentration, jusqu'à 1 heure Classes: '[Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#oeil-magique ParentLink: spells_hd.md#sorts -Name: Oeil magique ParentName: Sorts NameLevel: 1 -AltName: '[Arcane Eye](srd_spells_arcane_eye.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_offrande_ineluctable.md b/Data/HD/hd_spells_offrande_ineluctable.md index 78a96f01..5a2ae3a0 100644 --- a/Data/HD/hd_spells_offrande_ineluctable.md +++ b/Data/HD/hd_spells_offrande_ineluctable.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Offrande inéluctable Type: Enchantement +Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p) Id: spells_hd.md#offrande-inéluctable ParentLink: spells_hd.md#sorts -Name: Offrande inéluctable ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_ombres_imaginaires.md b/Data/HD/hd_spells_ombres_imaginaires.md index 179e75b0..825c1dc1 100644 --- a/Data/HD/hd_spells_ombres_imaginaires.md +++ b/Data/HD/hd_spells_ombres_imaginaires.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Ombres imaginaires Type: Illusion +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un morceau de charbon) Duration: concentration, jusqu'à 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p) Id: spells_hd.md#ombres-imaginaires ParentLink: spells_hd.md#sorts -Name: Ombres imaginaires ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_panacee.md b/Data/HD/hd_spells_panacee.md index 7e93b15b..471933ec 100644 --- a/Data/HD/hd_spells_panacee.md +++ b/Data/HD/hd_spells_panacee.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Panacée Type: Abjuration +Level: 4 CastingTime: 1 action Range: personnelle (3 mètres de rayon) Components: V, S Duration: Instantanée Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p) Id: spells_hd.md#panacée ParentLink: spells_hd.md#sorts -Name: Panacée ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_parole_divine.md b/Data/HD/hd_spells_parole_divine.md index 331654b8..0e24f870 100644 --- a/Data/HD/hd_spells_parole_divine.md +++ b/Data/HD/hd_spells_parole_divine.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Parole divine +AltName: '[Divine Word](srd_spells_divine_word.md)' Type: Évocation +Level: 7 CastingTime: 1 action bonus Range: 9 mètres Components: V Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#parole-divine ParentLink: spells_hd.md#sorts -Name: Parole divine ParentName: Sorts NameLevel: 1 -AltName: '[Divine Word](srd_spells_divine_word.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_pas_brumeux.md b/Data/HD/hd_spells_pas_brumeux.md index 5ae27411..4fb6e052 100644 --- a/Data/HD/hd_spells_pas_brumeux.md +++ b/Data/HD/hd_spells_pas_brumeux.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Pas brumeux +AltName: '[Misty Step](srd_spells_misty_step.md)' Type: Invocation +Level: 2 CastingTime: 1 action bonus Range: personnelle Components: V Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#pas-brumeux ParentLink: spells_hd.md#sorts -Name: Pas brumeux ParentName: Sorts NameLevel: 1 -AltName: '[Misty Step](srd_spells_misty_step.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_passage_dimensionnel.md b/Data/HD/hd_spells_passage_dimensionnel.md index 7a9145d6..2dbdea98 100644 --- a/Data/HD/hd_spells_passage_dimensionnel.md +++ b/Data/HD/hd_spells_passage_dimensionnel.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Passage dimensionnel Type: Invocation +Level: 6 CastingTime: 1 action Range: 150 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p) Id: spells_hd.md#passage-dimensionnel ParentLink: spells_hd.md#sorts -Name: Passage dimensionnel ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_passage_par_les_arbres.md b/Data/HD/hd_spells_passage_par_les_arbres.md index c5f186c9..d0ae5d41 100644 --- a/Data/HD/hd_spells_passage_par_les_arbres.md +++ b/Data/HD/hd_spells_passage_par_les_arbres.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Passage par les arbres +AltName: '[Tree Stride](srd_spells_tree_stride.md)' Type: Invocation +Level: 5 CastingTime: 1 action Range: personnelle Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#passage-par-les-arbres ParentLink: spells_hd.md#sorts -Name: Passage par les arbres ParentName: Sorts NameLevel: 1 -AltName: '[Tree Stride](srd_spells_tree_stride.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_passage_sans_trace.md b/Data/HD/hd_spells_passage_sans_trace.md index e8c35d39..366dffb0 100644 --- a/Data/HD/hd_spells_passage_sans_trace.md +++ b/Data/HD/hd_spells_passage_sans_trace.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Passage sans trace +AltName: '[Pass without Trace](srd_spells_pass_without_trace.md)' Type: Abjuration +Level: 2 CastingTime: 1 action Range: personnelle Components: V, S, M (cendres d'une feuille de gui et une brindille d'épicéa) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#passage-sans-trace ParentLink: spells_hd.md#sorts -Name: Passage sans trace ParentName: Sorts NameLevel: 1 -AltName: '[Pass without Trace](srd_spells_pass_without_trace.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_passe_muraille.md b/Data/HD/hd_spells_passe_muraille.md index 6ff7fe4d..8dfd02ce 100644 --- a/Data/HD/hd_spells_passe_muraille.md +++ b/Data/HD/hd_spells_passe_muraille.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Passe-muraille +AltName: '[Passwall](srd_spells_passwall.md)' Type: Transmutation +Level: 5 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une pincée de graines de sésame) Duration: 1 heure Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#passe-muraille ParentLink: spells_hd.md#sorts -Name: Passe-muraille ParentName: Sorts NameLevel: 1 -AltName: '[Passwall](srd_spells_passwall.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_pattes_daraignee.md b/Data/HD/hd_spells_pattes_daraignee.md index 98d4633f..54afe252 100644 --- a/Data/HD/hd_spells_pattes_daraignee.md +++ b/Data/HD/hd_spells_pattes_daraignee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Pattes d'araignée +AltName: '[Spider Climb](srd_spells_spider_climb.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une goutte de bitume et une araignée) Duration: concentration, jusqu'à 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p) Id: spells_hd.md#pattes-daraignée ParentLink: spells_hd.md#sorts -Name: Pattes d'araignée ParentName: Sorts NameLevel: 1 -AltName: '[Spider Climb](srd_spells_spider_climb.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_peau_de_pierre.md b/Data/HD/hd_spells_peau_de_pierre.md index b5fdb77a..c54bd0f5 100644 --- a/Data/HD/hd_spells_peau_de_pierre.md +++ b/Data/HD/hd_spells_peau_de_pierre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Peau de pierre +AltName: '[Stoneskin](srd_spells_stoneskin.md)' Type: Abjuration +Level: 4 CastingTime: 1 action Range: contact Components: V, S, M (poussière de diamant d'une valeur de 100 po, que le sort consume) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#peau-de-pierre ParentLink: spells_hd.md#sorts -Name: Peau de pierre ParentName: Sorts NameLevel: 1 -AltName: '[Stoneskin](srd_spells_stoneskin.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_peau_decorce.md b/Data/HD/hd_spells_peau_decorce.md index b1e55c56..31976cb7 100644 --- a/Data/HD/hd_spells_peau_decorce.md +++ b/Data/HD/hd_spells_peau_decorce.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Peau d'écorce +AltName: '[Barkskin](srd_spells_barkskin.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une poignée d'écorce de chêne) Duration: concentration, jusqu'à 1 heure Classes: '[Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p) Id: spells_hd.md#peau-décorce ParentLink: spells_hd.md#sorts -Name: Peau d'écorce ParentName: Sorts NameLevel: 1 -AltName: '[Barkskin](srd_spells_barkskin.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_petite_hutte.md b/Data/HD/hd_spells_petite_hutte.md index 4347cd3d..0272f47e 100644 --- a/Data/HD/hd_spells_petite_hutte.md +++ b/Data/HD/hd_spells_petite_hutte.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Petite hutte +AltName: '[Tiny Hut](srd_spells_tiny_hut.md)' Type: Évocation -Ritual: rituel +Level: 3 CastingTime: 1 minute Range: personnelle (hémisphère de 3 mètres de rayon) Components: V, S, M (une petite perle de cristal) Duration: 8 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p) +Ritual: rituel Id: spells_hd.md#petite-hutte ParentLink: spells_hd.md#sorts -Name: Petite hutte ParentName: Sorts NameLevel: 1 -AltName: '[Tiny Hut](srd_spells_tiny_hut.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_petrification.md b/Data/HD/hd_spells_petrification.md index 290eaefe..79fd9608 100644 --- a/Data/HD/hd_spells_petrification.md +++ b/Data/HD/hd_spells_petrification.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Pétrification +AltName: '[Flesh to Stone](srd_spells_flesh_to_stone.md)' Type: Transmutation +Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, S, M (une pincée de chaux, de l'eau et de la terre) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#pétrification ParentLink: spells_hd.md#sorts -Name: Pétrification ParentName: Sorts NameLevel: 1 -AltName: '[Flesh to Stone](srd_spells_flesh_to_stone.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_peur.md b/Data/HD/hd_spells_peur.md index 435549b3..2793371e 100644 --- a/Data/HD/hd_spells_peur.md +++ b/Data/HD/hd_spells_peur.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Peur +AltName: '[Fear](srd_spells_fear.md)' Type: Illusion +Level: 3 CastingTime: 1 action Range: personnelle (cône de 9 mètres) Components: V, S, M (une plume blanche ou un coeur de poule) Duration: concentration, jusqu'à 1 minute. Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#peur ParentLink: spells_hd.md#sorts -Name: Peur ParentName: Sorts NameLevel: 1 -AltName: '[Fear](srd_spells_fear.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_pluie_de_projectiles.md b/Data/HD/hd_spells_pluie_de_projectiles.md index f1a49057..e2b8231f 100644 --- a/Data/HD/hd_spells_pluie_de_projectiles.md +++ b/Data/HD/hd_spells_pluie_de_projectiles.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Pluie de projectiles Type: Invocation +Level: 3 CastingTime: 1 action bonus Range: selon l'arme utilisée Components: V, S, M (un projectile) Duration: instantané Classes: '[Rôdeur](hd_ranger.md)' +Source: (MDR p) Id: spells_hd.md#pluie-de-projectiles ParentLink: spells_hd.md#sorts -Name: Pluie de projectiles ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_poigne_electrique.md b/Data/HD/hd_spells_poigne_electrique.md index 882d1ac1..87c19349 100644 --- a/Data/HD/hd_spells_poigne_electrique.md +++ b/Data/HD/hd_spells_poigne_electrique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Poigne électrique +AltName: '[Shocking Grasp](srd_spells_shocking_grasp.md)' Type: Évocation +Level: tour de magie CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#poigne-électrique ParentLink: spells_hd.md#sorts -Name: Poigne électrique ParentName: Sorts NameLevel: 1 -AltName: '[Shocking Grasp](srd_spells_shocking_grasp.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_poison_naturel.md b/Data/HD/hd_spells_poison_naturel.md index a6dfcefc..12ba69de 100644 --- a/Data/HD/hd_spells_poison_naturel.md +++ b/Data/HD/hd_spells_poison_naturel.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Poison naturel Type: Invocation +Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p) Id: spells_hd.md#poison-naturel ParentLink: spells_hd.md#sorts -Name: Poison naturel ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_portail.md b/Data/HD/hd_spells_portail.md index 9d8e13b8..45a32738 100644 --- a/Data/HD/hd_spells_portail.md +++ b/Data/HD/hd_spells_portail.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Portail +AltName: '[Gate](srd_spells_gate.md)' Type: Invocation +Level: 9 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un diamant d'une valeur minimale de 5 000 po) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#portail ParentLink: spells_hd.md#sorts -Name: Portail ParentName: Sorts NameLevel: 1 -AltName: '[Gate](srd_spells_gate.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_porte_bonheur.md b/Data/HD/hd_spells_porte_bonheur.md index aed80cbb..076e9868 100644 --- a/Data/HD/hd_spells_porte_bonheur.md +++ b/Data/HD/hd_spells_porte_bonheur.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Porte-bonheur Type: Abjuration +Level: tour de magie CastingTime: 1 action Range: personnel Components: V, S, M (objet porte-bonheur) Duration: 1 round Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p) Id: spells_hd.md#porte-bonheur ParentLink: spells_hd.md#sorts -Name: Porte-bonheur ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_porte_dimensionnelle.md b/Data/HD/hd_spells_porte_dimensionnelle.md index e3e39c08..916b7a4d 100644 --- a/Data/HD/hd_spells_porte_dimensionnelle.md +++ b/Data/HD/hd_spells_porte_dimensionnelle.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Porte dimensionnelle +AltName: '[Dimension Door](srd_spells_dimension_door.md)' Type: Invocation +Level: 4 CastingTime: 1 action Range: 150 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#porte-dimensionnelle ParentLink: spells_hd.md#sorts -Name: Porte dimensionnelle ParentName: Sorts NameLevel: 1 -AltName: '[Dimension Door](srd_spells_dimension_door.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_possession.md b/Data/HD/hd_spells_possession.md index 011b3e89..fa97aa2f 100644 --- a/Data/HD/hd_spells_possession.md +++ b/Data/HD/hd_spells_possession.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Possession +AltName: '[Magic Jar](srd_spells_magic_jar.md)' Type: Nécromancie +Level: 6 CastingTime: 1 minute Range: personnelle Components: V, S, M (une gemme, un cristal, un reliquaire ou un autre réceptacle ornemental d'une valeur minimale de 500 po) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#possession ParentLink: spells_hd.md#sorts -Name: Possession ParentName: Sorts NameLevel: 1 -AltName: '[Magic Jar](srd_spells_magic_jar.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_premonition.md b/Data/HD/hd_spells_premonition.md index efafdcd3..3131fdae 100644 --- a/Data/HD/hd_spells_premonition.md +++ b/Data/HD/hd_spells_premonition.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Prémonition +AltName: '[Foresight](srd_spells_foresight.md)' Type: Divination +Level: 9 CastingTime: 1 minute Range: contact Components: V, S, M (une plume d'oiseau chanteur) Duration: 8 heures Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#prémonition ParentLink: spells_hd.md#sorts -Name: Prémonition ParentName: Sorts NameLevel: 1 -AltName: '[Foresight](srd_spells_foresight.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_prestidigitation.md b/Data/HD/hd_spells_prestidigitation.md index 6cbb6178..6223867f 100644 --- a/Data/HD/hd_spells_prestidigitation.md +++ b/Data/HD/hd_spells_prestidigitation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Prestidigitation +AltName: '[Prestidigitation](srd_spells_prestidigitation.md)' Type: Transmutation +Level: tour de magie CastingTime: 1 action Range: 3 mètres Components: V, S Duration: jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#prestidigitation ParentLink: spells_hd.md#sorts -Name: Prestidigitation ParentName: Sorts NameLevel: 1 -AltName: '[Prestidigitation](srd_spells_prestidigitation.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_priere_de_soins.md b/Data/HD/hd_spells_priere_de_soins.md index 06edbf3d..6b6975f1 100644 --- a/Data/HD/hd_spells_priere_de_soins.md +++ b/Data/HD/hd_spells_priere_de_soins.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Prière de soins +AltName: '[Prayer of Healing](srd_spells_prayer_of_healing.md)' Type: Évocation +Level: 2 CastingTime: 10 minutes Range: 9 mètres Components: V Duration: instantanée Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#prière-de-soins ParentLink: spells_hd.md#sorts -Name: Prière de soins ParentName: Sorts NameLevel: 1 -AltName: '[Prayer of Healing](srd_spells_prayer_of_healing.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_produire_une_flamme.md b/Data/HD/hd_spells_produire_une_flamme.md index d9b37215..97ea5934 100644 --- a/Data/HD/hd_spells_produire_une_flamme.md +++ b/Data/HD/hd_spells_produire_une_flamme.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Produire une flamme +AltName: '[Produce Flame](srd_spells_produce_flame.md)' Type: Invocation +Level: tour de magie CastingTime: 1 action Range: personnelle Components: V, S Duration: 10 minutes Classes: '[Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#produire-une-flamme ParentLink: spells_hd.md#sorts -Name: Produire une flamme ParentName: Sorts NameLevel: 1 -AltName: '[Produce Flame](srd_spells_produce_flame.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_projectile_magique.md b/Data/HD/hd_spells_projectile_magique.md index b13bad46..7aadf4ec 100644 --- a/Data/HD/hd_spells_projectile_magique.md +++ b/Data/HD/hd_spells_projectile_magique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Projectile magique +AltName: '[Magic Missile](srd_spells_magic_missile.md)' Type: Évocation +Level: 1 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#projectile-magique ParentLink: spells_hd.md#sorts -Name: Projectile magique ParentName: Sorts NameLevel: 1 -AltName: '[Magic Missile](srd_spells_magic_missile.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_projectile_toxique.md b/Data/HD/hd_spells_projectile_toxique.md index 146395cd..343cceb8 100644 --- a/Data/HD/hd_spells_projectile_toxique.md +++ b/Data/HD/hd_spells_projectile_toxique.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Projectile toxique Type: Invocation +Level: 3 CastingTime: 1 action bonus Range: selon l'arme utilisée Components: V, S, M (un projectile) Duration: instantané Classes: '[Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p) Id: spells_hd.md#projectile-toxique ParentLink: spells_hd.md#sorts -Name: Projectile toxique ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_projection_astrale.md b/Data/HD/hd_spells_projection_astrale.md index 04962aa9..c0dd4c66 100644 --- a/Data/HD/hd_spells_projection_astrale.md +++ b/Data/HD/hd_spells_projection_astrale.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Projection astrale +AltName: '[Astral Projection](srd_spells_astral_projection.md)' Type: Nécromancie +Level: 9 CastingTime: 1 heure Range: 3 mètres Components: V, S, M (un zircon jaune d'une valeur minimale de 1 000 po et un lingot d'argent gravé d'une valeur minimale de 100 po par créature ; le sort consomme ces composantes) Duration: spéciale Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#projection-astrale ParentLink: spells_hd.md#sorts -Name: Projection astrale ParentName: Sorts NameLevel: 1 -AltName: '[Astral Projection](srd_spells_astral_projection.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_protection_contre_la_mort.md b/Data/HD/hd_spells_protection_contre_la_mort.md index 4ef3a8f5..b9fccb84 100644 --- a/Data/HD/hd_spells_protection_contre_la_mort.md +++ b/Data/HD/hd_spells_protection_contre_la_mort.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Protection contre la mort +AltName: '[Death Ward](srd_spells_death_ward.md)' Type: Abjuration +Level: 4 CastingTime: 1 action Range: contact Components: V, S Duration: 8 heures Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#protection-contre-la-mort ParentLink: spells_hd.md#sorts -Name: Protection contre la mort ParentName: Sorts NameLevel: 1 -AltName: '[Death Ward](srd_spells_death_ward.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_protection_contre_le_mal_et_le_bien.md b/Data/HD/hd_spells_protection_contre_le_mal_et_le_bien.md index bc7058f3..4810ea23 100644 --- a/Data/HD/hd_spells_protection_contre_le_mal_et_le_bien.md +++ b/Data/HD/hd_spells_protection_contre_le_mal_et_le_bien.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Protection contre le mal et le bien +AltName: '[Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)' Type: Abjuration +Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (eau bénite ou poudre de fer et d'argent, que le sort consume) Duration: concentration, jusqu'à 10 minutes Classes: '[Clerc](hd_cleric.md), [Magicien](hd_wizard.md), [Paladin](hd_paladin.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#protection-contre-le-mal-et-le-bien ParentLink: spells_hd.md#sorts -Name: Protection contre le mal et le bien ParentName: Sorts NameLevel: 1 -AltName: '[Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_protection_contre_le_poison.md b/Data/HD/hd_spells_protection_contre_le_poison.md index e7e69cea..83d238e0 100644 --- a/Data/HD/hd_spells_protection_contre_le_poison.md +++ b/Data/HD/hd_spells_protection_contre_le_poison.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Protection contre le poison +AltName: '[Protection from Poison](srd_spells_protection_from_poison.md)' Type: Abjuration +Level: 2 CastingTime: 1 action Range: contact Components: V, S Duration: 1 heure Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#protection-contre-le-poison ParentLink: spells_hd.md#sorts -Name: Protection contre le poison ParentName: Sorts NameLevel: 1 -AltName: '[Protection from Poison](srd_spells_protection_from_poison.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_protection_contre_les_energies.md b/Data/HD/hd_spells_protection_contre_les_energies.md index 80e784f1..4143d708 100644 --- a/Data/HD/hd_spells_protection_contre_les_energies.md +++ b/Data/HD/hd_spells_protection_contre_les_energies.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Protection contre les énergies +AltName: '[Protection from Energy](srd_spells_protection_from_energy.md)' Type: Abjuration +Level: 3 CastingTime: 1 action Range: contact Components: V, S Duration: concentration, jusqu'à 1 heure Classes: '[Ombrelame](hd_rogue_ombrelame.md)' +Source: (MDR p) Id: spells_hd.md#protection-contre-les-énergies ParentLink: spells_hd.md#sorts -Name: Protection contre les énergies ParentName: Sorts NameLevel: 1 -AltName: '[Protection from Energy](srd_spells_protection_from_energy.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_protections_et_sceaux.md b/Data/HD/hd_spells_protections_et_sceaux.md index 20e287eb..a4c0008f 100644 --- a/Data/HD/hd_spells_protections_et_sceaux.md +++ b/Data/HD/hd_spells_protections_et_sceaux.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Protections et sceaux +AltName: '[Guards and Wards](srd_spells_guards_and_wards.md)' Type: Abjuration +Level: 6 CastingTime: 10 minutes Range: contact Components: V, S, M (encens incandescent, petite dose de soufre et d'huile, cordelette avec des noeuds, petite dose de sang d'ombre des roches et petit sceptre en argent d'une valeur minimale de 10 po) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#protections-et-sceaux ParentLink: spells_hd.md#sorts -Name: Protections et sceaux ParentName: Sorts NameLevel: 1 -AltName: '[Guards and Wards](srd_spells_guards_and_wards.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_purification_de_la_nourriture_et_de_leau.md b/Data/HD/hd_spells_purification_de_la_nourriture_et_de_leau.md index 92d5274b..53672be2 100644 --- a/Data/HD/hd_spells_purification_de_la_nourriture_et_de_leau.md +++ b/Data/HD/hd_spells_purification_de_la_nourriture_et_de_leau.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Purification de la nourriture et de l'eau +AltName: '[Purify Food and Drink](srd_spells_purify_food_and_drink.md)' Type: Transmutation -Ritual: rituel +Level: 1 CastingTime: 1 action Range: 3 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md)' +Source: (MDR p) +Ritual: rituel Id: spells_hd.md#purification-de-la-nourriture-et-de-leau ParentLink: spells_hd.md#sorts -Name: Purification de la nourriture et de l'eau ParentName: Sorts NameLevel: 1 -AltName: '[Purify Food and Drink](srd_spells_purify_food_and_drink.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_putrefaction.md b/Data/HD/hd_spells_putrefaction.md index e728e15d..7e6e2ff1 100644 --- a/Data/HD/hd_spells_putrefaction.md +++ b/Data/HD/hd_spells_putrefaction.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Putréfaction Type: Nécromancie +Level: 1 CastingTime: 1 action Range: 30 mètres Components: V, S, M Duration: concentration, jusqu'à 1 heure Classes: '[Sorcier](hd_warlock.md)' +Source: (MDR p) Id: spells_hd.md#putréfaction ParentLink: spells_hd.md#sorts -Name: Putréfaction ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_rappel_a_la_vie.md b/Data/HD/hd_spells_rappel_a_la_vie.md index 9e3f73c9..1f1d62e8 100644 --- a/Data/HD/hd_spells_rappel_a_la_vie.md +++ b/Data/HD/hd_spells_rappel_a_la_vie.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Rappel à la vie +AltName: '[Raise Dead](srd_spells_raise_dead.md)' Type: Nécromancie +Level: 5 CastingTime: 1 heure Range: contact Components: V, S, M (un diamant d'une valeur minimale de 500 po, que le sort consume) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p) Id: spells_hd.md#rappel-à-la-vie ParentLink: spells_hd.md#sorts -Name: Rappel à la vie ParentName: Sorts NameLevel: 1 -AltName: '[Raise Dead](srd_spells_raise_dead.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_rayon_affaiblissant.md b/Data/HD/hd_spells_rayon_affaiblissant.md index 5baf4ab5..f6a13e4f 100644 --- a/Data/HD/hd_spells_rayon_affaiblissant.md +++ b/Data/HD/hd_spells_rayon_affaiblissant.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Rayon affaiblissant +AltName: '[Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)' Type: Nécromancie +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#rayon-affaiblissant ParentLink: spells_hd.md#sorts -Name: Rayon affaiblissant ParentName: Sorts NameLevel: 1 -AltName: '[Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_rayon_ardent.md b/Data/HD/hd_spells_rayon_ardent.md index be48a3fc..137c3beb 100644 --- a/Data/HD/hd_spells_rayon_ardent.md +++ b/Data/HD/hd_spells_rayon_ardent.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Rayon ardent +AltName: '[Scorching Ray](srd_spells_scorching_ray.md)' Type: Évocation +Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#rayon-ardent ParentLink: spells_hd.md#sorts -Name: Rayon ardent ParentName: Sorts NameLevel: 1 -AltName: '[Scorching Ray](srd_spells_scorching_ray.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_rayon_de_givre.md b/Data/HD/hd_spells_rayon_de_givre.md index af1bae5a..8040a209 100644 --- a/Data/HD/hd_spells_rayon_de_givre.md +++ b/Data/HD/hd_spells_rayon_de_givre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Rayon de givre +AltName: '[Ray of Frost](srd_spells_ray_of_frost.md)' Type: Évocation +Level: tour de magie CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#rayon-de-givre ParentLink: spells_hd.md#sorts -Name: Rayon de givre ParentName: Sorts NameLevel: 1 -AltName: '[Ray of Frost](srd_spells_ray_of_frost.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_rayon_de_lune.md b/Data/HD/hd_spells_rayon_de_lune.md index 65d59eda..e487e91d 100644 --- a/Data/HD/hd_spells_rayon_de_lune.md +++ b/Data/HD/hd_spells_rayon_de_lune.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Rayon de lune +AltName: '[Moonbeam](srd_spells_moonbeam.md)' Type: Évocation +Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S, M (quelques graines de lierre, peu importe l'espèce, et un éclat de feldspath opalescent) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#rayon-de-lune ParentLink: spells_hd.md#sorts -Name: Rayon de lune ParentName: Sorts NameLevel: 1 -AltName: '[Moonbeam](srd_spells_moonbeam.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_rayon_de_soleil.md b/Data/HD/hd_spells_rayon_de_soleil.md index 868a2fa6..39e6d20d 100644 --- a/Data/HD/hd_spells_rayon_de_soleil.md +++ b/Data/HD/hd_spells_rayon_de_soleil.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Rayon de soleil +AltName: '[Sunbeam](srd_spells_sunbeam.md)' Type: Évocation +Level: 6 CastingTime: 1 action Range: personnelle (ligne de 18 mètres) Components: V, S, M (une loupe) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#rayon-de-soleil ParentLink: spells_hd.md#sorts -Name: Rayon de soleil ParentName: Sorts NameLevel: 1 -AltName: '[Sunbeam](srd_spells_sunbeam.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_regeneration.md b/Data/HD/hd_spells_regeneration.md index 1e7669f2..d778189e 100644 --- a/Data/HD/hd_spells_regeneration.md +++ b/Data/HD/hd_spells_regeneration.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Régénération +AltName: '[Regenerate](srd_spells_regenerate.md)' Type: Transmutation +Level: 7 CastingTime: 1 minute Range: contact Components: V, S, M (un moulin à prières et de l'eau bénite) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#régénération ParentLink: spells_hd.md#sorts -Name: Régénération ParentName: Sorts NameLevel: 1 -AltName: '[Regenerate](srd_spells_regenerate.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_reincarnation.md b/Data/HD/hd_spells_reincarnation.md index e9344c6c..0f00b518 100644 --- a/Data/HD/hd_spells_reincarnation.md +++ b/Data/HD/hd_spells_reincarnation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Réincarnation +AltName: '[Reincarnate](srd_spells_reincarnate.md)' Type: Transmutation +Level: 5 CastingTime: 1 heure Range: contact Components: V, S, M (huiles et onguents rares d'une valeur minimale de 1 000 po, que le sort consume) Duration: instantanée Classes: '[Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#réincarnation ParentLink: spells_hd.md#sorts -Name: Réincarnation ParentName: Sorts NameLevel: 1 -AltName: '[Reincarnate](srd_spells_reincarnate.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_reparation.md b/Data/HD/hd_spells_reparation.md index ee1c681f..683dc58c 100644 --- a/Data/HD/hd_spells_reparation.md +++ b/Data/HD/hd_spells_reparation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Réparation +AltName: '[Mending](srd_spells_mending.md)' Type: Transmutation +Level: tour de magie CastingTime: 1 minute Range: contact Components: V, S, M (deux magnétites) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#réparation ParentLink: spells_hd.md#sorts -Name: Réparation ParentName: Sorts NameLevel: 1 -AltName: '[Mending](srd_spells_mending.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_repli_expeditif.md b/Data/HD/hd_spells_repli_expeditif.md index 90431a83..0e744c4a 100644 --- a/Data/HD/hd_spells_repli_expeditif.md +++ b/Data/HD/hd_spells_repli_expeditif.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Repli expéditif +AltName: '[Expeditious Retreat](srd_spells_expeditious_retreat.md)' Type: Transmutation +Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#repli-expéditif ParentLink: spells_hd.md#sorts -Name: Repli expéditif ParentName: Sorts NameLevel: 1 -AltName: '[Expeditious Retreat](srd_spells_expeditious_retreat.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_represailles_infernales.md b/Data/HD/hd_spells_represailles_infernales.md index 79c48bf9..9dd3bcba 100644 --- a/Data/HD/hd_spells_represailles_infernales.md +++ b/Data/HD/hd_spells_represailles_infernales.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Représailles infernales +AltName: '[Hellish Rebuke](srd_spells_hellish_rebuke.md)' Type: Évocation +Level: 1 CastingTime: 1 réaction en réponse aux dégâts que vous inflige une créature située dans votre champ de vision et dans un rayon de 18 mètres autour de vous Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#représailles-infernales ParentLink: spells_hd.md#sorts -Name: Représailles infernales ParentName: Sorts NameLevel: 1 -AltName: '[Hellish Rebuke](srd_spells_hellish_rebuke.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_repulsionattirance.md b/Data/HD/hd_spells_repulsionattirance.md index 46b97f89..b3d53e49 100644 --- a/Data/HD/hd_spells_repulsionattirance.md +++ b/Data/HD/hd_spells_repulsionattirance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Répulsion/attirance +AltName: '[Antipathy/Sympathy](srd_spells_antipathysympathy.md)' Type: Enchantement +Level: 8 CastingTime: 1 heure Range: 18 mètres Components: V, S, M (un cristal d'alun trempé dans le vinaigre pour répulsion ou une goutte de miel pour attirance) Duration: 10 jours Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#répulsionattirance ParentLink: spells_hd.md#sorts -Name: Répulsion/attirance ParentName: Sorts NameLevel: 1 -AltName: '[Antipathy/Sympathy](srd_spells_antipathysympathy.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_resistance.md b/Data/HD/hd_spells_resistance.md index cb9a9476..31dd9b7e 100644 --- a/Data/HD/hd_spells_resistance.md +++ b/Data/HD/hd_spells_resistance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Résistance +AltName: '[Resistance](srd_spells_resistance.md)' Type: Abjuration +Level: tour de magie CastingTime: 1 action Range: contact Components: V, S, M (une cape miniature) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#résistance ParentLink: spells_hd.md#sorts -Name: Résistance ParentName: Sorts NameLevel: 1 -AltName: '[Resistance](srd_spells_resistance.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_respiration_aquatique.md b/Data/HD/hd_spells_respiration_aquatique.md index 173ff931..036ecb3a 100644 --- a/Data/HD/hd_spells_respiration_aquatique.md +++ b/Data/HD/hd_spells_respiration_aquatique.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Respiration aquatique +AltName: '[Water Breathing](srd_spells_water_breathing.md)' Type: Transmutation -Ritual: rituel +Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un petit roseau ou un brin de paille) Duration: 24 heures Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#respiration-aquatique ParentLink: spells_hd.md#sorts -Name: Respiration aquatique ParentName: Sorts NameLevel: 1 -AltName: '[Water Breathing](srd_spells_water_breathing.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_restauration_inferieure.md b/Data/HD/hd_spells_restauration_inferieure.md index 44b725e7..cbb225f7 100644 --- a/Data/HD/hd_spells_restauration_inferieure.md +++ b/Data/HD/hd_spells_restauration_inferieure.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Restauration inférieure +AltName: '[Lesser Restoration](srd_spells_lesser_restoration.md)' Type: Abjuration +Level: 2 CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#restauration-inférieure ParentLink: spells_hd.md#sorts -Name: Restauration inférieure ParentName: Sorts NameLevel: 1 -AltName: '[Lesser Restoration](srd_spells_lesser_restoration.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_restauration_superieure.md b/Data/HD/hd_spells_restauration_superieure.md index 67d8b386..33dc74f4 100644 --- a/Data/HD/hd_spells_restauration_superieure.md +++ b/Data/HD/hd_spells_restauration_superieure.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Restauration supérieure +AltName: '[Greater Restoration](srd_spells_greater_restoration.md)' Type: Abjuration +Level: 5 CastingTime: 1 action Range: contact Components: V, S, M (poussière de diamant d'une valeur minimale de 100 po, que le sort consume) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#restauration-supérieure ParentLink: spells_hd.md#sorts -Name: Restauration supérieure ParentName: Sorts NameLevel: 1 -AltName: '[Greater Restoration](srd_spells_greater_restoration.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_resurrection.md b/Data/HD/hd_spells_resurrection.md index 06d77ca4..2d2deab8 100644 --- a/Data/HD/hd_spells_resurrection.md +++ b/Data/HD/hd_spells_resurrection.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Résurrection +AltName: '[Resurrection](srd_spells_resurrection.md)' Type: Nécromancie +Level: 7 CastingTime: 1 heure Range: contact Components: V, S, M (un diamant d'une valeur minimale de 1 000 po, que le sort consume) Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#résurrection ParentLink: spells_hd.md#sorts -Name: Résurrection ParentName: Sorts NameLevel: 1 -AltName: '[Resurrection](srd_spells_resurrection.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_resurrection_supreme.md b/Data/HD/hd_spells_resurrection_supreme.md index b6df9c84..877335b5 100644 --- a/Data/HD/hd_spells_resurrection_supreme.md +++ b/Data/HD/hd_spells_resurrection_supreme.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Résurrection suprême +AltName: '[True Resurrection](srd_spells_true_resurrection.md)' Type: Nécromancie +Level: 9 CastingTime: 1 heure Range: contact Components: V, S, M (un peu d'eau bénite à asperger et des diamants d'une valeur minimale de 25 000 po, que le sort consume) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#résurrection-suprême ParentLink: spells_hd.md#sorts -Name: Résurrection suprême ParentName: Sorts NameLevel: 1 -AltName: '[True Resurrection](srd_spells_true_resurrection.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_reve.md b/Data/HD/hd_spells_reve.md index 9e977eb1..2eac1b6e 100644 --- a/Data/HD/hd_spells_reve.md +++ b/Data/HD/hd_spells_reve.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Rêve +AltName: '[Dream](srd_spells_dream.md)' Type: Illusion +Level: 5 CastingTime: 1 minute Range: spéciale Components: V, S, M (une poignée de sable, une goutte d'encre et une plume d'écrivain prélevée sur un oiseau endormi) Duration: 8 heures Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#rêve ParentLink: spells_hd.md#sorts -Name: Rêve ParentName: Sorts NameLevel: 1 -AltName: '[Dream](srd_spells_dream.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_revigorer.md b/Data/HD/hd_spells_revigorer.md index ece17e21..c1413749 100644 --- a/Data/HD/hd_spells_revigorer.md +++ b/Data/HD/hd_spells_revigorer.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Revigorer +AltName: '[Revivify](srd_spells_revivify.md)' Type: Nécromancie +Level: 3 CastingTime: 1 action Range: contact Components: V, S, M (diamant d'une valeur de 300 po, que le sort consume) Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#revigorer ParentLink: spells_hd.md#sorts -Name: Revigorer ParentName: Sorts NameLevel: 1 -AltName: '[Revivify](srd_spells_revivify.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sanctification.md b/Data/HD/hd_spells_sanctification.md index d613e4a4..9a5ff56b 100644 --- a/Data/HD/hd_spells_sanctification.md +++ b/Data/HD/hd_spells_sanctification.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Sanctification +AltName: '[Hallow](srd_spells_hallow.md)' Type: Évocation +Level: 5 CastingTime: 24 heures Range: contact Components: V, S, M (herbes, huiles et encens d'une valeur minimale de 1 000 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#sanctification ParentLink: spells_hd.md#sorts -Name: Sanctification ParentName: Sorts NameLevel: 1 -AltName: '[Hallow](srd_spells_hallow.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sanctuaire.md b/Data/HD/hd_spells_sanctuaire.md index af1871a2..9f7bc966 100644 --- a/Data/HD/hd_spells_sanctuaire.md +++ b/Data/HD/hd_spells_sanctuaire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Sanctuaire +AltName: '[Sanctuary](srd_spells_sanctuary.md)' Type: Abjuration +Level: 1 CastingTime: 1 action bonus Range: 9 mètres Components: V, S, M (un petit miroir en argent) Duration: 1 minute Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#sanctuaire ParentLink: spells_hd.md#sorts -Name: Sanctuaire ParentName: Sorts NameLevel: 1 -AltName: '[Sanctuary](srd_spells_sanctuary.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sanctuaire_prive.md b/Data/HD/hd_spells_sanctuaire_prive.md index e4138f5f..c888d26f 100644 --- a/Data/HD/hd_spells_sanctuaire_prive.md +++ b/Data/HD/hd_spells_sanctuaire_prive.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Sanctuaire privé +AltName: '[Private Sanctum](srd_spells_private_sanctum.md)' Type: Abjuration +Level: 4 CastingTime: 10 minutes Range: 36 mètres Components: V, S, M (une mince feuille de plomb, un morceau de verre opaque, un bout de coton ou de tissu et de la chrysolite en poudre) Duration: 24 heures Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#sanctuaire-privé ParentLink: spells_hd.md#sorts -Name: Sanctuaire privé ParentName: Sorts NameLevel: 1 -AltName: '[Private Sanctum](srd_spells_private_sanctum.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sang_du_demon.md b/Data/HD/hd_spells_sang_du_demon.md index 4d980e67..90d43b24 100644 --- a/Data/HD/hd_spells_sang_du_demon.md +++ b/Data/HD/hd_spells_sang_du_demon.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Sang du démon Type: Nécromancie +Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (une fiole d'un mélange de sang et d'acide) Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#sang-du-démon ParentLink: spells_hd.md#sorts -Name: Sang du démon ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_saut.md b/Data/HD/hd_spells_saut.md index 85efa12a..b60708e0 100644 --- a/Data/HD/hd_spells_saut.md +++ b/Data/HD/hd_spells_saut.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Saut +AltName: '[Jump](srd_spells_jump.md)' Type: Transmutation +Level: 1 CastingTime: 1 action Range: contact Components: V, S, M (une patte arrière de sauterelle) Duration: 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#saut ParentLink: spells_hd.md#sorts -Name: Saut ParentName: Sorts NameLevel: 1 -AltName: '[Jump](srd_spells_jump.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_scrutation.md b/Data/HD/hd_spells_scrutation.md index cccb722e..99b7e9c3 100644 --- a/Data/HD/hd_spells_scrutation.md +++ b/Data/HD/hd_spells_scrutation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Scrutation +AltName: '[Scrying](srd_spells_scrying.md)' Type: Divination +Level: 5 CastingTime: 10 minutes Range: personnelle Components: V, S, M (un focaliseur d'une valeur minimale de 1 000 po comme une boule de cristal, un miroir en argent ou un bénitier rempli d'eau bénite) Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#scrutation ParentLink: spells_hd.md#sorts -Name: Scrutation ParentName: Sorts NameLevel: 1 -AltName: '[Scrying](srd_spells_scrying.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sequestration.md b/Data/HD/hd_spells_sequestration.md index 22744fb2..200d11b2 100644 --- a/Data/HD/hd_spells_sequestration.md +++ b/Data/HD/hd_spells_sequestration.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Séquestration +AltName: '[Sequester](srd_spells_sequester.md)' Type: Transmutation +Level: 7 CastingTime: 1 action Range: contact Components: V, S, M (une poudre de diamant, d'émeraude, de rubis et de saphir d'une valeur minimum de 5 000 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#séquestration ParentLink: spells_hd.md#sorts -Name: Séquestration ParentName: Sorts NameLevel: 1 -AltName: '[Sequester](srd_spells_sequester.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_serviteur_invisible.md b/Data/HD/hd_spells_serviteur_invisible.md index ac27a91c..9037e5dd 100644 --- a/Data/HD/hd_spells_serviteur_invisible.md +++ b/Data/HD/hd_spells_serviteur_invisible.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Serviteur invisible +AltName: '[Unseen Servant](srd_spells_unseen_servant.md)' Type: Invocation -Ritual: rituel +Level: 1 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un bout de ficelle et un morceau de bois) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#serviteur-invisible ParentLink: spells_hd.md#sorts -Name: Serviteur invisible ParentName: Sorts NameLevel: 1 -AltName: '[Unseen Servant](srd_spells_unseen_servant.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_silence.md b/Data/HD/hd_spells_silence.md index aa69100b..756c9e90 100644 --- a/Data/HD/hd_spells_silence.md +++ b/Data/HD/hd_spells_silence.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Silence +AltName: '[Silence](srd_spells_silence.md)' Type: Illusion -Ritual: rituel +Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#silence ParentLink: spells_hd.md#sorts -Name: Silence ParentName: Sorts NameLevel: 1 -AltName: '[Silence](srd_spells_silence.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_simulacre.md b/Data/HD/hd_spells_simulacre.md index 3338c512..3b3b67ce 100644 --- a/Data/HD/hd_spells_simulacre.md +++ b/Data/HD/hd_spells_simulacre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Simulacre +AltName: '[Simulacrum](srd_spells_simulacrum.md)' Type: Illusion +Level: 7 CastingTime: 12 heures Range: contact Components: V, S, M (de la neige ou de la glace en quantité suffisante pour faire une reproduction grandeur nature de la créature à dupliquer ; des cheveux, des rognures d'ongles ou un autre échantillon de la créature à dupliquer, à placer dans la neige ou la glace, et de la poudre de rubis d'une valeur minimale de 1 500 po que le sort consume, à saupoudrer sur le double) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#simulacre ParentLink: spells_hd.md#sorts -Name: Simulacre ParentName: Sorts NameLevel: 1 -AltName: '[Simulacrum](srd_spells_simulacrum.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_simulacre_de_vie.md b/Data/HD/hd_spells_simulacre_de_vie.md index 55d7d1dc..3a88879d 100644 --- a/Data/HD/hd_spells_simulacre_de_vie.md +++ b/Data/HD/hd_spells_simulacre_de_vie.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Simulacre de vie +AltName: '[False Life](srd_spells_false_life.md)' Type: Nécromancie +Level: 1 CastingTime: 1 action Range: personnelle Components: V, S, M (une petite quantité d'alcool ou de spiritueux) Duration: 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#simulacre-de-vie ParentLink: spells_hd.md#sorts -Name: Simulacre de vie ParentName: Sorts NameLevel: 1 -AltName: '[False Life](srd_spells_false_life.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_soin_des_blessures.md b/Data/HD/hd_spells_soin_des_blessures.md index 6d2fcc9c..cb0ac7f5 100644 --- a/Data/HD/hd_spells_soin_des_blessures.md +++ b/Data/HD/hd_spells_soin_des_blessures.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Soin des blessures +AltName: '[Cure Wounds](srd_spells_cure_wounds.md)' Type: Évocation +Level: 1 CastingTime: 1 action Range: contact Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md), [Paladin](hd_paladin.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#soin-des-blessures ParentLink: spells_hd.md#sorts -Name: Soin des blessures ParentName: Sorts NameLevel: 1 -AltName: '[Cure Wounds](srd_spells_cure_wounds.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_soin_des_blessures_de_groupe.md b/Data/HD/hd_spells_soin_des_blessures_de_groupe.md index da5cc40e..a112afeb 100644 --- a/Data/HD/hd_spells_soin_des_blessures_de_groupe.md +++ b/Data/HD/hd_spells_soin_des_blessures_de_groupe.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Soin des blessures de groupe +AltName: '[Mass Cure Wounds](srd_spells_mass_cure_wounds.md)' Type: Évocation +Level: 5 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#soin-des-blessures-de-groupe ParentLink: spells_hd.md#sorts -Name: Soin des blessures de groupe ParentName: Sorts NameLevel: 1 -AltName: '[Mass Cure Wounds](srd_spells_mass_cure_wounds.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sommeil.md b/Data/HD/hd_spells_sommeil.md index baac8b07..900133bc 100644 --- a/Data/HD/hd_spells_sommeil.md +++ b/Data/HD/hd_spells_sommeil.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Sommeil +AltName: '[Sleep](srd_spells_sleep.md)' Type: Enchantement +Level: 1 CastingTime: 1 action Range: 27 mètres Components: V, S, M (une pincée de sable fin, des pétales de rose ou un criquet) Duration: 1 minute Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#sommeil ParentLink: spells_hd.md#sorts -Name: Sommeil ParentName: Sorts NameLevel: 1 -AltName: '[Sleep](srd_spells_sleep.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_souhait.md b/Data/HD/hd_spells_souhait.md index f97dfbb7..e3ddf673 100644 --- a/Data/HD/hd_spells_souhait.md +++ b/Data/HD/hd_spells_souhait.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Souhait +AltName: '[Wish](srd_spells_wish.md)' Type: Invocation +Level: 9 CastingTime: 1 action Range: personnelle Components: V Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#souhait ParentLink: spells_hd.md#sorts -Name: Souhait ParentName: Sorts NameLevel: 1 -AltName: '[Wish](srd_spells_wish.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sphere_de_feu.md b/Data/HD/hd_spells_sphere_de_feu.md index 6ccffa51..90287bad 100644 --- a/Data/HD/hd_spells_sphere_de_feu.md +++ b/Data/HD/hd_spells_sphere_de_feu.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Sphère de feu +AltName: '[Flaming Sphere](srd_spells_flaming_sphere.md)' Type: Invocation +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un bout de suif, une pincée de soufre et un peu de poudre de fer) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#sphère-de-feu ParentLink: spells_hd.md#sorts -Name: Sphère de feu ParentName: Sorts NameLevel: 1 -AltName: '[Flaming Sphere](srd_spells_flaming_sphere.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sphere_glacee.md b/Data/HD/hd_spells_sphere_glacee.md index 990848a7..8a4d8d2a 100644 --- a/Data/HD/hd_spells_sphere_glacee.md +++ b/Data/HD/hd_spells_sphere_glacee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Sphère glacée +AltName: '[Freezing Sphere](srd_spells_freezing_sphere.md)' Type: Évocation +Level: 6 CastingTime: 1 action Range: 90 mètres Components: V, S, M (une petite sphère de cristal) Duration: instantanée Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#sphère-glacée ParentLink: spells_hd.md#sorts -Name: Sphère glacée ParentName: Sorts NameLevel: 1 -AltName: '[Freezing Sphere](srd_spells_freezing_sphere.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_sphere_resiliente.md b/Data/HD/hd_spells_sphere_resiliente.md index 8cca2576..bb2ac531 100644 --- a/Data/HD/hd_spells_sphere_resiliente.md +++ b/Data/HD/hd_spells_sphere_resiliente.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Sphère résiliente +AltName: '[Resilient Sphere](srd_spells_resilient_sphere.md)' Type: Évocation +Level: 4 CastingTime: 1 action Range: 9 mètres Components: V, S, M (un bout de cristal transparent hémisphérique et son équivalent en gomme arabique) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#sphère-résiliente ParentLink: spells_hd.md#sorts -Name: Sphère résiliente ParentName: Sorts NameLevel: 1 -AltName: '[Resilient Sphere](srd_spells_resilient_sphere.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_stalagmites_fulgurantes.md b/Data/HD/hd_spells_stalagmites_fulgurantes.md index 5d67977c..bd1df685 100644 --- a/Data/HD/hd_spells_stalagmites_fulgurantes.md +++ b/Data/HD/hd_spells_stalagmites_fulgurantes.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Stalagmites fulgurantes Type: Invocation +Level: 2 CastingTime: 1 action Range: 30 mètres Components: V, S Duration: concentration, jusqu'à 1 minute. Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p) Id: spells_hd.md#stalagmites-fulgurantes ParentLink: spells_hd.md#sorts -Name: Stalagmites fulgurantes ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_strangulation.md b/Data/HD/hd_spells_strangulation.md index 82000b18..2f7ccb53 100644 --- a/Data/HD/hd_spells_strangulation.md +++ b/Data/HD/hd_spells_strangulation.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Strangulation Type: Invocation +Level: 1 CastingTime: 1 action Range: 9 m Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p) Id: spells_hd.md#strangulation ParentLink: spells_hd.md#sorts -Name: Strangulation ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_suggestion.md b/Data/HD/hd_spells_suggestion.md index ef796019..fc1c3a09 100644 --- a/Data/HD/hd_spells_suggestion.md +++ b/Data/HD/hd_spells_suggestion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Suggestion +AltName: '[Suggestion](srd_spells_suggestion.md)' Type: Enchantement +Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, M (une langue de serpent et soit un rayon de miel, soit une goutte d'huile d'olive) Duration: concentration, jusqu'à 8 heures Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#suggestion ParentLink: spells_hd.md#sorts -Name: Suggestion ParentName: Sorts NameLevel: 1 -AltName: '[Suggestion](srd_spells_suggestion.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_suggestion_de_groupe.md b/Data/HD/hd_spells_suggestion_de_groupe.md index 19c97d21..dd602129 100644 --- a/Data/HD/hd_spells_suggestion_de_groupe.md +++ b/Data/HD/hd_spells_suggestion_de_groupe.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Suggestion de groupe +AltName: '[Mass Suggestion](srd_spells_mass_suggestion.md)' Type: Enchantement +Level: 6 CastingTime: 1 action Range: 18 mètres Components: V, M (une langue de serpent et soit un rayon de miel, soit une goutte d'huile d'olive) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#suggestion-de-groupe ParentLink: spells_hd.md#sorts -Name: Suggestion de groupe ParentName: Sorts NameLevel: 1 -AltName: '[Mass Suggestion](srd_spells_mass_suggestion.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_symbole.md b/Data/HD/hd_spells_symbole.md index c9ba8a28..4d6a09d8 100644 --- a/Data/HD/hd_spells_symbole.md +++ b/Data/HD/hd_spells_symbole.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Symbole +AltName: '[Symbol](srd_spells_symbol.md)' Type: Abjuration +Level: 7 CastingTime: 1 minute Range: contact Components: V, S, M (mercure, phosphore et poudre de diamant et d'opale d'une valeur totale d'au moins 1 000 po, que le sort consume) Duration: jusqu'à dissipation ou déclenchement Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#symbole ParentLink: spells_hd.md#sorts -Name: Symbole ParentName: Sorts NameLevel: 1 -AltName: '[Symbol](srd_spells_symbol.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_telekinesie.md b/Data/HD/hd_spells_telekinesie.md index a2ff0878..9c277909 100644 --- a/Data/HD/hd_spells_telekinesie.md +++ b/Data/HD/hd_spells_telekinesie.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Télékinésie +AltName: '[Telekinesis](srd_spells_telekinesis.md)' Type: Transmutation +Level: 5 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#télékinésie ParentLink: spells_hd.md#sorts -Name: Télékinésie ParentName: Sorts NameLevel: 1 -AltName: '[Telekinesis](srd_spells_telekinesis.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_teleportation.md b/Data/HD/hd_spells_teleportation.md index 2fdf37dd..9a2e2ef5 100644 --- a/Data/HD/hd_spells_teleportation.md +++ b/Data/HD/hd_spells_teleportation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Téléportation +AltName: '[Teleport](srd_spells_teleport.md)' Type: Invocation +Level: 7 CastingTime: 1 action Range: 3 mètres Components: V Duration: instantanée Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#téléportation ParentLink: spells_hd.md#sorts -Name: Téléportation ParentName: Sorts NameLevel: 1 -AltName: '[Teleport](srd_spells_teleport.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tempete_de_feu.md b/Data/HD/hd_spells_tempete_de_feu.md index 3eeea974..05c1ce1a 100644 --- a/Data/HD/hd_spells_tempete_de_feu.md +++ b/Data/HD/hd_spells_tempete_de_feu.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 7 +Name: Tempête de feu +AltName: '[Fire Storm](srd_spells_fire_storm.md)' Type: Évocation +Level: 7 CastingTime: 1 action Range: 45 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#tempête-de-feu ParentLink: spells_hd.md#sorts -Name: Tempête de feu ParentName: Sorts NameLevel: 1 -AltName: '[Fire Storm](srd_spells_fire_storm.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tempete_de_grele.md b/Data/HD/hd_spells_tempete_de_grele.md index 2fb389c5..6882eaa7 100644 --- a/Data/HD/hd_spells_tempete_de_grele.md +++ b/Data/HD/hd_spells_tempete_de_grele.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Tempête de grêle +AltName: '[Ice Storm](srd_spells_ice_storm.md)' Type: Évocation +Level: 4 CastingTime: 1 action Range: 90 mètres Components: V, S, M (une pincée de poussière et quelques gouttes d'eau) Duration: instantanée Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#tempête-de-grêle ParentLink: spells_hd.md#sorts -Name: Tempête de grêle ParentName: Sorts NameLevel: 1 -AltName: '[Ice Storm](srd_spells_ice_storm.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tempete_de_neige.md b/Data/HD/hd_spells_tempete_de_neige.md index 3ab1e709..32a8e103 100644 --- a/Data/HD/hd_spells_tempete_de_neige.md +++ b/Data/HD/hd_spells_tempete_de_neige.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Tempête de neige +AltName: '[Sleet Storm](srd_spells_sleet_storm.md)' Type: Invocation +Level: 3 CastingTime: 1 action Range: 45 mètres Components: V, S, M (une pincée de poussière et quelques gouttes d'eau) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#tempête-de-neige ParentLink: spells_hd.md#sorts -Name: Tempête de neige ParentName: Sorts NameLevel: 1 -AltName: '[Sleet Storm](srd_spells_sleet_storm.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tempete_de_sable.md b/Data/HD/hd_spells_tempete_de_sable.md index 90cf4e3e..1dc3bee2 100644 --- a/Data/HD/hd_spells_tempete_de_sable.md +++ b/Data/HD/hd_spells_tempete_de_sable.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Tempête de sable Type: Invocation +Level: 8 CastingTime: 1 action Range: 1 kilomètre Components: V, S, M (une rose des sables) Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md)' +Source: (MDR p) Id: spells_hd.md#tempête-de-sable ParentLink: spells_hd.md#sorts -Name: Tempête de sable ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tempete_vengeresse.md b/Data/HD/hd_spells_tempete_vengeresse.md index 4bb74b7b..29350e79 100644 --- a/Data/HD/hd_spells_tempete_vengeresse.md +++ b/Data/HD/hd_spells_tempete_vengeresse.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 9 +Name: Tempête vengeresse +AltName: '[Storm of Vengeance](srd_spells_storm_of_vengeance.md)' Type: Invocation +Level: 9 CastingTime: 1 action Range: champ de vision Components: V, S Duration: concentration, jusqu'à 1 minute Classes: '[Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#tempête-vengeresse ParentLink: spells_hd.md#sorts -Name: Tempête vengeresse ParentName: Sorts NameLevel: 1 -AltName: '[Storm of Vengeance](srd_spells_storm_of_vengeance.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tenebres.md b/Data/HD/hd_spells_tenebres.md index eb9e5345..49b8423c 100644 --- a/Data/HD/hd_spells_tenebres.md +++ b/Data/HD/hd_spells_tenebres.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Ténèbres +AltName: '[Darkness](srd_spells_darkness.md)' Type: Évocation +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, M (des poils de chauve-souris et une goutte de poix ou un bout de charbon) Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#ténèbres ParentLink: spells_hd.md#sorts -Name: Ténèbres ParentName: Sorts NameLevel: 1 -AltName: '[Darkness](srd_spells_darkness.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tentacules_noirs.md b/Data/HD/hd_spells_tentacules_noirs.md index 96901d3c..645a8b3f 100644 --- a/Data/HD/hd_spells_tentacules_noirs.md +++ b/Data/HD/hd_spells_tentacules_noirs.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Tentacules noirs +AltName: '[Black Tentacles](srd_spells_black_tentacles.md)' Type: Invocation +Level: 4 CastingTime: 1 action Range: 27 mètres Components: V, S, M (un bout de tentacule appartenant à une pieuvre ou un calmar géant) Duration: concentration, jusqu'à 1 minute Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#tentacules-noirs ParentLink: spells_hd.md#sorts -Name: Tentacules noirs ParentName: Sorts NameLevel: 1 -AltName: '[Black Tentacles](srd_spells_black_tentacles.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_terrain_hallucinatoire.md b/Data/HD/hd_spells_terrain_hallucinatoire.md index f33e1ad8..e24250c9 100644 --- a/Data/HD/hd_spells_terrain_hallucinatoire.md +++ b/Data/HD/hd_spells_terrain_hallucinatoire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 4 +Name: Terrain hallucinatoire +AltName: '[Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)' Type: Illusion +Level: 4 CastingTime: 10 minutes Range: 90 mètres Components: V, S, M (une pierre, une brindille et un bout de plante verte) Duration: 24 heures Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#terrain-hallucinatoire ParentLink: spells_hd.md#sorts -Name: Terrain hallucinatoire ParentName: Sorts NameLevel: 1 -AltName: '[Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_texte_illusoire.md b/Data/HD/hd_spells_texte_illusoire.md index f27a938e..24078c60 100644 --- a/Data/HD/hd_spells_texte_illusoire.md +++ b/Data/HD/hd_spells_texte_illusoire.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Texte illusoire +AltName: '[Illusory Script](srd_spells_illusory_script.md)' Type: Illusion -Ritual: rituel +Level: 1 CastingTime: 1 minute Range: contact Components: S, M (de l'encre à base de plomb valant au minimum 10 po, que le sort consume) Duration: 10 jours Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) +Ritual: rituel Id: spells_hd.md#texte-illusoire ParentLink: spells_hd.md#sorts -Name: Texte illusoire ParentName: Sorts NameLevel: 1 -AltName: '[Illusory Script](srd_spells_illusory_script.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_thaumaturgie.md b/Data/HD/hd_spells_thaumaturgie.md index 2c4937b8..2e1f67c4 100644 --- a/Data/HD/hd_spells_thaumaturgie.md +++ b/Data/HD/hd_spells_thaumaturgie.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Thaumaturgie +AltName: '[Thaumaturgy](srd_spells_thaumaturgy.md)' Type: Transmutation +Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: V Duration: jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#thaumaturgie ParentLink: spells_hd.md#sorts -Name: Thaumaturgie ParentName: Sorts NameLevel: 1 -AltName: '[Thaumaturgy](srd_spells_thaumaturgy.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_toile_daraignee.md b/Data/HD/hd_spells_toile_daraignee.md index b196cceb..07ddb50f 100644 --- a/Data/HD/hd_spells_toile_daraignee.md +++ b/Data/HD/hd_spells_toile_daraignee.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Toile d'araignée +AltName: '[Web](srd_spells_web.md)' Type: Invocation +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S, M (un bout de toile d'araignée) Duration: concentration, jusqu'à 1 heure Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#toile-daraignée ParentLink: spells_hd.md#sorts -Name: Toile d'araignée ParentName: Sorts NameLevel: 1 -AltName: '[Web](srd_spells_web.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_trait_de_feu.md b/Data/HD/hd_spells_trait_de_feu.md index 737fee0e..8ecdcd85 100644 --- a/Data/HD/hd_spells_trait_de_feu.md +++ b/Data/HD/hd_spells_trait_de_feu.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Trait de feu +AltName: '[Fire Bolt](srd_spells_fire_bolt.md)' Type: Évocation +Level: tour de magie CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#trait-de-feu ParentLink: spells_hd.md#sorts -Name: Trait de feu ParentName: Sorts NameLevel: 1 -AltName: '[Fire Bolt](srd_spells_fire_bolt.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_transpercer.md b/Data/HD/hd_spells_transpercer.md index 68fdc4cf..a381d28a 100644 --- a/Data/HD/hd_spells_transpercer.md +++ b/Data/HD/hd_spells_transpercer.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Transpercer Type: Invocation +Level: 1 CastingTime: 1 action bonus Range: personnelle Components: V Duration: concentration, jusqu'à 1 minute Classes: '[Rôdeur](hd_ranger.md)' +Source: (MDR p) Id: spells_hd.md#transpercer ParentLink: spells_hd.md#sorts -Name: Transpercer ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_transport_vegetal.md b/Data/HD/hd_spells_transport_vegetal.md index 58705647..3883fc5e 100644 --- a/Data/HD/hd_spells_transport_vegetal.md +++ b/Data/HD/hd_spells_transport_vegetal.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Transport végétal +AltName: '[Transport via Plants](srd_spells_transport_via_plants.md)' Type: Invocation +Level: 6 CastingTime: 1 action Range: 3 mètres Components: V, S Duration: 1 round Classes: '[Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#transport-végétal ParentLink: spells_hd.md#sorts -Name: Transport végétal ParentName: Sorts NameLevel: 1 -AltName: '[Transport via Plants](srd_spells_transport_via_plants.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tremblement_de_terre.md b/Data/HD/hd_spells_tremblement_de_terre.md index 8ae5c3f0..6f8c12c1 100644 --- a/Data/HD/hd_spells_tremblement_de_terre.md +++ b/Data/HD/hd_spells_tremblement_de_terre.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 8 +Name: Tremblement de terre +AltName: '[Earthquake](srd_spells_earthquake.md)' Type: Évocation +Level: 8 CastingTime: 1 action Range: 150 mètres Components: V, S, M (une pincée de poussière, un caillou et un peu d'argile) Duration: concentration, jusqu'à 1 minute Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#tremblement-de-terre ParentLink: spells_hd.md#sorts -Name: Tremblement de terre ParentName: Sorts NameLevel: 1 -AltName: '[Earthquake](srd_spells_earthquake.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_tromperie.md b/Data/HD/hd_spells_tromperie.md index a7db3f13..3cdac722 100644 --- a/Data/HD/hd_spells_tromperie.md +++ b/Data/HD/hd_spells_tromperie.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 5 +Name: Tromperie +AltName: '[Mislead](srd_spells_mislead.md)' Type: Illusion +Level: 5 CastingTime: 1 action Range: personnelle Components: S Duration: concentration, jusqu'à 1 heure Classes: '[Barde](hd_bard.md), [Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#tromperie ParentLink: spells_hd.md#sorts -Name: Tromperie ParentName: Sorts NameLevel: 1 -AltName: '[Mislead](srd_spells_mislead.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_trouver_les_pieges.md b/Data/HD/hd_spells_trouver_les_pieges.md index 6c4420cd..4de9e7e7 100644 --- a/Data/HD/hd_spells_trouver_les_pieges.md +++ b/Data/HD/hd_spells_trouver_les_pieges.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Trouver les pièges +AltName: '[Find Traps](srd_spells_find_traps.md)' Type: Divination +Level: 2 CastingTime: 1 action Range: 36 mètres Components: V, S Duration: instantanée Classes: '[Clerc](hd_cleric.md), [Druide](hd_druid.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#trouver-les-pièges ParentLink: spells_hd.md#sorts -Name: Trouver les pièges ParentName: Sorts NameLevel: 1 -AltName: '[Find Traps](srd_spells_find_traps.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_trouver_un_chemin.md b/Data/HD/hd_spells_trouver_un_chemin.md index d4c66262..ec7548e9 100644 --- a/Data/HD/hd_spells_trouver_un_chemin.md +++ b/Data/HD/hd_spells_trouver_un_chemin.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Trouver un chemin +AltName: '[Find the Path](srd_spells_find_the_path.md)' Type: Divination +Level: 6 CastingTime: 1 minute Range: personnelle Components: V, S, M (un ensemble d'instruments de divination comme des os, des bâtonnets en ivoire, des cartes, des dents ou des runes gravées d'une valeur de 100 po et un objet venant de l'endroit que vous cherchez) Duration: concentration, jusqu'à 1 jour Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Druide](hd_druid.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#trouver-un-chemin ParentLink: spells_hd.md#sorts -Name: Trouver un chemin ParentName: Sorts NameLevel: 1 -AltName: '[Find the Path](srd_spells_find_the_path.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_trouver_une_monture.md b/Data/HD/hd_spells_trouver_une_monture.md index c46a051e..4659db0f 100644 --- a/Data/HD/hd_spells_trouver_une_monture.md +++ b/Data/HD/hd_spells_trouver_une_monture.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Trouver une monture +AltName: '[Find Steed](srd_spells_find_steed.md)' Type: Invocation +Level: 2 CastingTime: 10 minutes Range: 9 mètres Components: V, S Duration: instantanée Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#trouver-une-monture ParentLink: spells_hd.md#sorts -Name: Trouver une monture ParentName: Sorts NameLevel: 1 -AltName: '[Find Steed](srd_spells_find_steed.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_vague_tonnante.md b/Data/HD/hd_spells_vague_tonnante.md index 112ce37d..65abf165 100644 --- a/Data/HD/hd_spells_vague_tonnante.md +++ b/Data/HD/hd_spells_vague_tonnante.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 1 +Name: Vague tonnante +AltName: '[Thunderwave](srd_spells_thunderwave.md)' Type: Évocation +Level: 1 CastingTime: 1 action Range: personnelle (cube de 4,50 mètres) Components: V, S Duration: instantanée Classes: '[Barde](hd_bard.md), [Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#vague-tonnante ParentLink: spells_hd.md#sorts -Name: Vague tonnante ParentName: Sorts NameLevel: 1 -AltName: '[Thunderwave](srd_spells_thunderwave.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_verrou_magique.md b/Data/HD/hd_spells_verrou_magique.md index 5e643b84..bef05ccc 100644 --- a/Data/HD/hd_spells_verrou_magique.md +++ b/Data/HD/hd_spells_verrou_magique.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Verrou magique +AltName: '[Arcane Lock](srd_spells_arcane_lock.md)' Type: Abjuration +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (poussière d'or d'une valeur minimum de 25 po, que le sort consume) Duration: jusqu'à dissipation Classes: '[Magicien](hd_wizard.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#verrou-magique ParentLink: spells_hd.md#sorts -Name: Verrou magique ParentName: Sorts NameLevel: 1 -AltName: '[Arcane Lock](srd_spells_arcane_lock.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_viser_juste.md b/Data/HD/hd_spells_viser_juste.md index f9b32ea8..14782983 100644 --- a/Data/HD/hd_spells_viser_juste.md +++ b/Data/HD/hd_spells_viser_juste.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: tour de magie +Name: Viser juste +AltName: '[True Strike](srd_spells_true_strike.md)' Type: Divination +Level: tour de magie CastingTime: 1 action Range: 9 mètres Components: S Duration: concentration, jusqu'à 1 round Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#viser-juste ParentLink: spells_hd.md#sorts -Name: Viser juste ParentName: Sorts NameLevel: 1 -AltName: '[True Strike](srd_spells_true_strike.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_vision_dans_le_noir.md b/Data/HD/hd_spells_vision_dans_le_noir.md index 75c98434..54df30c3 100644 --- a/Data/HD/hd_spells_vision_dans_le_noir.md +++ b/Data/HD/hd_spells_vision_dans_le_noir.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Vision dans le noir +AltName: '[Darkvision](srd_spells_darkvision.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: contact Components: V, S, M (une pincée de carotte séchée ou une agate) Duration: 8 heures Classes: '[Druide](hd_druid.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Ombrelame](hd_rogue_ombrelame.md), [Rôdeur](hd_ranger.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#vision-dans-le-noir ParentLink: spells_hd.md#sorts -Name: Vision dans le noir ParentName: Sorts NameLevel: 1 -AltName: '[Darkvision](srd_spells_darkvision.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_vision_supreme.md b/Data/HD/hd_spells_vision_supreme.md index f5d90b9e..5c538bb7 100644 --- a/Data/HD/hd_spells_vision_supreme.md +++ b/Data/HD/hd_spells_vision_supreme.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 6 +Name: Vision suprême +AltName: '[True Seeing](srd_spells_true_seeing.md)' Type: Divination +Level: 6 CastingTime: 1 action Range: contact Components: V, S, M (un collyre coûtant 25 po, fait de poudre de champignon, de safran et de graisse, que le sort consume) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#vision-suprême ParentLink: spells_hd.md#sorts -Name: Vision suprême ParentName: Sorts NameLevel: 1 -AltName: '[True Seeing](srd_spells_true_seeing.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_vitalite.md b/Data/HD/hd_spells_vitalite.md index 46fec846..ad93d372 100644 --- a/Data/HD/hd_spells_vitalite.md +++ b/Data/HD/hd_spells_vitalite.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Vitalité Type: Évocation +Level: 3 CastingTime: 1 action Range: 9 mètres Components: V, S Duration: 1 minute Classes: '[Paladin](hd_paladin.md)' +Source: (MDR p) Id: spells_hd.md#vitalité ParentLink: spells_hd.md#sorts -Name: Vitalité ParentName: Sorts NameLevel: 1 -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_voir_linvisible.md b/Data/HD/hd_spells_voir_linvisible.md index c2354bf0..451fb93a 100644 --- a/Data/HD/hd_spells_voir_linvisible.md +++ b/Data/HD/hd_spells_voir_linvisible.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Voir l'invisible +AltName: '[See Invisibility](srd_spells_see_invisibility.md)' Type: Divination +Level: 2 CastingTime: 1 action Range: personnelle Components: V, S, M (une pincée de talc et un saupoudrage de poudre d'argent) Duration: 1 heure Classes: '[Barde](hd_bard.md), [Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md)' +Source: (MDR p) Id: spells_hd.md#voir-linvisible ParentLink: spells_hd.md#sorts -Name: Voir l'invisible ParentName: Sorts NameLevel: 1 -AltName: '[See Invisibility](srd_spells_see_invisibility.md)' -Source: (MDR p) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_vol.md b/Data/HD/hd_spells_vol.md index 67e83ebb..9638bc67 100644 --- a/Data/HD/hd_spells_vol.md +++ b/Data/HD/hd_spells_vol.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 3 +Name: Vol +AltName: '[Fly](srd_spells_fly.md)' Type: Transmutation +Level: 3 CastingTime: 1 action Range: contact Components: V, S, M (une rémige) Duration: concentration, jusqu'à 10 minutes Classes: '[Ensorceleur](hd_sorcerer.md), [Magicien](hd_wizard.md), [Sorcier](hd_warlock.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#vol ParentLink: spells_hd.md#sorts -Name: Vol ParentName: Sorts NameLevel: 1 -AltName: '[Fly](srd_spells_fly.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_spells_zone_de_verite.md b/Data/HD/hd_spells_zone_de_verite.md index 6ed578a6..fc49490d 100644 --- a/Data/HD/hd_spells_zone_de_verite.md +++ b/Data/HD/hd_spells_zone_de_verite.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellHD -Level: 2 +Name: Zone de vérité +AltName: '[Zone of Truth](srd_spells_zone_of_truth.md)' Type: Enchantement +Level: 2 CastingTime: 1 action Range: 18 mètres Components: V, S Duration: 10 minutes Classes: '[Barde](hd_bard.md), [Clerc](hd_cleric.md), [Paladin](hd_paladin.md)' +Source: (MDR p)(SRD) Id: spells_hd.md#zone-de-vérité ParentLink: spells_hd.md#sorts -Name: Zone de vérité ParentName: Sorts NameLevel: 1 -AltName: '[Zone of Truth](srd_spells_zone_of_truth.md)' -Source: (MDR p)(SRD) Attributes: {} --- > [Sorts](hd_spells.md) diff --git a/Data/HD/hd_warlock.md b/Data/HD/hd_warlock.md index f413e624..3a0721ff 100644 --- a/Data/HD/hd_warlock.md +++ b/Data/HD/hd_warlock.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Sorcier +AltName: Warlock (SRD p46) +Source: (MDR p209) Id: warlock_hd.md#sorcier RootId: warlock_hd.md ParentLink: classes_hd.md -Name: Sorcier ParentName: Classes NameLevel: 1 -AltName: Warlock (SRD p46) -Source: (MDR p209) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/hd_wizard.md b/Data/HD/hd_wizard.md index ea5a0e72..3be0dca9 100644 --- a/Data/HD/hd_wizard.md +++ b/Data/HD/hd_wizard.md @@ -1,13 +1,13 @@ --- !ClassItem +Name: Magicien +AltName: Wizard (SRD p52) +Source: (MDR p166) Id: wizard_hd.md#magicien RootId: wizard_hd.md ParentLink: classes_hd.md -Name: Magicien ParentName: Classes NameLevel: 1 -AltName: Wizard (SRD p52) -Source: (MDR p166) Attributes: {} --- >  [Classes](hd_classes.md) diff --git a/Data/HD/sandbox%23agrandirretrecir.md b/Data/HD/sandbox%23agrandirretrecir.md index 45c4ee11..df7c8a39 100644 --- a/Data/HD/sandbox%23agrandirretrecir.md +++ b/Data/HD/sandbox%23agrandirretrecir.md @@ -1,7 +1,9 @@ --- !SpellItem -Level: 2 +Name: Agrandir/rétrécir +AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)' Type: Transmutation +Level: 2 CastingTime: 1 action Range: 9 mètres Components: V, S, M (une pincée de limaille de fer) @@ -9,10 +11,8 @@ Duration: concentration, jusqu'à 1 minute Classes: '[Ensorceleur], [Magicien]' Id: sandbox.md#agrandirrétrécir ParentLink: sandbox.md#sandbox -Name: Agrandir/rétrécir ParentName: Sandbox NameLevel: 1 -AltName: '[Enlarge/Reduce](srd_spells_enlargereduce.md)' Attributes: Book: (HD)(SRD p) --- diff --git a/Data/HD/srd_spells.md b/Data/HD/srd_spells.md index 590e1b72..f3fa99ba 100644 --- a/Data/HD/srd_spells.md +++ b/Data/HD/srd_spells.md @@ -1,5470 +1,5470 @@ --- !SpellItems +Family: SpellVO Classes: Bard|Cleric|Druid|Paladin|Ranger|Sorcerer|Wizard|Warlock Levels: Cantrip|Level 1|Level 2|Level 3|Level 4|Level 5|Level 6|Level 7|Level 8|Level 9 Schools: Abjuration|Conjuration|Divination|Enchantment|Evocation|Illusion|Necromancy|Transmutation Rituals: Ritual Sources: SRD -Family: SpellVO +Name: Spells (SRD p) +AltName: '[Sorts](hd_spells.md)' SubItems: - !SpellItem Family: SpellVO - Level: cantrip + Name: Acid Splash + AltName: '[Aspersion acide](hd_spells_aspersion_acide.md)' Type: Conjuration + Level: cantrip CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p114) Id: spells_vo.md#acid-splash ParentLink: spells_vo.md#spells-srd-p - Name: Acid Splash ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Aspersion acide](hd_spells_aspersion_acide.md)' - Source: (SRD p114) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Aid + AltName: '[Aide](hd_spells_aide.md)' Type: abjuration + Level: 2 CastingTime: 1 action Range: 30 feet Components: V, S, M (a tiny strip of white cloth) Duration: 8 hours Classes: Cleric, Paladin + Source: (SRD p114) Id: spells_vo.md#aid ParentLink: spells_vo.md#spells-srd-p - Name: Aid ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Aide](hd_spells_aide.md)' - Source: (SRD p114) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Alarm + AltName: '[Alarme](hd_spells_alarme.md)' Type: abjuration - Ritual: ritual + Level: 1 CastingTime: 1 minute Range: 30 feet Components: V, S, M (a tiny bell and a piece of fine silver wire) Duration: 8 hours Classes: Ranger, Wizard + Source: (SRD p114) + Ritual: ritual Id: spells_vo.md#alarm ParentLink: spells_vo.md#spells-srd-p - Name: Alarm ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Alarme](hd_spells_alarme.md)' - Source: (SRD p114) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Alter Self + AltName: '[Modifier son apparence](hd_spells_modifier_son_apparence.md)' Type: transmutation + Level: 2 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 1 hour Classes: Sorcerer, Wizard + Source: (SRD p114) Id: spells_vo.md#alter-self ParentLink: spells_vo.md#spells-srd-p - Name: Alter Self ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Modifier son apparence](hd_spells_modifier_son_apparence.md)' - Source: (SRD p114) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Animal Friendship + AltName: '[Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)' Type: enchantment + Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a morsel of food) Duration: 24 hours Classes: Bard, Druid, Ranger + Source: (SRD p115) Id: spells_vo.md#animal-friendship ParentLink: spells_vo.md#spells-srd-p - Name: Animal Friendship ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)' - Source: (SRD p115) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Animal Messenger + AltName: '[Messager animal](hd_spells_messager_animal.md)' Type: enchantment - Ritual: ritual + Level: 2 CastingTime: 1 action Range: 30 feet Components: V, S, M (a morsel of food) Duration: 24 hours Classes: Bard, Druid, Ranger + Source: (SRD p115) + Ritual: ritual Id: spells_vo.md#animal-messenger ParentLink: spells_vo.md#spells-srd-p - Name: Animal Messenger ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Messager animal](hd_spells_messager_animal.md)' - Source: (SRD p115) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Animal Shapes + AltName: '[Formes animales](hd_spells_formes_animales.md)' Type: transmutation + Level: 8 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 24 hours Classes: Druid + Source: (SRD p115) Id: spells_vo.md#animal-shapes ParentLink: spells_vo.md#spells-srd-p - Name: Animal Shapes ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Formes animales](hd_spells_formes_animales.md)' - Source: (SRD p115) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Animate Dead + AltName: '[Animation des morts](hd_spells_animation_des_morts.md)' Type: necromancy + Level: 3 CastingTime: 1 minute Range: 10 feet Components: V, S, M (a drop of blood, a piece of flesh, and a pinch of bone dust) Duration: Instantaneous Classes: Cleric, Wizard + Source: (SRD p115) Id: spells_vo.md#animate-dead ParentLink: spells_vo.md#spells-srd-p - Name: Animate Dead ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Animation des morts](hd_spells_animation_des_morts.md)' - Source: (SRD p115) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Animate Objects + AltName: '[Animation des objets](hd_spells_animation_des_objets.md)' Type: transmutation + Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard + Source: (SRD p116) Id: spells_vo.md#animate-objects ParentLink: spells_vo.md#spells-srd-p - Name: Animate Objects ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Animation des objets](hd_spells_animation_des_objets.md)' - Source: (SRD p116) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Antilife Shell + AltName: '[Coquille antivie](hd_spells_coquille_antivie.md)' Type: abjuration + Level: 5 CastingTime: 1 action Range: Self (10-foot radius) Components: V, S Duration: Concentration, up to 1 hour Classes: Druid + Source: (SRD p116) Id: spells_vo.md#antilife-shell ParentLink: spells_vo.md#spells-srd-p - Name: Antilife Shell ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Coquille antivie](hd_spells_coquille_antivie.md)' - Source: (SRD p116) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Antimagic Field + AltName: '[Champ antimagie](hd_spells_champ_antimagie.md)' Type: abjuration + Level: 8 CastingTime: 1 action Range: Self (10-foot-radius sphere) Components: V, S, M (a pinch of powdered iron or iron filings) Duration: Concentration, up to 1 hour Classes: Cleric, Wizard + Source: (SRD p117) Id: spells_vo.md#antimagic-field ParentLink: spells_vo.md#spells-srd-p - Name: Antimagic Field ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Champ antimagie](hd_spells_champ_antimagie.md)' - Source: (SRD p117) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Antipathy/Sympathy + AltName: '[Répulsion/attirance](hd_spells_repulsionattirance.md)' Type: enchantment + Level: 8 CastingTime: 1 hour Range: 60 feet Components: V, S, M (either a lump of alum soaked in vinegar for the antipathy effect or a drop of honey for the sympathy effect) Duration: 10 days Classes: Druid, Wizard + Source: (SRD p117) Id: spells_vo.md#antipathysympathy ParentLink: spells_vo.md#spells-srd-p - Name: Antipathy/Sympathy ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Répulsion/attirance](hd_spells_repulsionattirance.md)' - Source: (SRD p117) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Arcane Eye + AltName: '[Oeil magique](hd_spells_oeil_magique.md)' Type: divination + Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S, M (a bit of bat fur) Duration: Concentration, up to 1 hour Classes: Wizard + Source: (SRD p118) Id: spells_vo.md#arcane-eye ParentLink: spells_vo.md#spells-srd-p - Name: Arcane Eye ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Oeil magique](hd_spells_oeil_magique.md)' - Source: (SRD p118) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Arcane Lock + AltName: '[Verrou magique](hd_spells_verrou_magique.md)' Type: abjuration + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (gold dust worth at least 25 gp, which the spell consumes) Duration: Until dispelled Classes: Wizard + Source: (SRD p118) Id: spells_vo.md#arcane-lock ParentLink: spells_vo.md#spells-srd-p - Name: Arcane Lock ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Verrou magique](hd_spells_verrou_magique.md)' - Source: (SRD p118) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Astral Projection + AltName: '[Projection astrale](hd_spells_projection_astrale.md)' Type: necromancy + Level: 9 CastingTime: 1 hour Range: 10 feet Components: V, S, M (for each creature you affect with this spell, you must provide one jacinth worth at least 1,000 gp and one ornately carved bar of silver worth at least 100 gp, all of which the spell consumes) Duration: Special Classes: Cleric, Warlock, Wizard + Source: (SRD p119) Id: spells_vo.md#astral-projection ParentLink: spells_vo.md#spells-srd-p - Name: Astral Projection ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Projection astrale](hd_spells_projection_astrale.md)' - Source: (SRD p119) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Augury + AltName: '[Augure](hd_spells_augure.md)' Type: divination - Ritual: ritual + Level: 2 CastingTime: 1 minute Range: Self Components: V, S, M (specially marked sticks, bones, or similar tokens worth at least 25 gp) Duration: Instantaneous Classes: Cleric + Source: (SRD p120) + Ritual: ritual Id: spells_vo.md#augury ParentLink: spells_vo.md#spells-srd-p - Name: Augury ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Augure](hd_spells_augure.md)' - Source: (SRD p120) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Awaken + AltName: '[Éveil](hd_spells_eveil.md)' Type: transmutation + Level: 5 CastingTime: 8 hours Range: Touch Components: V, S, M (an agate worth at least 1,000 gp, which the spell consumes) Duration: Instantaneous Classes: Bard, Druid + Source: (SRD p120) Id: spells_vo.md#awaken ParentLink: spells_vo.md#spells-srd-p - Name: Awaken ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Éveil](hd_spells_eveil.md)' - Source: (SRD p120) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Bane + AltName: '[Fléau](hd_spells_fleau.md)' Type: enchantment + Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a drop of blood) Duration: Concentration, up to 1 minute Classes: Bard, Cleric + Source: (SRD p120) Id: spells_vo.md#bane ParentLink: spells_vo.md#spells-srd-p - Name: Bane ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Fléau](hd_spells_fleau.md)' - Source: (SRD p120) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Banishment + AltName: '[Bannissement](hd_spells_bannissement.md)' Type: abjuration + Level: 4 CastingTime: 1 action Range: 60 feet Components: V, S, M (an item distasteful to the target) Duration: Concentration, up to 1 minute Classes: Cleric, Paladin, Sorcerer, Warlock, Wizard + Source: (SRD p120) Id: spells_vo.md#banishment ParentLink: spells_vo.md#spells-srd-p - Name: Banishment ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bannissement](hd_spells_bannissement.md)' - Source: (SRD p120) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Barkskin + AltName: "[Peau d'écorce](hd_spells_peau_decorce.md)" Type: transmutation + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a handful of oak bark) Duration: Concentration, up to 1 hour Classes: Druid, Ranger + Source: (SRD p121) Id: spells_vo.md#barkskin ParentLink: spells_vo.md#spells-srd-p - Name: Barkskin ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Peau d'écorce](hd_spells_peau_decorce.md)" - Source: (SRD p121) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Beacon of Hope + AltName: "[Lueur d'espoir](hd_spells_lueur_despoir.md)" Type: abjuration + Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Cleric + Source: (SRD p121) Id: spells_vo.md#beacon-of-hope ParentLink: spells_vo.md#spells-srd-p - Name: Beacon of Hope ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Lueur d'espoir](hd_spells_lueur_despoir.md)" - Source: (SRD p121) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Bestow curse + AltName: '[Jeter une malédiction](hd_spells_jeter_une_malediction.md)' Type: necromancy + Level: 3 CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Cleric, Wizard + Source: (SRD p121) Id: spells_vo.md#bestow-curse ParentLink: spells_vo.md#spells-srd-p - Name: Bestow curse ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Jeter une malédiction](hd_spells_jeter_une_malediction.md)' - Source: (SRD p121) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Arcane Hand + AltName: '[Main magique](hd_spells_main_magique.md)' Type: evocation + Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S, M (an eggshell and a snakeskin glove) Duration: Concentration, up to 1 minute Classes: Wizard + Source: (SRD p118) Id: spells_vo.md#arcane-hand ParentLink: spells_vo.md#spells-srd-p - Name: Arcane Hand ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Main magique](hd_spells_main_magique.md)' - Source: (SRD p118) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Blade Barrier + AltName: '[Barrière de lames](hd_spells_barriere_de_lames.md)' Type: evocation + Level: 6 CastingTime: 1 action Range: 90 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Cleric + Source: (SRD p122) Id: spells_vo.md#blade-barrier ParentLink: spells_vo.md#spells-srd-p - Name: Blade Barrier ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Barrière de lames](hd_spells_barriere_de_lames.md)' - Source: (SRD p122) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Bless + AltName: '[Bénédiction](hd_spells_benediction.md)' Type: enchantment + Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a sprinkling of holy water) Duration: Concentration, up to 1 minute Classes: Cleric, Paladin + Source: (SRD p122) Id: spells_vo.md#bless ParentLink: spells_vo.md#spells-srd-p - Name: Bless ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bénédiction](hd_spells_benediction.md)' - Source: (SRD p122) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Blight + AltName: '[Flétrissement](hd_spells_fletrissement.md)' Type: necromancy + Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Instantaneous Classes: Druid, Sorcerer, Warlock, Wizard + Source: (SRD p122) Id: spells_vo.md#blight ParentLink: spells_vo.md#spells-srd-p - Name: Blight ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Flétrissement](hd_spells_fletrissement.md)' - Source: (SRD p122) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Blindness/Deafness + AltName: '[Cécité/Surdité](hd_spells_cecitesurdite.md)' Type: necromancy + Level: 2 CastingTime: 1 action Range: 30 feet Components: V Duration: 1 minute Classes: Bard, Cleric, Sorcerer, Wizard + Source: (SRD p122) Id: spells_vo.md#blindnessdeafness ParentLink: spells_vo.md#spells-srd-p - Name: Blindness/Deafness ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Cécité/Surdité](hd_spells_cecitesurdite.md)' - Source: (SRD p122) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Blink + AltName: '[Clignotement](hd_spells_clignotement.md)' Type: transmutation + Level: 3 CastingTime: 1 action Range: Self Components: V, S Duration: 1 minute Classes: Sorcerer, Wizard + Source: (SRD p122) Id: spells_vo.md#blink ParentLink: spells_vo.md#spells-srd-p - Name: Blink ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Clignotement](hd_spells_clignotement.md)' - Source: (SRD p122) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Blur + AltName: '[Flou](hd_spells_flou.md)' Type: illusion + Level: 2 CastingTime: 1 action Range: Self Components: V Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard + Source: (SRD p123) Id: spells_vo.md#blur ParentLink: spells_vo.md#spells-srd-p - Name: Blur ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Flou](hd_spells_flou.md)' - Source: (SRD p123) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Branding Smite + AltName: '[Frappe lumineuse](hd_spells_frappe_lumineuse.md)' Type: evocation + Level: 2 CastingTime: 1 bonus action Range: Self Components: V Duration: Concentration, up to 1 minute Classes: Paladin + Source: (SRD p123) Id: spells_vo.md#branding-smite ParentLink: spells_vo.md#spells-srd-p - Name: Branding Smite ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Frappe lumineuse](hd_spells_frappe_lumineuse.md)' - Source: (SRD p123) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Burning Hands + AltName: '[Mains brûlantes](hd_spells_mains_brulantes.md)' Type: evocation + Level: 1 CastingTime: 1 action Range: Self (15-foot cone) Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p123) Id: spells_vo.md#burning-hands ParentLink: spells_vo.md#spells-srd-p - Name: Burning Hands ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mains brûlantes](hd_spells_mains_brulantes.md)' - Source: (SRD p123) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Call Lightning + AltName: '[Appel de la foudre](hd_spells_appel_de_la_foudre.md)' Type: conjuration + Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Druid + Source: (SRD p123) Id: spells_vo.md#call-lightning ParentLink: spells_vo.md#spells-srd-p - Name: Call Lightning ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Appel de la foudre](hd_spells_appel_de_la_foudre.md)' - Source: (SRD p123) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Calm Emotions + AltName: '[Apaisement des émotions](hd_spells_apaisement_des_emotions.md)' Type: enchantment + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Cleric + Source: (SRD p123) Id: spells_vo.md#calm-emotions ParentLink: spells_vo.md#spells-srd-p - Name: Calm Emotions ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Apaisement des émotions](hd_spells_apaisement_des_emotions.md)' - Source: (SRD p123) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Chain Lightning + AltName: "[Chaîne d'éclairs](hd_spells_chaine_declairs.md)" Type: evocation + Level: 6 CastingTime: 1 action Range: 150 feet Components: V, S, M (a bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins) Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p124) Id: spells_vo.md#chain-lightning ParentLink: spells_vo.md#spells-srd-p - Name: Chain Lightning ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Chaîne d'éclairs](hd_spells_chaine_declairs.md)" - Source: (SRD p124) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Charm Person + AltName: '[Charme-personne](hd_spells_charme_personne.md)' Type: enchantment + Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S Duration: 1 hour Classes: Bard, Druid, Sorcerer, Warlock, Wizard + Source: (SRD p124) Id: spells_vo.md#charm-person ParentLink: spells_vo.md#spells-srd-p - Name: Charm Person ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Charme-personne](hd_spells_charme_personne.md)' - Source: (SRD p124) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Chill Touch + AltName: '[Contact glacial](hd_spells_contact_glacial.md)' Type: Necromancy + Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S Duration: 1 round Classes: Sorcerer, Warlock, Wizard + Source: (SRD p124) Id: spells_vo.md#chill-touch ParentLink: spells_vo.md#spells-srd-p - Name: Chill Touch ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Contact glacial](hd_spells_contact_glacial.md)' - Source: (SRD p124) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Circle of Death + AltName: '[Cercle de mort](hd_spells_cercle_de_mort.md)' Type: necromancy + Level: 6 CastingTime: 1 action Range: 150 feet Components: V, S, M (the powder of a crushed black pearl worth at least 500 gp) Duration: Instantaneous Classes: Sorcerer, Warlock, Wizard + Source: (SRD p124) Id: spells_vo.md#circle-of-death ParentLink: spells_vo.md#spells-srd-p - Name: Circle of Death ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Cercle de mort](hd_spells_cercle_de_mort.md)' - Source: (SRD p124) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Clairvoyance + AltName: '[Clairvoyance](hd_spells_clairvoyance.md)' Type: divination + Level: 3 CastingTime: 10 minutes Range: 1 mile Components: V, S, M (a focus worth at least 100 gp, either a jeweled horn for hearing or a glass eye for seeing) Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Sorcerer, Wizard + Source: (SRD p124) Id: spells_vo.md#clairvoyance ParentLink: spells_vo.md#spells-srd-p - Name: Clairvoyance ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Clairvoyance](hd_spells_clairvoyance.md)' - Source: (SRD p124) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Clone + AltName: '[Clone](hd_spells_clone.md)' Type: necromancy + Level: 8 CastingTime: 1 hour Range: Touch Components: V, S, M (a diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a Medium creature, such as a huge urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water) Duration: Instantaneous Classes: Wizard + Source: (SRD p125) Id: spells_vo.md#clone ParentLink: spells_vo.md#spells-srd-p - Name: Clone ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Clone](hd_spells_clone.md)' - Source: (SRD p125) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Cloudkill + AltName: '[Nuage mortel](hd_spells_nuage_mortel.md)' Type: conjuration + Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Sorcerer, Wizard + Source: (SRD p125) Id: spells_vo.md#cloudkill ParentLink: spells_vo.md#spells-srd-p - Name: Cloudkill ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Nuage mortel](hd_spells_nuage_mortel.md)' - Source: (SRD p125) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Color Spray + AltName: '[Couleurs dansantes](hd_spells_couleurs_dansantes.md)' Type: illusion + Level: 1 CastingTime: 1 action Range: Self (15-foot cone) Components: V, S, M (a pinch of powder or sand that is colored red, yellow, and blue) Duration: 1 round Classes: Sorcerer, Wizard + Source: (SRD p125) Id: spells_vo.md#color-spray ParentLink: spells_vo.md#spells-srd-p - Name: Color Spray ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Couleurs dansantes](hd_spells_couleurs_dansantes.md)' - Source: (SRD p125) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Command + AltName: '[Injonction](hd_spells_injonction.md)' Type: enchantment + Level: 1 CastingTime: 1 action Range: 60 feet Components: V Duration: 1 round Classes: Cleric, Paladin + Source: (SRD p125) Id: spells_vo.md#command ParentLink: spells_vo.md#spells-srd-p - Name: Command ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Injonction](hd_spells_injonction.md)' - Source: (SRD p125) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Commune + AltName: '[Communion](hd_spells_communion.md)' Type: divination - Ritual: ritual + Level: 5 CastingTime: 1 minute Range: Self Components: V, S, M (incense and a vial of holy or unholy water) Duration: 1 minute Classes: Cleric + Source: (SRD p126) + Ritual: ritual Id: spells_vo.md#commune ParentLink: spells_vo.md#spells-srd-p - Name: Commune ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Communion](hd_spells_communion.md)' - Source: (SRD p126) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Commune with Nature + AltName: '[Communion avec la nature](hd_spells_communion_avec_la_nature.md)' Type: divination - Ritual: ritual + Level: 5 CastingTime: 1 minute Range: Self Components: V, S Duration: Instantaneous Classes: Druid, Ranger + Source: (SRD p126) + Ritual: ritual Id: spells_vo.md#commune-with-nature ParentLink: spells_vo.md#spells-srd-p - Name: Commune with Nature ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Communion avec la nature](hd_spells_communion_avec_la_nature.md)' - Source: (SRD p126) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Comprehend Languages + AltName: '[Compréhension des langues](hd_spells_comprehension_des_langues.md)' Type: divination - Ritual: ritual + Level: 1 CastingTime: 1 action Range: Self Components: V, S, M (a pinch of soot and salt) Duration: 1 hour Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p126) + Ritual: ritual Id: spells_vo.md#comprehend-languages ParentLink: spells_vo.md#spells-srd-p - Name: Comprehend Languages ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Compréhension des langues](hd_spells_comprehension_des_langues.md)' - Source: (SRD p126) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Compulsion + AltName: '[Compulsion](hd_spells_compulsion.md)' Type: enchantment + Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard + Source: (SRD p126) Id: spells_vo.md#compulsion ParentLink: spells_vo.md#spells-srd-p - Name: Compulsion ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Compulsion](hd_spells_compulsion.md)' - Source: (SRD p126) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Cone of Cold + AltName: '[Cône de froid](hd_spells_cone_de_froid.md)' Type: evocation + Level: 5 CastingTime: 1 action Range: Self (60-foot cone) Components: V, S, M (a small crystal or glass cone) Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p127) Id: spells_vo.md#cone-of-cold ParentLink: spells_vo.md#spells-srd-p - Name: Cone of Cold ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Cône de froid](hd_spells_cone_de_froid.md)' - Source: (SRD p127) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Confusion + AltName: '[Confusion](hd_spells_confusion.md)' Type: enchantment + Level: 4 CastingTime: 1 action Range: 90 feet Components: V, S, M (three nut shells) Duration: Concentration, up to 1 minute Classes: Bard, Druid, Sorcerer, Wizard + Source: (SRD p127) Id: spells_vo.md#confusion ParentLink: spells_vo.md#spells-srd-p - Name: Confusion ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Confusion](hd_spells_confusion.md)' - Source: (SRD p127) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Conjure Animals + AltName: '[Invoquer des animaux](hd_spells_invoquer_des_animaux.md)' Type: conjuration + Level: 3 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Druid, Ranger + Source: (SRD p127) Id: spells_vo.md#conjure-animals ParentLink: spells_vo.md#spells-srd-p - Name: Conjure Animals ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Invoquer des animaux](hd_spells_invoquer_des_animaux.md)' - Source: (SRD p127) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Conjure Celestial + AltName: '[Invoquer un céleste](hd_spells_invoquer_un_celeste.md)' Type: conjuration + Level: 7 CastingTime: 1 minute Range: 90 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Cleric + Source: (SRD p127) Id: spells_vo.md#conjure-celestial ParentLink: spells_vo.md#spells-srd-p - Name: Conjure Celestial ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Invoquer un céleste](hd_spells_invoquer_un_celeste.md)' - Source: (SRD p127) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Conjure Elemental + AltName: '[Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)' Type: conjuration + Level: 5 CastingTime: 1 minute Range: 90 feet Components: V, S, M (burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water) Duration: Concentration, up to 1 hour Classes: Druid, Wizard + Source: (SRD p128) Id: spells_vo.md#conjure-elemental ParentLink: spells_vo.md#spells-srd-p - Name: Conjure Elemental ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)' - Source: (SRD p128) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Conjure Fey + AltName: '[Invoquer une fée](hd_spells_invoquer_une_fee.md)' Type: conjuration + Level: 6 CastingTime: 1 minute Range: 90 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Druid, Warlock + Source: (SRD p128) Id: spells_vo.md#conjure-fey ParentLink: spells_vo.md#spells-srd-p - Name: Conjure Fey ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Invoquer une fée](hd_spells_invoquer_une_fee.md)' - Source: (SRD p128) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Conjure Minor Elementals + AltName: '[Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)' Type: conjuration + Level: 4 CastingTime: 1 minute Range: 90 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Druid, Wizard + Source: (SRD p128) Id: spells_vo.md#conjure-minor-elementals ParentLink: spells_vo.md#spells-srd-p - Name: Conjure Minor Elementals ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)' - Source: (SRD p128) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Conjure Woodland Beings + AltName: '[Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)' Type: conjuration + Level: 4 CastingTime: 1 action Range: 60 feet Components: V, S, M (one holly berry per creature summoned) Duration: Concentration, up to 1 hour Classes: Druid, Ranger + Source: (SRD p129) Id: spells_vo.md#conjure-woodland-beings ParentLink: spells_vo.md#spells-srd-p - Name: Conjure Woodland Beings ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)' - Source: (SRD p129) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Contact Other Plane + AltName: '[Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)' Type: divination - Ritual: ritual + Level: 5 CastingTime: 1 minute Range: Self Components: V Duration: 1 minute Classes: Warlock, Wizard + Source: (SRD p129) + Ritual: ritual Id: spells_vo.md#contact-other-plane ParentLink: spells_vo.md#spells-srd-p - Name: Contact Other Plane ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)' - Source: (SRD p129) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Contagion + AltName: '[Contagion](hd_spells_contagion.md)' Type: necromancy + Level: 5 CastingTime: 1 action Range: Touch Duration: 7 days Classes: Cleric, Druid + Source: (SRD p129) Id: spells_vo.md#contagion ParentLink: spells_vo.md#spells-srd-p - Name: Contagion ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Contagion](hd_spells_contagion.md)' - Source: (SRD p129) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Contingency + AltName: '[Contingence](hd_spells_contingence.md)' Type: evocation + Level: 6 CastingTime: 10 minutes Range: Self Components: V, S, M (a statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp) Duration: 10 days Classes: Wizard + Source: (SRD p130) Id: spells_vo.md#contingency ParentLink: spells_vo.md#spells-srd-p - Name: Contingency ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Contingence](hd_spells_contingence.md)' - Source: (SRD p130) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Continual Flame + AltName: '[Flamme éternelle](hd_spells_flamme_eternelle.md)' Type: evocation + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (ruby dust worth 50 gp, which the spell consumes) Duration: Until dispelled Classes: Cleric, Wizard + Source: (SRD p130) Id: spells_vo.md#continual-flame ParentLink: spells_vo.md#spells-srd-p - Name: Continual Flame ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Flamme éternelle](hd_spells_flamme_eternelle.md)' - Source: (SRD p130) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Control Water + AltName: "[Contrôle de l'eau](hd_spells_controle_de_leau.md)" Type: transmutation + Level: 4 CastingTime: 1 action Range: 300 feet Components: V, S, M (a drop of water and a pinch of dust) Duration: Concentration, up to 10 minutes Classes: Cleric, Druid, Wizard + Source: (SRD p130) Id: spells_vo.md#control-water ParentLink: spells_vo.md#spells-srd-p - Name: Control Water ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Contrôle de l'eau](hd_spells_controle_de_leau.md)" - Source: (SRD p130) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Control Weather + AltName: '[Contrôle du climat](hd_spells_controle_du_climat.md)' Type: transmutation + Level: 8 CastingTime: 10 minutes Range: Self (5-mile radius) Components: V, S, M (burning incense and bits of earth and wood mixed in water) Duration: Concentration, up to 8 hours Classes: Cleric, Druid, Wizard + Source: (SRD p131) Id: spells_vo.md#control-weather ParentLink: spells_vo.md#spells-srd-p - Name: Control Weather ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Contrôle du climat](hd_spells_controle_du_climat.md)' - Source: (SRD p131) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Counterspell + AltName: '[Contresort](hd_spells_contresort.md)' Type: abjuration + Level: 3 CastingTime: 1 reaction, which you take when you see a creature within 60 feet of you casting a spell Range: 60 feet Components: S Duration: Instantaneous Classes: Sorcerer, Warlock, Wizard + Source: (SRD p131) Id: spells_vo.md#counterspell ParentLink: spells_vo.md#spells-srd-p - Name: Counterspell ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Contresort](hd_spells_contresort.md)' - Source: (SRD p131) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Create Food and Water + AltName: "[Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)" Type: conjuration + Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Instantaneous Classes: Cleric, Paladin + Source: (SRD p131) Id: spells_vo.md#create-food-and-water ParentLink: spells_vo.md#spells-srd-p - Name: Create Food and Water ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)" - Source: (SRD p131) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Create or Destroy Water + AltName: "[Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)" Type: transmutation + Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a drop of water if creating water or a few grains of sand if destroying it) Duration: Instantaneous Classes: Cleric, Druid + Source: (SRD p132) Id: spells_vo.md#create-or-destroy-water ParentLink: spells_vo.md#spells-srd-p - Name: Create or Destroy Water ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)" - Source: (SRD p132) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Create Undead + AltName: '[Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)' Type: necromancy + Level: 6 CastingTime: 1 minute Range: 10 feet Components: V, S, M (one clay pot filled with grave dirt, one clay pot filled with brackish water, and one 150 gp black onyx stone for each corpse) Duration: Instantaneous Classes: Cleric, Warlock, Wizard + Source: (SRD p132) Id: spells_vo.md#create-undead ParentLink: spells_vo.md#spells-srd-p - Name: Create Undead ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)' - Source: (SRD p132) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Creation + AltName: '[Création](hd_spells_creation.md)' Type: illusion + Level: 5 CastingTime: 1 minute Range: 30 feet Components: V, S, M (a tiny piece of matter of the same type of the item you plan to create) Duration: Special Classes: Sorcerer, Wizard + Source: (SRD p132) Id: spells_vo.md#creation ParentLink: spells_vo.md#spells-srd-p - Name: Creation ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Création](hd_spells_creation.md)' - Source: (SRD p132) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Cure Wounds + AltName: '[Soin des blessures](hd_spells_soin_des_blessures.md)' Type: evocation + Level: 1 CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Bard, Cleric, Druid, Paladin, Ranger + Source: (SRD p132) Id: spells_vo.md#cure-wounds ParentLink: spells_vo.md#spells-srd-p - Name: Cure Wounds ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Soin des blessures](hd_spells_soin_des_blessures.md)' - Source: (SRD p132) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Dancing Lights + AltName: '[Lumières dansantes](hd_spells_lumieres_dansantes.md)' Type: Evocation + Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S, M (a bit of phosphorus or wychwood, or a glowworm) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard + Source: (SRD p133) Id: spells_vo.md#dancing-lights ParentLink: spells_vo.md#spells-srd-p - Name: Dancing Lights ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lumières dansantes](hd_spells_lumieres_dansantes.md)' - Source: (SRD p133) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Darkness + AltName: '[Ténèbres](hd_spells_tenebres.md)' Type: evocation + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, M (bat fur and a drop of pitch or piece of coal) Duration: Concentration, up to 10 minutes Classes: Sorcerer, Warlock, Wizard + Source: (SRD p133) Id: spells_vo.md#darkness ParentLink: spells_vo.md#spells-srd-p - Name: Darkness ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Ténèbres](hd_spells_tenebres.md)' - Source: (SRD p133) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Darkvision + AltName: '[Vision dans le noir](hd_spells_vision_dans_le_noir.md)' Type: transmutation + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (either a pinch of dried carrot or an agate) Duration: 8 hours Classes: Druid, Ranger, Sorcerer, Wizard + Source: (SRD p133) Id: spells_vo.md#darkvision ParentLink: spells_vo.md#spells-srd-p - Name: Darkvision ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Vision dans le noir](hd_spells_vision_dans_le_noir.md)' - Source: (SRD p133) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Daylight + AltName: '[Lumière du jour](hd_spells_lumiere_du_jour.md)' Type: evocation + Level: 3 CastingTime: 1 action Range: 60 feet Components: V, S Duration: 1 hour Classes: Cleric, Druid, Paladin, Ranger, Sorcerer + Source: (SRD p133) Id: spells_vo.md#daylight ParentLink: spells_vo.md#spells-srd-p - Name: Daylight ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lumière du jour](hd_spells_lumiere_du_jour.md)' - Source: (SRD p133) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Death Ward + AltName: '[Protection contre la mort](hd_spells_protection_contre_la_mort.md)' Type: abjuration + Level: 4 CastingTime: 1 action Range: Touch Components: V, S Duration: 8 hours Classes: Cleric, Paladin + Source: (SRD p133) Id: spells_vo.md#death-ward ParentLink: spells_vo.md#spells-srd-p - Name: Death Ward ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Protection contre la mort](hd_spells_protection_contre_la_mort.md)' - Source: (SRD p133) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Delayed Blast Fireball + AltName: '[Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)' Type: evocation + Level: 7 CastingTime: 1 action Range: 150 feet Components: V, S, M (a tiny ball of bat guano and sulfur) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard + Source: (SRD p133) Id: spells_vo.md#delayed-blast-fireball ParentLink: spells_vo.md#spells-srd-p - Name: Delayed Blast Fireball ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)' - Source: (SRD p133) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Demiplane + AltName: '[Demi-plan](hd_spells_demi_plan.md)' Type: conjuration + Level: 8 CastingTime: 1 action Range: 60 feet Components: S Duration: 1 hour Classes: Warlock, Wizard + Source: (SRD p134) Id: spells_vo.md#demiplane ParentLink: spells_vo.md#spells-srd-p - Name: Demiplane ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Demi-plan](hd_spells_demi_plan.md)' - Source: (SRD p134) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Detect Evil and Good + AltName: '[Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)' Type: divination + Level: 1 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 10 minutes Classes: Cleric, Paladin + Source: (SRD p134) Id: spells_vo.md#detect-evil-and-good ParentLink: spells_vo.md#spells-srd-p - Name: Detect Evil and Good ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)' - Source: (SRD p134) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Detect Magic + AltName: '[Détection de la magie](hd_spells_detection_de_la_magie.md)' Type: divination - Ritual: ritual + Level: 1 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Druid, Paladin, Ranger, Sorcerer, Wizard + Source: (SRD p134) + Ritual: ritual Id: spells_vo.md#detect-magic ParentLink: spells_vo.md#spells-srd-p - Name: Detect Magic ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Détection de la magie](hd_spells_detection_de_la_magie.md)' - Source: (SRD p134) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Detect Poison and Disease + AltName: '[Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)' Type: divination - Ritual: ritual + Level: 1 CastingTime: 1 action Range: Self Components: V, S, M (a yew leaf) Duration: Concentration, up to 10 minutes Classes: Cleric, Druid, Paladin, Ranger + Source: (SRD p134) + Ritual: ritual Id: spells_vo.md#detect-poison-and-disease ParentLink: spells_vo.md#spells-srd-p - Name: Detect Poison and Disease ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)' - Source: (SRD p134) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Detect Thoughts + AltName: '[Détection des pensées](hd_spells_detection_des_pensees.md)' Type: divination + Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (a copper piece) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard + Source: (SRD p135) Id: spells_vo.md#detect-thoughts ParentLink: spells_vo.md#spells-srd-p - Name: Detect Thoughts ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Détection des pensées](hd_spells_detection_des_pensees.md)' - Source: (SRD p135) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Dimension Door + AltName: '[Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)' Type: conjuration + Level: 4 CastingTime: 1 action Range: 500 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p135) Id: spells_vo.md#dimension-door ParentLink: spells_vo.md#spells-srd-p - Name: Dimension Door ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)' - Source: (SRD p135) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Disguise Self + AltName: '[Déguisement](hd_spells_deguisement.md)' Type: illusion + Level: 1 CastingTime: 1 action Range: Self Components: V, S Duration: 1 hour Classes: Bard, Sorcerer, Wizard + Source: (SRD p135) Id: spells_vo.md#disguise-self ParentLink: spells_vo.md#spells-srd-p - Name: Disguise Self ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Déguisement](hd_spells_deguisement.md)' - Source: (SRD p135) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Disintegrate + AltName: '[Désintégration](hd_spells_desintegration.md)' Type: transmutation + Level: 6 CastingTime: 1 action Range: 60 feet Components: V, S, M (a lodestone and a pinch of dust) Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p135) Id: spells_vo.md#disintegrate ParentLink: spells_vo.md#spells-srd-p - Name: Disintegrate ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Désintégration](hd_spells_desintegration.md)' - Source: (SRD p135) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Dispel Evil and Good + AltName: '[Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)' Type: abjuration + Level: 5 CastingTime: 1 action Range: Self Components: V, S, M (holy water or powdered silver and iron) Duration: Concentration, up to 1 minute Classes: Cleric, Paladin + Source: (SRD p136) Id: spells_vo.md#dispel-evil-and-good ParentLink: spells_vo.md#spells-srd-p - Name: Dispel Evil and Good ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)' - Source: (SRD p136) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Dispel Magic + AltName: '[Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)' Type: abjuration + Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Bard, Cleric, Druid, Paladin, Sorcerer, Warlock, Wizard + Source: (SRD p136) Id: spells_vo.md#dispel-magic ParentLink: spells_vo.md#spells-srd-p - Name: Dispel Magic ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)' - Source: (SRD p136) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Divination + AltName: '[Divination](hd_spells_divination.md)' Type: divination - Ritual: ritual + Level: 4 CastingTime: 1 action Range: Self Components: V, S, M (incense and a sacrificial offering appropriate to your religion, together worth at least 25 gp, which the spell consumes) Duration: Instantaneous Classes: Cleric + Source: (SRD p136) + Ritual: ritual Id: spells_vo.md#divination ParentLink: spells_vo.md#spells-srd-p - Name: Divination ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Divination](hd_spells_divination.md)' - Source: (SRD p136) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Divine Favor + AltName: '[Faveur divine](hd_spells_faveur_divine.md)' Type: evocation + Level: 1 CastingTime: 1 bonus action Range: Self Components: V, S Duration: Concentration, up to 1 minute Classes: Paladin + Source: (SRD p136) Id: spells_vo.md#divine-favor ParentLink: spells_vo.md#spells-srd-p - Name: Divine Favor ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Faveur divine](hd_spells_faveur_divine.md)' - Source: (SRD p136) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Divine Word + AltName: '[Parole divine](hd_spells_parole_divine.md)' Type: evocation + Level: 7 CastingTime: 1 bonus action Range: 30 feet Components: V Duration: Instantaneous Classes: Cleric + Source: (SRD p137) Id: spells_vo.md#divine-word ParentLink: spells_vo.md#spells-srd-p - Name: Divine Word ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Parole divine](hd_spells_parole_divine.md)' - Source: (SRD p137) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Dominate Beast + AltName: '[Dominer une bête](hd_spells_dominer_une_bete.md)' Type: enchantment + Level: 4 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer + Source: (SRD p137) Id: spells_vo.md#dominate-beast ParentLink: spells_vo.md#spells-srd-p - Name: Dominate Beast ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Dominer une bête](hd_spells_dominer_une_bete.md)' - Source: (SRD p137) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Dominate Monster + AltName: '[Dominer un monstre](hd_spells_dominer_un_monstre.md)' Type: enchantment + Level: 8 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p137) Id: spells_vo.md#dominate-monster ParentLink: spells_vo.md#spells-srd-p - Name: Dominate Monster ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Dominer un monstre](hd_spells_dominer_un_monstre.md)' - Source: (SRD p137) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Dominate Person + AltName: '[Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)' Type: enchantment + Level: 5 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard + Source: (SRD p138) Id: spells_vo.md#dominate-person ParentLink: spells_vo.md#spells-srd-p - Name: Dominate Person ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)' - Source: (SRD p138) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Instant Summons + AltName: '[Convocations instantanées](hd_spells_convocations_instantanees.md)' Type: conjuration - Ritual: ritual + Level: 6 CastingTime: 1 minute Range: Touch Components: V, S, M (a sapphire worth 1,000 gp) Duration: Until dispelled Classes: Wizard + Source: (SRD p157) + Ritual: ritual Id: spells_vo.md#instant-summons ParentLink: spells_vo.md#spells-srd-p - Name: Instant Summons ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Convocations instantanées](hd_spells_convocations_instantanees.md)' - Source: (SRD p157) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Dream + AltName: '[Rêve](hd_spells_reve.md)' Type: illusion + Level: 5 CastingTime: 1 minute Range: Special Components: V, S, M (a handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird) Duration: 8 hours Classes: Bard, Warlock, Wizard + Source: (SRD p138) Id: spells_vo.md#dream ParentLink: spells_vo.md#spells-srd-p - Name: Dream ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Rêve](hd_spells_reve.md)' - Source: (SRD p138) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Druidcraft + AltName: '[Druidisme](hd_spells_druidisme.md)' Type: Transmutation + Level: cantrip CastingTime: 1 action Range: 30 feet Components: V, S Duration: Instantaneous Classes: Druid + Source: (SRD p138) Id: spells_vo.md#druidcraft ParentLink: spells_vo.md#spells-srd-p - Name: Druidcraft ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Druidisme](hd_spells_druidisme.md)' - Source: (SRD p138) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Earthquake + AltName: '[Tremblement de terre](hd_spells_tremblement_de_terre.md)' Type: evocation + Level: 8 CastingTime: 1 action Range: 500 feet Components: V, S, M (a pinch of dirt, a piece of rock, and a lump of clay) Duration: Concentration, up to 1 minute Classes: Cleric, Druid, Sorcerer + Source: (SRD p139) Id: spells_vo.md#earthquake ParentLink: spells_vo.md#spells-srd-p - Name: Earthquake ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Tremblement de terre](hd_spells_tremblement_de_terre.md)' - Source: (SRD p139) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Eldritch Blast + AltName: '[Explosion occulte](hd_spells_explosion_occulte.md)' Type: Evocation + Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Warlock + Source: (SRD p139) Id: spells_vo.md#eldritch-blast ParentLink: spells_vo.md#spells-srd-p - Name: Eldritch Blast ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Explosion occulte](hd_spells_explosion_occulte.md)' - Source: (SRD p139) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Enhance Ability + AltName: '[Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)' Type: transmutation + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (fur or a feather from a beast) Duration: Concentration, up to 1 hour Classes: Bard, Cleric, Druid, Sorcerer + Source: (SRD p139) Id: spells_vo.md#enhance-ability ParentLink: spells_vo.md#spells-srd-p - Name: Enhance Ability ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)' - Source: (SRD p139) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Enlarge/Reduce + AltName: '[Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)' Type: transmutation + Level: 2 CastingTime: 1 action Range: 30 feet Components: V, S, M (a pinch of powdered iron) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard + Source: (SRD p140) Id: spells_vo.md#enlargereduce ParentLink: spells_vo.md#spells-srd-p - Name: Enlarge/Reduce ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)' - Source: (SRD p140) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Entangle + AltName: '[Enchevêtrement](hd_spells_enchevetrement.md)' Type: conjuration + Level: 1 CastingTime: 1 action Range: 90 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Druid + Source: (SRD p140) Id: spells_vo.md#entangle ParentLink: spells_vo.md#spells-srd-p - Name: Entangle ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Enchevêtrement](hd_spells_enchevetrement.md)' - Source: (SRD p140) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Enthrall + AltName: '[Envoûtement](hd_spells_envoutement.md)' Type: enchantment + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S Duration: 1 minute Classes: Bard, Warlock + Source: (SRD p140) Id: spells_vo.md#enthrall ParentLink: spells_vo.md#spells-srd-p - Name: Enthrall ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Envoûtement](hd_spells_envoutement.md)' - Source: (SRD p140) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Etherealness + AltName: '[Forme éthérée](hd_spells_forme_etheree.md)' Type: transmutation + Level: 7 CastingTime: 1 action Range: Self Components: V, S Duration: Up to 8 hours Classes: Bard, Cleric, Sorcerer, Warlock, Wizard + Source: (SRD p140) Id: spells_vo.md#etherealness ParentLink: spells_vo.md#spells-srd-p - Name: Etherealness ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Forme éthérée](hd_spells_forme_etheree.md)' - Source: (SRD p140) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Black Tentacles + AltName: '[Tentacules noirs](hd_spells_tentacules_noirs.md)' Type: conjuration + Level: 4 CastingTime: 1 action Range: 90 feet Components: V, S, M (a piece of tentacle from a giant octopus or a giant squid) Duration: Concentration, up to 1 minute Classes: Wizard + Source: (SRD p121) Id: spells_vo.md#black-tentacles ParentLink: spells_vo.md#spells-srd-p - Name: Black Tentacles ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Tentacules noirs](hd_spells_tentacules_noirs.md)' - Source: (SRD p121) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Expeditious Retreat + AltName: '[Repli expéditif](hd_spells_repli_expeditif.md)' Type: transmutation + Level: 1 CastingTime: 1 bonus action Range: Self Components: V, S Duration: Concentration, up to 10 minutes Classes: Sorcerer, Warlock, Wizard + Source: (SRD p141) Id: spells_vo.md#expeditious-retreat ParentLink: spells_vo.md#spells-srd-p - Name: Expeditious Retreat ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Repli expéditif](hd_spells_repli_expeditif.md)' - Source: (SRD p141) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Eyebite + AltName: '[Mauvais oeil](hd_spells_mauvais_oeil.md)' Type: necromancy + Level: 6 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p141) Id: spells_vo.md#eyebite ParentLink: spells_vo.md#spells-srd-p - Name: Eyebite ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mauvais oeil](hd_spells_mauvais_oeil.md)' - Source: (SRD p141) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Fabricate + AltName: '[Fabrication](hd_spells_fabrication.md)' Type: transmutation + Level: 4 CastingTime: 10 minutes Range: 120 feet Components: V, S Duration: Instantaneous Classes: Wizard + Source: (SRD p141) Id: spells_vo.md#fabricate ParentLink: spells_vo.md#spells-srd-p - Name: Fabricate ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Fabrication](hd_spells_fabrication.md)' - Source: (SRD p141) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Faerie Fire + AltName: '[Lueurs féeriques](hd_spells_lueurs_feeriques.md)' Type: evocation + Level: 1 CastingTime: 1 action Range: 60 feet Components: V Duration: Concentration, up to 1 minute Classes: Bard, Druid + Source: (SRD p141) Id: spells_vo.md#faerie-fire ParentLink: spells_vo.md#spells-srd-p - Name: Faerie Fire ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lueurs féeriques](hd_spells_lueurs_feeriques.md)' - Source: (SRD p141) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: False Life + AltName: '[Simulacre de vie](hd_spells_simulacre_de_vie.md)' Type: necromancy + Level: 1 CastingTime: 1 action Range: Self Components: V, S, M (a small amount of alcohol or distilled spirits) Duration: 1 hour Classes: Sorcerer, Wizard + Source: (SRD p142) Id: spells_vo.md#false-life ParentLink: spells_vo.md#spells-srd-p - Name: False Life ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Simulacre de vie](hd_spells_simulacre_de_vie.md)' - Source: (SRD p142) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Fear + AltName: '[Peur](hd_spells_peur.md)' Type: illusion + Level: 3 CastingTime: 1 action Range: Self (30-foot cone) Components: V, S, M (a white feather or the heart of a hen) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p142) Id: spells_vo.md#fear ParentLink: spells_vo.md#spells-srd-p - Name: Fear ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Peur](hd_spells_peur.md)' - Source: (SRD p142) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Feather Fall + AltName: '[Léger comme une plume](hd_spells_leger_comme_une_plume.md)' Type: transmutation + Level: 1 CastingTime: 1 reaction, which you take when you or a creature within 60 feet of you falls Range: 60 feet Components: V, M (a small feather or piece of down) Duration: 1 minute Classes: Bard, Sorcerer, Wizard + Source: (SRD p142) Id: spells_vo.md#feather-fall ParentLink: spells_vo.md#spells-srd-p - Name: Feather Fall ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Léger comme une plume](hd_spells_leger_comme_une_plume.md)' - Source: (SRD p142) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Feeblemind + AltName: '[Esprit faible](hd_spells_esprit_faible.md)' Type: enchantment + Level: 8 CastingTime: 1 action Range: 150 feet Components: V, S, M (a handful of clay, crystal, glass, or mineral spheres) Duration: Instantaneous Classes: Bard, Druid, Warlock, Wizard + Source: (SRD p142) Id: spells_vo.md#feeblemind ParentLink: spells_vo.md#spells-srd-p - Name: Feeblemind ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Esprit faible](hd_spells_esprit_faible.md)' - Source: (SRD p142) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Find Familiar + AltName: '[Appel de familier](hd_spells_appel_de_familier.md)' Type: conjuration - Ritual: ritual + Level: 1 CastingTime: 1 hour Range: 10 feet Components: V, S, M (10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier) Duration: Instantaneous Classes: Wizard + Source: (SRD p143) + Ritual: ritual Id: spells_vo.md#find-familiar ParentLink: spells_vo.md#spells-srd-p - Name: Find Familiar ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Appel de familier](hd_spells_appel_de_familier.md)' - Source: (SRD p143) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Find Steed + AltName: '[Trouver une monture](hd_spells_trouver_une_monture.md)' Type: conjuration + Level: 2 CastingTime: 10 minutes Range: 30 feet Components: V, S Duration: Instantaneous Classes: Paladin + Source: (SRD p143) Id: spells_vo.md#find-steed ParentLink: spells_vo.md#spells-srd-p - Name: Find Steed ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Trouver une monture](hd_spells_trouver_une_monture.md)' - Source: (SRD p143) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Find the Path + AltName: '[Trouver un chemin](hd_spells_trouver_un_chemin.md)' Type: divination + Level: 6 CastingTime: 1 minute Range: Self Components: V, S, M (a set of divinatory tools—such as bones, ivory sticks, cards, teeth, or carved runes-worth 100 gp and an object from the location you wish to find) Duration: Concentration, up to 1 day Classes: Bard, Cleric, Druid + Source: (SRD p143) Id: spells_vo.md#find-the-path ParentLink: spells_vo.md#spells-srd-p - Name: Find the Path ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Trouver un chemin](hd_spells_trouver_un_chemin.md)' - Source: (SRD p143) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Find Traps + AltName: '[Trouver les pièges](hd_spells_trouver_les_pieges.md)' Type: divination + Level: 2 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Cleric, Druid, Ranger + Source: (SRD p144) Id: spells_vo.md#find-traps ParentLink: spells_vo.md#spells-srd-p - Name: Find Traps ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Trouver les pièges](hd_spells_trouver_les_pieges.md)' - Source: (SRD p144) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Finger of Death + AltName: '[Doigt de mort](hd_spells_doigt_de_mort.md)' Type: necromancy + Level: 7 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Warlock, Wizard + Source: (SRD p144) Id: spells_vo.md#finger-of-death ParentLink: spells_vo.md#spells-srd-p - Name: Finger of Death ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Doigt de mort](hd_spells_doigt_de_mort.md)' - Source: (SRD p144) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Fire Bolt + AltName: '[Trait de feu](hd_spells_trait_de_feu.md)' Type: Evocation + Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p144) Id: spells_vo.md#fire-bolt ParentLink: spells_vo.md#spells-srd-p - Name: Fire Bolt ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Trait de feu](hd_spells_trait_de_feu.md)' - Source: (SRD p144) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Fire Shield + AltName: '[Bouclier de feu](hd_spells_bouclier_de_feu.md)' Type: evocation + Level: 4 CastingTime: 1 action Range: Self Components: V, S, M (a bit of phosphorus or a firefly) Duration: 10 minutes Classes: Wizard + Source: (SRD p144) Id: spells_vo.md#fire-shield ParentLink: spells_vo.md#spells-srd-p - Name: Fire Shield ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bouclier de feu](hd_spells_bouclier_de_feu.md)' - Source: (SRD p144) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Fire Storm + AltName: '[Tempête de feu](hd_spells_tempete_de_feu.md)' Type: evocation + Level: 7 CastingTime: 1 action Range: 150 feet Components: V, S Duration: Instantaneous Classes: Cleric, Druid, Sorcerer + Source: (SRD p145) Id: spells_vo.md#fire-storm ParentLink: spells_vo.md#spells-srd-p - Name: Fire Storm ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Tempête de feu](hd_spells_tempete_de_feu.md)' - Source: (SRD p145) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Fireball + AltName: '[Boule de feu](hd_spells_boule_de_feu.md)' Type: evocation + Level: 3 CastingTime: 1 action Range: 150 feet Components: V, S, M (a tiny ball of bat guano and sulfur) Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p144) Id: spells_vo.md#fireball ParentLink: spells_vo.md#spells-srd-p - Name: Fireball ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Boule de feu](hd_spells_boule_de_feu.md)' - Source: (SRD p144) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Flame Blade + AltName: '[Lame de feu](hd_spells_lame_de_feu.md)' Type: evocation + Level: 2 CastingTime: 1 bonus action Range: Self Components: V, S, M (leaf of sumac) Duration: Concentration, up to 10 minutes Classes: Druid + Source: (SRD p145) Id: spells_vo.md#flame-blade ParentLink: spells_vo.md#spells-srd-p - Name: Flame Blade ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lame de feu](hd_spells_lame_de_feu.md)' - Source: (SRD p145) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Flame Strike + AltName: '[Colonne de flamme](hd_spells_colonne_de_flamme.md)' Type: evocation + Level: 5 CastingTime: 1 action Range: 60 feet Components: V, S, M (pinch of sulfur) Duration: Instantaneous Classes: Cleric + Source: (SRD p145) Id: spells_vo.md#flame-strike ParentLink: spells_vo.md#spells-srd-p - Name: Flame Strike ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Colonne de flamme](hd_spells_colonne_de_flamme.md)' - Source: (SRD p145) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Flaming Sphere + AltName: '[Sphère de feu](hd_spells_sphere_de_feu.md)' Type: conjuration + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a bit of tallow, a pinch of brimstone, and a dusting of powdered iron) Duration: Concentration, up to 1 minute Classes: Druid, Wizard + Source: (SRD p145) Id: spells_vo.md#flaming-sphere ParentLink: spells_vo.md#spells-srd-p - Name: Flaming Sphere ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Sphère de feu](hd_spells_sphere_de_feu.md)' - Source: (SRD p145) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Flesh to Stone + AltName: '[Pétrification](hd_spells_petrification.md)' Type: transmutation + Level: 6 CastingTime: 1 action Range: 60 feet Components: V, S, M (a pinch of lime, water, and earth) Duration: Concentration, up to 1 minute Classes: Warlock, Wizard + Source: (SRD p145) Id: spells_vo.md#flesh-to-stone ParentLink: spells_vo.md#spells-srd-p - Name: Flesh to Stone ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Pétrification](hd_spells_petrification.md)' - Source: (SRD p145) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Fly + AltName: '[Vol](hd_spells_vol.md)' Type: transmutation + Level: 3 CastingTime: 1 action Range: Touch Components: V, S, M (a wing feather from any bird) Duration: Concentration, up to 10 minutes Classes: Sorcerer, Warlock, Wizard + Source: (SRD p146) Id: spells_vo.md#fly ParentLink: spells_vo.md#spells-srd-p - Name: Fly ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Vol](hd_spells_vol.md)' - Source: (SRD p146) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Fog Cloud + AltName: '[Nappe de brouillard](hd_spells_nappe_de_brouillard.md)' Type: conjuration + Level: 1 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Druid, Ranger, Sorcerer, Wizard + Source: (SRD p146) Id: spells_vo.md#fog-cloud ParentLink: spells_vo.md#spells-srd-p - Name: Fog Cloud ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Nappe de brouillard](hd_spells_nappe_de_brouillard.md)' - Source: (SRD p146) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Forbiddance + AltName: '[Interdiction](hd_spells_interdiction.md)' Type: abjuration - Ritual: ritual + Level: 6 CastingTime: 10 minutes Range: Touch Components: V, S, M (a sprinkling of holy water, rare incense, and powdered ruby worth at least 1,000 gp) Duration: 1 day Classes: Cleric + Source: (SRD p146) + Ritual: ritual Id: spells_vo.md#forbiddance ParentLink: spells_vo.md#spells-srd-p - Name: Forbiddance ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Interdiction](hd_spells_interdiction.md)' - Source: (SRD p146) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Forcecage + AltName: '[Cage de force](hd_spells_cage_de_force.md)' Type: evocation + Level: 7 CastingTime: 1 action Range: 100 feet Components: V, S, M (ruby dust worth 1,500 gp) Duration: 1 hour Classes: Bard, Warlock, Wizard + Source: (SRD p147) Id: spells_vo.md#forcecage ParentLink: spells_vo.md#spells-srd-p - Name: Forcecage ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Cage de force](hd_spells_cage_de_force.md)' - Source: (SRD p147) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Foresight + AltName: '[Prémonition](hd_spells_premonition.md)' Type: divination + Level: 9 CastingTime: 1 minute Range: Touch Components: V, S, M (a hummingbird feather) Duration: 8 hours Classes: Bard, Druid, Warlock, Wizard + Source: (SRD p147) Id: spells_vo.md#foresight ParentLink: spells_vo.md#spells-srd-p - Name: Foresight ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Prémonition](hd_spells_premonition.md)' - Source: (SRD p147) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Freedom of Movement + AltName: '[Liberté de mouvement](hd_spells_liberte_de_mouvement.md)' Type: abjuration + Level: 4 CastingTime: 1 action Range: Touch Components: V, S, M (a leather strap, bound around the arm or a similar appendage) Duration: 1 hour Classes: Bard, Cleric, Druid, Ranger + Source: (SRD p147) Id: spells_vo.md#freedom-of-movement ParentLink: spells_vo.md#spells-srd-p - Name: Freedom of Movement ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Liberté de mouvement](hd_spells_liberte_de_mouvement.md)' - Source: (SRD p147) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Gaseous Form + AltName: '[Forme gazeuse](hd_spells_forme_gazeuse.md)' Type: transmutation + Level: 3 CastingTime: 1 action Range: Touch Components: V, S, M (a bit of gauze and a wisp of smoke) Duration: Concentration, up to 1 hour Classes: Sorcerer, Warlock, Wizard + Source: (SRD p148) Id: spells_vo.md#gaseous-form ParentLink: spells_vo.md#spells-srd-p - Name: Gaseous Form ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Forme gazeuse](hd_spells_forme_gazeuse.md)' - Source: (SRD p148) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Gate + AltName: '[Portail](hd_spells_portail.md)' Type: conjuration + Level: 9 CastingTime: 1 action Range: 60 feet Components: V, S, M (a diamond worth at least 5,000 gp) Duration: Concentration, up to 1 minute Classes: Cleric, Sorcerer, Wizard + Source: (SRD p148) Id: spells_vo.md#gate ParentLink: spells_vo.md#spells-srd-p - Name: Gate ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Portail](hd_spells_portail.md)' - Source: (SRD p148) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Geas + AltName: '[Coercition mystique](hd_spells_coercition_mystique.md)' Type: enchantment + Level: 5 CastingTime: 1 minute Range: 60 feet Components: V Duration: 30 days Classes: Bard, Cleric, Druid, Paladin, Wizard + Source: (SRD p148) Id: spells_vo.md#geas ParentLink: spells_vo.md#spells-srd-p - Name: Geas ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Coercition mystique](hd_spells_coercition_mystique.md)' - Source: (SRD p148) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Gentle Repose + AltName: '[Doux repos](hd_spells_doux_repos.md)' Type: necromancy - Ritual: ritual + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a pinch of salt and one copper piece placed on each of the corpse's eyes, which must remain there for the duration Duration: 10 days Classes: Cleric, Wizard + Source: (SRD p148) + Ritual: ritual Id: spells_vo.md#gentle-repose ParentLink: spells_vo.md#spells-srd-p - Name: Gentle Repose ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Doux repos](hd_spells_doux_repos.md)' - Source: (SRD p148) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Giant Insect + AltName: '[Insecte géant](hd_spells_insecte_geant.md)' Type: transmutation + Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Druid + Source: (SRD p149) Id: spells_vo.md#giant-insect ParentLink: spells_vo.md#spells-srd-p - Name: Giant Insect ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Insecte géant](hd_spells_insecte_geant.md)' - Source: (SRD p149) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Glibness + AltName: '[Bagou](hd_spells_bagou.md)' Type: transmutation + Level: 8 CastingTime: 1 action Range: Self Components: V Duration: 1 hour Classes: Bard, Warlock + Source: (SRD p149) Id: spells_vo.md#glibness ParentLink: spells_vo.md#spells-srd-p - Name: Glibness ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bagou](hd_spells_bagou.md)' - Source: (SRD p149) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Globe of Invulnerability + AltName: "[Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)" Type: abjuration + Level: 6 CastingTime: 1 action Range: Self (10-foot radius) Components: V, S, M (a glass or crystal bead that shatters when the spell ends) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard + Source: (SRD p149) Id: spells_vo.md#globe-of-invulnerability ParentLink: spells_vo.md#spells-srd-p - Name: Globe of Invulnerability ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)" - Source: (SRD p149) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Glyph of Warding + AltName: '[Glyphe de protection](hd_spells_glyphe_de_protection.md)' Type: abjuration + Level: 3 CastingTime: 1 hour Range: Touch Components: V, S, M (incense and powdered diamond worth at least 200 gp, which the spell consumes) Duration: Until dispelled or triggered Classes: Bard, Cleric, Wizard + Source: (SRD p149) Id: spells_vo.md#glyph-of-warding ParentLink: spells_vo.md#spells-srd-p - Name: Glyph of Warding ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Glyphe de protection](hd_spells_glyphe_de_protection.md)' - Source: (SRD p149) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Goodberry + AltName: '[Baies nourricières](hd_spells_baies_nourricieres.md)' Type: transmutation + Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (a sprig of mistletoe) Duration: Instantaneous Classes: Druid, Ranger + Source: (SRD p150) Id: spells_vo.md#goodberry ParentLink: spells_vo.md#spells-srd-p - Name: Goodberry ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Baies nourricières](hd_spells_baies_nourricieres.md)' - Source: (SRD p150) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Grease + AltName: '[Graisse](hd_spells_graisse.md)' Type: conjuration + Level: 1 CastingTime: 1 action Range: 60 feet Components: V, S, M (a bit of pork rind or butter) Duration: 1 minute Classes: Wizard + Source: (SRD p150) Id: spells_vo.md#grease ParentLink: spells_vo.md#spells-srd-p - Name: Grease ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Graisse](hd_spells_graisse.md)' - Source: (SRD p150) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Greater Invisibility + AltName: '[Invisibilité supérieure](hd_spells_invisibilite_superieure.md)' Type: illusion + Level: 4 CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard + Source: (SRD p150) Id: spells_vo.md#greater-invisibility ParentLink: spells_vo.md#spells-srd-p - Name: Greater Invisibility ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Invisibilité supérieure](hd_spells_invisibilite_superieure.md)' - Source: (SRD p150) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Greater Restoration + AltName: '[Restauration supérieure](hd_spells_restauration_superieure.md)' Type: abjuration + Level: 5 CastingTime: 1 action Range: Touch Components: V, S, M (diamond dust worth at least 100 gp, which the spell consumes) Duration: Instantaneous Classes: Bard, Cleric, Druid + Source: (SRD p150) Id: spells_vo.md#greater-restoration ParentLink: spells_vo.md#spells-srd-p - Name: Greater Restoration ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Restauration supérieure](hd_spells_restauration_superieure.md)' - Source: (SRD p150) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Guardian of Faith + AltName: '[Gardien de la foi](hd_spells_gardien_de_la_foi.md)' Type: conjuration + Level: 4 CastingTime: 1 action Range: 30 feet Components: V Duration: 8 hours Classes: Cleric + Source: (SRD p150) Id: spells_vo.md#guardian-of-faith ParentLink: spells_vo.md#spells-srd-p - Name: Guardian of Faith ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Gardien de la foi](hd_spells_gardien_de_la_foi.md)' - Source: (SRD p150) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Guards and Wards + AltName: '[Protections et sceaux](hd_spells_protections_et_sceaux.md)' Type: abjuration + Level: 6 CastingTime: 10 minutes Range: Touch Components: V, S, M (burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10 gp) Duration: 24 hours Classes: Bard, Wizard + Source: (SRD p151) Id: spells_vo.md#guards-and-wards ParentLink: spells_vo.md#spells-srd-p - Name: Guards and Wards ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Protections et sceaux](hd_spells_protections_et_sceaux.md)' - Source: (SRD p151) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Guidance + AltName: '[Assistance](hd_spells_assistance.md)' Type: Divination + Level: cantrip CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 minute Classes: Cleric, Druid + Source: (SRD p151) Id: spells_vo.md#guidance ParentLink: spells_vo.md#spells-srd-p - Name: Guidance ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Assistance](hd_spells_assistance.md)' - Source: (SRD p151) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Guiding Bolt + AltName: '[Balisage](hd_spells_balisage.md)' Type: evocation + Level: 1 CastingTime: 1 action Range: 120 feet Components: V, S Duration: 1 round Classes: Cleric + Source: (SRD p151) Id: spells_vo.md#guiding-bolt ParentLink: spells_vo.md#spells-srd-p - Name: Guiding Bolt ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Balisage](hd_spells_balisage.md)' - Source: (SRD p151) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Gust of Wind + AltName: '[Bourrasque](hd_spells_bourrasque.md)' Type: evocation + Level: 2 CastingTime: 1 action Range: Self (60-foot line) Components: V, S, M (a legume seed) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard + Source: (SRD p152) Id: spells_vo.md#gust-of-wind ParentLink: spells_vo.md#spells-srd-p - Name: Gust of Wind ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bourrasque](hd_spells_bourrasque.md)' - Source: (SRD p152) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Hallow + AltName: '[Sanctification](hd_spells_sanctification.md)' Type: evocation + Level: 5 CastingTime: 24 hours Range: Touch Components: V, S, M (herbs, oils, and incense worth at least 1,000 gp, which the spell consumes) Duration: Until dispelled Classes: Cleric + Source: (SRD p152) Id: spells_vo.md#hallow ParentLink: spells_vo.md#spells-srd-p - Name: Hallow ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Sanctification](hd_spells_sanctification.md)' - Source: (SRD p152) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Hallucinatory Terrain + AltName: '[Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)' Type: illusion + Level: 4 CastingTime: 10 minutes Range: 300 feet Components: V, S, M (a stone, a twig, and a bit of green plant) Duration: 24 hours Classes: Bard, Druid, Warlock, Wizard + Source: (SRD p152) Id: spells_vo.md#hallucinatory-terrain ParentLink: spells_vo.md#spells-srd-p - Name: Hallucinatory Terrain ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)' - Source: (SRD p152) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Harm + AltName: '[Contamination](hd_spells_contamination.md)' Type: necromancy + Level: 6 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric + Source: (SRD p153) Id: spells_vo.md#harm ParentLink: spells_vo.md#spells-srd-p - Name: Harm ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Contamination](hd_spells_contamination.md)' - Source: (SRD p153) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Haste + AltName: '[Hâte](hd_spells_hate.md)' Type: transmutation + Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S, M (a shaving of licorice root) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard + Source: (SRD p153) Id: spells_vo.md#haste ParentLink: spells_vo.md#spells-srd-p - Name: Haste ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Hâte](hd_spells_hate.md)' - Source: (SRD p153) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Heal + AltName: '[Guérison](hd_spells_guerison.md)' Type: evocation + Level: 6 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric, Druid + Source: (SRD p153) Id: spells_vo.md#heal ParentLink: spells_vo.md#spells-srd-p - Name: Heal ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Guérison](hd_spells_guerison.md)' - Source: (SRD p153) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Healing Word + AltName: '[Mot de guérison](hd_spells_mot_de_guerison.md)' Type: evocation + Level: 1 CastingTime: 1 bonus action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard, Cleric, Druid + Source: (SRD p153) Id: spells_vo.md#healing-word ParentLink: spells_vo.md#spells-srd-p - Name: Healing Word ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mot de guérison](hd_spells_mot_de_guerison.md)' - Source: (SRD p153) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Heat Metal + AltName: '[Chauffer le métal](hd_spells_chauffer_le_metal.md)' Type: transmutation + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a piece of iron and a flame) Duration: Concentration, up to 1 minute Classes: Bard, Druid + Source: (SRD p153) Id: spells_vo.md#heat-metal ParentLink: spells_vo.md#spells-srd-p - Name: Heat Metal ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Chauffer le métal](hd_spells_chauffer_le_metal.md)' - Source: (SRD p153) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Hellish Rebuke + AltName: '[Représailles infernales](hd_spells_represailles_infernales.md)' Type: evocation + Level: 1 CastingTime: 1 reaction, which you take in response to being damaged by a creature within 60 feet of you that you can see Range: 60 feet Components: V, S Duration: Instantaneous Classes: Warlock + Source: (SRD p154) Id: spells_vo.md#hellish-rebuke ParentLink: spells_vo.md#spells-srd-p - Name: Hellish Rebuke ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Représailles infernales](hd_spells_represailles_infernales.md)' - Source: (SRD p154) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Heroes' Feast + AltName: '[Festin des héros](hd_spells_festin_des_heros.md)' Type: conjuration + Level: 6 CastingTime: 10 minutes Range: 30 feet Components: V, S, M (a gem-encrusted bowl worth at least 1,000 gp, which the spell consumes) Duration: Instantaneous Classes: Cleric, Druid + Source: (SRD p154) Id: spells_vo.md#heroes-feast ParentLink: spells_vo.md#spells-srd-p - Name: Heroes' Feast ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Festin des héros](hd_spells_festin_des_heros.md)' - Source: (SRD p154) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Heroism + AltName: '[Héroïsme](hd_spells_heroisme.md)' Type: enchantment + Level: 1 CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Paladin + Source: (SRD p154) Id: spells_vo.md#heroism ParentLink: spells_vo.md#spells-srd-p - Name: Heroism ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Héroïsme](hd_spells_heroisme.md)' - Source: (SRD p154) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Hold Monster + AltName: '[Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)' Type: enchantment + Level: 5 CastingTime: 1 action Range: 90 feet Components: V, S, M (a small, straight piece of iron) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p154) Id: spells_vo.md#hold-monster ParentLink: spells_vo.md#spells-srd-p - Name: Hold Monster ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)' - Source: (SRD p154) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Hold Person + AltName: '[Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)' Type: enchantment + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a small, straight piece of iron) Duration: Concentration, up to 1 minute Classes: Bard, Cleric, Druid, Sorcerer, Warlock, Wizard + Source: (SRD p154) Id: spells_vo.md#hold-person ParentLink: spells_vo.md#spells-srd-p - Name: Hold Person ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)' - Source: (SRD p154) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Holy Aura + AltName: '[Aura sacrée](hd_spells_aura_sacree.md)' Type: abjuration + Level: 8 CastingTime: 1 action Range: Self Components: V, S, M (a tiny reliquary worth at least 1,000 gp containing a sacred relic, such as a scrap of cloth from a saint's robe or a piece of parchment from a religious text) Duration: Concentration, up to 1 minute Classes: Cleric + Source: (SRD p155) Id: spells_vo.md#holy-aura ParentLink: spells_vo.md#spells-srd-p - Name: Holy Aura ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Aura sacrée](hd_spells_aura_sacree.md)' - Source: (SRD p155) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Hunter's Mark + AltName: '[Marque du chasseur](hd_spells_marque_du_chasseur.md)' Type: divination + Level: 1 CastingTime: 1 bonus action Range: 90 feet Components: V Duration: Concentration, up to 1 hour Classes: Ranger + Source: (SRD p155) Id: spells_vo.md#hunters-mark ParentLink: spells_vo.md#spells-srd-p - Name: Hunter's Mark ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Marque du chasseur](hd_spells_marque_du_chasseur.md)' - Source: (SRD p155) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Hypnotic Pattern + AltName: '[Motif hypnotique](hd_spells_motif_hypnotique.md)' Type: illusion + Level: 3 CastingTime: 1 action Range: 120 feet Components: S, M (a glowing stick of incense or a crystal vial filled with phosphorescent material) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p155) Id: spells_vo.md#hypnotic-pattern ParentLink: spells_vo.md#spells-srd-p - Name: Hypnotic Pattern ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Motif hypnotique](hd_spells_motif_hypnotique.md)' - Source: (SRD p155) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Ice Storm + AltName: '[Tempête de grêle](hd_spells_tempete_de_grele.md)' Type: evocation + Level: 4 CastingTime: 1 action Range: 300 feet Components: V, S, M (a pinch of dust and a few drops of water) Duration: Instantaneous Classes: Druid, Sorcerer, Wizard + Source: (SRD p155) Id: spells_vo.md#ice-storm ParentLink: spells_vo.md#spells-srd-p - Name: Ice Storm ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Tempête de grêle](hd_spells_tempete_de_grele.md)' - Source: (SRD p155) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Identify + AltName: '[Identification](hd_spells_identification.md)' Type: divination - Ritual: ritual + Level: 1 CastingTime: 1 minute Range: Touch Components: V, S, M (a pearl worth at least 100 gp and an owl feather) Duration: Instantaneous Classes: Bard, Wizard + Source: (SRD p155) + Ritual: ritual Id: spells_vo.md#identify ParentLink: spells_vo.md#spells-srd-p - Name: Identify ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Identification](hd_spells_identification.md)' - Source: (SRD p155) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Illusory Script + AltName: '[Texte illusoire](hd_spells_texte_illusoire.md)' Type: illusion - Ritual: ritual + Level: 1 CastingTime: 1 minute Range: Touch Components: S, M (a lead-based ink worth at least 10 gp, which the spell consumes) Duration: 10 days Classes: Bard, Warlock, Wizard + Source: (SRD p156) + Ritual: ritual Id: spells_vo.md#illusory-script ParentLink: spells_vo.md#spells-srd-p - Name: Illusory Script ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Texte illusoire](hd_spells_texte_illusoire.md)' - Source: (SRD p156) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Imprisonment + AltName: '[Emprisonnement](hd_spells_emprisonnement.md)' Type: abjuration + Level: 9 CastingTime: 1 minute Range: 30 feet Components: V, S, M (a vellum depiction or a carved statuette in the likeness of the target, and a special component that varies according to the version of the spell you choose, worth at least 500 gp per Hit Die of the target) Duration: Until dispelled Classes: Warlock, Wizard + Source: (SRD p156) Id: spells_vo.md#imprisonment ParentLink: spells_vo.md#spells-srd-p - Name: Imprisonment ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Emprisonnement](hd_spells_emprisonnement.md)' - Source: (SRD p156) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Incendiary Cloud + AltName: '[Nuage incendiaire](hd_spells_nuage_incendiaire.md)' Type: conjuration + Level: 8 CastingTime: 1 action Range: 150 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard + Source: (SRD p157) Id: spells_vo.md#incendiary-cloud ParentLink: spells_vo.md#spells-srd-p - Name: Incendiary Cloud ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Nuage incendiaire](hd_spells_nuage_incendiaire.md)' - Source: (SRD p157) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Inflict Wounds + AltName: '[Blessure](hd_spells_blessure.md)' Type: necromancy + Level: 1 CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Cleric + Source: (SRD p157) Id: spells_vo.md#inflict-wounds ParentLink: spells_vo.md#spells-srd-p - Name: Inflict Wounds ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Blessure](hd_spells_blessure.md)' - Source: (SRD p157) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Insect Plague + AltName: "[Fléau d'insectes](hd_spells_fleau_dinsectes.md)" Type: conjuration + Level: 5 CastingTime: 1 action Range: 300 feet Components: V, S, M (a few grains of sugar, some kernels of grain, and a smear of fat) Duration: Concentration, up to 10 minutes Classes: Cleric, Druid, Sorcerer + Source: (SRD p157) Id: spells_vo.md#insect-plague ParentLink: spells_vo.md#spells-srd-p - Name: Insect Plague ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Fléau d'insectes](hd_spells_fleau_dinsectes.md)" - Source: (SRD p157) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Invisibility + AltName: '[Invisibilité](hd_spells_invisibilite.md)' Type: illusion + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (an eyelash encased in gum arabic) Duration: Concentration, up to 1 hour Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p157) Id: spells_vo.md#invisibility ParentLink: spells_vo.md#spells-srd-p - Name: Invisibility ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Invisibilité](hd_spells_invisibilite.md)' - Source: (SRD p157) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Jump + AltName: '[Saut](hd_spells_saut.md)' Type: transmutation + Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (a grasshopper's hind leg) Duration: 1 minute Classes: Druid, Ranger, Sorcerer, Wizard + Source: (SRD p158) Id: spells_vo.md#jump ParentLink: spells_vo.md#spells-srd-p - Name: Jump ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Saut](hd_spells_saut.md)' - Source: (SRD p158) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Knock + AltName: '[Déblocage](hd_spells_deblocage.md)' Type: transmutation + Level: 2 CastingTime: 1 action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Wizard + Source: (SRD p158) Id: spells_vo.md#knock ParentLink: spells_vo.md#spells-srd-p - Name: Knock ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Déblocage](hd_spells_deblocage.md)' - Source: (SRD p158) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Legend Lore + AltName: '[Légende](hd_spells_legende.md)' Type: divination + Level: 5 CastingTime: 10 minutes Range: Self Components: V, S, M (incense worth at least 250 gp, which the spell consumes, and four ivory strips worth at least 50 gp each) Duration: Instantaneous Classes: Bard, Cleric, Wizard + Source: (SRD p158) Id: spells_vo.md#legend-lore ParentLink: spells_vo.md#spells-srd-p - Name: Legend Lore ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Légende](hd_spells_legende.md)' - Source: (SRD p158) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Secret Chest + AltName: '[Coffre secret](hd_spells_coffre_secret.md)' Type: conjuration + Level: 4 CastingTime: 1 action Range: Touch Components: V, S, M (an exquisite chest, 3 feet by 2 feet by 2 feet, constructed from rare materials worth at least 5,000 gp, and a Tiny replica made from the same materials worth at least 50 gp) Duration: Instantaneous Classes: Wizard + Source: (SRD p177) Id: spells_vo.md#secret-chest ParentLink: spells_vo.md#spells-srd-p - Name: Secret Chest ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Coffre secret](hd_spells_coffre_secret.md)' - Source: (SRD p177) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Tiny Hut + AltName: '[Petite hutte](hd_spells_petite_hutte.md)' Type: evocation - Ritual: ritual + Level: 3 CastingTime: 1 minute Range: Self (10-foot-radius hemisphere) Components: V, S, M (a small crystal bead) Duration: 8 hours Classes: Bard, Wizard + Source: (SRD p187) + Ritual: ritual Id: spells_vo.md#tiny-hut ParentLink: spells_vo.md#spells-srd-p - Name: Tiny Hut ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Petite hutte](hd_spells_petite_hutte.md)' - Source: (SRD p187) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Lesser Restoration + AltName: '[Restauration inférieure](hd_spells_restauration_inferieure.md)' Type: abjuration + Level: 2 CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Bard, Cleric, Druid, Paladin, Ranger + Source: (SRD p158) Id: spells_vo.md#lesser-restoration ParentLink: spells_vo.md#spells-srd-p - Name: Lesser Restoration ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Restauration inférieure](hd_spells_restauration_inferieure.md)' - Source: (SRD p158) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Levitate + AltName: '[Lévitation](hd_spells_levitation.md)' Type: transmutation + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end) Duration: Concentration, up to 10 minutes Classes: Sorcerer, Wizard + Source: (SRD p158) Id: spells_vo.md#levitate ParentLink: spells_vo.md#spells-srd-p - Name: Levitate ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lévitation](hd_spells_levitation.md)' - Source: (SRD p158) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Light + AltName: '[Lumière](hd_spells_lumiere.md)' Type: Evocation + Level: cantrip CastingTime: 1 action Range: Touch Components: V, M (a firefly or phosphorescent moss) Duration: 1 hour Classes: Bard, Cleric, Sorcerer, Wizard + Source: (SRD p159) Id: spells_vo.md#light ParentLink: spells_vo.md#spells-srd-p - Name: Light ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lumière](hd_spells_lumiere.md)' - Source: (SRD p159) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Lightning Bolt + AltName: '[Éclair](hd_spells_eclair.md)' Type: evocation + Level: 3 CastingTime: 1 action Range: Self (100-foot line) Components: V, S, M (a bit of fur and a rod of amber, crystal, or glass) Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p159) Id: spells_vo.md#lightning-bolt ParentLink: spells_vo.md#spells-srd-p - Name: Lightning Bolt ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Éclair](hd_spells_eclair.md)' - Source: (SRD p159) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Locate Animals or Plants + AltName: '[Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)' Type: divination - Ritual: ritual + Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (a bit of fur from a bloodhound) Duration: Instantaneous Classes: Bard, Druid, Ranger + Source: (SRD p159) + Ritual: ritual Id: spells_vo.md#locate-animals-or-plants ParentLink: spells_vo.md#spells-srd-p - Name: Locate Animals or Plants ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)' - Source: (SRD p159) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Locate Creature + AltName: '[Localiser une créature](hd_spells_localiser_une_creature.md)' Type: divination + Level: 4 CastingTime: 1 action Range: Self Components: V, S, M (a bit of fur from a bloodhound) Duration: Concentration, up to 1 hour Classes: Bard, Cleric, Druid, Paladin, Ranger, Wizard + Source: (SRD p159) Id: spells_vo.md#locate-creature ParentLink: spells_vo.md#spells-srd-p - Name: Locate Creature ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Localiser une créature](hd_spells_localiser_une_creature.md)' - Source: (SRD p159) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Locate Object + AltName: '[Localiser un objet](hd_spells_localiser_un_objet.md)' Type: divination + Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (a forked twig) Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Druid, Paladin, Ranger, Wizard + Source: (SRD p159) Id: spells_vo.md#locate-object ParentLink: spells_vo.md#spells-srd-p - Name: Locate Object ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Localiser un objet](hd_spells_localiser_un_objet.md)' - Source: (SRD p159) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Longstrider + AltName: '[Grande foulée](hd_spells_grande_foulee.md)' Type: transmutation + Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (a pinch of dirt) Duration: 1 hour Classes: Bard, Druid, Ranger, Wizard + Source: (SRD p160) Id: spells_vo.md#longstrider ParentLink: spells_vo.md#spells-srd-p - Name: Longstrider ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Grande foulée](hd_spells_grande_foulee.md)' - Source: (SRD p160) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Mage Armor + AltName: '[Armure du mage](hd_spells_armure_du_mage.md)' Type: abjuration + Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (a piece of cured leather) Duration: 8 hours Classes: Sorcerer, Wizard + Source: (SRD p160) Id: spells_vo.md#mage-armor ParentLink: spells_vo.md#spells-srd-p - Name: Mage Armor ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Armure du mage](hd_spells_armure_du_mage.md)' - Source: (SRD p160) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Mage Hand + AltName: '[Main du mage](hd_spells_main_du_mage.md)' Type: Conjuration + Level: cantrip CastingTime: 1 action Range: 30 feet Components: V, S Duration: 1 minute Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p160) Id: spells_vo.md#mage-hand ParentLink: spells_vo.md#spells-srd-p - Name: Mage Hand ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Main du mage](hd_spells_main_du_mage.md)' - Source: (SRD p160) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Magic Circle + AltName: '[Cercle magique](hd_spells_cercle_magique.md)' Type: abjuration + Level: 3 CastingTime: 1 minute Range: 10 feet Components: V, S, M (holy water or powdered silver and iron worth at least 100 gp, which the spell consumes) Duration: 1 hour Classes: Cleric, Paladin, Warlock, Wizard + Source: (SRD p160) Id: spells_vo.md#magic-circle ParentLink: spells_vo.md#spells-srd-p - Name: Magic Circle ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Cercle magique](hd_spells_cercle_magique.md)' - Source: (SRD p160) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Magic Jar + AltName: '[Possession](hd_spells_possession.md)' Type: necromancy + Level: 6 CastingTime: 1 minute Range: Self Components: V, S, M (a gem, crystal, reliquary, or some other ornamental container worth at least 500 gp) Duration: Until dispelled Classes: Wizard + Source: (SRD p160) Id: spells_vo.md#magic-jar ParentLink: spells_vo.md#spells-srd-p - Name: Magic Jar ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Possession](hd_spells_possession.md)' - Source: (SRD p160) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Magic Missile + AltName: '[Projectile magique](hd_spells_projectile_magique.md)' Type: evocation + Level: 1 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p161) Id: spells_vo.md#magic-missile ParentLink: spells_vo.md#spells-srd-p - Name: Magic Missile ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Projectile magique](hd_spells_projectile_magique.md)' - Source: (SRD p161) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Magic Mouth + AltName: '[Bouche magique](hd_spells_bouche_magique.md)' Type: illusion - Ritual: ritual + Level: 2 CastingTime: 1 minute Range: 30 feet Components: V, S, M (a small bit of honeycomb and jade dust worth at least 10 gp, which the spell consumes) Duration: Until dispelled Classes: Bard, Wizard + Source: (SRD p161) + Ritual: ritual Id: spells_vo.md#magic-mouth ParentLink: spells_vo.md#spells-srd-p - Name: Magic Mouth ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bouche magique](hd_spells_bouche_magique.md)' - Source: (SRD p161) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Magic Weapon + AltName: '[Arme magique](hd_spells_arme_magique.md)' Type: transmutation + Level: 2 CastingTime: 1 bonus action Range: Touch Components: V, S Duration: Concentration, up to 1 hour Classes: Paladin, Wizard + Source: (SRD p161) Id: spells_vo.md#magic-weapon ParentLink: spells_vo.md#spells-srd-p - Name: Magic Weapon ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Arme magique](hd_spells_arme_magique.md)' - Source: (SRD p161) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Major Image + AltName: '[Image majeure](hd_spells_image_majeure.md)' Type: illusion + Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S, M (a bit of fleece) Duration: Concentration, up to 10 minutes Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p162) Id: spells_vo.md#major-image ParentLink: spells_vo.md#spells-srd-p - Name: Major Image ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Image majeure](hd_spells_image_majeure.md)' - Source: (SRD p162) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Mass Cure Wounds + AltName: '[Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)' Type: evocation + Level: 5 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Bard, Cleric, Druid + Source: (SRD p162) Id: spells_vo.md#mass-cure-wounds ParentLink: spells_vo.md#spells-srd-p - Name: Mass Cure Wounds ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)' - Source: (SRD p162) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Mass Heal + AltName: '[Guérison de groupe](hd_spells_guerison_de_groupe.md)' Type: evocation + Level: 9 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric + Source: (SRD p163) Id: spells_vo.md#mass-heal ParentLink: spells_vo.md#spells-srd-p - Name: Mass Heal ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Guérison de groupe](hd_spells_guerison_de_groupe.md)' - Source: (SRD p163) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Mass Healing Word + AltName: '[Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)' Type: evocation + Level: 3 CastingTime: 1 bonus action Range: 60 feet Components: V Duration: Instantaneous Classes: Cleric + Source: (SRD p163) Id: spells_vo.md#mass-healing-word ParentLink: spells_vo.md#spells-srd-p - Name: Mass Healing Word ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)' - Source: (SRD p163) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Mass Suggestion + AltName: '[Suggestion de groupe](hd_spells_suggestion_de_groupe.md)' Type: enchantment + Level: 6 CastingTime: 1 action Range: 60 feet Components: V, M (a snake's tongue and either a bit of honeycomb or a drop of sweet oil) Duration: 24 hours Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p163) Id: spells_vo.md#mass-suggestion ParentLink: spells_vo.md#spells-srd-p - Name: Mass Suggestion ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Suggestion de groupe](hd_spells_suggestion_de_groupe.md)' - Source: (SRD p163) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Maze + AltName: '[Labyrinthe](hd_spells_labyrinthe.md)' Type: conjuration + Level: 8 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Wizard + Source: (SRD p163) Id: spells_vo.md#maze ParentLink: spells_vo.md#spells-srd-p - Name: Maze ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Labyrinthe](hd_spells_labyrinthe.md)' - Source: (SRD p163) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Meld into Stone + AltName: '[Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)' Type: transmutation - Ritual: ritual + Level: 3 CastingTime: 1 action Range: Touch Components: V, S Duration: 8 hours Classes: Cleric, Druid + Source: (SRD p163) + Ritual: ritual Id: spells_vo.md#meld-into-stone ParentLink: spells_vo.md#spells-srd-p - Name: Meld into Stone ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)' - Source: (SRD p163) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Acid Arrow + AltName: '[Flèche acide](hd_spells_fleche_acide.md)' Type: evocation + Level: 2 CastingTime: 1 action Range: 90 feet Components: V, S, M (powdered rhubarb leaf and an adder's stomach) Duration: Instantaneous Classes: Wizard + Source: (SRD p114) Id: spells_vo.md#acid-arrow ParentLink: spells_vo.md#spells-srd-p - Name: Acid Arrow ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Flèche acide](hd_spells_fleche_acide.md)' - Source: (SRD p114) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Mending + AltName: '[Réparation](hd_spells_reparation.md)' Type: Transmutation + Level: cantrip CastingTime: 1 minute Range: Touch Components: V, S, M (two lodestones) Duration: Instantaneous Classes: Bard, Cleric, Druid, Sorcerer, Wizard + Source: (SRD p164) Id: spells_vo.md#mending ParentLink: spells_vo.md#spells-srd-p - Name: Mending ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Réparation](hd_spells_reparation.md)' - Source: (SRD p164) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Message + AltName: '[Message](hd_spells_message.md)' Type: Transmutation + Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S, M (a short piece of copper wire) Duration: 1 round Classes: Bard, Sorcerer, Wizard + Source: (SRD p164) Id: spells_vo.md#message ParentLink: spells_vo.md#spells-srd-p - Name: Message ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Message](hd_spells_message.md)' - Source: (SRD p164) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Meteor Swarm + AltName: '[Nuée de météores](hd_spells_nuee_de_meteores.md)' Type: evocation + Level: 9 CastingTime: 1 action Range: 1 mile Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p164) Id: spells_vo.md#meteor-swarm ParentLink: spells_vo.md#spells-srd-p - Name: Meteor Swarm ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Nuée de météores](hd_spells_nuee_de_meteores.md)' - Source: (SRD p164) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Mind Blank + AltName: '[Esprit impénétrable](hd_spells_esprit_impenetrable.md)' Type: abjuration + Level: 8 CastingTime: 1 action Range: Touch Components: V, S Duration: 24 hours Classes: Bard, Wizard + Source: (SRD p164) Id: spells_vo.md#mind-blank ParentLink: spells_vo.md#spells-srd-p - Name: Mind Blank ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Esprit impénétrable](hd_spells_esprit_impenetrable.md)' - Source: (SRD p164) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Minor Illusion + AltName: '[Illusion mineure](hd_spells_illusion_mineure.md)' Type: Illusion + Level: cantrip CastingTime: 1 action Range: 30 feet Components: S, M (a bit of fleece) Duration: 1 minute Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p164) Id: spells_vo.md#minor-illusion ParentLink: spells_vo.md#spells-srd-p - Name: Minor Illusion ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Illusion mineure](hd_spells_illusion_mineure.md)' - Source: (SRD p164) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Mirage Arcane + AltName: '[Mirage](hd_spells_mirage.md)' Type: illusion + Level: 7 CastingTime: 10 minutes Range: Sight Components: V, S Duration: 10 days Classes: Bard, Druid, Wizard + Source: (SRD p165) Id: spells_vo.md#mirage-arcane ParentLink: spells_vo.md#spells-srd-p - Name: Mirage Arcane ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mirage](hd_spells_mirage.md)' - Source: (SRD p165) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Mirror Image + AltName: '[Image miroir](hd_spells_image_miroir.md)' Type: illusion + Level: 2 CastingTime: 1 action Range: Self Components: V, S Duration: 1 minute Classes: Sorcerer, Warlock, Wizard + Source: (SRD p165) Id: spells_vo.md#mirror-image ParentLink: spells_vo.md#spells-srd-p - Name: Mirror Image ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Image miroir](hd_spells_image_miroir.md)' - Source: (SRD p165) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Mislead + AltName: '[Tromperie](hd_spells_tromperie.md)' Type: illusion + Level: 5 CastingTime: 1 action Range: Self Components: S Duration: Concentration, up to 1 hour Classes: Bard, Wizard + Source: (SRD p165) Id: spells_vo.md#mislead ParentLink: spells_vo.md#spells-srd-p - Name: Mislead ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Tromperie](hd_spells_tromperie.md)' - Source: (SRD p165) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Misty Step + AltName: '[Pas brumeux](hd_spells_pas_brumeux.md)' Type: conjuration + Level: 2 CastingTime: 1 bonus action Range: Self Components: V Duration: Instantaneous Classes: Sorcerer, Warlock, Wizard + Source: (SRD p165) Id: spells_vo.md#misty-step ParentLink: spells_vo.md#spells-srd-p - Name: Misty Step ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Pas brumeux](hd_spells_pas_brumeux.md)' - Source: (SRD p165) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Modify Memory + AltName: '[Modification de mémoire](hd_spells_modification_de_memoire.md)' Type: enchantment + Level: 5 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Wizard + Source: (SRD p166) Id: spells_vo.md#modify-memory ParentLink: spells_vo.md#spells-srd-p - Name: Modify Memory ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Modification de mémoire](hd_spells_modification_de_memoire.md)' - Source: (SRD p166) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Moonbeam + AltName: '[Rayon de lune](hd_spells_rayon_de_lune.md)' Type: evocation + Level: 2 CastingTime: 1 action Range: 120 feet Components: V, S, M (several seeds of any moonseed plant and a piece of opalescent feldspar) Duration: Concentration, up to 1 minute Classes: Druid + Source: (SRD p166) Id: spells_vo.md#moonbeam ParentLink: spells_vo.md#spells-srd-p - Name: Moonbeam ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Rayon de lune](hd_spells_rayon_de_lune.md)' - Source: (SRD p166) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Faithful Hound + AltName: '[Chien de garde](hd_spells_chien_de_garde.md)' Type: conjuration + Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S, M (a tiny silver whistle, a piece of bone, and a thread) Duration: 8 hours Classes: Wizard + Source: (SRD p142) Id: spells_vo.md#faithful-hound ParentLink: spells_vo.md#spells-srd-p - Name: Faithful Hound ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Chien de garde](hd_spells_chien_de_garde.md)' - Source: (SRD p142) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Magnificent Mansion + AltName: '[Manoir somptueux](hd_spells_manoir_somptueux.md)' Type: conjuration + Level: 7 CastingTime: 1 minute Range: 300 feet Components: V, S, M (a miniature portal carved from ivory, a small piece of polished marble, and a tiny silver spoon, each item worth at least 5 gp) Duration: 24 hours Classes: Bard, Wizard + Source: (SRD p162) Id: spells_vo.md#magnificent-mansion ParentLink: spells_vo.md#spells-srd-p - Name: Magnificent Mansion ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Manoir somptueux](hd_spells_manoir_somptueux.md)' - Source: (SRD p162) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Private Sanctum + AltName: '[Sanctuaire privé](hd_spells_sanctuaire_prive.md)' Type: abjuration + Level: 4 CastingTime: 10 minutes Range: 120 feet Components: V, S, M (a thin sheet of lead, a piece of opaque glass, a wad of cotton or cloth, and powdered chrysolite) Duration: 24 hours Classes: Wizard + Source: (SRD p171) Id: spells_vo.md#private-sanctum ParentLink: spells_vo.md#spells-srd-p - Name: Private Sanctum ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Sanctuaire privé](hd_spells_sanctuaire_prive.md)' - Source: (SRD p171) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Arcane Sword + AltName: '[Épée magique](hd_spells_epee_magique.md)' Type: evocation + Level: 7 CastingTime: 1 action Range: 60 feet Components: V, S, M (a miniature platinum sword with a grip and pommel of copper and zinc, worth 250 gp) Duration: Concentration, up to 1 minute Classes: Bard, Wizard + Source: (SRD p119) Id: spells_vo.md#arcane-sword ParentLink: spells_vo.md#spells-srd-p - Name: Arcane Sword ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Épée magique](hd_spells_epee_magique.md)' - Source: (SRD p119) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Move Earth + AltName: '[Déplacer la terre](hd_spells_deplacer_la_terre.md)' Type: transmutation + Level: 6 CastingTime: 1 action Range: 120 feet Components: V, S, M (an iron blade and a small bag containing a mixture of soils—clay, loam, and sand) Duration: Concentration, up to 2 hours Classes: Druid, Sorcerer, Wizard + Source: (SRD p166) Id: spells_vo.md#move-earth ParentLink: spells_vo.md#spells-srd-p - Name: Move Earth ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Déplacer la terre](hd_spells_deplacer_la_terre.md)' - Source: (SRD p166) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Nondetection + AltName: '[Non-détection](hd_spells_non_detection.md)' Type: abjuration + Level: 3 CastingTime: 1 action Range: Touch Components: V, S, M (a pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes) Duration: 8 hours Classes: Bard, Ranger, Wizard + Source: (SRD p167) Id: spells_vo.md#nondetection ParentLink: spells_vo.md#spells-srd-p - Name: Nondetection ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Non-détection](hd_spells_non_detection.md)' - Source: (SRD p167) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Arcanist's Magic Aura + AltName: "[Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)" Type: illusion + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a small square of silk) Duration: 24 hours Classes: Wizard + Source: (SRD p119) Id: spells_vo.md#arcanists-magic-aura ParentLink: spells_vo.md#spells-srd-p - Name: Arcanist's Magic Aura ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)" - Source: (SRD p119) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Freezing Sphere + AltName: '[Sphère glacée](hd_spells_sphere_glacee.md)' Type: evocation + Level: 6 CastingTime: 1 action Range: 300 feet Components: V, S, M (a small crystal sphere Duration: Instantaneous Classes: Wizard + Source: (SRD p147) Id: spells_vo.md#freezing-sphere ParentLink: spells_vo.md#spells-srd-p - Name: Freezing Sphere ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Sphère glacée](hd_spells_sphere_glacee.md)' - Source: (SRD p147) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Resilient Sphere + AltName: '[Sphère résiliente](hd_spells_sphere_resiliente.md)' Type: evocation + Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S, M (a hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic) Duration: Concentration, up to 1 minute Classes: Wizard + Source: (SRD p175) Id: spells_vo.md#resilient-sphere ParentLink: spells_vo.md#spells-srd-p - Name: Resilient Sphere ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Sphère résiliente](hd_spells_sphere_resiliente.md)' - Source: (SRD p175) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Irresistible Dance + AltName: '[Danse irrésistible](hd_spells_danse_irresistible.md)' Type: enchantment + Level: 6 CastingTime: 1 action Range: 30 feet Components: V Duration: Concentration, up to 1 minute Classes: Bard, Wizard + Source: (SRD p158) Id: spells_vo.md#irresistible-dance ParentLink: spells_vo.md#spells-srd-p - Name: Irresistible Dance ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Danse irrésistible](hd_spells_danse_irresistible.md)' - Source: (SRD p158) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Pass without Trace + AltName: '[Passage sans trace](hd_spells_passage_sans_trace.md)' Type: abjuration + Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (ashes from a burned leaf of mistletoe and a sprig of spruce) Duration: Concentration, up to 1 hour Classes: Druid, Ranger + Source: (SRD p167) Id: spells_vo.md#pass-without-trace ParentLink: spells_vo.md#spells-srd-p - Name: Pass without Trace ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Passage sans trace](hd_spells_passage_sans_trace.md)' - Source: (SRD p167) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Passwall + AltName: '[Passe-muraille](hd_spells_passe_muraille.md)' Type: transmutation + Level: 5 CastingTime: 1 action Range: 30 feet Components: V, S, M (a pinch of sesame seeds) Duration: 1 hour Classes: Wizard + Source: (SRD p167) Id: spells_vo.md#passwall ParentLink: spells_vo.md#spells-srd-p - Name: Passwall ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Passe-muraille](hd_spells_passe_muraille.md)' - Source: (SRD p167) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Phantasmal Killer + AltName: '[Assassin imaginaire](hd_spells_assassin_imaginaire.md)' Type: illusion + Level: 4 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Wizard + Source: (SRD p167) Id: spells_vo.md#phantasmal-killer ParentLink: spells_vo.md#spells-srd-p - Name: Phantasmal Killer ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Assassin imaginaire](hd_spells_assassin_imaginaire.md)' - Source: (SRD p167) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Phantom Steed + AltName: '[Monture fantôme](hd_spells_monture_fantome.md)' Type: illusion - Ritual: ritual + Level: 3 CastingTime: 1 minute Range: 30 feet Components: V, S Duration: 1 hour Classes: Wizard + Source: (SRD p167) + Ritual: ritual Id: spells_vo.md#phantom-steed ParentLink: spells_vo.md#spells-srd-p - Name: Phantom Steed ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Monture fantôme](hd_spells_monture_fantome.md)' - Source: (SRD p167) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Planar Ally + AltName: '[Allié planaire](hd_spells_allie_planaire.md)' Type: conjuration + Level: 6 CastingTime: 10 minutes Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric + Source: (SRD p168) Id: spells_vo.md#planar-ally ParentLink: spells_vo.md#spells-srd-p - Name: Planar Ally ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Allié planaire](hd_spells_allie_planaire.md)' - Source: (SRD p168) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Planar Binding + AltName: '[Entrave planaire](hd_spells_entrave_planaire.md)' Type: abjuration + Level: 5 CastingTime: 1 hour Range: 60 feet Components: V, S, M (a jewel worth at least 1,000 gp, which the spell consumes) Duration: 24 hours Classes: Bard, Cleric, Druid, Wizard + Source: (SRD p168) Id: spells_vo.md#planar-binding ParentLink: spells_vo.md#spells-srd-p - Name: Planar Binding ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Entrave planaire](hd_spells_entrave_planaire.md)' - Source: (SRD p168) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Plane Shift + AltName: '[Changement de plan](hd_spells_changement_de_plan.md)' Type: conjuration + Level: 7 CastingTime: 1 action Range: Touch Components: V, S, M (a forked, metal rod worth at least 250 gp, attuned to a particular plane of existence) Duration: Instantaneous Classes: Cleric, Druid, Sorcerer, Warlock, Wizard + Source: (SRD p168) Id: spells_vo.md#plane-shift ParentLink: spells_vo.md#spells-srd-p - Name: Plane Shift ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Changement de plan](hd_spells_changement_de_plan.md)' - Source: (SRD p168) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Plant Growth + AltName: '[Croissance végétale](hd_spells_croissance_vegetale.md)' Type: transmutation + Level: 3 CastingTime: 1 action or 8 hours Range: 150 feet Components: V, S Duration: Instantaneous Classes: Bard, Druid, Ranger + Source: (SRD p169) Id: spells_vo.md#plant-growth ParentLink: spells_vo.md#spells-srd-p - Name: Plant Growth ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Croissance végétale](hd_spells_croissance_vegetale.md)' - Source: (SRD p169) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Poison Spray + AltName: '[Bouffée de poison](hd_spells_bouffee_de_poison.md)' Type: Conjuration + Level: cantrip CastingTime: 1 action Range: 10 feet Components: V, S Duration: Instantaneous Classes: Druid, Sorcerer, Warlock, Wizard + Source: (SRD p169) Id: spells_vo.md#poison-spray ParentLink: spells_vo.md#spells-srd-p - Name: Poison Spray ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bouffée de poison](hd_spells_bouffee_de_poison.md)' - Source: (SRD p169) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Polymorph + AltName: '[Métamorphose](hd_spells_metamorphose.md)' Type: transmutation + Level: 4 CastingTime: 1 action Range: 60 feet Components: V, S, M (a caterpillar cocoon) Duration: Concentration, up to 1 hour Classes: Bard, Druid, Sorcerer, Wizard + Source: (SRD p169) Id: spells_vo.md#polymorph ParentLink: spells_vo.md#spells-srd-p - Name: Polymorph ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Métamorphose](hd_spells_metamorphose.md)' - Source: (SRD p169) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Power Word Kill + AltName: '[Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)' Type: enchantment + Level: 9 CastingTime: 1 action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p170) Id: spells_vo.md#power-word-kill ParentLink: spells_vo.md#spells-srd-p - Name: Power Word Kill ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)' - Source: (SRD p170) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Power Word Stun + AltName: '[Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)' Type: enchantment + Level: 8 CastingTime: 1 action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p170) Id: spells_vo.md#power-word-stun ParentLink: spells_vo.md#spells-srd-p - Name: Power Word Stun ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)' - Source: (SRD p170) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Prayer of Healing + AltName: '[Prière de soins](hd_spells_priere_de_soins.md)' Type: evocation + Level: 2 CastingTime: 10 minutes Range: 30 feet Components: V Duration: Instantaneous Classes: Cleric + Source: (SRD p170) Id: spells_vo.md#prayer-of-healing ParentLink: spells_vo.md#spells-srd-p - Name: Prayer of Healing ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Prière de soins](hd_spells_priere_de_soins.md)' - Source: (SRD p170) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Prestidigitation + AltName: '[Prestidigitation](hd_spells_prestidigitation.md)' Type: Transmutation + Level: cantrip CastingTime: 1 action Range: 10 feet Components: V, S Duration: Up to 1 hour Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p170) Id: spells_vo.md#prestidigitation ParentLink: spells_vo.md#spells-srd-p - Name: Prestidigitation ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Prestidigitation](hd_spells_prestidigitation.md)' - Source: (SRD p170) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Prismatic Spray + AltName: '[Embruns prismatiques](hd_spells_embruns_prismatiques.md)' Type: evocation + Level: 7 CastingTime: 1 action Range: Self (60-foot cone) Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p170) Id: spells_vo.md#prismatic-spray ParentLink: spells_vo.md#spells-srd-p - Name: Prismatic Spray ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Embruns prismatiques](hd_spells_embruns_prismatiques.md)' - Source: (SRD p170) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Prismatic Wall + AltName: '[Mur prismatique](hd_spells_mur_prismatique.md)' Type: abjuration + Level: 9 CastingTime: 1 action Range: 60 feet Components: V, S Duration: 10 minutes Classes: Wizard + Source: (SRD p171) Id: spells_vo.md#prismatic-wall ParentLink: spells_vo.md#spells-srd-p - Name: Prismatic Wall ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mur prismatique](hd_spells_mur_prismatique.md)' - Source: (SRD p171) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Produce Flame + AltName: '[Produire une flamme](hd_spells_produire_une_flamme.md)' Type: Conjuration + Level: cantrip CastingTime: 1 action Range: Self Components: V, S Duration: 10 minutes Classes: Druid + Source: (SRD p172) Id: spells_vo.md#produce-flame ParentLink: spells_vo.md#spells-srd-p - Name: Produce Flame ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Produire une flamme](hd_spells_produire_une_flamme.md)' - Source: (SRD p172) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Programmed Illusion + AltName: '[Illusion programmée](hd_spells_illusion_programmee.md)' Type: illusion + Level: 6 CastingTime: 1 action Range: 120 feet Components: V, S, M (a bit of fleece and jade dust worth at least 25 gp) Duration: Until dispelled Classes: Bard, Wizard + Source: (SRD p172) Id: spells_vo.md#programmed-illusion ParentLink: spells_vo.md#spells-srd-p - Name: Programmed Illusion ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Illusion programmée](hd_spells_illusion_programmee.md)' - Source: (SRD p172) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Project Image + AltName: '[Image projetée](hd_spells_image_projetee.md)' Type: illusion + Level: 7 CastingTime: 1 action Range: 500 miles Components: V, S, M (a small replica of you made from materials worth at least 5 gp) Duration: Concentration, up to 1 day Classes: Bard, Wizard + Source: (SRD p172) Id: spells_vo.md#project-image ParentLink: spells_vo.md#spells-srd-p - Name: Project Image ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Image projetée](hd_spells_image_projetee.md)' - Source: (SRD p172) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Protection from Energy + AltName: '[Protection contre les énergies](hd_spells_protection_contre_les_energies.md)' Type: abjuration + Level: 3 CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 hour Classes: Cleric, Druid, Ranger, Sorcerer, Wizard + Source: (SRD p173) Id: spells_vo.md#protection-from-energy ParentLink: spells_vo.md#spells-srd-p - Name: Protection from Energy ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Protection contre les énergies](hd_spells_protection_contre_les_energies.md)' - Source: (SRD p173) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Protection from Evil and Good + AltName: '[Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)' Type: abjuration + Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (holy water or powdered silver and iron, which the spell consumes) Duration: Concentration, up to 10 minutes Classes: Cleric, Paladin, Warlock, Wizard + Source: (SRD p173) Id: spells_vo.md#protection-from-evil-and-good ParentLink: spells_vo.md#spells-srd-p - Name: Protection from Evil and Good ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)' - Source: (SRD p173) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Protection from Poison + AltName: '[Protection contre le poison](hd_spells_protection_contre_le_poison.md)' Type: abjuration + Level: 2 CastingTime: 1 action Range: Touch Components: V, S Duration: 1 hour Classes: Cleric, Druid, Paladin, Ranger + Source: (SRD p173) Id: spells_vo.md#protection-from-poison ParentLink: spells_vo.md#spells-srd-p - Name: Protection from Poison ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Protection contre le poison](hd_spells_protection_contre_le_poison.md)' - Source: (SRD p173) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Purify Food and Drink + AltName: "[Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)" Type: transmutation - Ritual: ritual + Level: 1 CastingTime: 1 action Range: 10 feet Components: V, S Duration: Instantaneous Classes: Cleric, Druid, Paladin + Source: (SRD p173) + Ritual: ritual Id: spells_vo.md#purify-food-and-drink ParentLink: spells_vo.md#spells-srd-p - Name: Purify Food and Drink ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)" - Source: (SRD p173) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Raise Dead + AltName: '[Rappel à la vie](hd_spells_rappel_a_la_vie.md)' Type: necromancy + Level: 5 CastingTime: 1 hour Range: Touch Components: V, S, M (a diamond worth at least 500 gp, which the spell consumes) Duration: Instantaneous Classes: Bard, Cleric, Paladin + Source: (SRD p173) Id: spells_vo.md#raise-dead ParentLink: spells_vo.md#spells-srd-p - Name: Raise Dead ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Rappel à la vie](hd_spells_rappel_a_la_vie.md)' - Source: (SRD p173) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Telepathic Bond + AltName: '[Lien télépathique](hd_spells_lien_telepathique.md)' Type: divination - Ritual: ritual + Level: 5 CastingTime: 1 action Range: 30 feet Components: V, S, M (pieces of eggshell from two different kinds of creatures) Duration: 1 hour Classes: Wizard + Source: (SRD p185) + Ritual: ritual Id: spells_vo.md#telepathic-bond ParentLink: spells_vo.md#spells-srd-p - Name: Telepathic Bond ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lien télépathique](hd_spells_lien_telepathique.md)' - Source: (SRD p185) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Ray of Enfeeblement + AltName: '[Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)' Type: necromancy + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Warlock, Wizard + Source: (SRD p174) Id: spells_vo.md#ray-of-enfeeblement ParentLink: spells_vo.md#spells-srd-p - Name: Ray of Enfeeblement ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)' - Source: (SRD p174) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Ray of Frost + AltName: '[Rayon de givre](hd_spells_rayon_de_givre.md)' Type: Evocation + Level: cantrip CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p174) Id: spells_vo.md#ray-of-frost ParentLink: spells_vo.md#spells-srd-p - Name: Ray of Frost ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Rayon de givre](hd_spells_rayon_de_givre.md)' - Source: (SRD p174) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Regenerate + AltName: '[Régénération](hd_spells_regeneration.md)' Type: transmutation + Level: 7 CastingTime: 1 minute Range: Touch Components: V, S, M (a prayer wheel and holy water) Duration: 1 hour Classes: Bard, Cleric, Druid + Source: (SRD p174) Id: spells_vo.md#regenerate ParentLink: spells_vo.md#spells-srd-p - Name: Regenerate ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Régénération](hd_spells_regeneration.md)' - Source: (SRD p174) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Reincarnate + AltName: '[Réincarnation](hd_spells_reincarnation.md)' Type: transmutation + Level: 5 CastingTime: 1 hour Range: Touch Components: V, S, M (rare oils and unguents worth at least 1,000 gp, which the spell consumes) Duration: Instantaneous Classes: Druid + Source: (SRD p174) Id: spells_vo.md#reincarnate ParentLink: spells_vo.md#spells-srd-p - Name: Reincarnate ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Réincarnation](hd_spells_reincarnation.md)' - Source: (SRD p174) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Remove Curse + AltName: '[Lever une malédiction](hd_spells_lever_une_malediction.md)' Type: abjuration + Level: 3 CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Cleric, Paladin, Warlock, Wizard + Source: (SRD p174) Id: spells_vo.md#remove-curse ParentLink: spells_vo.md#spells-srd-p - Name: Remove Curse ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lever une malédiction](hd_spells_lever_une_malediction.md)' - Source: (SRD p174) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Resistance + AltName: '[Résistance](hd_spells_resistance.md)' Type: Abjuration + Level: cantrip CastingTime: 1 action Range: Touch Components: V, S, M (a miniature cloak) Duration: Concentration, up to 1 minute Classes: Cleric, Druid + Source: (SRD p175) Id: spells_vo.md#resistance ParentLink: spells_vo.md#spells-srd-p - Name: Resistance ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Résistance](hd_spells_resistance.md)' - Source: (SRD p175) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Resurrection + AltName: '[Résurrection](hd_spells_resurrection.md)' Type: necromancy + Level: 7 CastingTime: 1 hour Range: Touch Components: V, S, M (a diamond worth at least 1,000 gp, which the spell consumes) Duration: Instantaneous Classes: Bard, Cleric + Source: (SRD p175) Id: spells_vo.md#resurrection ParentLink: spells_vo.md#spells-srd-p - Name: Resurrection ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Résurrection](hd_spells_resurrection.md)' - Source: (SRD p175) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Reverse Gravity + AltName: '[Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)' Type: transmutation + Level: 7 CastingTime: 1 action Range: 100 feet Components: V, S, M (a lodestone and iron filings) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard + Source: (SRD p175) Id: spells_vo.md#reverse-gravity ParentLink: spells_vo.md#spells-srd-p - Name: Reverse Gravity ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)' - Source: (SRD p175) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Revivify + AltName: '[Revigorer](hd_spells_revigorer.md)' Type: necromancy + Level: 3 CastingTime: 1 action Range: Touch Components: V, S, M (diamonds worth 300 gp, which the spell consumes) Duration: Instantaneous Classes: Cleric, Paladin + Source: (SRD p175) Id: spells_vo.md#revivify ParentLink: spells_vo.md#spells-srd-p - Name: Revivify ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Revigorer](hd_spells_revigorer.md)' - Source: (SRD p175) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Rope Trick + AltName: '[Corde enchantée](hd_spells_corde_enchantee.md)' Type: transmutation + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (powdered corn extract and a twisted loop of parchment) Duration: 1 hour Classes: Wizard + Source: (SRD p176) Id: spells_vo.md#rope-trick ParentLink: spells_vo.md#spells-srd-p - Name: Rope Trick ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Corde enchantée](hd_spells_corde_enchantee.md)' - Source: (SRD p176) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Sacred Flame + AltName: '[Flamme sacrée](hd_spells_flamme_sacree.md)' Type: Evocation + Level: cantrip CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric + Source: (SRD p176) Id: spells_vo.md#sacred-flame ParentLink: spells_vo.md#spells-srd-p - Name: Sacred Flame ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Flamme sacrée](hd_spells_flamme_sacree.md)' - Source: (SRD p176) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Sanctuary + AltName: '[Sanctuaire](hd_spells_sanctuaire.md)' Type: abjuration + Level: 1 CastingTime: 1 bonus action Range: 30 feet Components: V, S, M (a small silver mirror) Duration: 1 minute Classes: Cleric + Source: (SRD p176) Id: spells_vo.md#sanctuary ParentLink: spells_vo.md#spells-srd-p - Name: Sanctuary ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Sanctuaire](hd_spells_sanctuaire.md)' - Source: (SRD p176) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Scorching Ray + AltName: '[Rayon ardent](hd_spells_rayon_ardent.md)' Type: evocation + Level: 2 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p176) Id: spells_vo.md#scorching-ray ParentLink: spells_vo.md#spells-srd-p - Name: Scorching Ray ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Rayon ardent](hd_spells_rayon_ardent.md)' - Source: (SRD p176) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Scrying + AltName: '[Scrutation](hd_spells_scrutation.md)' Type: divination + Level: 5 CastingTime: 10 minutes Range: Self Components: V, S, M (a focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water) Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Druid, Warlock, Wizard + Source: (SRD p176) Id: spells_vo.md#scrying ParentLink: spells_vo.md#spells-srd-p - Name: Scrying ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Scrutation](hd_spells_scrutation.md)' - Source: (SRD p176) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: See Invisibility + AltName: "[Voir l'invisible](hd_spells_voir_linvisible.md)" Type: divination + Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (a pinch of talc and a small sprinkling of powdered silver) Duration: 1 hour Classes: Bard, Sorcerer, Wizard + Source: (SRD p177) Id: spells_vo.md#see-invisibility ParentLink: spells_vo.md#spells-srd-p - Name: See Invisibility ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Voir l'invisible](hd_spells_voir_linvisible.md)" - Source: (SRD p177) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Seeming + AltName: '[Apparence trompeuse](hd_spells_apparence_trompeuse.md)' Type: illusion + Level: 5 CastingTime: 1 action Range: 30 feet Components: V, S Duration: 8 hours Classes: Bard, Sorcerer, Wizard + Source: (SRD p177) Id: spells_vo.md#seeming ParentLink: spells_vo.md#spells-srd-p - Name: Seeming ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Apparence trompeuse](hd_spells_apparence_trompeuse.md)' - Source: (SRD p177) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Sending + AltName: '[Envoi de message](hd_spells_envoi_de_message.md)' Type: evocation + Level: 3 CastingTime: 1 action Range: Unlimited Components: V, S, M (a short piece of fine copper wire) Duration: 1 round Classes: Bard, Cleric, Wizard + Source: (SRD p177) Id: spells_vo.md#sending ParentLink: spells_vo.md#spells-srd-p - Name: Sending ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Envoi de message](hd_spells_envoi_de_message.md)' - Source: (SRD p177) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Sequester + AltName: '[Séquestration](hd_spells_sequestration.md)' Type: transmutation + Level: 7 CastingTime: 1 action Range: Touch Components: V, S, M (a powder composed of diamond, emerald, ruby, and sapphire dust worth at least 5,000 gp, which the spell consumes) Duration: Until dispelled Classes: Wizard + Source: (SRD p178) Id: spells_vo.md#sequester ParentLink: spells_vo.md#spells-srd-p - Name: Sequester ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Séquestration](hd_spells_sequestration.md)' - Source: (SRD p178) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Shapechange + AltName: '[Changement de forme](hd_spells_changement_de_forme.md)' Type: transmutation + Level: 9 CastingTime: 1 action Range: Self Components: V, S, M (a jade circlet worth at least 1,500 gp, which you must place on your head before you cast the spell) Duration: Concentration, up to 1 hour Classes: Druid, Wizard + Source: (SRD p178) Id: spells_vo.md#shapechange ParentLink: spells_vo.md#spells-srd-p - Name: Shapechange ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Changement de forme](hd_spells_changement_de_forme.md)' - Source: (SRD p178) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Shatter + AltName: '[Briser](hd_spells_briser.md)' Type: evocation + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a chip of mica) Duration: Instantaneous Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p178) Id: spells_vo.md#shatter ParentLink: spells_vo.md#spells-srd-p - Name: Shatter ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Briser](hd_spells_briser.md)' - Source: (SRD p178) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Shield + AltName: '[Bouclier](hd_spells_bouclier.md)' Type: abjuration + Level: 1 CastingTime: 1 reaction, which you take when you are hit by an attack or targeted by the magic missile spell Range: Self Components: V, S Duration: 1 round Classes: Sorcerer, Wizard + Source: (SRD p179) Id: spells_vo.md#shield ParentLink: spells_vo.md#spells-srd-p - Name: Shield ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bouclier](hd_spells_bouclier.md)' - Source: (SRD p179) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Shield of Faith + AltName: '[Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)' Type: abjuration + Level: 1 CastingTime: 1 bonus action Range: 60 feet Components: V, S, M (a small parchment with a bit of holy text written on it) Duration: Concentration, up to 10 minutes Classes: Cleric, Paladin + Source: (SRD p179) Id: spells_vo.md#shield-of-faith ParentLink: spells_vo.md#spells-srd-p - Name: Shield of Faith ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)' - Source: (SRD p179) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Shillelagh + AltName: '[Gourdin magique](hd_spells_gourdin_magique.md)' Type: Transmutation + Level: cantrip CastingTime: 1 bonus action Range: Touch Components: V, S, M (mistletoe, a shamrock leaf, and a club or quarterstaff) Duration: 1 minute Classes: Druid + Source: (SRD p179) Id: spells_vo.md#shillelagh ParentLink: spells_vo.md#spells-srd-p - Name: Shillelagh ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Gourdin magique](hd_spells_gourdin_magique.md)' - Source: (SRD p179) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Shocking Grasp + AltName: '[Poigne électrique](hd_spells_poigne_electrique.md)' Type: Evocation + Level: cantrip CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p179) Id: spells_vo.md#shocking-grasp ParentLink: spells_vo.md#spells-srd-p - Name: Shocking Grasp ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Poigne électrique](hd_spells_poigne_electrique.md)' - Source: (SRD p179) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Silence + AltName: '[Silence](hd_spells_silence.md)' Type: illusion - Ritual: ritual + Level: 2 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Ranger + Source: (SRD p179) + Ritual: ritual Id: spells_vo.md#silence ParentLink: spells_vo.md#spells-srd-p - Name: Silence ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Silence](hd_spells_silence.md)' - Source: (SRD p179) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Silent Image + AltName: '[Image silencieuse](hd_spells_image_silencieuse.md)' Type: illusion + Level: 1 CastingTime: 1 action Range: 60 feet Components: V, S, M (a bit of fleece) Duration: Concentration, up to 10 minutes Classes: Bard, Sorcerer, Wizard + Source: (SRD p179) Id: spells_vo.md#silent-image ParentLink: spells_vo.md#spells-srd-p - Name: Silent Image ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Image silencieuse](hd_spells_image_silencieuse.md)' - Source: (SRD p179) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Simulacrum + AltName: '[Simulacre](hd_spells_simulacre.md)' Type: illusion + Level: 7 CastingTime: 12 hours Range: Touch Components: V, S, M (snow or ice in quantities sufficient to made a life-size copy of the duplicated creature; some hair, fingernail clippings, or other piece of that creature's body placed inside the snow or ice; and powdered ruby worth 1,500 gp, sprinkled over the duplicate and consumed by the spell) Duration: Until dispelled Classes: Wizard + Source: (SRD p180) Id: spells_vo.md#simulacrum ParentLink: spells_vo.md#spells-srd-p - Name: Simulacrum ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Simulacre](hd_spells_simulacre.md)' - Source: (SRD p180) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Sleep + AltName: '[Sommeil](hd_spells_sommeil.md)' Type: enchantment + Level: 1 CastingTime: 1 action Range: 90 feet Components: V, S, M (a pinch of fine sand, rose petals, or a cricket) Duration: 1 minute Classes: Bard, Sorcerer, Wizard + Source: (SRD p180) Id: spells_vo.md#sleep ParentLink: spells_vo.md#spells-srd-p - Name: Sleep ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Sommeil](hd_spells_sommeil.md)' - Source: (SRD p180) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Sleet Storm + AltName: '[Tempête de neige](hd_spells_tempete_de_neige.md)' Type: conjuration + Level: 3 CastingTime: 1 action Range: 150 feet Components: V, S, M (a pinch of dust and a few drops of water) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard + Source: (SRD p180) Id: spells_vo.md#sleet-storm ParentLink: spells_vo.md#spells-srd-p - Name: Sleet Storm ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Tempête de neige](hd_spells_tempete_de_neige.md)' - Source: (SRD p180) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Slow + AltName: '[Lenteur](hd_spells_lenteur.md)' Type: transmutation + Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S, M (a drop of molasses) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard + Source: (SRD p180) Id: spells_vo.md#slow ParentLink: spells_vo.md#spells-srd-p - Name: Slow ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lenteur](hd_spells_lenteur.md)' - Source: (SRD p180) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Spare the Dying + AltName: '[Épargner les mourants](hd_spells_epargner_les_mourants.md)' Type: Necromancy + Level: cantrip CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Cleric + Source: (SRD p181) Id: spells_vo.md#spare-the-dying ParentLink: spells_vo.md#spells-srd-p - Name: Spare the Dying ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Épargner les mourants](hd_spells_epargner_les_mourants.md)' - Source: (SRD p181) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Speak with Animals + AltName: '[Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)' Type: divination - Ritual: ritual + Level: 1 CastingTime: 1 action Range: Self Components: V, S Duration: 10 minutes Classes: Bard, Druid, Ranger + Source: (SRD p181) + Ritual: ritual Id: spells_vo.md#speak-with-animals ParentLink: spells_vo.md#spells-srd-p - Name: Speak with Animals ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)' - Source: (SRD p181) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Speak with Dead + AltName: '[Communication avec les morts](hd_spells_communication_avec_les_morts.md)' Type: necromancy + Level: 3 CastingTime: 1 action Range: 10 feet Components: V, S, M (burning incense) Duration: 10 minutes Classes: Bard, Cleric + Source: (SRD p181) Id: spells_vo.md#speak-with-dead ParentLink: spells_vo.md#spells-srd-p - Name: Speak with Dead ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Communication avec les morts](hd_spells_communication_avec_les_morts.md)' - Source: (SRD p181) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Speak with Plants + AltName: '[Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)' Type: transmutation + Level: 3 CastingTime: 1 action Range: Self (30-foot radius) Components: V, S Duration: 10 minutes Classes: Bard, Druid, Ranger + Source: (SRD p181) Id: spells_vo.md#speak-with-plants ParentLink: spells_vo.md#spells-srd-p - Name: Speak with Plants ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)' - Source: (SRD p181) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Spider Climb + AltName: "[Pattes d'araignée](hd_spells_pattes_daraignee.md)" Type: transmutation + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a drop of bitumen and a spider) Duration: Concentration, up to 1 hour Classes: Sorcerer, Warlock, Wizard + Source: (SRD p182) Id: spells_vo.md#spider-climb ParentLink: spells_vo.md#spells-srd-p - Name: Spider Climb ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Pattes d'araignée](hd_spells_pattes_daraignee.md)" - Source: (SRD p182) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Spike Growth + AltName: "[Croissance d'épines](hd_spells_croissance_depines.md)" Type: transmutation + Level: 2 CastingTime: 1 action Range: 150 feet Components: V, S, M (seven sharp thorns or seven small twigs, each sharpened to a point) Duration: Concentration, up to 10 minutes Classes: Druid, Ranger + Source: (SRD p182) Id: spells_vo.md#spike-growth ParentLink: spells_vo.md#spells-srd-p - Name: Spike Growth ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Croissance d'épines](hd_spells_croissance_depines.md)" - Source: (SRD p182) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Spirit Guardians + AltName: '[Esprits gardiens](hd_spells_esprits_gardiens.md)' Type: conjuration + Level: 3 CastingTime: 1 action Range: Self (15-foot radius) Components: V, S, M (a holy symbol) Duration: Concentration, up to 10 minutes Classes: Cleric + Source: (SRD p182) Id: spells_vo.md#spirit-guardians ParentLink: spells_vo.md#spells-srd-p - Name: Spirit Guardians ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Esprits gardiens](hd_spells_esprits_gardiens.md)' - Source: (SRD p182) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Spiritual Weapon + AltName: '[Arme spirituelle](hd_spells_arme_spirituelle.md)' Type: evocation + Level: 2 CastingTime: 1 bonus action Range: 60 feet Components: V, S Duration: 1 minute Classes: Cleric + Source: (SRD p182) Id: spells_vo.md#spiritual-weapon ParentLink: spells_vo.md#spells-srd-p - Name: Spiritual Weapon ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Arme spirituelle](hd_spells_arme_spirituelle.md)' - Source: (SRD p182) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Stinking Cloud + AltName: '[Nuage puant](hd_spells_nuage_puant.md)' Type: conjuration + Level: 3 CastingTime: 1 action Range: 90 feet Components: V, S, M (a rotten egg or several skunk cabbage leaves) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard + Source: (SRD p182) Id: spells_vo.md#stinking-cloud ParentLink: spells_vo.md#spells-srd-p - Name: Stinking Cloud ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Nuage puant](hd_spells_nuage_puant.md)' - Source: (SRD p182) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Stone Shape + AltName: '[Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)' Type: transmutation + Level: 4 CastingTime: 1 action Range: Touch Components: V, S, M (soft clay, which must be worked into roughly the desired shape of the stone object) Duration: Instantaneous Classes: Cleric, Druid, Wizard + Source: (SRD p183) Id: spells_vo.md#stone-shape ParentLink: spells_vo.md#spells-srd-p - Name: Stone Shape ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)' - Source: (SRD p183) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Stoneskin + AltName: '[Peau de pierre](hd_spells_peau_de_pierre.md)' Type: abjuration + Level: 4 CastingTime: 1 action Range: Touch Components: V, S, M (diamond dust worth 100 gp, which the spell consumes) Duration: Concentration, up to 1 hour Classes: Druid, Ranger, Sorcerer, Wizard + Source: (SRD p183) Id: spells_vo.md#stoneskin ParentLink: spells_vo.md#spells-srd-p - Name: Stoneskin ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Peau de pierre](hd_spells_peau_de_pierre.md)' - Source: (SRD p183) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Storm of Vengeance + AltName: '[Tempête vengeresse](hd_spells_tempete_vengeresse.md)' Type: conjuration + Level: 9 CastingTime: 1 action Range: Sight Components: V, S Duration: Concentration, up to 1 minute Classes: Druid + Source: (SRD p183) Id: spells_vo.md#storm-of-vengeance ParentLink: spells_vo.md#spells-srd-p - Name: Storm of Vengeance ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Tempête vengeresse](hd_spells_tempete_vengeresse.md)' - Source: (SRD p183) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Suggestion + AltName: '[Suggestion](hd_spells_suggestion.md)' Type: enchantment + Level: 2 CastingTime: 1 action Range: 30 feet Components: V, M (a snake's tongue and either a bit of honeycomb or a drop of sweet oil) Duration: Concentration, up to 8 hours Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p183) Id: spells_vo.md#suggestion ParentLink: spells_vo.md#spells-srd-p - Name: Suggestion ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Suggestion](hd_spells_suggestion.md)' - Source: (SRD p183) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Sunbeam + AltName: '[Rayon de soleil](hd_spells_rayon_de_soleil.md)' Type: evocation + Level: 6 CastingTime: 1 action Range: Self (60-foot line) Components: V, S, M (a magnifying glass) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard + Source: (SRD p184) Id: spells_vo.md#sunbeam ParentLink: spells_vo.md#spells-srd-p - Name: Sunbeam ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Rayon de soleil](hd_spells_rayon_de_soleil.md)' - Source: (SRD p184) Attributes: {} - !SpellItem Family: SpellVO - Level: 8 + Name: Sunburst + AltName: '[Éclat du soleil](hd_spells_eclat_du_soleil.md)' Type: evocation + Level: 8 CastingTime: 1 action Range: 150 feet Components: V, S, M (fire and a piece of sunstone) Duration: Instantaneous Classes: Druid, Sorcerer, Wizard + Source: (SRD p184) Id: spells_vo.md#sunburst ParentLink: spells_vo.md#spells-srd-p - Name: Sunburst ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Éclat du soleil](hd_spells_eclat_du_soleil.md)' - Source: (SRD p184) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Symbol + AltName: '[Symbole](hd_spells_symbole.md)' Type: abjuration + Level: 7 CastingTime: 1 minute Range: Touch Components: V, S, M (mercury, phosphorus, and powdered diamond and opal with a total value of at least 1,000 gp, which the spell consumes) Duration: Until dispelled or triggered Classes: Bard, Cleric, Wizard + Source: (SRD p184) Id: spells_vo.md#symbol ParentLink: spells_vo.md#spells-srd-p - Name: Symbol ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Symbole](hd_spells_symbole.md)' - Source: (SRD p184) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Hideous Laughter + AltName: '[Fou rire](hd_spells_fou_rire.md)' Type: enchantment + Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (tiny tarts and a feather that is waved in the air) Duration: Concentration, up to 1 minute Classes: Bard, Wizard + Source: (SRD p154) Id: spells_vo.md#hideous-laughter ParentLink: spells_vo.md#spells-srd-p - Name: Hideous Laughter ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Fou rire](hd_spells_fou_rire.md)' - Source: (SRD p154) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Telekinesis + AltName: '[Télékinésie](hd_spells_telekinesie.md)' Type: transmutation + Level: 5 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Sorcerer, Wizard + Source: (SRD p185) Id: spells_vo.md#telekinesis ParentLink: spells_vo.md#spells-srd-p - Name: Telekinesis ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Télékinésie](hd_spells_telekinesie.md)' - Source: (SRD p185) Attributes: {} - !SpellItem Family: SpellVO - Level: 7 + Name: Teleport + AltName: '[Téléportation](hd_spells_teleportation.md)' Type: conjuration + Level: 7 CastingTime: 1 action Range: 10 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Wizard + Source: (SRD p185) Id: spells_vo.md#teleport ParentLink: spells_vo.md#spells-srd-p - Name: Teleport ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Téléportation](hd_spells_teleportation.md)' - Source: (SRD p185) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Teleportation Circle + AltName: '[Cercle de téléportation](hd_spells_cercle_de_teleportation.md)' Type: conjuration + Level: 5 CastingTime: 1 minute Range: 10 feet Components: V, M (rare chalks and inks infused with precious gems with 50 gp, which the spell consumes) Duration: 1 round Classes: Bard, Sorcerer, Wizard + Source: (SRD p186) Id: spells_vo.md#teleportation-circle ParentLink: spells_vo.md#spells-srd-p - Name: Teleportation Circle ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Cercle de téléportation](hd_spells_cercle_de_teleportation.md)' - Source: (SRD p186) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Floating Disk + AltName: '[Disque flottant](hd_spells_disque_flottant.md)' Type: conjuration - Ritual: ritual + Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a drop of mercury) Duration: 1 hour Classes: Wizard + Source: (SRD p146) + Ritual: ritual Id: spells_vo.md#floating-disk ParentLink: spells_vo.md#spells-srd-p - Name: Floating Disk ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Disque flottant](hd_spells_disque_flottant.md)' - Source: (SRD p146) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Thaumaturgy + AltName: '[Thaumaturgie](hd_spells_thaumaturgie.md)' Type: Transmutation + Level: cantrip CastingTime: 1 action Range: 30 feet Components: V Duration: Up to 1 minute Classes: Cleric + Source: (SRD p187) Id: spells_vo.md#thaumaturgy ParentLink: spells_vo.md#spells-srd-p - Name: Thaumaturgy ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Thaumaturgie](hd_spells_thaumaturgie.md)' - Source: (SRD p187) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Thunderwave + AltName: '[Vague tonnante](hd_spells_vague_tonnante.md)' Type: evocation + Level: 1 CastingTime: 1 action Range: Self (15-foot cube) Components: V, S Duration: Instantaneous Classes: Bard, Druid, Sorcerer, Wizard + Source: (SRD p187) Id: spells_vo.md#thunderwave ParentLink: spells_vo.md#spells-srd-p - Name: Thunderwave ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Vague tonnante](hd_spells_vague_tonnante.md)' - Source: (SRD p187) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Time Stop + AltName: '[Arrêt du temps](hd_spells_arret_du_temps.md)' Type: transmutation + Level: 9 CastingTime: 1 action Range: Self Components: V Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p187) Id: spells_vo.md#time-stop ParentLink: spells_vo.md#spells-srd-p - Name: Time Stop ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Arrêt du temps](hd_spells_arret_du_temps.md)' - Source: (SRD p187) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Tongues + AltName: '[Langues](hd_spells_langues.md)' Type: divination + Level: 3 CastingTime: 1 action Range: Touch Components: V, M (a small clay model of a ziggurat) Duration: 1 hour Classes: Bard, Cleric, Sorcerer, Warlock, Wizard + Source: (SRD p187) Id: spells_vo.md#tongues ParentLink: spells_vo.md#spells-srd-p - Name: Tongues ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Langues](hd_spells_langues.md)' - Source: (SRD p187) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Transport via Plants + AltName: '[Transport végétal](hd_spells_transport_vegetal.md)' Type: conjuration + Level: 6 CastingTime: 1 action Range: 10 feet Components: V, S Duration: 1 round Classes: Druid + Source: (SRD p188) Id: spells_vo.md#transport-via-plants ParentLink: spells_vo.md#spells-srd-p - Name: Transport via Plants ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Transport végétal](hd_spells_transport_vegetal.md)' - Source: (SRD p188) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Tree Stride + AltName: '[Passage par les arbres](hd_spells_passage_par_les_arbres.md)' Type: conjuration + Level: 5 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 1 minute Classes: Druid, Ranger + Source: (SRD p188) Id: spells_vo.md#tree-stride ParentLink: spells_vo.md#spells-srd-p - Name: Tree Stride ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Passage par les arbres](hd_spells_passage_par_les_arbres.md)' - Source: (SRD p188) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: True Polymorph + AltName: '[Métamorphose suprême](hd_spells_metamorphose_supreme.md)' Type: transmutation + Level: 9 CastingTime: 1 action Range: 30 feet Components: V, S, M (a drop of mercury, a dollop of gum arabic, and a wisp of smoke) Duration: Concentration, up to 1 hour Classes: Bard, Warlock, Wizard + Source: (SRD p188) Id: spells_vo.md#true-polymorph ParentLink: spells_vo.md#spells-srd-p - Name: True Polymorph ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Métamorphose suprême](hd_spells_metamorphose_supreme.md)' - Source: (SRD p188) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: True Resurrection + AltName: '[Résurrection suprême](hd_spells_resurrection_supreme.md)' Type: necromancy + Level: 9 CastingTime: 1 hour Range: Touch Components: V, S, M (a sprinkle of holy water and diamonds worth at least 25,000 gp, which the spell consumes) Duration: Instantaneous Classes: Cleric, Druid + Source: (SRD p189) Id: spells_vo.md#true-resurrection ParentLink: spells_vo.md#spells-srd-p - Name: True Resurrection ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Résurrection suprême](hd_spells_resurrection_supreme.md)' - Source: (SRD p189) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: True Seeing + AltName: '[Vision suprême](hd_spells_vision_supreme.md)' Type: divination + Level: 6 CastingTime: 1 action Range: Touch Components: V, S, M (an ointment for the eyes that costs 25 gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell) Duration: 1 hour Classes: Bard, Cleric, Sorcerer, Warlock, Wizard + Source: (SRD p189) Id: spells_vo.md#true-seeing ParentLink: spells_vo.md#spells-srd-p - Name: True Seeing ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Vision suprême](hd_spells_vision_supreme.md)' - Source: (SRD p189) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: True Strike + AltName: '[Viser juste](hd_spells_viser_juste.md)' Type: Divination + Level: cantrip CastingTime: 1 action Range: 30 feet Components: S Duration: Concentration, up to 1 round Classes: Bard, Sorcerer, Warlock, Wizard + Source: (SRD p189) Id: spells_vo.md#true-strike ParentLink: spells_vo.md#spells-srd-p - Name: True Strike ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Viser juste](hd_spells_viser_juste.md)' - Source: (SRD p189) Attributes: {} - !SpellItem Family: SpellVO - Level: 1 + Name: Unseen Servant + AltName: '[Serviteur invisible](hd_spells_serviteur_invisible.md)' Type: conjuration - Ritual: ritual + Level: 1 CastingTime: 1 action Range: 60 feet Components: V, S, M (a piece of string and a bit of wood) Duration: 1 hour Classes: Bard, Warlock, Wizard + Source: (SRD p189) + Ritual: ritual Id: spells_vo.md#unseen-servant ParentLink: spells_vo.md#spells-srd-p - Name: Unseen Servant ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Serviteur invisible](hd_spells_serviteur_invisible.md)' - Source: (SRD p189) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Vampiric Touch + AltName: '[Caresse du vampire](hd_spells_caresse_du_vampire.md)' Type: necromancy + Level: 3 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 1 minute Classes: Warlock, Wizard + Source: (SRD p189) Id: spells_vo.md#vampiric-touch ParentLink: spells_vo.md#spells-srd-p - Name: Vampiric Touch ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Caresse du vampire](hd_spells_caresse_du_vampire.md)' - Source: (SRD p189) Attributes: {} - !SpellItem Family: SpellVO - Level: cantrip + Name: Vicious Mockery + AltName: '[Moquerie cruelle](hd_spells_moquerie_cruelle.md)' Type: Enchantment + Level: cantrip CastingTime: 1 action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard + Source: (SRD p189) Id: spells_vo.md#vicious-mockery ParentLink: spells_vo.md#spells-srd-p - Name: Vicious Mockery ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Moquerie cruelle](hd_spells_moquerie_cruelle.md)' - Source: (SRD p189) Attributes: {} - !SpellItem Family: SpellVO - Level: 4 + Name: Wall of Fire + AltName: '[Mur de feu](hd_spells_mur_de_feu.md)' Type: evocation + Level: 4 CastingTime: 1 action Range: 120 feet Components: V, S, M (a small piece of phosphorus) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard + Source: (SRD p190) Id: spells_vo.md#wall-of-fire ParentLink: spells_vo.md#spells-srd-p - Name: Wall of Fire ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mur de feu](hd_spells_mur_de_feu.md)' - Source: (SRD p190) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Wall of Force + AltName: '[Mur de force](hd_spells_mur_de_force.md)' Type: evocation + Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S, M (a pinch of powder made by crushing a clear gemstone) Duration: Concentration, up to 10 minutes Classes: Wizard + Source: (SRD p190) Id: spells_vo.md#wall-of-force ParentLink: spells_vo.md#spells-srd-p - Name: Wall of Force ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mur de force](hd_spells_mur_de_force.md)' - Source: (SRD p190) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Wall of Ice + AltName: '[Mur de glace](hd_spells_mur_de_glace.md)' Type: evocation + Level: 6 CastingTime: 1 action Range: 120 feet Components: V, S, M (a small piece of quartz) Duration: Concentration, up to 10 minutes Classes: Wizard + Source: (SRD p190) Id: spells_vo.md#wall-of-ice ParentLink: spells_vo.md#spells-srd-p - Name: Wall of Ice ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mur de glace](hd_spells_mur_de_glace.md)' - Source: (SRD p190) Attributes: {} - !SpellItem Family: SpellVO - Level: 5 + Name: Wall of Stone + AltName: '[Mur de pierre](hd_spells_mur_de_pierre.md)' Type: evocation + Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S, M (a small block of granite) Duration: Concentration, up to 10 minutes Classes: Druid, Sorcerer, Wizard + Source: (SRD p190) Id: spells_vo.md#wall-of-stone ParentLink: spells_vo.md#spells-srd-p - Name: Wall of Stone ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mur de pierre](hd_spells_mur_de_pierre.md)' - Source: (SRD p190) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Wall of Thorns + AltName: "[Mur d'épines](hd_spells_mur_depines.md)" Type: conjuration + Level: 6 CastingTime: 1 action Range: 120 feet Components: V, S, M (a handful of thorns) Duration: Concentration, up to 10 minutes Classes: Druid + Source: (SRD p191) Id: spells_vo.md#wall-of-thorns ParentLink: spells_vo.md#spells-srd-p - Name: Wall of Thorns ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Mur d'épines](hd_spells_mur_depines.md)" - Source: (SRD p191) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Warding Bond + AltName: '[Lien de protection](hd_spells_lien_de_protection.md)' Type: abjuration + Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a pair of platinum rings worth at least 50 gp each, which you and the target must wear for the duration) Duration: 1 hour Classes: Cleric + Source: (SRD p191) Id: spells_vo.md#warding-bond ParentLink: spells_vo.md#spells-srd-p - Name: Warding Bond ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Lien de protection](hd_spells_lien_de_protection.md)' - Source: (SRD p191) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Water Breathing + AltName: '[Respiration aquatique](hd_spells_respiration_aquatique.md)' Type: transmutation - Ritual: ritual + Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S, M (a short reed or piece of straw) Duration: 24 hours Classes: Druid, Ranger, Sorcerer, Wizard + Source: (SRD p191) + Ritual: ritual Id: spells_vo.md#water-breathing ParentLink: spells_vo.md#spells-srd-p - Name: Water Breathing ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Respiration aquatique](hd_spells_respiration_aquatique.md)' - Source: (SRD p191) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Water Walk + AltName: "[Marche sur l'eau](hd_spells_marche_sur_leau.md)" Type: transmutation - Ritual: ritual + Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S, M (a piece of cork) Duration: 1 hour Classes: Cleric, Druid, Ranger, Sorcerer + Source: (SRD p191) + Ritual: ritual Id: spells_vo.md#water-walk ParentLink: spells_vo.md#spells-srd-p - Name: Water Walk ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Marche sur l'eau](hd_spells_marche_sur_leau.md)" - Source: (SRD p191) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Web + AltName: "[Toile d'araignée](hd_spells_toile_daraignee.md)" Type: conjuration + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a bit of spiderweb) Duration: Concentration, up to 1 hour Classes: Sorcerer, Wizard + Source: (SRD p192) Id: spells_vo.md#web ParentLink: spells_vo.md#spells-srd-p - Name: Web ParentName: Spells (SRD p) NameLevel: 1 - AltName: "[Toile d'araignée](hd_spells_toile_daraignee.md)" - Source: (SRD p192) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Weird + AltName: '[Étrangeté](hd_spells_etrangete.md)' Type: illusion + Level: 9 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Wizard + Source: (SRD p192) Id: spells_vo.md#weird ParentLink: spells_vo.md#spells-srd-p - Name: Weird ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Étrangeté](hd_spells_etrangete.md)' - Source: (SRD p192) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Wind Walk + AltName: '[Marche sur le vent](hd_spells_marche_sur_le_vent.md)' Type: transmutation + Level: 6 CastingTime: 1 minute Range: 30 feet Components: V, S, M (fire and holy water) Duration: 8 hours Classes: Druid + Source: (SRD p192) Id: spells_vo.md#wind-walk ParentLink: spells_vo.md#spells-srd-p - Name: Wind Walk ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Marche sur le vent](hd_spells_marche_sur_le_vent.md)' - Source: (SRD p192) Attributes: {} - !SpellItem Family: SpellVO - Level: 3 + Name: Wind Wall + AltName: '[Mur de vent](hd_spells_mur_de_vent.md)' Type: evocation + Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S, M (a tiny fan and a feather of exotic origin) Duration: Concentration, up to 1 minute Classes: Druid, Ranger + Source: (SRD p192) Id: spells_vo.md#wind-wall ParentLink: spells_vo.md#spells-srd-p - Name: Wind Wall ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mur de vent](hd_spells_mur_de_vent.md)' - Source: (SRD p192) Attributes: {} - !SpellItem Family: SpellVO - Level: 9 + Name: Wish + AltName: '[Souhait](hd_spells_souhait.md)' Type: conjuration + Level: 9 CastingTime: 1 action Range: Self Components: V Duration: Instantaneous Classes: Sorcerer, Wizard + Source: (SRD p193) Id: spells_vo.md#wish ParentLink: spells_vo.md#spells-srd-p - Name: Wish ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Souhait](hd_spells_souhait.md)' - Source: (SRD p193) Attributes: {} - !SpellItem Family: SpellVO - Level: 6 + Name: Word of Recall + AltName: '[Mot de retour](hd_spells_mot_de_retour.md)' Type: conjuration + Level: 6 CastingTime: 1 action Range: 5 feet Components: V Duration: Instantaneous Classes: Cleric + Source: (SRD p193) Id: spells_vo.md#word-of-recall ParentLink: spells_vo.md#spells-srd-p - Name: Word of Recall ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Mot de retour](hd_spells_mot_de_retour.md)' - Source: (SRD p193) Attributes: {} - !SpellItem Family: SpellVO - Level: 2 + Name: Zone of Truth + AltName: '[Zone de vérité](hd_spells_zone_de_verite.md)' Type: enchantment + Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S Duration: 10 minutes Classes: Bard, Cleric, Paladin + Source: (SRD p193) Id: spells_vo.md#zone-of-truth ParentLink: spells_vo.md#spells-srd-p - Name: Zone of Truth ParentName: Spells (SRD p) NameLevel: 1 - AltName: '[Zone de vérité](hd_spells_zone_de_verite.md)' - Source: (SRD p193) Attributes: {} Id: spells_vo.md#spells-srd-p RootId: spells_vo.md ParentLink: index.md -Name: Spells (SRD p) ParentName: SRD NameLevel: 1 -AltName: '[Sorts](hd_spells.md)' Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_acid_arrow.md b/Data/HD/srd_spells_acid_arrow.md index d89744ee..365c9c84 100644 --- a/Data/HD/srd_spells_acid_arrow.md +++ b/Data/HD/srd_spells_acid_arrow.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Acid Arrow +AltName: '[Flèche acide](hd_spells_fleche_acide.md)' Type: evocation +Level: 2 CastingTime: 1 action Range: 90 feet Components: V, S, M (powdered rhubarb leaf and an adder's stomach) Duration: Instantaneous Classes: Wizard +Source: (SRD p114) Id: spells_vo.md#acid-arrow ParentLink: spells_vo.md#spells-srd-p -Name: Acid Arrow ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Flèche acide](hd_spells_fleche_acide.md)' -Source: (SRD p114) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_acid_splash.md b/Data/HD/srd_spells_acid_splash.md index 7abdc8ff..6a2a9cde 100644 --- a/Data/HD/srd_spells_acid_splash.md +++ b/Data/HD/srd_spells_acid_splash.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Acid Splash +AltName: '[Aspersion acide](hd_spells_aspersion_acide.md)' Type: Conjuration +Level: cantrip CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p114) Id: spells_vo.md#acid-splash ParentLink: spells_vo.md#spells-srd-p -Name: Acid Splash ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Aspersion acide](hd_spells_aspersion_acide.md)' -Source: (SRD p114) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_aid.md b/Data/HD/srd_spells_aid.md index 5d1967c7..b83c8a81 100644 --- a/Data/HD/srd_spells_aid.md +++ b/Data/HD/srd_spells_aid.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Aid +AltName: '[Aide](hd_spells_aide.md)' Type: abjuration +Level: 2 CastingTime: 1 action Range: 30 feet Components: V, S, M (a tiny strip of white cloth) Duration: 8 hours Classes: Cleric, Paladin +Source: (SRD p114) Id: spells_vo.md#aid ParentLink: spells_vo.md#spells-srd-p -Name: Aid ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Aide](hd_spells_aide.md)' -Source: (SRD p114) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_alarm.md b/Data/HD/srd_spells_alarm.md index 77df3873..abd2c36e 100644 --- a/Data/HD/srd_spells_alarm.md +++ b/Data/HD/srd_spells_alarm.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Alarm +AltName: '[Alarme](hd_spells_alarme.md)' Type: abjuration -Ritual: ritual +Level: 1 CastingTime: 1 minute Range: 30 feet Components: V, S, M (a tiny bell and a piece of fine silver wire) Duration: 8 hours Classes: Ranger, Wizard +Source: (SRD p114) +Ritual: ritual Id: spells_vo.md#alarm ParentLink: spells_vo.md#spells-srd-p -Name: Alarm ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Alarme](hd_spells_alarme.md)' -Source: (SRD p114) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_alter_self.md b/Data/HD/srd_spells_alter_self.md index 1b601c28..5d3d6abf 100644 --- a/Data/HD/srd_spells_alter_self.md +++ b/Data/HD/srd_spells_alter_self.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Alter Self +AltName: '[Modifier son apparence](hd_spells_modifier_son_apparence.md)' Type: transmutation +Level: 2 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 1 hour Classes: Sorcerer, Wizard +Source: (SRD p114) Id: spells_vo.md#alter-self ParentLink: spells_vo.md#spells-srd-p -Name: Alter Self ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Modifier son apparence](hd_spells_modifier_son_apparence.md)' -Source: (SRD p114) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_animal_friendship.md b/Data/HD/srd_spells_animal_friendship.md index a5bdd1d5..99e29c42 100644 --- a/Data/HD/srd_spells_animal_friendship.md +++ b/Data/HD/srd_spells_animal_friendship.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Animal Friendship +AltName: '[Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)' Type: enchantment +Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a morsel of food) Duration: 24 hours Classes: Bard, Druid, Ranger +Source: (SRD p115) Id: spells_vo.md#animal-friendship ParentLink: spells_vo.md#spells-srd-p -Name: Animal Friendship ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)' -Source: (SRD p115) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_animal_messenger.md b/Data/HD/srd_spells_animal_messenger.md index 164e2ed1..69433f54 100644 --- a/Data/HD/srd_spells_animal_messenger.md +++ b/Data/HD/srd_spells_animal_messenger.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Animal Messenger +AltName: '[Messager animal](hd_spells_messager_animal.md)' Type: enchantment -Ritual: ritual +Level: 2 CastingTime: 1 action Range: 30 feet Components: V, S, M (a morsel of food) Duration: 24 hours Classes: Bard, Druid, Ranger +Source: (SRD p115) +Ritual: ritual Id: spells_vo.md#animal-messenger ParentLink: spells_vo.md#spells-srd-p -Name: Animal Messenger ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Messager animal](hd_spells_messager_animal.md)' -Source: (SRD p115) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_animal_shapes.md b/Data/HD/srd_spells_animal_shapes.md index a07d1710..7e579529 100644 --- a/Data/HD/srd_spells_animal_shapes.md +++ b/Data/HD/srd_spells_animal_shapes.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Animal Shapes +AltName: '[Formes animales](hd_spells_formes_animales.md)' Type: transmutation +Level: 8 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 24 hours Classes: Druid +Source: (SRD p115) Id: spells_vo.md#animal-shapes ParentLink: spells_vo.md#spells-srd-p -Name: Animal Shapes ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Formes animales](hd_spells_formes_animales.md)' -Source: (SRD p115) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_animate_dead.md b/Data/HD/srd_spells_animate_dead.md index f61e66af..a2f685ee 100644 --- a/Data/HD/srd_spells_animate_dead.md +++ b/Data/HD/srd_spells_animate_dead.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Animate Dead +AltName: '[Animation des morts](hd_spells_animation_des_morts.md)' Type: necromancy +Level: 3 CastingTime: 1 minute Range: 10 feet Components: V, S, M (a drop of blood, a piece of flesh, and a pinch of bone dust) Duration: Instantaneous Classes: Cleric, Wizard +Source: (SRD p115) Id: spells_vo.md#animate-dead ParentLink: spells_vo.md#spells-srd-p -Name: Animate Dead ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Animation des morts](hd_spells_animation_des_morts.md)' -Source: (SRD p115) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_animate_objects.md b/Data/HD/srd_spells_animate_objects.md index e40c50da..c7a34c6f 100644 --- a/Data/HD/srd_spells_animate_objects.md +++ b/Data/HD/srd_spells_animate_objects.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Animate Objects +AltName: '[Animation des objets](hd_spells_animation_des_objets.md)' Type: transmutation +Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard +Source: (SRD p116) Id: spells_vo.md#animate-objects ParentLink: spells_vo.md#spells-srd-p -Name: Animate Objects ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Animation des objets](hd_spells_animation_des_objets.md)' -Source: (SRD p116) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_antilife_shell.md b/Data/HD/srd_spells_antilife_shell.md index e906f028..aee472e2 100644 --- a/Data/HD/srd_spells_antilife_shell.md +++ b/Data/HD/srd_spells_antilife_shell.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Antilife Shell +AltName: '[Coquille antivie](hd_spells_coquille_antivie.md)' Type: abjuration +Level: 5 CastingTime: 1 action Range: Self (10-foot radius) Components: V, S Duration: Concentration, up to 1 hour Classes: Druid +Source: (SRD p116) Id: spells_vo.md#antilife-shell ParentLink: spells_vo.md#spells-srd-p -Name: Antilife Shell ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Coquille antivie](hd_spells_coquille_antivie.md)' -Source: (SRD p116) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_antimagic_field.md b/Data/HD/srd_spells_antimagic_field.md index 8bd44908..65ad945c 100644 --- a/Data/HD/srd_spells_antimagic_field.md +++ b/Data/HD/srd_spells_antimagic_field.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Antimagic Field +AltName: '[Champ antimagie](hd_spells_champ_antimagie.md)' Type: abjuration +Level: 8 CastingTime: 1 action Range: Self (10-foot-radius sphere) Components: V, S, M (a pinch of powdered iron or iron filings) Duration: Concentration, up to 1 hour Classes: Cleric, Wizard +Source: (SRD p117) Id: spells_vo.md#antimagic-field ParentLink: spells_vo.md#spells-srd-p -Name: Antimagic Field ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Champ antimagie](hd_spells_champ_antimagie.md)' -Source: (SRD p117) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_antipathysympathy.md b/Data/HD/srd_spells_antipathysympathy.md index 1f2690ef..76be9f39 100644 --- a/Data/HD/srd_spells_antipathysympathy.md +++ b/Data/HD/srd_spells_antipathysympathy.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Antipathy/Sympathy +AltName: '[Répulsion/attirance](hd_spells_repulsionattirance.md)' Type: enchantment +Level: 8 CastingTime: 1 hour Range: 60 feet Components: V, S, M (either a lump of alum soaked in vinegar for the antipathy effect or a drop of honey for the sympathy effect) Duration: 10 days Classes: Druid, Wizard +Source: (SRD p117) Id: spells_vo.md#antipathysympathy ParentLink: spells_vo.md#spells-srd-p -Name: Antipathy/Sympathy ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Répulsion/attirance](hd_spells_repulsionattirance.md)' -Source: (SRD p117) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_arcane_eye.md b/Data/HD/srd_spells_arcane_eye.md index 4a087483..44ef10c3 100644 --- a/Data/HD/srd_spells_arcane_eye.md +++ b/Data/HD/srd_spells_arcane_eye.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Arcane Eye +AltName: '[Oeil magique](hd_spells_oeil_magique.md)' Type: divination +Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S, M (a bit of bat fur) Duration: Concentration, up to 1 hour Classes: Wizard +Source: (SRD p118) Id: spells_vo.md#arcane-eye ParentLink: spells_vo.md#spells-srd-p -Name: Arcane Eye ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Oeil magique](hd_spells_oeil_magique.md)' -Source: (SRD p118) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_arcane_hand.md b/Data/HD/srd_spells_arcane_hand.md index 1b565c1a..bf3726cb 100644 --- a/Data/HD/srd_spells_arcane_hand.md +++ b/Data/HD/srd_spells_arcane_hand.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Arcane Hand +AltName: '[Main magique](hd_spells_main_magique.md)' Type: evocation +Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S, M (an eggshell and a snakeskin glove) Duration: Concentration, up to 1 minute Classes: Wizard +Source: (SRD p118) Id: spells_vo.md#arcane-hand ParentLink: spells_vo.md#spells-srd-p -Name: Arcane Hand ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Main magique](hd_spells_main_magique.md)' -Source: (SRD p118) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_arcane_lock.md b/Data/HD/srd_spells_arcane_lock.md index de38ba84..16eab78c 100644 --- a/Data/HD/srd_spells_arcane_lock.md +++ b/Data/HD/srd_spells_arcane_lock.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Arcane Lock +AltName: '[Verrou magique](hd_spells_verrou_magique.md)' Type: abjuration +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (gold dust worth at least 25 gp, which the spell consumes) Duration: Until dispelled Classes: Wizard +Source: (SRD p118) Id: spells_vo.md#arcane-lock ParentLink: spells_vo.md#spells-srd-p -Name: Arcane Lock ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Verrou magique](hd_spells_verrou_magique.md)' -Source: (SRD p118) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_arcane_sword.md b/Data/HD/srd_spells_arcane_sword.md index 7b80ed41..8e8440ea 100644 --- a/Data/HD/srd_spells_arcane_sword.md +++ b/Data/HD/srd_spells_arcane_sword.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Arcane Sword +AltName: '[Épée magique](hd_spells_epee_magique.md)' Type: evocation +Level: 7 CastingTime: 1 action Range: 60 feet Components: V, S, M (a miniature platinum sword with a grip and pommel of copper and zinc, worth 250 gp) Duration: Concentration, up to 1 minute Classes: Bard, Wizard +Source: (SRD p119) Id: spells_vo.md#arcane-sword ParentLink: spells_vo.md#spells-srd-p -Name: Arcane Sword ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Épée magique](hd_spells_epee_magique.md)' -Source: (SRD p119) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_arcanists_magic_aura.md b/Data/HD/srd_spells_arcanists_magic_aura.md index a95ea636..0650f186 100644 --- a/Data/HD/srd_spells_arcanists_magic_aura.md +++ b/Data/HD/srd_spells_arcanists_magic_aura.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Arcanist's Magic Aura +AltName: "[Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)" Type: illusion +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a small square of silk) Duration: 24 hours Classes: Wizard +Source: (SRD p119) Id: spells_vo.md#arcanists-magic-aura ParentLink: spells_vo.md#spells-srd-p -Name: Arcanist's Magic Aura ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)" -Source: (SRD p119) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_astral_projection.md b/Data/HD/srd_spells_astral_projection.md index ef2fb43d..2bf0e995 100644 --- a/Data/HD/srd_spells_astral_projection.md +++ b/Data/HD/srd_spells_astral_projection.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Astral Projection +AltName: '[Projection astrale](hd_spells_projection_astrale.md)' Type: necromancy +Level: 9 CastingTime: 1 hour Range: 10 feet Components: V, S, M (for each creature you affect with this spell, you must provide one jacinth worth at least 1,000 gp and one ornately carved bar of silver worth at least 100 gp, all of which the spell consumes) Duration: Special Classes: Cleric, Warlock, Wizard +Source: (SRD p119) Id: spells_vo.md#astral-projection ParentLink: spells_vo.md#spells-srd-p -Name: Astral Projection ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Projection astrale](hd_spells_projection_astrale.md)' -Source: (SRD p119) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_augury.md b/Data/HD/srd_spells_augury.md index dddb0ce8..af51d148 100644 --- a/Data/HD/srd_spells_augury.md +++ b/Data/HD/srd_spells_augury.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Augury +AltName: '[Augure](hd_spells_augure.md)' Type: divination -Ritual: ritual +Level: 2 CastingTime: 1 minute Range: Self Components: V, S, M (specially marked sticks, bones, or similar tokens worth at least 25 gp) Duration: Instantaneous Classes: Cleric +Source: (SRD p120) +Ritual: ritual Id: spells_vo.md#augury ParentLink: spells_vo.md#spells-srd-p -Name: Augury ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Augure](hd_spells_augure.md)' -Source: (SRD p120) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_awaken.md b/Data/HD/srd_spells_awaken.md index c8cbc599..ac725d31 100644 --- a/Data/HD/srd_spells_awaken.md +++ b/Data/HD/srd_spells_awaken.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Awaken +AltName: '[Éveil](hd_spells_eveil.md)' Type: transmutation +Level: 5 CastingTime: 8 hours Range: Touch Components: V, S, M (an agate worth at least 1,000 gp, which the spell consumes) Duration: Instantaneous Classes: Bard, Druid +Source: (SRD p120) Id: spells_vo.md#awaken ParentLink: spells_vo.md#spells-srd-p -Name: Awaken ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Éveil](hd_spells_eveil.md)' -Source: (SRD p120) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_bane.md b/Data/HD/srd_spells_bane.md index 0909607c..8b687604 100644 --- a/Data/HD/srd_spells_bane.md +++ b/Data/HD/srd_spells_bane.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Bane +AltName: '[Fléau](hd_spells_fleau.md)' Type: enchantment +Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a drop of blood) Duration: Concentration, up to 1 minute Classes: Bard, Cleric +Source: (SRD p120) Id: spells_vo.md#bane ParentLink: spells_vo.md#spells-srd-p -Name: Bane ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Fléau](hd_spells_fleau.md)' -Source: (SRD p120) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_banishment.md b/Data/HD/srd_spells_banishment.md index 99ec085c..ccb9e007 100644 --- a/Data/HD/srd_spells_banishment.md +++ b/Data/HD/srd_spells_banishment.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Banishment +AltName: '[Bannissement](hd_spells_bannissement.md)' Type: abjuration +Level: 4 CastingTime: 1 action Range: 60 feet Components: V, S, M (an item distasteful to the target) Duration: Concentration, up to 1 minute Classes: Cleric, Paladin, Sorcerer, Warlock, Wizard +Source: (SRD p120) Id: spells_vo.md#banishment ParentLink: spells_vo.md#spells-srd-p -Name: Banishment ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bannissement](hd_spells_bannissement.md)' -Source: (SRD p120) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_barkskin.md b/Data/HD/srd_spells_barkskin.md index 24ac8998..f9b2213b 100644 --- a/Data/HD/srd_spells_barkskin.md +++ b/Data/HD/srd_spells_barkskin.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Barkskin +AltName: "[Peau d'écorce](hd_spells_peau_decorce.md)" Type: transmutation +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a handful of oak bark) Duration: Concentration, up to 1 hour Classes: Druid, Ranger +Source: (SRD p121) Id: spells_vo.md#barkskin ParentLink: spells_vo.md#spells-srd-p -Name: Barkskin ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Peau d'écorce](hd_spells_peau_decorce.md)" -Source: (SRD p121) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_beacon_of_hope.md b/Data/HD/srd_spells_beacon_of_hope.md index 584129ba..61787ad3 100644 --- a/Data/HD/srd_spells_beacon_of_hope.md +++ b/Data/HD/srd_spells_beacon_of_hope.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Beacon of Hope +AltName: "[Lueur d'espoir](hd_spells_lueur_despoir.md)" Type: abjuration +Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Cleric +Source: (SRD p121) Id: spells_vo.md#beacon-of-hope ParentLink: spells_vo.md#spells-srd-p -Name: Beacon of Hope ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Lueur d'espoir](hd_spells_lueur_despoir.md)" -Source: (SRD p121) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_bestow_curse.md b/Data/HD/srd_spells_bestow_curse.md index ad94b172..6626b898 100644 --- a/Data/HD/srd_spells_bestow_curse.md +++ b/Data/HD/srd_spells_bestow_curse.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Bestow curse +AltName: '[Jeter une malédiction](hd_spells_jeter_une_malediction.md)' Type: necromancy +Level: 3 CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Cleric, Wizard +Source: (SRD p121) Id: spells_vo.md#bestow-curse ParentLink: spells_vo.md#spells-srd-p -Name: Bestow curse ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Jeter une malédiction](hd_spells_jeter_une_malediction.md)' -Source: (SRD p121) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_black_tentacles.md b/Data/HD/srd_spells_black_tentacles.md index d116345a..8b9a5eb3 100644 --- a/Data/HD/srd_spells_black_tentacles.md +++ b/Data/HD/srd_spells_black_tentacles.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Black Tentacles +AltName: '[Tentacules noirs](hd_spells_tentacules_noirs.md)' Type: conjuration +Level: 4 CastingTime: 1 action Range: 90 feet Components: V, S, M (a piece of tentacle from a giant octopus or a giant squid) Duration: Concentration, up to 1 minute Classes: Wizard +Source: (SRD p121) Id: spells_vo.md#black-tentacles ParentLink: spells_vo.md#spells-srd-p -Name: Black Tentacles ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Tentacules noirs](hd_spells_tentacules_noirs.md)' -Source: (SRD p121) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_blade_barrier.md b/Data/HD/srd_spells_blade_barrier.md index bd99a65e..9c13967f 100644 --- a/Data/HD/srd_spells_blade_barrier.md +++ b/Data/HD/srd_spells_blade_barrier.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Blade Barrier +AltName: '[Barrière de lames](hd_spells_barriere_de_lames.md)' Type: evocation +Level: 6 CastingTime: 1 action Range: 90 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Cleric +Source: (SRD p122) Id: spells_vo.md#blade-barrier ParentLink: spells_vo.md#spells-srd-p -Name: Blade Barrier ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Barrière de lames](hd_spells_barriere_de_lames.md)' -Source: (SRD p122) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_bless.md b/Data/HD/srd_spells_bless.md index 159a1b0c..9ae96ae8 100644 --- a/Data/HD/srd_spells_bless.md +++ b/Data/HD/srd_spells_bless.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Bless +AltName: '[Bénédiction](hd_spells_benediction.md)' Type: enchantment +Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a sprinkling of holy water) Duration: Concentration, up to 1 minute Classes: Cleric, Paladin +Source: (SRD p122) Id: spells_vo.md#bless ParentLink: spells_vo.md#spells-srd-p -Name: Bless ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bénédiction](hd_spells_benediction.md)' -Source: (SRD p122) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_blight.md b/Data/HD/srd_spells_blight.md index 5af96770..f868bbd5 100644 --- a/Data/HD/srd_spells_blight.md +++ b/Data/HD/srd_spells_blight.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Blight +AltName: '[Flétrissement](hd_spells_fletrissement.md)' Type: necromancy +Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Instantaneous Classes: Druid, Sorcerer, Warlock, Wizard +Source: (SRD p122) Id: spells_vo.md#blight ParentLink: spells_vo.md#spells-srd-p -Name: Blight ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Flétrissement](hd_spells_fletrissement.md)' -Source: (SRD p122) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_blindnessdeafness.md b/Data/HD/srd_spells_blindnessdeafness.md index 54c6eaf9..1442e8c4 100644 --- a/Data/HD/srd_spells_blindnessdeafness.md +++ b/Data/HD/srd_spells_blindnessdeafness.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Blindness/Deafness +AltName: '[Cécité/Surdité](hd_spells_cecitesurdite.md)' Type: necromancy +Level: 2 CastingTime: 1 action Range: 30 feet Components: V Duration: 1 minute Classes: Bard, Cleric, Sorcerer, Wizard +Source: (SRD p122) Id: spells_vo.md#blindnessdeafness ParentLink: spells_vo.md#spells-srd-p -Name: Blindness/Deafness ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Cécité/Surdité](hd_spells_cecitesurdite.md)' -Source: (SRD p122) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_blink.md b/Data/HD/srd_spells_blink.md index e1fe2ea4..b51f4778 100644 --- a/Data/HD/srd_spells_blink.md +++ b/Data/HD/srd_spells_blink.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Blink +AltName: '[Clignotement](hd_spells_clignotement.md)' Type: transmutation +Level: 3 CastingTime: 1 action Range: Self Components: V, S Duration: 1 minute Classes: Sorcerer, Wizard +Source: (SRD p122) Id: spells_vo.md#blink ParentLink: spells_vo.md#spells-srd-p -Name: Blink ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Clignotement](hd_spells_clignotement.md)' -Source: (SRD p122) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_blur.md b/Data/HD/srd_spells_blur.md index b6c8bd03..412dbf08 100644 --- a/Data/HD/srd_spells_blur.md +++ b/Data/HD/srd_spells_blur.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Blur +AltName: '[Flou](hd_spells_flou.md)' Type: illusion +Level: 2 CastingTime: 1 action Range: Self Components: V Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard +Source: (SRD p123) Id: spells_vo.md#blur ParentLink: spells_vo.md#spells-srd-p -Name: Blur ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Flou](hd_spells_flou.md)' -Source: (SRD p123) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_branding_smite.md b/Data/HD/srd_spells_branding_smite.md index 83e944a6..d53bb83c 100644 --- a/Data/HD/srd_spells_branding_smite.md +++ b/Data/HD/srd_spells_branding_smite.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Branding Smite +AltName: '[Frappe lumineuse](hd_spells_frappe_lumineuse.md)' Type: evocation +Level: 2 CastingTime: 1 bonus action Range: Self Components: V Duration: Concentration, up to 1 minute Classes: Paladin +Source: (SRD p123) Id: spells_vo.md#branding-smite ParentLink: spells_vo.md#spells-srd-p -Name: Branding Smite ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Frappe lumineuse](hd_spells_frappe_lumineuse.md)' -Source: (SRD p123) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_burning_hands.md b/Data/HD/srd_spells_burning_hands.md index 8a075533..3e0e6a55 100644 --- a/Data/HD/srd_spells_burning_hands.md +++ b/Data/HD/srd_spells_burning_hands.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Burning Hands +AltName: '[Mains brûlantes](hd_spells_mains_brulantes.md)' Type: evocation +Level: 1 CastingTime: 1 action Range: Self (15-foot cone) Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p123) Id: spells_vo.md#burning-hands ParentLink: spells_vo.md#spells-srd-p -Name: Burning Hands ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mains brûlantes](hd_spells_mains_brulantes.md)' -Source: (SRD p123) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_call_lightning.md b/Data/HD/srd_spells_call_lightning.md index f554690c..64c54ad7 100644 --- a/Data/HD/srd_spells_call_lightning.md +++ b/Data/HD/srd_spells_call_lightning.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Call Lightning +AltName: '[Appel de la foudre](hd_spells_appel_de_la_foudre.md)' Type: conjuration +Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Druid +Source: (SRD p123) Id: spells_vo.md#call-lightning ParentLink: spells_vo.md#spells-srd-p -Name: Call Lightning ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Appel de la foudre](hd_spells_appel_de_la_foudre.md)' -Source: (SRD p123) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_calm_emotions.md b/Data/HD/srd_spells_calm_emotions.md index 583b8a77..62e2fbb8 100644 --- a/Data/HD/srd_spells_calm_emotions.md +++ b/Data/HD/srd_spells_calm_emotions.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Calm Emotions +AltName: '[Apaisement des émotions](hd_spells_apaisement_des_emotions.md)' Type: enchantment +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Cleric +Source: (SRD p123) Id: spells_vo.md#calm-emotions ParentLink: spells_vo.md#spells-srd-p -Name: Calm Emotions ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Apaisement des émotions](hd_spells_apaisement_des_emotions.md)' -Source: (SRD p123) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_chain_lightning.md b/Data/HD/srd_spells_chain_lightning.md index 0ea4c0d2..b46e8fba 100644 --- a/Data/HD/srd_spells_chain_lightning.md +++ b/Data/HD/srd_spells_chain_lightning.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Chain Lightning +AltName: "[Chaîne d'éclairs](hd_spells_chaine_declairs.md)" Type: evocation +Level: 6 CastingTime: 1 action Range: 150 feet Components: V, S, M (a bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins) Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p124) Id: spells_vo.md#chain-lightning ParentLink: spells_vo.md#spells-srd-p -Name: Chain Lightning ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Chaîne d'éclairs](hd_spells_chaine_declairs.md)" -Source: (SRD p124) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_charm_person.md b/Data/HD/srd_spells_charm_person.md index cd8932e0..73786c46 100644 --- a/Data/HD/srd_spells_charm_person.md +++ b/Data/HD/srd_spells_charm_person.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Charm Person +AltName: '[Charme-personne](hd_spells_charme_personne.md)' Type: enchantment +Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S Duration: 1 hour Classes: Bard, Druid, Sorcerer, Warlock, Wizard +Source: (SRD p124) Id: spells_vo.md#charm-person ParentLink: spells_vo.md#spells-srd-p -Name: Charm Person ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Charme-personne](hd_spells_charme_personne.md)' -Source: (SRD p124) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_chill_touch.md b/Data/HD/srd_spells_chill_touch.md index 5363aba4..0f632258 100644 --- a/Data/HD/srd_spells_chill_touch.md +++ b/Data/HD/srd_spells_chill_touch.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Chill Touch +AltName: '[Contact glacial](hd_spells_contact_glacial.md)' Type: Necromancy +Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S Duration: 1 round Classes: Sorcerer, Warlock, Wizard +Source: (SRD p124) Id: spells_vo.md#chill-touch ParentLink: spells_vo.md#spells-srd-p -Name: Chill Touch ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Contact glacial](hd_spells_contact_glacial.md)' -Source: (SRD p124) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_circle_of_death.md b/Data/HD/srd_spells_circle_of_death.md index de04c503..21e6918c 100644 --- a/Data/HD/srd_spells_circle_of_death.md +++ b/Data/HD/srd_spells_circle_of_death.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Circle of Death +AltName: '[Cercle de mort](hd_spells_cercle_de_mort.md)' Type: necromancy +Level: 6 CastingTime: 1 action Range: 150 feet Components: V, S, M (the powder of a crushed black pearl worth at least 500 gp) Duration: Instantaneous Classes: Sorcerer, Warlock, Wizard +Source: (SRD p124) Id: spells_vo.md#circle-of-death ParentLink: spells_vo.md#spells-srd-p -Name: Circle of Death ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Cercle de mort](hd_spells_cercle_de_mort.md)' -Source: (SRD p124) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_clairvoyance.md b/Data/HD/srd_spells_clairvoyance.md index 89f42bfc..dc581b54 100644 --- a/Data/HD/srd_spells_clairvoyance.md +++ b/Data/HD/srd_spells_clairvoyance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Clairvoyance +AltName: '[Clairvoyance](hd_spells_clairvoyance.md)' Type: divination +Level: 3 CastingTime: 10 minutes Range: 1 mile Components: V, S, M (a focus worth at least 100 gp, either a jeweled horn for hearing or a glass eye for seeing) Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Sorcerer, Wizard +Source: (SRD p124) Id: spells_vo.md#clairvoyance ParentLink: spells_vo.md#spells-srd-p -Name: Clairvoyance ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Clairvoyance](hd_spells_clairvoyance.md)' -Source: (SRD p124) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_clone.md b/Data/HD/srd_spells_clone.md index 812636e2..f778f71c 100644 --- a/Data/HD/srd_spells_clone.md +++ b/Data/HD/srd_spells_clone.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Clone +AltName: '[Clone](hd_spells_clone.md)' Type: necromancy +Level: 8 CastingTime: 1 hour Range: Touch Components: V, S, M (a diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a Medium creature, such as a huge urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water) Duration: Instantaneous Classes: Wizard +Source: (SRD p125) Id: spells_vo.md#clone ParentLink: spells_vo.md#spells-srd-p -Name: Clone ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Clone](hd_spells_clone.md)' -Source: (SRD p125) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_cloudkill.md b/Data/HD/srd_spells_cloudkill.md index a562c04c..cdb83102 100644 --- a/Data/HD/srd_spells_cloudkill.md +++ b/Data/HD/srd_spells_cloudkill.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Cloudkill +AltName: '[Nuage mortel](hd_spells_nuage_mortel.md)' Type: conjuration +Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Sorcerer, Wizard +Source: (SRD p125) Id: spells_vo.md#cloudkill ParentLink: spells_vo.md#spells-srd-p -Name: Cloudkill ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Nuage mortel](hd_spells_nuage_mortel.md)' -Source: (SRD p125) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_color_spray.md b/Data/HD/srd_spells_color_spray.md index 65c7e063..4f7493e4 100644 --- a/Data/HD/srd_spells_color_spray.md +++ b/Data/HD/srd_spells_color_spray.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Color Spray +AltName: '[Couleurs dansantes](hd_spells_couleurs_dansantes.md)' Type: illusion +Level: 1 CastingTime: 1 action Range: Self (15-foot cone) Components: V, S, M (a pinch of powder or sand that is colored red, yellow, and blue) Duration: 1 round Classes: Sorcerer, Wizard +Source: (SRD p125) Id: spells_vo.md#color-spray ParentLink: spells_vo.md#spells-srd-p -Name: Color Spray ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Couleurs dansantes](hd_spells_couleurs_dansantes.md)' -Source: (SRD p125) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_command.md b/Data/HD/srd_spells_command.md index 5d54de80..e628889d 100644 --- a/Data/HD/srd_spells_command.md +++ b/Data/HD/srd_spells_command.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Command +AltName: '[Injonction](hd_spells_injonction.md)' Type: enchantment +Level: 1 CastingTime: 1 action Range: 60 feet Components: V Duration: 1 round Classes: Cleric, Paladin +Source: (SRD p125) Id: spells_vo.md#command ParentLink: spells_vo.md#spells-srd-p -Name: Command ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Injonction](hd_spells_injonction.md)' -Source: (SRD p125) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_commune.md b/Data/HD/srd_spells_commune.md index 035abe42..f44ffd89 100644 --- a/Data/HD/srd_spells_commune.md +++ b/Data/HD/srd_spells_commune.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Commune +AltName: '[Communion](hd_spells_communion.md)' Type: divination -Ritual: ritual +Level: 5 CastingTime: 1 minute Range: Self Components: V, S, M (incense and a vial of holy or unholy water) Duration: 1 minute Classes: Cleric +Source: (SRD p126) +Ritual: ritual Id: spells_vo.md#commune ParentLink: spells_vo.md#spells-srd-p -Name: Commune ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Communion](hd_spells_communion.md)' -Source: (SRD p126) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_commune_with_nature.md b/Data/HD/srd_spells_commune_with_nature.md index f6000c4c..06212d79 100644 --- a/Data/HD/srd_spells_commune_with_nature.md +++ b/Data/HD/srd_spells_commune_with_nature.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Commune with Nature +AltName: '[Communion avec la nature](hd_spells_communion_avec_la_nature.md)' Type: divination -Ritual: ritual +Level: 5 CastingTime: 1 minute Range: Self Components: V, S Duration: Instantaneous Classes: Druid, Ranger +Source: (SRD p126) +Ritual: ritual Id: spells_vo.md#commune-with-nature ParentLink: spells_vo.md#spells-srd-p -Name: Commune with Nature ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Communion avec la nature](hd_spells_communion_avec_la_nature.md)' -Source: (SRD p126) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_comprehend_languages.md b/Data/HD/srd_spells_comprehend_languages.md index 213b7172..8bd67d23 100644 --- a/Data/HD/srd_spells_comprehend_languages.md +++ b/Data/HD/srd_spells_comprehend_languages.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Comprehend Languages +AltName: '[Compréhension des langues](hd_spells_comprehension_des_langues.md)' Type: divination -Ritual: ritual +Level: 1 CastingTime: 1 action Range: Self Components: V, S, M (a pinch of soot and salt) Duration: 1 hour Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p126) +Ritual: ritual Id: spells_vo.md#comprehend-languages ParentLink: spells_vo.md#spells-srd-p -Name: Comprehend Languages ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Compréhension des langues](hd_spells_comprehension_des_langues.md)' -Source: (SRD p126) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_compulsion.md b/Data/HD/srd_spells_compulsion.md index 44fa7655..2dc00476 100644 --- a/Data/HD/srd_spells_compulsion.md +++ b/Data/HD/srd_spells_compulsion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Compulsion +AltName: '[Compulsion](hd_spells_compulsion.md)' Type: enchantment +Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard +Source: (SRD p126) Id: spells_vo.md#compulsion ParentLink: spells_vo.md#spells-srd-p -Name: Compulsion ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Compulsion](hd_spells_compulsion.md)' -Source: (SRD p126) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_cone_of_cold.md b/Data/HD/srd_spells_cone_of_cold.md index 4daa51b2..68bc1bce 100644 --- a/Data/HD/srd_spells_cone_of_cold.md +++ b/Data/HD/srd_spells_cone_of_cold.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Cone of Cold +AltName: '[Cône de froid](hd_spells_cone_de_froid.md)' Type: evocation +Level: 5 CastingTime: 1 action Range: Self (60-foot cone) Components: V, S, M (a small crystal or glass cone) Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p127) Id: spells_vo.md#cone-of-cold ParentLink: spells_vo.md#spells-srd-p -Name: Cone of Cold ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Cône de froid](hd_spells_cone_de_froid.md)' -Source: (SRD p127) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_confusion.md b/Data/HD/srd_spells_confusion.md index 09019afd..de2e380a 100644 --- a/Data/HD/srd_spells_confusion.md +++ b/Data/HD/srd_spells_confusion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Confusion +AltName: '[Confusion](hd_spells_confusion.md)' Type: enchantment +Level: 4 CastingTime: 1 action Range: 90 feet Components: V, S, M (three nut shells) Duration: Concentration, up to 1 minute Classes: Bard, Druid, Sorcerer, Wizard +Source: (SRD p127) Id: spells_vo.md#confusion ParentLink: spells_vo.md#spells-srd-p -Name: Confusion ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Confusion](hd_spells_confusion.md)' -Source: (SRD p127) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_conjure_animals.md b/Data/HD/srd_spells_conjure_animals.md index b9af05e8..4daf4c6d 100644 --- a/Data/HD/srd_spells_conjure_animals.md +++ b/Data/HD/srd_spells_conjure_animals.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Conjure Animals +AltName: '[Invoquer des animaux](hd_spells_invoquer_des_animaux.md)' Type: conjuration +Level: 3 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Druid, Ranger +Source: (SRD p127) Id: spells_vo.md#conjure-animals ParentLink: spells_vo.md#spells-srd-p -Name: Conjure Animals ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Invoquer des animaux](hd_spells_invoquer_des_animaux.md)' -Source: (SRD p127) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_conjure_celestial.md b/Data/HD/srd_spells_conjure_celestial.md index cfe66b86..e3b52606 100644 --- a/Data/HD/srd_spells_conjure_celestial.md +++ b/Data/HD/srd_spells_conjure_celestial.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Conjure Celestial +AltName: '[Invoquer un céleste](hd_spells_invoquer_un_celeste.md)' Type: conjuration +Level: 7 CastingTime: 1 minute Range: 90 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Cleric +Source: (SRD p127) Id: spells_vo.md#conjure-celestial ParentLink: spells_vo.md#spells-srd-p -Name: Conjure Celestial ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Invoquer un céleste](hd_spells_invoquer_un_celeste.md)' -Source: (SRD p127) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_conjure_elemental.md b/Data/HD/srd_spells_conjure_elemental.md index 31b99510..6eaae87f 100644 --- a/Data/HD/srd_spells_conjure_elemental.md +++ b/Data/HD/srd_spells_conjure_elemental.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Conjure Elemental +AltName: '[Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)' Type: conjuration +Level: 5 CastingTime: 1 minute Range: 90 feet Components: V, S, M (burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water) Duration: Concentration, up to 1 hour Classes: Druid, Wizard +Source: (SRD p128) Id: spells_vo.md#conjure-elemental ParentLink: spells_vo.md#spells-srd-p -Name: Conjure Elemental ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)' -Source: (SRD p128) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_conjure_fey.md b/Data/HD/srd_spells_conjure_fey.md index 189da90f..9607f5af 100644 --- a/Data/HD/srd_spells_conjure_fey.md +++ b/Data/HD/srd_spells_conjure_fey.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Conjure Fey +AltName: '[Invoquer une fée](hd_spells_invoquer_une_fee.md)' Type: conjuration +Level: 6 CastingTime: 1 minute Range: 90 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Druid, Warlock +Source: (SRD p128) Id: spells_vo.md#conjure-fey ParentLink: spells_vo.md#spells-srd-p -Name: Conjure Fey ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Invoquer une fée](hd_spells_invoquer_une_fee.md)' -Source: (SRD p128) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_conjure_minor_elementals.md b/Data/HD/srd_spells_conjure_minor_elementals.md index 33a90a50..6de8e28d 100644 --- a/Data/HD/srd_spells_conjure_minor_elementals.md +++ b/Data/HD/srd_spells_conjure_minor_elementals.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Conjure Minor Elementals +AltName: '[Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)' Type: conjuration +Level: 4 CastingTime: 1 minute Range: 90 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Druid, Wizard +Source: (SRD p128) Id: spells_vo.md#conjure-minor-elementals ParentLink: spells_vo.md#spells-srd-p -Name: Conjure Minor Elementals ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)' -Source: (SRD p128) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_conjure_woodland_beings.md b/Data/HD/srd_spells_conjure_woodland_beings.md index 43214937..4b5958df 100644 --- a/Data/HD/srd_spells_conjure_woodland_beings.md +++ b/Data/HD/srd_spells_conjure_woodland_beings.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Conjure Woodland Beings +AltName: '[Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)' Type: conjuration +Level: 4 CastingTime: 1 action Range: 60 feet Components: V, S, M (one holly berry per creature summoned) Duration: Concentration, up to 1 hour Classes: Druid, Ranger +Source: (SRD p129) Id: spells_vo.md#conjure-woodland-beings ParentLink: spells_vo.md#spells-srd-p -Name: Conjure Woodland Beings ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)' -Source: (SRD p129) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_contact_other_plane.md b/Data/HD/srd_spells_contact_other_plane.md index 1bf1243f..002cab00 100644 --- a/Data/HD/srd_spells_contact_other_plane.md +++ b/Data/HD/srd_spells_contact_other_plane.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Contact Other Plane +AltName: '[Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)' Type: divination -Ritual: ritual +Level: 5 CastingTime: 1 minute Range: Self Components: V Duration: 1 minute Classes: Warlock, Wizard +Source: (SRD p129) +Ritual: ritual Id: spells_vo.md#contact-other-plane ParentLink: spells_vo.md#spells-srd-p -Name: Contact Other Plane ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)' -Source: (SRD p129) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_contagion.md b/Data/HD/srd_spells_contagion.md index b82bd2d8..ac4c5567 100644 --- a/Data/HD/srd_spells_contagion.md +++ b/Data/HD/srd_spells_contagion.md @@ -1,19 +1,19 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Contagion +AltName: '[Contagion](hd_spells_contagion.md)' Type: necromancy +Level: 5 CastingTime: 1 action Range: Touch Duration: 7 days Classes: Cleric, Druid +Source: (SRD p129) Id: spells_vo.md#contagion ParentLink: spells_vo.md#spells-srd-p -Name: Contagion ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Contagion](hd_spells_contagion.md)' -Source: (SRD p129) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_contingency.md b/Data/HD/srd_spells_contingency.md index 45a1dc4c..d90e1d8d 100644 --- a/Data/HD/srd_spells_contingency.md +++ b/Data/HD/srd_spells_contingency.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Contingency +AltName: '[Contingence](hd_spells_contingence.md)' Type: evocation +Level: 6 CastingTime: 10 minutes Range: Self Components: V, S, M (a statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp) Duration: 10 days Classes: Wizard +Source: (SRD p130) Id: spells_vo.md#contingency ParentLink: spells_vo.md#spells-srd-p -Name: Contingency ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Contingence](hd_spells_contingence.md)' -Source: (SRD p130) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_continual_flame.md b/Data/HD/srd_spells_continual_flame.md index ee40726b..f6c60dc5 100644 --- a/Data/HD/srd_spells_continual_flame.md +++ b/Data/HD/srd_spells_continual_flame.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Continual Flame +AltName: '[Flamme éternelle](hd_spells_flamme_eternelle.md)' Type: evocation +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (ruby dust worth 50 gp, which the spell consumes) Duration: Until dispelled Classes: Cleric, Wizard +Source: (SRD p130) Id: spells_vo.md#continual-flame ParentLink: spells_vo.md#spells-srd-p -Name: Continual Flame ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Flamme éternelle](hd_spells_flamme_eternelle.md)' -Source: (SRD p130) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_control_water.md b/Data/HD/srd_spells_control_water.md index 8b57da12..86c80a56 100644 --- a/Data/HD/srd_spells_control_water.md +++ b/Data/HD/srd_spells_control_water.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Control Water +AltName: "[Contrôle de l'eau](hd_spells_controle_de_leau.md)" Type: transmutation +Level: 4 CastingTime: 1 action Range: 300 feet Components: V, S, M (a drop of water and a pinch of dust) Duration: Concentration, up to 10 minutes Classes: Cleric, Druid, Wizard +Source: (SRD p130) Id: spells_vo.md#control-water ParentLink: spells_vo.md#spells-srd-p -Name: Control Water ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Contrôle de l'eau](hd_spells_controle_de_leau.md)" -Source: (SRD p130) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_control_weather.md b/Data/HD/srd_spells_control_weather.md index 99f6e908..bdeaa8ea 100644 --- a/Data/HD/srd_spells_control_weather.md +++ b/Data/HD/srd_spells_control_weather.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Control Weather +AltName: '[Contrôle du climat](hd_spells_controle_du_climat.md)' Type: transmutation +Level: 8 CastingTime: 10 minutes Range: Self (5-mile radius) Components: V, S, M (burning incense and bits of earth and wood mixed in water) Duration: Concentration, up to 8 hours Classes: Cleric, Druid, Wizard +Source: (SRD p131) Id: spells_vo.md#control-weather ParentLink: spells_vo.md#spells-srd-p -Name: Control Weather ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Contrôle du climat](hd_spells_controle_du_climat.md)' -Source: (SRD p131) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_counterspell.md b/Data/HD/srd_spells_counterspell.md index 14e827f2..607db8d7 100644 --- a/Data/HD/srd_spells_counterspell.md +++ b/Data/HD/srd_spells_counterspell.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Counterspell +AltName: '[Contresort](hd_spells_contresort.md)' Type: abjuration +Level: 3 CastingTime: 1 reaction, which you take when you see a creature within 60 feet of you casting a spell Range: 60 feet Components: S Duration: Instantaneous Classes: Sorcerer, Warlock, Wizard +Source: (SRD p131) Id: spells_vo.md#counterspell ParentLink: spells_vo.md#spells-srd-p -Name: Counterspell ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Contresort](hd_spells_contresort.md)' -Source: (SRD p131) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_create_food_and_water.md b/Data/HD/srd_spells_create_food_and_water.md index 8a81c40f..c2f8e551 100644 --- a/Data/HD/srd_spells_create_food_and_water.md +++ b/Data/HD/srd_spells_create_food_and_water.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Create Food and Water +AltName: "[Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)" Type: conjuration +Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Instantaneous Classes: Cleric, Paladin +Source: (SRD p131) Id: spells_vo.md#create-food-and-water ParentLink: spells_vo.md#spells-srd-p -Name: Create Food and Water ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)" -Source: (SRD p131) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_create_or_destroy_water.md b/Data/HD/srd_spells_create_or_destroy_water.md index 75e3ec7f..d1192363 100644 --- a/Data/HD/srd_spells_create_or_destroy_water.md +++ b/Data/HD/srd_spells_create_or_destroy_water.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Create or Destroy Water +AltName: "[Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)" Type: transmutation +Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a drop of water if creating water or a few grains of sand if destroying it) Duration: Instantaneous Classes: Cleric, Druid +Source: (SRD p132) Id: spells_vo.md#create-or-destroy-water ParentLink: spells_vo.md#spells-srd-p -Name: Create or Destroy Water ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)" -Source: (SRD p132) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_create_undead.md b/Data/HD/srd_spells_create_undead.md index 969d677b..d7eb26f6 100644 --- a/Data/HD/srd_spells_create_undead.md +++ b/Data/HD/srd_spells_create_undead.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Create Undead +AltName: '[Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)' Type: necromancy +Level: 6 CastingTime: 1 minute Range: 10 feet Components: V, S, M (one clay pot filled with grave dirt, one clay pot filled with brackish water, and one 150 gp black onyx stone for each corpse) Duration: Instantaneous Classes: Cleric, Warlock, Wizard +Source: (SRD p132) Id: spells_vo.md#create-undead ParentLink: spells_vo.md#spells-srd-p -Name: Create Undead ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)' -Source: (SRD p132) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_creation.md b/Data/HD/srd_spells_creation.md index 715abb7e..a0aa659b 100644 --- a/Data/HD/srd_spells_creation.md +++ b/Data/HD/srd_spells_creation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Creation +AltName: '[Création](hd_spells_creation.md)' Type: illusion +Level: 5 CastingTime: 1 minute Range: 30 feet Components: V, S, M (a tiny piece of matter of the same type of the item you plan to create) Duration: Special Classes: Sorcerer, Wizard +Source: (SRD p132) Id: spells_vo.md#creation ParentLink: spells_vo.md#spells-srd-p -Name: Creation ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Création](hd_spells_creation.md)' -Source: (SRD p132) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_cure_wounds.md b/Data/HD/srd_spells_cure_wounds.md index 3da1ecc1..8302d146 100644 --- a/Data/HD/srd_spells_cure_wounds.md +++ b/Data/HD/srd_spells_cure_wounds.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Cure Wounds +AltName: '[Soin des blessures](hd_spells_soin_des_blessures.md)' Type: evocation +Level: 1 CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Bard, Cleric, Druid, Paladin, Ranger +Source: (SRD p132) Id: spells_vo.md#cure-wounds ParentLink: spells_vo.md#spells-srd-p -Name: Cure Wounds ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Soin des blessures](hd_spells_soin_des_blessures.md)' -Source: (SRD p132) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_dancing_lights.md b/Data/HD/srd_spells_dancing_lights.md index 740921c4..2c9eba84 100644 --- a/Data/HD/srd_spells_dancing_lights.md +++ b/Data/HD/srd_spells_dancing_lights.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Dancing Lights +AltName: '[Lumières dansantes](hd_spells_lumieres_dansantes.md)' Type: Evocation +Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S, M (a bit of phosphorus or wychwood, or a glowworm) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard +Source: (SRD p133) Id: spells_vo.md#dancing-lights ParentLink: spells_vo.md#spells-srd-p -Name: Dancing Lights ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lumières dansantes](hd_spells_lumieres_dansantes.md)' -Source: (SRD p133) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_darkness.md b/Data/HD/srd_spells_darkness.md index 2d7fbf37..266e8348 100644 --- a/Data/HD/srd_spells_darkness.md +++ b/Data/HD/srd_spells_darkness.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Darkness +AltName: '[Ténèbres](hd_spells_tenebres.md)' Type: evocation +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, M (bat fur and a drop of pitch or piece of coal) Duration: Concentration, up to 10 minutes Classes: Sorcerer, Warlock, Wizard +Source: (SRD p133) Id: spells_vo.md#darkness ParentLink: spells_vo.md#spells-srd-p -Name: Darkness ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Ténèbres](hd_spells_tenebres.md)' -Source: (SRD p133) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_darkvision.md b/Data/HD/srd_spells_darkvision.md index 75eb4055..cf7d62f6 100644 --- a/Data/HD/srd_spells_darkvision.md +++ b/Data/HD/srd_spells_darkvision.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Darkvision +AltName: '[Vision dans le noir](hd_spells_vision_dans_le_noir.md)' Type: transmutation +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (either a pinch of dried carrot or an agate) Duration: 8 hours Classes: Druid, Ranger, Sorcerer, Wizard +Source: (SRD p133) Id: spells_vo.md#darkvision ParentLink: spells_vo.md#spells-srd-p -Name: Darkvision ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Vision dans le noir](hd_spells_vision_dans_le_noir.md)' -Source: (SRD p133) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_daylight.md b/Data/HD/srd_spells_daylight.md index eb0dfab9..0bf7011d 100644 --- a/Data/HD/srd_spells_daylight.md +++ b/Data/HD/srd_spells_daylight.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Daylight +AltName: '[Lumière du jour](hd_spells_lumiere_du_jour.md)' Type: evocation +Level: 3 CastingTime: 1 action Range: 60 feet Components: V, S Duration: 1 hour Classes: Cleric, Druid, Paladin, Ranger, Sorcerer +Source: (SRD p133) Id: spells_vo.md#daylight ParentLink: spells_vo.md#spells-srd-p -Name: Daylight ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lumière du jour](hd_spells_lumiere_du_jour.md)' -Source: (SRD p133) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_death_ward.md b/Data/HD/srd_spells_death_ward.md index 071a6ff2..5ae721c2 100644 --- a/Data/HD/srd_spells_death_ward.md +++ b/Data/HD/srd_spells_death_ward.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Death Ward +AltName: '[Protection contre la mort](hd_spells_protection_contre_la_mort.md)' Type: abjuration +Level: 4 CastingTime: 1 action Range: Touch Components: V, S Duration: 8 hours Classes: Cleric, Paladin +Source: (SRD p133) Id: spells_vo.md#death-ward ParentLink: spells_vo.md#spells-srd-p -Name: Death Ward ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Protection contre la mort](hd_spells_protection_contre_la_mort.md)' -Source: (SRD p133) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_delayed_blast_fireball.md b/Data/HD/srd_spells_delayed_blast_fireball.md index cb1f99af..8dc870b8 100644 --- a/Data/HD/srd_spells_delayed_blast_fireball.md +++ b/Data/HD/srd_spells_delayed_blast_fireball.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Delayed Blast Fireball +AltName: '[Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)' Type: evocation +Level: 7 CastingTime: 1 action Range: 150 feet Components: V, S, M (a tiny ball of bat guano and sulfur) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard +Source: (SRD p133) Id: spells_vo.md#delayed-blast-fireball ParentLink: spells_vo.md#spells-srd-p -Name: Delayed Blast Fireball ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)' -Source: (SRD p133) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_demiplane.md b/Data/HD/srd_spells_demiplane.md index 9aed552e..e4686165 100644 --- a/Data/HD/srd_spells_demiplane.md +++ b/Data/HD/srd_spells_demiplane.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Demiplane +AltName: '[Demi-plan](hd_spells_demi_plan.md)' Type: conjuration +Level: 8 CastingTime: 1 action Range: 60 feet Components: S Duration: 1 hour Classes: Warlock, Wizard +Source: (SRD p134) Id: spells_vo.md#demiplane ParentLink: spells_vo.md#spells-srd-p -Name: Demiplane ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Demi-plan](hd_spells_demi_plan.md)' -Source: (SRD p134) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_detect_evil_and_good.md b/Data/HD/srd_spells_detect_evil_and_good.md index 92b6d866..df6fd895 100644 --- a/Data/HD/srd_spells_detect_evil_and_good.md +++ b/Data/HD/srd_spells_detect_evil_and_good.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Detect Evil and Good +AltName: '[Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)' Type: divination +Level: 1 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 10 minutes Classes: Cleric, Paladin +Source: (SRD p134) Id: spells_vo.md#detect-evil-and-good ParentLink: spells_vo.md#spells-srd-p -Name: Detect Evil and Good ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)' -Source: (SRD p134) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_detect_magic.md b/Data/HD/srd_spells_detect_magic.md index b82f19b3..d999c626 100644 --- a/Data/HD/srd_spells_detect_magic.md +++ b/Data/HD/srd_spells_detect_magic.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Detect Magic +AltName: '[Détection de la magie](hd_spells_detection_de_la_magie.md)' Type: divination -Ritual: ritual +Level: 1 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Druid, Paladin, Ranger, Sorcerer, Wizard +Source: (SRD p134) +Ritual: ritual Id: spells_vo.md#detect-magic ParentLink: spells_vo.md#spells-srd-p -Name: Detect Magic ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Détection de la magie](hd_spells_detection_de_la_magie.md)' -Source: (SRD p134) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_detect_poison_and_disease.md b/Data/HD/srd_spells_detect_poison_and_disease.md index 8106b45b..16d159cb 100644 --- a/Data/HD/srd_spells_detect_poison_and_disease.md +++ b/Data/HD/srd_spells_detect_poison_and_disease.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Detect Poison and Disease +AltName: '[Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)' Type: divination -Ritual: ritual +Level: 1 CastingTime: 1 action Range: Self Components: V, S, M (a yew leaf) Duration: Concentration, up to 10 minutes Classes: Cleric, Druid, Paladin, Ranger +Source: (SRD p134) +Ritual: ritual Id: spells_vo.md#detect-poison-and-disease ParentLink: spells_vo.md#spells-srd-p -Name: Detect Poison and Disease ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)' -Source: (SRD p134) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_detect_thoughts.md b/Data/HD/srd_spells_detect_thoughts.md index 28ec67b1..e4f72130 100644 --- a/Data/HD/srd_spells_detect_thoughts.md +++ b/Data/HD/srd_spells_detect_thoughts.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Detect Thoughts +AltName: '[Détection des pensées](hd_spells_detection_des_pensees.md)' Type: divination +Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (a copper piece) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard +Source: (SRD p135) Id: spells_vo.md#detect-thoughts ParentLink: spells_vo.md#spells-srd-p -Name: Detect Thoughts ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Détection des pensées](hd_spells_detection_des_pensees.md)' -Source: (SRD p135) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_dimension_door.md b/Data/HD/srd_spells_dimension_door.md index 48401ab4..fc86036c 100644 --- a/Data/HD/srd_spells_dimension_door.md +++ b/Data/HD/srd_spells_dimension_door.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Dimension Door +AltName: '[Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)' Type: conjuration +Level: 4 CastingTime: 1 action Range: 500 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p135) Id: spells_vo.md#dimension-door ParentLink: spells_vo.md#spells-srd-p -Name: Dimension Door ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)' -Source: (SRD p135) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_disguise_self.md b/Data/HD/srd_spells_disguise_self.md index 12a07370..0580bea3 100644 --- a/Data/HD/srd_spells_disguise_self.md +++ b/Data/HD/srd_spells_disguise_self.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Disguise Self +AltName: '[Déguisement](hd_spells_deguisement.md)' Type: illusion +Level: 1 CastingTime: 1 action Range: Self Components: V, S Duration: 1 hour Classes: Bard, Sorcerer, Wizard +Source: (SRD p135) Id: spells_vo.md#disguise-self ParentLink: spells_vo.md#spells-srd-p -Name: Disguise Self ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Déguisement](hd_spells_deguisement.md)' -Source: (SRD p135) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_disintegrate.md b/Data/HD/srd_spells_disintegrate.md index 929afce3..6b3cfeeb 100644 --- a/Data/HD/srd_spells_disintegrate.md +++ b/Data/HD/srd_spells_disintegrate.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Disintegrate +AltName: '[Désintégration](hd_spells_desintegration.md)' Type: transmutation +Level: 6 CastingTime: 1 action Range: 60 feet Components: V, S, M (a lodestone and a pinch of dust) Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p135) Id: spells_vo.md#disintegrate ParentLink: spells_vo.md#spells-srd-p -Name: Disintegrate ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Désintégration](hd_spells_desintegration.md)' -Source: (SRD p135) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_dispel_evil_and_good.md b/Data/HD/srd_spells_dispel_evil_and_good.md index da3cd57b..12762e94 100644 --- a/Data/HD/srd_spells_dispel_evil_and_good.md +++ b/Data/HD/srd_spells_dispel_evil_and_good.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Dispel Evil and Good +AltName: '[Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)' Type: abjuration +Level: 5 CastingTime: 1 action Range: Self Components: V, S, M (holy water or powdered silver and iron) Duration: Concentration, up to 1 minute Classes: Cleric, Paladin +Source: (SRD p136) Id: spells_vo.md#dispel-evil-and-good ParentLink: spells_vo.md#spells-srd-p -Name: Dispel Evil and Good ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)' -Source: (SRD p136) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_dispel_magic.md b/Data/HD/srd_spells_dispel_magic.md index 9d264c79..a5e9d3fc 100644 --- a/Data/HD/srd_spells_dispel_magic.md +++ b/Data/HD/srd_spells_dispel_magic.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Dispel Magic +AltName: '[Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)' Type: abjuration +Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Bard, Cleric, Druid, Paladin, Sorcerer, Warlock, Wizard +Source: (SRD p136) Id: spells_vo.md#dispel-magic ParentLink: spells_vo.md#spells-srd-p -Name: Dispel Magic ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)' -Source: (SRD p136) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_divination.md b/Data/HD/srd_spells_divination.md index 825968d1..a6d41bc3 100644 --- a/Data/HD/srd_spells_divination.md +++ b/Data/HD/srd_spells_divination.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Divination +AltName: '[Divination](hd_spells_divination.md)' Type: divination -Ritual: ritual +Level: 4 CastingTime: 1 action Range: Self Components: V, S, M (incense and a sacrificial offering appropriate to your religion, together worth at least 25 gp, which the spell consumes) Duration: Instantaneous Classes: Cleric +Source: (SRD p136) +Ritual: ritual Id: spells_vo.md#divination ParentLink: spells_vo.md#spells-srd-p -Name: Divination ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Divination](hd_spells_divination.md)' -Source: (SRD p136) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_divine_favor.md b/Data/HD/srd_spells_divine_favor.md index a7cfc4d0..b0fffc5e 100644 --- a/Data/HD/srd_spells_divine_favor.md +++ b/Data/HD/srd_spells_divine_favor.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Divine Favor +AltName: '[Faveur divine](hd_spells_faveur_divine.md)' Type: evocation +Level: 1 CastingTime: 1 bonus action Range: Self Components: V, S Duration: Concentration, up to 1 minute Classes: Paladin +Source: (SRD p136) Id: spells_vo.md#divine-favor ParentLink: spells_vo.md#spells-srd-p -Name: Divine Favor ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Faveur divine](hd_spells_faveur_divine.md)' -Source: (SRD p136) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_divine_word.md b/Data/HD/srd_spells_divine_word.md index de357147..7ee0395b 100644 --- a/Data/HD/srd_spells_divine_word.md +++ b/Data/HD/srd_spells_divine_word.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Divine Word +AltName: '[Parole divine](hd_spells_parole_divine.md)' Type: evocation +Level: 7 CastingTime: 1 bonus action Range: 30 feet Components: V Duration: Instantaneous Classes: Cleric +Source: (SRD p137) Id: spells_vo.md#divine-word ParentLink: spells_vo.md#spells-srd-p -Name: Divine Word ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Parole divine](hd_spells_parole_divine.md)' -Source: (SRD p137) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_dominate_beast.md b/Data/HD/srd_spells_dominate_beast.md index 2b254e31..ea4b469d 100644 --- a/Data/HD/srd_spells_dominate_beast.md +++ b/Data/HD/srd_spells_dominate_beast.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Dominate Beast +AltName: '[Dominer une bête](hd_spells_dominer_une_bete.md)' Type: enchantment +Level: 4 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer +Source: (SRD p137) Id: spells_vo.md#dominate-beast ParentLink: spells_vo.md#spells-srd-p -Name: Dominate Beast ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Dominer une bête](hd_spells_dominer_une_bete.md)' -Source: (SRD p137) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_dominate_monster.md b/Data/HD/srd_spells_dominate_monster.md index 8f787537..12358c77 100644 --- a/Data/HD/srd_spells_dominate_monster.md +++ b/Data/HD/srd_spells_dominate_monster.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Dominate Monster +AltName: '[Dominer un monstre](hd_spells_dominer_un_monstre.md)' Type: enchantment +Level: 8 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p137) Id: spells_vo.md#dominate-monster ParentLink: spells_vo.md#spells-srd-p -Name: Dominate Monster ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Dominer un monstre](hd_spells_dominer_un_monstre.md)' -Source: (SRD p137) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_dominate_person.md b/Data/HD/srd_spells_dominate_person.md index 9e8b28ec..6de5471d 100644 --- a/Data/HD/srd_spells_dominate_person.md +++ b/Data/HD/srd_spells_dominate_person.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Dominate Person +AltName: '[Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)' Type: enchantment +Level: 5 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard +Source: (SRD p138) Id: spells_vo.md#dominate-person ParentLink: spells_vo.md#spells-srd-p -Name: Dominate Person ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)' -Source: (SRD p138) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_dream.md b/Data/HD/srd_spells_dream.md index ee48bfae..29185b45 100644 --- a/Data/HD/srd_spells_dream.md +++ b/Data/HD/srd_spells_dream.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Dream +AltName: '[Rêve](hd_spells_reve.md)' Type: illusion +Level: 5 CastingTime: 1 minute Range: Special Components: V, S, M (a handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird) Duration: 8 hours Classes: Bard, Warlock, Wizard +Source: (SRD p138) Id: spells_vo.md#dream ParentLink: spells_vo.md#spells-srd-p -Name: Dream ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Rêve](hd_spells_reve.md)' -Source: (SRD p138) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_druidcraft.md b/Data/HD/srd_spells_druidcraft.md index aeb29d0a..b5fc0af3 100644 --- a/Data/HD/srd_spells_druidcraft.md +++ b/Data/HD/srd_spells_druidcraft.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Druidcraft +AltName: '[Druidisme](hd_spells_druidisme.md)' Type: Transmutation +Level: cantrip CastingTime: 1 action Range: 30 feet Components: V, S Duration: Instantaneous Classes: Druid +Source: (SRD p138) Id: spells_vo.md#druidcraft ParentLink: spells_vo.md#spells-srd-p -Name: Druidcraft ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Druidisme](hd_spells_druidisme.md)' -Source: (SRD p138) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_earthquake.md b/Data/HD/srd_spells_earthquake.md index c46eb1bd..caa39df2 100644 --- a/Data/HD/srd_spells_earthquake.md +++ b/Data/HD/srd_spells_earthquake.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Earthquake +AltName: '[Tremblement de terre](hd_spells_tremblement_de_terre.md)' Type: evocation +Level: 8 CastingTime: 1 action Range: 500 feet Components: V, S, M (a pinch of dirt, a piece of rock, and a lump of clay) Duration: Concentration, up to 1 minute Classes: Cleric, Druid, Sorcerer +Source: (SRD p139) Id: spells_vo.md#earthquake ParentLink: spells_vo.md#spells-srd-p -Name: Earthquake ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Tremblement de terre](hd_spells_tremblement_de_terre.md)' -Source: (SRD p139) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_eldritch_blast.md b/Data/HD/srd_spells_eldritch_blast.md index 9c172aae..93d2bbeb 100644 --- a/Data/HD/srd_spells_eldritch_blast.md +++ b/Data/HD/srd_spells_eldritch_blast.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Eldritch Blast +AltName: '[Explosion occulte](hd_spells_explosion_occulte.md)' Type: Evocation +Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Warlock +Source: (SRD p139) Id: spells_vo.md#eldritch-blast ParentLink: spells_vo.md#spells-srd-p -Name: Eldritch Blast ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Explosion occulte](hd_spells_explosion_occulte.md)' -Source: (SRD p139) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_enhance_ability.md b/Data/HD/srd_spells_enhance_ability.md index 0a5a5bc6..975c7285 100644 --- a/Data/HD/srd_spells_enhance_ability.md +++ b/Data/HD/srd_spells_enhance_ability.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Enhance Ability +AltName: '[Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)' Type: transmutation +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (fur or a feather from a beast) Duration: Concentration, up to 1 hour Classes: Bard, Cleric, Druid, Sorcerer +Source: (SRD p139) Id: spells_vo.md#enhance-ability ParentLink: spells_vo.md#spells-srd-p -Name: Enhance Ability ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)' -Source: (SRD p139) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_enlargereduce.md b/Data/HD/srd_spells_enlargereduce.md index bcdb2702..f9a1d756 100644 --- a/Data/HD/srd_spells_enlargereduce.md +++ b/Data/HD/srd_spells_enlargereduce.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Enlarge/Reduce +AltName: '[Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)' Type: transmutation +Level: 2 CastingTime: 1 action Range: 30 feet Components: V, S, M (a pinch of powdered iron) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard +Source: (SRD p140) Id: spells_vo.md#enlargereduce ParentLink: spells_vo.md#spells-srd-p -Name: Enlarge/Reduce ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)' -Source: (SRD p140) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_entangle.md b/Data/HD/srd_spells_entangle.md index ce9b78e6..95131431 100644 --- a/Data/HD/srd_spells_entangle.md +++ b/Data/HD/srd_spells_entangle.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Entangle +AltName: '[Enchevêtrement](hd_spells_enchevetrement.md)' Type: conjuration +Level: 1 CastingTime: 1 action Range: 90 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Druid +Source: (SRD p140) Id: spells_vo.md#entangle ParentLink: spells_vo.md#spells-srd-p -Name: Entangle ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Enchevêtrement](hd_spells_enchevetrement.md)' -Source: (SRD p140) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_enthrall.md b/Data/HD/srd_spells_enthrall.md index 9339e1a4..0f97528f 100644 --- a/Data/HD/srd_spells_enthrall.md +++ b/Data/HD/srd_spells_enthrall.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Enthrall +AltName: '[Envoûtement](hd_spells_envoutement.md)' Type: enchantment +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S Duration: 1 minute Classes: Bard, Warlock +Source: (SRD p140) Id: spells_vo.md#enthrall ParentLink: spells_vo.md#spells-srd-p -Name: Enthrall ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Envoûtement](hd_spells_envoutement.md)' -Source: (SRD p140) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_etherealness.md b/Data/HD/srd_spells_etherealness.md index 48e607cd..dbff1b39 100644 --- a/Data/HD/srd_spells_etherealness.md +++ b/Data/HD/srd_spells_etherealness.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Etherealness +AltName: '[Forme éthérée](hd_spells_forme_etheree.md)' Type: transmutation +Level: 7 CastingTime: 1 action Range: Self Components: V, S Duration: Up to 8 hours Classes: Bard, Cleric, Sorcerer, Warlock, Wizard +Source: (SRD p140) Id: spells_vo.md#etherealness ParentLink: spells_vo.md#spells-srd-p -Name: Etherealness ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Forme éthérée](hd_spells_forme_etheree.md)' -Source: (SRD p140) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_expeditious_retreat.md b/Data/HD/srd_spells_expeditious_retreat.md index 2f58d0cc..a2323f99 100644 --- a/Data/HD/srd_spells_expeditious_retreat.md +++ b/Data/HD/srd_spells_expeditious_retreat.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Expeditious Retreat +AltName: '[Repli expéditif](hd_spells_repli_expeditif.md)' Type: transmutation +Level: 1 CastingTime: 1 bonus action Range: Self Components: V, S Duration: Concentration, up to 10 minutes Classes: Sorcerer, Warlock, Wizard +Source: (SRD p141) Id: spells_vo.md#expeditious-retreat ParentLink: spells_vo.md#spells-srd-p -Name: Expeditious Retreat ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Repli expéditif](hd_spells_repli_expeditif.md)' -Source: (SRD p141) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_eyebite.md b/Data/HD/srd_spells_eyebite.md index cdaf4319..23d0f3f0 100644 --- a/Data/HD/srd_spells_eyebite.md +++ b/Data/HD/srd_spells_eyebite.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Eyebite +AltName: '[Mauvais oeil](hd_spells_mauvais_oeil.md)' Type: necromancy +Level: 6 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p141) Id: spells_vo.md#eyebite ParentLink: spells_vo.md#spells-srd-p -Name: Eyebite ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mauvais oeil](hd_spells_mauvais_oeil.md)' -Source: (SRD p141) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_fabricate.md b/Data/HD/srd_spells_fabricate.md index 0ca0536c..ed2fbf10 100644 --- a/Data/HD/srd_spells_fabricate.md +++ b/Data/HD/srd_spells_fabricate.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Fabricate +AltName: '[Fabrication](hd_spells_fabrication.md)' Type: transmutation +Level: 4 CastingTime: 10 minutes Range: 120 feet Components: V, S Duration: Instantaneous Classes: Wizard +Source: (SRD p141) Id: spells_vo.md#fabricate ParentLink: spells_vo.md#spells-srd-p -Name: Fabricate ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Fabrication](hd_spells_fabrication.md)' -Source: (SRD p141) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_faerie_fire.md b/Data/HD/srd_spells_faerie_fire.md index dee5aa32..03f39aff 100644 --- a/Data/HD/srd_spells_faerie_fire.md +++ b/Data/HD/srd_spells_faerie_fire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Faerie Fire +AltName: '[Lueurs féeriques](hd_spells_lueurs_feeriques.md)' Type: evocation +Level: 1 CastingTime: 1 action Range: 60 feet Components: V Duration: Concentration, up to 1 minute Classes: Bard, Druid +Source: (SRD p141) Id: spells_vo.md#faerie-fire ParentLink: spells_vo.md#spells-srd-p -Name: Faerie Fire ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lueurs féeriques](hd_spells_lueurs_feeriques.md)' -Source: (SRD p141) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_faithful_hound.md b/Data/HD/srd_spells_faithful_hound.md index 7a97c12f..f1361fe8 100644 --- a/Data/HD/srd_spells_faithful_hound.md +++ b/Data/HD/srd_spells_faithful_hound.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Faithful Hound +AltName: '[Chien de garde](hd_spells_chien_de_garde.md)' Type: conjuration +Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S, M (a tiny silver whistle, a piece of bone, and a thread) Duration: 8 hours Classes: Wizard +Source: (SRD p142) Id: spells_vo.md#faithful-hound ParentLink: spells_vo.md#spells-srd-p -Name: Faithful Hound ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Chien de garde](hd_spells_chien_de_garde.md)' -Source: (SRD p142) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_false_life.md b/Data/HD/srd_spells_false_life.md index a616a2e7..228fe6ac 100644 --- a/Data/HD/srd_spells_false_life.md +++ b/Data/HD/srd_spells_false_life.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: False Life +AltName: '[Simulacre de vie](hd_spells_simulacre_de_vie.md)' Type: necromancy +Level: 1 CastingTime: 1 action Range: Self Components: V, S, M (a small amount of alcohol or distilled spirits) Duration: 1 hour Classes: Sorcerer, Wizard +Source: (SRD p142) Id: spells_vo.md#false-life ParentLink: spells_vo.md#spells-srd-p -Name: False Life ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Simulacre de vie](hd_spells_simulacre_de_vie.md)' -Source: (SRD p142) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_fear.md b/Data/HD/srd_spells_fear.md index 8a7ead8c..839300fc 100644 --- a/Data/HD/srd_spells_fear.md +++ b/Data/HD/srd_spells_fear.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Fear +AltName: '[Peur](hd_spells_peur.md)' Type: illusion +Level: 3 CastingTime: 1 action Range: Self (30-foot cone) Components: V, S, M (a white feather or the heart of a hen) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p142) Id: spells_vo.md#fear ParentLink: spells_vo.md#spells-srd-p -Name: Fear ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Peur](hd_spells_peur.md)' -Source: (SRD p142) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_feather_fall.md b/Data/HD/srd_spells_feather_fall.md index cf10dd4e..dffd5af0 100644 --- a/Data/HD/srd_spells_feather_fall.md +++ b/Data/HD/srd_spells_feather_fall.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Feather Fall +AltName: '[Léger comme une plume](hd_spells_leger_comme_une_plume.md)' Type: transmutation +Level: 1 CastingTime: 1 reaction, which you take when you or a creature within 60 feet of you falls Range: 60 feet Components: V, M (a small feather or piece of down) Duration: 1 minute Classes: Bard, Sorcerer, Wizard +Source: (SRD p142) Id: spells_vo.md#feather-fall ParentLink: spells_vo.md#spells-srd-p -Name: Feather Fall ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Léger comme une plume](hd_spells_leger_comme_une_plume.md)' -Source: (SRD p142) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_feeblemind.md b/Data/HD/srd_spells_feeblemind.md index ead10178..10d6865a 100644 --- a/Data/HD/srd_spells_feeblemind.md +++ b/Data/HD/srd_spells_feeblemind.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Feeblemind +AltName: '[Esprit faible](hd_spells_esprit_faible.md)' Type: enchantment +Level: 8 CastingTime: 1 action Range: 150 feet Components: V, S, M (a handful of clay, crystal, glass, or mineral spheres) Duration: Instantaneous Classes: Bard, Druid, Warlock, Wizard +Source: (SRD p142) Id: spells_vo.md#feeblemind ParentLink: spells_vo.md#spells-srd-p -Name: Feeblemind ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Esprit faible](hd_spells_esprit_faible.md)' -Source: (SRD p142) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_find_familiar.md b/Data/HD/srd_spells_find_familiar.md index 291f0225..72ea5de9 100644 --- a/Data/HD/srd_spells_find_familiar.md +++ b/Data/HD/srd_spells_find_familiar.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Find Familiar +AltName: '[Appel de familier](hd_spells_appel_de_familier.md)' Type: conjuration -Ritual: ritual +Level: 1 CastingTime: 1 hour Range: 10 feet Components: V, S, M (10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier) Duration: Instantaneous Classes: Wizard +Source: (SRD p143) +Ritual: ritual Id: spells_vo.md#find-familiar ParentLink: spells_vo.md#spells-srd-p -Name: Find Familiar ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Appel de familier](hd_spells_appel_de_familier.md)' -Source: (SRD p143) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_find_steed.md b/Data/HD/srd_spells_find_steed.md index 1fc3906b..c837a6e5 100644 --- a/Data/HD/srd_spells_find_steed.md +++ b/Data/HD/srd_spells_find_steed.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Find Steed +AltName: '[Trouver une monture](hd_spells_trouver_une_monture.md)' Type: conjuration +Level: 2 CastingTime: 10 minutes Range: 30 feet Components: V, S Duration: Instantaneous Classes: Paladin +Source: (SRD p143) Id: spells_vo.md#find-steed ParentLink: spells_vo.md#spells-srd-p -Name: Find Steed ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Trouver une monture](hd_spells_trouver_une_monture.md)' -Source: (SRD p143) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_find_the_path.md b/Data/HD/srd_spells_find_the_path.md index fb893acf..b91ac596 100644 --- a/Data/HD/srd_spells_find_the_path.md +++ b/Data/HD/srd_spells_find_the_path.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Find the Path +AltName: '[Trouver un chemin](hd_spells_trouver_un_chemin.md)' Type: divination +Level: 6 CastingTime: 1 minute Range: Self Components: V, S, M (a set of divinatory tools—such as bones, ivory sticks, cards, teeth, or carved runes-worth 100 gp and an object from the location you wish to find) Duration: Concentration, up to 1 day Classes: Bard, Cleric, Druid +Source: (SRD p143) Id: spells_vo.md#find-the-path ParentLink: spells_vo.md#spells-srd-p -Name: Find the Path ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Trouver un chemin](hd_spells_trouver_un_chemin.md)' -Source: (SRD p143) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_find_traps.md b/Data/HD/srd_spells_find_traps.md index cf918605..49a659e5 100644 --- a/Data/HD/srd_spells_find_traps.md +++ b/Data/HD/srd_spells_find_traps.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Find Traps +AltName: '[Trouver les pièges](hd_spells_trouver_les_pieges.md)' Type: divination +Level: 2 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Cleric, Druid, Ranger +Source: (SRD p144) Id: spells_vo.md#find-traps ParentLink: spells_vo.md#spells-srd-p -Name: Find Traps ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Trouver les pièges](hd_spells_trouver_les_pieges.md)' -Source: (SRD p144) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_finger_of_death.md b/Data/HD/srd_spells_finger_of_death.md index 72a4deb4..f261c75b 100644 --- a/Data/HD/srd_spells_finger_of_death.md +++ b/Data/HD/srd_spells_finger_of_death.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Finger of Death +AltName: '[Doigt de mort](hd_spells_doigt_de_mort.md)' Type: necromancy +Level: 7 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Warlock, Wizard +Source: (SRD p144) Id: spells_vo.md#finger-of-death ParentLink: spells_vo.md#spells-srd-p -Name: Finger of Death ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Doigt de mort](hd_spells_doigt_de_mort.md)' -Source: (SRD p144) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_fire_bolt.md b/Data/HD/srd_spells_fire_bolt.md index 3753299a..e837a9c8 100644 --- a/Data/HD/srd_spells_fire_bolt.md +++ b/Data/HD/srd_spells_fire_bolt.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Fire Bolt +AltName: '[Trait de feu](hd_spells_trait_de_feu.md)' Type: Evocation +Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p144) Id: spells_vo.md#fire-bolt ParentLink: spells_vo.md#spells-srd-p -Name: Fire Bolt ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Trait de feu](hd_spells_trait_de_feu.md)' -Source: (SRD p144) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_fire_shield.md b/Data/HD/srd_spells_fire_shield.md index 59c48886..8ad2721a 100644 --- a/Data/HD/srd_spells_fire_shield.md +++ b/Data/HD/srd_spells_fire_shield.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Fire Shield +AltName: '[Bouclier de feu](hd_spells_bouclier_de_feu.md)' Type: evocation +Level: 4 CastingTime: 1 action Range: Self Components: V, S, M (a bit of phosphorus or a firefly) Duration: 10 minutes Classes: Wizard +Source: (SRD p144) Id: spells_vo.md#fire-shield ParentLink: spells_vo.md#spells-srd-p -Name: Fire Shield ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bouclier de feu](hd_spells_bouclier_de_feu.md)' -Source: (SRD p144) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_fire_storm.md b/Data/HD/srd_spells_fire_storm.md index 7139b162..6fa753f6 100644 --- a/Data/HD/srd_spells_fire_storm.md +++ b/Data/HD/srd_spells_fire_storm.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Fire Storm +AltName: '[Tempête de feu](hd_spells_tempete_de_feu.md)' Type: evocation +Level: 7 CastingTime: 1 action Range: 150 feet Components: V, S Duration: Instantaneous Classes: Cleric, Druid, Sorcerer +Source: (SRD p145) Id: spells_vo.md#fire-storm ParentLink: spells_vo.md#spells-srd-p -Name: Fire Storm ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Tempête de feu](hd_spells_tempete_de_feu.md)' -Source: (SRD p145) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_fireball.md b/Data/HD/srd_spells_fireball.md index d58f9a83..bc247841 100644 --- a/Data/HD/srd_spells_fireball.md +++ b/Data/HD/srd_spells_fireball.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Fireball +AltName: '[Boule de feu](hd_spells_boule_de_feu.md)' Type: evocation +Level: 3 CastingTime: 1 action Range: 150 feet Components: V, S, M (a tiny ball of bat guano and sulfur) Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p144) Id: spells_vo.md#fireball ParentLink: spells_vo.md#spells-srd-p -Name: Fireball ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Boule de feu](hd_spells_boule_de_feu.md)' -Source: (SRD p144) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_flame_blade.md b/Data/HD/srd_spells_flame_blade.md index baf67156..72c4ce07 100644 --- a/Data/HD/srd_spells_flame_blade.md +++ b/Data/HD/srd_spells_flame_blade.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Flame Blade +AltName: '[Lame de feu](hd_spells_lame_de_feu.md)' Type: evocation +Level: 2 CastingTime: 1 bonus action Range: Self Components: V, S, M (leaf of sumac) Duration: Concentration, up to 10 minutes Classes: Druid +Source: (SRD p145) Id: spells_vo.md#flame-blade ParentLink: spells_vo.md#spells-srd-p -Name: Flame Blade ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lame de feu](hd_spells_lame_de_feu.md)' -Source: (SRD p145) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_flame_strike.md b/Data/HD/srd_spells_flame_strike.md index eaf13816..721d0975 100644 --- a/Data/HD/srd_spells_flame_strike.md +++ b/Data/HD/srd_spells_flame_strike.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Flame Strike +AltName: '[Colonne de flamme](hd_spells_colonne_de_flamme.md)' Type: evocation +Level: 5 CastingTime: 1 action Range: 60 feet Components: V, S, M (pinch of sulfur) Duration: Instantaneous Classes: Cleric +Source: (SRD p145) Id: spells_vo.md#flame-strike ParentLink: spells_vo.md#spells-srd-p -Name: Flame Strike ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Colonne de flamme](hd_spells_colonne_de_flamme.md)' -Source: (SRD p145) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_flaming_sphere.md b/Data/HD/srd_spells_flaming_sphere.md index 2f5521d5..f3e04dcd 100644 --- a/Data/HD/srd_spells_flaming_sphere.md +++ b/Data/HD/srd_spells_flaming_sphere.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Flaming Sphere +AltName: '[Sphère de feu](hd_spells_sphere_de_feu.md)' Type: conjuration +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a bit of tallow, a pinch of brimstone, and a dusting of powdered iron) Duration: Concentration, up to 1 minute Classes: Druid, Wizard +Source: (SRD p145) Id: spells_vo.md#flaming-sphere ParentLink: spells_vo.md#spells-srd-p -Name: Flaming Sphere ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Sphère de feu](hd_spells_sphere_de_feu.md)' -Source: (SRD p145) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_flesh_to_stone.md b/Data/HD/srd_spells_flesh_to_stone.md index 8ab3f1c3..a1d438ce 100644 --- a/Data/HD/srd_spells_flesh_to_stone.md +++ b/Data/HD/srd_spells_flesh_to_stone.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Flesh to Stone +AltName: '[Pétrification](hd_spells_petrification.md)' Type: transmutation +Level: 6 CastingTime: 1 action Range: 60 feet Components: V, S, M (a pinch of lime, water, and earth) Duration: Concentration, up to 1 minute Classes: Warlock, Wizard +Source: (SRD p145) Id: spells_vo.md#flesh-to-stone ParentLink: spells_vo.md#spells-srd-p -Name: Flesh to Stone ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Pétrification](hd_spells_petrification.md)' -Source: (SRD p145) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_floating_disk.md b/Data/HD/srd_spells_floating_disk.md index 425a6cf0..85cd8ba6 100644 --- a/Data/HD/srd_spells_floating_disk.md +++ b/Data/HD/srd_spells_floating_disk.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Floating Disk +AltName: '[Disque flottant](hd_spells_disque_flottant.md)' Type: conjuration -Ritual: ritual +Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (a drop of mercury) Duration: 1 hour Classes: Wizard +Source: (SRD p146) +Ritual: ritual Id: spells_vo.md#floating-disk ParentLink: spells_vo.md#spells-srd-p -Name: Floating Disk ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Disque flottant](hd_spells_disque_flottant.md)' -Source: (SRD p146) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_fly.md b/Data/HD/srd_spells_fly.md index 27c91746..18856cc6 100644 --- a/Data/HD/srd_spells_fly.md +++ b/Data/HD/srd_spells_fly.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Fly +AltName: '[Vol](hd_spells_vol.md)' Type: transmutation +Level: 3 CastingTime: 1 action Range: Touch Components: V, S, M (a wing feather from any bird) Duration: Concentration, up to 10 minutes Classes: Sorcerer, Warlock, Wizard +Source: (SRD p146) Id: spells_vo.md#fly ParentLink: spells_vo.md#spells-srd-p -Name: Fly ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Vol](hd_spells_vol.md)' -Source: (SRD p146) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_fog_cloud.md b/Data/HD/srd_spells_fog_cloud.md index 9fa875c2..5c2a0e79 100644 --- a/Data/HD/srd_spells_fog_cloud.md +++ b/Data/HD/srd_spells_fog_cloud.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Fog Cloud +AltName: '[Nappe de brouillard](hd_spells_nappe_de_brouillard.md)' Type: conjuration +Level: 1 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 1 hour Classes: Druid, Ranger, Sorcerer, Wizard +Source: (SRD p146) Id: spells_vo.md#fog-cloud ParentLink: spells_vo.md#spells-srd-p -Name: Fog Cloud ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Nappe de brouillard](hd_spells_nappe_de_brouillard.md)' -Source: (SRD p146) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_forbiddance.md b/Data/HD/srd_spells_forbiddance.md index 2a13dd55..2cc8b617 100644 --- a/Data/HD/srd_spells_forbiddance.md +++ b/Data/HD/srd_spells_forbiddance.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Forbiddance +AltName: '[Interdiction](hd_spells_interdiction.md)' Type: abjuration -Ritual: ritual +Level: 6 CastingTime: 10 minutes Range: Touch Components: V, S, M (a sprinkling of holy water, rare incense, and powdered ruby worth at least 1,000 gp) Duration: 1 day Classes: Cleric +Source: (SRD p146) +Ritual: ritual Id: spells_vo.md#forbiddance ParentLink: spells_vo.md#spells-srd-p -Name: Forbiddance ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Interdiction](hd_spells_interdiction.md)' -Source: (SRD p146) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_forcecage.md b/Data/HD/srd_spells_forcecage.md index a866b38a..b16c138d 100644 --- a/Data/HD/srd_spells_forcecage.md +++ b/Data/HD/srd_spells_forcecage.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Forcecage +AltName: '[Cage de force](hd_spells_cage_de_force.md)' Type: evocation +Level: 7 CastingTime: 1 action Range: 100 feet Components: V, S, M (ruby dust worth 1,500 gp) Duration: 1 hour Classes: Bard, Warlock, Wizard +Source: (SRD p147) Id: spells_vo.md#forcecage ParentLink: spells_vo.md#spells-srd-p -Name: Forcecage ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Cage de force](hd_spells_cage_de_force.md)' -Source: (SRD p147) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_foresight.md b/Data/HD/srd_spells_foresight.md index bd00d257..37508dc2 100644 --- a/Data/HD/srd_spells_foresight.md +++ b/Data/HD/srd_spells_foresight.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Foresight +AltName: '[Prémonition](hd_spells_premonition.md)' Type: divination +Level: 9 CastingTime: 1 minute Range: Touch Components: V, S, M (a hummingbird feather) Duration: 8 hours Classes: Bard, Druid, Warlock, Wizard +Source: (SRD p147) Id: spells_vo.md#foresight ParentLink: spells_vo.md#spells-srd-p -Name: Foresight ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Prémonition](hd_spells_premonition.md)' -Source: (SRD p147) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_freedom_of_movement.md b/Data/HD/srd_spells_freedom_of_movement.md index 9a55b03d..fbab3b2c 100644 --- a/Data/HD/srd_spells_freedom_of_movement.md +++ b/Data/HD/srd_spells_freedom_of_movement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Freedom of Movement +AltName: '[Liberté de mouvement](hd_spells_liberte_de_mouvement.md)' Type: abjuration +Level: 4 CastingTime: 1 action Range: Touch Components: V, S, M (a leather strap, bound around the arm or a similar appendage) Duration: 1 hour Classes: Bard, Cleric, Druid, Ranger +Source: (SRD p147) Id: spells_vo.md#freedom-of-movement ParentLink: spells_vo.md#spells-srd-p -Name: Freedom of Movement ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Liberté de mouvement](hd_spells_liberte_de_mouvement.md)' -Source: (SRD p147) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_freezing_sphere.md b/Data/HD/srd_spells_freezing_sphere.md index 3f1c854a..ec1239b0 100644 --- a/Data/HD/srd_spells_freezing_sphere.md +++ b/Data/HD/srd_spells_freezing_sphere.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Freezing Sphere +AltName: '[Sphère glacée](hd_spells_sphere_glacee.md)' Type: evocation +Level: 6 CastingTime: 1 action Range: 300 feet Components: V, S, M (a small crystal sphere Duration: Instantaneous Classes: Wizard +Source: (SRD p147) Id: spells_vo.md#freezing-sphere ParentLink: spells_vo.md#spells-srd-p -Name: Freezing Sphere ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Sphère glacée](hd_spells_sphere_glacee.md)' -Source: (SRD p147) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_gaseous_form.md b/Data/HD/srd_spells_gaseous_form.md index a3b193ff..ba0fa0dd 100644 --- a/Data/HD/srd_spells_gaseous_form.md +++ b/Data/HD/srd_spells_gaseous_form.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Gaseous Form +AltName: '[Forme gazeuse](hd_spells_forme_gazeuse.md)' Type: transmutation +Level: 3 CastingTime: 1 action Range: Touch Components: V, S, M (a bit of gauze and a wisp of smoke) Duration: Concentration, up to 1 hour Classes: Sorcerer, Warlock, Wizard +Source: (SRD p148) Id: spells_vo.md#gaseous-form ParentLink: spells_vo.md#spells-srd-p -Name: Gaseous Form ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Forme gazeuse](hd_spells_forme_gazeuse.md)' -Source: (SRD p148) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_gate.md b/Data/HD/srd_spells_gate.md index 208258a9..d7b33d19 100644 --- a/Data/HD/srd_spells_gate.md +++ b/Data/HD/srd_spells_gate.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Gate +AltName: '[Portail](hd_spells_portail.md)' Type: conjuration +Level: 9 CastingTime: 1 action Range: 60 feet Components: V, S, M (a diamond worth at least 5,000 gp) Duration: Concentration, up to 1 minute Classes: Cleric, Sorcerer, Wizard +Source: (SRD p148) Id: spells_vo.md#gate ParentLink: spells_vo.md#spells-srd-p -Name: Gate ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Portail](hd_spells_portail.md)' -Source: (SRD p148) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_geas.md b/Data/HD/srd_spells_geas.md index d1f19115..cbff0c3f 100644 --- a/Data/HD/srd_spells_geas.md +++ b/Data/HD/srd_spells_geas.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Geas +AltName: '[Coercition mystique](hd_spells_coercition_mystique.md)' Type: enchantment +Level: 5 CastingTime: 1 minute Range: 60 feet Components: V Duration: 30 days Classes: Bard, Cleric, Druid, Paladin, Wizard +Source: (SRD p148) Id: spells_vo.md#geas ParentLink: spells_vo.md#spells-srd-p -Name: Geas ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Coercition mystique](hd_spells_coercition_mystique.md)' -Source: (SRD p148) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_gentle_repose.md b/Data/HD/srd_spells_gentle_repose.md index 529f6756..918f888e 100644 --- a/Data/HD/srd_spells_gentle_repose.md +++ b/Data/HD/srd_spells_gentle_repose.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Gentle Repose +AltName: '[Doux repos](hd_spells_doux_repos.md)' Type: necromancy -Ritual: ritual +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a pinch of salt and one copper piece placed on each of the corpse's eyes, which must remain there for the duration Duration: 10 days Classes: Cleric, Wizard +Source: (SRD p148) +Ritual: ritual Id: spells_vo.md#gentle-repose ParentLink: spells_vo.md#spells-srd-p -Name: Gentle Repose ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Doux repos](hd_spells_doux_repos.md)' -Source: (SRD p148) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_giant_insect.md b/Data/HD/srd_spells_giant_insect.md index 7d87fc91..36496d05 100644 --- a/Data/HD/srd_spells_giant_insect.md +++ b/Data/HD/srd_spells_giant_insect.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Giant Insect +AltName: '[Insecte géant](hd_spells_insecte_geant.md)' Type: transmutation +Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Druid +Source: (SRD p149) Id: spells_vo.md#giant-insect ParentLink: spells_vo.md#spells-srd-p -Name: Giant Insect ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Insecte géant](hd_spells_insecte_geant.md)' -Source: (SRD p149) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_glibness.md b/Data/HD/srd_spells_glibness.md index 1fbad1fe..031f6953 100644 --- a/Data/HD/srd_spells_glibness.md +++ b/Data/HD/srd_spells_glibness.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Glibness +AltName: '[Bagou](hd_spells_bagou.md)' Type: transmutation +Level: 8 CastingTime: 1 action Range: Self Components: V Duration: 1 hour Classes: Bard, Warlock +Source: (SRD p149) Id: spells_vo.md#glibness ParentLink: spells_vo.md#spells-srd-p -Name: Glibness ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bagou](hd_spells_bagou.md)' -Source: (SRD p149) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_globe_of_invulnerability.md b/Data/HD/srd_spells_globe_of_invulnerability.md index 4ee86498..fe91d67d 100644 --- a/Data/HD/srd_spells_globe_of_invulnerability.md +++ b/Data/HD/srd_spells_globe_of_invulnerability.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Globe of Invulnerability +AltName: "[Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)" Type: abjuration +Level: 6 CastingTime: 1 action Range: Self (10-foot radius) Components: V, S, M (a glass or crystal bead that shatters when the spell ends) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard +Source: (SRD p149) Id: spells_vo.md#globe-of-invulnerability ParentLink: spells_vo.md#spells-srd-p -Name: Globe of Invulnerability ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)" -Source: (SRD p149) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_glyph_of_warding.md b/Data/HD/srd_spells_glyph_of_warding.md index a56ae6b5..09a04977 100644 --- a/Data/HD/srd_spells_glyph_of_warding.md +++ b/Data/HD/srd_spells_glyph_of_warding.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Glyph of Warding +AltName: '[Glyphe de protection](hd_spells_glyphe_de_protection.md)' Type: abjuration +Level: 3 CastingTime: 1 hour Range: Touch Components: V, S, M (incense and powdered diamond worth at least 200 gp, which the spell consumes) Duration: Until dispelled or triggered Classes: Bard, Cleric, Wizard +Source: (SRD p149) Id: spells_vo.md#glyph-of-warding ParentLink: spells_vo.md#spells-srd-p -Name: Glyph of Warding ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Glyphe de protection](hd_spells_glyphe_de_protection.md)' -Source: (SRD p149) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_goodberry.md b/Data/HD/srd_spells_goodberry.md index ab5553e1..37839325 100644 --- a/Data/HD/srd_spells_goodberry.md +++ b/Data/HD/srd_spells_goodberry.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Goodberry +AltName: '[Baies nourricières](hd_spells_baies_nourricieres.md)' Type: transmutation +Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (a sprig of mistletoe) Duration: Instantaneous Classes: Druid, Ranger +Source: (SRD p150) Id: spells_vo.md#goodberry ParentLink: spells_vo.md#spells-srd-p -Name: Goodberry ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Baies nourricières](hd_spells_baies_nourricieres.md)' -Source: (SRD p150) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_grease.md b/Data/HD/srd_spells_grease.md index 2c9a1903..dc06a52c 100644 --- a/Data/HD/srd_spells_grease.md +++ b/Data/HD/srd_spells_grease.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Grease +AltName: '[Graisse](hd_spells_graisse.md)' Type: conjuration +Level: 1 CastingTime: 1 action Range: 60 feet Components: V, S, M (a bit of pork rind or butter) Duration: 1 minute Classes: Wizard +Source: (SRD p150) Id: spells_vo.md#grease ParentLink: spells_vo.md#spells-srd-p -Name: Grease ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Graisse](hd_spells_graisse.md)' -Source: (SRD p150) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_greater_invisibility.md b/Data/HD/srd_spells_greater_invisibility.md index eeabe591..9a212bb7 100644 --- a/Data/HD/srd_spells_greater_invisibility.md +++ b/Data/HD/srd_spells_greater_invisibility.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Greater Invisibility +AltName: '[Invisibilité supérieure](hd_spells_invisibilite_superieure.md)' Type: illusion +Level: 4 CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard +Source: (SRD p150) Id: spells_vo.md#greater-invisibility ParentLink: spells_vo.md#spells-srd-p -Name: Greater Invisibility ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Invisibilité supérieure](hd_spells_invisibilite_superieure.md)' -Source: (SRD p150) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_greater_restoration.md b/Data/HD/srd_spells_greater_restoration.md index 1699c7b0..5d59b9ce 100644 --- a/Data/HD/srd_spells_greater_restoration.md +++ b/Data/HD/srd_spells_greater_restoration.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Greater Restoration +AltName: '[Restauration supérieure](hd_spells_restauration_superieure.md)' Type: abjuration +Level: 5 CastingTime: 1 action Range: Touch Components: V, S, M (diamond dust worth at least 100 gp, which the spell consumes) Duration: Instantaneous Classes: Bard, Cleric, Druid +Source: (SRD p150) Id: spells_vo.md#greater-restoration ParentLink: spells_vo.md#spells-srd-p -Name: Greater Restoration ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Restauration supérieure](hd_spells_restauration_superieure.md)' -Source: (SRD p150) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_guardian_of_faith.md b/Data/HD/srd_spells_guardian_of_faith.md index 5de864d8..b505e8ed 100644 --- a/Data/HD/srd_spells_guardian_of_faith.md +++ b/Data/HD/srd_spells_guardian_of_faith.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Guardian of Faith +AltName: '[Gardien de la foi](hd_spells_gardien_de_la_foi.md)' Type: conjuration +Level: 4 CastingTime: 1 action Range: 30 feet Components: V Duration: 8 hours Classes: Cleric +Source: (SRD p150) Id: spells_vo.md#guardian-of-faith ParentLink: spells_vo.md#spells-srd-p -Name: Guardian of Faith ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Gardien de la foi](hd_spells_gardien_de_la_foi.md)' -Source: (SRD p150) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_guards_and_wards.md b/Data/HD/srd_spells_guards_and_wards.md index 94bd8820..badbbd02 100644 --- a/Data/HD/srd_spells_guards_and_wards.md +++ b/Data/HD/srd_spells_guards_and_wards.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Guards and Wards +AltName: '[Protections et sceaux](hd_spells_protections_et_sceaux.md)' Type: abjuration +Level: 6 CastingTime: 10 minutes Range: Touch Components: V, S, M (burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10 gp) Duration: 24 hours Classes: Bard, Wizard +Source: (SRD p151) Id: spells_vo.md#guards-and-wards ParentLink: spells_vo.md#spells-srd-p -Name: Guards and Wards ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Protections et sceaux](hd_spells_protections_et_sceaux.md)' -Source: (SRD p151) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_guidance.md b/Data/HD/srd_spells_guidance.md index e93c1ca8..7df141dd 100644 --- a/Data/HD/srd_spells_guidance.md +++ b/Data/HD/srd_spells_guidance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Guidance +AltName: '[Assistance](hd_spells_assistance.md)' Type: Divination +Level: cantrip CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 minute Classes: Cleric, Druid +Source: (SRD p151) Id: spells_vo.md#guidance ParentLink: spells_vo.md#spells-srd-p -Name: Guidance ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Assistance](hd_spells_assistance.md)' -Source: (SRD p151) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_guiding_bolt.md b/Data/HD/srd_spells_guiding_bolt.md index c65e6b69..395bdcbc 100644 --- a/Data/HD/srd_spells_guiding_bolt.md +++ b/Data/HD/srd_spells_guiding_bolt.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Guiding Bolt +AltName: '[Balisage](hd_spells_balisage.md)' Type: evocation +Level: 1 CastingTime: 1 action Range: 120 feet Components: V, S Duration: 1 round Classes: Cleric +Source: (SRD p151) Id: spells_vo.md#guiding-bolt ParentLink: spells_vo.md#spells-srd-p -Name: Guiding Bolt ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Balisage](hd_spells_balisage.md)' -Source: (SRD p151) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_gust_of_wind.md b/Data/HD/srd_spells_gust_of_wind.md index 5da1051d..3b45e75f 100644 --- a/Data/HD/srd_spells_gust_of_wind.md +++ b/Data/HD/srd_spells_gust_of_wind.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Gust of Wind +AltName: '[Bourrasque](hd_spells_bourrasque.md)' Type: evocation +Level: 2 CastingTime: 1 action Range: Self (60-foot line) Components: V, S, M (a legume seed) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard +Source: (SRD p152) Id: spells_vo.md#gust-of-wind ParentLink: spells_vo.md#spells-srd-p -Name: Gust of Wind ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bourrasque](hd_spells_bourrasque.md)' -Source: (SRD p152) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_hallow.md b/Data/HD/srd_spells_hallow.md index 99b6fabe..fb7deb33 100644 --- a/Data/HD/srd_spells_hallow.md +++ b/Data/HD/srd_spells_hallow.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Hallow +AltName: '[Sanctification](hd_spells_sanctification.md)' Type: evocation +Level: 5 CastingTime: 24 hours Range: Touch Components: V, S, M (herbs, oils, and incense worth at least 1,000 gp, which the spell consumes) Duration: Until dispelled Classes: Cleric +Source: (SRD p152) Id: spells_vo.md#hallow ParentLink: spells_vo.md#spells-srd-p -Name: Hallow ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Sanctification](hd_spells_sanctification.md)' -Source: (SRD p152) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_hallucinatory_terrain.md b/Data/HD/srd_spells_hallucinatory_terrain.md index ea76c32f..90bc8024 100644 --- a/Data/HD/srd_spells_hallucinatory_terrain.md +++ b/Data/HD/srd_spells_hallucinatory_terrain.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Hallucinatory Terrain +AltName: '[Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)' Type: illusion +Level: 4 CastingTime: 10 minutes Range: 300 feet Components: V, S, M (a stone, a twig, and a bit of green plant) Duration: 24 hours Classes: Bard, Druid, Warlock, Wizard +Source: (SRD p152) Id: spells_vo.md#hallucinatory-terrain ParentLink: spells_vo.md#spells-srd-p -Name: Hallucinatory Terrain ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)' -Source: (SRD p152) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_harm.md b/Data/HD/srd_spells_harm.md index ff5d0abf..3df36555 100644 --- a/Data/HD/srd_spells_harm.md +++ b/Data/HD/srd_spells_harm.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Harm +AltName: '[Contamination](hd_spells_contamination.md)' Type: necromancy +Level: 6 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric +Source: (SRD p153) Id: spells_vo.md#harm ParentLink: spells_vo.md#spells-srd-p -Name: Harm ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Contamination](hd_spells_contamination.md)' -Source: (SRD p153) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_haste.md b/Data/HD/srd_spells_haste.md index d89fb6e1..7b4dc8e9 100644 --- a/Data/HD/srd_spells_haste.md +++ b/Data/HD/srd_spells_haste.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Haste +AltName: '[Hâte](hd_spells_hate.md)' Type: transmutation +Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S, M (a shaving of licorice root) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard +Source: (SRD p153) Id: spells_vo.md#haste ParentLink: spells_vo.md#spells-srd-p -Name: Haste ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Hâte](hd_spells_hate.md)' -Source: (SRD p153) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_heal.md b/Data/HD/srd_spells_heal.md index 8f6863f4..75eb5c0d 100644 --- a/Data/HD/srd_spells_heal.md +++ b/Data/HD/srd_spells_heal.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Heal +AltName: '[Guérison](hd_spells_guerison.md)' Type: evocation +Level: 6 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric, Druid +Source: (SRD p153) Id: spells_vo.md#heal ParentLink: spells_vo.md#spells-srd-p -Name: Heal ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Guérison](hd_spells_guerison.md)' -Source: (SRD p153) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_healing_word.md b/Data/HD/srd_spells_healing_word.md index c5b2c623..54c3402c 100644 --- a/Data/HD/srd_spells_healing_word.md +++ b/Data/HD/srd_spells_healing_word.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Healing Word +AltName: '[Mot de guérison](hd_spells_mot_de_guerison.md)' Type: evocation +Level: 1 CastingTime: 1 bonus action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard, Cleric, Druid +Source: (SRD p153) Id: spells_vo.md#healing-word ParentLink: spells_vo.md#spells-srd-p -Name: Healing Word ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mot de guérison](hd_spells_mot_de_guerison.md)' -Source: (SRD p153) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_heat_metal.md b/Data/HD/srd_spells_heat_metal.md index 64851512..73d7a9ad 100644 --- a/Data/HD/srd_spells_heat_metal.md +++ b/Data/HD/srd_spells_heat_metal.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Heat Metal +AltName: '[Chauffer le métal](hd_spells_chauffer_le_metal.md)' Type: transmutation +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a piece of iron and a flame) Duration: Concentration, up to 1 minute Classes: Bard, Druid +Source: (SRD p153) Id: spells_vo.md#heat-metal ParentLink: spells_vo.md#spells-srd-p -Name: Heat Metal ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Chauffer le métal](hd_spells_chauffer_le_metal.md)' -Source: (SRD p153) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_hellish_rebuke.md b/Data/HD/srd_spells_hellish_rebuke.md index a473b27e..01007e41 100644 --- a/Data/HD/srd_spells_hellish_rebuke.md +++ b/Data/HD/srd_spells_hellish_rebuke.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Hellish Rebuke +AltName: '[Représailles infernales](hd_spells_represailles_infernales.md)' Type: evocation +Level: 1 CastingTime: 1 reaction, which you take in response to being damaged by a creature within 60 feet of you that you can see Range: 60 feet Components: V, S Duration: Instantaneous Classes: Warlock +Source: (SRD p154) Id: spells_vo.md#hellish-rebuke ParentLink: spells_vo.md#spells-srd-p -Name: Hellish Rebuke ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Représailles infernales](hd_spells_represailles_infernales.md)' -Source: (SRD p154) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_heroes_feast.md b/Data/HD/srd_spells_heroes_feast.md index 20fbbc42..5e8c9d70 100644 --- a/Data/HD/srd_spells_heroes_feast.md +++ b/Data/HD/srd_spells_heroes_feast.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Heroes' Feast +AltName: '[Festin des héros](hd_spells_festin_des_heros.md)' Type: conjuration +Level: 6 CastingTime: 10 minutes Range: 30 feet Components: V, S, M (a gem-encrusted bowl worth at least 1,000 gp, which the spell consumes) Duration: Instantaneous Classes: Cleric, Druid +Source: (SRD p154) Id: spells_vo.md#heroes-feast ParentLink: spells_vo.md#spells-srd-p -Name: Heroes' Feast ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Festin des héros](hd_spells_festin_des_heros.md)' -Source: (SRD p154) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_heroism.md b/Data/HD/srd_spells_heroism.md index 7f6a7667..0f4d51a1 100644 --- a/Data/HD/srd_spells_heroism.md +++ b/Data/HD/srd_spells_heroism.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Heroism +AltName: '[Héroïsme](hd_spells_heroisme.md)' Type: enchantment +Level: 1 CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Paladin +Source: (SRD p154) Id: spells_vo.md#heroism ParentLink: spells_vo.md#spells-srd-p -Name: Heroism ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Héroïsme](hd_spells_heroisme.md)' -Source: (SRD p154) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_hideous_laughter.md b/Data/HD/srd_spells_hideous_laughter.md index 9fe81083..fe8581a1 100644 --- a/Data/HD/srd_spells_hideous_laughter.md +++ b/Data/HD/srd_spells_hideous_laughter.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Hideous Laughter +AltName: '[Fou rire](hd_spells_fou_rire.md)' Type: enchantment +Level: 1 CastingTime: 1 action Range: 30 feet Components: V, S, M (tiny tarts and a feather that is waved in the air) Duration: Concentration, up to 1 minute Classes: Bard, Wizard +Source: (SRD p154) Id: spells_vo.md#hideous-laughter ParentLink: spells_vo.md#spells-srd-p -Name: Hideous Laughter ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Fou rire](hd_spells_fou_rire.md)' -Source: (SRD p154) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_hold_monster.md b/Data/HD/srd_spells_hold_monster.md index 153c812b..82af22af 100644 --- a/Data/HD/srd_spells_hold_monster.md +++ b/Data/HD/srd_spells_hold_monster.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Hold Monster +AltName: '[Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)' Type: enchantment +Level: 5 CastingTime: 1 action Range: 90 feet Components: V, S, M (a small, straight piece of iron) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p154) Id: spells_vo.md#hold-monster ParentLink: spells_vo.md#spells-srd-p -Name: Hold Monster ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)' -Source: (SRD p154) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_hold_person.md b/Data/HD/srd_spells_hold_person.md index e619e7d9..8e8f107d 100644 --- a/Data/HD/srd_spells_hold_person.md +++ b/Data/HD/srd_spells_hold_person.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Hold Person +AltName: '[Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)' Type: enchantment +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a small, straight piece of iron) Duration: Concentration, up to 1 minute Classes: Bard, Cleric, Druid, Sorcerer, Warlock, Wizard +Source: (SRD p154) Id: spells_vo.md#hold-person ParentLink: spells_vo.md#spells-srd-p -Name: Hold Person ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)' -Source: (SRD p154) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_holy_aura.md b/Data/HD/srd_spells_holy_aura.md index 7e11a351..d939558c 100644 --- a/Data/HD/srd_spells_holy_aura.md +++ b/Data/HD/srd_spells_holy_aura.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Holy Aura +AltName: '[Aura sacrée](hd_spells_aura_sacree.md)' Type: abjuration +Level: 8 CastingTime: 1 action Range: Self Components: V, S, M (a tiny reliquary worth at least 1,000 gp containing a sacred relic, such as a scrap of cloth from a saint's robe or a piece of parchment from a religious text) Duration: Concentration, up to 1 minute Classes: Cleric +Source: (SRD p155) Id: spells_vo.md#holy-aura ParentLink: spells_vo.md#spells-srd-p -Name: Holy Aura ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Aura sacrée](hd_spells_aura_sacree.md)' -Source: (SRD p155) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_hunters_mark.md b/Data/HD/srd_spells_hunters_mark.md index df931f2b..189a2542 100644 --- a/Data/HD/srd_spells_hunters_mark.md +++ b/Data/HD/srd_spells_hunters_mark.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Hunter's Mark +AltName: '[Marque du chasseur](hd_spells_marque_du_chasseur.md)' Type: divination +Level: 1 CastingTime: 1 bonus action Range: 90 feet Components: V Duration: Concentration, up to 1 hour Classes: Ranger +Source: (SRD p155) Id: spells_vo.md#hunters-mark ParentLink: spells_vo.md#spells-srd-p -Name: Hunter's Mark ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Marque du chasseur](hd_spells_marque_du_chasseur.md)' -Source: (SRD p155) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_hypnotic_pattern.md b/Data/HD/srd_spells_hypnotic_pattern.md index 1b5df2b8..a085c3d1 100644 --- a/Data/HD/srd_spells_hypnotic_pattern.md +++ b/Data/HD/srd_spells_hypnotic_pattern.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Hypnotic Pattern +AltName: '[Motif hypnotique](hd_spells_motif_hypnotique.md)' Type: illusion +Level: 3 CastingTime: 1 action Range: 120 feet Components: S, M (a glowing stick of incense or a crystal vial filled with phosphorescent material) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p155) Id: spells_vo.md#hypnotic-pattern ParentLink: spells_vo.md#spells-srd-p -Name: Hypnotic Pattern ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Motif hypnotique](hd_spells_motif_hypnotique.md)' -Source: (SRD p155) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_ice_storm.md b/Data/HD/srd_spells_ice_storm.md index 72032573..b34d5467 100644 --- a/Data/HD/srd_spells_ice_storm.md +++ b/Data/HD/srd_spells_ice_storm.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Ice Storm +AltName: '[Tempête de grêle](hd_spells_tempete_de_grele.md)' Type: evocation +Level: 4 CastingTime: 1 action Range: 300 feet Components: V, S, M (a pinch of dust and a few drops of water) Duration: Instantaneous Classes: Druid, Sorcerer, Wizard +Source: (SRD p155) Id: spells_vo.md#ice-storm ParentLink: spells_vo.md#spells-srd-p -Name: Ice Storm ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Tempête de grêle](hd_spells_tempete_de_grele.md)' -Source: (SRD p155) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_identify.md b/Data/HD/srd_spells_identify.md index 38b38f91..64914422 100644 --- a/Data/HD/srd_spells_identify.md +++ b/Data/HD/srd_spells_identify.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Identify +AltName: '[Identification](hd_spells_identification.md)' Type: divination -Ritual: ritual +Level: 1 CastingTime: 1 minute Range: Touch Components: V, S, M (a pearl worth at least 100 gp and an owl feather) Duration: Instantaneous Classes: Bard, Wizard +Source: (SRD p155) +Ritual: ritual Id: spells_vo.md#identify ParentLink: spells_vo.md#spells-srd-p -Name: Identify ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Identification](hd_spells_identification.md)' -Source: (SRD p155) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_illusory_script.md b/Data/HD/srd_spells_illusory_script.md index a0a78ce0..bac0b50e 100644 --- a/Data/HD/srd_spells_illusory_script.md +++ b/Data/HD/srd_spells_illusory_script.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Illusory Script +AltName: '[Texte illusoire](hd_spells_texte_illusoire.md)' Type: illusion -Ritual: ritual +Level: 1 CastingTime: 1 minute Range: Touch Components: S, M (a lead-based ink worth at least 10 gp, which the spell consumes) Duration: 10 days Classes: Bard, Warlock, Wizard +Source: (SRD p156) +Ritual: ritual Id: spells_vo.md#illusory-script ParentLink: spells_vo.md#spells-srd-p -Name: Illusory Script ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Texte illusoire](hd_spells_texte_illusoire.md)' -Source: (SRD p156) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_imprisonment.md b/Data/HD/srd_spells_imprisonment.md index 743bcd81..1f1e63e3 100644 --- a/Data/HD/srd_spells_imprisonment.md +++ b/Data/HD/srd_spells_imprisonment.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Imprisonment +AltName: '[Emprisonnement](hd_spells_emprisonnement.md)' Type: abjuration +Level: 9 CastingTime: 1 minute Range: 30 feet Components: V, S, M (a vellum depiction or a carved statuette in the likeness of the target, and a special component that varies according to the version of the spell you choose, worth at least 500 gp per Hit Die of the target) Duration: Until dispelled Classes: Warlock, Wizard +Source: (SRD p156) Id: spells_vo.md#imprisonment ParentLink: spells_vo.md#spells-srd-p -Name: Imprisonment ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Emprisonnement](hd_spells_emprisonnement.md)' -Source: (SRD p156) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_incendiary_cloud.md b/Data/HD/srd_spells_incendiary_cloud.md index 5f253fe6..edb85b06 100644 --- a/Data/HD/srd_spells_incendiary_cloud.md +++ b/Data/HD/srd_spells_incendiary_cloud.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Incendiary Cloud +AltName: '[Nuage incendiaire](hd_spells_nuage_incendiaire.md)' Type: conjuration +Level: 8 CastingTime: 1 action Range: 150 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard +Source: (SRD p157) Id: spells_vo.md#incendiary-cloud ParentLink: spells_vo.md#spells-srd-p -Name: Incendiary Cloud ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Nuage incendiaire](hd_spells_nuage_incendiaire.md)' -Source: (SRD p157) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_inflict_wounds.md b/Data/HD/srd_spells_inflict_wounds.md index 944052de..9438ab82 100644 --- a/Data/HD/srd_spells_inflict_wounds.md +++ b/Data/HD/srd_spells_inflict_wounds.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Inflict Wounds +AltName: '[Blessure](hd_spells_blessure.md)' Type: necromancy +Level: 1 CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Cleric +Source: (SRD p157) Id: spells_vo.md#inflict-wounds ParentLink: spells_vo.md#spells-srd-p -Name: Inflict Wounds ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Blessure](hd_spells_blessure.md)' -Source: (SRD p157) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_insect_plague.md b/Data/HD/srd_spells_insect_plague.md index 0b1866ab..5d8d9c8a 100644 --- a/Data/HD/srd_spells_insect_plague.md +++ b/Data/HD/srd_spells_insect_plague.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Insect Plague +AltName: "[Fléau d'insectes](hd_spells_fleau_dinsectes.md)" Type: conjuration +Level: 5 CastingTime: 1 action Range: 300 feet Components: V, S, M (a few grains of sugar, some kernels of grain, and a smear of fat) Duration: Concentration, up to 10 minutes Classes: Cleric, Druid, Sorcerer +Source: (SRD p157) Id: spells_vo.md#insect-plague ParentLink: spells_vo.md#spells-srd-p -Name: Insect Plague ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Fléau d'insectes](hd_spells_fleau_dinsectes.md)" -Source: (SRD p157) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_instant_summons.md b/Data/HD/srd_spells_instant_summons.md index 0cad02e8..ec54f0ca 100644 --- a/Data/HD/srd_spells_instant_summons.md +++ b/Data/HD/srd_spells_instant_summons.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Instant Summons +AltName: '[Convocations instantanées](hd_spells_convocations_instantanees.md)' Type: conjuration -Ritual: ritual +Level: 6 CastingTime: 1 minute Range: Touch Components: V, S, M (a sapphire worth 1,000 gp) Duration: Until dispelled Classes: Wizard +Source: (SRD p157) +Ritual: ritual Id: spells_vo.md#instant-summons ParentLink: spells_vo.md#spells-srd-p -Name: Instant Summons ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Convocations instantanées](hd_spells_convocations_instantanees.md)' -Source: (SRD p157) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_invisibility.md b/Data/HD/srd_spells_invisibility.md index 9061ffbf..66dcacab 100644 --- a/Data/HD/srd_spells_invisibility.md +++ b/Data/HD/srd_spells_invisibility.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Invisibility +AltName: '[Invisibilité](hd_spells_invisibilite.md)' Type: illusion +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (an eyelash encased in gum arabic) Duration: Concentration, up to 1 hour Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p157) Id: spells_vo.md#invisibility ParentLink: spells_vo.md#spells-srd-p -Name: Invisibility ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Invisibilité](hd_spells_invisibilite.md)' -Source: (SRD p157) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_irresistible_dance.md b/Data/HD/srd_spells_irresistible_dance.md index fc6c741e..db23479a 100644 --- a/Data/HD/srd_spells_irresistible_dance.md +++ b/Data/HD/srd_spells_irresistible_dance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Irresistible Dance +AltName: '[Danse irrésistible](hd_spells_danse_irresistible.md)' Type: enchantment +Level: 6 CastingTime: 1 action Range: 30 feet Components: V Duration: Concentration, up to 1 minute Classes: Bard, Wizard +Source: (SRD p158) Id: spells_vo.md#irresistible-dance ParentLink: spells_vo.md#spells-srd-p -Name: Irresistible Dance ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Danse irrésistible](hd_spells_danse_irresistible.md)' -Source: (SRD p158) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_jump.md b/Data/HD/srd_spells_jump.md index 02420b43..50f9b5fb 100644 --- a/Data/HD/srd_spells_jump.md +++ b/Data/HD/srd_spells_jump.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Jump +AltName: '[Saut](hd_spells_saut.md)' Type: transmutation +Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (a grasshopper's hind leg) Duration: 1 minute Classes: Druid, Ranger, Sorcerer, Wizard +Source: (SRD p158) Id: spells_vo.md#jump ParentLink: spells_vo.md#spells-srd-p -Name: Jump ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Saut](hd_spells_saut.md)' -Source: (SRD p158) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_knock.md b/Data/HD/srd_spells_knock.md index 239feb8a..aab3628d 100644 --- a/Data/HD/srd_spells_knock.md +++ b/Data/HD/srd_spells_knock.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Knock +AltName: '[Déblocage](hd_spells_deblocage.md)' Type: transmutation +Level: 2 CastingTime: 1 action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Wizard +Source: (SRD p158) Id: spells_vo.md#knock ParentLink: spells_vo.md#spells-srd-p -Name: Knock ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Déblocage](hd_spells_deblocage.md)' -Source: (SRD p158) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_legend_lore.md b/Data/HD/srd_spells_legend_lore.md index 1efdf2fd..bae01dfa 100644 --- a/Data/HD/srd_spells_legend_lore.md +++ b/Data/HD/srd_spells_legend_lore.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Legend Lore +AltName: '[Légende](hd_spells_legende.md)' Type: divination +Level: 5 CastingTime: 10 minutes Range: Self Components: V, S, M (incense worth at least 250 gp, which the spell consumes, and four ivory strips worth at least 50 gp each) Duration: Instantaneous Classes: Bard, Cleric, Wizard +Source: (SRD p158) Id: spells_vo.md#legend-lore ParentLink: spells_vo.md#spells-srd-p -Name: Legend Lore ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Légende](hd_spells_legende.md)' -Source: (SRD p158) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_lesser_restoration.md b/Data/HD/srd_spells_lesser_restoration.md index 07cdbc55..cbb1cd0c 100644 --- a/Data/HD/srd_spells_lesser_restoration.md +++ b/Data/HD/srd_spells_lesser_restoration.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Lesser Restoration +AltName: '[Restauration inférieure](hd_spells_restauration_inferieure.md)' Type: abjuration +Level: 2 CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Bard, Cleric, Druid, Paladin, Ranger +Source: (SRD p158) Id: spells_vo.md#lesser-restoration ParentLink: spells_vo.md#spells-srd-p -Name: Lesser Restoration ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Restauration inférieure](hd_spells_restauration_inferieure.md)' -Source: (SRD p158) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_levitate.md b/Data/HD/srd_spells_levitate.md index 22063d08..a3d46bd3 100644 --- a/Data/HD/srd_spells_levitate.md +++ b/Data/HD/srd_spells_levitate.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Levitate +AltName: '[Lévitation](hd_spells_levitation.md)' Type: transmutation +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end) Duration: Concentration, up to 10 minutes Classes: Sorcerer, Wizard +Source: (SRD p158) Id: spells_vo.md#levitate ParentLink: spells_vo.md#spells-srd-p -Name: Levitate ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lévitation](hd_spells_levitation.md)' -Source: (SRD p158) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_light.md b/Data/HD/srd_spells_light.md index a2c86584..28b9a595 100644 --- a/Data/HD/srd_spells_light.md +++ b/Data/HD/srd_spells_light.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Light +AltName: '[Lumière](hd_spells_lumiere.md)' Type: Evocation +Level: cantrip CastingTime: 1 action Range: Touch Components: V, M (a firefly or phosphorescent moss) Duration: 1 hour Classes: Bard, Cleric, Sorcerer, Wizard +Source: (SRD p159) Id: spells_vo.md#light ParentLink: spells_vo.md#spells-srd-p -Name: Light ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lumière](hd_spells_lumiere.md)' -Source: (SRD p159) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_lightning_bolt.md b/Data/HD/srd_spells_lightning_bolt.md index e2bbbfe7..154f1460 100644 --- a/Data/HD/srd_spells_lightning_bolt.md +++ b/Data/HD/srd_spells_lightning_bolt.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Lightning Bolt +AltName: '[Éclair](hd_spells_eclair.md)' Type: evocation +Level: 3 CastingTime: 1 action Range: Self (100-foot line) Components: V, S, M (a bit of fur and a rod of amber, crystal, or glass) Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p159) Id: spells_vo.md#lightning-bolt ParentLink: spells_vo.md#spells-srd-p -Name: Lightning Bolt ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Éclair](hd_spells_eclair.md)' -Source: (SRD p159) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_locate_animals_or_plants.md b/Data/HD/srd_spells_locate_animals_or_plants.md index a4f003ce..d072da5b 100644 --- a/Data/HD/srd_spells_locate_animals_or_plants.md +++ b/Data/HD/srd_spells_locate_animals_or_plants.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Locate Animals or Plants +AltName: '[Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)' Type: divination -Ritual: ritual +Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (a bit of fur from a bloodhound) Duration: Instantaneous Classes: Bard, Druid, Ranger +Source: (SRD p159) +Ritual: ritual Id: spells_vo.md#locate-animals-or-plants ParentLink: spells_vo.md#spells-srd-p -Name: Locate Animals or Plants ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)' -Source: (SRD p159) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_locate_creature.md b/Data/HD/srd_spells_locate_creature.md index 4692f8ef..cff58984 100644 --- a/Data/HD/srd_spells_locate_creature.md +++ b/Data/HD/srd_spells_locate_creature.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Locate Creature +AltName: '[Localiser une créature](hd_spells_localiser_une_creature.md)' Type: divination +Level: 4 CastingTime: 1 action Range: Self Components: V, S, M (a bit of fur from a bloodhound) Duration: Concentration, up to 1 hour Classes: Bard, Cleric, Druid, Paladin, Ranger, Wizard +Source: (SRD p159) Id: spells_vo.md#locate-creature ParentLink: spells_vo.md#spells-srd-p -Name: Locate Creature ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Localiser une créature](hd_spells_localiser_une_creature.md)' -Source: (SRD p159) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_locate_object.md b/Data/HD/srd_spells_locate_object.md index 08c69bb0..15a258bb 100644 --- a/Data/HD/srd_spells_locate_object.md +++ b/Data/HD/srd_spells_locate_object.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Locate Object +AltName: '[Localiser un objet](hd_spells_localiser_un_objet.md)' Type: divination +Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (a forked twig) Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Druid, Paladin, Ranger, Wizard +Source: (SRD p159) Id: spells_vo.md#locate-object ParentLink: spells_vo.md#spells-srd-p -Name: Locate Object ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Localiser un objet](hd_spells_localiser_un_objet.md)' -Source: (SRD p159) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_longstrider.md b/Data/HD/srd_spells_longstrider.md index f851968b..0ac454c2 100644 --- a/Data/HD/srd_spells_longstrider.md +++ b/Data/HD/srd_spells_longstrider.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Longstrider +AltName: '[Grande foulée](hd_spells_grande_foulee.md)' Type: transmutation +Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (a pinch of dirt) Duration: 1 hour Classes: Bard, Druid, Ranger, Wizard +Source: (SRD p160) Id: spells_vo.md#longstrider ParentLink: spells_vo.md#spells-srd-p -Name: Longstrider ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Grande foulée](hd_spells_grande_foulee.md)' -Source: (SRD p160) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mage_armor.md b/Data/HD/srd_spells_mage_armor.md index 789f83ac..08ba9dd2 100644 --- a/Data/HD/srd_spells_mage_armor.md +++ b/Data/HD/srd_spells_mage_armor.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Mage Armor +AltName: '[Armure du mage](hd_spells_armure_du_mage.md)' Type: abjuration +Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (a piece of cured leather) Duration: 8 hours Classes: Sorcerer, Wizard +Source: (SRD p160) Id: spells_vo.md#mage-armor ParentLink: spells_vo.md#spells-srd-p -Name: Mage Armor ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Armure du mage](hd_spells_armure_du_mage.md)' -Source: (SRD p160) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mage_hand.md b/Data/HD/srd_spells_mage_hand.md index 1fc6590a..571c8f6f 100644 --- a/Data/HD/srd_spells_mage_hand.md +++ b/Data/HD/srd_spells_mage_hand.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Mage Hand +AltName: '[Main du mage](hd_spells_main_du_mage.md)' Type: Conjuration +Level: cantrip CastingTime: 1 action Range: 30 feet Components: V, S Duration: 1 minute Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p160) Id: spells_vo.md#mage-hand ParentLink: spells_vo.md#spells-srd-p -Name: Mage Hand ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Main du mage](hd_spells_main_du_mage.md)' -Source: (SRD p160) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_magic_circle.md b/Data/HD/srd_spells_magic_circle.md index 7cd504c9..a2b4d342 100644 --- a/Data/HD/srd_spells_magic_circle.md +++ b/Data/HD/srd_spells_magic_circle.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Magic Circle +AltName: '[Cercle magique](hd_spells_cercle_magique.md)' Type: abjuration +Level: 3 CastingTime: 1 minute Range: 10 feet Components: V, S, M (holy water or powdered silver and iron worth at least 100 gp, which the spell consumes) Duration: 1 hour Classes: Cleric, Paladin, Warlock, Wizard +Source: (SRD p160) Id: spells_vo.md#magic-circle ParentLink: spells_vo.md#spells-srd-p -Name: Magic Circle ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Cercle magique](hd_spells_cercle_magique.md)' -Source: (SRD p160) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_magic_jar.md b/Data/HD/srd_spells_magic_jar.md index 2b56a911..c80dc1e9 100644 --- a/Data/HD/srd_spells_magic_jar.md +++ b/Data/HD/srd_spells_magic_jar.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Magic Jar +AltName: '[Possession](hd_spells_possession.md)' Type: necromancy +Level: 6 CastingTime: 1 minute Range: Self Components: V, S, M (a gem, crystal, reliquary, or some other ornamental container worth at least 500 gp) Duration: Until dispelled Classes: Wizard +Source: (SRD p160) Id: spells_vo.md#magic-jar ParentLink: spells_vo.md#spells-srd-p -Name: Magic Jar ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Possession](hd_spells_possession.md)' -Source: (SRD p160) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_magic_missile.md b/Data/HD/srd_spells_magic_missile.md index 89bec059..2072e3d3 100644 --- a/Data/HD/srd_spells_magic_missile.md +++ b/Data/HD/srd_spells_magic_missile.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Magic Missile +AltName: '[Projectile magique](hd_spells_projectile_magique.md)' Type: evocation +Level: 1 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p161) Id: spells_vo.md#magic-missile ParentLink: spells_vo.md#spells-srd-p -Name: Magic Missile ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Projectile magique](hd_spells_projectile_magique.md)' -Source: (SRD p161) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_magic_mouth.md b/Data/HD/srd_spells_magic_mouth.md index 7a494dcd..28d827ac 100644 --- a/Data/HD/srd_spells_magic_mouth.md +++ b/Data/HD/srd_spells_magic_mouth.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Magic Mouth +AltName: '[Bouche magique](hd_spells_bouche_magique.md)' Type: illusion -Ritual: ritual +Level: 2 CastingTime: 1 minute Range: 30 feet Components: V, S, M (a small bit of honeycomb and jade dust worth at least 10 gp, which the spell consumes) Duration: Until dispelled Classes: Bard, Wizard +Source: (SRD p161) +Ritual: ritual Id: spells_vo.md#magic-mouth ParentLink: spells_vo.md#spells-srd-p -Name: Magic Mouth ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bouche magique](hd_spells_bouche_magique.md)' -Source: (SRD p161) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_magic_weapon.md b/Data/HD/srd_spells_magic_weapon.md index 6355b04f..0f844825 100644 --- a/Data/HD/srd_spells_magic_weapon.md +++ b/Data/HD/srd_spells_magic_weapon.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Magic Weapon +AltName: '[Arme magique](hd_spells_arme_magique.md)' Type: transmutation +Level: 2 CastingTime: 1 bonus action Range: Touch Components: V, S Duration: Concentration, up to 1 hour Classes: Paladin, Wizard +Source: (SRD p161) Id: spells_vo.md#magic-weapon ParentLink: spells_vo.md#spells-srd-p -Name: Magic Weapon ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Arme magique](hd_spells_arme_magique.md)' -Source: (SRD p161) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_magnificent_mansion.md b/Data/HD/srd_spells_magnificent_mansion.md index 7d8cfe49..d6206838 100644 --- a/Data/HD/srd_spells_magnificent_mansion.md +++ b/Data/HD/srd_spells_magnificent_mansion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Magnificent Mansion +AltName: '[Manoir somptueux](hd_spells_manoir_somptueux.md)' Type: conjuration +Level: 7 CastingTime: 1 minute Range: 300 feet Components: V, S, M (a miniature portal carved from ivory, a small piece of polished marble, and a tiny silver spoon, each item worth at least 5 gp) Duration: 24 hours Classes: Bard, Wizard +Source: (SRD p162) Id: spells_vo.md#magnificent-mansion ParentLink: spells_vo.md#spells-srd-p -Name: Magnificent Mansion ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Manoir somptueux](hd_spells_manoir_somptueux.md)' -Source: (SRD p162) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_major_image.md b/Data/HD/srd_spells_major_image.md index 19a9bbbb..0218b621 100644 --- a/Data/HD/srd_spells_major_image.md +++ b/Data/HD/srd_spells_major_image.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Major Image +AltName: '[Image majeure](hd_spells_image_majeure.md)' Type: illusion +Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S, M (a bit of fleece) Duration: Concentration, up to 10 minutes Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p162) Id: spells_vo.md#major-image ParentLink: spells_vo.md#spells-srd-p -Name: Major Image ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Image majeure](hd_spells_image_majeure.md)' -Source: (SRD p162) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mass_cure_wounds.md b/Data/HD/srd_spells_mass_cure_wounds.md index 7937d617..af63f31e 100644 --- a/Data/HD/srd_spells_mass_cure_wounds.md +++ b/Data/HD/srd_spells_mass_cure_wounds.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Mass Cure Wounds +AltName: '[Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)' Type: evocation +Level: 5 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Bard, Cleric, Druid +Source: (SRD p162) Id: spells_vo.md#mass-cure-wounds ParentLink: spells_vo.md#spells-srd-p -Name: Mass Cure Wounds ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)' -Source: (SRD p162) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mass_heal.md b/Data/HD/srd_spells_mass_heal.md index eac48d1e..2cc6f437 100644 --- a/Data/HD/srd_spells_mass_heal.md +++ b/Data/HD/srd_spells_mass_heal.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Mass Heal +AltName: '[Guérison de groupe](hd_spells_guerison_de_groupe.md)' Type: evocation +Level: 9 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric +Source: (SRD p163) Id: spells_vo.md#mass-heal ParentLink: spells_vo.md#spells-srd-p -Name: Mass Heal ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Guérison de groupe](hd_spells_guerison_de_groupe.md)' -Source: (SRD p163) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mass_healing_word.md b/Data/HD/srd_spells_mass_healing_word.md index 7a591813..adbde42f 100644 --- a/Data/HD/srd_spells_mass_healing_word.md +++ b/Data/HD/srd_spells_mass_healing_word.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Mass Healing Word +AltName: '[Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)' Type: evocation +Level: 3 CastingTime: 1 bonus action Range: 60 feet Components: V Duration: Instantaneous Classes: Cleric +Source: (SRD p163) Id: spells_vo.md#mass-healing-word ParentLink: spells_vo.md#spells-srd-p -Name: Mass Healing Word ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)' -Source: (SRD p163) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mass_suggestion.md b/Data/HD/srd_spells_mass_suggestion.md index 2039e46c..09f12ff6 100644 --- a/Data/HD/srd_spells_mass_suggestion.md +++ b/Data/HD/srd_spells_mass_suggestion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Mass Suggestion +AltName: '[Suggestion de groupe](hd_spells_suggestion_de_groupe.md)' Type: enchantment +Level: 6 CastingTime: 1 action Range: 60 feet Components: V, M (a snake's tongue and either a bit of honeycomb or a drop of sweet oil) Duration: 24 hours Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p163) Id: spells_vo.md#mass-suggestion ParentLink: spells_vo.md#spells-srd-p -Name: Mass Suggestion ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Suggestion de groupe](hd_spells_suggestion_de_groupe.md)' -Source: (SRD p163) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_maze.md b/Data/HD/srd_spells_maze.md index 1dd09716..b0b47217 100644 --- a/Data/HD/srd_spells_maze.md +++ b/Data/HD/srd_spells_maze.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Maze +AltName: '[Labyrinthe](hd_spells_labyrinthe.md)' Type: conjuration +Level: 8 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Wizard +Source: (SRD p163) Id: spells_vo.md#maze ParentLink: spells_vo.md#spells-srd-p -Name: Maze ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Labyrinthe](hd_spells_labyrinthe.md)' -Source: (SRD p163) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_meld_into_stone.md b/Data/HD/srd_spells_meld_into_stone.md index 8770f49f..63f0aef4 100644 --- a/Data/HD/srd_spells_meld_into_stone.md +++ b/Data/HD/srd_spells_meld_into_stone.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Meld into Stone +AltName: '[Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)' Type: transmutation -Ritual: ritual +Level: 3 CastingTime: 1 action Range: Touch Components: V, S Duration: 8 hours Classes: Cleric, Druid +Source: (SRD p163) +Ritual: ritual Id: spells_vo.md#meld-into-stone ParentLink: spells_vo.md#spells-srd-p -Name: Meld into Stone ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)' -Source: (SRD p163) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mending.md b/Data/HD/srd_spells_mending.md index 7cd92319..b1359840 100644 --- a/Data/HD/srd_spells_mending.md +++ b/Data/HD/srd_spells_mending.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Mending +AltName: '[Réparation](hd_spells_reparation.md)' Type: Transmutation +Level: cantrip CastingTime: 1 minute Range: Touch Components: V, S, M (two lodestones) Duration: Instantaneous Classes: Bard, Cleric, Druid, Sorcerer, Wizard +Source: (SRD p164) Id: spells_vo.md#mending ParentLink: spells_vo.md#spells-srd-p -Name: Mending ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Réparation](hd_spells_reparation.md)' -Source: (SRD p164) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_message.md b/Data/HD/srd_spells_message.md index 7cf191bc..3bba5137 100644 --- a/Data/HD/srd_spells_message.md +++ b/Data/HD/srd_spells_message.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Message +AltName: '[Message](hd_spells_message.md)' Type: Transmutation +Level: cantrip CastingTime: 1 action Range: 120 feet Components: V, S, M (a short piece of copper wire) Duration: 1 round Classes: Bard, Sorcerer, Wizard +Source: (SRD p164) Id: spells_vo.md#message ParentLink: spells_vo.md#spells-srd-p -Name: Message ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Message](hd_spells_message.md)' -Source: (SRD p164) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_meteor_swarm.md b/Data/HD/srd_spells_meteor_swarm.md index dc8411ae..cb3e6cdb 100644 --- a/Data/HD/srd_spells_meteor_swarm.md +++ b/Data/HD/srd_spells_meteor_swarm.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Meteor Swarm +AltName: '[Nuée de météores](hd_spells_nuee_de_meteores.md)' Type: evocation +Level: 9 CastingTime: 1 action Range: 1 mile Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p164) Id: spells_vo.md#meteor-swarm ParentLink: spells_vo.md#spells-srd-p -Name: Meteor Swarm ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Nuée de météores](hd_spells_nuee_de_meteores.md)' -Source: (SRD p164) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mind_blank.md b/Data/HD/srd_spells_mind_blank.md index af8185d4..26c90227 100644 --- a/Data/HD/srd_spells_mind_blank.md +++ b/Data/HD/srd_spells_mind_blank.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Mind Blank +AltName: '[Esprit impénétrable](hd_spells_esprit_impenetrable.md)' Type: abjuration +Level: 8 CastingTime: 1 action Range: Touch Components: V, S Duration: 24 hours Classes: Bard, Wizard +Source: (SRD p164) Id: spells_vo.md#mind-blank ParentLink: spells_vo.md#spells-srd-p -Name: Mind Blank ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Esprit impénétrable](hd_spells_esprit_impenetrable.md)' -Source: (SRD p164) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_minor_illusion.md b/Data/HD/srd_spells_minor_illusion.md index f29e26b0..366c50ac 100644 --- a/Data/HD/srd_spells_minor_illusion.md +++ b/Data/HD/srd_spells_minor_illusion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Minor Illusion +AltName: '[Illusion mineure](hd_spells_illusion_mineure.md)' Type: Illusion +Level: cantrip CastingTime: 1 action Range: 30 feet Components: S, M (a bit of fleece) Duration: 1 minute Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p164) Id: spells_vo.md#minor-illusion ParentLink: spells_vo.md#spells-srd-p -Name: Minor Illusion ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Illusion mineure](hd_spells_illusion_mineure.md)' -Source: (SRD p164) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mirage_arcane.md b/Data/HD/srd_spells_mirage_arcane.md index 6bfa51d5..2a8f7285 100644 --- a/Data/HD/srd_spells_mirage_arcane.md +++ b/Data/HD/srd_spells_mirage_arcane.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Mirage Arcane +AltName: '[Mirage](hd_spells_mirage.md)' Type: illusion +Level: 7 CastingTime: 10 minutes Range: Sight Components: V, S Duration: 10 days Classes: Bard, Druid, Wizard +Source: (SRD p165) Id: spells_vo.md#mirage-arcane ParentLink: spells_vo.md#spells-srd-p -Name: Mirage Arcane ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mirage](hd_spells_mirage.md)' -Source: (SRD p165) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mirror_image.md b/Data/HD/srd_spells_mirror_image.md index 84d5e61a..4f31ba1b 100644 --- a/Data/HD/srd_spells_mirror_image.md +++ b/Data/HD/srd_spells_mirror_image.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Mirror Image +AltName: '[Image miroir](hd_spells_image_miroir.md)' Type: illusion +Level: 2 CastingTime: 1 action Range: Self Components: V, S Duration: 1 minute Classes: Sorcerer, Warlock, Wizard +Source: (SRD p165) Id: spells_vo.md#mirror-image ParentLink: spells_vo.md#spells-srd-p -Name: Mirror Image ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Image miroir](hd_spells_image_miroir.md)' -Source: (SRD p165) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_mislead.md b/Data/HD/srd_spells_mislead.md index f21c430d..0ac0dfdd 100644 --- a/Data/HD/srd_spells_mislead.md +++ b/Data/HD/srd_spells_mislead.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Mislead +AltName: '[Tromperie](hd_spells_tromperie.md)' Type: illusion +Level: 5 CastingTime: 1 action Range: Self Components: S Duration: Concentration, up to 1 hour Classes: Bard, Wizard +Source: (SRD p165) Id: spells_vo.md#mislead ParentLink: spells_vo.md#spells-srd-p -Name: Mislead ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Tromperie](hd_spells_tromperie.md)' -Source: (SRD p165) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_misty_step.md b/Data/HD/srd_spells_misty_step.md index 836f6f72..410363f8 100644 --- a/Data/HD/srd_spells_misty_step.md +++ b/Data/HD/srd_spells_misty_step.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Misty Step +AltName: '[Pas brumeux](hd_spells_pas_brumeux.md)' Type: conjuration +Level: 2 CastingTime: 1 bonus action Range: Self Components: V Duration: Instantaneous Classes: Sorcerer, Warlock, Wizard +Source: (SRD p165) Id: spells_vo.md#misty-step ParentLink: spells_vo.md#spells-srd-p -Name: Misty Step ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Pas brumeux](hd_spells_pas_brumeux.md)' -Source: (SRD p165) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_modify_memory.md b/Data/HD/srd_spells_modify_memory.md index 24c3c310..9ad13e45 100644 --- a/Data/HD/srd_spells_modify_memory.md +++ b/Data/HD/srd_spells_modify_memory.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Modify Memory +AltName: '[Modification de mémoire](hd_spells_modification_de_memoire.md)' Type: enchantment +Level: 5 CastingTime: 1 action Range: 30 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Bard, Wizard +Source: (SRD p166) Id: spells_vo.md#modify-memory ParentLink: spells_vo.md#spells-srd-p -Name: Modify Memory ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Modification de mémoire](hd_spells_modification_de_memoire.md)' -Source: (SRD p166) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_moonbeam.md b/Data/HD/srd_spells_moonbeam.md index 2f4d9bdd..6daddba2 100644 --- a/Data/HD/srd_spells_moonbeam.md +++ b/Data/HD/srd_spells_moonbeam.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Moonbeam +AltName: '[Rayon de lune](hd_spells_rayon_de_lune.md)' Type: evocation +Level: 2 CastingTime: 1 action Range: 120 feet Components: V, S, M (several seeds of any moonseed plant and a piece of opalescent feldspar) Duration: Concentration, up to 1 minute Classes: Druid +Source: (SRD p166) Id: spells_vo.md#moonbeam ParentLink: spells_vo.md#spells-srd-p -Name: Moonbeam ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Rayon de lune](hd_spells_rayon_de_lune.md)' -Source: (SRD p166) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_move_earth.md b/Data/HD/srd_spells_move_earth.md index 6bcd9902..0c62ed22 100644 --- a/Data/HD/srd_spells_move_earth.md +++ b/Data/HD/srd_spells_move_earth.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Move Earth +AltName: '[Déplacer la terre](hd_spells_deplacer_la_terre.md)' Type: transmutation +Level: 6 CastingTime: 1 action Range: 120 feet Components: V, S, M (an iron blade and a small bag containing a mixture of soils—clay, loam, and sand) Duration: Concentration, up to 2 hours Classes: Druid, Sorcerer, Wizard +Source: (SRD p166) Id: spells_vo.md#move-earth ParentLink: spells_vo.md#spells-srd-p -Name: Move Earth ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Déplacer la terre](hd_spells_deplacer_la_terre.md)' -Source: (SRD p166) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_nondetection.md b/Data/HD/srd_spells_nondetection.md index 68c08595..c599bb39 100644 --- a/Data/HD/srd_spells_nondetection.md +++ b/Data/HD/srd_spells_nondetection.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Nondetection +AltName: '[Non-détection](hd_spells_non_detection.md)' Type: abjuration +Level: 3 CastingTime: 1 action Range: Touch Components: V, S, M (a pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes) Duration: 8 hours Classes: Bard, Ranger, Wizard +Source: (SRD p167) Id: spells_vo.md#nondetection ParentLink: spells_vo.md#spells-srd-p -Name: Nondetection ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Non-détection](hd_spells_non_detection.md)' -Source: (SRD p167) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_pass_without_trace.md b/Data/HD/srd_spells_pass_without_trace.md index 784fca45..2055a130 100644 --- a/Data/HD/srd_spells_pass_without_trace.md +++ b/Data/HD/srd_spells_pass_without_trace.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Pass without Trace +AltName: '[Passage sans trace](hd_spells_passage_sans_trace.md)' Type: abjuration +Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (ashes from a burned leaf of mistletoe and a sprig of spruce) Duration: Concentration, up to 1 hour Classes: Druid, Ranger +Source: (SRD p167) Id: spells_vo.md#pass-without-trace ParentLink: spells_vo.md#spells-srd-p -Name: Pass without Trace ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Passage sans trace](hd_spells_passage_sans_trace.md)' -Source: (SRD p167) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_passwall.md b/Data/HD/srd_spells_passwall.md index 6f98ad26..9bc6c150 100644 --- a/Data/HD/srd_spells_passwall.md +++ b/Data/HD/srd_spells_passwall.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Passwall +AltName: '[Passe-muraille](hd_spells_passe_muraille.md)' Type: transmutation +Level: 5 CastingTime: 1 action Range: 30 feet Components: V, S, M (a pinch of sesame seeds) Duration: 1 hour Classes: Wizard +Source: (SRD p167) Id: spells_vo.md#passwall ParentLink: spells_vo.md#spells-srd-p -Name: Passwall ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Passe-muraille](hd_spells_passe_muraille.md)' -Source: (SRD p167) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_phantasmal_killer.md b/Data/HD/srd_spells_phantasmal_killer.md index b35258ac..37a92619 100644 --- a/Data/HD/srd_spells_phantasmal_killer.md +++ b/Data/HD/srd_spells_phantasmal_killer.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Phantasmal Killer +AltName: '[Assassin imaginaire](hd_spells_assassin_imaginaire.md)' Type: illusion +Level: 4 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Wizard +Source: (SRD p167) Id: spells_vo.md#phantasmal-killer ParentLink: spells_vo.md#spells-srd-p -Name: Phantasmal Killer ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Assassin imaginaire](hd_spells_assassin_imaginaire.md)' -Source: (SRD p167) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_phantom_steed.md b/Data/HD/srd_spells_phantom_steed.md index db8770ba..97968180 100644 --- a/Data/HD/srd_spells_phantom_steed.md +++ b/Data/HD/srd_spells_phantom_steed.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Phantom Steed +AltName: '[Monture fantôme](hd_spells_monture_fantome.md)' Type: illusion -Ritual: ritual +Level: 3 CastingTime: 1 minute Range: 30 feet Components: V, S Duration: 1 hour Classes: Wizard +Source: (SRD p167) +Ritual: ritual Id: spells_vo.md#phantom-steed ParentLink: spells_vo.md#spells-srd-p -Name: Phantom Steed ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Monture fantôme](hd_spells_monture_fantome.md)' -Source: (SRD p167) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_planar_ally.md b/Data/HD/srd_spells_planar_ally.md index a4f9220c..292f31f4 100644 --- a/Data/HD/srd_spells_planar_ally.md +++ b/Data/HD/srd_spells_planar_ally.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Planar Ally +AltName: '[Allié planaire](hd_spells_allie_planaire.md)' Type: conjuration +Level: 6 CastingTime: 10 minutes Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric +Source: (SRD p168) Id: spells_vo.md#planar-ally ParentLink: spells_vo.md#spells-srd-p -Name: Planar Ally ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Allié planaire](hd_spells_allie_planaire.md)' -Source: (SRD p168) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_planar_binding.md b/Data/HD/srd_spells_planar_binding.md index 7f5ebdb6..4f17523e 100644 --- a/Data/HD/srd_spells_planar_binding.md +++ b/Data/HD/srd_spells_planar_binding.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Planar Binding +AltName: '[Entrave planaire](hd_spells_entrave_planaire.md)' Type: abjuration +Level: 5 CastingTime: 1 hour Range: 60 feet Components: V, S, M (a jewel worth at least 1,000 gp, which the spell consumes) Duration: 24 hours Classes: Bard, Cleric, Druid, Wizard +Source: (SRD p168) Id: spells_vo.md#planar-binding ParentLink: spells_vo.md#spells-srd-p -Name: Planar Binding ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Entrave planaire](hd_spells_entrave_planaire.md)' -Source: (SRD p168) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_plane_shift.md b/Data/HD/srd_spells_plane_shift.md index bf734d9d..caa74da2 100644 --- a/Data/HD/srd_spells_plane_shift.md +++ b/Data/HD/srd_spells_plane_shift.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Plane Shift +AltName: '[Changement de plan](hd_spells_changement_de_plan.md)' Type: conjuration +Level: 7 CastingTime: 1 action Range: Touch Components: V, S, M (a forked, metal rod worth at least 250 gp, attuned to a particular plane of existence) Duration: Instantaneous Classes: Cleric, Druid, Sorcerer, Warlock, Wizard +Source: (SRD p168) Id: spells_vo.md#plane-shift ParentLink: spells_vo.md#spells-srd-p -Name: Plane Shift ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Changement de plan](hd_spells_changement_de_plan.md)' -Source: (SRD p168) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_plant_growth.md b/Data/HD/srd_spells_plant_growth.md index 0ad3e4f6..2e40fa80 100644 --- a/Data/HD/srd_spells_plant_growth.md +++ b/Data/HD/srd_spells_plant_growth.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Plant Growth +AltName: '[Croissance végétale](hd_spells_croissance_vegetale.md)' Type: transmutation +Level: 3 CastingTime: 1 action or 8 hours Range: 150 feet Components: V, S Duration: Instantaneous Classes: Bard, Druid, Ranger +Source: (SRD p169) Id: spells_vo.md#plant-growth ParentLink: spells_vo.md#spells-srd-p -Name: Plant Growth ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Croissance végétale](hd_spells_croissance_vegetale.md)' -Source: (SRD p169) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_poison_spray.md b/Data/HD/srd_spells_poison_spray.md index 8fa000c6..2605b3a8 100644 --- a/Data/HD/srd_spells_poison_spray.md +++ b/Data/HD/srd_spells_poison_spray.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Poison Spray +AltName: '[Bouffée de poison](hd_spells_bouffee_de_poison.md)' Type: Conjuration +Level: cantrip CastingTime: 1 action Range: 10 feet Components: V, S Duration: Instantaneous Classes: Druid, Sorcerer, Warlock, Wizard +Source: (SRD p169) Id: spells_vo.md#poison-spray ParentLink: spells_vo.md#spells-srd-p -Name: Poison Spray ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bouffée de poison](hd_spells_bouffee_de_poison.md)' -Source: (SRD p169) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_polymorph.md b/Data/HD/srd_spells_polymorph.md index 05fe6be8..ade5a1e9 100644 --- a/Data/HD/srd_spells_polymorph.md +++ b/Data/HD/srd_spells_polymorph.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Polymorph +AltName: '[Métamorphose](hd_spells_metamorphose.md)' Type: transmutation +Level: 4 CastingTime: 1 action Range: 60 feet Components: V, S, M (a caterpillar cocoon) Duration: Concentration, up to 1 hour Classes: Bard, Druid, Sorcerer, Wizard +Source: (SRD p169) Id: spells_vo.md#polymorph ParentLink: spells_vo.md#spells-srd-p -Name: Polymorph ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Métamorphose](hd_spells_metamorphose.md)' -Source: (SRD p169) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_power_word_kill.md b/Data/HD/srd_spells_power_word_kill.md index a9825e96..60a494ca 100644 --- a/Data/HD/srd_spells_power_word_kill.md +++ b/Data/HD/srd_spells_power_word_kill.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Power Word Kill +AltName: '[Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)' Type: enchantment +Level: 9 CastingTime: 1 action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p170) Id: spells_vo.md#power-word-kill ParentLink: spells_vo.md#spells-srd-p -Name: Power Word Kill ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)' -Source: (SRD p170) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_power_word_stun.md b/Data/HD/srd_spells_power_word_stun.md index bd6f4941..2afc20e8 100644 --- a/Data/HD/srd_spells_power_word_stun.md +++ b/Data/HD/srd_spells_power_word_stun.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Power Word Stun +AltName: '[Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)' Type: enchantment +Level: 8 CastingTime: 1 action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p170) Id: spells_vo.md#power-word-stun ParentLink: spells_vo.md#spells-srd-p -Name: Power Word Stun ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)' -Source: (SRD p170) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_prayer_of_healing.md b/Data/HD/srd_spells_prayer_of_healing.md index 546215d8..7e665108 100644 --- a/Data/HD/srd_spells_prayer_of_healing.md +++ b/Data/HD/srd_spells_prayer_of_healing.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Prayer of Healing +AltName: '[Prière de soins](hd_spells_priere_de_soins.md)' Type: evocation +Level: 2 CastingTime: 10 minutes Range: 30 feet Components: V Duration: Instantaneous Classes: Cleric +Source: (SRD p170) Id: spells_vo.md#prayer-of-healing ParentLink: spells_vo.md#spells-srd-p -Name: Prayer of Healing ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Prière de soins](hd_spells_priere_de_soins.md)' -Source: (SRD p170) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_prestidigitation.md b/Data/HD/srd_spells_prestidigitation.md index 9fe5c05b..f91c2552 100644 --- a/Data/HD/srd_spells_prestidigitation.md +++ b/Data/HD/srd_spells_prestidigitation.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Prestidigitation +AltName: '[Prestidigitation](hd_spells_prestidigitation.md)' Type: Transmutation +Level: cantrip CastingTime: 1 action Range: 10 feet Components: V, S Duration: Up to 1 hour Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p170) Id: spells_vo.md#prestidigitation ParentLink: spells_vo.md#spells-srd-p -Name: Prestidigitation ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Prestidigitation](hd_spells_prestidigitation.md)' -Source: (SRD p170) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_prismatic_spray.md b/Data/HD/srd_spells_prismatic_spray.md index 66478cbd..b37d0f7d 100644 --- a/Data/HD/srd_spells_prismatic_spray.md +++ b/Data/HD/srd_spells_prismatic_spray.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Prismatic Spray +AltName: '[Embruns prismatiques](hd_spells_embruns_prismatiques.md)' Type: evocation +Level: 7 CastingTime: 1 action Range: Self (60-foot cone) Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p170) Id: spells_vo.md#prismatic-spray ParentLink: spells_vo.md#spells-srd-p -Name: Prismatic Spray ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Embruns prismatiques](hd_spells_embruns_prismatiques.md)' -Source: (SRD p170) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_prismatic_wall.md b/Data/HD/srd_spells_prismatic_wall.md index 3dcc2b0c..5f7c4e5f 100644 --- a/Data/HD/srd_spells_prismatic_wall.md +++ b/Data/HD/srd_spells_prismatic_wall.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Prismatic Wall +AltName: '[Mur prismatique](hd_spells_mur_prismatique.md)' Type: abjuration +Level: 9 CastingTime: 1 action Range: 60 feet Components: V, S Duration: 10 minutes Classes: Wizard +Source: (SRD p171) Id: spells_vo.md#prismatic-wall ParentLink: spells_vo.md#spells-srd-p -Name: Prismatic Wall ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mur prismatique](hd_spells_mur_prismatique.md)' -Source: (SRD p171) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_private_sanctum.md b/Data/HD/srd_spells_private_sanctum.md index 48c7b813..0c552259 100644 --- a/Data/HD/srd_spells_private_sanctum.md +++ b/Data/HD/srd_spells_private_sanctum.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Private Sanctum +AltName: '[Sanctuaire privé](hd_spells_sanctuaire_prive.md)' Type: abjuration +Level: 4 CastingTime: 10 minutes Range: 120 feet Components: V, S, M (a thin sheet of lead, a piece of opaque glass, a wad of cotton or cloth, and powdered chrysolite) Duration: 24 hours Classes: Wizard +Source: (SRD p171) Id: spells_vo.md#private-sanctum ParentLink: spells_vo.md#spells-srd-p -Name: Private Sanctum ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Sanctuaire privé](hd_spells_sanctuaire_prive.md)' -Source: (SRD p171) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_produce_flame.md b/Data/HD/srd_spells_produce_flame.md index feeb115d..dcfabd6d 100644 --- a/Data/HD/srd_spells_produce_flame.md +++ b/Data/HD/srd_spells_produce_flame.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Produce Flame +AltName: '[Produire une flamme](hd_spells_produire_une_flamme.md)' Type: Conjuration +Level: cantrip CastingTime: 1 action Range: Self Components: V, S Duration: 10 minutes Classes: Druid +Source: (SRD p172) Id: spells_vo.md#produce-flame ParentLink: spells_vo.md#spells-srd-p -Name: Produce Flame ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Produire une flamme](hd_spells_produire_une_flamme.md)' -Source: (SRD p172) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_programmed_illusion.md b/Data/HD/srd_spells_programmed_illusion.md index c3f074f3..06ea1114 100644 --- a/Data/HD/srd_spells_programmed_illusion.md +++ b/Data/HD/srd_spells_programmed_illusion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Programmed Illusion +AltName: '[Illusion programmée](hd_spells_illusion_programmee.md)' Type: illusion +Level: 6 CastingTime: 1 action Range: 120 feet Components: V, S, M (a bit of fleece and jade dust worth at least 25 gp) Duration: Until dispelled Classes: Bard, Wizard +Source: (SRD p172) Id: spells_vo.md#programmed-illusion ParentLink: spells_vo.md#spells-srd-p -Name: Programmed Illusion ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Illusion programmée](hd_spells_illusion_programmee.md)' -Source: (SRD p172) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_project_image.md b/Data/HD/srd_spells_project_image.md index 8ebc4f87..801874b6 100644 --- a/Data/HD/srd_spells_project_image.md +++ b/Data/HD/srd_spells_project_image.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Project Image +AltName: '[Image projetée](hd_spells_image_projetee.md)' Type: illusion +Level: 7 CastingTime: 1 action Range: 500 miles Components: V, S, M (a small replica of you made from materials worth at least 5 gp) Duration: Concentration, up to 1 day Classes: Bard, Wizard +Source: (SRD p172) Id: spells_vo.md#project-image ParentLink: spells_vo.md#spells-srd-p -Name: Project Image ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Image projetée](hd_spells_image_projetee.md)' -Source: (SRD p172) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_protection_from_energy.md b/Data/HD/srd_spells_protection_from_energy.md index 3a7547bd..a8a380d5 100644 --- a/Data/HD/srd_spells_protection_from_energy.md +++ b/Data/HD/srd_spells_protection_from_energy.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Protection from Energy +AltName: '[Protection contre les énergies](hd_spells_protection_contre_les_energies.md)' Type: abjuration +Level: 3 CastingTime: 1 action Range: Touch Components: V, S Duration: Concentration, up to 1 hour Classes: Cleric, Druid, Ranger, Sorcerer, Wizard +Source: (SRD p173) Id: spells_vo.md#protection-from-energy ParentLink: spells_vo.md#spells-srd-p -Name: Protection from Energy ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Protection contre les énergies](hd_spells_protection_contre_les_energies.md)' -Source: (SRD p173) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_protection_from_evil_and_good.md b/Data/HD/srd_spells_protection_from_evil_and_good.md index ee0727f6..6bd08ba0 100644 --- a/Data/HD/srd_spells_protection_from_evil_and_good.md +++ b/Data/HD/srd_spells_protection_from_evil_and_good.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Protection from Evil and Good +AltName: '[Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)' Type: abjuration +Level: 1 CastingTime: 1 action Range: Touch Components: V, S, M (holy water or powdered silver and iron, which the spell consumes) Duration: Concentration, up to 10 minutes Classes: Cleric, Paladin, Warlock, Wizard +Source: (SRD p173) Id: spells_vo.md#protection-from-evil-and-good ParentLink: spells_vo.md#spells-srd-p -Name: Protection from Evil and Good ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)' -Source: (SRD p173) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_protection_from_poison.md b/Data/HD/srd_spells_protection_from_poison.md index c3369f13..b5e3ba66 100644 --- a/Data/HD/srd_spells_protection_from_poison.md +++ b/Data/HD/srd_spells_protection_from_poison.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Protection from Poison +AltName: '[Protection contre le poison](hd_spells_protection_contre_le_poison.md)' Type: abjuration +Level: 2 CastingTime: 1 action Range: Touch Components: V, S Duration: 1 hour Classes: Cleric, Druid, Paladin, Ranger +Source: (SRD p173) Id: spells_vo.md#protection-from-poison ParentLink: spells_vo.md#spells-srd-p -Name: Protection from Poison ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Protection contre le poison](hd_spells_protection_contre_le_poison.md)' -Source: (SRD p173) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_purify_food_and_drink.md b/Data/HD/srd_spells_purify_food_and_drink.md index d64f076e..9cf3bcb1 100644 --- a/Data/HD/srd_spells_purify_food_and_drink.md +++ b/Data/HD/srd_spells_purify_food_and_drink.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Purify Food and Drink +AltName: "[Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)" Type: transmutation -Ritual: ritual +Level: 1 CastingTime: 1 action Range: 10 feet Components: V, S Duration: Instantaneous Classes: Cleric, Druid, Paladin +Source: (SRD p173) +Ritual: ritual Id: spells_vo.md#purify-food-and-drink ParentLink: spells_vo.md#spells-srd-p -Name: Purify Food and Drink ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)" -Source: (SRD p173) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_raise_dead.md b/Data/HD/srd_spells_raise_dead.md index f2d4b57e..ec7ca668 100644 --- a/Data/HD/srd_spells_raise_dead.md +++ b/Data/HD/srd_spells_raise_dead.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Raise Dead +AltName: '[Rappel à la vie](hd_spells_rappel_a_la_vie.md)' Type: necromancy +Level: 5 CastingTime: 1 hour Range: Touch Components: V, S, M (a diamond worth at least 500 gp, which the spell consumes) Duration: Instantaneous Classes: Bard, Cleric, Paladin +Source: (SRD p173) Id: spells_vo.md#raise-dead ParentLink: spells_vo.md#spells-srd-p -Name: Raise Dead ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Rappel à la vie](hd_spells_rappel_a_la_vie.md)' -Source: (SRD p173) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_ray_of_enfeeblement.md b/Data/HD/srd_spells_ray_of_enfeeblement.md index 1d875ef5..3d1536c5 100644 --- a/Data/HD/srd_spells_ray_of_enfeeblement.md +++ b/Data/HD/srd_spells_ray_of_enfeeblement.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Ray of Enfeeblement +AltName: '[Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)' Type: necromancy +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Warlock, Wizard +Source: (SRD p174) Id: spells_vo.md#ray-of-enfeeblement ParentLink: spells_vo.md#spells-srd-p -Name: Ray of Enfeeblement ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)' -Source: (SRD p174) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_ray_of_frost.md b/Data/HD/srd_spells_ray_of_frost.md index f37f284d..40fe79c4 100644 --- a/Data/HD/srd_spells_ray_of_frost.md +++ b/Data/HD/srd_spells_ray_of_frost.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Ray of Frost +AltName: '[Rayon de givre](hd_spells_rayon_de_givre.md)' Type: Evocation +Level: cantrip CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p174) Id: spells_vo.md#ray-of-frost ParentLink: spells_vo.md#spells-srd-p -Name: Ray of Frost ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Rayon de givre](hd_spells_rayon_de_givre.md)' -Source: (SRD p174) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_regenerate.md b/Data/HD/srd_spells_regenerate.md index 9555f748..5d4ab4c0 100644 --- a/Data/HD/srd_spells_regenerate.md +++ b/Data/HD/srd_spells_regenerate.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Regenerate +AltName: '[Régénération](hd_spells_regeneration.md)' Type: transmutation +Level: 7 CastingTime: 1 minute Range: Touch Components: V, S, M (a prayer wheel and holy water) Duration: 1 hour Classes: Bard, Cleric, Druid +Source: (SRD p174) Id: spells_vo.md#regenerate ParentLink: spells_vo.md#spells-srd-p -Name: Regenerate ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Régénération](hd_spells_regeneration.md)' -Source: (SRD p174) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_reincarnate.md b/Data/HD/srd_spells_reincarnate.md index 457363dd..b2f78a4f 100644 --- a/Data/HD/srd_spells_reincarnate.md +++ b/Data/HD/srd_spells_reincarnate.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Reincarnate +AltName: '[Réincarnation](hd_spells_reincarnation.md)' Type: transmutation +Level: 5 CastingTime: 1 hour Range: Touch Components: V, S, M (rare oils and unguents worth at least 1,000 gp, which the spell consumes) Duration: Instantaneous Classes: Druid +Source: (SRD p174) Id: spells_vo.md#reincarnate ParentLink: spells_vo.md#spells-srd-p -Name: Reincarnate ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Réincarnation](hd_spells_reincarnation.md)' -Source: (SRD p174) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_remove_curse.md b/Data/HD/srd_spells_remove_curse.md index 7fe89b6a..eba2cde3 100644 --- a/Data/HD/srd_spells_remove_curse.md +++ b/Data/HD/srd_spells_remove_curse.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Remove Curse +AltName: '[Lever une malédiction](hd_spells_lever_une_malediction.md)' Type: abjuration +Level: 3 CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Cleric, Paladin, Warlock, Wizard +Source: (SRD p174) Id: spells_vo.md#remove-curse ParentLink: spells_vo.md#spells-srd-p -Name: Remove Curse ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lever une malédiction](hd_spells_lever_une_malediction.md)' -Source: (SRD p174) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_resilient_sphere.md b/Data/HD/srd_spells_resilient_sphere.md index f896d817..e4a5e499 100644 --- a/Data/HD/srd_spells_resilient_sphere.md +++ b/Data/HD/srd_spells_resilient_sphere.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Resilient Sphere +AltName: '[Sphère résiliente](hd_spells_sphere_resiliente.md)' Type: evocation +Level: 4 CastingTime: 1 action Range: 30 feet Components: V, S, M (a hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic) Duration: Concentration, up to 1 minute Classes: Wizard +Source: (SRD p175) Id: spells_vo.md#resilient-sphere ParentLink: spells_vo.md#spells-srd-p -Name: Resilient Sphere ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Sphère résiliente](hd_spells_sphere_resiliente.md)' -Source: (SRD p175) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_resistance.md b/Data/HD/srd_spells_resistance.md index 36e80f4f..f424bab8 100644 --- a/Data/HD/srd_spells_resistance.md +++ b/Data/HD/srd_spells_resistance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Resistance +AltName: '[Résistance](hd_spells_resistance.md)' Type: Abjuration +Level: cantrip CastingTime: 1 action Range: Touch Components: V, S, M (a miniature cloak) Duration: Concentration, up to 1 minute Classes: Cleric, Druid +Source: (SRD p175) Id: spells_vo.md#resistance ParentLink: spells_vo.md#spells-srd-p -Name: Resistance ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Résistance](hd_spells_resistance.md)' -Source: (SRD p175) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_resurrection.md b/Data/HD/srd_spells_resurrection.md index 30105839..3b800a13 100644 --- a/Data/HD/srd_spells_resurrection.md +++ b/Data/HD/srd_spells_resurrection.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Resurrection +AltName: '[Résurrection](hd_spells_resurrection.md)' Type: necromancy +Level: 7 CastingTime: 1 hour Range: Touch Components: V, S, M (a diamond worth at least 1,000 gp, which the spell consumes) Duration: Instantaneous Classes: Bard, Cleric +Source: (SRD p175) Id: spells_vo.md#resurrection ParentLink: spells_vo.md#spells-srd-p -Name: Resurrection ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Résurrection](hd_spells_resurrection.md)' -Source: (SRD p175) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_reverse_gravity.md b/Data/HD/srd_spells_reverse_gravity.md index 41e95a87..d741bbbd 100644 --- a/Data/HD/srd_spells_reverse_gravity.md +++ b/Data/HD/srd_spells_reverse_gravity.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Reverse Gravity +AltName: '[Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)' Type: transmutation +Level: 7 CastingTime: 1 action Range: 100 feet Components: V, S, M (a lodestone and iron filings) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard +Source: (SRD p175) Id: spells_vo.md#reverse-gravity ParentLink: spells_vo.md#spells-srd-p -Name: Reverse Gravity ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)' -Source: (SRD p175) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_revivify.md b/Data/HD/srd_spells_revivify.md index d810b31d..71c1156e 100644 --- a/Data/HD/srd_spells_revivify.md +++ b/Data/HD/srd_spells_revivify.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Revivify +AltName: '[Revigorer](hd_spells_revigorer.md)' Type: necromancy +Level: 3 CastingTime: 1 action Range: Touch Components: V, S, M (diamonds worth 300 gp, which the spell consumes) Duration: Instantaneous Classes: Cleric, Paladin +Source: (SRD p175) Id: spells_vo.md#revivify ParentLink: spells_vo.md#spells-srd-p -Name: Revivify ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Revigorer](hd_spells_revigorer.md)' -Source: (SRD p175) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_rope_trick.md b/Data/HD/srd_spells_rope_trick.md index 733d2363..f0d35539 100644 --- a/Data/HD/srd_spells_rope_trick.md +++ b/Data/HD/srd_spells_rope_trick.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Rope Trick +AltName: '[Corde enchantée](hd_spells_corde_enchantee.md)' Type: transmutation +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (powdered corn extract and a twisted loop of parchment) Duration: 1 hour Classes: Wizard +Source: (SRD p176) Id: spells_vo.md#rope-trick ParentLink: spells_vo.md#spells-srd-p -Name: Rope Trick ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Corde enchantée](hd_spells_corde_enchantee.md)' -Source: (SRD p176) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_sacred_flame.md b/Data/HD/srd_spells_sacred_flame.md index f690f9ec..b569b48e 100644 --- a/Data/HD/srd_spells_sacred_flame.md +++ b/Data/HD/srd_spells_sacred_flame.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Sacred Flame +AltName: '[Flamme sacrée](hd_spells_flamme_sacree.md)' Type: Evocation +Level: cantrip CastingTime: 1 action Range: 60 feet Components: V, S Duration: Instantaneous Classes: Cleric +Source: (SRD p176) Id: spells_vo.md#sacred-flame ParentLink: spells_vo.md#spells-srd-p -Name: Sacred Flame ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Flamme sacrée](hd_spells_flamme_sacree.md)' -Source: (SRD p176) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_sanctuary.md b/Data/HD/srd_spells_sanctuary.md index 24b6d24f..2b66d54d 100644 --- a/Data/HD/srd_spells_sanctuary.md +++ b/Data/HD/srd_spells_sanctuary.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Sanctuary +AltName: '[Sanctuaire](hd_spells_sanctuaire.md)' Type: abjuration +Level: 1 CastingTime: 1 bonus action Range: 30 feet Components: V, S, M (a small silver mirror) Duration: 1 minute Classes: Cleric +Source: (SRD p176) Id: spells_vo.md#sanctuary ParentLink: spells_vo.md#spells-srd-p -Name: Sanctuary ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Sanctuaire](hd_spells_sanctuaire.md)' -Source: (SRD p176) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_scorching_ray.md b/Data/HD/srd_spells_scorching_ray.md index 3fe346c2..160bc5ee 100644 --- a/Data/HD/srd_spells_scorching_ray.md +++ b/Data/HD/srd_spells_scorching_ray.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Scorching Ray +AltName: '[Rayon ardent](hd_spells_rayon_ardent.md)' Type: evocation +Level: 2 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p176) Id: spells_vo.md#scorching-ray ParentLink: spells_vo.md#spells-srd-p -Name: Scorching Ray ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Rayon ardent](hd_spells_rayon_ardent.md)' -Source: (SRD p176) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_scrying.md b/Data/HD/srd_spells_scrying.md index 301eae65..9a6d323e 100644 --- a/Data/HD/srd_spells_scrying.md +++ b/Data/HD/srd_spells_scrying.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Scrying +AltName: '[Scrutation](hd_spells_scrutation.md)' Type: divination +Level: 5 CastingTime: 10 minutes Range: Self Components: V, S, M (a focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water) Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Druid, Warlock, Wizard +Source: (SRD p176) Id: spells_vo.md#scrying ParentLink: spells_vo.md#spells-srd-p -Name: Scrying ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Scrutation](hd_spells_scrutation.md)' -Source: (SRD p176) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_secret_chest.md b/Data/HD/srd_spells_secret_chest.md index 0070e41f..d51d64de 100644 --- a/Data/HD/srd_spells_secret_chest.md +++ b/Data/HD/srd_spells_secret_chest.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Secret Chest +AltName: '[Coffre secret](hd_spells_coffre_secret.md)' Type: conjuration +Level: 4 CastingTime: 1 action Range: Touch Components: V, S, M (an exquisite chest, 3 feet by 2 feet by 2 feet, constructed from rare materials worth at least 5,000 gp, and a Tiny replica made from the same materials worth at least 50 gp) Duration: Instantaneous Classes: Wizard +Source: (SRD p177) Id: spells_vo.md#secret-chest ParentLink: spells_vo.md#spells-srd-p -Name: Secret Chest ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Coffre secret](hd_spells_coffre_secret.md)' -Source: (SRD p177) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_see_invisibility.md b/Data/HD/srd_spells_see_invisibility.md index 2a4ce996..a5637c23 100644 --- a/Data/HD/srd_spells_see_invisibility.md +++ b/Data/HD/srd_spells_see_invisibility.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: See Invisibility +AltName: "[Voir l'invisible](hd_spells_voir_linvisible.md)" Type: divination +Level: 2 CastingTime: 1 action Range: Self Components: V, S, M (a pinch of talc and a small sprinkling of powdered silver) Duration: 1 hour Classes: Bard, Sorcerer, Wizard +Source: (SRD p177) Id: spells_vo.md#see-invisibility ParentLink: spells_vo.md#spells-srd-p -Name: See Invisibility ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Voir l'invisible](hd_spells_voir_linvisible.md)" -Source: (SRD p177) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_seeming.md b/Data/HD/srd_spells_seeming.md index 38a515ab..a5483d96 100644 --- a/Data/HD/srd_spells_seeming.md +++ b/Data/HD/srd_spells_seeming.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Seeming +AltName: '[Apparence trompeuse](hd_spells_apparence_trompeuse.md)' Type: illusion +Level: 5 CastingTime: 1 action Range: 30 feet Components: V, S Duration: 8 hours Classes: Bard, Sorcerer, Wizard +Source: (SRD p177) Id: spells_vo.md#seeming ParentLink: spells_vo.md#spells-srd-p -Name: Seeming ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Apparence trompeuse](hd_spells_apparence_trompeuse.md)' -Source: (SRD p177) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_sending.md b/Data/HD/srd_spells_sending.md index 2d007a3a..a17ba6c5 100644 --- a/Data/HD/srd_spells_sending.md +++ b/Data/HD/srd_spells_sending.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Sending +AltName: '[Envoi de message](hd_spells_envoi_de_message.md)' Type: evocation +Level: 3 CastingTime: 1 action Range: Unlimited Components: V, S, M (a short piece of fine copper wire) Duration: 1 round Classes: Bard, Cleric, Wizard +Source: (SRD p177) Id: spells_vo.md#sending ParentLink: spells_vo.md#spells-srd-p -Name: Sending ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Envoi de message](hd_spells_envoi_de_message.md)' -Source: (SRD p177) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_sequester.md b/Data/HD/srd_spells_sequester.md index 43ea3982..0a6acfd9 100644 --- a/Data/HD/srd_spells_sequester.md +++ b/Data/HD/srd_spells_sequester.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Sequester +AltName: '[Séquestration](hd_spells_sequestration.md)' Type: transmutation +Level: 7 CastingTime: 1 action Range: Touch Components: V, S, M (a powder composed of diamond, emerald, ruby, and sapphire dust worth at least 5,000 gp, which the spell consumes) Duration: Until dispelled Classes: Wizard +Source: (SRD p178) Id: spells_vo.md#sequester ParentLink: spells_vo.md#spells-srd-p -Name: Sequester ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Séquestration](hd_spells_sequestration.md)' -Source: (SRD p178) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_shapechange.md b/Data/HD/srd_spells_shapechange.md index f833010a..9240f0ce 100644 --- a/Data/HD/srd_spells_shapechange.md +++ b/Data/HD/srd_spells_shapechange.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Shapechange +AltName: '[Changement de forme](hd_spells_changement_de_forme.md)' Type: transmutation +Level: 9 CastingTime: 1 action Range: Self Components: V, S, M (a jade circlet worth at least 1,500 gp, which you must place on your head before you cast the spell) Duration: Concentration, up to 1 hour Classes: Druid, Wizard +Source: (SRD p178) Id: spells_vo.md#shapechange ParentLink: spells_vo.md#spells-srd-p -Name: Shapechange ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Changement de forme](hd_spells_changement_de_forme.md)' -Source: (SRD p178) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_shatter.md b/Data/HD/srd_spells_shatter.md index d5332d06..54e4a206 100644 --- a/Data/HD/srd_spells_shatter.md +++ b/Data/HD/srd_spells_shatter.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Shatter +AltName: '[Briser](hd_spells_briser.md)' Type: evocation +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a chip of mica) Duration: Instantaneous Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p178) Id: spells_vo.md#shatter ParentLink: spells_vo.md#spells-srd-p -Name: Shatter ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Briser](hd_spells_briser.md)' -Source: (SRD p178) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_shield.md b/Data/HD/srd_spells_shield.md index 3b357d88..5c65b85b 100644 --- a/Data/HD/srd_spells_shield.md +++ b/Data/HD/srd_spells_shield.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Shield +AltName: '[Bouclier](hd_spells_bouclier.md)' Type: abjuration +Level: 1 CastingTime: 1 reaction, which you take when you are hit by an attack or targeted by the magic missile spell Range: Self Components: V, S Duration: 1 round Classes: Sorcerer, Wizard +Source: (SRD p179) Id: spells_vo.md#shield ParentLink: spells_vo.md#spells-srd-p -Name: Shield ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bouclier](hd_spells_bouclier.md)' -Source: (SRD p179) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_shield_of_faith.md b/Data/HD/srd_spells_shield_of_faith.md index 6915727b..af34632b 100644 --- a/Data/HD/srd_spells_shield_of_faith.md +++ b/Data/HD/srd_spells_shield_of_faith.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Shield of Faith +AltName: '[Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)' Type: abjuration +Level: 1 CastingTime: 1 bonus action Range: 60 feet Components: V, S, M (a small parchment with a bit of holy text written on it) Duration: Concentration, up to 10 minutes Classes: Cleric, Paladin +Source: (SRD p179) Id: spells_vo.md#shield-of-faith ParentLink: spells_vo.md#spells-srd-p -Name: Shield of Faith ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)' -Source: (SRD p179) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_shillelagh.md b/Data/HD/srd_spells_shillelagh.md index 0bcddd20..086764c8 100644 --- a/Data/HD/srd_spells_shillelagh.md +++ b/Data/HD/srd_spells_shillelagh.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Shillelagh +AltName: '[Gourdin magique](hd_spells_gourdin_magique.md)' Type: Transmutation +Level: cantrip CastingTime: 1 bonus action Range: Touch Components: V, S, M (mistletoe, a shamrock leaf, and a club or quarterstaff) Duration: 1 minute Classes: Druid +Source: (SRD p179) Id: spells_vo.md#shillelagh ParentLink: spells_vo.md#spells-srd-p -Name: Shillelagh ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Gourdin magique](hd_spells_gourdin_magique.md)' -Source: (SRD p179) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_shocking_grasp.md b/Data/HD/srd_spells_shocking_grasp.md index c1c00263..6f19677b 100644 --- a/Data/HD/srd_spells_shocking_grasp.md +++ b/Data/HD/srd_spells_shocking_grasp.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Shocking Grasp +AltName: '[Poigne électrique](hd_spells_poigne_electrique.md)' Type: Evocation +Level: cantrip CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p179) Id: spells_vo.md#shocking-grasp ParentLink: spells_vo.md#spells-srd-p -Name: Shocking Grasp ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Poigne électrique](hd_spells_poigne_electrique.md)' -Source: (SRD p179) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_silence.md b/Data/HD/srd_spells_silence.md index 2cea7097..ecc77181 100644 --- a/Data/HD/srd_spells_silence.md +++ b/Data/HD/srd_spells_silence.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Silence +AltName: '[Silence](hd_spells_silence.md)' Type: illusion -Ritual: ritual +Level: 2 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Bard, Cleric, Ranger +Source: (SRD p179) +Ritual: ritual Id: spells_vo.md#silence ParentLink: spells_vo.md#spells-srd-p -Name: Silence ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Silence](hd_spells_silence.md)' -Source: (SRD p179) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_silent_image.md b/Data/HD/srd_spells_silent_image.md index cafdf72d..9df71f57 100644 --- a/Data/HD/srd_spells_silent_image.md +++ b/Data/HD/srd_spells_silent_image.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Silent Image +AltName: '[Image silencieuse](hd_spells_image_silencieuse.md)' Type: illusion +Level: 1 CastingTime: 1 action Range: 60 feet Components: V, S, M (a bit of fleece) Duration: Concentration, up to 10 minutes Classes: Bard, Sorcerer, Wizard +Source: (SRD p179) Id: spells_vo.md#silent-image ParentLink: spells_vo.md#spells-srd-p -Name: Silent Image ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Image silencieuse](hd_spells_image_silencieuse.md)' -Source: (SRD p179) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_simulacrum.md b/Data/HD/srd_spells_simulacrum.md index dd9303c0..7c7dfbc4 100644 --- a/Data/HD/srd_spells_simulacrum.md +++ b/Data/HD/srd_spells_simulacrum.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Simulacrum +AltName: '[Simulacre](hd_spells_simulacre.md)' Type: illusion +Level: 7 CastingTime: 12 hours Range: Touch Components: V, S, M (snow or ice in quantities sufficient to made a life-size copy of the duplicated creature; some hair, fingernail clippings, or other piece of that creature's body placed inside the snow or ice; and powdered ruby worth 1,500 gp, sprinkled over the duplicate and consumed by the spell) Duration: Until dispelled Classes: Wizard +Source: (SRD p180) Id: spells_vo.md#simulacrum ParentLink: spells_vo.md#spells-srd-p -Name: Simulacrum ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Simulacre](hd_spells_simulacre.md)' -Source: (SRD p180) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_sleep.md b/Data/HD/srd_spells_sleep.md index ae63f896..643a8647 100644 --- a/Data/HD/srd_spells_sleep.md +++ b/Data/HD/srd_spells_sleep.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Sleep +AltName: '[Sommeil](hd_spells_sommeil.md)' Type: enchantment +Level: 1 CastingTime: 1 action Range: 90 feet Components: V, S, M (a pinch of fine sand, rose petals, or a cricket) Duration: 1 minute Classes: Bard, Sorcerer, Wizard +Source: (SRD p180) Id: spells_vo.md#sleep ParentLink: spells_vo.md#spells-srd-p -Name: Sleep ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Sommeil](hd_spells_sommeil.md)' -Source: (SRD p180) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_sleet_storm.md b/Data/HD/srd_spells_sleet_storm.md index 1edd6804..68cb3915 100644 --- a/Data/HD/srd_spells_sleet_storm.md +++ b/Data/HD/srd_spells_sleet_storm.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Sleet Storm +AltName: '[Tempête de neige](hd_spells_tempete_de_neige.md)' Type: conjuration +Level: 3 CastingTime: 1 action Range: 150 feet Components: V, S, M (a pinch of dust and a few drops of water) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard +Source: (SRD p180) Id: spells_vo.md#sleet-storm ParentLink: spells_vo.md#spells-srd-p -Name: Sleet Storm ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Tempête de neige](hd_spells_tempete_de_neige.md)' -Source: (SRD p180) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_slow.md b/Data/HD/srd_spells_slow.md index 77d0f5ac..ccc6b19b 100644 --- a/Data/HD/srd_spells_slow.md +++ b/Data/HD/srd_spells_slow.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Slow +AltName: '[Lenteur](hd_spells_lenteur.md)' Type: transmutation +Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S, M (a drop of molasses) Duration: Concentration, up to 1 minute Classes: Sorcerer, Wizard +Source: (SRD p180) Id: spells_vo.md#slow ParentLink: spells_vo.md#spells-srd-p -Name: Slow ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lenteur](hd_spells_lenteur.md)' -Source: (SRD p180) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_spare_the_dying.md b/Data/HD/srd_spells_spare_the_dying.md index 1484b1ac..60cdad74 100644 --- a/Data/HD/srd_spells_spare_the_dying.md +++ b/Data/HD/srd_spells_spare_the_dying.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Spare the Dying +AltName: '[Épargner les mourants](hd_spells_epargner_les_mourants.md)' Type: Necromancy +Level: cantrip CastingTime: 1 action Range: Touch Components: V, S Duration: Instantaneous Classes: Cleric +Source: (SRD p181) Id: spells_vo.md#spare-the-dying ParentLink: spells_vo.md#spells-srd-p -Name: Spare the Dying ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Épargner les mourants](hd_spells_epargner_les_mourants.md)' -Source: (SRD p181) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_speak_with_animals.md b/Data/HD/srd_spells_speak_with_animals.md index b8fa7632..c7f735ca 100644 --- a/Data/HD/srd_spells_speak_with_animals.md +++ b/Data/HD/srd_spells_speak_with_animals.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Speak with Animals +AltName: '[Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)' Type: divination -Ritual: ritual +Level: 1 CastingTime: 1 action Range: Self Components: V, S Duration: 10 minutes Classes: Bard, Druid, Ranger +Source: (SRD p181) +Ritual: ritual Id: spells_vo.md#speak-with-animals ParentLink: spells_vo.md#spells-srd-p -Name: Speak with Animals ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)' -Source: (SRD p181) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_speak_with_dead.md b/Data/HD/srd_spells_speak_with_dead.md index 5fffe4d1..5e1044ff 100644 --- a/Data/HD/srd_spells_speak_with_dead.md +++ b/Data/HD/srd_spells_speak_with_dead.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Speak with Dead +AltName: '[Communication avec les morts](hd_spells_communication_avec_les_morts.md)' Type: necromancy +Level: 3 CastingTime: 1 action Range: 10 feet Components: V, S, M (burning incense) Duration: 10 minutes Classes: Bard, Cleric +Source: (SRD p181) Id: spells_vo.md#speak-with-dead ParentLink: spells_vo.md#spells-srd-p -Name: Speak with Dead ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Communication avec les morts](hd_spells_communication_avec_les_morts.md)' -Source: (SRD p181) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_speak_with_plants.md b/Data/HD/srd_spells_speak_with_plants.md index 05bc89df..a3bd9ce1 100644 --- a/Data/HD/srd_spells_speak_with_plants.md +++ b/Data/HD/srd_spells_speak_with_plants.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Speak with Plants +AltName: '[Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)' Type: transmutation +Level: 3 CastingTime: 1 action Range: Self (30-foot radius) Components: V, S Duration: 10 minutes Classes: Bard, Druid, Ranger +Source: (SRD p181) Id: spells_vo.md#speak-with-plants ParentLink: spells_vo.md#spells-srd-p -Name: Speak with Plants ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)' -Source: (SRD p181) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_spider_climb.md b/Data/HD/srd_spells_spider_climb.md index 464b5386..e08a3520 100644 --- a/Data/HD/srd_spells_spider_climb.md +++ b/Data/HD/srd_spells_spider_climb.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Spider Climb +AltName: "[Pattes d'araignée](hd_spells_pattes_daraignee.md)" Type: transmutation +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a drop of bitumen and a spider) Duration: Concentration, up to 1 hour Classes: Sorcerer, Warlock, Wizard +Source: (SRD p182) Id: spells_vo.md#spider-climb ParentLink: spells_vo.md#spells-srd-p -Name: Spider Climb ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Pattes d'araignée](hd_spells_pattes_daraignee.md)" -Source: (SRD p182) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_spike_growth.md b/Data/HD/srd_spells_spike_growth.md index c8b7f9c0..f22dbf12 100644 --- a/Data/HD/srd_spells_spike_growth.md +++ b/Data/HD/srd_spells_spike_growth.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Spike Growth +AltName: "[Croissance d'épines](hd_spells_croissance_depines.md)" Type: transmutation +Level: 2 CastingTime: 1 action Range: 150 feet Components: V, S, M (seven sharp thorns or seven small twigs, each sharpened to a point) Duration: Concentration, up to 10 minutes Classes: Druid, Ranger +Source: (SRD p182) Id: spells_vo.md#spike-growth ParentLink: spells_vo.md#spells-srd-p -Name: Spike Growth ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Croissance d'épines](hd_spells_croissance_depines.md)" -Source: (SRD p182) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_spirit_guardians.md b/Data/HD/srd_spells_spirit_guardians.md index 920ac3c1..48475425 100644 --- a/Data/HD/srd_spells_spirit_guardians.md +++ b/Data/HD/srd_spells_spirit_guardians.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Spirit Guardians +AltName: '[Esprits gardiens](hd_spells_esprits_gardiens.md)' Type: conjuration +Level: 3 CastingTime: 1 action Range: Self (15-foot radius) Components: V, S, M (a holy symbol) Duration: Concentration, up to 10 minutes Classes: Cleric +Source: (SRD p182) Id: spells_vo.md#spirit-guardians ParentLink: spells_vo.md#spells-srd-p -Name: Spirit Guardians ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Esprits gardiens](hd_spells_esprits_gardiens.md)' -Source: (SRD p182) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_spiritual_weapon.md b/Data/HD/srd_spells_spiritual_weapon.md index 310af0e1..14f9d1a3 100644 --- a/Data/HD/srd_spells_spiritual_weapon.md +++ b/Data/HD/srd_spells_spiritual_weapon.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Spiritual Weapon +AltName: '[Arme spirituelle](hd_spells_arme_spirituelle.md)' Type: evocation +Level: 2 CastingTime: 1 bonus action Range: 60 feet Components: V, S Duration: 1 minute Classes: Cleric +Source: (SRD p182) Id: spells_vo.md#spiritual-weapon ParentLink: spells_vo.md#spells-srd-p -Name: Spiritual Weapon ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Arme spirituelle](hd_spells_arme_spirituelle.md)' -Source: (SRD p182) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_stinking_cloud.md b/Data/HD/srd_spells_stinking_cloud.md index 6c9f2258..b2aeb540 100644 --- a/Data/HD/srd_spells_stinking_cloud.md +++ b/Data/HD/srd_spells_stinking_cloud.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Stinking Cloud +AltName: '[Nuage puant](hd_spells_nuage_puant.md)' Type: conjuration +Level: 3 CastingTime: 1 action Range: 90 feet Components: V, S, M (a rotten egg or several skunk cabbage leaves) Duration: Concentration, up to 1 minute Classes: Bard, Sorcerer, Wizard +Source: (SRD p182) Id: spells_vo.md#stinking-cloud ParentLink: spells_vo.md#spells-srd-p -Name: Stinking Cloud ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Nuage puant](hd_spells_nuage_puant.md)' -Source: (SRD p182) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_stone_shape.md b/Data/HD/srd_spells_stone_shape.md index 4807e05e..4830e594 100644 --- a/Data/HD/srd_spells_stone_shape.md +++ b/Data/HD/srd_spells_stone_shape.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Stone Shape +AltName: '[Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)' Type: transmutation +Level: 4 CastingTime: 1 action Range: Touch Components: V, S, M (soft clay, which must be worked into roughly the desired shape of the stone object) Duration: Instantaneous Classes: Cleric, Druid, Wizard +Source: (SRD p183) Id: spells_vo.md#stone-shape ParentLink: spells_vo.md#spells-srd-p -Name: Stone Shape ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)' -Source: (SRD p183) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_stoneskin.md b/Data/HD/srd_spells_stoneskin.md index ae49e662..424b38ec 100644 --- a/Data/HD/srd_spells_stoneskin.md +++ b/Data/HD/srd_spells_stoneskin.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Stoneskin +AltName: '[Peau de pierre](hd_spells_peau_de_pierre.md)' Type: abjuration +Level: 4 CastingTime: 1 action Range: Touch Components: V, S, M (diamond dust worth 100 gp, which the spell consumes) Duration: Concentration, up to 1 hour Classes: Druid, Ranger, Sorcerer, Wizard +Source: (SRD p183) Id: spells_vo.md#stoneskin ParentLink: spells_vo.md#spells-srd-p -Name: Stoneskin ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Peau de pierre](hd_spells_peau_de_pierre.md)' -Source: (SRD p183) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_storm_of_vengeance.md b/Data/HD/srd_spells_storm_of_vengeance.md index 33e7f076..7a28979a 100644 --- a/Data/HD/srd_spells_storm_of_vengeance.md +++ b/Data/HD/srd_spells_storm_of_vengeance.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Storm of Vengeance +AltName: '[Tempête vengeresse](hd_spells_tempete_vengeresse.md)' Type: conjuration +Level: 9 CastingTime: 1 action Range: Sight Components: V, S Duration: Concentration, up to 1 minute Classes: Druid +Source: (SRD p183) Id: spells_vo.md#storm-of-vengeance ParentLink: spells_vo.md#spells-srd-p -Name: Storm of Vengeance ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Tempête vengeresse](hd_spells_tempete_vengeresse.md)' -Source: (SRD p183) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_suggestion.md b/Data/HD/srd_spells_suggestion.md index f8b865e5..9d2fa974 100644 --- a/Data/HD/srd_spells_suggestion.md +++ b/Data/HD/srd_spells_suggestion.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Suggestion +AltName: '[Suggestion](hd_spells_suggestion.md)' Type: enchantment +Level: 2 CastingTime: 1 action Range: 30 feet Components: V, M (a snake's tongue and either a bit of honeycomb or a drop of sweet oil) Duration: Concentration, up to 8 hours Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p183) Id: spells_vo.md#suggestion ParentLink: spells_vo.md#spells-srd-p -Name: Suggestion ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Suggestion](hd_spells_suggestion.md)' -Source: (SRD p183) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_sunbeam.md b/Data/HD/srd_spells_sunbeam.md index 3f0815de..832f6c4a 100644 --- a/Data/HD/srd_spells_sunbeam.md +++ b/Data/HD/srd_spells_sunbeam.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Sunbeam +AltName: '[Rayon de soleil](hd_spells_rayon_de_soleil.md)' Type: evocation +Level: 6 CastingTime: 1 action Range: Self (60-foot line) Components: V, S, M (a magnifying glass) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard +Source: (SRD p184) Id: spells_vo.md#sunbeam ParentLink: spells_vo.md#spells-srd-p -Name: Sunbeam ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Rayon de soleil](hd_spells_rayon_de_soleil.md)' -Source: (SRD p184) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_sunburst.md b/Data/HD/srd_spells_sunburst.md index 959e1779..8f4cc31e 100644 --- a/Data/HD/srd_spells_sunburst.md +++ b/Data/HD/srd_spells_sunburst.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 8 +Name: Sunburst +AltName: '[Éclat du soleil](hd_spells_eclat_du_soleil.md)' Type: evocation +Level: 8 CastingTime: 1 action Range: 150 feet Components: V, S, M (fire and a piece of sunstone) Duration: Instantaneous Classes: Druid, Sorcerer, Wizard +Source: (SRD p184) Id: spells_vo.md#sunburst ParentLink: spells_vo.md#spells-srd-p -Name: Sunburst ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Éclat du soleil](hd_spells_eclat_du_soleil.md)' -Source: (SRD p184) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_symbol.md b/Data/HD/srd_spells_symbol.md index e57b89d5..c235db37 100644 --- a/Data/HD/srd_spells_symbol.md +++ b/Data/HD/srd_spells_symbol.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Symbol +AltName: '[Symbole](hd_spells_symbole.md)' Type: abjuration +Level: 7 CastingTime: 1 minute Range: Touch Components: V, S, M (mercury, phosphorus, and powdered diamond and opal with a total value of at least 1,000 gp, which the spell consumes) Duration: Until dispelled or triggered Classes: Bard, Cleric, Wizard +Source: (SRD p184) Id: spells_vo.md#symbol ParentLink: spells_vo.md#spells-srd-p -Name: Symbol ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Symbole](hd_spells_symbole.md)' -Source: (SRD p184) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_telekinesis.md b/Data/HD/srd_spells_telekinesis.md index 952bbe31..7f0bbe96 100644 --- a/Data/HD/srd_spells_telekinesis.md +++ b/Data/HD/srd_spells_telekinesis.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Telekinesis +AltName: '[Télékinésie](hd_spells_telekinesie.md)' Type: transmutation +Level: 5 CastingTime: 1 action Range: 60 feet Components: V, S Duration: Concentration, up to 10 minutes Classes: Sorcerer, Wizard +Source: (SRD p185) Id: spells_vo.md#telekinesis ParentLink: spells_vo.md#spells-srd-p -Name: Telekinesis ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Télékinésie](hd_spells_telekinesie.md)' -Source: (SRD p185) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_telepathic_bond.md b/Data/HD/srd_spells_telepathic_bond.md index 68887cb1..ea87f3dc 100644 --- a/Data/HD/srd_spells_telepathic_bond.md +++ b/Data/HD/srd_spells_telepathic_bond.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Telepathic Bond +AltName: '[Lien télépathique](hd_spells_lien_telepathique.md)' Type: divination -Ritual: ritual +Level: 5 CastingTime: 1 action Range: 30 feet Components: V, S, M (pieces of eggshell from two different kinds of creatures) Duration: 1 hour Classes: Wizard +Source: (SRD p185) +Ritual: ritual Id: spells_vo.md#telepathic-bond ParentLink: spells_vo.md#spells-srd-p -Name: Telepathic Bond ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lien télépathique](hd_spells_lien_telepathique.md)' -Source: (SRD p185) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_teleport.md b/Data/HD/srd_spells_teleport.md index 261b8ab3..fd66a62b 100644 --- a/Data/HD/srd_spells_teleport.md +++ b/Data/HD/srd_spells_teleport.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 7 +Name: Teleport +AltName: '[Téléportation](hd_spells_teleportation.md)' Type: conjuration +Level: 7 CastingTime: 1 action Range: 10 feet Components: V Duration: Instantaneous Classes: Bard, Sorcerer, Wizard +Source: (SRD p185) Id: spells_vo.md#teleport ParentLink: spells_vo.md#spells-srd-p -Name: Teleport ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Téléportation](hd_spells_teleportation.md)' -Source: (SRD p185) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_teleportation_circle.md b/Data/HD/srd_spells_teleportation_circle.md index 5dfff202..446af16e 100644 --- a/Data/HD/srd_spells_teleportation_circle.md +++ b/Data/HD/srd_spells_teleportation_circle.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Teleportation Circle +AltName: '[Cercle de téléportation](hd_spells_cercle_de_teleportation.md)' Type: conjuration +Level: 5 CastingTime: 1 minute Range: 10 feet Components: V, M (rare chalks and inks infused with precious gems with 50 gp, which the spell consumes) Duration: 1 round Classes: Bard, Sorcerer, Wizard +Source: (SRD p186) Id: spells_vo.md#teleportation-circle ParentLink: spells_vo.md#spells-srd-p -Name: Teleportation Circle ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Cercle de téléportation](hd_spells_cercle_de_teleportation.md)' -Source: (SRD p186) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_thaumaturgy.md b/Data/HD/srd_spells_thaumaturgy.md index 81a44a3b..f363e77b 100644 --- a/Data/HD/srd_spells_thaumaturgy.md +++ b/Data/HD/srd_spells_thaumaturgy.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Thaumaturgy +AltName: '[Thaumaturgie](hd_spells_thaumaturgie.md)' Type: Transmutation +Level: cantrip CastingTime: 1 action Range: 30 feet Components: V Duration: Up to 1 minute Classes: Cleric +Source: (SRD p187) Id: spells_vo.md#thaumaturgy ParentLink: spells_vo.md#spells-srd-p -Name: Thaumaturgy ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Thaumaturgie](hd_spells_thaumaturgie.md)' -Source: (SRD p187) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_thunderwave.md b/Data/HD/srd_spells_thunderwave.md index 1cb4b084..c13e90b9 100644 --- a/Data/HD/srd_spells_thunderwave.md +++ b/Data/HD/srd_spells_thunderwave.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Thunderwave +AltName: '[Vague tonnante](hd_spells_vague_tonnante.md)' Type: evocation +Level: 1 CastingTime: 1 action Range: Self (15-foot cube) Components: V, S Duration: Instantaneous Classes: Bard, Druid, Sorcerer, Wizard +Source: (SRD p187) Id: spells_vo.md#thunderwave ParentLink: spells_vo.md#spells-srd-p -Name: Thunderwave ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Vague tonnante](hd_spells_vague_tonnante.md)' -Source: (SRD p187) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_time_stop.md b/Data/HD/srd_spells_time_stop.md index 4d2cbc4d..32d17730 100644 --- a/Data/HD/srd_spells_time_stop.md +++ b/Data/HD/srd_spells_time_stop.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Time Stop +AltName: '[Arrêt du temps](hd_spells_arret_du_temps.md)' Type: transmutation +Level: 9 CastingTime: 1 action Range: Self Components: V Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p187) Id: spells_vo.md#time-stop ParentLink: spells_vo.md#spells-srd-p -Name: Time Stop ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Arrêt du temps](hd_spells_arret_du_temps.md)' -Source: (SRD p187) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_tiny_hut.md b/Data/HD/srd_spells_tiny_hut.md index 6020017b..5966455d 100644 --- a/Data/HD/srd_spells_tiny_hut.md +++ b/Data/HD/srd_spells_tiny_hut.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Tiny Hut +AltName: '[Petite hutte](hd_spells_petite_hutte.md)' Type: evocation -Ritual: ritual +Level: 3 CastingTime: 1 minute Range: Self (10-foot-radius hemisphere) Components: V, S, M (a small crystal bead) Duration: 8 hours Classes: Bard, Wizard +Source: (SRD p187) +Ritual: ritual Id: spells_vo.md#tiny-hut ParentLink: spells_vo.md#spells-srd-p -Name: Tiny Hut ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Petite hutte](hd_spells_petite_hutte.md)' -Source: (SRD p187) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_tongues.md b/Data/HD/srd_spells_tongues.md index 27a1c7bc..7a0d4197 100644 --- a/Data/HD/srd_spells_tongues.md +++ b/Data/HD/srd_spells_tongues.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Tongues +AltName: '[Langues](hd_spells_langues.md)' Type: divination +Level: 3 CastingTime: 1 action Range: Touch Components: V, M (a small clay model of a ziggurat) Duration: 1 hour Classes: Bard, Cleric, Sorcerer, Warlock, Wizard +Source: (SRD p187) Id: spells_vo.md#tongues ParentLink: spells_vo.md#spells-srd-p -Name: Tongues ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Langues](hd_spells_langues.md)' -Source: (SRD p187) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_transport_via_plants.md b/Data/HD/srd_spells_transport_via_plants.md index e9a79b94..e07bbc71 100644 --- a/Data/HD/srd_spells_transport_via_plants.md +++ b/Data/HD/srd_spells_transport_via_plants.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Transport via Plants +AltName: '[Transport végétal](hd_spells_transport_vegetal.md)' Type: conjuration +Level: 6 CastingTime: 1 action Range: 10 feet Components: V, S Duration: 1 round Classes: Druid +Source: (SRD p188) Id: spells_vo.md#transport-via-plants ParentLink: spells_vo.md#spells-srd-p -Name: Transport via Plants ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Transport végétal](hd_spells_transport_vegetal.md)' -Source: (SRD p188) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_tree_stride.md b/Data/HD/srd_spells_tree_stride.md index 5867412e..a0694049 100644 --- a/Data/HD/srd_spells_tree_stride.md +++ b/Data/HD/srd_spells_tree_stride.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Tree Stride +AltName: '[Passage par les arbres](hd_spells_passage_par_les_arbres.md)' Type: conjuration +Level: 5 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 1 minute Classes: Druid, Ranger +Source: (SRD p188) Id: spells_vo.md#tree-stride ParentLink: spells_vo.md#spells-srd-p -Name: Tree Stride ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Passage par les arbres](hd_spells_passage_par_les_arbres.md)' -Source: (SRD p188) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_true_polymorph.md b/Data/HD/srd_spells_true_polymorph.md index 7e489268..e7c645c2 100644 --- a/Data/HD/srd_spells_true_polymorph.md +++ b/Data/HD/srd_spells_true_polymorph.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: True Polymorph +AltName: '[Métamorphose suprême](hd_spells_metamorphose_supreme.md)' Type: transmutation +Level: 9 CastingTime: 1 action Range: 30 feet Components: V, S, M (a drop of mercury, a dollop of gum arabic, and a wisp of smoke) Duration: Concentration, up to 1 hour Classes: Bard, Warlock, Wizard +Source: (SRD p188) Id: spells_vo.md#true-polymorph ParentLink: spells_vo.md#spells-srd-p -Name: True Polymorph ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Métamorphose suprême](hd_spells_metamorphose_supreme.md)' -Source: (SRD p188) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_true_resurrection.md b/Data/HD/srd_spells_true_resurrection.md index 632e6733..1b04008f 100644 --- a/Data/HD/srd_spells_true_resurrection.md +++ b/Data/HD/srd_spells_true_resurrection.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: True Resurrection +AltName: '[Résurrection suprême](hd_spells_resurrection_supreme.md)' Type: necromancy +Level: 9 CastingTime: 1 hour Range: Touch Components: V, S, M (a sprinkle of holy water and diamonds worth at least 25,000 gp, which the spell consumes) Duration: Instantaneous Classes: Cleric, Druid +Source: (SRD p189) Id: spells_vo.md#true-resurrection ParentLink: spells_vo.md#spells-srd-p -Name: True Resurrection ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Résurrection suprême](hd_spells_resurrection_supreme.md)' -Source: (SRD p189) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_true_seeing.md b/Data/HD/srd_spells_true_seeing.md index ff8ddc6a..b954d9c7 100644 --- a/Data/HD/srd_spells_true_seeing.md +++ b/Data/HD/srd_spells_true_seeing.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: True Seeing +AltName: '[Vision suprême](hd_spells_vision_supreme.md)' Type: divination +Level: 6 CastingTime: 1 action Range: Touch Components: V, S, M (an ointment for the eyes that costs 25 gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell) Duration: 1 hour Classes: Bard, Cleric, Sorcerer, Warlock, Wizard +Source: (SRD p189) Id: spells_vo.md#true-seeing ParentLink: spells_vo.md#spells-srd-p -Name: True Seeing ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Vision suprême](hd_spells_vision_supreme.md)' -Source: (SRD p189) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_true_strike.md b/Data/HD/srd_spells_true_strike.md index 88522992..fdb832d7 100644 --- a/Data/HD/srd_spells_true_strike.md +++ b/Data/HD/srd_spells_true_strike.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: True Strike +AltName: '[Viser juste](hd_spells_viser_juste.md)' Type: Divination +Level: cantrip CastingTime: 1 action Range: 30 feet Components: S Duration: Concentration, up to 1 round Classes: Bard, Sorcerer, Warlock, Wizard +Source: (SRD p189) Id: spells_vo.md#true-strike ParentLink: spells_vo.md#spells-srd-p -Name: True Strike ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Viser juste](hd_spells_viser_juste.md)' -Source: (SRD p189) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_unseen_servant.md b/Data/HD/srd_spells_unseen_servant.md index e5495081..74164dda 100644 --- a/Data/HD/srd_spells_unseen_servant.md +++ b/Data/HD/srd_spells_unseen_servant.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 1 +Name: Unseen Servant +AltName: '[Serviteur invisible](hd_spells_serviteur_invisible.md)' Type: conjuration -Ritual: ritual +Level: 1 CastingTime: 1 action Range: 60 feet Components: V, S, M (a piece of string and a bit of wood) Duration: 1 hour Classes: Bard, Warlock, Wizard +Source: (SRD p189) +Ritual: ritual Id: spells_vo.md#unseen-servant ParentLink: spells_vo.md#spells-srd-p -Name: Unseen Servant ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Serviteur invisible](hd_spells_serviteur_invisible.md)' -Source: (SRD p189) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_vampiric_touch.md b/Data/HD/srd_spells_vampiric_touch.md index a6c2f9b2..d165ef94 100644 --- a/Data/HD/srd_spells_vampiric_touch.md +++ b/Data/HD/srd_spells_vampiric_touch.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Vampiric Touch +AltName: '[Caresse du vampire](hd_spells_caresse_du_vampire.md)' Type: necromancy +Level: 3 CastingTime: 1 action Range: Self Components: V, S Duration: Concentration, up to 1 minute Classes: Warlock, Wizard +Source: (SRD p189) Id: spells_vo.md#vampiric-touch ParentLink: spells_vo.md#spells-srd-p -Name: Vampiric Touch ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Caresse du vampire](hd_spells_caresse_du_vampire.md)' -Source: (SRD p189) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_vicious_mockery.md b/Data/HD/srd_spells_vicious_mockery.md index 8997f363..ba3a9d6c 100644 --- a/Data/HD/srd_spells_vicious_mockery.md +++ b/Data/HD/srd_spells_vicious_mockery.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: cantrip +Name: Vicious Mockery +AltName: '[Moquerie cruelle](hd_spells_moquerie_cruelle.md)' Type: Enchantment +Level: cantrip CastingTime: 1 action Range: 60 feet Components: V Duration: Instantaneous Classes: Bard +Source: (SRD p189) Id: spells_vo.md#vicious-mockery ParentLink: spells_vo.md#spells-srd-p -Name: Vicious Mockery ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Moquerie cruelle](hd_spells_moquerie_cruelle.md)' -Source: (SRD p189) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_wall_of_fire.md b/Data/HD/srd_spells_wall_of_fire.md index 8f76ee17..7fed5136 100644 --- a/Data/HD/srd_spells_wall_of_fire.md +++ b/Data/HD/srd_spells_wall_of_fire.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 4 +Name: Wall of Fire +AltName: '[Mur de feu](hd_spells_mur_de_feu.md)' Type: evocation +Level: 4 CastingTime: 1 action Range: 120 feet Components: V, S, M (a small piece of phosphorus) Duration: Concentration, up to 1 minute Classes: Druid, Sorcerer, Wizard +Source: (SRD p190) Id: spells_vo.md#wall-of-fire ParentLink: spells_vo.md#spells-srd-p -Name: Wall of Fire ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mur de feu](hd_spells_mur_de_feu.md)' -Source: (SRD p190) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_wall_of_force.md b/Data/HD/srd_spells_wall_of_force.md index e983ed00..0aa3bbdc 100644 --- a/Data/HD/srd_spells_wall_of_force.md +++ b/Data/HD/srd_spells_wall_of_force.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Wall of Force +AltName: '[Mur de force](hd_spells_mur_de_force.md)' Type: evocation +Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S, M (a pinch of powder made by crushing a clear gemstone) Duration: Concentration, up to 10 minutes Classes: Wizard +Source: (SRD p190) Id: spells_vo.md#wall-of-force ParentLink: spells_vo.md#spells-srd-p -Name: Wall of Force ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mur de force](hd_spells_mur_de_force.md)' -Source: (SRD p190) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_wall_of_ice.md b/Data/HD/srd_spells_wall_of_ice.md index 68c030b5..f656f081 100644 --- a/Data/HD/srd_spells_wall_of_ice.md +++ b/Data/HD/srd_spells_wall_of_ice.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Wall of Ice +AltName: '[Mur de glace](hd_spells_mur_de_glace.md)' Type: evocation +Level: 6 CastingTime: 1 action Range: 120 feet Components: V, S, M (a small piece of quartz) Duration: Concentration, up to 10 minutes Classes: Wizard +Source: (SRD p190) Id: spells_vo.md#wall-of-ice ParentLink: spells_vo.md#spells-srd-p -Name: Wall of Ice ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mur de glace](hd_spells_mur_de_glace.md)' -Source: (SRD p190) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_wall_of_stone.md b/Data/HD/srd_spells_wall_of_stone.md index e6c79f14..61804dab 100644 --- a/Data/HD/srd_spells_wall_of_stone.md +++ b/Data/HD/srd_spells_wall_of_stone.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 5 +Name: Wall of Stone +AltName: '[Mur de pierre](hd_spells_mur_de_pierre.md)' Type: evocation +Level: 5 CastingTime: 1 action Range: 120 feet Components: V, S, M (a small block of granite) Duration: Concentration, up to 10 minutes Classes: Druid, Sorcerer, Wizard +Source: (SRD p190) Id: spells_vo.md#wall-of-stone ParentLink: spells_vo.md#spells-srd-p -Name: Wall of Stone ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mur de pierre](hd_spells_mur_de_pierre.md)' -Source: (SRD p190) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_wall_of_thorns.md b/Data/HD/srd_spells_wall_of_thorns.md index 1b80ae72..b40f811d 100644 --- a/Data/HD/srd_spells_wall_of_thorns.md +++ b/Data/HD/srd_spells_wall_of_thorns.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Wall of Thorns +AltName: "[Mur d'épines](hd_spells_mur_depines.md)" Type: conjuration +Level: 6 CastingTime: 1 action Range: 120 feet Components: V, S, M (a handful of thorns) Duration: Concentration, up to 10 minutes Classes: Druid +Source: (SRD p191) Id: spells_vo.md#wall-of-thorns ParentLink: spells_vo.md#spells-srd-p -Name: Wall of Thorns ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Mur d'épines](hd_spells_mur_depines.md)" -Source: (SRD p191) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_warding_bond.md b/Data/HD/srd_spells_warding_bond.md index d11a1609..f6d7f34c 100644 --- a/Data/HD/srd_spells_warding_bond.md +++ b/Data/HD/srd_spells_warding_bond.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Warding Bond +AltName: '[Lien de protection](hd_spells_lien_de_protection.md)' Type: abjuration +Level: 2 CastingTime: 1 action Range: Touch Components: V, S, M (a pair of platinum rings worth at least 50 gp each, which you and the target must wear for the duration) Duration: 1 hour Classes: Cleric +Source: (SRD p191) Id: spells_vo.md#warding-bond ParentLink: spells_vo.md#spells-srd-p -Name: Warding Bond ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Lien de protection](hd_spells_lien_de_protection.md)' -Source: (SRD p191) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_water_breathing.md b/Data/HD/srd_spells_water_breathing.md index a222d889..9140a435 100644 --- a/Data/HD/srd_spells_water_breathing.md +++ b/Data/HD/srd_spells_water_breathing.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Water Breathing +AltName: '[Respiration aquatique](hd_spells_respiration_aquatique.md)' Type: transmutation -Ritual: ritual +Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S, M (a short reed or piece of straw) Duration: 24 hours Classes: Druid, Ranger, Sorcerer, Wizard +Source: (SRD p191) +Ritual: ritual Id: spells_vo.md#water-breathing ParentLink: spells_vo.md#spells-srd-p -Name: Water Breathing ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Respiration aquatique](hd_spells_respiration_aquatique.md)' -Source: (SRD p191) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_water_walk.md b/Data/HD/srd_spells_water_walk.md index c64b35b8..5c29b5c7 100644 --- a/Data/HD/srd_spells_water_walk.md +++ b/Data/HD/srd_spells_water_walk.md @@ -1,21 +1,21 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Water Walk +AltName: "[Marche sur l'eau](hd_spells_marche_sur_leau.md)" Type: transmutation -Ritual: ritual +Level: 3 CastingTime: 1 action Range: 30 feet Components: V, S, M (a piece of cork) Duration: 1 hour Classes: Cleric, Druid, Ranger, Sorcerer +Source: (SRD p191) +Ritual: ritual Id: spells_vo.md#water-walk ParentLink: spells_vo.md#spells-srd-p -Name: Water Walk ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Marche sur l'eau](hd_spells_marche_sur_leau.md)" -Source: (SRD p191) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_web.md b/Data/HD/srd_spells_web.md index 11f5fff8..829cdf4d 100644 --- a/Data/HD/srd_spells_web.md +++ b/Data/HD/srd_spells_web.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Web +AltName: "[Toile d'araignée](hd_spells_toile_daraignee.md)" Type: conjuration +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S, M (a bit of spiderweb) Duration: Concentration, up to 1 hour Classes: Sorcerer, Wizard +Source: (SRD p192) Id: spells_vo.md#web ParentLink: spells_vo.md#spells-srd-p -Name: Web ParentName: Spells (SRD p) NameLevel: 1 -AltName: "[Toile d'araignée](hd_spells_toile_daraignee.md)" -Source: (SRD p192) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_weird.md b/Data/HD/srd_spells_weird.md index 73e57b6a..f7d4eb46 100644 --- a/Data/HD/srd_spells_weird.md +++ b/Data/HD/srd_spells_weird.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Weird +AltName: '[Étrangeté](hd_spells_etrangete.md)' Type: illusion +Level: 9 CastingTime: 1 action Range: 120 feet Components: V, S Duration: Concentration, up to 1 minute Classes: Wizard +Source: (SRD p192) Id: spells_vo.md#weird ParentLink: spells_vo.md#spells-srd-p -Name: Weird ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Étrangeté](hd_spells_etrangete.md)' -Source: (SRD p192) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_wind_walk.md b/Data/HD/srd_spells_wind_walk.md index 58ee9228..3e2c3bc9 100644 --- a/Data/HD/srd_spells_wind_walk.md +++ b/Data/HD/srd_spells_wind_walk.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Wind Walk +AltName: '[Marche sur le vent](hd_spells_marche_sur_le_vent.md)' Type: transmutation +Level: 6 CastingTime: 1 minute Range: 30 feet Components: V, S, M (fire and holy water) Duration: 8 hours Classes: Druid +Source: (SRD p192) Id: spells_vo.md#wind-walk ParentLink: spells_vo.md#spells-srd-p -Name: Wind Walk ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Marche sur le vent](hd_spells_marche_sur_le_vent.md)' -Source: (SRD p192) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_wind_wall.md b/Data/HD/srd_spells_wind_wall.md index 4738fbb0..4d7fc970 100644 --- a/Data/HD/srd_spells_wind_wall.md +++ b/Data/HD/srd_spells_wind_wall.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 3 +Name: Wind Wall +AltName: '[Mur de vent](hd_spells_mur_de_vent.md)' Type: evocation +Level: 3 CastingTime: 1 action Range: 120 feet Components: V, S, M (a tiny fan and a feather of exotic origin) Duration: Concentration, up to 1 minute Classes: Druid, Ranger +Source: (SRD p192) Id: spells_vo.md#wind-wall ParentLink: spells_vo.md#spells-srd-p -Name: Wind Wall ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mur de vent](hd_spells_mur_de_vent.md)' -Source: (SRD p192) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_wish.md b/Data/HD/srd_spells_wish.md index 8d9b1c36..34bff85c 100644 --- a/Data/HD/srd_spells_wish.md +++ b/Data/HD/srd_spells_wish.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 9 +Name: Wish +AltName: '[Souhait](hd_spells_souhait.md)' Type: conjuration +Level: 9 CastingTime: 1 action Range: Self Components: V Duration: Instantaneous Classes: Sorcerer, Wizard +Source: (SRD p193) Id: spells_vo.md#wish ParentLink: spells_vo.md#spells-srd-p -Name: Wish ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Souhait](hd_spells_souhait.md)' -Source: (SRD p193) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_word_of_recall.md b/Data/HD/srd_spells_word_of_recall.md index 3c5f90b3..69c99185 100644 --- a/Data/HD/srd_spells_word_of_recall.md +++ b/Data/HD/srd_spells_word_of_recall.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 6 +Name: Word of Recall +AltName: '[Mot de retour](hd_spells_mot_de_retour.md)' Type: conjuration +Level: 6 CastingTime: 1 action Range: 5 feet Components: V Duration: Instantaneous Classes: Cleric +Source: (SRD p193) Id: spells_vo.md#word-of-recall ParentLink: spells_vo.md#spells-srd-p -Name: Word of Recall ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Mot de retour](hd_spells_mot_de_retour.md)' -Source: (SRD p193) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/HD/srd_spells_zone_of_truth.md b/Data/HD/srd_spells_zone_of_truth.md index 073f387d..bbc74db7 100644 --- a/Data/HD/srd_spells_zone_of_truth.md +++ b/Data/HD/srd_spells_zone_of_truth.md @@ -1,20 +1,20 @@ --- !SpellItem Family: SpellVO -Level: 2 +Name: Zone of Truth +AltName: '[Zone de vérité](hd_spells_zone_de_verite.md)' Type: enchantment +Level: 2 CastingTime: 1 action Range: 60 feet Components: V, S Duration: 10 minutes Classes: Bard, Cleric, Paladin +Source: (SRD p193) Id: spells_vo.md#zone-of-truth ParentLink: spells_vo.md#spells-srd-p -Name: Zone of Truth ParentName: Spells (SRD p) NameLevel: 1 -AltName: '[Zone de vérité](hd_spells_zone_de_verite.md)' -Source: (SRD p193) Attributes: {} --- > [Spells (SRD p)](srd_spells.md) diff --git a/Data/library.db b/Data/library.db index d34fc718..86e75cac 100644 Binary files a/Data/library.db and b/Data/library.db differ