diff --git a/AideDeJeu/AideDeJeu/Models/Conditions/Condition.cs b/AideDeJeu/AideDeJeu/Models/Conditions/Condition.cs index b5d44c9f..f6f736ed 100644 --- a/AideDeJeu/AideDeJeu/Models/Conditions/Condition.cs +++ b/AideDeJeu/AideDeJeu/Models/Conditions/Condition.cs @@ -17,7 +17,7 @@ namespace AideDeJeuLib { return $"# {Name}\n\n" + - $"{NameVO}\n\n" + + $"{AltName}\n\n" + Text; } } @@ -77,7 +77,7 @@ namespace AideDeJeuLib var properties = new List>>() { - new Tuple>("NameVO: ", (m, s) => m.NameVO = s), + new Tuple>("AltName: ", (m, s) => m.AltName = s), }; foreach (var property in properties) diff --git a/AideDeJeu/AideDeJeu/Models/Item.cs b/AideDeJeu/AideDeJeu/Models/Item.cs index 911fd56d..e8b662ab 100644 --- a/AideDeJeu/AideDeJeu/Models/Item.cs +++ b/AideDeJeu/AideDeJeu/Models/Item.cs @@ -7,13 +7,13 @@ namespace AideDeJeuLib public abstract class Item { public string Name { get; set; } - public string NameVO { get; set; } - public string NameVOText + public string AltName { get; set; } + public string AltNameText { get { var regex = new Regex("\\[(?.*?)\\]"); - var match = regex.Match(NameVO ?? string.Empty); + var match = regex.Match(AltName ?? string.Empty); return match.Groups["text"].Value; } } diff --git a/AideDeJeu/AideDeJeu/Models/Monsters/Monster.cs b/AideDeJeu/AideDeJeu/Models/Monsters/Monster.cs index 7f9b22a8..03236bef 100644 --- a/AideDeJeu/AideDeJeu/Models/Monsters/Monster.cs +++ b/AideDeJeu/AideDeJeu/Models/Monsters/Monster.cs @@ -193,7 +193,7 @@ namespace AideDeJeuLib new Tuple>("**Skills** ", (m, s) => m.Skills = s), new Tuple>("**Compétence** ", (m, s) => m.Skills = s), - new Tuple>("NameVO: ", (m, s) => m.NameVO = s), + new Tuple>("AltName: ", (m, s) => m.AltName = s), new Tuple>("", (m,s) => { diff --git a/AideDeJeu/AideDeJeu/Models/Monsters/MonsterHD.cs b/AideDeJeu/AideDeJeu/Models/Monsters/MonsterHD.cs index f914ef09..f09a1fdb 100644 --- a/AideDeJeu/AideDeJeu/Models/Monsters/MonsterHD.cs +++ b/AideDeJeu/AideDeJeu/Models/Monsters/MonsterHD.cs @@ -14,7 +14,7 @@ namespace AideDeJeuLib { return $"# {Name}\n" + - $"{NameVO}\n" + + $"{AltName}\n" + $"{Type} de taille {Size}, {Alignment}\n" + $"**Classe d'armure** {ArmorClass}\n" + $"**Points de vie** {HitPoints}\n" + diff --git a/AideDeJeu/AideDeJeu/Models/Monsters/MonsterVO.cs b/AideDeJeu/AideDeJeu/Models/Monsters/MonsterVO.cs index ebe0b7c2..fd2144b3 100644 --- a/AideDeJeu/AideDeJeu/Models/Monsters/MonsterVO.cs +++ b/AideDeJeu/AideDeJeu/Models/Monsters/MonsterVO.cs @@ -14,7 +14,7 @@ namespace AideDeJeuLib { return $"# {Name}\n" + - $"{NameVO}\n" + + $"{AltName}\n" + $"{Size} {Type}, {Alignment}\n" + $"**Armor Class** {ArmorClass}\n" + $"**Hit Points** {HitPoints}\n" + diff --git a/AideDeJeu/AideDeJeu/Models/Spells/Spell.cs b/AideDeJeu/AideDeJeu/Models/Spells/Spell.cs index 06482a83..39995d8f 100644 --- a/AideDeJeu/AideDeJeu/Models/Spells/Spell.cs +++ b/AideDeJeu/AideDeJeu/Models/Spells/Spell.cs @@ -34,7 +34,6 @@ namespace AideDeJeuLib if (block is Markdig.Syntax.HeadingBlock) { var headingBlock = block as Markdig.Syntax.HeadingBlock; - //DumpHeadingBlock(headingBlock); if (headingBlock.HeaderChar == '#' && headingBlock.Level == 1) { if (this.Name != null) @@ -42,7 +41,6 @@ namespace AideDeJeuLib return; } this.Name = headingBlock.Inline.ToMarkdownString(); - //Console.WriteLine(spell.Name); } } if (block is Markdig.Syntax.ParagraphBlock) @@ -54,40 +52,29 @@ namespace AideDeJeuLib var paragraphBlock = block as Markdig.Syntax.ParagraphBlock; this.DescriptionHtml += paragraphBlock.ToMarkdownString() + "\n"; - ////DumpParagraphBlock(paragraphBlock); - //Console.WriteLine(paragraphBlock.IsBreakable); - //spell.DescriptionHtml += paragraphBlock.Inline.ToContainerString(); - //if(paragraphBlock.IsBreakable) - //{ - // spell.DescriptionHtml += "\n"; - //} } if (block is Markdig.Syntax.ListBlock) { var listBlock = block as Markdig.Syntax.ListBlock; - //DumpListBlock(listBlock); if (listBlock.BulletType == '-') { this.Source = ""; foreach (var inblock in listBlock) { - //DumpBlock(inblock); var regex = new Regex("(?.*?): (?.*)"); if (inblock is Markdig.Syntax.ListItemBlock) { var listItemBlock = inblock as Markdig.Syntax.ListItemBlock; foreach (var ininblock in listItemBlock) { - //DumpBlock(ininblock); if (ininblock is Markdig.Syntax.ParagraphBlock) { var paragraphBlock = ininblock as Markdig.Syntax.ParagraphBlock; - //DumpParagraphBlock(paragraphBlock); var str = paragraphBlock.Inline.ToMarkdownString(); var properties = new List>>() { - new Tuple>("NameVO: ", (m, s) => m.NameVO = s), + new Tuple>("AltName: ", (m, s) => m.AltName = s), new Tuple>("CastingTime: ", (m, s) => m.CastingTime = s), new Tuple>("Components: ", (m, s) => m.Components = s), new Tuple>("Duration: ", (m, s) => m.Duration = s), @@ -122,7 +109,6 @@ namespace AideDeJeuLib var listItemBlock = inblock as Markdig.Syntax.ListItemBlock; foreach (var ininblock in listItemBlock) { - //DumpBlock(ininblock); if (ininblock is Markdig.Syntax.ParagraphBlock) { var paragraphBlock = ininblock as Markdig.Syntax.ParagraphBlock; diff --git a/AideDeJeu/AideDeJeu/Models/Spells/SpellHD.cs b/AideDeJeu/AideDeJeu/Models/Spells/SpellHD.cs index 53322496..f8087b57 100644 --- a/AideDeJeu/AideDeJeu/Models/Spells/SpellHD.cs +++ b/AideDeJeu/AideDeJeu/Models/Spells/SpellHD.cs @@ -57,7 +57,7 @@ namespace AideDeJeuLib { return $"# {Name}\n" + - $"{NameVO}\n" + + $"{AltName}\n" + $"_{LevelType}_\n" + $"**Temps d'incantation :** {CastingTime}\n" + $"**Portée :** {Range}\n" + diff --git a/AideDeJeu/AideDeJeu/Models/Spells/SpellVO.cs b/AideDeJeu/AideDeJeu/Models/Spells/SpellVO.cs index 0dfa92e0..2daaae9a 100644 --- a/AideDeJeu/AideDeJeu/Models/Spells/SpellVO.cs +++ b/AideDeJeu/AideDeJeu/Models/Spells/SpellVO.cs @@ -37,7 +37,7 @@ namespace AideDeJeuLib { return $"# {Name}\n" + - $"{NameVO}\n" + + $"{AltName}\n" + $"_{LevelType}_\n" + $"**Casting Time :** {CastingTime}\n" + $"**Range :** {Range}\n" + diff --git a/AideDeJeu/AideDeJeu/Tools/Converters.cs b/AideDeJeu/AideDeJeu/Tools/Converters.cs index 66b532a7..35e5849e 100644 --- a/AideDeJeu/AideDeJeu/Tools/Converters.cs +++ b/AideDeJeu/AideDeJeu/Tools/Converters.cs @@ -33,43 +33,4 @@ namespace AideDeJeu.Tools return null; } } - - - public class ItemSourceTypeConverter : IValueConverter - { - public T SpellVO { get; set; } - public T SpellHD { get; set; } - public T MonsterVO { get; set; } - public T MonsterHD { get; set; } - - public object Convert(object value, Type targetType, object parameter, CultureInfo culture) - { - var itemType = value as ItemSourceType?; - if (itemType == ItemSourceType.SpellVO) - { - return SpellVO; - } - if (itemType == ItemSourceType.SpellHD) - { - return SpellHD; - } - if (itemType == ItemSourceType.MonsterVO) - { - return MonsterVO; - } - if (itemType == ItemSourceType.MonsterHD) - { - return MonsterHD; - } - return null; - } - - public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) - { - return null; - } - } - - public class ItemSourceTypeToStringConverter : ItemSourceTypeConverter { } - } diff --git a/AideDeJeu/AideDeJeu/ViewModels/FilterViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/FilterViewModel.cs index 6c1f1f88..21180fa6 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/FilterViewModel.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/FilterViewModel.cs @@ -128,7 +128,7 @@ namespace AideDeJeu.ViewModels return ( (Helpers.RemoveDiacritics(spell.Name).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) || - (Helpers.RemoveDiacritics(spell.NameVOText ?? string.Empty).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) + (Helpers.RemoveDiacritics(spell.AltNameText ?? string.Empty).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) ); }).AsEnumerable(); }, token); @@ -185,7 +185,7 @@ namespace AideDeJeu.ViewModels spell.Rituel.Contains(rituel) && ( (Helpers.RemoveDiacritics(spell.Name).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) || - (Helpers.RemoveDiacritics(spell.NameVOText ?? string.Empty).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) + (Helpers.RemoveDiacritics(spell.AltNameText ?? string.Empty).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) ); }).OrderBy(spell => spell.Name) .AsEnumerable(); @@ -435,7 +435,7 @@ namespace AideDeJeu.ViewModels powerComparer.Compare(monster.Challenge, maxPower) <= 0 && ( (Helpers.RemoveDiacritics(monster.Name).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) || - (Helpers.RemoveDiacritics(monster.NameVOText ?? string.Empty).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) + (Helpers.RemoveDiacritics(monster.AltNameText ?? string.Empty).ToLower().Contains(Helpers.RemoveDiacritics(SearchText ?? string.Empty).ToLower())) ); }) .OrderBy(monster => monster.Name) diff --git a/AideDeJeu/AideDeJeu/ViewModels/ItemsViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/ItemsViewModel.cs index 26c75373..f5765b8d 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/ItemsViewModel.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/ItemsViewModel.cs @@ -31,72 +31,6 @@ namespace AideDeJeu.ViewModels { await Main.Navigator.GotoItemDetailPageAsync(item); } - //protected ItemSourceType ItemSourceType; - - - //private IEnumerable _AllItems = null; - //public async Task> GetAllItemsAsync() - //{ - // if (_AllItems == null) - // { - // string resourceName = null; - // switch (ItemSourceType) - // { - // case ItemSourceType.MonsterVO: - // { - // resourceName = "AideDeJeu.Data.monsters_vo.md"; - // var md = await Tools.Helpers.GetResourceStringAsync(resourceName); - // _AllItems = Tools.MarkdownExtensions.ToItem(md) as IEnumerable; - // //_AllItems = Tools.MarkdownExtensions.MarkdownToMonsters(md); - // } - // break; - // case ItemSourceType.MonsterHD: - // { - // resourceName = "AideDeJeu.Data.monsters_hd.md"; - // //var md = await Tools.Helpers.GetStringFromUrl("https://raw.githubusercontent.com/Nioux/AideDeJeu/master/Data/monsters_hd.md"); - // var md = await Tools.Helpers.GetResourceStringAsync(resourceName); - // _AllItems = Tools.MarkdownExtensions.ToItem(md) as IEnumerable; - // //_AllItems = Tools.MarkdownExtensions.MarkdownToMonsters(md); - // } - // break; - // case ItemSourceType.SpellVO: - // { - // resourceName = "AideDeJeu.Data.spells_vo.md"; - // var md = await Tools.Helpers.GetResourceStringAsync(resourceName); - // _AllItems = Tools.MarkdownExtensions.ToItem(md) as IEnumerable; - // //_AllItems = Tools.MarkdownExtensions.MarkdownToSpells(md); - // } - // break; - // case ItemSourceType.SpellHD: - // { - // resourceName = "AideDeJeu.Data.spells_hd.md"; - // //var md = await Tools.Helpers.GetStringFromUrl("https://raw.githubusercontent.com/Nioux/AideDeJeu/master/Data/spells_hd.md"); - // var md = await Tools.Helpers.GetResourceStringAsync(resourceName); - // _AllItems = Tools.MarkdownExtensions.ToItem(md) as IEnumerable; - // //_AllItems = Tools.MarkdownExtensions.MarkdownToSpells(md); - // } - // break; - // case ItemSourceType.ConditionVO: - // { - // resourceName = "AideDeJeu.Data.conditions_vo.md"; - // var md = await Tools.Helpers.GetResourceStringAsync(resourceName); - // _AllItems = Tools.MarkdownExtensions.ToItem(md) as IEnumerable; - // //_AllItems = Tools.MarkdownExtensions.MarkdownToConditions(md); - // } - // break; - // case ItemSourceType.ConditionHD: - // { - // resourceName = "AideDeJeu.Data.conditions_hd.md"; - // //var md = await Tools.Helpers.GetStringFromUrl("https://raw.githubusercontent.com/Nioux/AideDeJeu/master/Data/spells_hd.md"); - // var md = await Tools.Helpers.GetResourceStringAsync(resourceName); - // _AllItems = Tools.MarkdownExtensions.ToItem(md) as IEnumerable; - // //_AllItems = Tools.MarkdownExtensions.MarkdownToConditions(md); - // } - // break; - // } - // } - // return _AllItems; - //} private ItemSourceType _ItemSourceType = ItemSourceType.SpellHD; public ItemSourceType ItemSourceType @@ -108,7 +42,6 @@ namespace AideDeJeu.ViewModels set { SetProperty(ref _ItemSourceType, value); - //LoadItemsCommand.Execute(null); OnPropertyChanged(nameof(Items)); } } diff --git a/AideDeJeu/AideDeJeu/ViewModels/MainViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/MainViewModel.cs index 25373191..4d0b94ae 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/MainViewModel.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/MainViewModel.cs @@ -87,20 +87,6 @@ namespace AideDeJeu.ViewModels new KeyValuePair(ItemSourceType.ConditionVO, "Conditions (VO)"), }; - private int _ItemsSourcesIndex = 0; - public int ItemsSourcesIndex - { - get - { - return _ItemsSourcesIndex; - } - set - { - SetProperty(ref _ItemsSourcesIndex, value); - //ItemSourceType = ItemsSources[value].Key; - } - } - public Dictionary> AllItemsViewModel = new Dictionary>() { { ItemSourceType.SpellVO, () => new ItemsViewModel(ItemSourceType.SpellVO) }, @@ -131,7 +117,6 @@ namespace AideDeJeu.ViewModels return AllFiltersViewModel[itemSourceType].Invoke(); } - // Yan : pas besoin d'ObservableCollection, on ne modifie jamais la liste item par item public IEnumerable _Items = new List(); public IEnumerable Items { @@ -158,19 +143,10 @@ namespace AideDeJeu.ViewModels public MainViewModel() { - //LoadItemsCommand = new Command(async () => - // { - // await GetItemsViewModel(ItemSourceType).ExecuteLoadItemsCommandAsync(); - // }); GotoItemCommand = new Command(async (item) => { await Navigator.GotoItemDetailPageAsync(item); - //await GetItemsViewModel(ItemSourceType).ExecuteGotoItemCommandAsync(item); }); - //SwitchToSpellsHD = new Command(() => ItemSourceType = ItemSourceType.SpellHD); - //SwitchToMonstersHD = new Command(() => ItemSourceType = ItemSourceType.MonsterHD); - //SwitchToSpellsVO = new Command(() => ItemSourceType = ItemSourceType.SpellVO); - //SwitchToMonstersVO = new Command(() => ItemSourceType = ItemSourceType.MonsterVO); AboutCommand = new Command(async () => await Main.Navigator.GotoAboutPageAsync()); } diff --git a/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs b/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs index 0225513f..e1d5ad4d 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs @@ -36,10 +36,9 @@ namespace AideDeJeu.ViewModels public async Task GotoItemsPageAsync(ItemsViewModel itemsVM) { - //if (item == null) - // return; + if (itemsVM == null) + return; - //var vm = new ItemDetailViewModel(item); await Navigation.PushAsync(new ItemsPage(itemsVM)); } diff --git a/AideDeJeu/AideDeJeu/Views/ItemDetailPage.xaml.cs b/AideDeJeu/AideDeJeu/Views/ItemDetailPage.xaml.cs index 8e41e38b..26274bcb 100644 --- a/AideDeJeu/AideDeJeu/Views/ItemDetailPage.xaml.cs +++ b/AideDeJeu/AideDeJeu/Views/ItemDetailPage.xaml.cs @@ -29,7 +29,7 @@ namespace AideDeJeu.Views var item = new MonsterHD { Name = "", - NameVO = "", + AltName = "", //Description = "This is an item description." }; diff --git a/AideDeJeu/AideDeJeu/Views/ItemsPage.xaml b/AideDeJeu/AideDeJeu/Views/ItemsPage.xaml index 033746bc..2c348d57 100644 --- a/AideDeJeu/AideDeJeu/Views/ItemsPage.xaml +++ b/AideDeJeu/AideDeJeu/Views/ItemsPage.xaml @@ -58,7 +58,7 @@ diff --git a/Data/conditions_hd.md b/Data/conditions_hd.md index 8d6d915b..9567015b 100644 --- a/Data/conditions_hd.md +++ b/Data/conditions_hd.md @@ -7,7 +7,7 @@ # États spéciaux -- NameVO: [Conditions](conditions_vo.md#conditions) +- AltName: [Conditions](conditions_vo.md#conditions) Les états modifient les capacités d'une créature de diverses manières et résultent d'un sort, d'une aptitude de classe, d'une attaque de monstre ou d'un autre effet. La plupart des états ont un effet négatif, comme lorsque vous êtes [aveuglé](conditions_hd.md#aveuglé), mais quelques-uns confèrent un bénéfice, comme d'être [invisible](conditions_hd.md#invisible). @@ -22,7 +22,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # À terre -- NameVO: [Prone](conditions_vo.md#prone) +- AltName: [Prone](conditions_vo.md#prone) * Une créature à terre n'a plus l'option que de ramper pour se déplacer, à moins de se relever et de mettre ainsi un terme à son état. @@ -35,7 +35,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Assourdi -- NameVO: [Deafened](conditions_vo.md#deafened) +- AltName: [Deafened](conditions_vo.md#deafened) * Une créature assourdie n'entend plus rien et rate automatiquement tous les tests de caractéristique faisant intervenir des capacités auditives. @@ -44,7 +44,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Aveuglé -- NameVO: [Blinded](conditions_vo.md#blinded) +- AltName: [Blinded](conditions_vo.md#blinded) * Une créature aveuglée ne voit plus rien et rate automatiquement tout test de caractéristique qui requiert la vue. @@ -55,7 +55,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Charmé -- NameVO: [Charmed](conditions_vo.md#charmed) +- AltName: [Charmed](conditions_vo.md#charmed) * Une créature charmée se trouve dans l'incapacité d'attaquer l'individu qui l'a charmée ou de le cibler avec une capacité ou un effet magique néfaste. @@ -66,7 +66,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Empoigné -- NameVO: [Grappled](conditions_vo.md#grappled) +- AltName: [Grappled](conditions_vo.md#grappled) * La vitesse d'une créature empoignée devient 0 et elle ne peut plus bénéficier de ses éventuels bonus de vitesse. @@ -79,7 +79,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Empoisonné -- NameVO: [Poisoned](conditions_vo.md#poisoned) +- AltName: [Poisoned](conditions_vo.md#poisoned) * Une créature empoisonnée souffre d'un désavantage lors de ses jets d'attaque et de ses tests de caractéristique. @@ -88,7 +88,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Entravé -- NameVO: [Restrained](conditions_vo.md#restrained) +- AltName: [Restrained](conditions_vo.md#restrained) * La vitesse de la créature entravée tombe à 0 et elle ne peut plus bénéficier de ses éventuels bonus de vitesse. @@ -101,7 +101,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Étourdi -- NameVO: [Stunned](conditions_vo.md#stunned) +- AltName: [Stunned](conditions_vo.md#stunned) * Une créature étourdie est [neutralisée](conditions_hd.md#neutralisé) (voir l'état), incapable de se déplacer et parle en balbutiant. @@ -114,7 +114,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Inconscient -- NameVO: [Unconscious](conditions_vo.md#unconscious) +- AltName: [Unconscious](conditions_vo.md#unconscious) * Une créature inconsciente est [neutralisée](conditions_hd.md#neutralisé) (voir l'état), incapable de se déplacer et de parler et n'a pas conscience de ce qui l'entoure. @@ -133,7 +133,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Invisible -- NameVO: [Invisible](conditions_vo.md#invisible) +- AltName: [Invisible](conditions_vo.md#invisible) * Il est impossible de voir une créature invisible à moins de recourir à la magie ou à un sens spécial. Quand il s'agit de se cacher, la créature est considérée comme en situation de visibilité nulle. Il est possible de détecter l'endroit où se trouve la créature si elle émet des sons ou laisse des traces. @@ -144,7 +144,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Neutralisé -- NameVO: [Incapacitated](conditions_vo.md#incapacitated) +- AltName: [Incapacitated](conditions_vo.md#incapacitated) * Une créature neutralisée est incapable d'effectuer une action ou une réaction. @@ -153,7 +153,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Paralysé -- NameVO: [Paralyzed](conditions_vo.md#paralyzed) +- AltName: [Paralyzed](conditions_vo.md#paralyzed) * Une créature paralysée est [neutralisée](conditions_hd.md#neutralisé) (voir l'état) et ne peut ni parler ni se déplacer. @@ -168,7 +168,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Pétrifié -- NameVO: [Petrified](conditions_vo.md#petrified) +- AltName: [Petrified](conditions_vo.md#petrified) * Une créature pétrifiée est transformée en substance solide inanimée (généralement en pierre), de même que tous les objets non-magiques qu'elle transporte. Le poids de la créature est multiplié par dix et elle ne vieillit plus. @@ -187,7 +187,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Terrorisé -- NameVO: [Frightened](conditions_vo.md#frightened) +- AltName: [Frightened](conditions_vo.md#frightened) * Une créature terrorisée subit un désavantage lors de ses tests de caractéristique et de ses jets d'attaque tant que la source de sa frayeur se trouve dans son champ de vision. @@ -198,7 +198,7 @@ Les définitions suivantes expliquent les conséquences de chaque état spécial # Fatigue et épuisement -- NameVO: [Exhaustion](conditions_vo.md#exhaustion) +- AltName: [Exhaustion](conditions_vo.md#exhaustion) Certaines aptitudes et certains dangers environnementaux, comme la faim et les effets à long terme des températures glaciales et étouffantes, provoquent un état particulier appelé l’épuisement. Celui-ci se divise en six niveaux. Un effet peut donner un ou plusieurs niveaux d’épuisement, comme indiqué dans la description de chaque effet. diff --git a/Data/conditions_vo.md b/Data/conditions_vo.md index 4a0695f0..d4b8cd50 100644 --- a/Data/conditions_vo.md +++ b/Data/conditions_vo.md @@ -7,7 +7,7 @@ # Conditions -- NameVO: [États spéciaux](conditions_hd.md#États-spéciaux) +- AltName: [États spéciaux](conditions_hd.md#États-spéciaux) Conditions alter a creature's capabilities in a variety of ways and can arise as a result of a spell, a class feature, a monsters attack, or other effect. Most conditions, such as [blinded](conditions_vo.md#blinded), are impairments, but a few, such as invisible, can be advantageous. @@ -22,7 +22,7 @@ The following definitions specify what happens to a creature while it is subject # Blinded -- NameVO: [Aveuglé](conditions_hd.md#aveuglé) +- AltName: [Aveuglé](conditions_hd.md#aveuglé) * A blinded creature can't see and automatically fails any ability check that requires sight. @@ -33,7 +33,7 @@ The following definitions specify what happens to a creature while it is subject # Charmed -- NameVO: [Charmé](conditions_hd.md#charmé) +- AltName: [Charmé](conditions_hd.md#charmé) * A charmed creature can't attack the charmer or target the charmer with harmful abilities or magical effects. @@ -44,7 +44,7 @@ The following definitions specify what happens to a creature while it is subject # Deafened -- NameVO: [Assourdi](conditions_hd.md#assourdi) +- AltName: [Assourdi](conditions_hd.md#assourdi) * A deafened creature can't hear and automatically fails any ability check that requires hearing. @@ -53,7 +53,7 @@ The following definitions specify what happens to a creature while it is subject # Frightened -- NameVO: [Terrorisé](conditions_hd.md#terrorisé) +- AltName: [Terrorisé](conditions_hd.md#terrorisé) * A frightened creature has disadvantage on ability checks and attack rolls while the source of its fear is within line of sight. @@ -64,7 +64,7 @@ The following definitions specify what happens to a creature while it is subject # Grappled -- NameVO: [Empoigné](conditions_hd.md#empoigné) +- AltName: [Empoigné](conditions_hd.md#empoigné) * A grappled creature's speed becomes 0, and it can't benefit from any bonus to its speed. @@ -77,7 +77,7 @@ The following definitions specify what happens to a creature while it is subject # Incapacitated -- NameVO: [Neutralisé](conditions_hd.md#neutralisé) +- AltName: [Neutralisé](conditions_hd.md#neutralisé) * An incapacitated creature can't take actions or reactions. @@ -86,7 +86,7 @@ The following definitions specify what happens to a creature while it is subject # Invisible -- NameVO: [Invisible](conditions_hd.md#invisible) +- AltName: [Invisible](conditions_hd.md#invisible) * An invisible creature is impossible to see without the aid of magic or a special sense. For the purpose of hiding, the creature is heavily obscured. The creature's location can be detected by any noise it makes or any tracks it leaves. @@ -97,7 +97,7 @@ The following definitions specify what happens to a creature while it is subject # Paralyzed -- NameVO: [Paralysé](conditions_hd.md#paralysé) +- AltName: [Paralysé](conditions_hd.md#paralysé) * A paralyzed creature is [incapacitated](conditions_vo.md#incapacitated) (see the condition) and can't move or speak. @@ -112,7 +112,7 @@ The following definitions specify what happens to a creature while it is subject # Petrified -- NameVO: [Pétrifié](conditions_hd.md#pétrifié) +- AltName: [Pétrifié](conditions_hd.md#pétrifié) * A petrified creature is transformed, along with any nonmagical object it is wearing or carrying, into a solid inanimate substance (usually stone). Its weight increases by a factor of ten, and it ceases aging. @@ -131,7 +131,7 @@ The following definitions specify what happens to a creature while it is subject # Poisoned -- NameVO: [Empoisonné](conditions_hd.md#empoisonné) +- AltName: [Empoisonné](conditions_hd.md#empoisonné) * A poisoned creature has disadvantage on attack rolls and ability checks. @@ -140,7 +140,7 @@ The following definitions specify what happens to a creature while it is subject # Prone -- NameVO: [À terre](conditions_hd.md#À-terre) +- AltName: [À terre](conditions_hd.md#À-terre) * A prone creature's only movement option is to crawl, unless it stands up and thereby ends the condition. @@ -153,7 +153,7 @@ The following definitions specify what happens to a creature while it is subject # Restrained -- NameVO: [Entravé](conditions_hd.md#entravé) +- AltName: [Entravé](conditions_hd.md#entravé) * A restrained creature's speed becomes 0, and it can't benefit from any bonus to its speed. @@ -166,7 +166,7 @@ The following definitions specify what happens to a creature while it is subject # Stunned -- NameVO: [Étourdi](conditions_hd.md#Étourdi) +- AltName: [Étourdi](conditions_hd.md#Étourdi) * A stunned creature is [incapacitated](conditions_vo.md#incapacitated) (see the condition), can't move, and can speak only falteringly. @@ -179,7 +179,7 @@ The following definitions specify what happens to a creature while it is subject # Unconscious -- NameVO: [Inconscient](conditions_hd.md#inconscient) +- AltName: [Inconscient](conditions_hd.md#inconscient) * An unconscious creature is [incapacitated](conditions_vo.md#incapacitated) (see the condition), can't move or speak, and is unaware of its surroundings @@ -196,7 +196,7 @@ The following definitions specify what happens to a creature while it is subject # Exhaustion -- NameVO: [Fatigue et épuisement](conditions_hd.md#fatigue-et-épuisement) +- AltName: [Fatigue et épuisement](conditions_hd.md#fatigue-et-épuisement) Some special abilities and environmental hazards, such as starvation and the long-term effects of freezing or scorching temperatures, can lead to a special condition called exhaustion. Exhaustion is measured in six levels. An effect can give a creature one or more levels of exhaustion, as specified in the effect's description. diff --git a/Data/monsters_hd.md b/Data/monsters_hd.md index 89b44ff8..1c17c211 100644 --- a/Data/monsters_hd.md +++ b/Data/monsters_hd.md @@ -2,13 +2,13 @@ [][Items] # Créatures (H&D) -- NameVO: [Monsters](monsters_vo.md) +- AltName: [Monsters](monsters_vo.md) [][MonsterHD] # Aboleth -- NameVO: [Aboleth](monsters_vo.md#aboleth) +- AltName: [Aboleth](monsters_vo.md#aboleth) - Aberration de taille G, Loyal Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 135 (18d10+36) @@ -110,7 +110,7 @@ Chaque fois que la cible [charmée] subit des dégâts, elle peut retenter le je [][MonsterHD] # Âme-en-peine -- NameVO: [Wraith](monsters_vo.md#wraith) +- AltName: [Wraith](monsters_vo.md#wraith) - Mort-vivant de taille M, Neutre Mauvais - **Classe d'armure** 13 - **Points de vie** 67 (9d8+27) @@ -183,7 +183,7 @@ _Touché :_ 5 (1d4+3) dégâts tranchants. [][MonsterHD] # Déva -- NameVO: [Deva](monsters_vo.md#deva) +- AltName: [Deva](monsters_vo.md#deva) - Céleste de taille M, Loyal Bon - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 136 (16d8+64) @@ -231,7 +231,7 @@ _Touché :_ 7 (1d6+4) dégâts contondants plus 18 (4d8) dégâts radiants. [][MonsterHD] # Planétar -- NameVO: [Planetar](monsters_vo.md#planetar) +- AltName: [Planetar](monsters_vo.md#planetar) - Céleste de taille G, Loyal Bon - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 200 (16d10+112) @@ -279,7 +279,7 @@ _Touché :_ 21 (4d6+7) dégâts tranchants plus 22 (5d8) dégâts radiants. [][MonsterHD] # Solar -- NameVO: [Solar](monsters_vo.md#solar) +- AltName: [Solar](monsters_vo.md#solar) - Céleste de taille G, Loyal Bon - **Classe d'armure** 21 (armure naturelle) - **Points de vie** 243 (18d10+144) @@ -346,7 +346,7 @@ Le solar peut effectuer 3 actions légendaires qu'il choisit parmi celles décri [][MonsterHD] # Ankheg -- NameVO: [Ankheg](monsters_vo.md#ankheg) +- AltName: [Ankheg](monsters_vo.md#ankheg) - Créature monstrueuse de taille G, non-alignée - **Classe d'armure** 14 (armure naturelle), 11 quand il est [à terre] - **Points de vie** 39 (6d10+6) @@ -372,7 +372,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants plus 3 (1d6) dégâts d'acide. Si la [][MonsterHD] # Azer -- NameVO: [Azer](monsters_vo.md#azer) +- AltName: [Azer](monsters_vo.md#azer) - Élémentaire de taille M, Loyal Neutre - **Classe d'armure** 17 (armure naturelle, bouclier) - **Points de vie** 39 (6d8+12) @@ -407,7 +407,7 @@ _Touché :_ 7 (1d8+3) dégâts contondants ou 8 (1d10+3) dégâts contondants s' [][MonsterHD] # Babélien -- NameVO: [Gibbering Mouther](monsters_vo.md#gibbering-mouther) +- AltName: [Gibbering Mouther](monsters_vo.md#gibbering-mouther) - Aberration de taille M, neutre - **Classe d'armure** 9 - **Points de vie** 67 (9d8+27) @@ -442,7 +442,7 @@ _Touché :_ 17 (5d6) dégâts perforants. Si la cible est de taille M ou plus pe [][MonsterHD] # Basilic -- NameVO: [Basilisk](monsters_vo.md#basilisk) +- AltName: [Basilisk](monsters_vo.md#basilisk) - Créature monstrueuse de taille M, non-alignée - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 52 (8d8+16) @@ -474,7 +474,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants plus 7 (2d6) dégâts de poison. [][MonsterHD] # Béhir -- NameVO: [Behir](monsters_vo.md#behir) +- AltName: [Behir](monsters_vo.md#behir) - Créature monstrueuse de taille TG, Neutre Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 168 (16d12+64) @@ -512,7 +512,7 @@ _Touché :_ 22 (3d10+6) dégâts perforants. [][MonsterHD] # Bulette -- NameVO: [Bulette](monsters_vo.md#bulette) +- AltName: [Bulette](monsters_vo.md#bulette) - Créature monstrueuse de taille G, non-alignée - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 94 (9d10+45) @@ -545,7 +545,7 @@ Chacune de ces créatures doit réussir un jet de sauvegarde de Force ou de Dext [][MonsterHD] # Centaure -- NameVO: [Centaur](monsters_vo.md#centaur) +- AltName: [Centaur](monsters_vo.md#centaur) - Créature monstrueuse de taille G, Neutre Bon - **Classe d'armure** 12 - **Points de vie** 45 (6d10+12) @@ -618,7 +618,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants et la cible doit réussir un jet de s [][MonsterHD] # Criard -- NameVO: [Shrieker](monsters_vo.md#shrieker) +- AltName: [Shrieker](monsters_vo.md#shrieker) - Plante de taille M, non-alignée - **Classe d'armure** 5 - **Points de vie** 13 (3d8) @@ -645,7 +645,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants et la cible doit réussir un jet de s [][MonsterHD] # Moisissure violette -- NameVO: [Violet Fungus](monsters_vo.md#violet-fungus) +- AltName: [Violet Fungus](monsters_vo.md#violet-fungus) - Plante de taille M, non-alignée - **Classe d'armure** 5 - **Points de vie** 18 (4d8) @@ -676,7 +676,7 @@ _Touché :_ 4 (1d8) dégâts nécrotiques. [][MonsterHD] # Chimère -- NameVO: [Chimera](monsters_vo.md#chimera) +- AltName: [Chimera](monsters_vo.md#chimera) - Créature monstrueuse de taille G, Chaotique Mauvais - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 114 (12d10+48) @@ -713,7 +713,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants. [][MonsterHD] # Chuul -- NameVO: [Chuul](monsters_vo.md#chuul) +- AltName: [Chuul](monsters_vo.md#chuul) - Aberration de taille G, Chaotique Mauvais - **Classe d'armure** 16 (armure naturelle) - **Points de vie** 93 (11d10+33) @@ -752,7 +752,7 @@ La cible est [paralysée] tant que ce poison fait effet. Elle peut retenter le j [][MonsterHD] # Cockatrice -- NameVO: [Cockatrice](monsters_vo.md#cockatrice) +- AltName: [Cockatrice](monsters_vo.md#cockatrice) - Créature monstrueuse de taille P, non-alignée - **Classe d'armure** 11 - **Points de vie** 27 (6d6+6) @@ -776,7 +776,7 @@ _Touché :_ 3 (1d4+1) dégâts perforants et la cible doit réussir un jet de sa [][MonsterHD] # Couatl -- NameVO: [Couatl](monsters_vo.md#couatl) +- AltName: [Couatl](monsters_vo.md#couatl) - Céleste de taille M, Loyal Bon - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 97 (13d8+39) @@ -866,7 +866,7 @@ _Touché :_ 7 (1d8+3) dégâts tranchants ou 8 (1d10+3) dégâts tranchants si e [][MonsterHD] # Balor -- NameVO: [Balor](monsters_vo.md#balor) +- AltName: [Balor](monsters_vo.md#balor) - Fiélon (démon) de taille TG, Chaotique Mauvais - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 262 (21d12+126) @@ -912,7 +912,7 @@ _Touché :_ 15 (2d6+8) dégâts tranchants plus 10 (3d6) dégâts de feu et la c [][MonsterHD] # Dretch -- NameVO: [Dretch](monsters_vo.md#dretch) +- AltName: [Dretch](monsters_vo.md#dretch) - Fiélon (démon) de taille P, Chaotique Mauvais - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 18 (4d6+4) @@ -947,7 +947,7 @@ _Touché :_ 3 (1d6) dégâts perforants. [][MonsterHD] # Glabrezu -- NameVO: [Glabrezu](monsters_vo.md#glabrezu) +- AltName: [Glabrezu](monsters_vo.md#glabrezu) - Fiélon (démon) de taille G, Chaotique Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 157 (15d10+75) @@ -991,7 +991,7 @@ _Touché :_ 7 (2d4+2) dégâts contondants. [][MonsterHD] # Hezrou -- NameVO: [Hezrou](monsters_vo.md#hezrou) +- AltName: [Hezrou](monsters_vo.md#hezrou) - Fiélon (démon) de taille G, Chaotique Mauvais - **Classe d'armure** 16 (armure naturelle) - **Points de vie** 136 (13d10+65) @@ -1033,7 +1033,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants. [][MonsterHD] # Marilith -- NameVO: [Marilith](monsters_vo.md#marilith) +- AltName: [Marilith](monsters_vo.md#marilith) - Fiélon (démon) de taille G, Chaotique Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 189 (18d10+90) @@ -1083,7 +1083,7 @@ Elle doit voir son agresseur et manier une arme de corps à corps pour pouvoir p [][MonsterHD] # Nalfeshnie -- NameVO: [Nalfeshnee](monsters_vo.md#nalfeshnee) +- AltName: [Nalfeshnee](monsters_vo.md#nalfeshnee) - Fiélon (démon) de taille G, Chaotique Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 184 (16d10+96) @@ -1129,7 +1129,7 @@ _Touché :_ 32 (5d10+5) dégâts perforants. [][MonsterHD] # Quasit -- NameVO: [Quasit](monsters_vo.md#quasit) +- AltName: [Quasit](monsters_vo.md#quasit) - Fiélon (démon, métamorphe) de taille TP, Chaotique Mauvais - **Classe d'armure** 13 - **Points de vie** 7 (3d4) @@ -1171,7 +1171,7 @@ La cible peut retenter le jet de sauvegarde à la fin de chacun de ses tours et [][MonsterHD] # Vrock -- NameVO: [Vrock](monsters_vo.md#vrock) +- AltName: [Vrock](monsters_vo.md#vrock) - Fiélon (démon) de taille G, Chaotique Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 104 (11d10+44) @@ -1215,7 +1215,7 @@ Les spores contournent les angles. Les créatures dans cette zone doivent chacun [][MonsterHD] # Destrier noir -- NameVO: [Nightmare](monsters_vo.md#nightmare) +- AltName: [Nightmare](monsters_vo.md#nightmare) - Fiélon de taille G, Neutre Mauvais - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 68 (8d10+24) @@ -1319,7 +1319,7 @@ Relancez deux fois le dé et rejouez tous les 8. [][MonsterHD] # Diable barbelé -- NameVO: [Barbed Devil](monsters_vo.md#barbed-devil) +- AltName: [Barbed Devil](monsters_vo.md#barbed-devil) - Fiélon (diable) de taille M, Loyal Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 110 (13d8+52) @@ -1366,7 +1366,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants. [][MonsterHD] # Diable barbu -- NameVO: [Bearded Devil](monsters_vo.md#bearded-devil) +- AltName: [Bearded Devil](monsters_vo.md#bearded-devil) - Fiélon (diable) de taille M, Loyal Mauvais - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 52 (8d8+16) @@ -1408,7 +1408,7 @@ _Touché :_ 8 (1d10+3) dégâts tranchants. Si la cible n'est pas un mort-vivant [][MonsterHD] # Diable cornu -- NameVO: [Horned Devil](monsters_vo.md#horned-devil) +- AltName: [Horned Devil](monsters_vo.md#horned-devil) - Fiélon (diable) de taille G, Loyal Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 178 (17d10+85) @@ -1452,7 +1452,7 @@ _Touché :_ 10 (1d8+6) dégâts perforants. Si la cible n'est pas un mort-vivant [][MonsterHD] # Diable gelé -- NameVO: [Ice Devil](monsters_vo.md#ice-devil) +- AltName: [Ice Devil](monsters_vo.md#ice-devil) - Fiélon (diable) de taille G, Loyal Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 180 (19d10+76) @@ -1510,7 +1510,7 @@ _Touché :_ 12 (2d6+5) dégâts contondants plus 10 (3d6) dégâts de froid. [][MonsterHD] # Diable des chaînes -- NameVO: [Chain Devil](monsters_vo.md#chain-devil) +- AltName: [Chain Devil](monsters_vo.md#chain-devil) - Fiélon (diable) de taille M, Loyal Mauvais - **Classe d'armure** 16 (armure naturelle) - **Points de vie** 85 (10d8+40) @@ -1556,7 +1556,7 @@ Si celle-ci peut voir le diable, elle doit réussir un jet de sauvegarde de Sage [][MonsterHD] # Diable osseux -- NameVO: [Bone Devil](monsters_vo.md#bone-devil) +- AltName: [Bone Devil](monsters_vo.md#bone-devil) - Fiélon (diable) de taille G, Loyal Mauvais - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 142 (15d10+60) @@ -1597,7 +1597,7 @@ _Touché :_ 8 (1d8+4) dégâts tranchants. [][MonsterHD] # Diablotin -- NameVO: [Imp](monsters_vo.md#imp) +- AltName: [Imp](monsters_vo.md#imp) - Fiélon (diable, métamorphe) de taille TP, Loyal Mauvais - **Classe d'armure** 13 - **Points de vie** 10 (3d4+3) @@ -1637,7 +1637,7 @@ Il redevient visible s'il attaque ou si sa concentration est interrompue (comme [][MonsterHD] # Diantrefosse -- NameVO: [Pit Fiend](monsters_vo.md#pit-fiend) +- AltName: [Pit Fiend](monsters_vo.md#pit-fiend) - Fiélon (diable) de taille G, Loyal Mauvais - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 300 (24d10+168) @@ -1693,7 +1693,7 @@ _Touché :_ 24 (3d10+8) dégâts contondants. [][MonsterHD] # Érinye -- NameVO: [Erinyes](monsters_vo.md#erinyes) +- AltName: [Erinyes](monsters_vo.md#erinyes) - Fiélon (diable) de taille M, Loyal Mauvais - **Classe d'armure** 18 (harnois) - **Points de vie** 153 (18d8+72) @@ -1737,7 +1737,7 @@ _Touché :_ 8 (1d8+4) dégâts tranchants, ou 9 (1d10+4) dégâts tranchants si [][MonsterHD] # Lémure -- NameVO: [Lemure](monsters_vo.md#lemure) +- AltName: [Lemure](monsters_vo.md#lemure) - Fiélon (diable) de taille M, Loyal Mauvais - **Classe d'armure** 7 - **Points de vie** 13 (3d8) @@ -1810,7 +1810,7 @@ _Touché :_ 16 (2d10+5) dégâts contondants. [][MonsterHD] # Plésiosaure -- NameVO: [Plesiosaurus](monsters_vo.md#plesiosaurus) +- AltName: [Plesiosaurus](monsters_vo.md#plesiosaurus) - Bête de taille G, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 68 (8d10+24) @@ -1839,7 +1839,7 @@ _Touché :_ 14 (3d6+4) dégâts perforants. [][MonsterHD] # Tricératops -- NameVO: [Triceratops](monsters_vo.md#triceratops) +- AltName: [Triceratops](monsters_vo.md#triceratops) - Bête de taille TG, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 95 (10d12+30) @@ -1871,7 +1871,7 @@ _Touché :_ 22 (3d10+6) dégâts contondants. [][MonsterHD] # Tyrannosaure -- NameVO: [Tyrannosaurus Rex](monsters_vo.md#tyrannosaurus-rex) +- AltName: [Tyrannosaurus Rex](monsters_vo.md#tyrannosaurus-rex) - Bête de taille TG, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 136 (13d12+52) @@ -1902,7 +1902,7 @@ _Touché :_ 20 (3d8+7) dégâts contondants. [][MonsterHD] # Doppleganger -- NameVO: [Doppelganger](monsters_vo.md#doppelganger) +- AltName: [Doppelganger](monsters_vo.md#doppelganger) - Créature monstrueuse (métamorphe) de taille M, neutre - **Classe d'armure** 14 - **Points de vie** 52 (8d8+16) @@ -1942,7 +1942,7 @@ Tant que la créature est à portée, le doppleganger peut continuer à lire ses [][MonsterHD] # Dragon blanc vénérable -- NameVO: [Ancient White Dragon] +- AltName: [Ancient White Dragon] - Dragon de taille Gig, Chaotique Mauvais - **Classe d'armure** 20 (armure naturelle) - **Points de vie** 333 (18d20+144) @@ -1999,7 +1999,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon blanc adulte -- NameVO: [Adult White Dragon] +- AltName: [Adult White Dragon] - Dragon de taille TG, Chaotique Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 200 (16d12+96) @@ -2056,7 +2056,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon blanc -- NameVO: [Young White Dragon] +- AltName: [Young White Dragon] - Dragon de taille G, Chaotique Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 133 (14d10+56) @@ -2095,7 +2095,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants plus 4 (1d8) dégâts de froid. [][MonsterHD] # Dragonnet blanc -- NameVO: [White Dragon Wyrmling] +- AltName: [White Dragon Wyrmling] - Dragon de taille M, Chaotique Mauvais - **Classe d'armure** 16 (armure naturelle) - **Points de vie** 32 (5d8+10) @@ -2124,7 +2124,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants plus 2 (1d4) dégâts de froid. [][MonsterHD] # Dragon bleu vénérable -- NameVO: [Ancient Blue Dragon] +- AltName: [Ancient Blue Dragon] - Dragon de taille Gig, Loyal Mauvais - **Classe d'armure** 22 (armure naturelle) - **Points de vie** 481 (26d20+208) @@ -2179,7 +2179,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon bleu adulte -- NameVO: [Adult Blue Dragon] +- AltName: [Adult Blue Dragon] - Dragon de taille TG, Loyal Mauvais - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 225 (18d12+108) @@ -2234,7 +2234,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon bleu -- NameVO: [Young Blue Dragon] +- AltName: [Young Blue Dragon] - Dragon de taille G, Loyal Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 152 (16d10+64) @@ -2269,7 +2269,7 @@ _Touché :_ 16 (2d10+5) dégâts perforants plus 5 (1d10) dégâts de foudre. [][MonsterHD] # Dragonnet bleu -- NameVO: [Blue Dragon Wyrmling] +- AltName: [Blue Dragon Wyrmling] - Dragon de taille M, Loyal Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 52 (8d8+16) @@ -2298,7 +2298,7 @@ _Touché :_ 8 (1d10+3) dégâts perforants plus 3 (1d6) dégâts de foudre. [][MonsterHD] # Dragon noir vénérable -- NameVO: [Ancient Black Dragon] +- AltName: [Ancient Black Dragon] - Dragon de taille Gig, Chaotique Mauvais - **Classe d'armure** 22 (armure naturelle) - **Points de vie** 367 (21d20+147) @@ -2353,7 +2353,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon noir adulte -- NameVO: [Adult Black Dragon] +- AltName: [Adult Black Dragon] - Dragon de taille TG, Chaotique Mauvais - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 195 (17d12+85) @@ -2410,7 +2410,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon noir -- NameVO: [Young Black Dragon] +- AltName: [Young Black Dragon] - Dragon de taille G, Chaotique Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 127 (15d10+45) @@ -2449,7 +2449,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants plus 4 (1d8) dégâts d'acide. [][MonsterHD] # Dragonnet noir -- NameVO: [Black Dragon Wyrmling] +- AltName: [Black Dragon Wyrmling] - Dragon de taille M, Chaotique Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 33 (6d8+6) @@ -2482,7 +2482,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants plus 2 (1d4) dégâts d'acide. [][MonsterHD] # Dragon rouge vénérable -- NameVO: [Ancient Red Dragon] +- AltName: [Ancient Red Dragon] - Dragon de taille Gig, Chaotique Mauvais - **Classe d'armure** 22 (armure naturelle) - **Points de vie** 546 (28d20+252) @@ -2537,7 +2537,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon rouge adulte -- NameVO: [Adult Red Dragon] +- AltName: [Adult Red Dragon] - Dragon de taille TG, Chaotique Mauvais - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 256 (19d12+133) @@ -2592,7 +2592,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon rouge -- NameVO: [Young Red Dragon] +- AltName: [Young Red Dragon] - Dragon de taille G, Chaotique Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 178 (17d10+85) @@ -2627,7 +2627,7 @@ _Touché :_ 17 (2d10+6) dégâts perforants plus 3 (1d6) dégâts de feu. [][MonsterHD] # Dragonnet rouge -- NameVO: [Red Dragon Wyrmling] +- AltName: [Red Dragon Wyrmling] - Dragon de taille M, Chaotique Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 75 (10d8+30) @@ -2656,7 +2656,7 @@ _Touché :_ 9 (1d10+4) dégâts perforants plus 3 (1d6) dégâts de feu. [][MonsterHD] # Dragon vert vénérable -- NameVO: [Ancient Green Dragon] +- AltName: [Ancient Green Dragon] - Dragon de taille Gig, Loyal Mauvais - **Classe d'armure** 21 (armure naturelle) - **Points de vie** 385 (22d20+154) @@ -2716,7 +2716,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon vert adulte -- NameVO: [Adult Green Dragon] +- AltName: [Adult Green Dragon] - Dragon de taille TG, Loyal Mauvais - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 207 (18d12+90) @@ -2774,7 +2774,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon vert -- NameVO: [Young Green Dragon] +- AltName: [Young Green Dragon] - Dragon de taille G, Loyal Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 136 (16d10+48) @@ -2814,7 +2814,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants plus 7 (2d6) dégâts de poison. [][MonsterHD] # Dragonnet vert -- NameVO: [Green Dragon Wyrmling] +- AltName: [Green Dragon Wyrmling] - Dragon de taille M, Loyal Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 38 (7d8+7) @@ -2848,7 +2848,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants plus 3 (1d6) dégâts de poison. [][MonsterHD] # Dragon d'airain vénérable -- NameVO: [Ancient Brass Dragon] +- AltName: [Ancient Brass Dragon] - Dragon de taille Gig, Chaotique Bon - **Classe d'armure** 20 (armure naturelle) - **Points de vie** 297 (17d20+119) @@ -2913,7 +2913,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon d'airain adulte -- NameVO: [Adult Brass Dragon] +- AltName: [Adult Brass Dragon] - Dragon de taille TG, Chaotique Bon - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 172 (15d12+75) @@ -2972,7 +2972,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon d'airain -- NameVO: [Young Brass Dragon] +- AltName: [Young Brass Dragon] - Dragon de taille G, Chaotique Bon - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 110 (13d10+39) @@ -3011,7 +3011,7 @@ _Souffle soporifique._ Le dragon souffle un gaz soporifique sur un cône de 9 m [][MonsterHD] # Dragonnet d'airain -- NameVO: [Brass Dragon Wyrmling] +- AltName: [Brass Dragon Wyrmling] - Dragon de taille M, Chaotique Bon - **Classe d'armure** 16 (armure naturelle) - **Points de vie** 16 (3d8+3) @@ -3044,7 +3044,7 @@ _Souffle soporifique._ Le dragon souffle un gaz soporifique sur un cône de 4,50 [][MonsterHD] # Dragon d'argent vénérable -- NameVO: [Ancient Silver Dragon] +- AltName: [Ancient Silver Dragon] - Dragon de taille Gig, Loyal Bon - **Classe d'armure** 22 (armure naturelle) - **Points de vie** 487 (25d20+225) @@ -3107,7 +3107,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon d'argent adulte -- NameVO: [Adult Silver Dragon] +- AltName: [Adult Silver Dragon] - Dragon de taille TG, Loyal Bon - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 243 (18d12+126) @@ -3172,7 +3172,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon d'argent -- NameVO: [Young Silver Dragon] +- AltName: [Young Silver Dragon] - Dragon de taille G, Loyal Bon - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 168 (16d10+80) @@ -3211,7 +3211,7 @@ _Souffle paralysant._ Le dragon souffle du gaz paralysant sur un cône de 9 mèt [][MonsterHD] # Dragonnet d'argent -- NameVO: [Silver Dragon Wyrmling] +- AltName: [Silver Dragon Wyrmling] - Dragon de taille M, Loyal Bon - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 45 (6d8+18) @@ -3244,7 +3244,7 @@ _Souffle paralysant._ Le dragon souffle du gaz paralysant sur un cône de 4,50 m [][MonsterHD] # Dragon de bronze vénérable -- NameVO: [Ancient Bronze Dragon] +- AltName: [Ancient Bronze Dragon] - Dragon de taille Gig, Loyal Bon - **Classe d'armure** 22 (armure naturelle) - **Points de vie** 444 (24d20+192) @@ -3309,7 +3309,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon de bronze adulte -- NameVO: [Adult Bronze Dragon] +- AltName: [Adult Bronze Dragon] - Dragon de taille TG, Loyal Bon - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 212 (17d12+102) @@ -3376,7 +3376,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon de bronze -- NameVO: [Young Bronze Dragon] +- AltName: [Young Bronze Dragon] - Dragon de taille G, Loyal Bon - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 142 (15d10+60) @@ -3419,7 +3419,7 @@ _Souffle répulsif._ Le dragon souffle de l'énergie répulsive sur un cône de [][MonsterHD] # Dragonnet de bronze -- NameVO: [Bronze Dragon Wyrmling] +- AltName: [Bronze Dragon Wyrmling] - Dragon de taille M, Loyal Bon - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 32 (5d8+10) @@ -3456,7 +3456,7 @@ _Souffle répulsif._ Le dragon souffle de l'énergie répulsive sur un cône de [][MonsterHD] # Dragon de cuivre vénérable -- NameVO: [Ancient Copper Dragon] +- AltName: [Ancient Copper Dragon] - Dragon de taille Gig, Chaotique Bon - **Classe d'armure** 21 (armure naturelle) - **Points de vie** 350 (20d20+140) @@ -3523,7 +3523,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon de cuivre adulte -- NameVO: [Adult Copper Dragon] +- AltName: [Adult Copper Dragon] - Dragon de taille TG, Chaotique Bon - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 184 (16d12+80) @@ -3584,7 +3584,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon de cuivre -- NameVO: [Young Copper Dragon] +- AltName: [Young Copper Dragon] - Dragon de taille G, Chaotique Bon - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 119 (14d10+42) @@ -3627,7 +3627,7 @@ Ces effets durent 1 minute. Les créatures peuvent retenter le jet de sauvegarde [][MonsterHD] # Dragonnet de cuivre -- NameVO: [Copper Dragon Wyrmling] +- AltName: [Copper Dragon Wyrmling] - Dragon de taille M, Chaotique Bon - **Classe d'armure** 16 (armure naturelle) - **Points de vie** 22 (4d8+4) @@ -3660,7 +3660,7 @@ _Souffle ralentissant._ Le dragon souffle du gaz sur un cône de 4,50 mètres. L [][MonsterHD] # Dragon d'or vénérable -- NameVO: [Ancient Gold Dragon] +- AltName: [Ancient Gold Dragon] - Dragon de taille Gig, Loyal Bon - **Classe d'armure** 22 (armure naturelle) - **Points de vie** 546 (28d20+252) @@ -3725,7 +3725,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Dragon d'or adulte -- NameVO: [Adult Gold Dragon] +- AltName: [Adult Gold Dragon] - Dragon de taille TG, Loyal Bon - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 256 (19d12+133) @@ -3792,7 +3792,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Jeune dragon d'or -- NameVO: [Young Gold Dragon] +- AltName: [Young Gold Dragon] - Dragon de taille G, Loyal Bon - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 178 (17d10+85) @@ -3835,7 +3835,7 @@ _Souffle de feu._ Le dragon souffle du feu sur un cône de 9 mètres. Les créat [][MonsterHD] # Dragonnet d'or -- NameVO: [Gold Dragon Wyrmling] +- AltName: [Gold Dragon Wyrmling] - Dragon de taille M, Loyal Bon - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 60 (8d8+24) @@ -3872,7 +3872,7 @@ _Souffle de feu._ Le dragon souffle du feu sur un cône de 4,50 mètres. Les cr [][MonsterHD] # Dragon-tortue -- NameVO: [Dragon Turtle](monsters_vo.md#dragon-turtle) +- AltName: [Dragon Turtle](monsters_vo.md#dragon-turtle) - Dragon de taille Gig, neutre - **Classe d'armure** 20 (armure naturelle) - **Points de vie** 341 (22d20+110) @@ -3952,7 +3952,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants. [][MonsterHD] # Drider -- NameVO: [Drider](monsters_vo.md#drider) +- AltName: [Drider](monsters_vo.md#drider) - Créature monstrueuse de taille G, Chaotique Mauvais - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 123 (13d10+52) @@ -4003,7 +4003,7 @@ _Touché :_ 2 (1d4) dégâts perforants plus 9 (2d8) dégâts de poison. [][MonsterHD] # Drow -- NameVO: [Drow](monsters_vo.md#drow) +- AltName: [Drow](monsters_vo.md#drow) - Humanoïde (elfe) de taille M, Neutre Mauvais - **Classe d'armure** 15 (chemise de mailles) - **Points de vie** 13 (3d8) @@ -4107,7 +4107,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants. [][MonsterHD] # Dryade -- NameVO: [Dryad](monsters_vo.md#dryad) +- AltName: [Dryad](monsters_vo.md#dryad) - Fée de taille M, neutre - **Classe d'armure** 11 (16 avec peau d'écorce) - **Points de vie** 22 (5d8) @@ -4154,7 +4154,7 @@ _Touché :_ 2 (1d4) dégâts contondants, ou 8 (1d8+4) dégâts contondants avec [][MonsterHD] # Duergar -- NameVO: [Duergar](monsters_vo.md#duergar) +- AltName: [Duergar](monsters_vo.md#duergar) - Humanoïde (nain) de taille M, Loyal Mauvais - **Classe d'armure** 16 (armure d'écailles, bouclier) - **Points de vie** 26 (4d8+8) @@ -4195,7 +4195,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants ou 11 (2d8+2) dégâts perforants s'il [][MonsterHD] # Élémentaire de l'air -- NameVO: [Air Elemental](monsters_vo.md#air-elemental) +- AltName: [Air Elemental](monsters_vo.md#air-elemental) - Élémentaire de taille G, neutre - **Classe d'armure** 15 - **Points de vie** 90 (12d10+24) @@ -4234,7 +4234,7 @@ Si le jet de sauvegarde est réussi, la cible subit la moitié des dégâts cont [][MonsterHD] # Élémentaire de l'eau -- NameVO: [Water Elemental](monsters_vo.md#water-elemental) +- AltName: [Water Elemental](monsters_vo.md#water-elemental) - Élémentaire de taille G, neutre - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 114 (12d10+48) @@ -4273,7 +4273,7 @@ L'élémentaire peut empoigner une créature de taille G ou jusqu'à deux créat [][MonsterHD] # Élémentaire du feu -- NameVO: [Fire Elemental](monsters_vo.md#fire-elemental) +- AltName: [Fire Elemental](monsters_vo.md#fire-elemental) - Élémentaire de taille G, neutre - **Classe d'armure** 13 - **Points de vie** 102 (12d10+36) @@ -4310,7 +4310,7 @@ _Touché :_ 10 (2d6+3) dégâts de feu. Si la cible est un objet inflammable ou [][MonsterHD] # Élémentaire de la terre -- NameVO: [Earth Elemental](monsters_vo.md#earth-elemental) +- AltName: [Earth Elemental](monsters_vo.md#earth-elemental) - Élémentaire de taille G, neutre - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 126 (12d10+60) @@ -4346,7 +4346,7 @@ _Touché :_ 14 (2d8+5) dégâts contondants. [][MonsterHD] # Enlaceur -- NameVO: [Roper](monsters_vo.md#roper) +- AltName: [Roper](monsters_vo.md#roper) - Créature monstrueuse de taille G, Neutre Mauvais - **Classe d'armure** 20 (armure naturelle) - **Points de vie** 93 (11d10+33) @@ -4389,7 +4389,7 @@ _Touché :_ 22 (4d8+4) dégâts perforants. [][MonsterHD] # Esprit follet -- NameVO: [Sprite](monsters_vo.md#sprite) +- AltName: [Sprite](monsters_vo.md#sprite) - Fée de taille TP, Neutre Bonne - **Classe d'armure** 15 (armure de cuir) - **Points de vie** 2 (1d4) @@ -4422,7 +4422,7 @@ _Touché :_ 1 dégât perforant, et la cible doit réussir un jet de sauvegarde [][MonsterHD] # Ettercap -- NameVO: [Ettercap](monsters_vo.md#ettercap) +- AltName: [Ettercap](monsters_vo.md#ettercap) - Créature monstrueuse de taille M, Neutre Mauvais - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 44 (8d8+8) @@ -4465,7 +4465,7 @@ _Touché :_ la créature est [entravée] par la toile. Par une action, la créat [][MonsterHD] # Ettin -- NameVO: [Ettin](monsters_vo.md#ettin) +- AltName: [Ettin](monsters_vo.md#ettin) - Géant de taille G, Chaotique Mauvais - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 85 (10d10+30) @@ -4502,7 +4502,7 @@ _Touché :_ 14 (2d8+5) dégâts perforants. [][MonsterHD] # Fantôme -- NameVO: [Ghost](monsters_vo.md#ghost) +- AltName: [Ghost](monsters_vo.md#ghost) - Mort-vivant de taille M, n'importe quel alignement - **Classe d'armure** 11 - **Points de vie** 45 (10d8) @@ -4545,7 +4545,7 @@ La possession prend fin si le corps physique tombe à 0 point de vie, si le fant [][MonsterHD] # Feu follet -- NameVO: [Will-o'-Wisp](monsters_vo.md#will-o-wisp) +- AltName: [Will-o'-Wisp](monsters_vo.md#will-o-wisp) - Mort-vivant de taille TP, Chaotique Mauvais - **Classe d'armure** 19 - **Points de vie** 22 (9d4) @@ -4584,7 +4584,7 @@ _Touché :_ 9 (2d8) dégâts de foudre. [][MonsterHD] # Garde animé -- NameVO: [Shield Guardian](monsters_vo.md#shield-guardian) +- AltName: [Shield Guardian](monsters_vo.md#shield-guardian) - Créature artificielle de taille G, non-alignée - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 142 (15d10+60) @@ -4624,7 +4624,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants. [][MonsterHD] # Gargouille -- NameVO: [Gargoyle](monsters_vo.md#gargoyle) +- AltName: [Gargoyle](monsters_vo.md#gargoyle) - Élémentaire de taille M, Chaotique Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 52 (7d8+21) @@ -4661,7 +4661,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Géant des collines -- NameVO: [Hill Giant](monsters_vo.md#hill-giant) +- AltName: [Hill Giant](monsters_vo.md#hill-giant) - Géant de taille TG, Chaotique Mauvais - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 105 (10d12+40) @@ -4692,7 +4692,7 @@ _Touché :_ 21 (3d10+5) dégâts contondants. [][MonsterHD] # Géant des nuages -- NameVO: [Cloud Giant](monsters_vo.md#cloud-giant) +- AltName: [Cloud Giant](monsters_vo.md#cloud-giant) - Géant de taille TG, Neutre Bon (50 %) ou Neutre Mauvais (50 %) - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 200 (16d12+96) @@ -4736,7 +4736,7 @@ _Touché :_ 30 (4d10+8) dégâts contondants. [][MonsterHD] # Géant des pierres -- NameVO: [Stone Giant](monsters_vo.md#stone-giant) +- AltName: [Stone Giant](monsters_vo.md#stone-giant) - Géant de taille TG, neutre - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 126 (11d12+55) @@ -4772,7 +4772,7 @@ _Touché :_ 28 (4d10+6) dégâts contondants. Si la cible est une créature, ell [][MonsterHD] # Géant des tempêtes -- NameVO: [Storm Giant](monsters_vo.md#storm-giant) +- AltName: [Storm Giant](monsters_vo.md#storm-giant) - Géant de taille TG, Chaotique Bon - **Classe d'armure** 16 (armure d'écailles) - **Points de vie** 230 (20d12+100) @@ -4818,7 +4818,7 @@ _Touché :_ 35 (4d12+9) dégâts contondants. [][MonsterHD] # Géant du feu -- NameVO: [Fire Giant](monsters_vo.md#fire-giant) +- AltName: [Fire Giant](monsters_vo.md#fire-giant) - Géant de taille TG, Loyal Mauvais - **Classe d'armure** 18 (harnois) - **Points de vie** 162 (13d12+78) @@ -4851,7 +4851,7 @@ _Touché :_ 29 (4d10+7) dégâts contondants. [][MonsterHD] # Géant du givre -- NameVO: [Frost Giant](monsters_vo.md#frost-giant) +- AltName: [Frost Giant](monsters_vo.md#frost-giant) - Géant de taille TG, Neutre Mauvais - **Classe d'armure** 15 (armure composite) - **Points de vie** 138 (12d12+60) @@ -4884,7 +4884,7 @@ _Touché :_ 28 (4d10+6) dégâts contondants. [][MonsterHD] # Djinn -- NameVO: [Djinni](monsters_vo.md#djinni) +- AltName: [Djinni](monsters_vo.md#djinni) - Élémentaire de taille G, Chaotique Bon - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 161 (14d10+84) @@ -4930,7 +4930,7 @@ Si le test est réussi, la créature n'est plus [entravée] et se déplace vers [][MonsterHD] # Éfrit -- NameVO: [Efreeti](monsters_vo.md#efreeti) +- AltName: [Efreeti](monsters_vo.md#efreeti) - Élémentaire de taille G, Loyal Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 200 (16d10+112) @@ -4974,7 +4974,7 @@ _Touché :_ 17 (5d6) dégâts de feu. [][MonsterHD] # Gnoll -- NameVO: [Gnoll](monsters_vo.md#gnoll) +- AltName: [Gnoll](monsters_vo.md#gnoll) - Humanoïde (gnoll) de taille M, Chaotique Mauvais - **Classe d'armure** 15 (armure de peau, bouclier) - **Points de vie** 22 (5d8) @@ -5049,7 +5049,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants. [][MonsterHD] # Gnome des profondeurs (svirfneblin) -- NameVO: [Deep Gnome (Svirfneblin)](monsters_vo.md#deep-gnome-svirfneblin) +- AltName: [Deep Gnome (Svirfneblin)](monsters_vo.md#deep-gnome-svirfneblin) - Humanoïde (gnome) de taille P, Neutre Bon - **Classe d'armure** 15 (chemise de mailles) - **Points de vie** 16 (3d6+6) @@ -5090,7 +5090,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants. [][MonsterHD] # Gobelin -- NameVO: [Goblin](monsters_vo.md#goblin) +- AltName: [Goblin](monsters_vo.md#goblin) - Humanoïde (gobelinoïde) de taille P, Neutre Mauvais - **Classe d'armure** 15 (armure de cuir, bouclier) - **Points de vie** 7 (2d6) @@ -5251,7 +5251,7 @@ _Touché :_ 5 (1d8+1) dégâts contondants. [][MonsterHD] # Gobelours -- NameVO: [Bugbear](monsters_vo.md#bugbear) +- AltName: [Bugbear](monsters_vo.md#bugbear) - Humanoïde (gobelinoïde) de taille M, Chaotique Mauvais - **Classe d'armure** 16 (armure de peau, bouclier) - **Points de vie** 27 (5d8+5) @@ -5328,7 +5328,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants au corps à corps ou 6 (1d6+3) dégâ [][MonsterHD] # Golem d'argile -- NameVO: [Clay Golem](monsters_vo.md#clay-golem) +- AltName: [Clay Golem](monsters_vo.md#clay-golem) - Créature artificielle de taille G, non-alignée - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 133 (14d10+56) @@ -5374,7 +5374,7 @@ _Touché :_ 16 (2d10+5) dégâts contondants. Si la cible est une créature, ell [][MonsterHD] # Golem de chair -- NameVO: [Flesh Golem](monsters_vo.md#flesh-golem) +- AltName: [Flesh Golem](monsters_vo.md#flesh-golem) - Créature artificielle de taille M, neutre - **Classe d'armure** 9 - **Points de vie** 93 (11d8+44) @@ -5426,7 +5426,7 @@ _Touché :_ 13 (2d8+4) dégâts contondants. [][MonsterHD] # Golem de fer -- NameVO: [Iron Golem](monsters_vo.md#iron-golem) +- AltName: [Iron Golem](monsters_vo.md#iron-golem) - Créature artificielle de taille G, non-alignée - **Classe d'armure** 20 (armure naturelle) - **Points de vie** 210 (20d10+100) @@ -5470,7 +5470,7 @@ _Touché :_ 23 (3d10+7) dégâts tranchants. [][MonsterHD] # Golem de pierre -- NameVO: [Stone Golem](monsters_vo.md#stone-golem) +- AltName: [Stone Golem](monsters_vo.md#stone-golem) - Créature artificielle de taille G, non-alignée - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 178 (17d10+85) @@ -5508,7 +5508,7 @@ _Touché :_ 19 (3d8+6) dégâts contondants. [][MonsterHD] # Gorgone -- NameVO: [Gorgon](monsters_vo.md#gorgon) +- AltName: [Gorgon](monsters_vo.md#gorgon) - Créature monstrueuse de taille G, non-alignée - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 114 (12d10+48) @@ -5546,7 +5546,7 @@ Les créatures situées dans cette zone doivent chacune effectuer un jet de sauv [][MonsterHD] # Goule -- NameVO: [Ghoul](monsters_vo.md#ghoul) +- AltName: [Ghoul](monsters_vo.md#ghoul) - Mort-vivant de taille M, Chaotique Mauvais - **Classe d'armure** 12 - **Points de vie** 22 (5d8) @@ -5576,7 +5576,7 @@ _Touché :_ 9 (2d6+2) dégâts perforants. [][MonsterHD] # Blême -- NameVO: [Ghast](monsters_vo.md#ghast) +- AltName: [Ghast](monsters_vo.md#ghast) - Mort-vivant de taille M, Chaotique Mauvais - **Classe d'armure** 13 - **Points de vie** 36 (8d8) @@ -5613,7 +5613,7 @@ _Touché :_ 12 (2d8+3) dégâts perforants. [][MonsterHD] # Grick -- NameVO: [Grick](monsters_vo.md#grick) +- AltName: [Grick](monsters_vo.md#grick) - Créature monstrueuse de taille M, neutre - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 27 (6d8) @@ -5648,7 +5648,7 @@ _Touché :_ 9 (2d6+2) dégâts tranchants. [][MonsterHD] # Griffon -- NameVO: [Griffon](monsters_vo.md#griffon) +- AltName: [Griffon](monsters_vo.md#griffon) - Créature monstrueuse de taille G, non-alignée - **Classe d'armure** 12 - **Points de vie** 59 (7d10+21) @@ -5683,7 +5683,7 @@ _Touché :_ 11 (2d6+4) dégâts tranchants. [][MonsterHD] # Guenaude aquatique -- NameVO: [Sea Hag](monsters_vo.md#sea-hag) +- AltName: [Sea Hag](monsters_vo.md#sea-hag) - Fée de taille M, Chaotique Mauvais - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 52 (7d8+21) @@ -5721,7 +5721,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants. [][MonsterHD] # Guenaude nocturne -- NameVO: [Night Hag](monsters_vo.md#night-hag) +- AltName: [Night Hag](monsters_vo.md#night-hag) - Fiélon de taille M, Neutre Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 112 (15d8+45) @@ -5766,7 +5766,7 @@ Un sort de protection contre le mal et le bien lancé sur la cible, tout comme u [][MonsterHD] # Guenaude verte -- NameVO: [Green Hag](monsters_vo.md#green-hag) +- AltName: [Green Hag](monsters_vo.md#green-hag) - Fée de taille M, Neutre Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 82 (11d8+33) @@ -5809,7 +5809,7 @@ _Touché :_ 13 (2d8+4) dégâts tranchants. [][MonsterHD] # Harpie -- NameVO: [Harpy](monsters_vo.md#harpy) +- AltName: [Harpy](monsters_vo.md#harpy) - Créature monstrueuse de taille M, Chaotique Mauvais - **Classe d'armure** 11 - **Points de vie** 38 (7d8+7) @@ -5847,7 +5847,7 @@ _Touché :_ 6 (2d4+1) dégâts tranchants. [][MonsterHD] # Hibours -- NameVO: [Owlbear](monsters_vo.md#owlbear) +- AltName: [Owlbear](monsters_vo.md#owlbear) - Créature monstrueuse de taille G, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 59 (7d10+21) @@ -5882,7 +5882,7 @@ _Touché :_ 14 (2d8+5) dégâts tranchants. [][MonsterHD] # Hippogriffe -- NameVO: [Hippogriff](monsters_vo.md#hippogriff) +- AltName: [Hippogriff](monsters_vo.md#hippogriff) - Créature monstrueuse de taille G, non-alignée - **Classe d'armure** 11 - **Points de vie** 19 (3d10+3) @@ -5917,7 +5917,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants. [][MonsterHD] # Hobgobelin -- NameVO: [Hobgoblin](monsters_vo.md#hobgoblin) +- AltName: [Hobgoblin](monsters_vo.md#hobgoblin) - Humanoïde (gobelinoïde) de taille M, Loyal Mauvais - **Classe d'armure** 18 (bouclier, cotte de mailles) - **Points de vie** 11 (2d8+2) @@ -5984,7 +5984,7 @@ _Touché :_ 5 (1d8+1) dégâts tranchants, ou 6 (1d10+1) dégâts tranchants si [][MonsterHD] # Homme-lézard -- NameVO: [Lizardfolk](monsters_vo.md#lizardfolk) +- AltName: [Lizardfolk](monsters_vo.md#lizardfolk) - Humanoïde (homme-lézard) de taille M, Neutre - **Classe d'armure** 15 (armure naturelle, bouclier) - **Points de vie** 22 (4d8+4) @@ -6069,7 +6069,7 @@ _Touché :_ 6 (1d6+3) dégâts perforants. [][MonsterHD] # Homme-poisson -- NameVO: [Merfolk](monsters_vo.md#merfolk) +- AltName: [Merfolk](monsters_vo.md#merfolk) - Humanoïde (homme-poisson) de taille M, Neutre - **Classe d'armure** 11 - **Points de vie** 11 (2d8+2) @@ -6098,7 +6098,7 @@ _Touché :_ 3 (1d6) dégâts perforants ou 4 (1d8) dégâts perforants si elle e [][MonsterHD] # Homoncule -- NameVO: [Homunculus](monsters_vo.md#homunculus) +- AltName: [Homunculus](monsters_vo.md#homunculus) - Créature artificielle de taille TP, neutre - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 5 (2d4) @@ -6128,7 +6128,7 @@ _Touché :_ 1 dégât perforant, et la cible doit réussir un jet de sauvegarde [][MonsterHD] # Hydre -- NameVO: [Hydra](monsters_vo.md#hydra) +- AltName: [Hydra](monsters_vo.md#hydra) - Créature monstrueuse de taille TG, non-alignée - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 172 (15d12+75) @@ -6169,7 +6169,7 @@ _Touché :_ 10 (1d10+5) dégâts perforants. [][MonsterHD] # Kobold -- NameVO: [Kobold](monsters_vo.md#kobold) +- AltName: [Kobold](monsters_vo.md#kobold) - Humanoïde (kobold) de taille P, Loyal Mauvais - **Classe d'armure** 12 - **Points de vie** 5 (2d6-2) @@ -6240,7 +6240,7 @@ _Touché :_ 5 (1d4+3) dégâts contondants. [][MonsterHD] # Kraken -- NameVO: [Kraken](monsters_vo.md#kraken) +- AltName: [Kraken](monsters_vo.md#kraken) - Créature monstrueuse (titan) de taille Gig, Chaotique Mauvais - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 472 (27d20+189) @@ -6297,7 +6297,7 @@ Le kraken peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Lamie -- NameVO: [Lamia](monsters_vo.md#lamia) +- AltName: [Lamia](monsters_vo.md#lamia) - Créature monstrueuse de taille G, Chaotique Mauvais - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 97 (13d10+26) @@ -6342,7 +6342,7 @@ _Touché :_ 14 (2d10+3) dégâts tranchants. [][MonsterHD] # Liche -- NameVO: [Lich](monsters_vo.md#lich) +- AltName: [Lich](monsters_vo.md#lich) - Mort-vivant de taille M, alignement Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 135 (18d8+54) @@ -6412,7 +6412,7 @@ La liche peut réaliser 3 actions légendaires, choisies parmi les options suiva [][MonsterHD] # Licorne -- NameVO: [Unicorn](monsters_vo.md#unicorn) +- AltName: [Unicorn](monsters_vo.md#unicorn) - Céleste de taille G, Loyal Bon - **Classe d'armure** 12 - **Points de vie** 67 (9d10+18) @@ -6472,7 +6472,7 @@ La licorne peut effectuer 3 actions légendaires qu'elle choisit parmi celles d [][MonsterHD] # Loup-garou -- NameVO: [Werewolf](monsters_vo.md#werewolf) +- AltName: [Werewolf](monsters_vo.md#werewolf) - Humanoïde (humain, métamorphe) de taille M, Chaotique Mauvais - **Classe d'armure** 11 sous forme humanoïde, 12 (armure naturelle) sous forme hybride ou de loup - **Points de vie** 58 (9d8+18) @@ -6514,7 +6514,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants. Si la cible est un humanoïde, elle d [][MonsterHD] # Ours-garou -- NameVO: [Werebear](monsters_vo.md#werebear) +- AltName: [Werebear](monsters_vo.md#werebear) - Humanoïde (humain, métamorphe) de taille M, Neutre Bon - **Classe d'armure** 10 sous forme humanoïde, 11 (armure naturelle) sous forme hybride ou d'ours - **Points de vie** 135 (18d8+54) @@ -6556,7 +6556,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants. Si la cible est un humanoïde, elle [][MonsterHD] # Rat-garou -- NameVO: [Wererat](monsters_vo.md#wererat) +- AltName: [Wererat](monsters_vo.md#wererat) - Humanoïde (humain, métamorphe) de taille M, Loyal Mauvais - **Classe d'armure** 12 - **Points de vie** 33 (6d8+6) @@ -6598,7 +6598,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. Si la cible est un humanoïde, elle d [][MonsterHD] # Sanglier-garou -- NameVO: [Wereboar](monsters_vo.md#wereboar) +- AltName: [Wereboar](monsters_vo.md#wereboar) - Humanoïde (humain, métamorphe) de taille M, Neutre Mauvais - **Classe d'armure** 10 sous forme humanoïde, 11 (armure naturelle) sous forme hybride ou de sanglier - **Points de vie** 78 (12d8+24) @@ -6638,7 +6638,7 @@ _Touché :_ 10 (2d6+3) dégâts contondants. [][MonsterHD] # Tigre-garou -- NameVO: [Weretiger](monsters_vo.md#weretiger) +- AltName: [Weretiger](monsters_vo.md#weretiger) - Humanoïde (humain, métamorphe) de taille M, Neutre - **Classe d'armure** 12 - **Points de vie** 120 (16d8+48) @@ -6686,7 +6686,7 @@ _Touché :_ 8 (1d10+3) dégâts perforants. Si la cible est un humanoïde, elle [][MonsterHD] # Magmatique -- NameVO: [Magmin](monsters_vo.md#magmin) +- AltName: [Magmin](monsters_vo.md#magmin) - Élémentaire de taille P, Chaotique Neutre - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 9 (2d6+2) @@ -6722,7 +6722,7 @@ Jusqu'au moment où une créature consacre une action à étouffer les flammes, [][MonsterHD] # Manteleur -- NameVO: [Cloaker](monsters_vo.md#cloaker) +- AltName: [Cloaker](monsters_vo.md#cloaker) - Aberration de taille G, Chaotique Neutre - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 78 (12d10+12) @@ -6771,7 +6771,7 @@ _Touché :_ 7 (1d8+3) dégâts tranchants. [][MonsterHD] # Mante obscure -- NameVO: [Darkmantle](monsters_vo.md#darkmantle) +- AltName: [Darkmantle](monsters_vo.md#darkmantle) - Créature monstrueuse de taille P, non-alignée - **Classe d'armure** 11 - **Points de vie** 22 (5d6+5) @@ -6810,7 +6810,7 @@ Lors de son tour, la mante obscure peut se détacher de la cible en dépensant 1 [][MonsterHD] # Manticore -- NameVO: [Manticore](monsters_vo.md#manticore) +- AltName: [Manticore](monsters_vo.md#manticore) - Créature monstrueuse de taille G, Loyal Mauvais - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 68 (8d10+24) @@ -6848,7 +6848,7 @@ _Touché :_ 7 (1d8+3) dégâts perforants. [][MonsterHD] # Méduse -- NameVO: [Medusa](monsters_vo.md#medusa) +- AltName: [Medusa](monsters_vo.md#medusa) - Créature monstrueuse de taille M, Loyal Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 127 (17d8+51) @@ -6891,7 +6891,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Méphite de glace -- NameVO: [Ice Mephit](monsters_vo.md#ice-mephit) +- AltName: [Ice Mephit](monsters_vo.md#ice-mephit) - Élémentaire de taille P, Neutre Mauvais - **Classe d'armure** 11 - **Points de vie** 21 (6d6) @@ -6931,7 +6931,7 @@ _Touché :_ 3 (1d4+1) dégâts tranchants plus 2 (1d4) dégâts de froid. [][MonsterHD] # Méphite de magma -- NameVO: [Magma Mephit](monsters_vo.md#magma-mephit) +- AltName: [Magma Mephit](monsters_vo.md#magma-mephit) - Élémentaire de taille P, Neutre Mauvais - **Classe d'armure** 11 - **Points de vie** 22 (5d6+5) @@ -6969,7 +6969,7 @@ _Touché :_ 3 (1d4+1) dégâts tranchants plus 2 (1d4) dégâts de feu. [][MonsterHD] # Méphite de poussière -- NameVO: [Dust Mephit](monsters_vo.md#dust-mephit) +- AltName: [Dust Mephit](monsters_vo.md#dust-mephit) - Élémentaire de taille P, Neutre Mauvais - **Classe d'armure** 12 - **Points de vie** 17 (5d6) @@ -7007,7 +7007,7 @@ Une créature peut retenter le jet de sauvegarde à la fin de chacun de ses tour [][MonsterHD] # Méphite de vapeur -- NameVO: [Steam Mephit](monsters_vo.md#steam-mephit) +- AltName: [Steam Mephit](monsters_vo.md#steam-mephit) - Élémentaire de taille P, Neutre Mauvais - **Classe d'armure** 10 - **Points de vie** 21 (6d6) @@ -7043,7 +7043,7 @@ Les créatures dans cette zone doivent chacune réussir un jet de sauvegarde de [][MonsterHD] # Merrow -- NameVO: [Merrow](monsters_vo.md#merrow) +- AltName: [Merrow](monsters_vo.md#merrow) - Créature monstrueuse de taille G, Chaotique Mauvais - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 45 (6d10+12) @@ -7083,7 +7083,7 @@ _Touché :_ 8 (1d8+4) dégâts perforants. [][MonsterHD] # Mimique -- NameVO: [Mimic](monsters_vo.md#mimic) +- AltName: [Mimic](monsters_vo.md#mimic) - Créature monstrueuse (métamorphe) de taille M, Neutre - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 58 (9d8+18) @@ -7126,7 +7126,7 @@ _Touché :_ 7 (1d8+3) dégâts contondants. Si la mimique est sous forme d'objet [][MonsterHD] # Minotaure -- NameVO: [Minotaur](monsters_vo.md#minotaur) +- AltName: [Minotaur](monsters_vo.md#minotaur) - Créature monstrueuse de taille G, Chaotique Mauvais - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 76 (9d10+27) @@ -7165,7 +7165,7 @@ _Touché :_ 17 (2d12+4) dégâts tranchants. [][MonsterHD] # Molosse infernal -- NameVO: [Hell Hound](monsters_vo.md#hell-hound) +- AltName: [Hell Hound](monsters_vo.md#hell-hound) - Fiélon de taille M, Loyal Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 45 (7d8+14) @@ -7199,7 +7199,7 @@ _Touché :_ 7 (1d8+3) dégâts perforants plus 7 (2d6) dégâts de feu. [][MonsterHD] # Momie -- NameVO: [Mummy](monsters_vo.md#mummy) +- AltName: [Mummy](monsters_vo.md#mummy) - Mort-vivant de taille M, Loyal Mauvais - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 58 (9d8+18) @@ -7234,7 +7234,7 @@ Si la cible peut voir la momie, elle doit réussir un jet de sauvegarde de Sages [][MonsterHD] # Momie auguste -- NameVO: [Mummy Lord](monsters_vo.md#mummy-lord) +- AltName: [Mummy Lord](monsters_vo.md#mummy-lord) - Mort-vivant de taille M, Loyal Mauvais - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 97 (13d8+39) @@ -7309,7 +7309,7 @@ Les créatures autres que les morts-vivants, situées à 3 mètres ou moins de l [][MonsterHD] # Naga corrupteur -- NameVO: [Spirit Naga](monsters_vo.md#spirit-naga) +- AltName: [Spirit Naga](monsters_vo.md#spirit-naga) - Créature monstrueuse de taille G, Chaotique Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 75 (10d10+20) @@ -7354,7 +7354,7 @@ _Touché :_ 7 (1d6+4) dégâts perforants et la cible doit effectuer un jet de s [][MonsterHD] # Naga gardien -- NameVO: [Guardian Naga](monsters_vo.md#guardian-naga) +- AltName: [Guardian Naga](monsters_vo.md#guardian-naga) - Créature monstrueuse de taille G, Loyal Bon - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 127 (15d10+45) @@ -7405,7 +7405,7 @@ _Touché :_ 8 (1d8+4) dégâts perforants et la cible doit effectuer un jet de s [][MonsterHD] # Nécrophage -- NameVO: [Wight](monsters_vo.md#wight) +- AltName: [Wight](monsters_vo.md#wight) - Mort-vivant de taille M, Neutre Mauvais - **Classe d'armure** 14 (armure de cuir clouté) - **Points de vie** 45 (6d8+18) @@ -7449,7 +7449,7 @@ _Touché :_ 6 (1d8+2) dégâts tranchants ou 7 (1d10+2) dégâts tranchants si e [][MonsterHD] # Armure animée -- NameVO: [Animated Armor](monsters_vo.md#animated-armor) +- AltName: [Animated Armor](monsters_vo.md#animated-armor) - Créature artificielle de taille M, non-alignée - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 33 (6d8+6) @@ -7483,7 +7483,7 @@ _Touché :_ 5 (1d6+2) dégâts contondants. [][MonsterHD] # Épée volante -- NameVO: [Flying Sword](monsters_vo.md#flying-sword) +- AltName: [Flying Sword](monsters_vo.md#flying-sword) - Créature artificielle de taille P, non-alignée - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 17 (5d6) @@ -7516,7 +7516,7 @@ _Touché :_ 5 (1d8+1) dégâts tranchants. [][MonsterHD] # Tapis étrangleur -- NameVO: [Rug of Smothering](monsters_vo.md#rug-of-smothering) +- AltName: [Rug of Smothering](monsters_vo.md#rug-of-smothering) - Créature artificielle de taille G, non-alignée - **Classe d'armure** 12 - **Points de vie** 33 (6d10) @@ -7554,7 +7554,7 @@ De plus, au début de chacun des tours de la cible, celle-ci subit 10 (2d6+3) d [][MonsterHD] # Ogre -- NameVO: [Ogre](monsters_vo.md#ogre) +- AltName: [Ogre](monsters_vo.md#ogre) - Géant de taille G, Chaotique Mauvais - **Classe d'armure** 11 (armure de peau) - **Points de vie** 59 (7d10+21) @@ -7582,7 +7582,7 @@ _Touché :_ 13 (2d8+4) dégâts contondants. [][MonsterHD] # Ombre -- NameVO: [Shadow](monsters_vo.md#shadow) +- AltName: [Shadow](monsters_vo.md#shadow) - Mort-vivant de taille M, Chaotique Mauvais - **Classe d'armure** 12 - **Points de vie** 16 (3d8+3) @@ -7621,7 +7621,7 @@ Si un humanoïde non-mauvais meurt à cause de cette attaque, une nouvelle ombre [][MonsterHD] # Oni -- NameVO: [Oni](monsters_vo.md#oni) +- AltName: [Oni](monsters_vo.md#oni) - Géant de taille G, Loyal Mauvais - **Classe d'armure** 16 (cotte de mailles) - **Points de vie** 110 (13d10+39) @@ -7737,7 +7737,7 @@ _Touché :_ 5 (1d6+2) dégâts contondants. [][MonsterHD] # Otyugh -- NameVO: [Otyugh](monsters_vo.md#otyugh) +- AltName: [Otyugh](monsters_vo.md#otyugh) - Aberration de taille G, Neutre - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 114 (12d10+48) @@ -7778,7 +7778,7 @@ L'otyugh a deux tentacules dont chacun peut empoigner une cible. [][MonsterHD] # Oxydeur -- NameVO: [Rust Monster](monsters_vo.md#rust-monster) +- AltName: [Rust Monster](monsters_vo.md#rust-monster) - Créature monstrueuse de taille M, non-alignée - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 27 (5d8+5) @@ -7861,7 +7861,7 @@ Une fois accroché, le parasite absorbe à la cible un emplacement de sort du pl [][MonsterHD] # Pégase -- NameVO: [Pegasus](monsters_vo.md#pegasus) +- AltName: [Pegasus](monsters_vo.md#pegasus) - Céleste de taille G, Chaotique Bon - **Classe d'armure** 12 - **Points de vie** 59 (7d10+21) @@ -7887,7 +7887,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants. [][MonsterHD] # Pseudodragon -- NameVO: [Pseudodragon](monsters_vo.md#pseudodragon) +- AltName: [Pseudodragon](monsters_vo.md#pseudodragon) - Dragon de taille TP, Neutre Bon - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 7 (2d4+2) @@ -7924,7 +7924,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. [][MonsterHD] # Rakshasa -- NameVO: [Rakshasa](monsters_vo.md#rakshasa) +- AltName: [Rakshasa](monsters_vo.md#rakshasa) - Fiélon de taille M, Loyal Mauvais - **Classe d'armure** 16 (armure naturelle) - **Points de vie** 110 (13d8+52) @@ -8001,7 +8001,7 @@ _Touché :_ 40 (6d10+7) dégâts perforants plus 10 (3d6) dégât de feu. Si la [][MonsterHD] # Roc -- NameVO: [Roc](monsters_vo.md#roc) +- AltName: [Roc](monsters_vo.md#roc) - Créature monstrueuse de taille Gig, non-alignée - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 248 (16d20+80) @@ -8037,7 +8037,7 @@ _Touché :_ 23 (4d6+9) dégâts tranchants et la cible est [empoignée] (évasio [][MonsterHD] # Sahuagin -- NameVO: [Sahuagin](monsters_vo.md#sahuagin) +- AltName: [Sahuagin](monsters_vo.md#sahuagin) - Humanoïde (sahuagin) de taille M, Loyal Mauvais - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 22 (4d8+4) @@ -8134,7 +8134,7 @@ _Touché :_ 3 (1d4+1) dégâts perforants. [][MonsterHD] # Salamandre -- NameVO: [Salamander](monsters_vo.md#salamander) +- AltName: [Salamander](monsters_vo.md#salamander) - Élémentaire de taille G, Neutre Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 90 (12d10+24) @@ -8173,7 +8173,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants plus 7 (2d6) dégâts de feu et la c [][MonsterHD] # Satyre -- NameVO: [Satyr](monsters_vo.md#satyr) +- AltName: [Satyr](monsters_vo.md#satyr) - Fée de taille M, Chaotique Neutre - **Classe d'armure** 14 (armure de cuir) - **Points de vie** 31 (7d8) @@ -8294,7 +8294,7 @@ _Touché :_ 19 (3d6+9) dégâts contondants. Si la cible est une créature, elle [][MonsterHD] # Spectre -- NameVO: [Specter](monsters_vo.md#specter) +- AltName: [Specter](monsters_vo.md#specter) - Mort-vivant de taille M, Chaotique Mauvais - **Classe d'armure** 12 - **Points de vie** 22 (5d8) @@ -8327,7 +8327,7 @@ _Touché :_ 10 (3d6) dégâts nécrotiques. La cible doit réussir un jet de sau [][MonsterHD] # Androsphinx -- NameVO: [Androsphinx](monsters_vo.md#androsphinx) +- AltName: [Androsphinx](monsters_vo.md#androsphinx) - Créature monstrueuse de taille G, Loyal Neutre - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 199 (19d10+95) @@ -8397,7 +8397,7 @@ Le sphinx peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Gynosphinx -- NameVO: [Gynosphinx](monsters_vo.md#gynosphinx) +- AltName: [Gynosphinx](monsters_vo.md#gynosphinx) - Créature monstrueuse de taille G, Loyal Neutre - **Classe d'armure** 17 (armure naturelle) - **Points de vie** 136 (16d10+48) @@ -8457,7 +8457,7 @@ Le sphinx peut effectuer 3 actions légendaires qu'il choisit parmi celles décr [][MonsterHD] # Squelette -- NameVO: [Skeleton](monsters_vo.md#skeleton) +- AltName: [Skeleton](monsters_vo.md#skeleton) - Mort-vivant de taille M, Loyal Mauvais - **Classe d'armure** 13 (débris d'armure) - **Points de vie** 13 (2d8+4) @@ -8488,7 +8488,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Squelette cheval de guerre -- NameVO: [Warhorse Skeleton](monsters_vo.md#warhorse-skeleton) +- AltName: [Warhorse Skeleton](monsters_vo.md#warhorse-skeleton) - Mort-vivant de taille G, Loyal Mauvais - **Classe d'armure** 13 (débris de barde) - **Points de vie** 22 (3d10+6) @@ -8515,7 +8515,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants. [][MonsterHD] # Squelette minotaure -- NameVO: [Minotaur Skeleton](monsters_vo.md#minotaur-skeleton) +- AltName: [Minotaur Skeleton](monsters_vo.md#minotaur-skeleton) - Mort-vivant de taille G, Loyal Mauvais - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 67 (9d10+18) @@ -8550,7 +8550,7 @@ _Touché :_ 17 (2d12+4) dégâts tranchants. [][MonsterHD] # Strige -- NameVO: [Stirge](monsters_vo.md#stirge) +- AltName: [Stirge](monsters_vo.md#stirge) - Bête de taille TP, non-alignée - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 2 (1d4) @@ -8578,7 +8578,7 @@ La strige peut se détacher en dépensant 1,50 mètre de sa vitesse de déplacem [][MonsterHD] # Succube/Incube -- NameVO: [Succubus](monsters_vo.md#succubus) +- AltName: [Succubus](monsters_vo.md#succubus) - Fiélon (métamorphe) de taille M, Neutre Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 66 (12d8+12) @@ -8620,7 +8620,7 @@ Le fiélon ne peut charmer qu'une seule cible à la fois. S'il en charme une aut [][MonsterHD] # Sylvanien -- NameVO: [Treant](monsters_vo.md#treant) +- AltName: [Treant](monsters_vo.md#treant) - Plante de taille TG, Chaotique Bonne - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 138 (12d12+60) @@ -8660,7 +8660,7 @@ _Touché :_ 24 (4d8+6) dégâts contondants. [][MonsterHD] # Tarasque -- NameVO: [Tarrasque](monsters_vo.md#tarrasque) +- AltName: [Tarrasque](monsters_vo.md#tarrasque) - Créature monstrueuse (titan) de taille Gig, non-alignée - **Classe d'armure** 25 (armure naturelle) - **Points de vie** 676 (33d20+330) @@ -8795,7 +8795,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants. [][MonsterHD] # Tertre errant -- NameVO: [Shambling Mound](monsters_vo.md#shambling-mound) +- AltName: [Shambling Mound](monsters_vo.md#shambling-mound) - Plante de taille G, non-alignée - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 136 (16d10+48) @@ -8831,7 +8831,7 @@ _Touché :_ 13 (2d8+4) dégâts contondants. [][MonsterHD] # Torve -- NameVO: [Grimlock](monsters_vo.md#grimlock) +- AltName: [Grimlock](monsters_vo.md#grimlock) - Humanoïde (torve) de taille M, Neutre Mauvais - **Classe d'armure** 11 - **Points de vie** 11 (2d8+2) @@ -8865,7 +8865,7 @@ _Touché :_ 5 (1d4+3) dégâts contondants plus 2 (1d4) dégâts perforants. [][MonsterHD] # Traqueur invisible -- NameVO: [Invisible Stalker](monsters_vo.md#invisible-stalker) +- AltName: [Invisible Stalker](monsters_vo.md#invisible-stalker) - Élémentaire de taille M, neutre - **Classe d'armure** 14 - **Points de vie** 104 (16d8+32) @@ -8900,7 +8900,7 @@ _Touché :_ 10 (2d6+3) dégâts contondants. [][MonsterHD] # Troll -- NameVO: [Troll](monsters_vo.md#troll) +- AltName: [Troll](monsters_vo.md#troll) - Géant de taille G, Chaotique Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 84 (8d10+40) @@ -8937,7 +8937,7 @@ _Touché :_ 7 (1d6+4) dégâts perforants. [][MonsterHD] # Vampire -- NameVO: [Vampire](monsters_vo.md#vampire) +- AltName: [Vampire](monsters_vo.md#vampire) - Mort-vivant (métamorphe) de taille M, Loyal Mauvais - **Classe d'armure** 16 (armure naturelle) - **Points de vie** 144 (17d8+68) @@ -9018,7 +9018,7 @@ Le vampire peut effectuer 3 actions légendaires qu'il choisit parmi celles déc [][MonsterHD] # Vampirien -- NameVO: [Vampire Spawn](monsters_vo.md#vampire-spawn) +- AltName: [Vampire Spawn](monsters_vo.md#vampire-spawn) - Mort-vivant de taille M, Neutre Mauvais - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 82 (11d8+33) @@ -9069,7 +9069,7 @@ _Touché :_ 6 (1d6+3) dégâts perforants plus 7 (2d6) dégâts nécrotiques. Le [][MonsterHD] # Cube gélatineux -- NameVO: [Gelatinous Cube](monsters_vo.md#gelatinous-cube) +- AltName: [Gelatinous Cube](monsters_vo.md#gelatinous-cube) - Vase de taille G, non-alignée - **Classe d'armure** 6 - **Points de vie** 84 (8d10+40) @@ -9116,7 +9116,7 @@ _Touché :_ 10 (3d6) dégâts d'acide. [][MonsterHD] # Gelée ocre -- NameVO: [Ochre Jelly](monsters_vo.md#ochre-jelly) +- AltName: [Ochre Jelly](monsters_vo.md#ochre-jelly) - Vase de taille G, non-alignée - **Classe d'armure** 8 - **Points de vie** 45 (6d10+12) @@ -9153,7 +9153,7 @@ _Touché :_ 9 (2d6+2) dégâts contondants plus 3 (1d6) dégâts d'acide. [][MonsterHD] # Pouding noir -- NameVO: [Black Pudding](monsters_vo.md#black-pudding) +- AltName: [Black Pudding](monsters_vo.md#black-pudding) - Vase de taille G, non-alignée - **Classe d'armure** 7 - **Points de vie** 85 (10d10+30) @@ -9193,7 +9193,7 @@ _Touché :_ 6 (1d6+3) dégâts contondants plus 18 (4d8) dégâts d'acide. De pl [][MonsterHD] # Vase grise -- NameVO: [Gray Ooze](monsters_vo.md#gray-ooze) +- AltName: [Gray Ooze](monsters_vo.md#gray-ooze) - Vase de taille M, non-alignée - **Classe d'armure** 8 - **Points de vie** 22 (3d8+9) @@ -9232,7 +9232,7 @@ _Touché :_ 4 (1d6+1) dégâts contondants plus 7 (2d6) dégâts d'acide et, si [][MonsterHD] # Ver pourpre -- NameVO: [Purple Worm](monsters_vo.md#purple-worm) +- AltName: [Purple Worm](monsters_vo.md#purple-worm) - Créature monstrueuse de taille Gig, non-alignée - **Classe d'armure** 18 (armure naturelle) - **Points de vie** 247 (15d20+90) @@ -9271,7 +9271,7 @@ Si le ver meurt, les créatures avalées ne sont plus [entravées] par lui et pe [][MonsterHD] # Vouivre -- NameVO: [Wyvern](monsters_vo.md#wyvern) +- AltName: [Wyvern](monsters_vo.md#wyvern) - Dragon de taille G, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 110 (13d10+39) @@ -9306,7 +9306,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants. [][MonsterHD] # Xorn -- NameVO: [Xorn](monsters_vo.md#xorn) +- AltName: [Xorn](monsters_vo.md#xorn) - Élémentaire de taille M, Neutre - **Classe d'armure** 19 (armure naturelle) - **Points de vie** 73 (7d8+42) @@ -9346,7 +9346,7 @@ _Touché :_ 13 (3d6+3) dégâts perforants. [][MonsterHD] # Zombi -- NameVO: [Zombie](monsters_vo.md#zombie) +- AltName: [Zombie](monsters_vo.md#zombie) - Mort-vivant de taille M, Neutre Mauvais - **Classe d'armure** 8 - **Points de vie** 22 (3d8+9) @@ -9377,7 +9377,7 @@ _Touché :_ 4 (1d6+1) dégâts contondants. [][MonsterHD] # Zombi ogre -- NameVO: [Ogre Zombie](monsters_vo.md#ogre-zombie) +- AltName: [Ogre Zombie](monsters_vo.md#ogre-zombie) - Mort-vivant de taille G, Neutre Mauvais - **Classe d'armure** 8 - **Points de vie** 85 (9d10+36) @@ -9408,7 +9408,7 @@ _Touché :_ 13 (2d8+4) dégâts contondants. [][MonsterHD] # Aigle -- NameVO: [Eagle](monsters_vo.md#eagle) +- AltName: [Eagle](monsters_vo.md#eagle) - Bête de taille P, non-alignée - **Classe d'armure** 12 - **Points de vie** 3 (1d6) @@ -9437,7 +9437,7 @@ _Touché :_ 4 (1d4+2) dégâts tranchants. [][MonsterHD] # Aigle géant -- NameVO: [Giant Eagle](monsters_vo.md#giant-eagle) +- AltName: [Giant Eagle](monsters_vo.md#giant-eagle) - Bête de taille G, neutre bon - **Classe d'armure** 13 - **Points de vie** 26 (4d10+4) @@ -9472,7 +9472,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants. [][MonsterHD] # Araignée -- NameVO: [Spider](monsters_vo.md#spider) +- AltName: [Spider](monsters_vo.md#spider) - Bête de taille TP, non-alignée - **Classe d'armure** 12 - **Points de vie** 1 (1d4-1) @@ -9505,7 +9505,7 @@ _Touché :_ 1 dégât perforant et la cible doit effectuer un jet de sauvegarde [][MonsterHD] # Araignée de phase -- NameVO: [Phase Spider](monsters_vo.md#phase-spider) +- AltName: [Phase Spider](monsters_vo.md#phase-spider) - Bête de taille G, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 32 (5d10+5) @@ -9538,7 +9538,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants et la cible doit effectuer un jet de [][MonsterHD] # Araignée géante -- NameVO: [Giant Spider](monsters_vo.md#giant-spider) +- AltName: [Giant Spider](monsters_vo.md#giant-spider) - Bête de taille G, non-alignée - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 26 (4d10+4) @@ -9575,7 +9575,7 @@ _Touché :_ la cible est [entravée] par la toile. Par une action, la cible [ent [][MonsterHD] # Araignée-loup géante -- NameVO: [Giant Wolf Spider](monsters_vo.md#giant-wolf-spider) +- AltName: [Giant Wolf Spider](monsters_vo.md#giant-wolf-spider) - Bête de taille M, non-alignée - **Classe d'armure** 13 - **Points de vie** 11 (2d8+2) @@ -9608,7 +9608,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants et la cible doit effectuer un jet de s [][MonsterHD] # Arbre éveillé -- NameVO: [Awakened Tree](monsters_vo.md#awakened-tree) +- AltName: [Awakened Tree](monsters_vo.md#awakened-tree) - Plante de taille TG, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 59 (7d12+14) @@ -9638,7 +9638,7 @@ _Touché :_ 14 (3d6+4) dégâts contondants. [][MonsterHD] # Arbuste éveillé -- NameVO: [Awakened Shrub](monsters_vo.md#awakened-shrub) +- AltName: [Awakened Shrub](monsters_vo.md#awakened-shrub) - Plante de taille P, non-alignée - **Classe d'armure** 9 - **Points de vie** 10 (3d6) @@ -9668,7 +9668,7 @@ _Touché :_ 1 (1d4-1) dégâts tranchants. [][MonsterHD] # Babouin -- NameVO: [Baboon](monsters_vo.md#baboon) +- AltName: [Baboon](monsters_vo.md#baboon) - Bête de taille P, non-alignée - **Classe d'armure** 12 - **Points de vie** 3 (1d6) @@ -9696,7 +9696,7 @@ _Touché :_ 1 (1d4-1) dégâts perforants. [][MonsterHD] # Bec de hache -- NameVO: [Axe Beak](monsters_vo.md#axe-beak) +- AltName: [Axe Beak](monsters_vo.md#axe-beak) - Bête de taille G, non-alignée - **Classe d'armure** 11 - **Points de vie** 19 (3d10+3) @@ -9720,7 +9720,7 @@ _Touché :_ 6 (1d8+2) dégâts tranchants. [][MonsterHD] # Belette -- NameVO: [Weasel](monsters_vo.md#weasel) +- AltName: [Weasel](monsters_vo.md#weasel) - Bête de taille TP, non-alignée - **Classe d'armure** 13 - **Points de vie** 1 (1d4-1) @@ -9749,7 +9749,7 @@ _Touché :_ 1 dégât perforant. [][MonsterHD] # Belette géante -- NameVO: [Giant Weasel](monsters_vo.md#giant-weasel) +- AltName: [Giant Weasel](monsters_vo.md#giant-weasel) - Bête de taille M, non-alignée - **Classe d'armure** 13 - **Points de vie** 9 (2d8) @@ -9778,7 +9778,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants. [][MonsterHD] # Blaireau -- NameVO: [Badger](monsters_vo.md#badger) +- AltName: [Badger](monsters_vo.md#badger) - Bête de taille TP, non-alignée - **Classe d'armure** 10 - **Points de vie** 3 (1d4+1) @@ -9806,7 +9806,7 @@ _Touché :_ 1 dégât perforant. [][MonsterHD] # Blaireau géant -- NameVO: [Giant Badger](monsters_vo.md#giant-badger) +- AltName: [Giant Badger](monsters_vo.md#giant-badger) - Bête de taille M, non-alignée - **Classe d'armure** 10 - **Points de vie** 13 (2d8+4) @@ -9840,7 +9840,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants. [][MonsterHD] # Chacal -- NameVO: [Jackal](monsters_vo.md#jackal) +- AltName: [Jackal](monsters_vo.md#jackal) - Bête de taille P, non-alignée - **Classe d'armure** 12 - **Points de vie** 3 (1d6) @@ -9871,7 +9871,7 @@ _Touché :_ 1 (1d4-1) dégâts perforants. [][MonsterHD] # Chameau -- NameVO: [Camel](monsters_vo.md#camel) +- AltName: [Camel](monsters_vo.md#camel) - Bête de taille G, non-alignée - **Classe d'armure** 9 - **Points de vie** 15 (2d10+4) @@ -9895,7 +9895,7 @@ _Touché :_ 2 (1d4) dégâts contondants. [][MonsterHD] # Chat -- NameVO: [Cat](monsters_vo.md#cat) +- AltName: [Cat](monsters_vo.md#cat) - Bête de taille TP, non-alignée - **Classe d'armure** 12 - **Points de vie** 2 (1d4) @@ -9924,7 +9924,7 @@ _Touché :_ 1 dégât tranchant. [][MonsterHD] # Chauve-souris -- NameVO: [Bat](monsters_vo.md#bat) +- AltName: [Bat](monsters_vo.md#bat) - Bête de taille TP, non-alignée - **Classe d'armure** 12 - **Points de vie** 1 (1d4-1) @@ -9954,7 +9954,7 @@ _Touché :_ 1 dégât perforant. [][MonsterHD] # Chauve-souris géante -- NameVO: [Giant Bat](monsters_vo.md#giant-bat) +- AltName: [Giant Bat](monsters_vo.md#giant-bat) - Bête de taille G, non-alignée - **Classe d'armure** 13 - **Points de vie** 22 (4d10) @@ -9984,7 +9984,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Cheval de guerre -- NameVO: [Warhorse](monsters_vo.md#warhorse) +- AltName: [Warhorse](monsters_vo.md#warhorse) - Bête de taille G, non-alignée - **Classe d'armure** 11 - **Points de vie** 19 (3d10+3) @@ -10079,7 +10079,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants. [][MonsterHD] # Cheval de selle -- NameVO: [Riding Horse](monsters_vo.md#riding-horse) +- AltName: [Riding Horse](monsters_vo.md#riding-horse) - Bête de taille G, non-alignée - **Classe d'armure** 10 - **Points de vie** 13 (2d10+2) @@ -10103,7 +10103,7 @@ _Touché :_ 8 (2d4+3) dégâts contondants. [][MonsterHD] # Cheval de trait -- NameVO: [Draft Horse](monsters_vo.md#draft-horse) +- AltName: [Draft Horse](monsters_vo.md#draft-horse) - Bête de taille G, non-alignée - **Classe d'armure** 10 - **Points de vie** 19 (3d10+3) @@ -10127,7 +10127,7 @@ _Touché :_ 9 (2d4+4) dégâts contondants. [][MonsterHD] # Chèvre -- NameVO: [Goat](monsters_vo.md#goat) +- AltName: [Goat](monsters_vo.md#goat) - Bête de taille M, non-alignée - **Classe d'armure** 10 - **Points de vie** 4 (1d8) @@ -10157,7 +10157,7 @@ _Touché :_ 3 (1d4+1) dégâts contondants. [][MonsterHD] # Chèvre géante -- NameVO: [Giant Goat](monsters_vo.md#giant-goat) +- AltName: [Giant Goat](monsters_vo.md#giant-goat) - Bête de taille G, non-alignée - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 19 (3d10+3) @@ -10187,7 +10187,7 @@ _Touché :_ 8 (2d4+3) dégâts contondants. [][MonsterHD] # Chevreuil -- NameVO: [Deer](monsters_vo.md#deer) +- AltName: [Deer](monsters_vo.md#deer) - Bête de taille M, non-alignée - **Classe d'armure** 13 - **Points de vie** 4 (1d8) @@ -10211,7 +10211,7 @@ _Touché :_ 2 (1d4) dégâts perforants. [][MonsterHD] # Chien du trépas -- NameVO: [Death Dog](monsters_vo.md#death-dog) +- AltName: [Death Dog](monsters_vo.md#death-dog) - Créature monstrueuse de taille M, Neutre Mauvais - **Classe d'armure** 12 - **Points de vie** 39 (6d8+12) @@ -10242,7 +10242,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. Si la cible est une créature, elle d [][MonsterHD] # Chien esquiveur -- NameVO: [Blink Dog](monsters_vo.md#blink-dog) +- AltName: [Blink Dog](monsters_vo.md#blink-dog) - Fée de taille M, Loyal Bon - **Classe d'armure** 13 - **Points de vie** 22 (4d8+4) @@ -10273,7 +10273,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants. [][MonsterHD] # Chouette -- NameVO: [Owl](monsters_vo.md#owl) +- AltName: [Owl](monsters_vo.md#owl) - Bête de taille TP, non-alignée - **Classe d'armure** 11 - **Points de vie** 1 (1d4-1) @@ -10304,7 +10304,7 @@ _Touché :_ 1 dégât tranchant. [][MonsterHD] # Chouette géante -- NameVO: [Giant Owl](monsters_vo.md#giant-owl) +- AltName: [Giant Owl](monsters_vo.md#giant-owl) - Bête de taille G, neutre - **Classe d'armure** 12 - **Points de vie** 19 (3d10+3) @@ -10335,7 +10335,7 @@ _Touché :_ 8 (2d6+1) dégâts tranchants. [][MonsterHD] # Corbeau -- NameVO: [Raven](monsters_vo.md#raven) +- AltName: [Raven](monsters_vo.md#raven) - Bête de taille TP, non-alignée - **Classe d'armure** 12 - **Points de vie** 1 (1d4-1) @@ -10364,7 +10364,7 @@ _Touché :_ 1 dégât perforant. [][MonsterHD] # Crabe -- NameVO: [Crab](monsters_vo.md#crab) +- AltName: [Crab](monsters_vo.md#crab) - Bête de taille TP, non-alignée - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 2 (1d4) @@ -10393,7 +10393,7 @@ _Touché :_ 1 dégât contondant. [][MonsterHD] # Crabe géant -- NameVO: [Giant Crab](monsters_vo.md#giant-crab) +- AltName: [Giant Crab](monsters_vo.md#giant-crab) - Bête de taille M, non-alignée - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 13 (3d8) @@ -10422,7 +10422,7 @@ _Touché :_ 4 (1d6+1) dégât contondant et la cible est [empoignée] (évasion [][MonsterHD] # Crapaud géant -- NameVO: [Giant Toad](monsters_vo.md#giant-toad) +- AltName: [Giant Toad](monsters_vo.md#giant-toad) - Bête de taille G, non-alignée - **Classe d'armure** 11 - **Points de vie** 39 (6d10+6) @@ -10456,7 +10456,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants plus 5 (1d10) dégâts de poison et l [][MonsterHD] # Crocodile -- NameVO: [Crocodile](monsters_vo.md#crocodile) +- AltName: [Crocodile](monsters_vo.md#crocodile) - Bête de taille G, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 19 (3d10+3) @@ -10485,7 +10485,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants et la cible est [empoignée] (évasio [][MonsterHD] # Crocodile géant -- NameVO: [Giant Crocodile](monsters_vo.md#giant-crocodile) +- AltName: [Giant Crocodile](monsters_vo.md#giant-crocodile) - Bête de taille TG, non-alignée - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 85 (9d12+27) @@ -10520,7 +10520,7 @@ _Touché :_ 14 (2d8+5) dégâts contondants. Si la cible est une créature, elle [][MonsterHD] # Élan -- NameVO: [Elk](monsters_vo.md#elk) +- AltName: [Elk](monsters_vo.md#elk) - Bête de taille G, non-alignée - **Classe d'armure** 10 - **Points de vie** 13 (2d10+2) @@ -10552,7 +10552,7 @@ _Touché :_ 8 (2d4+3) dégâts contondants. [][MonsterHD] # Élan géant -- NameVO: [Giant Elk](monsters_vo.md#giant-elk) +- AltName: [Giant Elk](monsters_vo.md#giant-elk) - Bête de taille TG, non-alignée - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 42 (5d12+10) @@ -10585,7 +10585,7 @@ _Touché :_ 22 (4d8+4) dégâts contondants. [][MonsterHD] # Éléphant -- NameVO: [Elephant](monsters_vo.md#elephant) +- AltName: [Elephant](monsters_vo.md#elephant) - Bête de taille TG, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 76 (8d12+24) @@ -10617,7 +10617,7 @@ _Touché :_ 22 (3d10+6) dégâts contondants. [][MonsterHD] # Épaulard -- NameVO: [Killer Whale](monsters_vo.md#killer-whale) +- AltName: [Killer Whale](monsters_vo.md#killer-whale) - Bête de taille TG, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 90 (12d12+12) @@ -10650,7 +10650,7 @@ _Touché :_ 21 (5d6+4) dégâts perforants. [][MonsterHD] # Faucon -- NameVO: [Hawk](monsters_vo.md#hawk) +- AltName: [Hawk](monsters_vo.md#hawk) - Bête de taille TP, non-alignée - **Classe d'armure** 13 - **Points de vie** 1 (1d4-1) @@ -10679,7 +10679,7 @@ _Touché :_ 1 dégât tranchant. [][MonsterHD] # Faucon de sang -- NameVO: [Blood Hawk](monsters_vo.md#blood-hawk) +- AltName: [Blood Hawk](monsters_vo.md#blood-hawk) - Bête de taille P, non-alignée - **Classe d'armure** 12 - **Points de vie** 7 (2d6) @@ -10710,7 +10710,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. [][MonsterHD] # Grand singe -- NameVO: [Ape](monsters_vo.md#ape) +- AltName: [Ape](monsters_vo.md#ape) - Bête de taille M, non-alignée - **Classe d'armure** 12 - **Points de vie** 19 (3d8+6) @@ -10741,7 +10741,7 @@ _Touché :_ 6 (1d6+3) dégâts contondants. [][MonsterHD] # Grenouille -- NameVO: [Frog](monsters_vo.md#frog) +- AltName: [Frog](monsters_vo.md#frog) - Bête de taille TP, non-alignée - **Classe d'armure** 11 - **Points de vie** 1 (1d4-1) @@ -10766,7 +10766,7 @@ _Touché :_ 6 (1d6+3) dégâts contondants. [][MonsterHD] # Grenouille géante -- NameVO: [Giant Frog](monsters_vo.md#giant-frog) +- AltName: [Giant Frog](monsters_vo.md#giant-frog) - Bête de taille M, non-alignée - **Classe d'armure** 11 - **Points de vie** 18 (4d8) @@ -10801,7 +10801,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants et la cible est [empoignée] (évasion [][MonsterHD] # Guêpe géante -- NameVO: [Giant Wasp](monsters_vo.md#giant-wasp) +- AltName: [Giant Wasp](monsters_vo.md#giant-wasp) - Bête de taille M, non-alignée - **Classe d'armure** 12 - **Points de vie** 13 (3d8) @@ -10887,7 +10887,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants. [][MonsterHD] # Hippocampe -- NameVO: [Sea Horse](monsters_vo.md#sea-horse) +- AltName: [Sea Horse](monsters_vo.md#sea-horse) - Bête de taille TP, non-alignée - **Classe d'armure** 11 - **Points de vie** 1 (1d4-1) @@ -10909,7 +10909,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants. [][MonsterHD] # Hippocampe géant -- NameVO: [Giant Sea Horse](monsters_vo.md#giant-sea-horse) +- AltName: [Giant Sea Horse](monsters_vo.md#giant-sea-horse) - Bête de taille G, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 16 (3d10) @@ -10939,7 +10939,7 @@ _Touché :_ 4 (1d6+1) dégâts contondants. [][MonsterHD] # Hyène -- NameVO: [Hyena](monsters_vo.md#hyena) +- AltName: [Hyena](monsters_vo.md#hyena) - Bête de taille M, non-alignée - **Classe d'armure** 11 - **Points de vie** 5 (1d8+1) @@ -10968,7 +10968,7 @@ _Touché :_ 3 (1d6) dégâts perforants. [][MonsterHD] # Hyène géante -- NameVO: [Giant Hyena](monsters_vo.md#giant-hyena) +- AltName: [Giant Hyena](monsters_vo.md#giant-hyena) - Bête de taille G, non-alignée - **Classe d'armure** 12 - **Points de vie** 45 (6d10+12) @@ -10997,7 +10997,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants. [][MonsterHD] # Lézard -- NameVO: [Lizard](monsters_vo.md#lizard) +- AltName: [Lizard](monsters_vo.md#lizard) - Bête de taille TP, non-alignée - **Classe d'armure** 10 - **Points de vie** 2 (1d4) @@ -11021,7 +11021,7 @@ _Touché :_ 1 dégât perforant. [][MonsterHD] # Lézard géant -- NameVO: [Giant Lizard](monsters_vo.md#giant-lizard) +- AltName: [Giant Lizard](monsters_vo.md#giant-lizard) - Bête de taille G, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 19 (3d10+3) @@ -11045,7 +11045,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants. [][MonsterHD] # Lion -- NameVO: [Lion](monsters_vo.md#lion) +- AltName: [Lion](monsters_vo.md#lion) - Bête de taille G, non-alignée - **Classe d'armure** 12 - **Points de vie** 26 (4d10+4) @@ -11082,7 +11082,7 @@ _Touché :_ 7 (1d8+3) dégâts perforants. [][MonsterHD] # Loup -- NameVO: [Wolf](monsters_vo.md#wolf) +- AltName: [Wolf](monsters_vo.md#wolf) - Bête de taille M, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 11 (2d8+2) @@ -11113,7 +11113,7 @@ _Touché :_ 7 (2d4+2) dégâts perforants. Si la cible est une créature, elle d [][MonsterHD] # Loup arctique -- NameVO: [Winter Wolf](monsters_vo.md#winter-wolf) +- AltName: [Winter Wolf](monsters_vo.md#winter-wolf) - Créature monstrueuse de taille G, Neutre Mauvais - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 75 (10d10+20) @@ -11151,7 +11151,7 @@ Les créatures dans ce cône doivent chacune réussir un jet de sauvegarde de De [][MonsterHD] # Loup sanguinaire -- NameVO: [Dire Wolf](monsters_vo.md#dire-wolf) +- AltName: [Dire Wolf](monsters_vo.md#dire-wolf) - Bête de taille G, non-alignée - **Classe d'armure** 14 (armure naturelle) - **Points de vie** 37 (5d10+10) @@ -11182,7 +11182,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants. Si la cible est une créature, elle [][MonsterHD] # Mammouth -- NameVO: [Mammoth](monsters_vo.md#mammoth) +- AltName: [Mammoth](monsters_vo.md#mammoth) - Bête de taille TG, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 126 (11d12+55) @@ -11214,7 +11214,7 @@ _Touché :_ 29 (4d10+7) dégâts contondants. [][MonsterHD] # Mastiff -- NameVO: [Mastiff](monsters_vo.md#mastiff) +- AltName: [Mastiff](monsters_vo.md#mastiff) - Bête de taille M, non-alignée - **Classe d'armure** 12 - **Points de vie** 5 (1d8+1) @@ -11243,7 +11243,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants. Si la cible est une créature, elle d [][MonsterHD] # Mille-pattes géant -- NameVO: [Giant Centipede](monsters_vo.md#giant-centipede) +- AltName: [Giant Centipede](monsters_vo.md#giant-centipede) - Bête de taille P, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 4 (1d6+1) @@ -11267,7 +11267,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants et la cible doit réussir un jet de sa [][MonsterHD] # Mule -- NameVO: [Mule](monsters_vo.md#mule) +- AltName: [Mule](monsters_vo.md#mule) - Bête de taille M, non-alignée - **Classe d'armure** 10 - **Points de vie** 11 (2d8+2) @@ -11297,7 +11297,7 @@ _Touché :_ 4 (1d4+2) dégâts contondants. [][MonsterHD] # Nuée de chauve-souris -- NameVO: [Swarm of Bats](monsters_vo.md#swarm-of-bats) +- AltName: [Swarm of Bats](monsters_vo.md#swarm-of-bats) - Nuée de taille M composée de bêtes de taille TP, non-alignée - **Classe d'armure** 12 - **Points de vie** 22 (5d8) @@ -11331,7 +11331,7 @@ _Touché :_ 5 (2d4) dégâts perforants ou 2 (1d4) dégâts perforants si la nu [][MonsterHD] # Nuée de corbeaux -- NameVO: [Swarm of Ravens](monsters_vo.md#swarm-of-ravens) +- AltName: [Swarm of Ravens](monsters_vo.md#swarm-of-ravens) - Nuée de taille M composée de bêtes de taille TP, non-alignée - **Classe d'armure** 12 - **Points de vie** 24 (7d8-7) @@ -11362,7 +11362,7 @@ _Touché :_ 7 (2d6) dégâts perforants ou 3 (1d6) dégâts perforants si la nu [][MonsterHD] # Nuée de piranhas -- NameVO: [Swarm of Quippers](monsters_vo.md#swarm-of-quippers) +- AltName: [Swarm of Quippers](monsters_vo.md#swarm-of-quippers) - Nuée de taille M composée de bêtes de taille TP, non-alignée - **Classe d'armure** 13 - **Points de vie** 28 (8d8-8) @@ -11396,7 +11396,7 @@ _Touché :_ 14 (4d6) dégâts perforants ou 7 (2d6) dégâts perforants si la nu [][MonsterHD] # Nuée de rats -- NameVO: [Swarm of Rats](monsters_vo.md#swarm-of-rats) +- AltName: [Swarm of Rats](monsters_vo.md#swarm-of-rats) - Nuée de taille M composée de bêtes de taille TP, non-alignée - **Classe d'armure** 10 - **Points de vie** 24 (7d8-7) @@ -11428,7 +11428,7 @@ _Touché :_ 7 (2d6) dégâts perforants ou 3 (1d6) dégâts perforants si la nu [][MonsterHD] # Nuée de serpents venimeux -- NameVO: [Swarm of Poisonous Snakes](monsters_vo.md#swarm-of-poisonous-snakes) +- AltName: [Swarm of Poisonous Snakes](monsters_vo.md#swarm-of-poisonous-snakes) - Nuée de taille M composée de bêtes de taille TP, non-alignée - **Classe d'armure** 14 - **Points de vie** 36 (8d8) @@ -11458,7 +11458,7 @@ _Touché :_ 7 (2d6) dégâts perforants ou 3 (1d6) dégâts perforants si la nu [][MonsterHD] # Nuée d'insectes -- NameVO: [Swarm of Insects](monsters_vo.md#swarm-of-insects) +- AltName: [Swarm of Insects](monsters_vo.md#swarm-of-insects) - Nuée de taille M composée de bêtes de taille TP, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 22 (5d8) @@ -11504,7 +11504,7 @@ Il existe plusieurs types d'insectes susceptibles de se rassembler en nuées, et [][MonsterHD] # Ours brun -- NameVO: [Brown Bear](monsters_vo.md#brown-bear) +- AltName: [Brown Bear](monsters_vo.md#brown-bear) - Bête de taille G, non-alignée - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 34 (4d10+12) @@ -11539,7 +11539,7 @@ _Touché :_ 8 (1d8+4) dégâts perforants. [][MonsterHD] # Ours noir -- NameVO: [Black Bear](monsters_vo.md#black-bear) +- AltName: [Black Bear](monsters_vo.md#black-bear) - Bête de taille M, non-alignée - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 19 (3d8+6) @@ -11574,7 +11574,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Ours polaire -- NameVO: [Polar Bear](monsters_vo.md#polar-bear) +- AltName: [Polar Bear](monsters_vo.md#polar-bear) - Bête de taille G, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 42 (5d10+15) @@ -11609,7 +11609,7 @@ _Touché :_ 9 (1d8+5) dégâts perforants. [][MonsterHD] # Panthère -- NameVO: [Panther](monsters_vo.md#panther) +- AltName: [Panther](monsters_vo.md#panther) - Bête de taille G, non-alignée - **Classe d'armure** 12 - **Points de vie** 13 (3d8) @@ -11644,7 +11644,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Pieuvre -- NameVO: [Octopus](monsters_vo.md#octopus) +- AltName: [Octopus](monsters_vo.md#octopus) - Bête de taille P, non-alignée - **Classe d'armure** 12 - **Points de vie** 3 (1d6) @@ -11679,7 +11679,7 @@ _Touché :_ 1 dégât contondant et la cible est [empoignée] (évasion DD 10). [][MonsterHD] # Pieuvre géante -- NameVO: [Giant Octopus](monsters_vo.md#giant-octopus) +- AltName: [Giant Octopus](monsters_vo.md#giant-octopus) - Bête de taille G, non-alignée - **Classe d'armure** 11 - **Points de vie** 52 (8d10+8) @@ -11716,7 +11716,7 @@ Jusqu'au terme de cette empoignade, la cible est [entravée] et la pieuvre ne pe [][MonsterHD] # Piranha -- NameVO: [Quipper](monsters_vo.md#quipper) +- AltName: [Quipper](monsters_vo.md#quipper) - Bête de taille TP, non-alignée - **Classe d'armure** 13 - **Points de vie** 1 (1d4-1) @@ -11746,7 +11746,7 @@ _Touché :_ 1 dégât perforant. [][MonsterHD] # Poney -- NameVO: [Pony](monsters_vo.md#pony) +- AltName: [Pony](monsters_vo.md#pony) - Bête de taille M, non-alignée - **Classe d'armure** 10 - **Points de vie** 11 (2d8+2) @@ -11770,7 +11770,7 @@ _Touché :_ 7 (2d4+2) dégâts contondants. [][MonsterHD] # Punaise de feu géante -- NameVO: [Giant Fire Beetle](monsters_vo.md#giant-fire-beetle) +- AltName: [Giant Fire Beetle](monsters_vo.md#giant-fire-beetle) - Bête de taille P, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 4 (1d6+1) @@ -11798,7 +11798,7 @@ _Touché :_ 2 (1d6-1) dégâts tranchants. [][MonsterHD] # Rat -- NameVO: [Rat](monsters_vo.md#rat) +- AltName: [Rat](monsters_vo.md#rat) - Bête de taille TP, non-alignée - **Classe d'armure** 10 - **Points de vie** 1 (1d4-1) @@ -11826,7 +11826,7 @@ _Touché :_ 1 dégât perforant. [][MonsterHD] # Rat géant -- NameVO: [Giant Rat](monsters_vo.md#giant-rat) +- AltName: [Giant Rat](monsters_vo.md#giant-rat) - Bête de taille P, non-alignée - **Classe d'armure** 12 - **Points de vie** 7 (2d6) @@ -11864,7 +11864,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. Si la cible est une créature, elle d [][MonsterHD] # Requin chasseur -- NameVO: [Hunter Shark](monsters_vo.md#hunter-shark) +- AltName: [Hunter Shark](monsters_vo.md#hunter-shark) - Bête de taille G, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 45 (6d10+12) @@ -11895,7 +11895,7 @@ _Touché :_ 13 (2d8+4) dégâts perforants. [][MonsterHD] # Requin de récif -- NameVO: [Reef Shark](monsters_vo.md#reef-shark) +- AltName: [Reef Shark](monsters_vo.md#reef-shark) - Bête de taille M, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 22 (4d8+4) @@ -11926,7 +11926,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants. [][MonsterHD] # Requin géant -- NameVO: [Giant Shark](monsters_vo.md#giant-shark) +- AltName: [Giant Shark](monsters_vo.md#giant-shark) - Bête de taille TG, non-alignée - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 126 (11d12+55) @@ -11957,7 +11957,7 @@ _Touché :_ 22 (3d10+6) dégâts perforants. [][MonsterHD] # Rhinocéros -- NameVO: [Rhinoceros](monsters_vo.md#rhinoceros) +- AltName: [Rhinoceros](monsters_vo.md#rhinoceros) - Bête de taille G, non-alignée - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 45 (6d10+12) @@ -11987,7 +11987,7 @@ _Touché :_ 14 (2d8+5) dégâts contondants. [][MonsterHD] # Sanglier -- NameVO: [Boar](monsters_vo.md#boar) +- AltName: [Boar](monsters_vo.md#boar) - Bête de taille M, non-alignée - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 11 (2d8+2) @@ -12017,7 +12017,7 @@ _Touché :_ 4 (1d6+1) dégâts tranchants. [][MonsterHD] # Sanglier géant -- NameVO: [Giant Boar](monsters_vo.md#giant-boar) +- AltName: [Giant Boar](monsters_vo.md#giant-boar) - Bête de taille G, non-alignée - **Classe d'armure** 12 (armure naturelle) - **Points de vie** 42 (5d10+15) @@ -12047,7 +12047,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants. [][MonsterHD] # Scorpion -- NameVO: [Scorpion](monsters_vo.md#scorpion) +- AltName: [Scorpion](monsters_vo.md#scorpion) - Bête de taille TP, non-alignée - **Classe d'armure** 11 (armure naturelle) - **Points de vie** 1 (1d4-1) @@ -12071,7 +12071,7 @@ _Touché :_ 1 dégât perforant et la cible doit effectuer un jet de sauvegarde [][MonsterHD] # Scorpion géant -- NameVO: [Giant Scorpion](monsters_vo.md#giant-scorpion) +- AltName: [Giant Scorpion](monsters_vo.md#giant-scorpion) - Bête de taille G, non-alignée - **Classe d'armure** 15 (armure naturelle) - **Points de vie** 52 (7d10+14) @@ -12101,7 +12101,7 @@ _Touché :_ 6 (1d8+2) dégâts contondants et la cible est [empoignée] (évasio [][MonsterHD] # Serpent constricteur -- NameVO: [Constrictor Snake](monsters_vo.md#constrictor-snake) +- AltName: [Constrictor Snake](monsters_vo.md#constrictor-snake) - Bête de taille G, non-alignée - **Classe d'armure** 12 - **Points de vie** 13 (2d10+2) @@ -12129,7 +12129,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Serpent constricteur géant -- NameVO: [Giant Constrictor Snake](monsters_vo.md#giant-constrictor-snake) +- AltName: [Giant Constrictor Snake](monsters_vo.md#giant-constrictor-snake) - Bête de taille TG, non-alignée - **Classe d'armure** 12 - **Points de vie** 60 (8d12+8) @@ -12158,7 +12158,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants. [][MonsterHD] # Serpent venimeux -- NameVO: [Poisonous Snake](monsters_vo.md#poisonous-snake) +- AltName: [Poisonous Snake](monsters_vo.md#poisonous-snake) - Bête de taille TP, non-alignée - **Classe d'armure** 13 - **Points de vie** 2 (1d4) @@ -12182,7 +12182,7 @@ _Touché :_ 1 dégât perforant et la cible doit effectuer un jet de sauvegarde [][MonsterHD] # Serpent venimeux géant -- NameVO: [Giant Poisonous Snake](monsters_vo.md#giant-poisonous-snake) +- AltName: [Giant Poisonous Snake](monsters_vo.md#giant-poisonous-snake) - Bête de taille M, non-alignée - **Classe d'armure** 14 - **Points de vie** 11 (2d8+2) @@ -12209,7 +12209,7 @@ Elle subit 10 (3d6) dégâts de poison en cas de jet de sauvegarde raté et la m [][MonsterHD] # Serpent volant -- NameVO: [Flying Snake](monsters_vo.md#flying-snake) +- AltName: [Flying Snake](monsters_vo.md#flying-snake) - Bête de taille TP, non-alignée - **Classe d'armure** 14 - **Points de vie** 5 (2d4) @@ -12237,7 +12237,7 @@ _Touché :_ 1 dégât perforant plus 7 (3d4) dégâts de poison. [][MonsterHD] # Singe géant -- NameVO: [Giant Ape](monsters_vo.md#giant-ape) +- AltName: [Giant Ape](monsters_vo.md#giant-ape) - Bête de taille TG, non-alignée - **Classe d'armure** 12 - **Points de vie** 157 (15d12+60) @@ -12268,7 +12268,7 @@ _Touché :_ 30 (7d6+6) dégâts contondants. [][MonsterHD] # Tigre -- NameVO: [Tiger](monsters_vo.md#tiger) +- AltName: [Tiger](monsters_vo.md#tiger) - Bête de taille G, non-alignée - **Classe d'armure** 12 - **Points de vie** 37 (5d10+10) @@ -12303,7 +12303,7 @@ _Touché :_ 8 (1d10+3) dégâts perforants. [][MonsterHD] # Tigre à dents de sabre -- NameVO: [Saber-Toothed Tiger](monsters_vo.md#saber-toothed-tiger) +- AltName: [Saber-Toothed Tiger](monsters_vo.md#saber-toothed-tiger) - Bête de taille G, non-alignée - **Classe d'armure** 12 - **Points de vie** 52 (7d10+14) @@ -12338,7 +12338,7 @@ _Touché :_ 10 (1d10+5) dégâts perforants. [][MonsterHD] # Vautour -- NameVO: [Vulture](monsters_vo.md#vulture) +- AltName: [Vulture](monsters_vo.md#vulture) - Bête de taille M, non-alignée - **Classe d'armure** 10 - **Points de vie** 5 (1d188+1) @@ -12369,7 +12369,7 @@ _Touché :_ 2 (1d4) dégâts perforants. [][MonsterHD] # Vautour géant -- NameVO: [Giant Vulture](monsters_vo.md#giant-vulture) +- AltName: [Giant Vulture](monsters_vo.md#giant-vulture) - Bête de taille G, Neutre Mauvais - **Classe d'armure** 10 - **Points de vie** 22 (3d10+6) @@ -12406,7 +12406,7 @@ _Touché :_ 9 (2d6+2) dégâts tranchants. [][MonsterHD] # Worg -- NameVO: [Worg](monsters_vo.md#worg) +- AltName: [Worg](monsters_vo.md#worg) - Créature monstrueuse de taille G, Neutre Mauvais - **Classe d'armure** 13 (armure naturelle) - **Points de vie** 26 (4d10+4) @@ -12435,7 +12435,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants. Si la cible est une créature, elle [][MonsterHD] # Acolyte -- NameVO: [Acolyte](monsters_vo.md#acolyte) +- AltName: [Acolyte](monsters_vo.md#acolyte) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 10 - **Points de vie** 9 (2d8) @@ -12468,7 +12468,7 @@ _Touché :_ 2 (1d4) dégâts contondants. [][MonsterHD] # Archimage -- NameVO: [Archmage](monsters_vo.md#archmage) +- AltName: [Archmage](monsters_vo.md#archmage) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 12 (15 avec armure du mage) - **Points de vie** 99 (18d8+18) @@ -12525,7 +12525,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. [][MonsterHD] # Assassin -- NameVO: [Assassin](monsters_vo.md#assassin) +- AltName: [Assassin](monsters_vo.md#assassin) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon - **Classe d'armure** 15 (armure de cuir clouté) - **Points de vie** 78 (12d8+24) @@ -12566,7 +12566,7 @@ _Touché :_ 6 (1d6+3) dégâts perforants et la cible doit effectuer un jet de s [][MonsterHD] # Bandit -- NameVO: [Bandit](monsters_vo.md#bandit) +- AltName: [Bandit](monsters_vo.md#bandit) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Loyal - **Classe d'armure** 12 (armure de cuir) - **Points de vie** 11 (2d8+2) @@ -12594,7 +12594,7 @@ _Touché :_ 4 (1d6+1) dégâts tranchants. [][MonsterHD] # Berserker -- NameVO: [Berserker](monsters_vo.md#berserker) +- AltName: [Berserker](monsters_vo.md#berserker) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement Chaotique - **Classe d'armure** 13 (armure de peau) - **Points de vie** 67 (9d8+27) @@ -12622,7 +12622,7 @@ _Touché :_ 9 (1d12+3) dégâts tranchants. [][MonsterHD] # Capitaine bandit -- NameVO: [Bandit Captain](monsters_vo.md#bandit-captain) +- AltName: [Bandit Captain](monsters_vo.md#bandit-captain) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Loyal - **Classe d'armure** 15 (armure de cuir clouté) - **Points de vie** 65 (10d8+20) @@ -12658,7 +12658,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants. [][MonsterHD] # Chevalier -- NameVO: [Knight](monsters_vo.md#knight) +- AltName: [Knight](monsters_vo.md#knight) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 18 (harnois) - **Points de vie** 52 (8d8+16) @@ -12699,7 +12699,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants. [][MonsterHD] # Druide -- NameVO: [Druid](monsters_vo.md#druid) +- AltName: [Druid](monsters_vo.md#druid) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 11 (16 avec peau d'écorce) - **Points de vie** 27 (5d8+5) @@ -12734,7 +12734,7 @@ _Touché :_ 3 (1d6) dégâts contondants, 4 (1d8) dégâts contondants s'il est [][MonsterHD] # Ecclésiastique -- NameVO: [Priest](monsters_vo.md#priest) +- AltName: [Priest](monsters_vo.md#priest) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 13 (chemise de mailles) - **Points de vie** 27 (5d8+5) @@ -12775,7 +12775,7 @@ _Touché :_ 3 (1d6) dégâts contondants. [][MonsterHD] # Éclaireur -- NameVO: [Scout](monsters_vo.md#scout) +- AltName: [Scout](monsters_vo.md#scout) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 13 (armure de cuir) - **Points de vie** 16 (3d8+3) @@ -12810,7 +12810,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Espion -- NameVO: [Spy](monsters_vo.md#spy) +- AltName: [Spy](monsters_vo.md#spy) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 12 - **Points de vie** 27 (6d8) @@ -12847,7 +12847,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. [][MonsterHD] # Fanatique de secte -- NameVO: [Cult Fanatic](monsters_vo.md#cult-fanatic) +- AltName: [Cult Fanatic](monsters_vo.md#cult-fanatic) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon - **Classe d'armure** 13 (armure de cuir) - **Points de vie** 33 (6d8+6) @@ -12886,7 +12886,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. [][MonsterHD] # Garde -- NameVO: [Guard](monsters_vo.md#guard) +- AltName: [Guard](monsters_vo.md#guard) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 16 (bouclier, chemise de mailles) - **Points de vie** 11 (2d8+2) @@ -12911,7 +12911,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants ou 5 (1d8+1) dégâts perforants si el [][MonsterHD] # Gladiateur -- NameVO: [Gladiator](monsters_vo.md#gladiator) +- AltName: [Gladiator](monsters_vo.md#gladiator) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 16 (armure de cuir clouté, bouclier) - **Points de vie** 112 (15d8+45) @@ -12955,7 +12955,7 @@ Il doit voir son agresseur et manier une arme de corps à corps pour pouvoir par [][MonsterHD] # Guerrier tribal -- NameVO: [Tribal Warrior](monsters_vo.md#tribal-warrior) +- AltName: [Tribal Warrior](monsters_vo.md#tribal-warrior) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 12 (armure de peau) - **Points de vie** 11 (2d8+2) @@ -12983,7 +12983,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants ou 5 (1d8+1) dégâts perforants si el [][MonsterHD] # Mage -- NameVO: [Mage](monsters_vo.md#mage) +- AltName: [Mage](monsters_vo.md#mage) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 12 (15 avec armure du mage) - **Points de vie** 40 (9d8) @@ -13025,7 +13025,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. [][MonsterHD] # Malfrat -- NameVO: [Thug](monsters_vo.md#thug) +- AltName: [Thug](monsters_vo.md#thug) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que bon - **Classe d'armure** 11 (armure de cuir) - **Points de vie** 32 (5d8+10) @@ -13062,7 +13062,7 @@ Les malfrats sont d'impitoyables hommes de mains doués en matière d'intimidati [][MonsterHD] # Membre de secte -- NameVO: [Cultist](monsters_vo.md#cultist) +- AltName: [Cultist](monsters_vo.md#cultist) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon - **Classe d'armure** 12 (armure de cuir) - **Points de vie** 9 (2d8) @@ -13091,7 +13091,7 @@ _Touché :_ 4 (1d6+1) dégâts tranchants. [][MonsterHD] # Noble -- NameVO: [Noble](monsters_vo.md#noble) +- AltName: [Noble](monsters_vo.md#noble) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 15 (cuirasse) - **Points de vie** 9 (2d8) @@ -13120,7 +13120,7 @@ _Touché :_ 5 (1d8+1) dégâts perforants. [][MonsterHD] # Roturier -- NameVO: [Commoner](monsters_vo.md#commoner) +- AltName: [Commoner](monsters_vo.md#commoner) - Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement - **Classe d'armure** 10 - **Points de vie** 4 (1d8) @@ -13144,7 +13144,7 @@ _Touché :_ 2 (1d4) dégâts contondants. [][MonsterHD] # Vétéran -- NameVO: [Veteran](monsters_vo.md#veteran) +- AltName: [Veteran](monsters_vo.md#veteran) - Humanoïde (n'importe quelle race) de taille M, alignement quelconque - **Classe d'armure** 17 (clibanion) - **Points de vie** 58 (9d8+18) diff --git a/Data/monsters_vo.md b/Data/monsters_vo.md index d7fdf117..b60a9bd3 100644 --- a/Data/monsters_vo.md +++ b/Data/monsters_vo.md @@ -2,13 +2,13 @@ [][Items] # Monsters (SRD) -- NameVO: [Créatures](monsters_hd.md) +- AltName: [Créatures](monsters_hd.md) [][MonsterVO] # Aboleth -- NameVO: [Aboleth] +- AltName: [Aboleth] - Large aberration, lawful evil - **Armor Class** 17 (natural armor) - **Hit Points** 135 (18d10 + 36) @@ -62,7 +62,7 @@ The aboleth can take 3 legendary actions, choosing from the options below. Only [][MonsterVO] # Acolyte -- NameVO: [Acolyte] +- AltName: [Acolyte] - Medium humanoid (any race), any alignment - **Armor Class** 10 - **Hit Points** 9 (2d8) @@ -97,7 +97,7 @@ _Hit_: 2 (1d4) bludgeoning damage. [][MonsterVO] # Eagle -- NameVO: [Aigle] +- AltName: [Aigle] - Small beast, unaligned - **Armor Class** 12 - **Hit Points** 3 (1d6) @@ -128,7 +128,7 @@ _Hit_: 4 (1d4 + 2) slashing damage. [][MonsterVO] # Giant Eagle -- NameVO: [Aigle géant] +- AltName: [Aigle géant] - Large beast, neutral good - **Armor Class** 13 - **Hit Points** 26 (4d10 + 4) @@ -166,7 +166,7 @@ _Hit_: 10 (2d6 + 3) slashing damage. [][MonsterVO] # Androsphinx -- NameVO: [Androsphinx] +- AltName: [Androsphinx] - Large monstrosity, lawful neutral - **Armor Class** 17 (natural armor) - **Hit Points** 199 (19d10 + 95) @@ -238,7 +238,7 @@ The sphinx can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ankheg -- NameVO: [Ankheg] +- AltName: [Ankheg] - Large monstrosity, unaligned - **Armor Class** 14 (natural armor), 11 while prone - **Hit Points** 39 (6d10 + 6) @@ -267,7 +267,7 @@ _Hit_: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a [][MonsterVO] # Spider -- NameVO: [Araignée] +- AltName: [Araignée] - Tiny beast, unaligned - **Armor Class** 12 - **Hit Points** 1 (1d4 - 1) @@ -302,7 +302,7 @@ _Hit_: 1 piercing damage, and the target must succeed on a DC 9 Constitution sav [][MonsterVO] # Phase Spider -- NameVO: [Araignée de phase] +- AltName: [Araignée de phase] - Large monstrosity, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 32 (5d10 + 5) @@ -337,7 +337,7 @@ _Hit_: 7 (1d10 + 2) piercing damage, and the target must make a DC 11 Constituti [][MonsterVO] # Giant Spider -- NameVO: [Araignée géante] +- AltName: [Araignée géante] - Large beast, unaligned - **Armor Class** 14 (natural armor) - **Hit Points** 26 (4d10 + 4) @@ -376,7 +376,7 @@ _Hit_: The target is restrained by webbing. As an action, the restrained target [][MonsterVO] # Giant Wolf Spider -- NameVO: [Araignée-loup géante] +- AltName: [Araignée-loup géante] - Medium beast, unaligned - **Armor Class** 13 - **Hit Points** 11 (2d8 + 2) @@ -411,7 +411,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, and the target must make a DC 11 Constitutio [][MonsterVO] # Awakened Tree -- NameVO: [Arbre éveillé] +- AltName: [Arbre éveillé] - Huge plant, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 59 (7d12 + 14) @@ -443,7 +443,7 @@ _Hit_: 14 (3d6 + 4) bludgeoning damage. [][MonsterVO] # Awakened Shrub -- NameVO: [Arbuste éveillé] +- AltName: [Arbuste éveillé] - Small plant, unaligned - **Armor Class** 9 - **Hit Points** 10 (3d6) @@ -475,7 +475,7 @@ _Hit_: 1 (1d4 - 1) slashing damage. [][MonsterVO] # Archmage -- NameVO: [Archimage] +- AltName: [Archimage] - Medium humanoid (any race), any alignment - **Armor Class** 12 (15 with - **Hit Points** 99 (18d8 + 18) @@ -532,7 +532,7 @@ _Hit_: 4 (1d4 + 2) piercing damage. [][MonsterVO] # Animated Armor -- NameVO: [Armure animée] +- AltName: [Armure animée] - Medium construct, unaligned - **Armor Class** 18 (natural armor) - **Hit Points** 33 (6d8 + 6) @@ -568,7 +568,7 @@ _Hit_: 5 (1d6 + 2) bludgeoning damage. [][MonsterVO] # Assassin -- NameVO: [Assassin] +- AltName: [Assassin] - Medium humanoid (any race), any non-good alignment - **Armor Class** 15 (studded leather) - **Hit Points** 78 (12d8 + 24) @@ -611,7 +611,7 @@ _Hit_: 7 (1d8 + 3) piercing damage, and the target must make a DC 15 Constitutio [][MonsterVO] # Azer -- NameVO: [Azer] +- AltName: [Azer] - Medium elemental, lawful neutral - **Armor Class** 17 (natural armor, shield) - **Hit Points** 39 (6d8 + 12) @@ -648,7 +648,7 @@ _Hit_: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if use [][MonsterVO] # Baboon -- NameVO: [Babouin] +- AltName: [Babouin] - Small beast, unaligned - **Armor Class** 12 - **Hit Points** 3 (1d6) @@ -678,7 +678,7 @@ _Hit_: 1 (1d4 - 1) piercing damage. [][MonsterVO] # Gibbering Mouther -- NameVO: [Babélien] +- AltName: [Babélien] - Medium aberration, neutral - **Armor Class** 9 - **Hit Points** 67 (9d8 + 27) @@ -717,7 +717,7 @@ _Hit_: 17 (5d6) piercing damage. If the target is Medium or smaller, it must suc [][MonsterVO] # Balor -- NameVO: [Balor] +- AltName: [Balor] - Huge fiend (demon), chaotic evil - **Armor Class** 19 (natural armor) - **Hit Points** 262 (21d12 + 126) @@ -765,7 +765,7 @@ _Hit_: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target mu [][MonsterVO] # Bandit -- NameVO: [Bandit] +- AltName: [Bandit] - Medium humanoid (any race), any non-lawful alignment - **Armor Class** 12 (leather armor) - **Hit Points** 11 (2d8 + 2) @@ -795,7 +795,7 @@ _Hit_: 5 (1d8 + 1) piercing damage. [][MonsterVO] # Bandit Captain -- NameVO: [Capitaine Bandit] +- AltName: [Capitaine Bandit] - Medium humanoid (any race), any non-lawful alignment - **Armor Class** 15 (studded leather) - **Hit Points** 65 (10d8 + 20) @@ -835,7 +835,7 @@ _Hit_: 5 (1d4 + 3) piercing damage. [][MonsterVO] # Basilisk -- NameVO: [Basilic] +- AltName: [Basilic] - Medium monstrosity, unaligned - **Armor Class** 15 (natural armor) - **Hit Points** 52 (8d8 + 16) @@ -865,7 +865,7 @@ _Hit_: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage. [][MonsterVO] # Axe Beak -- NameVO: [Bec de hache] +- AltName: [Bec de hache] - Large beast, unaligned - **Armor Class** 11 - **Hit Points** 19 (3d10 + 3) @@ -891,7 +891,7 @@ _Hit_: 6 (1d8 + 2) slashing damage. [][MonsterVO] # Weasel -- NameVO: [Belette] +- AltName: [Belette] - Tiny beast, unaligned - **Armor Class** 13 - **Hit Points** 1 (1d4 - 1) @@ -922,7 +922,7 @@ _Hit_: 1 piercing damage. [][MonsterVO] # Giant Weasel -- NameVO: [Belette géante] +- AltName: [Belette géante] - Medium beast, unaligned - **Armor Class** 13 - **Hit Points** 9 (2d8) @@ -953,7 +953,7 @@ _Hit_: 5 (1d4 + 3) piercing damage. [][MonsterVO] # Berserker -- NameVO: [Berserker] +- AltName: [Berserker] - Medium humanoid (any race), any chaotic alignment - **Armor Class** 13 (hide armor) - **Hit Points** 67 (9d8 + 27) @@ -983,7 +983,7 @@ _Hit_: 9 (1d12 + 3) slashing damage. [][MonsterVO] # Badger -- NameVO: [Blaireau] +- AltName: [Blaireau] - Tiny beast, unaligned - **Armor Class** 10 - **Hit Points** 3 (1d4 + 1) @@ -1013,7 +1013,7 @@ _Hit_: 1 piercing damage. [][MonsterVO] # Giant Badger -- NameVO: [Blaireau géant] +- AltName: [Blaireau géant] - Medium beast, unaligned - **Armor Class** 10 - **Hit Points** 13 (2d8 + 4) @@ -1049,7 +1049,7 @@ _Hit_: 6 (2d4 + 1) slashing damage. [][MonsterVO] # Ghast -- NameVO: [Blême] +- AltName: [Blême] - Medium undead, chaotic evil - **Armor Class** 13 - **Hit Points** 36 (8d8) @@ -1089,7 +1089,7 @@ _Hit_: 10 (2d6 + 3) slashing damage. If the target is a creature other than an u [][MonsterVO] # Bulette -- NameVO: [Bulette] +- AltName: [Bulette] - Large monstrosity, unaligned - **Armor Class** 17 (natural armor) - **Hit Points** 94 (9d10 + 45) @@ -1122,7 +1122,7 @@ _Hit_: 30 (4d12 + 4) piercing damage. [][MonsterVO] # Behir -- NameVO: [Béhir] +- AltName: [Béhir] - Huge monstrosity, neutral evil - **Armor Class** 17 (natural armor) - **Hit Points** 168 (16d12 + 64) @@ -1160,7 +1160,7 @@ _Hit_: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The [][MonsterVO] # Centaur -- NameVO: [Centaure] +- AltName: [Centaure] - Large monstrosity, neutral good - **Armor Class** 12 - **Hit Points** 45 (6d10 + 12) @@ -1201,7 +1201,7 @@ _Hit_: 6 (1d8 + 2) piercing damage. [][MonsterVO] # Jackal -- NameVO: [Chacal] +- AltName: [Chacal] - Small beast, unaligned - **Armor Class** 12 - **Hit Points** 3 (1d6) @@ -1234,7 +1234,7 @@ _Hit_: 1 (1d4 - 1) piercing damage. [][MonsterVO] # Camel -- NameVO: [Chameau] +- AltName: [Chameau] - Large beast, unaligned - **Armor Class** 9 - **Hit Points** 15 (2d10 + 4) @@ -1260,7 +1260,7 @@ _Hit_: 2 (1d4) bludgeoning damage. [][MonsterVO] # Cat -- NameVO: [Chat] +- AltName: [Chat] - Tiny beast, unaligned - **Armor Class** 12 - **Hit Points** 2 (1d4) @@ -1291,7 +1291,7 @@ _Hit_: 1 slashing damage. [][MonsterVO] # Bat -- NameVO: [Chauve-souris] +- AltName: [Chauve-souris] - Tiny beast, unaligned - **Armor Class** 12 - **Hit Points** 1 (1d4 - 1) @@ -1323,7 +1323,7 @@ _Hit_: 1 piercing damage. [][MonsterVO] # Giant Bat -- NameVO: [Chauve-souris géante] +- AltName: [Chauve-souris géante] - Large beast, unaligned - **Armor Class** 13 - **Hit Points** 22 (4d10) @@ -1355,7 +1355,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. [][MonsterVO] # Warhorse -- NameVO: [Cheval de guerre] +- AltName: [Cheval de guerre] - Large beast, unaligned - **Armor Class** 11 - **Hit Points** 19 (3d10 + 3) @@ -1385,7 +1385,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage. [][MonsterVO] # Riding Horse -- NameVO: [Cheval de selle] +- AltName: [Cheval de selle] - Large beast, unaligned - **Armor Class** 10 - **Hit Points** 13 (2d10 + 2) @@ -1411,7 +1411,7 @@ _Hit_: 8 (2d4 + 3) bludgeoning damage. [][MonsterVO] # Draft Horse -- NameVO: [Cheval de trait] +- AltName: [Cheval de trait] - Large beast, unaligned - **Armor Class** 10 - **Hit Points** 19 (3d10 + 3) @@ -1437,7 +1437,7 @@ _Hit_: 9 (2d4 + 4) bludgeoning damage. [][MonsterVO] # Knight -- NameVO: [Chevalier] +- AltName: [Chevalier] - Medium humanoid (any race), any alignment - **Armor Class** 18 (plate) - **Hit Points** 52 (8d8 + 16) @@ -1480,7 +1480,7 @@ _Hit_: 5 (1d10) piercing damage. [][MonsterVO] # Deer -- NameVO: [Chevreuil] +- AltName: [Chevreuil] - Medium beast, unaligned - **Armor Class** 13 - **Hit Points** 4 (1d8) @@ -1506,7 +1506,7 @@ _Hit_: 2 (1d4) piercing damage. [][MonsterVO] # Death Dog -- NameVO: [Chien du trépas] +- AltName: [Chien du trépas] - Medium monstrosity, neutral evil - **Armor Class** 12 - **Hit Points** 39 (6d8 + 12) @@ -1539,7 +1539,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. If the target is a creature, it must succeed [][MonsterVO] # Blink Dog -- NameVO: [Chien esquiveur] +- AltName: [Chien esquiveur] - Medium fey, lawful good - **Armor Class** 13 - **Hit Points** 22 (4d8 + 4) @@ -1572,7 +1572,7 @@ _Hit_: 4 (1d6 + 1) piercing damage. [][MonsterVO] # Chimera -- NameVO: [Chimère] +- AltName: [Chimère] - Large monstrosity, chaotic evil - **Armor Class** 14 (natural armor) - **Hit Points** 114 (12d10 + 48) @@ -1611,7 +1611,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Owl -- NameVO: [Chouette] +- AltName: [Chouette] - Tiny beast, unaligned - **Armor Class** 11 - **Hit Points** 1 (1d4 - 1) @@ -1644,7 +1644,7 @@ _Hit_: 1 slashing damage. [][MonsterVO] # Giant Owl -- NameVO: [Chouette géante] +- AltName: [Chouette géante] - Large beast, neutral - **Armor Class** 12 - **Hit Points** 19 (3d10 + 3) @@ -1677,7 +1677,7 @@ _Hit_: 8 (2d6 + 1) slashing damage. [][MonsterVO] # Chuul -- NameVO: [Chuul] +- AltName: [Chuul] - Large aberration, chaotic evil - **Armor Class** 16 (natural armor) - **Hit Points** 93 (11d10 + 33) @@ -1716,7 +1716,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if [][MonsterVO] # Goat -- NameVO: [Chèvre] +- AltName: [Chèvre] - Medium beast, unaligned - **Armor Class** 10 - **Hit Points** 4 (1d8) @@ -1748,7 +1748,7 @@ _Hit_: 3 (1d4 + 1) bludgeoning damage. [][MonsterVO] # Giant Goat -- NameVO: [Chèvre géante] +- AltName: [Chèvre géante] - Large beast, unaligned - **Armor Class** 11 (natural armor) - **Hit Points** 19 (3d10 + 3) @@ -1780,7 +1780,7 @@ _Hit_: 8 (2d4 + 3) bludgeoning damage. [][MonsterVO] # Cockatrice -- NameVO: [Cockatrice] +- AltName: [Cockatrice] - Small monstrosity, unaligned - **Armor Class** 11 - **Hit Points** 27 (6d6 + 6) @@ -1806,7 +1806,7 @@ _Hit_: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Const [][MonsterVO] # Raven -- NameVO: [Corbeau] +- AltName: [Corbeau] - Tiny beast, unaligned - **Armor Class** 12 - **Hit Points** 1 (1d4 - 1) @@ -1837,7 +1837,7 @@ _Hit_: 1 piercing damage. [][MonsterVO] # Couatl -- NameVO: [Couatl] +- AltName: [Couatl] - Medium celestial, lawful good - **Armor Class** 19 (natural armor) - **Hit Points** 97 (13d8 + 39) @@ -1886,7 +1886,7 @@ _Hit_: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15 [][MonsterVO] # Crab -- NameVO: [Crabe] +- AltName: [Crabe] - Tiny beast, unaligned - **Armor Class** 11 (natural armor) - **Hit Points** 2 (1d4) @@ -1917,7 +1917,7 @@ _Hit_: 1 bludgeoning damage. [][MonsterVO] # Giant Crab -- NameVO: [Crabe géant] +- AltName: [Crabe géant] - Medium beast, unaligned - **Armor Class** 15 (natural armor) - **Hit Points** 13 (3d8) @@ -1948,7 +1948,7 @@ _Hit_: 4 (1d6 + 1) bludgeoning damage, and the target is grappled (escape DC 11) [][MonsterVO] # Giant Toad -- NameVO: [Crapaud géant] +- AltName: [Crapaud géant] - Large beast, unaligned - **Armor Class** 11 - **Hit Points** 39 (6d10 + 6) @@ -1982,7 +1982,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 5 (1d10) poison damage, and the target [][MonsterVO] # Shrieker -- NameVO: [Criard] +- AltName: [Criard] - Medium plant, unaligned - **Armor Class** 5 - **Hit Points** 13 (3d8) @@ -2011,7 +2011,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 5 (1d10) poison damage, and the target [][MonsterVO] # Crocodile -- NameVO: [Crocodile] +- AltName: [Crocodile] - Large beast, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 19 (3d10 + 3) @@ -2042,7 +2042,7 @@ _Hit_: 7 (1d10 + 2) piercing damage, and the target is grappled (escape DC 12). [][MonsterVO] # Giant Crocodile -- NameVO: [Crocodile géant] +- AltName: [Crocodile géant] - Huge beast, unaligned - **Armor Class** 14 (natural armor) - **Hit Points** 85 (9d12 + 27) @@ -2080,7 +2080,7 @@ _Hit_: 14 (2d8 + 5) bludgeoning damage. If the target is a creature, it must suc [][MonsterVO] # Gelatinous Cube -- NameVO: [Cube gélatineux] +- AltName: [Cube gélatineux] - Large ooze, unaligned - **Armor Class** 6 - **Hit Points** 84 (8d10 + 40) @@ -2116,7 +2116,7 @@ _Hit_: 10 (3d6) acid damage. [][MonsterVO] # Nightmare -- NameVO: [Destrier noir] +- AltName: [Destrier noir] - Large fiend, neutral evil - **Armor Class** 13 (natural armor) - **Hit Points** 68 (8d10 + 24) @@ -2151,7 +2151,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage. [][MonsterVO] # Barbed Devil -- NameVO: [Diable barbelé] +- AltName: [Diable barbelé] - Medium fiend (devil), lawful evil - **Armor Class** 15 (natural armor) - **Hit Points** 110 (13d8 + 52) @@ -2200,7 +2200,7 @@ _Hit_: 10 (3d6) fire damage. If the target is a flammable object that isn't bein [][MonsterVO] # Bearded Devil -- NameVO: [Diable barbu] +- AltName: [Diable barbu] - Medium fiend (devil), lawful evil - **Armor Class** 13 (natural armor) - **Hit Points** 52 (8d8 + 16) @@ -2244,7 +2244,7 @@ _Hit_: 8 (1d10 + 3) slashing damage. If the target is a creature other than an u [][MonsterVO] # Horned Devil -- NameVO: [Diable cornu] +- AltName: [Diable cornu] - Large fiend (devil), lawful evil - **Armor Class** 18 (natural armor) - **Hit Points** 178 (17d10 + 85) @@ -2290,7 +2290,7 @@ _Hit_: 14 (4d6) fire damage. If the target is a flammable object that isn't bein [][MonsterVO] # Chain Devil -- NameVO: [Diable des chaînes] +- AltName: [Diable des chaînes] - Medium fiend (devil), lawful evil - **Armor Class** 16 (natural armor) - **Hit Points** 85 (10d8 + 40) @@ -2334,7 +2334,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if th [][MonsterVO] # Ice Devil -- NameVO: [Diable gelé] +- AltName: [Diable gelé] - Large fiend (devil), lawful evil - **Armor Class** 18 (natural armor) - **Hit Points** 180 (19d10 + 76) @@ -2382,7 +2382,7 @@ _Hit_: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage. [][MonsterVO] # Bone Devil -- NameVO: [Diable osseux] +- AltName: [Diable osseux] - Large fiend (devil), lawful evil - **Armor Class** 19 (natural armor) - **Hit Points** 142 (15d10 + 60) @@ -2425,7 +2425,7 @@ _Hit_: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target [][MonsterVO] # Imp -- NameVO: [Diablotin] +- AltName: [Diablotin] - Tiny fiend (devil, shapechanger), lawful evil - **Armor Class** 13 - **Hit Points** 10 (3d4 + 3) @@ -2465,7 +2465,7 @@ _Hit_: 5 (1d4 + 3) piercing damage, and the target must make on a DC 11 Constitu [][MonsterVO] # Pit Fiend -- NameVO: [Diantrefosse] +- AltName: [Diantrefosse] - Large fiend (devil), lawful evil - **Armor Class** 19 (natural armor) - **Hit Points** 300 (24d10 + 168) @@ -2523,7 +2523,7 @@ _Hit_: 24 (3d10 + 8) bludgeoning damage. [][MonsterVO] # Djinni -- NameVO: [Djinn] +- AltName: [Djinn] - Large elemental, chaotic good - **Armor Class** 17 (natural armor) - **Hit Points** 161 (14d10 + 84) @@ -2567,7 +2567,7 @@ _Hit_: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (dj [][MonsterVO] # Doppelganger -- NameVO: [Doppleganger] +- AltName: [Doppleganger] - Medium monstrosity (shapechanger), neutral - **Armor Class** 14 - **Hit Points** 52 (8d8 + 16) @@ -2607,7 +2607,7 @@ _Hit_: 7 (1d6 + 4) bludgeoning damage. [][MonsterVO] # Adult White Dragon -- NameVO: [Dragon blanc adulte] +- AltName: [Dragon blanc adulte] - Huge dragon, chaotic evil - **Armor Class** 18 (natural armor) - **Hit Points** 200 (16d12 + 96) @@ -2666,7 +2666,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient White Dragon -- NameVO: [Dragon blanc vénérable] +- AltName: [Dragon blanc vénérable] - Gargantuan dragon, chaotic evil - **Armor Class** 20 (natural armor) - **Hit Points** 333 (18d20 + 144) @@ -2725,7 +2725,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young White Dragon -- NameVO: [Jeune dragon blanc] +- AltName: [Jeune dragon blanc] - Large dragon, chaotic evil - **Armor Class** 17 (natural armor) - **Hit Points** 133 (14d10 + 56) @@ -2766,7 +2766,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # White Dragon Wyrmling -- NameVO: [Dragonnet blanc] +- AltName: [Dragonnet blanc] - Medium dragon, chaotic evil - **Armor Class** 16 (natural armor) - **Hit Points** 32 (5d8 + 10) @@ -2797,7 +2797,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage. [][MonsterVO] # Adult Blue Dragon -- NameVO: [Dragon bleu adulte] +- AltName: [Dragon bleu adulte] - Huge dragon, lawful evil - **Armor Class** 19 (natural armor) - **Hit Points** 225 (18d12 + 108) @@ -2854,7 +2854,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Blue Dragon -- NameVO: [Dragon bleu vénérable] +- AltName: [Dragon bleu vénérable] - Gargantuan dragon, lawful evil - **Armor Class** 22 (natural armor) - **Hit Points** 481 (26d20 + 208) @@ -2911,7 +2911,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Blue Dragon -- NameVO: [Jeune dragon bleu] +- AltName: [Jeune dragon bleu] - Large dragon, lawful evil - **Armor Class** 18 (natural armor) - **Hit Points** 152 (16d10 + 64) @@ -2948,7 +2948,7 @@ _Hit_: 12 (2d6 + 5) slashing damage. [][MonsterVO] # Blue Dragon Wyrmling -- NameVO: [Dragonnet bleu] +- AltName: [Dragonnet bleu] - Medium dragon, lawful evil - **Armor Class** 17 (natural armor) - **Hit Points** 52 (8d8 + 16) @@ -2979,7 +2979,7 @@ _Hit_: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage. [][MonsterVO] # Adult Brass Dragon -- NameVO: [Dragon d'airain adulte] +- AltName: [Dragon d'airain adulte] - Huge dragon, chaotic good - **Armor Class** 18 (natural armor) - **Hit Points** 172 (15d12 + 75) @@ -3040,7 +3040,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Brass Dragon -- NameVO: [Dragon d'airain vénérable] +- AltName: [Dragon d'airain vénérable] - Gargantuan dragon, chaotic good - **Armor Class** 20 (natural armor) - **Hit Points** 297 (17d20 + 119) @@ -3103,7 +3103,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Brass Dragon -- NameVO: [Jeune dragon d'airain] +- AltName: [Jeune dragon d'airain] - Large dragon, chaotic good - **Armor Class** 17 (natural armor) - **Hit Points** 110 (13d10 + 39) @@ -3144,7 +3144,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Brass Dragon Wyrmling -- NameVO: [Dragonnet d'airain] +- AltName: [Dragonnet d'airain] - Medium dragon, chaotic good - **Armor Class** 16 (natural armor) - **Hit Points** 16 (3d8 + 3) @@ -3179,7 +3179,7 @@ _Hit_: 7 (1d10 + 2) piercing damage. [][MonsterVO] # Adult Silver Dragon -- NameVO: [Dragon d'argent adulte] +- AltName: [Dragon d'argent adulte] - Huge dragon, lawful good - **Armor Class** 19 (natural armor) - **Hit Points** 243 (18d12 + 126) @@ -3242,7 +3242,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Silver Dragon -- NameVO: [Dragon d'argent vénérable] +- AltName: [Dragon d'argent vénérable] - Gargantuan dragon, lawful good - **Armor Class** 22 (natural armor) - **Hit Points** 487 (25d20 + 225) @@ -3305,7 +3305,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Silver Dragon -- NameVO: [Jeune dragon d'argent] +- AltName: [Jeune dragon d'argent] - Large dragon, lawful good - **Armor Class** 18 (natural armor) - **Hit Points** 168 (16d10 + 80) @@ -3346,7 +3346,7 @@ _Hit_: 13 (2d6 + 6) slashing damage. [][MonsterVO] # Silver Dragon Wyrmling -- NameVO: [Dragonnet d'argent] +- AltName: [Dragonnet d'argent] - Medium dragon, lawful good - **Armor Class** 17 (natural armor) - **Hit Points** 45 (6d8 + 18) @@ -3381,7 +3381,7 @@ _Hit_: 9 (1d10 + 4) piercing damage. [][MonsterVO] # Adult Gold Dragon -- NameVO: [Dragon d'or adulte] +- AltName: [Dragon d'or adulte] - Huge dragon, lawful good - **Armor Class** 19 (natural armor) - **Hit Points** 256 (19d12 + 133) @@ -3446,7 +3446,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Gold Dragon -- NameVO: [Dragon d'or vénérable] +- AltName: [Dragon d'or vénérable] - Gargantuan dragon, lawful good - **Armor Class** 22 (natural armor) - **Hit Points** 546 (28d20 + 252) @@ -3511,7 +3511,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Gold Dragon -- NameVO: [Jeune dragon d'or] +- AltName: [Jeune dragon d'or] - Large dragon, lawful good - **Armor Class** 18 (natural armor) - **Hit Points** 178 (17d10 + 85) @@ -3556,7 +3556,7 @@ _Hit_: 13 (2d6 + 6) slashing damage. [][MonsterVO] # Gold Dragon Wyrmling -- NameVO: [Dragonnet d'or] +- AltName: [Dragonnet d'or] - Medium dragon, lawful good - **Armor Class** 17 (natural armor) - **Hit Points** 60 (8d8 + 24) @@ -3595,7 +3595,7 @@ _Hit_: 9 (1d10 + 4) piercing damage. [][MonsterVO] # Adult Bronze Dragon -- NameVO: [Dragon de bronze adulte] +- AltName: [Dragon de bronze adulte] - Huge dragon, lawful good - **Armor Class** 19 (natural armor) - **Hit Points** 212 (17d12 + 102) @@ -3660,7 +3660,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Bronze Dragon -- NameVO: [Dragon de bronze vénérable] +- AltName: [Dragon de bronze vénérable] - Gargantuan dragon, lawful good - **Armor Class** 22 (natural armor) - **Hit Points** 444 (24d20 + 192) @@ -3725,7 +3725,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Bronze Dragon -- NameVO: [Jeune dragon de bronze] +- AltName: [Jeune dragon de bronze] - Large dragon, lawful good - **Armor Class** 18 (natural armor) - **Hit Points** 142 (15d10 + 60) @@ -3770,7 +3770,7 @@ _Hit_: 12 (2d6 + 5) slashing damage. [][MonsterVO] # Bronze Dragon Wyrmling -- NameVO: [Dragonnet de bronze] +- AltName: [Dragonnet de bronze] - Medium dragon, lawful good - **Armor Class** 17 (natural armor) - **Hit Points** 32 (5d8 + 10) @@ -3809,7 +3809,7 @@ _Hit_: 8 (1d10 + 3) piercing damage. [][MonsterVO] # Adult Copper Dragon -- NameVO: [Dragon de cuivre adulte] +- AltName: [Dragon de cuivre adulte] - Huge dragon, chaotic good - **Armor Class** 18 (natural armor) - **Hit Points** 184 (16d12 + 80) @@ -3870,7 +3870,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Copper Dragon -- NameVO: [Dragon de cuivre vénérable] +- AltName: [Dragon de cuivre vénérable] - Gargantuan dragon, chaotic good - **Armor Class** 21 (natural armor) - **Hit Points** 350 (20d20 + 140) @@ -3933,7 +3933,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Copper Dragon -- NameVO: [Jeune dragon de cuivre] +- AltName: [Jeune dragon de cuivre] - Large dragon, chaotic good - **Armor Class** 17 (natural armor) - **Hit Points** 119 (14d10 + 42) @@ -3974,7 +3974,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Copper Dragon Wyrmling -- NameVO: [Dragonnet de cuivre] +- AltName: [Dragonnet de cuivre] - Medium dragon, chaotic good - **Armor Class** 16 (natural armor) - **Hit Points** 22 (4d8 + 4) @@ -4009,7 +4009,7 @@ _Hit_: 7 (1d10 + 2) piercing damage. [][MonsterVO] # Adult Black Dragon -- NameVO: [Dragon noir adulte] +- AltName: [Dragon noir adulte] - Huge dragon, chaotic evil - **Armor Class** 19 (natural armor) - **Hit Points** 195 (17d12 + 85) @@ -4068,7 +4068,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Black Dragon -- NameVO: [Dragon noir vénérable] +- AltName: [Dragon noir vénérable] - Gargantuan dragon, chaotic evil - **Armor Class** 22 (natural armor) - **Hit Points** 367 (21d20 + 147) @@ -4127,7 +4127,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Black Dragon -- NameVO: [Jeune dragon noir] +- AltName: [Jeune dragon noir] - Large dragon, chaotic evil - **Armor Class** 18 (natural armor) - **Hit Points** 127 (15d10 + 45) @@ -4168,7 +4168,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Black Dragon Wyrmling -- NameVO: [Dragonnet noir] +- AltName: [Dragonnet noir] - Medium dragon, chaotic evil - **Armor Class** 17 (natural armor) - **Hit Points** 33 (6d8 + 6) @@ -4203,7 +4203,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage. [][MonsterVO] # Adult Red Dragon -- NameVO: [Dragon rouge adulte] +- AltName: [Dragon rouge adulte] - Huge dragon, chaotic evil - **Armor Class** 19 (natural armor) - **Hit Points** 256 (19d12 + 133) @@ -4260,7 +4260,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Red Dragon -- NameVO: [Dragon rouge vénérable] +- AltName: [Dragon rouge vénérable] - Gargantuan dragon, chaotic evil - **Armor Class** 22 (natural armor) - **Hit Points** 546 (28d20 + 252) @@ -4317,7 +4317,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Red Dragon -- NameVO: [Jeune dragon rouge] +- AltName: [Jeune dragon rouge] - Large dragon, chaotic evil - **Armor Class** 18 (natural armor) - **Hit Points** 178 (17d10 + 85) @@ -4354,7 +4354,7 @@ _Hit_: 13 (2d6 + 6) slashing damage. [][MonsterVO] # Red Dragon Wyrmling -- NameVO: [Dragonnet rouge] +- AltName: [Dragonnet rouge] - Medium dragon, chaotic evil - **Armor Class** 17 (natural armor) - **Hit Points** 75 (10d8 + 30) @@ -4385,7 +4385,7 @@ _Hit_: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage. [][MonsterVO] # Adult Green Dragon -- NameVO: [Dragon vert adulte] +- AltName: [Dragon vert adulte] - Huge dragon, lawful evil - **Armor Class** 19 (natural armor) - **Hit Points** 207 (18d12 + 90) @@ -4445,7 +4445,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Ancient Green Dragon -- NameVO: [Dragon vert vénérable] +- AltName: [Dragon vert vénérable] - Gargantuan dragon, lawful evil - **Armor Class** 21 (natural armor) - **Hit Points** 385 (22d20 + 154) @@ -4505,7 +4505,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Young Green Dragon -- NameVO: [Jeune dragon vert] +- AltName: [Jeune dragon vert] - Large dragon, lawful evil - **Armor Class** 18 (natural armor) - **Hit Points** 136 (16d10 + 48) @@ -4547,7 +4547,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Green Dragon Wyrmling -- NameVO: [Dragonnet vert] +- AltName: [Dragonnet vert] - Medium dragon, lawful evil - **Armor Class** 17 (natural armor) - **Hit Points** 38 (7d8 + 7) @@ -4583,7 +4583,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage. [][MonsterVO] # Dragon Turtle -- NameVO: [Dragon-tortue] +- AltName: [Dragon-tortue] - Gargantuan dragon, neutral - **Armor Class** 20 (natural armor) - **Hit Points** 341 (22d20 + 110) @@ -4627,7 +4627,7 @@ _Hit_: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must su [][MonsterVO] # Dretch -- NameVO: [Dretch] +- AltName: [Dretch] - Small fiend (demon), chaotic evil - **Armor Class** 11 (natural armor) - **Hit Points** 18 (4d6 + 4) @@ -4664,7 +4664,7 @@ _Hit_: 5 (2d4) slashing damage. [][MonsterVO] # Drider -- NameVO: [Drider] +- AltName: [Drider] - Large monstrosity, chaotic evil - **Armor Class** 19 (natural armor) - **Hit Points** 123 (13d10 + 52) @@ -4717,7 +4717,7 @@ _Hit_: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage. [][MonsterVO] # Drow -- NameVO: [Drow] +- AltName: [Drow] - Medium humanoid (elf), neutral evil - **Armor Class** 15 (chain shirt) - **Hit Points** 13 (3d8) @@ -4760,7 +4760,7 @@ _Hit_: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Const [][MonsterVO] # Druid -- NameVO: [Druide] +- AltName: [Druide] - Medium humanoid (any race), any alignment - **Armor Class** 11 (16 with - **Hit Points** 27 (5d8 + 5) @@ -4797,7 +4797,7 @@ _Hit_: 3 (1d6) bludgeoning damage, 4 (1d8) bludgeoning damage if wielded with tw [][MonsterVO] # Dryad -- NameVO: [Dryade] +- AltName: [Dryade] - Medium fey, neutral - **Armor Class** 11 (16 with - **Hit Points** 22 (5d8) @@ -4842,7 +4842,7 @@ _Hit_: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with _[shil [][MonsterVO] # Duergar -- NameVO: [Duergar] +- AltName: [Duergar] - Medium humanoid (dwarf), lawful evil - **Armor Class** 16 (scale mail, shield) - **Hit Points** 26 (4d8 + 8) @@ -4883,7 +4883,7 @@ _Hit_: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarge [][MonsterVO] # Deva -- NameVO: [Déva] +- AltName: [Déva] - Medium celestial, lawful good - **Armor Class** 17 (natural armor) - **Hit Points** 136 (16d8 + 64) @@ -4931,7 +4931,7 @@ _Hit_: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage. [][MonsterVO] # Priest -- NameVO: [Ecclésiastique] +- AltName: [Ecclésiastique] - Medium humanoid (any race), any alignment - **Armor Class** 13 (chain shirt) - **Hit Points** 27 (5d8 + 5) @@ -4972,7 +4972,7 @@ _Hit_: 3 (1d6) bludgeoning damage. [][MonsterVO] # Roper -- NameVO: [Enlaceur] +- AltName: [Enlaceur] - Large monstrosity, neutral evil - **Armor Class** 20 (natural armor) - **Hit Points** 93 (11d10 + 33) @@ -5015,7 +5015,7 @@ _Hit_: The target is grappled (escape DC 15). Until the grapple ends, the target [][MonsterVO] # Spy -- NameVO: [Espion] +- AltName: [Espion] - Medium humanoid (any race), any alignment - **Armor Class** 12 - **Hit Points** 27 (6d8) @@ -5054,7 +5054,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. [][MonsterVO] # Sprite -- NameVO: [Esprit follet] +- AltName: [Esprit follet] - Tiny fey, neutral good - **Armor Class** 15 (leather armor) - **Hit Points** 2 (1d4) @@ -5089,7 +5089,7 @@ _Hit_: 1 piercing damage, and the target must succeed on a DC 10 Constitution sa [][MonsterVO] # Ettercap -- NameVO: [Ettercap] +- AltName: [Ettercap] - Medium monstrosity, neutral evil - **Armor Class** 13 (natural armor) - **Hit Points** 44 (8d8 + 8) @@ -5134,7 +5134,7 @@ _Hit_: The creature is restrained by webbing. As an action, the restrained creat [][MonsterVO] # Ettin -- NameVO: [Ettin] +- AltName: [Ettin] - Large giant, chaotic evil - **Armor Class** 12 (natural armor) - **Hit Points** 85 (10d10 + 30) @@ -5173,7 +5173,7 @@ _Hit_: 14 (2d8 + 5) piercing damage. [][MonsterVO] # Cult Fanatic -- NameVO: [Fanatique de secte] +- AltName: [Fanatique de secte] - Medium humanoid (any race), any non-good alignment - **Armor Class** 13 (leather armor) - **Hit Points** 33 (6d8 + 6) @@ -5214,7 +5214,7 @@ _Hit_: 4 (1d4 + 2) piercing damage. [][MonsterVO] # Ghost -- NameVO: [Fantôme] +- AltName: [Fantôme] - Medium undead, any alignment - **Armor Class** 11 - **Hit Points** 45 (10d8) @@ -5255,7 +5255,7 @@ _Hit_: 17 (4d6 + 3) necrotic damage. [][MonsterVO] # Hawk -- NameVO: [Faucon] +- AltName: [Faucon] - Tiny beast, unaligned - **Armor Class** 13 - **Hit Points** 1 (1d4 - 1) @@ -5286,7 +5286,7 @@ _Hit_: 1 slashing damage. [][MonsterVO] # Blood Hawk -- NameVO: [Faucon de sang] +- AltName: [Faucon de sang] - Small beast, unaligned - **Armor Class** 12 - **Hit Points** 7 (2d6) @@ -5319,7 +5319,7 @@ _Hit_: 4 (1d4 + 2) piercing damage. [][MonsterVO] # Will-o'-Wisp -- NameVO: [Feu follet] +- AltName: [Feu follet] - Tiny undead, chaotic evil - **Armor Class** 19 - **Hit Points** 22 (9d4) @@ -5360,7 +5360,7 @@ _Hit_: 9 (2d8) lightning damage. [][MonsterVO] # Guard -- NameVO: [Garde] +- AltName: [Garde] - Medium humanoid (any race), any alignment - **Armor Class** 16 (chain shirt, shield) - **Hit Points** 11 (2d8 + 2) @@ -5387,7 +5387,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with [][MonsterVO] # Shield Guardian -- NameVO: [Garde animé] +- AltName: [Garde animé] - Large construct, unaligned - **Armor Class** 17 (natural armor) - **Hit Points** 142 (15d10 + 60) @@ -5429,7 +5429,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage. [][MonsterVO] # Gargoyle -- NameVO: [Gargouille] +- AltName: [Gargouille] - Medium elemental, chaotic evil - **Armor Class** 15 (natural armor) - **Hit Points** 52 (7d8 + 21) @@ -5468,7 +5468,7 @@ _Hit_: 5 (1d6 + 2) slashing damage. [][MonsterVO] # Ochre Jelly -- NameVO: [Gelée ocre] +- AltName: [Gelée ocre] - Large ooze, unaligned - **Armor Class** 8 - **Hit Points** 45 (6d10 + 12) @@ -5507,7 +5507,7 @@ _Hit_: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage. [][MonsterVO] # Glabrezu -- NameVO: [Glabrezu] +- AltName: [Glabrezu] - Large fiend (demon), chaotic evil - **Armor Class** 17 (natural armor) - **Hit Points** 157 (15d10 + 75) @@ -5553,7 +5553,7 @@ _Hit_: 7 (2d4 + 2) bludgeoning damage. [][MonsterVO] # Gladiator -- NameVO: [Gladiateur] +- AltName: [Gladiateur] - Medium humanoid (any race), any alignment - **Armor Class** 16 (studded leather, shield) - **Hit Points** 112 (15d8 + 45) @@ -5597,7 +5597,7 @@ _Hit_: 9 (2d4 + 4) bludgeoning damage. If the target is a Medium or smaller crea [][MonsterVO] # Gnoll -- NameVO: [Gnoll] +- AltName: [Gnoll] - Medium humanoid (gnoll), chaotic evil - **Armor Class** 15 (hide armor, shield) - **Hit Points** 22 (5d8) @@ -5635,7 +5635,7 @@ _Hit_: 5 (1d8 + 1) piercing damage. [][MonsterVO] # Deep Gnome (Svirfneblin) -- NameVO: [Gnome des profondeurs (svirfneblin)] +- AltName: [Gnome des profondeurs (svirfneblin)] - Small humanoid (gnome), neutral good - **Armor Class** 15 (chain shirt) - **Hit Points** 16 (3d6 + 6) @@ -5678,7 +5678,7 @@ _Hit_: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Const [][MonsterVO] # Goblin -- NameVO: [Gobelin] +- AltName: [Gobelin] - Small humanoid (goblinoid), neutral evil - **Armor Class** 15 (leather armor, shield) - **Hit Points** 7 (2d6) @@ -5713,7 +5713,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. [][MonsterVO] # Bugbear -- NameVO: [Gobelours] +- AltName: [Gobelours] - Medium humanoid (goblinoid), chaotic evil - **Armor Class** 16 (hide armor, shield) - **Hit Points** 27 (5d8 + 5) @@ -5750,7 +5750,7 @@ _Hit_: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at ra [][MonsterVO] # Clay Golem -- NameVO: [Golem d'argile] +- AltName: [Golem d'argile] - Large construct, unaligned - **Armor Class** 14 (natural armor) - **Hit Points** 133 (14d10 + 56) @@ -5794,7 +5794,7 @@ _Hit_: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must su [][MonsterVO] # Flesh Golem -- NameVO: [Golem de chair] +- AltName: [Golem de chair] - Medium construct, neutral - **Armor Class** 9 - **Hit Points** 93 (11d8 + 44) @@ -5838,7 +5838,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage. [][MonsterVO] # Iron Golem -- NameVO: [Golem de fer] +- AltName: [Golem de fer] - Large construct, unaligned - **Armor Class** 20 (natural armor) - **Hit Points** 210 (20d10 + 100) @@ -5884,7 +5884,7 @@ _Hit_: 23 (3d10 + 7) slashing damage. [][MonsterVO] # Stone Golem -- NameVO: [Golem de pierre] +- AltName: [Golem de pierre] - Large construct, unaligned - **Armor Class** 17 (natural armor) - **Hit Points** 178 (17d10 + 85) @@ -5924,7 +5924,7 @@ _Hit_: 19 (3d8 + 6) bludgeoning damage. [][MonsterVO] # Gorgon -- NameVO: [Gorgone] +- AltName: [Gorgone] - Large monstrosity, unaligned - **Armor Class** 19 (natural armor) - **Hit Points** 114 (12d10 + 48) @@ -5962,7 +5962,7 @@ _Hit_: 16 (2d10 + 5) bludgeoning damage. [][MonsterVO] # Ghoul -- NameVO: [Goule] +- AltName: [Goule] - Medium undead, chaotic evil - **Armor Class** 12 - **Hit Points** 22 (5d8) @@ -5994,7 +5994,7 @@ _Hit_: 7 (2d4 + 2) slashing damage. If the target is a creature other than an el [][MonsterVO] # Ape -- NameVO: [Grand singe] +- AltName: [Grand singe] - Medium beast, unaligned - **Armor Class** 12 - **Hit Points** 19 (3d8 + 6) @@ -6027,7 +6027,7 @@ _Hit_: 6 (1d6 + 3) bludgeoning damage. [][MonsterVO] # Frog -- NameVO: [Grenouille] +- AltName: [Grenouille] - Tiny beast, unaligned - **Armor Class** 11 - **Hit Points** 1 (1d4 - 1) @@ -6054,7 +6054,7 @@ _Hit_: 6 (1d6 + 3) bludgeoning damage. [][MonsterVO] # Giant Frog -- NameVO: [Grenouille géante] +- AltName: [Grenouille géante] - Medium beast, unaligned - **Armor Class** 11 - **Hit Points** 18 (4d8) @@ -6089,7 +6089,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, and the target is grappled (escape DC 11). U [][MonsterVO] # Grick -- NameVO: [Grick] +- AltName: [Grick] - Medium monstrosity, neutral - **Armor Class** 14 (natural armor) - **Hit Points** 27 (6d8) @@ -6126,7 +6126,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. [][MonsterVO] # Griffon -- NameVO: [Griffon] +- AltName: [Griffon] - Large monstrosity, unaligned - **Armor Class** 12 - **Hit Points** 59 (7d10 + 21) @@ -6163,7 +6163,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Sea Hag -- NameVO: [Guenaude aquatique] +- AltName: [Guenaude aquatique] - Medium fey, chaotic evil - **Armor Class** 14 (natural armor) - **Hit Points** 52 (7d8 + 21) @@ -6199,7 +6199,7 @@ _Hit_: 10 (2d6 + 3) slashing damage. [][MonsterVO] # Night Hag -- NameVO: [Guenaude nocturne] +- AltName: [Guenaude nocturne] - Medium fiend, neutral evil - **Armor Class** 17 (natural armor) - **Hit Points** 112 (15d8 + 45) @@ -6244,7 +6244,7 @@ _Hit_: 13 (2d8 + 4) slashing damage. [][MonsterVO] # Green Hag -- NameVO: [Guenaude verte] +- AltName: [Guenaude verte] - Medium fey, neutral evil - **Armor Class** 17 (natural armor) - **Hit Points** 82 (11d8 + 33) @@ -6285,7 +6285,7 @@ _Hit_: 13 (2d8 + 4) slashing damage. [][MonsterVO] # Tribal Warrior -- NameVO: [Guerrier tribal] +- AltName: [Guerrier tribal] - Medium humanoid (any race), any alignment - **Armor Class** 12 (hide armor) - **Hit Points** 11 (2d8 + 2) @@ -6315,7 +6315,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with [][MonsterVO] # Giant Wasp -- NameVO: [Guêpe géante] +- AltName: [Guêpe géante] - Medium beast, unaligned - **Armor Class** 12 - **Hit Points** 13 (3d8) @@ -6341,7 +6341,7 @@ _Hit_: 5 (1d6 + 2) piercing damage, and the target must make a DC 11 Constitutio [][MonsterVO] # Gynosphinx -- NameVO: [Gynosphinx] +- AltName: [Gynosphinx] - Large monstrosity, lawful neutral - **Armor Class** 17 (natural armor) - **Hit Points** 136 (16d10 + 48) @@ -6403,7 +6403,7 @@ The sphinx can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Hill Giant -- NameVO: [Géant des collines] +- AltName: [Géant des collines] - Huge giant, chaotic evil - **Armor Class** 13 (natural armor) - **Hit Points** 105 (10d12 + 40) @@ -6436,7 +6436,7 @@ _Hit_: 21 (3d10 + 5) bludgeoning damage. [][MonsterVO] # Cloud Giant -- NameVO: [Géant des nuages] +- AltName: [Géant des nuages] - Huge giant, neutral good (50 %) or neutral evil (50 %) - **Armor Class** 14 (natural armor) - **Hit Points** 200 (16d12 + 96) @@ -6482,7 +6482,7 @@ _Hit_: 30 (4d10 + 8) bludgeoning damage. [][MonsterVO] # Stone Giant -- NameVO: [Géant des pierres] +- AltName: [Géant des pierres] - Huge giant, neutral - **Armor Class** 17 (natural armor) - **Hit Points** 126 (11d12 + 55) @@ -6522,7 +6522,7 @@ _Hit_: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must su [][MonsterVO] # Storm Giant -- NameVO: [Géant des tempêtes] +- AltName: [Géant des tempêtes] - Huge giant, chaotic good - **Armor Class** 16 (scale mail) - **Hit Points** 230 (20d12 + 100) @@ -6570,7 +6570,7 @@ _Hit_: 35 (4d12 + 9) bludgeoning damage. [][MonsterVO] # Fire Giant -- NameVO: [Géant du feu] +- AltName: [Géant du feu] - Huge giant, lawful evil - **Armor Class** 18 (plate) - **Hit Points** 162 (13d12 + 78) @@ -6605,7 +6605,7 @@ _Hit_: 29 (4d10 + 7) bludgeoning damage. [][MonsterVO] # Frost Giant -- NameVO: [Géant du givre] +- AltName: [Géant du givre] - Huge giant, neutral evil - **Armor Class** 15 (patchwork armor) - **Hit Points** 138 (12d12 + 60) @@ -6640,7 +6640,7 @@ _Hit_: 28 (4d10 + 6) bludgeoning damage. [][MonsterVO] # Harpy -- NameVO: [Harpie] +- AltName: [Harpie] - Medium monstrosity, chaotic evil - **Armor Class** 11 - **Hit Points** 38 (7d8 + 7) @@ -6674,7 +6674,7 @@ _Hit_: 3 (1d4 + 1) bludgeoning damage. [][MonsterVO] # Hezrou -- NameVO: [Hezrou] +- AltName: [Hezrou] - Large fiend (demon), chaotic evil - **Armor Class** 16 (natural armor) - **Hit Points** 136 (13d10 + 65) @@ -6716,7 +6716,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Owlbear -- NameVO: [Hibours] +- AltName: [Hibours] - Large monstrosity, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 59 (7d10 + 21) @@ -6753,7 +6753,7 @@ _Hit_: 14 (2d8 + 5) slashing damage. [][MonsterVO] # Sea Horse -- NameVO: [Hippocampe] +- AltName: [Hippocampe] - Tiny beast, unaligned - **Armor Class** 11 - **Hit Points** 1 (1d4 - 1) @@ -6777,7 +6777,7 @@ _Hit_: 14 (2d8 + 5) slashing damage. [][MonsterVO] # Giant Sea Horse -- NameVO: [Hippocampe géant] +- AltName: [Hippocampe géant] - Large beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 16 (3d10) @@ -6809,7 +6809,7 @@ _Hit_: 4 (1d6 + 1) bludgeoning damage. [][MonsterVO] # Hippogriff -- NameVO: [Hippogriffe] +- AltName: [Hippogriffe] - Large monstrosity, unaligned - **Armor Class** 11 - **Hit Points** 19 (3d10 + 3) @@ -6846,7 +6846,7 @@ _Hit_: 10 (2d6 + 3) slashing damage. [][MonsterVO] # Hobgoblin -- NameVO: [Hobgobelin] +- AltName: [Hobgobelin] - Medium humanoid (goblinoid), lawful evil - **Armor Class** 18 (chain mail, shield) - **Hit Points** 11 (2d8 + 2) @@ -6880,7 +6880,7 @@ _Hit_: 5 (1d8 + 1) piercing damage. [][MonsterVO] # Lizardfolk -- NameVO: [Homme-lézard] +- AltName: [Homme-lézard] - Medium humanoid (lizardfolk), neutral - **Armor Class** 15 (natural armor, shield) - **Hit Points** 22 (4d8 + 4) @@ -6925,7 +6925,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. [][MonsterVO] # Merfolk -- NameVO: [Homme-poisson] +- AltName: [Homme-poisson] - Medium humanoid (merfolk), neutral - **Armor Class** 11 - **Hit Points** 11 (2d8 + 2) @@ -6956,7 +6956,7 @@ _Hit_: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hand [][MonsterVO] # Homunculus -- NameVO: [Homoncule] +- AltName: [Homoncule] - Tiny construct, neutral - **Armor Class** 13 (natural armor) - **Hit Points** 5 (2d4) @@ -6988,7 +6988,7 @@ _Hit_: 1 piercing damage, and the target must succeed on a DC 10 Constitution sa [][MonsterVO] # Hydra -- NameVO: [Hydre] +- AltName: [Hydre] - Huge monstrosity, unaligned - **Armor Class** 15 (natural armor) - **Hit Points** 172 (15d12 + 75) @@ -7027,7 +7027,7 @@ _Hit_: 10 (1d10 + 5) piercing damage. [][MonsterVO] # Hyena -- NameVO: [Hyène] +- AltName: [Hyène] - Medium beast, unaligned - **Armor Class** 11 - **Hit Points** 5 (1d8 + 1) @@ -7058,7 +7058,7 @@ _Hit_: 3 (1d6) piercing damage. [][MonsterVO] # Giant Hyena -- NameVO: [Hyène géante] +- AltName: [Hyène géante] - Large beast, unaligned - **Armor Class** 12 - **Hit Points** 45 (6d10 + 12) @@ -7089,7 +7089,7 @@ _Hit_: 10 (2d6 + 3) piercing damage. [][MonsterVO] # Kobold -- NameVO: [Kobold] +- AltName: [Kobold] - Small humanoid (kobold), lawful evil - **Armor Class** 12 - **Hit Points** 5 (2d6 - 2) @@ -7125,7 +7125,7 @@ _Hit_: 4 (1d4 + 2) bludgeoning damage. [][MonsterVO] # Kraken -- NameVO: [Kraken] +- AltName: [Kraken] - Gargantuan monstrosity (titan), chaotic evil - **Armor Class** 18 (natural armor) - **Hit Points** 472 (27d20 + 189) @@ -7182,7 +7182,7 @@ The kraken can take 3 legendary actions, choosing from the options below. Only o [][MonsterVO] # Lamia -- NameVO: [Lamie] +- AltName: [Lamie] - Large monstrosity, chaotic evil - **Armor Class** 13 (natural armor) - **Hit Points** 97 (13d10 + 26) @@ -7229,7 +7229,7 @@ _Hit_: The target is magically cursed for 1 hour. Until the curse ends, the targ [][MonsterVO] # Lich -- NameVO: [Liche] +- AltName: [Liche] - Medium undead, any evil alignment - **Armor Class** 17 (natural armor) - **Hit Points** 135 (18d8 + 54) @@ -7302,7 +7302,7 @@ The lich can take 3 legendary actions, choosing from the options below. Only one [][MonsterVO] # Unicorn -- NameVO: [Licorne] +- AltName: [Licorne] - Large celestial, lawful good - **Armor Class** 12 - **Hit Points** 67 (9d10 + 18) @@ -7364,7 +7364,7 @@ The unicorn can take 3 legendary actions, choosing from the options below. Only [][MonsterVO] # Lion -- NameVO: [Lion] +- AltName: [Lion] - Large beast, unaligned - **Armor Class** 12 - **Hit Points** 26 (4d10 + 4) @@ -7405,7 +7405,7 @@ _Hit_: 6 (1d6 + 3) slashing damage. [][MonsterVO] # Wolf -- NameVO: [Loup] +- AltName: [Loup] - Medium beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 11 (2d8 + 2) @@ -7438,7 +7438,7 @@ _Hit_: 7 (2d4 + 2) piercing damage. If the target is a creature, it must succeed [][MonsterVO] # Winter Wolf -- NameVO: [Loup arctique] +- AltName: [Loup arctique] - Large monstrosity, neutral evil - **Armor Class** 13 (natural armor) - **Hit Points** 75 (10d10 + 20) @@ -7476,7 +7476,7 @@ _Hit_: 11 (2d6 + 4) piercing damage. If the target is a creature, it must succee [][MonsterVO] # Dire Wolf -- NameVO: [Loup sanguinaire] +- AltName: [Loup sanguinaire] - Large beast, unaligned - **Armor Class** 14 (natural armor) - **Hit Points** 37 (5d10 + 10) @@ -7509,7 +7509,7 @@ _Hit_: 10 (2d6 + 3) piercing damage. If the target is a creature, it must succee [][MonsterVO] # Werewolf -- NameVO: [Loup-garou] +- AltName: [Loup-garou] - Medium humanoid (human, shapechanger), chaotic evil - **Armor Class** 11 in humanoid form, 12 (natural armor) in wolf or hybrid form - **Hit Points** 58 (9d8 + 18) @@ -7553,7 +7553,7 @@ _Hit_: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with [][MonsterVO] # Lemure -- NameVO: [Lémure] +- AltName: [Lémure] - Medium fiend (devil), lawful evil - **Armor Class** 7 - **Hit Points** 13 (3d8) @@ -7588,7 +7588,7 @@ _Hit_: 2 (1d4) bludgeoning damage. [][MonsterVO] # Lizard -- NameVO: [Lézard] +- AltName: [Lézard] - Tiny beast, unaligned - **Armor Class** 10 - **Hit Points** 2 (1d4) @@ -7614,7 +7614,7 @@ _Hit_: 1 piercing damage. [][MonsterVO] # Giant Lizard -- NameVO: [Lézard géant] +- AltName: [Lézard géant] - Large beast, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 19 (3d10 + 3) @@ -7640,7 +7640,7 @@ _Hit_: 6 (1d8 + 2) piercing damage. [][MonsterVO] # Mage -- NameVO: [Mage] +- AltName: [Mage] - Medium humanoid (any race), any alignment - **Armor Class** 12 (15 with - **Hit Points** 40 (9d8) @@ -7684,7 +7684,7 @@ _Hit_: 4 (1d4 + 2) piercing damage. [][MonsterVO] # Magmin -- NameVO: [Magmatique] +- AltName: [Magmatique] - Small elemental, chaotic neutral - **Armor Class** 14 (natural armor) - **Hit Points** 9 (2d6 + 2) @@ -7718,7 +7718,7 @@ _Hit_: 7 (2d6) fire damage. If the target is a creature or a flammable object, i [][MonsterVO] # Thug -- NameVO: [Malfrat] +- AltName: [Malfrat] - Medium humanoid (any race), any non-good alignment - **Armor Class** 11 (leather armor) - **Hit Points** 32 (5d8 + 10) @@ -7755,7 +7755,7 @@ _Hit_: 5 (1d10) piercing damage. [][MonsterVO] # Mammoth -- NameVO: [Mammouth] +- AltName: [Mammouth] - Huge beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 126 (11d12 + 55) @@ -7789,7 +7789,7 @@ _Hit_: 29 (4d10 + 7) bludgeoning damage. [][MonsterVO] # Darkmantle -- NameVO: [Mante obscure] +- AltName: [Mante obscure] - Small monstrosity, unaligned - **Armor Class** 11 - **Hit Points** 22 (5d6 + 5) @@ -7824,7 +7824,7 @@ _Hit_: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target [][MonsterVO] # Cloaker -- NameVO: [Manteleur] +- AltName: [Manteleur] - Large aberration, chaotic neutral - **Armor Class** 14 (natural armor) - **Hit Points** 78 (12d10 + 12) @@ -7869,7 +7869,7 @@ _Hit_: 7 (1d8 + 3) slashing damage. [][MonsterVO] # Manticore -- NameVO: [Manticore] +- AltName: [Manticore] - Large monstrosity, lawful evil - **Armor Class** 14 (natural armor) - **Hit Points** 68 (8d10 + 24) @@ -7909,7 +7909,7 @@ _Hit_: 7 (1d8 + 3) piercing damage. [][MonsterVO] # Marilith -- NameVO: [Marilith] +- AltName: [Marilith] - Large fiend (demon), chaotic evil - **Armor Class** 18 (natural armor) - **Hit Points** 189 (18d10 + 90) @@ -7959,7 +7959,7 @@ _Hit_: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it [][MonsterVO] # Cultist -- NameVO: [Membre de secte] +- AltName: [Membre de secte] - Medium humanoid (any race), any non-good alignment - **Armor Class** 12 (leather armor) - **Hit Points** 9 (2d8) @@ -7989,7 +7989,7 @@ _Hit_: 4 (1d6 + 1) slashing damage. [][MonsterVO] # Merrow -- NameVO: [Merrow] +- AltName: [Merrow] - Large monstrosity, chaotic evil - **Armor Class** 13 (natural armor) - **Hit Points** 45 (6d10 + 12) @@ -8029,7 +8029,7 @@ _Hit_: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature [][MonsterVO] # Giant Centipede -- NameVO: [Mille-pattes géant] +- AltName: [Mille-pattes géant] - Small beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 4 (1d6 + 1) @@ -8055,7 +8055,7 @@ _Hit_: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Const [][MonsterVO] # Mimic -- NameVO: [Mimique] +- AltName: [Mimique] - Medium monstrosity (shapechanger), neutral - **Armor Class** 12 (natural armor) - **Hit Points** 58 (9d8 + 18) @@ -8098,7 +8098,7 @@ _Hit_: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage. [][MonsterVO] # Minotaur -- NameVO: [Minotaure] +- AltName: [Minotaure] - Large monstrosity, chaotic evil - **Armor Class** 14 (natural armor) - **Hit Points** 76 (9d10 + 27) @@ -8137,7 +8137,7 @@ _Hit_: 13 (2d8 + 4) piercing damage. [][MonsterVO] # Violet Fungus -- NameVO: [Moisissure violette] +- AltName: [Moisissure violette] - Medium plant, unaligned - **Armor Class** 5 - **Hit Points** 18 (4d8) @@ -8170,7 +8170,7 @@ _Hit_: 4 (1d8) necrotic damage. [][MonsterVO] # Mastiff -- NameVO: [Mastiff] +- AltName: [Mastiff] - Medium beast, unaligned - **Armor Class** 12 - **Hit Points** 5 (1d8 + 1) @@ -8201,7 +8201,7 @@ _Hit_: 4 (1d6 + 1) piercing damage. If the target is a creature, it must succeed [][MonsterVO] # Hell Hound -- NameVO: [Molosse infernal] +- AltName: [Molosse infernal] - Medium fiend, lawful evil - **Armor Class** 15 (natural armor) - **Hit Points** 45 (7d8 + 14) @@ -8239,7 +8239,7 @@ Fire-breathing fiends that take the form of powerful dogs, hell hounds commonly [][MonsterVO] # Mummy -- NameVO: [Momie] +- AltName: [Momie] - Medium undead, lawful evil - **Armor Class** 11 (natural armor) - **Hit Points** 58 (9d8 + 18) @@ -8274,7 +8274,7 @@ _Hit_: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the tar [][MonsterVO] # Mummy Lord -- NameVO: [Momie auguste] +- AltName: [Momie auguste] - Medium undead, lawful evil - **Armor Class** 17 (natural armor) - **Hit Points** 97 (13d8 + 39) @@ -8345,7 +8345,7 @@ The mummy lord can take 3 legendary actions, choosing from the options below. On [][MonsterVO] # Mule -- NameVO: [Mule] +- AltName: [Mule] - Medium beast, unaligned - **Armor Class** 10 - **Hit Points** 11 (2d8 + 2) @@ -8377,7 +8377,7 @@ _Hit_: 4 (1d4 + 2) bludgeoning damage. [][MonsterVO] # Medusa -- NameVO: [Méduse] +- AltName: [Méduse] - Medium monstrosity, lawful evil - **Armor Class** 15 (natural armor) - **Hit Points** 127 (17d8 + 51) @@ -8419,7 +8419,7 @@ _Hit_: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage. [][MonsterVO] # Ice Mephit -- NameVO: [Méphite de glace] +- AltName: [Méphite de glace] - Small elemental, neutral evil - **Armor Class** 11 - **Hit Points** 21 (6d6) @@ -8459,7 +8459,7 @@ _Hit_: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage. [][MonsterVO] # Magma Mephit -- NameVO: [Méphite de magma] +- AltName: [Méphite de magma] - Small elemental, neutral evil - **Armor Class** 11 - **Hit Points** 22 (5d6 + 5) @@ -8499,7 +8499,7 @@ _Hit_: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage. [][MonsterVO] # Dust Mephit -- NameVO: [Méphite de poussière] +- AltName: [Méphite de poussière] - Small elemental, neutral evil - **Armor Class** 12 - **Hit Points** 17 (5d6) @@ -8537,7 +8537,7 @@ _Hit_: 4 (1d4 + 2) slashing damage. [][MonsterVO] # Steam Mephit -- NameVO: [Méphite de vapeur] +- AltName: [Méphite de vapeur] - Small elemental, neutral evil - **Armor Class** 10 - **Hit Points** 21 (6d6) @@ -8573,7 +8573,7 @@ _Hit_: 2 (1d4) slashing damage plus 2 (1d4) fire damage. [][MonsterVO] # Spirit Naga -- NameVO: [Naga corrupteur] +- AltName: [Naga corrupteur] - Large monstrosity, chaotic evil - **Armor Class** 15 (natural armor) - **Hit Points** 75 (10d10 + 20) @@ -8620,7 +8620,7 @@ _Hit_: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitutio [][MonsterVO] # Guardian Naga -- NameVO: [Naga gardien] +- AltName: [Naga gardien] - Large monstrosity, lawful good - **Armor Class** 18 (natural armor) - **Hit Points** 127 (15d10 + 45) @@ -8673,7 +8673,7 @@ _Hit_: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) [][MonsterVO] # Nalfeshnee -- NameVO: [Nalfeshnie] +- AltName: [Nalfeshnie] - Large fiend (demon), chaotic evil - **Armor Class** 18 (natural armor) - **Hit Points** 184 (16d10 + 96) @@ -8717,7 +8717,7 @@ _Hit_: 15 (3d6 + 5) slashing damage. [][MonsterVO] # Noble -- NameVO: [Noble] +- AltName: [Noble] - Medium humanoid (any race), any alignment - **Armor Class** 15 (breastplate) - **Hit Points** 9 (2d8) @@ -8748,7 +8748,7 @@ _Hit_: 5 (1d8 + 1) piercing damage. [][MonsterVO] # Swarm of Insects -- NameVO: [Nuée d'insectes] +- AltName: [Nuée d'insectes] - Medium swarm of Tiny beasts, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 22 (5d8) @@ -8780,7 +8780,7 @@ _Hit_: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has hal [][MonsterVO] # Swarm of Bats -- NameVO: [Nuée de chauve-souris] +- AltName: [Nuée de chauve-souris] - Medium swarm of Tiny beasts, unaligned - **Armor Class** 12 - **Hit Points** 22 (5d8) @@ -8816,7 +8816,7 @@ _Hit_: 5 (2d4) piercing damage, or 2 (1d4) piercing damage if the swarm has half [][MonsterVO] # Swarm of Ravens -- NameVO: [Nuée de corbeaux] +- AltName: [Nuée de corbeaux] - Medium swarm of Tiny beasts, unaligned - **Armor Class** 12 - **Hit Points** 24 (7d8 - 7) @@ -8849,7 +8849,7 @@ _Hit_: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half [][MonsterVO] # Swarm of Quippers -- NameVO: [Nuée de piranhas] +- AltName: [Nuée de piranhas] - Medium swarm of Tiny beasts, unaligned - **Armor Class** 13 - **Hit Points** 28 (8d8 - 8) @@ -8885,7 +8885,7 @@ _Hit_: 14 (4d6) piercing damage, or 7 (2d6) piercing damage if the swarm has hal [][MonsterVO] # Swarm of Rats -- NameVO: [Nuée de rats] +- AltName: [Nuée de rats] - Medium swarm of Tiny beasts, unaligned - **Armor Class** 10 - **Hit Points** 24 (7d8 - 7) @@ -8919,7 +8919,7 @@ _Hit_: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half [][MonsterVO] # Swarm of Poisonous Snakes -- NameVO: [Nuée de serpents venimeux] +- AltName: [Nuée de serpents venimeux] - Medium swarm of Tiny beasts, unaligned - **Armor Class** 14 - **Hit Points** 36 (8d8) @@ -8951,7 +8951,7 @@ _Hit_: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half [][MonsterVO] # Wight -- NameVO: [Nécrophage] +- AltName: [Nécrophage] - Medium undead, neutral evil - **Armor Class** 14 (studded leather) - **Hit Points** 45 (6d8 + 18) @@ -8995,7 +8995,7 @@ _Hit_: 6 (1d8 + 2) piercing damage. [][MonsterVO] # Ogre -- NameVO: [Ogre] +- AltName: [Ogre] - Large giant, chaotic evil - **Armor Class** 11 (hide armor) - **Hit Points** 59 (7d10 + 21) @@ -9025,7 +9025,7 @@ _Hit_: 11 (2d6 + 4) piercing damage. [][MonsterVO] # Shadow -- NameVO: [Ombre] +- AltName: [Ombre] - Medium undead, chaotic evil - **Armor Class** 12 - **Hit Points** 16 (3d8 + 3) @@ -9064,7 +9064,7 @@ _Hit_: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced b [][MonsterVO] # Oni -- NameVO: [Oni] +- AltName: [Oni] - Large giant, lawful evil - **Armor Class** 16 (chain mail) - **Hit Points** 110 (13d10 + 39) @@ -9112,7 +9112,7 @@ _Hit_: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small o [][MonsterVO] # Orc -- NameVO: [Orc] +- AltName: [Orc] - Medium humanoid (orc), chaotic evil - **Armor Class** 13 (hide armor) - **Hit Points** 15 (2d8 + 6) @@ -9147,7 +9147,7 @@ _Hit_: 6 (1d6 + 3) piercing damage. [][MonsterVO] # Otyugh -- NameVO: [Otyugh] +- AltName: [Otyugh] - Large aberration, neutral - **Armor Class** 14 (natural armor) - **Hit Points** 114 (12d10 + 48) @@ -9186,7 +9186,7 @@ _Hit_: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the targe [][MonsterVO] # Brown Bear -- NameVO: [Ours brun] +- AltName: [Ours brun] - Large beast, unaligned - **Armor Class** 11 (natural armor) - **Hit Points** 34 (4d10 + 12) @@ -9223,7 +9223,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Black Bear -- NameVO: [Ours noir] +- AltName: [Ours noir] - Medium beast, unaligned - **Armor Class** 11 (natural armor) - **Hit Points** 19 (3d8 + 6) @@ -9260,7 +9260,7 @@ _Hit_: 7 (2d4 + 2) slashing damage. [][MonsterVO] # Polar Bear -- NameVO: [Ours polaire] +- AltName: [Ours polaire] - Large beast, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 42 (5d10 + 15) @@ -9297,7 +9297,7 @@ _Hit_: 12 (2d6 + 5) slashing damage. [][MonsterVO] # Werebear -- NameVO: [Ours-garou] +- AltName: [Ours-garou] - Medium humanoid (human, shapechanger), neutral good - **Armor Class** 10 in humanoid form, 11 (natural armor) in bear and hybrid form - **Hit Points** 135 (18d8 + 54) @@ -9341,7 +9341,7 @@ _Hit_: 10 (1d12 + 4) slashing damage. [][MonsterVO] # Rust Monster -- NameVO: [Oxydeur] +- AltName: [Oxydeur] - Medium monstrosity, unaligned - **Armor Class** 14 (natural armor) - **Hit Points** 27 (5d8 + 5) @@ -9375,7 +9375,7 @@ _Hit_: 5 (1d8 + 1) piercing damage. [][MonsterVO] # Panther -- NameVO: [Panthère] +- AltName: [Panthère] - Medium beast, unaligned - **Armor Class** 12 - **Hit Points** 13 (3d8) @@ -9412,7 +9412,7 @@ _Hit_: 4 (1d4 + 2) slashing damage. [][MonsterVO] # Octopus -- NameVO: [Pieuvre] +- AltName: [Pieuvre] - Small beast, unaligned - **Armor Class** 12 - **Hit Points** 3 (1d6) @@ -9449,7 +9449,7 @@ _Hit_: 1 bludgeoning damage, and the target is grappled (escape DC 10). Until th [][MonsterVO] # Giant Octopus -- NameVO: [Pieuvre géante] +- AltName: [Pieuvre géante] - Large beast, unaligned - **Armor Class** 11 - **Hit Points** 52 (8d10 + 8) @@ -9486,7 +9486,7 @@ _Hit_: 10 (2d6 + 3) bludgeoning damage. If the target is a creature, it is grapp [][MonsterVO] # Quipper -- NameVO: [Piranha] +- AltName: [Piranha] - Tiny beast, unaligned - **Armor Class** 13 - **Hit Points** 1 (1d4 - 1) @@ -9518,7 +9518,7 @@ _Hit_: 1 piercing damage. [][MonsterVO] # Planetar -- NameVO: [Planétar] +- AltName: [Planétar] - Large celestial, lawful good - **Armor Class** 19 (natural armor) - **Hit Points** 200 (16d10 + 112) @@ -9568,7 +9568,7 @@ _Hit_: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage. [][MonsterVO] # Plesiosaurus -- NameVO: [Plésiosaure] +- AltName: [Plésiosaure] - Large beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 68 (8d10 + 24) @@ -9599,7 +9599,7 @@ _Hit_: 14 (3d6 + 4) piercing damage. [][MonsterVO] # Pony -- NameVO: [Poney] +- AltName: [Poney] - Medium beast, unaligned - **Armor Class** 10 - **Hit Points** 11 (2d8 + 2) @@ -9625,7 +9625,7 @@ _Hit_: 7 (2d4 + 2) bludgeoning damage. [][MonsterVO] # Black Pudding -- NameVO: [Pouding noir] +- AltName: [Pouding noir] - Large ooze, unaligned - **Armor Class** 7 - **Hit Points** 85 (10d10 + 30) @@ -9665,7 +9665,7 @@ _Hit_: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, no [][MonsterVO] # Pseudodragon -- NameVO: [Pseudodragon] +- AltName: [Pseudodragon] - Tiny dragon, neutral good - **Armor Class** 13 (natural armor) - **Hit Points** 7 (2d4 + 2) @@ -9705,7 +9705,7 @@ _Hit_: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Const [][MonsterVO] # Giant Fire Beetle -- NameVO: [Punaise de feu géante] +- AltName: [Punaise de feu géante] - Small beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 4 (1d6 + 1) @@ -9735,7 +9735,7 @@ _Hit_: 2 (1d6 - 1) slashing damage. [][MonsterVO] # Pegasus -- NameVO: [Pégase] +- AltName: [Pégase] - Large celestial, chaotic good - **Armor Class** 12 - **Hit Points** 59 (7d10 + 21) @@ -9763,7 +9763,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage. [][MonsterVO] # Quasit -- NameVO: [Quasit] +- AltName: [Quasit] - Tiny fiend (demon, shapechanger), chaotic evil - **Armor Class** 13 - **Hit Points** 7 (3d4) @@ -9803,7 +9803,7 @@ _Hit_: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Const [][MonsterVO] # Rakshasa -- NameVO: [Rakshasa] +- AltName: [Rakshasa] - Medium fiend, lawful evil - **Armor Class** 16 (natural armor) - **Hit Points** 110 (13d8 + 52) @@ -9846,7 +9846,7 @@ _Hit_: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature [][MonsterVO] # Rat -- NameVO: [Rat] +- AltName: [Rat] - Tiny beast, unaligned - **Armor Class** 10 - **Hit Points** 1 (1d4 - 1) @@ -9876,7 +9876,7 @@ _Hit_: 1 piercing damage. [][MonsterVO] # Giant Rat -- NameVO: [Rat géant] +- AltName: [Rat géant] - Small beast, unaligned - **Armor Class** 12 - **Hit Points** 7 (2d6) @@ -9908,7 +9908,7 @@ _Hit_: 4 (1d4 + 2) piercing damage. [][MonsterVO] # Wererat -- NameVO: [Rat-garou] +- AltName: [Rat-garou] - Medium humanoid (human, shapechanger), lawful evil - **Armor Class** 12 - **Hit Points** 33 (6d8 + 6) @@ -9952,7 +9952,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. [][MonsterVO] # Reef Shark -- NameVO: [Requin de récif] +- AltName: [Requin de récif] - Medium beast, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 22 (4d8 + 4) @@ -9985,7 +9985,7 @@ _Hit_: 6 (1d8 + 2) piercing damage. [][MonsterVO] # Giant Shark -- NameVO: [Requin géant] +- AltName: [Requin géant] - Huge beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 126 (11d12 + 55) @@ -10018,7 +10018,7 @@ _Hit_: 22 (3d10 + 6) piercing damage. [][MonsterVO] # Hunter Shark -- NameVO: [Requin chasseur] +- AltName: [Requin chasseur] - Large beast, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 45 (6d10 + 12) @@ -10051,7 +10051,7 @@ _Hit_: 13 (2d8 + 4) piercing damage. [][MonsterVO] # Rhinoceros -- NameVO: [Rhinocéros] +- AltName: [Rhinocéros] - Large beast, unaligned - **Armor Class** 11 (natural armor) - **Hit Points** 45 (6d10 + 12) @@ -10081,7 +10081,7 @@ _Hit_: 14 (2d8 + 5) bludgeoning damage. [][MonsterVO] # Roc -- NameVO: [Roc] +- AltName: [Roc] - Gargantuan monstrosity, unaligned - **Armor Class** 15 (natural armor) - **Hit Points** 248 (16d20 + 80) @@ -10119,7 +10119,7 @@ _Hit_: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). [][MonsterVO] # Commoner -- NameVO: [Roturier] +- AltName: [Roturier] - Medium humanoid (any race), any alignment - **Armor Class** 10 - **Hit Points** 4 (1d8) @@ -10145,7 +10145,7 @@ _Hit_: 2 (1d4) bludgeoning damage. [][MonsterVO] # Remorhaz -- NameVO: [Remorhaz] +- AltName: [Remorhaz] - Huge monstrosity, unaligned - **Armor Class** 17 (natural armor) - **Hit Points** 195 (17d12 + 85) @@ -10178,7 +10178,7 @@ _Hit_: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is [][MonsterVO] # Sahuagin -- NameVO: [Sahuagin] +- AltName: [Sahuagin] - Medium humanoid (sahuagin), lawful evil - **Armor Class** 12 (natural armor) - **Hit Points** 22 (4d8 + 4) @@ -10223,7 +10223,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with [][MonsterVO] # Salamander -- NameVO: [Salamandre] +- AltName: [Salamandre] - Large elemental, neutral evil - **Armor Class** 15 (natural armor) - **Hit Points** 90 (12d10 + 24) @@ -10264,7 +10264,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target [][MonsterVO] # Boar -- NameVO: [Sanglier] +- AltName: [Sanglier] - Medium beast, unaligned - **Armor Class** 11 (natural armor) - **Hit Points** 11 (2d8 + 2) @@ -10296,7 +10296,7 @@ _Hit_: 4 (1d6 + 1) slashing damage. [][MonsterVO] # Giant Boar -- NameVO: [Sanglier géant] +- AltName: [Sanglier géant] - Large beast, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 42 (5d10 + 15) @@ -10328,7 +10328,7 @@ _Hit_: 10 (2d6 + 3) slashing damage. [][MonsterVO] # Wereboar -- NameVO: [Sanglier-garou] +- AltName: [Sanglier-garou] - Medium humanoid (human, shapechanger), neutral evil - **Armor Class** 10 in humanoid form, 11 (natural armor) in boar or hybrid form - **Hit Points** 78 (12d8 + 24) @@ -10370,7 +10370,7 @@ _Hit_: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succee [][MonsterVO] # Satyr -- NameVO: [Satyre] +- AltName: [Satyre] - Medium fey, chaotic neutral - **Armor Class** 14 (leather armor) - **Hit Points** 31 (7d8) @@ -10409,7 +10409,7 @@ _Hit_: 6 (1d6 + 3) piercing damage. [][MonsterVO] # Scorpion -- NameVO: [Scorpion] +- AltName: [Scorpion] - Tiny beast, unaligned - **Armor Class** 11 (natural armor) - **Hit Points** 1 (1d4 - 1) @@ -10435,7 +10435,7 @@ _Hit_: 1 piercing damage, and the target must make a DC 9 Constitution saving th [][MonsterVO] # Giant Scorpion -- NameVO: [Scorpion géant] +- AltName: [Scorpion géant] - Large beast, unaligned - **Armor Class** 15 (natural armor) - **Hit Points** 52 (7d10 + 14) @@ -10467,7 +10467,7 @@ _Hit_: 7 (1d10 + 2) piercing damage, and the target must make a DC 12 Constituti [][MonsterVO] # Constrictor Snake -- NameVO: [Serpent constricteur] +- AltName: [Serpent constricteur] - Large beast, unaligned - **Armor Class** 12 - **Hit Points** 13 (2d10 + 2) @@ -10497,7 +10497,7 @@ _Hit_: 6 (1d8 + 2) bludgeoning damage, and the target is grappled (escape DC 14) [][MonsterVO] # Giant Constrictor Snake -- NameVO: [Serpent constricteur géant] +- AltName: [Serpent constricteur géant] - Huge beast, unaligned - **Armor Class** 12 - **Hit Points** 60 (8d12 + 8) @@ -10528,7 +10528,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage, and the target is grappled (escape DC 16 [][MonsterVO] # Poisonous Snake -- NameVO: [Serpent venimeux] +- AltName: [Serpent venimeux] - Tiny beast, unaligned - **Armor Class** 13 - **Hit Points** 2 (1d4) @@ -10554,7 +10554,7 @@ _Hit_: 1 piercing damage, and the target must make a DC 10 Constitution saving t [][MonsterVO] # Giant Poisonous Snake -- NameVO: [Serpent venimeux géant] +- AltName: [Serpent venimeux géant] - Medium beast, unaligned - **Armor Class** 14 - **Hit Points** 11 (2d8 + 2) @@ -10581,7 +10581,7 @@ _Hit_: 6 (1d4 + 4) piercing damage, and the target must make a DC 11 Constitutio [][MonsterVO] # Flying Snake -- NameVO: [Serpent volant] +- AltName: [Serpent volant] - Tiny beast, unaligned - **Armor Class** 14 - **Hit Points** 5 (2d4) @@ -10611,7 +10611,7 @@ _Hit_: 1 piercing damage plus 7 (3d4) poison damage. [][MonsterVO] # Giant Ape -- NameVO: [Singe géant] +- AltName: [Singe géant] - Huge beast, unaligned - **Armor Class** 12 - **Hit Points** 157 (15d12 + 60) @@ -10644,7 +10644,7 @@ _Hit_: 30 (7d6 + 6) bludgeoning damage. [][MonsterVO] # Solar -- NameVO: [Solar] +- AltName: [Solar] - Large celestial, lawful good - **Armor Class** 21 (natural armor) - **Hit Points** 243 (18d10 + 144) @@ -10711,7 +10711,7 @@ The solar can take 3 legendary actions, choosing from the options below. Only on [][MonsterVO] # Specter -- NameVO: [Spectre] +- AltName: [Spectre] - Medium undead, chaotic evil - **Armor Class** 12 - **Hit Points** 22 (5d8) @@ -10746,7 +10746,7 @@ _Hit_: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution [][MonsterVO] # Skeleton -- NameVO: [Squelette] +- AltName: [Squelette] - Medium undead, lawful evil - **Armor Class** 13 (armor scraps) - **Hit Points** 13 (2d8 + 4) @@ -10779,7 +10779,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. [][MonsterVO] # Warhorse Skeleton -- NameVO: [Squelette cheval de guerre] +- AltName: [Squelette cheval de guerre] - Large undead, lawful evil - **Armor Class** 13 (barding scraps) - **Hit Points** 22 (3d10 + 6) @@ -10808,7 +10808,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage. [][MonsterVO] # Minotaur Skeleton -- NameVO: [Squelette minotaure] +- AltName: [Squelette minotaure] - Large undead, lawful evil - **Armor Class** 12 (natural armor) - **Hit Points** 67 (9d10 + 18) @@ -10845,7 +10845,7 @@ _Hit_: 13 (2d8 + 4) piercing damage. [][MonsterVO] # Stirge -- NameVO: [Strige] +- AltName: [Strige] - Tiny beast, unaligned - **Armor Class** 14 (natural armor) - **Hit Points** 2 (1d4) @@ -10871,7 +10871,7 @@ _Hit_: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While [][MonsterVO] # Succubus -- NameVO: [Succube/Incube] +- AltName: [Succube/Incube] - Medium fiend (shapechanger), neutral evil - **Armor Class** 15 (natural armor) - **Hit Points** 66 (12d8 + 12) @@ -10911,7 +10911,7 @@ _Hit_: 6 (1d6 + 3) slashing damage. [][MonsterVO] # Treant -- NameVO: [Sylvanien] +- AltName: [Sylvanien] - Huge plant, chaotic good - **Armor Class** 16 (natural armor) - **Hit Points** 138 (12d12 + 60) @@ -10953,7 +10953,7 @@ _Hit_: 28 (4d10 + 6) bludgeoning damage. [][MonsterVO] # Rug of Smothering -- NameVO: [Tapis étrangleur] +- AltName: [Tapis étrangleur] - Large construct, unaligned - **Armor Class** 12 - **Hit Points** 33 (6d10) @@ -10989,7 +10989,7 @@ _Hit_: The creature is grappled (escape DC 13). Until this grapple ends, the tar [][MonsterVO] # Tarrasque -- NameVO: [Tarasque] +- AltName: [Tarasque] - Gargantuan monstrosity (titan), unaligned - **Armor Class** 25 (natural armor) - **Hit Points** 676 (33d20 + 330) @@ -11056,7 +11056,7 @@ The tarrasque can take 3 legendary actions, choosing from the options below. Onl [][MonsterVO] # Shambling Mound -- NameVO: [Tertre errant] +- AltName: [Tertre errant] - Large plant, unaligned - **Armor Class** 15 (natural armor) - **Hit Points** 136 (16d10 + 48) @@ -11094,7 +11094,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage. [][MonsterVO] # Tiger -- NameVO: [Tigre] +- AltName: [Tigre] - Large beast, unaligned - **Armor Class** 12 - **Hit Points** 37 (5d10 + 10) @@ -11131,7 +11131,7 @@ _Hit_: 7 (1d8 + 3) slashing damage. [][MonsterVO] # Saber-Toothed Tiger -- NameVO: [Tigre à dents de sabre] +- AltName: [Tigre à dents de sabre] - Large beast, unaligned - **Armor Class** 12 - **Hit Points** 52 (7d10 + 14) @@ -11168,7 +11168,7 @@ _Hit_: 12 (2d6 + 5) slashing damage. [][MonsterVO] # Weretiger -- NameVO: [Tigre-garou] +- AltName: [Tigre-garou] - Medium humanoid (human, shapechanger), neutral - **Armor Class** 12 - **Hit Points** 120 (16d8 + 48) @@ -11218,7 +11218,7 @@ _Hit_: 6 (1d8 + 2) piercing damage. [][MonsterVO] # Grimlock -- NameVO: [Torve] +- AltName: [Torve] - Medium humanoid (grimlock), neutral evil - **Armor Class** 11 - **Hit Points** 11 (2d8 + 2) @@ -11254,7 +11254,7 @@ _Hit_: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage. [][MonsterVO] # Invisible Stalker -- NameVO: [Traqueur invisible] +- AltName: [Traqueur invisible] - Medium elemental, neutral - **Armor Class** 14 - **Hit Points** 104 (16d8 + 32) @@ -11292,7 +11292,7 @@ _Hit_: 10 (2d6 + 3) bludgeoning damage. [][MonsterVO] # Triceratops -- NameVO: [Tricératops] +- AltName: [Tricératops] - Huge beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 95 (10d12 + 30) @@ -11326,7 +11326,7 @@ _Hit_: 22 (3d10 + 6) bludgeoning damage [][MonsterVO] # Troll -- NameVO: [Troll] +- AltName: [Troll] - Large giant, chaotic evil - **Armor Class** 15 (natural armor) - **Hit Points** 84 (8d10 + 40) @@ -11365,7 +11365,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. [][MonsterVO] # Tyrannosaurus Rex -- NameVO: [Tyrannosaure] +- AltName: [Tyrannosaure] - Huge beast, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 136 (13d12 + 52) @@ -11398,7 +11398,7 @@ _Hit_: 20 (3d8 + 7) bludgeoning damage. [][MonsterVO] # Vampire -- NameVO: [Vampire] +- AltName: [Vampire] - Medium undead (shapechanger), lawful evil - **Armor Class** 16 (natural armor) - **Hit Points** 144 (17d8 + 68) @@ -11469,7 +11469,7 @@ The vampire can take 3 legendary actions, choosing from the options below. Only [][MonsterVO] # Vampire Spawn -- NameVO: [Vampirien] +- AltName: [Vampirien] - Medium undead, neutral evil - **Armor Class** 15 (natural armor) - **Hit Points** 82 (11d8 + 33) @@ -11520,7 +11520,7 @@ _Hit_: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hi [][MonsterVO] # Gray Ooze -- NameVO: [Vase grise] +- AltName: [Vase grise] - Medium ooze, unaligned - **Armor Class** 8 - **Hit Points** 22 (3d8 + 9) @@ -11559,7 +11559,7 @@ _Hit_: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the targe [][MonsterVO] # Vulture -- NameVO: [Vautour] +- AltName: [Vautour] - Medium beast, unaligned - **Armor Class** 10 - **Hit Points** 5 (1d8 + 1) @@ -11592,7 +11592,7 @@ _Hit_: 2 (1d4) piercing damage. [][MonsterVO] # Giant Vulture -- NameVO: [Vautour géant] +- AltName: [Vautour géant] - Large beast, neutral evil - **Armor Class** 10 - **Hit Points** 22 (3d10 + 6) @@ -11631,7 +11631,7 @@ _Hit_: 9 (2d6 + 2) slashing damage. [][MonsterVO] # Purple Worm -- NameVO: [Ver pourpre] +- AltName: [Ver pourpre] - Gargantuan monstrosity, unaligned - **Armor Class** 18 (natural armor) - **Hit Points** 247 (15d20 + 90) @@ -11668,7 +11668,7 @@ _Hit_: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constituti [][MonsterVO] # Wyvern -- NameVO: [Vouivre] +- AltName: [Vouivre] - Large dragon, unaligned - **Armor Class** 13 (natural armor) - **Hit Points** 110 (13d10 + 39) @@ -11705,7 +11705,7 @@ _Hit_: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution s [][MonsterVO] # Vrock -- NameVO: [Vrock] +- AltName: [Vrock] - Large fiend (demon), chaotic evil - **Armor Class** 15 (natural armor) - **Hit Points** 104 (11d10 + 44) @@ -11751,7 +11751,7 @@ _Hit_: 14 (2d10 + 3) slashing damage. [][MonsterVO] # Veteran -- NameVO: [Vétéran] +- AltName: [Vétéran] - Medium humanoid (any race), any alignment - **Armor Class** 17 (splint) - **Hit Points** 58 (9d8 + 18) @@ -11788,7 +11788,7 @@ _Hit_: 6 (1d10 + 1) piercing damage. [][MonsterVO] # Worg -- NameVO: [Worg] +- AltName: [Worg] - Large monstrosity, neutral evil - **Armor Class** 13 (natural armor) - **Hit Points** 26 (4d10 + 4) @@ -11819,7 +11819,7 @@ _Hit_: 10 (2d6 + 3) piercing damage. If the target is a creature, it must succee [][MonsterVO] # Xorn -- NameVO: [Xorn] +- AltName: [Xorn] - Medium elemental, neutral - **Armor Class** 19 (natural armor) - **Hit Points** 73 (7d8 + 42) @@ -11862,7 +11862,7 @@ _Hit_: 13 (3d6 + 3) piercing damage. [][MonsterVO] # Zombie -- NameVO: [Zombi] +- AltName: [Zombi] - Medium undead, neutral evil - **Armor Class** 8 - **Hit Points** 22 (3d8 + 9) @@ -11895,7 +11895,7 @@ _Hit_: 4 (1d6 + 1) bludgeoning damage. [][MonsterVO] # Ogre Zombie -- NameVO: [Zombi ogre] +- AltName: [Zombi ogre] - Large undead, neutral evil - **Armor Class** 8 - **Hit Points** 85 (9d10 + 36) @@ -11928,7 +11928,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage. [][MonsterVO] # Wraith -- NameVO: [Âme en peine] +- AltName: [Âme en peine] - Medium undead, neutral evil - **Armor Class** 13 - **Hit Points** 67 (9d8 + 27) @@ -11965,7 +11965,7 @@ _Hit_: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitu [][MonsterVO] # Scout -- NameVO: [Éclaireur] +- AltName: [Éclaireur] - Medium humanoid (any race), any alignment - **Armor Class** 13 (leather armor) - **Hit Points** 16 (3d8 + 3) @@ -12002,7 +12002,7 @@ _Hit_: 6 (1d8 + 2) piercing damage. [][MonsterVO] # Efreeti -- NameVO: [Éfrit] +- AltName: [Éfrit] - Large elemental, lawful evil - **Armor Class** 17 (natural armor) - **Hit Points** 200 (16d10 + 112) @@ -12048,7 +12048,7 @@ _Hit_: 17 (5d6) fire damage. [][MonsterVO] # Elk -- NameVO: [Élan] +- AltName: [Élan] - Large beast, unaligned - **Armor Class** 10 - **Hit Points** 13 (2d10 + 2) @@ -12082,7 +12082,7 @@ _Hit_: 8 (2d4 + 3) bludgeoning damage. [][MonsterVO] # Giant Elk -- NameVO: [Élan géant] +- AltName: [Élan géant] - Huge beast, unaligned - **Armor Class** 14 (natural armor) - **Hit Points** 42 (5d12 + 10) @@ -12117,7 +12117,7 @@ _Hit_: 22 (4d8 + 4) bludgeoning damage. [][MonsterVO] # Air Elemental -- NameVO: [Élémentaire de l'air] +- AltName: [Élémentaire de l'air] - Large elemental, neutral - **Armor Class** 15 - **Hit Points** 90 (12d10 + 24) @@ -12154,7 +12154,7 @@ _Hit_: 14 (2d8 + 5) bludgeoning damage. [][MonsterVO] # Water Elemental -- NameVO: [Élémentaire de l'eau] +- AltName: [Élémentaire de l'eau] - Large elemental, neutral - **Armor Class** 14 (natural armor) - **Hit Points** 114 (12d10 + 48) @@ -12193,7 +12193,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage. [][MonsterVO] # Earth Elemental -- NameVO: [Élémentaire de la terre] +- AltName: [Élémentaire de la terre] - Large elemental, neutral - **Armor Class** 17 (natural armor) - **Hit Points** 126 (12d10 + 60) @@ -12231,7 +12231,7 @@ _Hit_: 14 (2d8 + 5) bludgeoning damage. [][MonsterVO] # Fire Elemental -- NameVO: [Élémentaire du feu] +- AltName: [Élémentaire du feu] - Large elemental, neutral - **Armor Class** 13 - **Hit Points** 102 (12d10 + 36) @@ -12270,7 +12270,7 @@ _Hit_: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable obje [][MonsterVO] # Elephant -- NameVO: [Éléphant] +- AltName: [Éléphant] - Huge beast, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 76 (8d12 + 24) @@ -12304,7 +12304,7 @@ _Hit_: 22 (3d10 + 6) bludgeoning damage. [][MonsterVO] # Killer Whale -- NameVO: [Épaulard] +- AltName: [Épaulard] - Huge beast, unaligned - **Armor Class** 12 (natural armor) - **Hit Points** 90 (12d12 + 12) @@ -12339,7 +12339,7 @@ _Hit_: 21 (5d6 + 4) piercing damage. [][MonsterVO] # Flying Sword -- NameVO: [Épée volante] +- AltName: [Épée volante] - Small construct, unaligned - **Armor Class** 17 (natural armor) - **Hit Points** 17 (5d6) @@ -12374,7 +12374,7 @@ _Hit_: 5 (1d8 + 1) slashing damage. [][MonsterVO] # Erinyes -- NameVO: [Érinye] +- AltName: [Érinye] - Medium fiend (devil), lawful evil - **Armor Class** 18 (plate) - **Hit Points** 153 (18d8 + 72) diff --git a/Data/spells_hd.md b/Data/spells_hd.md index 10d3257c..21296b35 100644 --- a/Data/spells_hd.md +++ b/Data/spells_hd.md @@ -2,12 +2,12 @@ [][Items] # Sorts (H&D) -- NameVO: [Spells](spells_vo.md) +- AltName: [Spells](spells_vo.md) [][SpellHD] # Agrandir/rétrécir -- NameVO: [Enlarge/Reduce](spells_vo.md#enlargereduce) +- AltName: [Enlarge/Reduce](spells_vo.md#enlargereduce) - CastingTime: 1 action - Components: V, S, M (une pincée de limaille de fer) - Duration: concentration, jusqu'à 1 minute @@ -31,7 +31,7 @@ Si la cible est une créature, tout ce qu'elle porte et tout ce qu'elle transpor [][SpellHD] # Aide -- NameVO: [Aid](spells_vo.md#aid) +- AltName: [Aid](spells_vo.md#aid) - CastingTime: 1 action - Components: V, S, M (une minuscule bandelette de tissu blanc) - Duration: 8 heures @@ -51,7 +51,7 @@ Le sort renforce vos alliés, qui deviennent plus robustes et plus résolus. Cho [][SpellHD] # Alarme -- NameVO: [Alarm](spells_vo.md#alarm) +- AltName: [Alarm](spells_vo.md#alarm) - CastingTime: 1 minute - Components: V, S, M (une minuscule clochette et un filament en argent) - Duration: 8 heures @@ -73,7 +73,7 @@ Une alarme audible émet le même son qu'une cloche d'alerte pendant 10 secondes [][SpellHD] # Allié planaire -- NameVO: [Planar Ally](spells_vo.md#planar-ally) +- AltName: [Planar Ally](spells_vo.md#planar-ally) - CastingTime: 10 minutes - Components: V, S - Duration: instantanée @@ -105,7 +105,7 @@ Une telle créature enrôlée dans votre groupe compte comme un membre à part e [][SpellHD] # Amélioration de caractéristique -- NameVO: [Enhance Ability](spells_vo.md#enhance-ability) +- AltName: [Enhance Ability](spells_vo.md#enhance-ability) - CastingTime: 1 action - Components: V, S, M (des poils ou des plumes venant d'un animal) - Duration: concentration, jusqu'à 1 heure @@ -137,7 +137,7 @@ Vous touchez une créature pour lui accorder une amélioration magique. Choisiss [][SpellHD] # Amitié avec les animaux -- NameVO: [Animal Friendship](spells_vo.md#animal-friendship) +- AltName: [Animal Friendship](spells_vo.md#animal-friendship) - CastingTime: 1 action - Components: V, S, M (un peu de nourriture) - Duration: 24 heures @@ -157,7 +157,7 @@ Grâce à ce sort, vous convainquez une bête que vous ne lui voulez aucun mal. [][SpellHD] # Animation des morts -- NameVO: [Animate Dead](spells_vo.md#animate-dead) +- AltName: [Animate Dead](spells_vo.md#animate-dead) - CastingTime: 1 minute - Components: V, S, M (une goutte de sang, un lambeau de chair et une pincée de poudre d'os) - Duration: instantanée @@ -183,7 +183,7 @@ La créature est placée sous votre contrôle pendant 24 heures, après quoi ell [][SpellHD] # Animation des objets -- NameVO: [Animate Objects](spells_vo.md#animate-objects) +- AltName: [Animate Objects](spells_vo.md#animate-objects) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -219,7 +219,7 @@ Si vous ordonnez à un objet animé d'attaquer, il a droit à une attaque au cor [][SpellHD] # Apaisement des émotions -- NameVO: [Calm Emotions](spells_vo.md#calm-emotions) +- AltName: [Calm Emotions](spells_vo.md#calm-emotions) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -241,7 +241,7 @@ Profil technique des objets animés Taille PV CA Attaque For Dex Très petite 20 [][SpellHD] # Apparence trompeuse -- NameVO: [Seeming](spells_vo.md#seeming) +- AltName: [Seeming](spells_vo.md#seeming) - CastingTime: 1 action - Components: V, S - Duration: 8 heures @@ -269,7 +269,7 @@ Une créature peut utiliser son action pour examiner une cible et faire un test [][SpellHD] # Appel de familier -- NameVO: [Find Familiar](spells_vo.md#find-familiar) +- AltName: [Find Familiar](spells_vo.md#find-familiar) - CastingTime: 1 heure - Components: V, S, M (10 po de charbon, d'encens et d'herbe à faire brûler dans un brasero en laiton) - Duration: instantanée @@ -299,7 +299,7 @@ Enfin, quand vous lancez un sort avec une portée de « contact », votre famili [][SpellHD] # Appel de la foudre -- NameVO: [Call Lightning](spells_vo.md#call-lightning) +- AltName: [Call Lightning](spells_vo.md#call-lightning) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -323,7 +323,7 @@ Si, au moment de l'incantation, vous vous trouvez en extérieur et que les condi [][SpellHD] # Arc enchanté -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (un arc) - Duration: 1 minute @@ -345,7 +345,7 @@ Ces projectiles sont magiques et infligent 1d6 dégâts supplémentaires. De plu [][SpellHD] # Arme magique -- NameVO: [Magic Weapon](spells_vo.md#magic-weapon) +- AltName: [Magic Weapon](spells_vo.md#magic-weapon) - CastingTime: 1 action bonus - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -365,7 +365,7 @@ Vous touchez une arme non magique. Jusqu'à la fin du sort, elle devient magique [][SpellHD] # Arme sainte -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -385,7 +385,7 @@ Vous brandissez votre arme et l'investissez du pouvoir de combattre le mal. Jusq [][SpellHD] # Arme spirituelle -- NameVO: [Spiritual Weapon](spells_vo.md#spiritual-weapon) +- AltName: [Spiritual Weapon](spells_vo.md#spiritual-weapon) - CastingTime: 1 action bonus - Components: V, S - Duration: 1 minute @@ -411,7 +411,7 @@ L'arme peut revêtir la forme de votre choix. Les clercs des divinités associé [][SpellHD] # Armure du mage -- NameVO: [Mage Armor](spells_vo.md#mage-armor) +- AltName: [Mage Armor](spells_vo.md#mage-armor) - CastingTime: 1 action - Components: V, S, M (un bout de cuir tanné) - Duration: 8 heures @@ -429,7 +429,7 @@ Vous touchez une créature consentante qui ne porte pas d'armure et l'enveloppez [][SpellHD] # Arrêt du temps -- NameVO: [Time Stop](spells_vo.md#time-stop) +- AltName: [Time Stop](spells_vo.md#time-stop) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -449,7 +449,7 @@ Ce sort se termine si l'une des actions que vous effectuez lors de ce laps de te [][SpellHD] # Aspersion acide -- NameVO: [Acid Splash](spells_vo.md#acid-splash) +- AltName: [Acid Splash](spells_vo.md#acid-splash) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -469,7 +469,7 @@ Les dégâts du sort augmentent de 1d6 quand vous atteignez le niveau 5 (2d6), 1 [][SpellHD] # Assassin imaginaire -- NameVO: [Phantasmal Killer](spells_vo.md#phantasmal-killer) +- AltName: [Phantasmal Killer](spells_vo.md#phantasmal-killer) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -493,7 +493,7 @@ Elle subit 4d10 dégâts psychiques à chaque échec. Le sort se termine dès qu [][SpellHD] # Assistance -- NameVO: [Guidance](spells_vo.md#guidance) +- AltName: [Guidance](spells_vo.md#guidance) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -511,7 +511,7 @@ Vous touchez une créature consentante. Une fois avant la fin du sort, la cible [][SpellHD] # Augure -- NameVO: [Augury](spells_vo.md#augury) +- AltName: [Augury](spells_vo.md#augury) - CastingTime: 1 minute - 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 @@ -541,7 +541,7 @@ Si vous lancez ce sort à deux reprises ou plus avant un long repos, il y a 25 % [][SpellHD] # Aura de force -- NameVO: +- AltName: - CastingTime: 1 action - Components: V - Duration: Concentration, jusqu'à 10 minutes @@ -559,7 +559,7 @@ Vous désignez jusqu'à cinq créatures à portée que vous pouvez voir. Vous et [][SpellHD] # Aura du héros -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -579,7 +579,7 @@ Le rayon d'action de ce sort double lorsque vous atteignez le niveau 5 (3 mètre [][SpellHD] # Aura magique de l'arcaniste -- NameVO: [Nystul's Magic Aura](spells_vo.md#nystuls-magic-aura) +- AltName: [Nystul's Magic Aura](spells_vo.md#nystuls-magic-aura) - CastingTime: 1 action - Components: V, S, M (un petit carré de soie) - Duration: 24 heures @@ -603,7 +603,7 @@ Lorsque vous lancez le sort, vous choisissez l'un des effets suivants, ou les de [][SpellHD] # Aura sacrée -- NameVO: [Holy Aura](spells_vo.md#holy-aura) +- AltName: [Holy Aura](spells_vo.md#holy-aura) - CastingTime: 1 action - 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 @@ -623,7 +623,7 @@ Les créatures de votre choix qui se trouvent dans cette zone au moment où vous [][SpellHD] # Bagou -- NameVO: [Glibness](spells_vo.md#glibness) +- AltName: [Glibness](spells_vo.md#glibness) - CastingTime: 1 action - Components: V - Duration: 1 heure @@ -641,7 +641,7 @@ Jusqu'à la fin du sort, chaque fois que vous effectuez un test de Charisme, vou [][SpellHD] # Baies nourricières -- NameVO: [Goodberry](spells_vo.md#goodberry) +- AltName: [Goodberry](spells_vo.md#goodberry) - CastingTime: 1 action - Components: V, S, M (un brin de gui) - Duration: instantanée @@ -663,7 +663,7 @@ Les baies perdent leurs propriétés si personne ne les mange dans les 24 heures [][SpellHD] # Balisage -- NameVO: [Guiding Bolt](spells_vo.md#guiding-bolt) +- AltName: [Guiding Bolt](spells_vo.md#guiding-bolt) - CastingTime: 1 action - Components: V, S - Duration: 1 round @@ -683,7 +683,7 @@ Un rayon de lumière frappe une créature de votre choix située à portée. Fai [][SpellHD] # Bannissement -- NameVO: [Banishment](spells_vo.md#banishment) +- AltName: [Banishment](spells_vo.md#banishment) - CastingTime: 1 action - Components: V, S, M (un objet qui répugne à la cible) - Duration: concentration, jusqu'à 1 minute @@ -711,7 +711,7 @@ Si le sort se termine avant que 1 minute ne se soit écoulée, la cible réappar [][SpellHD] # Barrière de lames -- NameVO: [Blade Barrier](spells_vo.md#blade-barrier) +- AltName: [Blade Barrier](spells_vo.md#blade-barrier) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -731,7 +731,7 @@ Quand une créature pénètre dans la zone du mur pour la première fois au cour [][SpellHD] # Bénédiction -- NameVO: [Bless](spells_vo.md#bless) +- AltName: [Bless](spells_vo.md#bless) - CastingTime: 1 action - Components: V, S, M (un peu d'eau bénite à asperger) - Duration: concentration, jusqu'à 1 minute @@ -751,7 +751,7 @@ Vous bénissez jusqu'à trois créatures de votre choix situées à portée. Qua [][SpellHD] # Bénédiction héroïque -- NameVO: +- AltName: - CastingTime: 1 action - Components: V - Duration: concentration, jusqu'à 1 minute @@ -769,7 +769,7 @@ Vous désignez jusqu'à 5 créatures à portée et que vous pouvez voir. Les cib [][SpellHD] # Blessure -- NameVO: [Inflict Wounds](spells_vo.md#inflict-wounds) +- AltName: [Inflict Wounds](spells_vo.md#inflict-wounds) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -789,7 +789,7 @@ Faites une attaque de sort au corps-à-corps contre une créature située à une [][SpellHD] # Bouche magique -- NameVO: [Magic Mouth](spells_vo.md#magic-mouth) +- AltName: [Magic Mouth](spells_vo.md#magic-mouth) - CastingTime: 1 minute - 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 @@ -813,7 +813,7 @@ Ces dernières peuvent être aussi génériques ou spécifiques que vous le dés [][SpellHD] # Bouclier -- NameVO: [Shield](spells_vo.md#shield) +- AltName: [Shield](spells_vo.md#shield) - CastingTime: 1 réaction à effectuer lorsque vous êtes touché par une attaque ou un sort de _[projectile magique]_ - Components: V, S - Duration: 1 round @@ -831,7 +831,7 @@ Une barrière [invisible] faite de force magique apparaît autour de vous et vou [][SpellHD] # Bouclier de feu -- NameVO: [Fire Shield](spells_vo.md#fire-shield) +- AltName: [Fire Shield](spells_vo.md#fire-shield) - CastingTime: 1 action - Components: V, S, M (un morceau de phosphore ou une luciole) - Duration: 10 minutes @@ -853,7 +853,7 @@ De plus, quand une créature située dans un rayon de 1,50 mètre autour de vous [][SpellHD] # Bouclier de la foi -- NameVO: [Shield of Faith](spells_vo.md#shield-of-faith) +- AltName: [Shield of Faith](spells_vo.md#shield-of-faith) - CastingTime: 1 action bonus - Components: V, S, M (un petit parchemin avec un extrait de texte sacré) - Duration: concentration, jusqu'à 10 minutes @@ -871,7 +871,7 @@ Un champ scintillant apparaît autour d'une créature de votre choix située à [][SpellHD] # Bouffée de poison -- NameVO: [Poison Spray](spells_vo.md#poison-spray) +- AltName: [Poison Spray](spells_vo.md#poison-spray) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -891,7 +891,7 @@ Les dégâts du sort augmentent de 1d12 quand vous atteignez le niveau 5 (2d12), [][SpellHD] # Boule de feu -- NameVO: [Fireball](spells_vo.md#fireball) +- AltName: [Fireball](spells_vo.md#fireball) - CastingTime: 1 action - Components: V, S, M (une petite boule de guano de chauve-souris et du soufre) - Duration: instantanée @@ -913,7 +913,7 @@ Le feu s'étend en contournant les angles. Il embrase les objets inflammables de [][SpellHD] # Boule de feu à explosion retardée -- NameVO: [Delayed Blast Fireball](spells_vo.md#delayed-blast-fireball) +- AltName: [Delayed Blast Fireball](spells_vo.md#delayed-blast-fireball) - CastingTime: 1 action - Components: V, S, M (une petite boule de guano de chauve-souris et du soufre) - Duration: concentration, jusqu'à 1 minute @@ -941,7 +941,7 @@ Les flammes endommagent les objets qui se trouvent dans la zone et embrasent les [][SpellHD] # Bourrasque -- NameVO: [Gust of Wind](spells_vo.md#gust-of-wind) +- AltName: [Gust of Wind](spells_vo.md#gust-of-wind) - CastingTime: 1 action - Components: V, S, M (une graine de légume) - Duration: concentration, jusqu'à 1 minute @@ -965,7 +965,7 @@ Vous pouvez changer la direction dans laquelle souffle la bourrasque au moyen d' [][SpellHD] # Briser -- NameVO: [Shatter](spells_vo.md#shatter) +- AltName: [Shatter](spells_vo.md#shatter) - CastingTime: 1 action - Components: V, S, M (un éclat de mica) - Duration: instantanée @@ -989,7 +989,7 @@ Un objet non magique que personne ne porte ni ne transporte subit aussi ces dég [][SpellHD] # Brûlure du juste -- NameVO: +- AltName: - CastingTime: 1 action - Components: V - Duration: concentration, jusqu'à 1 minute @@ -1015,7 +1015,7 @@ Les morts-vivants subissent 2d6 points de dégâts et la moitié seulement en ca [][SpellHD] # Cage de force -- NameVO: [Forcecage](spells_vo.md#forcecage) +- AltName: [Forcecage](spells_vo.md#forcecage) - CastingTime: 1 action - Components: V, S, M (poussière de rubis d'une valeur de 1 500 po) - Duration: 1 heure @@ -1043,7 +1043,7 @@ La _[dissipation de la magie]_ est sans effet sur ce sort. [][SpellHD] # Caresse du vampire -- NameVO: [Vampiric Touch](spells_vo.md#vampiric-touch) +- AltName: [Vampiric Touch](spells_vo.md#vampiric-touch) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -1063,7 +1063,7 @@ Le simple contact de votre main enveloppée d'ombres peut siphonner la force vit [][SpellHD] # Catalepsie -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (un petit morceau de linceul) - Duration: 1 heure @@ -1089,7 +1089,7 @@ Au niveau 9, la cible doit réussir un jet de sauvegarde de constitution difficu [][SpellHD] # Cécité/surdité -- NameVO: [Blindness/Deafness](spells_vo.md#blindnessdeafness) +- AltName: [Blindness/Deafness](spells_vo.md#blindnessdeafness) - CastingTime: 1 action - Components: V - Duration: 1 minute @@ -1111,7 +1111,7 @@ Choisissez une créature autre que vous qui se situe à portée et dans votre ch [][SpellHD] # Cercle de mort -- NameVO: [Circle of Death](spells_vo.md#circle-of-death) +- AltName: [Circle of Death](spells_vo.md#circle-of-death) - CastingTime: 1 action - Components: V, S, M (la poudre d'une perle noire broyée d'une valeur minimale de 500 po) - Duration: instantanée @@ -1131,7 +1131,7 @@ Une sphère d'énergie négative s'étend dans un rayon de 18 mètres à partir [][SpellHD] # Cercle de téléportation -- NameVO: [Teleportation Circle](spells_vo.md#teleportation-circle) +- AltName: [Teleportation Circle](spells_vo.md#teleportation-circle) - CastingTime: 1 minute - 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 @@ -1157,7 +1157,7 @@ Vous pouvez créer un cercle de téléportation permanent en lançant ce sort au [][SpellHD] # Cercle magique -- NameVO: [Magic Circle](spells_vo.md#magic-circle) +- AltName: [Magic Circle](spells_vo.md#magic-circle) - CastingTime: 1 minute - 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 @@ -1189,7 +1189,7 @@ Quand vous lancez ce sort, vous pouvez décider que sa magie agira à l'envers, [][SpellHD] # Chaîne d'éclairs -- NameVO: [Chain Lightning](spells_vo.md#chain-lightning) +- AltName: [Chain Lightning](spells_vo.md#chain-lightning) - CastingTime: 1 action - 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 @@ -1215,7 +1215,7 @@ Chaque cible doit faire un jet de sauvegarde de Dextérité et subit 10d8 dégâ [][SpellHD] # Champ antimagie -- NameVO: [Antimagic Field](spells_vo.md#antimagic-field) +- AltName: [Antimagic Field](spells_vo.md#antimagic-field) - CastingTime: 1 action - Components: V, S, M (une pincée de poudre de fer ou de limaille) - Duration: concentration, jusqu'à 1 heure @@ -1251,7 +1251,7 @@ Les propriétés et les pouvoirs d'une arme magique sont supprimés si son utili [][SpellHD] # Changement de forme -- NameVO: [Shapechange](spells_vo.md#shapechange) +- AltName: [Shapechange](spells_vo.md#shapechange) - CastingTime: 1 action - 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 @@ -1283,7 +1283,7 @@ Pendant la durée du sort, vous pouvez utiliser votre action pour prendre une no [][SpellHD] # Changement de plan -- NameVO: [Plane Shift](spells_vo.md#plane-shift) +- AltName: [Plane Shift](spells_vo.md#plane-shift) - CastingTime: 1 action - Components: V, S, M (un diapason de métal valant au moins 250 po, harmonisé avec un plan d'existence donné) - Duration: instantanée @@ -1307,7 +1307,7 @@ Vous pouvez aussi utiliser ce sort pour bannir une créature non consentante sur [][SpellHD] # Charme-personne -- NameVO: [Charm Person](spells_vo.md#charm-person) +- AltName: [Charm Person](spells_vo.md#charm-person) - CastingTime: 1 action - Components: V, S - Duration: 1 heure @@ -1327,7 +1327,7 @@ Vous tentez de charmer un humanoïde se trouvant à portée et dans votre champ [][SpellHD] # Chauffer le métal -- NameVO: [Heat Metal](spells_vo.md#heat-metal) +- AltName: [Heat Metal](spells_vo.md#heat-metal) - CastingTime: 1 action - Components: V, S, M (un bout de fer et une flamme) - Duration: concentration, jusqu'à 1 minute @@ -1353,7 +1353,7 @@ Si une créature tient l'objet qui lui inflige des dégâts ou le porte sur elle [][SpellHD] # Chien de garde -- NameVO: [Mordenkainen's Faithful Hound](spells_vo.md#mordenkainens-faithful-hound) +- AltName: [Mordenkainen's Faithful Hound](spells_vo.md#mordenkainens-faithful-hound) - CastingTime: 1 action - Components: V, S, M (un petit sifflet en argent, un éclat d'os et une ficelle) - Duration: 8 heures @@ -1375,7 +1375,7 @@ Au début de votre tour, le chien tente de mordre une créature qui vous est hos [][SpellHD] # Choc des titans -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -1393,7 +1393,7 @@ Vous défiez un adversaire à portée. Tant que vous n'attaquez que cet adversai [][SpellHD] # Clairvoyance -- NameVO: [Clairvoyance](spells_vo.md#clairvoyance) +- AltName: [Clairvoyance](spells_vo.md#clairvoyance) - CastingTime: 10 minutes - 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 @@ -1417,7 +1417,7 @@ Une créature capable de voir l'organe sensoriel (en bénéficiant par exemple d [][SpellHD] # Clignotement -- NameVO: [Blink](spells_vo.md#blink) +- AltName: [Blink](spells_vo.md#blink) - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -1437,7 +1437,7 @@ Tant que vous êtes sur le plan éthéré, vous voyez et entendez ce qui se pass [][SpellHD] # Clone -- NameVO: [Clone](spells_vo.md#clone) +- AltName: [Clone](spells_vo.md#clone) - CastingTime: 1 heure - 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 @@ -1457,7 +1457,7 @@ Une fois que le clone est arrivé à maturité, si la créature originale meurt, [][SpellHD] # Coercition mystique -- NameVO: [Geas](spells_vo.md#geas) +- AltName: [Geas](spells_vo.md#geas) - CastingTime: 1 minute - Components: V - Duration: 30 jours @@ -1485,7 +1485,7 @@ Avec un emplacement de sort de niveau 9, il persiste jusqu'à ce que quelqu'un l [][SpellHD] # Coffre secret -- NameVO: [Leomund's Secret Chest](spells_vo.md#leomunds-secret-chest) +- AltName: [Leomund's Secret Chest](spells_vo.md#leomunds-secret-chest) - CastingTime: 1 action - 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 @@ -1509,7 +1509,7 @@ Si le sort se termine alors que le grand coffre est encore sur le plan éthéré [][SpellHD] # Colère des damnés -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (un peu de cendre et de poussière d'os) - Duration: concentration, jusqu'à 1 minute @@ -1529,7 +1529,7 @@ Vous invoquez la puissance des enfers dans une zone de 6 mètres de rayon autour [][SpellHD] # Collet magique -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (une ficelle) - Duration: 1 heure @@ -1553,7 +1553,7 @@ Une créature [entravée] peut utiliser son action à chaque tour pour faire un [][SpellHD] # Colonne de flamme -- NameVO: [Flame Strike](spells_vo.md#flame-strike) +- AltName: [Flame Strike](spells_vo.md#flame-strike) - CastingTime: 1 action - Components: V, S, M (une pincée de soufre) - Duration: instantanée @@ -1575,7 +1575,7 @@ Celles qui échouent subissent 4d6 dégâts de feu et 4d6 dégâts radiants, les [][SpellHD] # Communication avec les animaux -- NameVO: [Speak with Animals](spells_vo.md#speak-with-animals) +- AltName: [Speak with Animals](spells_vo.md#speak-with-animals) - CastingTime: 1 action - Components: V, S - Duration: 10 minutes @@ -1593,7 +1593,7 @@ Vous devenez capable de comprendre les bêtes et de communiquer verbalement avec [][SpellHD] # Communication avec les morts -- NameVO: [Speak with Dead](spells_vo.md#speak-with-dead) +- AltName: [Speak with Dead](spells_vo.md#speak-with-dead) - CastingTime: 1 action - Components: V, S, M (encens incandescent) - Duration: 10 minutes @@ -1613,7 +1613,7 @@ Vous pouvez poser jusqu'à cinq questions avant la fin de la durée du sort. Les [][SpellHD] # Communication avec les plantes -- NameVO: [Speak with Plants](spells_vo.md#speak-with-plants) +- AltName: [Speak with Plants](spells_vo.md#speak-with-plants) - CastingTime: 1 action - Components: V, S - Duration: 10 minutes @@ -1639,7 +1639,7 @@ Ce sort permet de libérer une créature [entravée] par les plantes nées d'un [][SpellHD] # Communion -- NameVO: [Commune](spells_vo.md#commune) +- AltName: [Commune](spells_vo.md#commune) - CastingTime: 1 minute - Components: V, S, M (de l'encens et une fiole d'eau bénite ou maudite) - Duration: 1 minute @@ -1661,7 +1661,7 @@ Si vous lancez ce sort à deux reprises ou plus avant un long repos, il y a 25 % [][SpellHD] # Communion avec la nature -- NameVO: [Commune with Nature](spells_vo.md#commune-with-nature) +- AltName: [Commune with Nature](spells_vo.md#commune-with-nature) - CastingTime: 1 minute - Components: V, S - Duration: instantanée @@ -1697,7 +1697,7 @@ Par exemple, vous pouvez apprendre où se trouve un puissant mort-vivant résida [][SpellHD] # Compagnon animal -- NameVO: +- AltName: - CastingTime: 1 minute - Components: V, S, M (un peu de nourriture adaptée à l'animal) - Duration: 24 heures @@ -1737,7 +1737,7 @@ Lorsque vous choisissez d'autres effets, ce second compagnon en bénéficie auss [][SpellHD] # Compréhension des langues -- NameVO: [Comprehend Languages](spells_vo.md#comprehend-languages) +- AltName: [Comprehend Languages](spells_vo.md#comprehend-languages) - CastingTime: 1 action - Components: V, S, M (une pincée de suie et de sel) - Duration: 1 heure @@ -1757,7 +1757,7 @@ Ce sort ne décode pas les messages secrets compris dans un texte ni les glyphes [][SpellHD] # Compulsion -- NameVO: [Compulsion](spells_vo.md#compulsion) +- AltName: [Compulsion](spells_vo.md#compulsion) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -1777,7 +1777,7 @@ Une cible n'est pas obligée de se rendre au sein d'une zone à l'évidence dang [][SpellHD] # Cône de froid -- NameVO: [Cone of Cold](spells_vo.md#cone-of-cold) +- AltName: [Cone of Cold](spells_vo.md#cone-of-cold) - CastingTime: 1 action - Components: V, S, M (un petit cône de cristal ou de verre) - Duration: instantanée @@ -1799,7 +1799,7 @@ Une créature qui succombe suite à ce sort se transforme en statue de glace jus [][SpellHD] # Confusion -- NameVO: [Confusion](spells_vo.md#confusion) +- AltName: [Confusion](spells_vo.md#confusion) - CastingTime: 1 action - Components: V, S, M (trois coquilles de noix) - Duration: concentration, jusqu'à 1 minute @@ -1832,7 +1832,7 @@ Une créature affectée peut faire un jet de sauvegarde de Sagesse à la fin de [][SpellHD] # Contact glacial -- NameVO: [Chill Touch](spells_vo.md#chill-touch) +- AltName: [Chill Touch](spells_vo.md#chill-touch) - CastingTime: 1 action - Components: V, S - Duration: 1 round @@ -1856,7 +1856,7 @@ Les dégâts du sort augmentent de 1d8 quand vous atteignez les niveaux 5 (2d8), [][SpellHD] # Contacter un autre plan -- NameVO: [Contact Other Plane](spells_vo.md#contact-other-plane) +- AltName: [Contact Other Plane](spells_vo.md#contact-other-plane) - CastingTime: 1 minute - Components: V - Duration: 1 minute @@ -1878,7 +1878,7 @@ Si vous réussissez votre jet de sauvegarde, vous pouvez poser jusqu'à cinq que [][SpellHD] # Contagion -- NameVO: [Contagion](spells_vo.md#contagion) +- AltName: [Contagion](spells_vo.md#contagion) - CastingTime: 1 action - Components: V, S - Duration: 7 jours @@ -1918,7 +1918,7 @@ Elle subit un désavantage lors des tests de Charisme et devient vulnérable à [][SpellHD] # Contamination -- NameVO: [Harm](spells_vo.md#harm) +- AltName: [Harm](spells_vo.md#harm) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -1936,7 +1936,7 @@ Vous transmettez une maladie virulente à une créature située à portée et da [][SpellHD] # Contingence -- NameVO: [Contingency](spells_vo.md#contingency) +- AltName: [Contingency](spells_vo.md#contingency) - CastingTime: 10 minutes - 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 @@ -1960,7 +1960,7 @@ Vous ne pouvez utiliser qu'un seul sort de contingence à la fois. Si vous en la [][SpellHD] # Contresort -- NameVO: [Counterspell](spells_vo.md#counterspell) +- AltName: [Counterspell](spells_vo.md#counterspell) - 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 - Components: S - Duration: instantanée @@ -1982,7 +1982,7 @@ Si elle essayait de lancer un sort de niveau 3 ou moins, il échoue et reste san [][SpellHD] # Contrôle de l'eau -- NameVO: [Control Water](spells_vo.md#control-water) +- AltName: [Control Water](spells_vo.md#control-water) - CastingTime: 1 action - Components: V, S, M (une goutte d'eau et une pincée de poussière) - Duration: concentration, jusqu'à 10 minutes @@ -2014,7 +2014,7 @@ Quand une créature entre dans le vortex pour la première fois de son tour ou q [][SpellHD] # Contrôle du climat -- NameVO: [Control Weather](spells_vo.md#control-weather) +- AltName: [Control Weather](spells_vo.md#control-weather) - CastingTime: 10 minutes - 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 @@ -2068,7 +2068,7 @@ Vent [][SpellHD] # Convocations instantanées -- NameVO: [Drawmij's Instant Summons](spells_vo.md#drawmijs-instant-summons) +- AltName: [Drawmij's Instant Summons](spells_vo.md#drawmijs-instant-summons) - CastingTime: 1 minute - Components: V, S, M (un saphir d'une valeur de 1 000 po) - Duration: jusqu'à dissipation @@ -2094,7 +2094,7 @@ _[Dissipation de la magie]_ ou un effet similaire appliqué sur le saphir met un [][SpellHD] # Coquille antivie -- NameVO: [Antilife Shell](spells_vo.md#antilife-shell) +- AltName: [Antilife Shell](spells_vo.md#antilife-shell) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -2116,7 +2116,7 @@ Si vous vous déplacez de telle manière qu'une créature affectée est contrain [][SpellHD] # Corde enchantée -- NameVO: [Rope Trick](spells_vo.md#rope-trick) +- AltName: [Rope Trick](spells_vo.md#rope-trick) - CastingTime: 1 action - Components: V, S, M (extrait de maïs en poudre et boucle de parchemin torsadé) - Duration: 1 heure @@ -2142,7 +2142,7 @@ Tout ce qui se trouve dans l'espace extradimensionnel tombe à l'extérieur quan [][SpellHD] # Couleurs dansantes -- NameVO: [Color Spray](spells_vo.md#color-spray) +- AltName: [Color Spray](spells_vo.md#color-spray) - CastingTime: 1 action - Components: V, S, M (une poignée de poudre ou de sable, colorée en rouge, jaune et bleu) - Duration: 1 round @@ -2164,7 +2164,7 @@ Chaque créature affectée, en commençant par celle qui possède actuellement l [][SpellHD] # Création -- NameVO: [Creation](spells_vo.md#creation) +- AltName: [Creation](spells_vo.md#creation) - CastingTime: 1 minute - 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 @@ -2198,7 +2198,7 @@ Si vous utilisez les matériaux créés via ce sort comme composantes matériell [][SpellHD] # Création de mort-vivant -- NameVO: [Create Undead](spells_vo.md#create-undead) +- AltName: [Create Undead](spells_vo.md#create-undead) - CastingTime: 1 minute - 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 @@ -2228,7 +2228,7 @@ Quand vous le lancez à partir d'un emplacement de niveau 9, vous pouvez animer [][SpellHD] # Création de nourriture et d'eau -- NameVO: [Create Food and Water](spells_vo.md#create-food-and-water) +- AltName: [Create Food and Water](spells_vo.md#create-food-and-water) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -2246,7 +2246,7 @@ Vous créez 25 kilogrammes de nourriture et 120 litres d'eau, soit par terre, so [][SpellHD] # Création ou destruction d'eau -- NameVO: [Create or Destroy Water](spells_vo.md#create-or-destroy-water) +- AltName: [Create or Destroy Water](spells_vo.md#create-or-destroy-water) - CastingTime: 1 action - 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 @@ -2272,7 +2272,7 @@ Sinon, l'eau peut tomber en pluie dans un cube de 9 mètres d'arête à portée, [][SpellHD] # Croissance d'épines -- NameVO: [Spike Growth](spells_vo.md#spike-growth) +- AltName: [Spike Growth](spells_vo.md#spike-growth) - CastingTime: 1 action - Components: V, S, M (sept épines acérées ou sept brindilles taillées en pointe) - Duration: concentration, jusqu'à 10 minutes @@ -2292,7 +2292,7 @@ La transformation du sol est camouflée, de manière à ce que le terrain ait l' [][SpellHD] # Croissance végétale -- NameVO: [Plant Growth](spells_vo.md#plant-growth) +- AltName: [Plant Growth](spells_vo.md#plant-growth) - CastingTime: 1 action ou 8 heures - Components: V, S - Duration: instantanée @@ -2318,7 +2318,7 @@ Vous pouvez exclure une ou plusieurs portions, de n'importe quelle taille, de la [][SpellHD] # Danse irrésistible -- NameVO: [Otto's Irresistible Dance](spells_vo.md#ottos-irresistible-dance) +- AltName: [Otto's Irresistible Dance](spells_vo.md#ottos-irresistible-dance) - CastingTime: 1 action - Components: V - Duration: concentration, jusqu'à 1 minute @@ -2340,7 +2340,7 @@ Tant que la cible est affectée par ce sort, les autres créatures bénéficient [][SpellHD] # Déblocage -- NameVO: [Knock](spells_vo.md#knock) +- AltName: [Knock](spells_vo.md#knock) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -2362,7 +2362,7 @@ Quand vous lancez le sort, un cliquetis émane de l'objet et retentit si fort qu [][SpellHD] # Déguisement -- NameVO: [Disguise Self](spells_vo.md#disguise-self) +- AltName: [Disguise Self](spells_vo.md#disguise-self) - CastingTime: 1 action - Components: V, S - Duration: 1 heure @@ -2384,7 +2384,7 @@ Pour percer votre déguisement à jour, une créature peut dépenser une action [][SpellHD] # Demi-plan -- NameVO: [Demiplane](spells_vo.md#demiplane) +- AltName: [Demiplane](spells_vo.md#demiplane) - CastingTime: 1 action - Components: S - Duration: 1 heure @@ -2404,7 +2404,7 @@ Vous pouvez créer un nouveau demi-plan pour chaque incantation du sort ou relie [][SpellHD] # Déplacer la terre -- NameVO: [Move Earth](spells_vo.md#move-earth) +- AltName: [Move Earth](spells_vo.md#move-earth) - CastingTime: 1 action - 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 @@ -2428,7 +2428,7 @@ De même, le sort n'affecte pas directement la croissance des plantes. La terre [][SpellHD] # Désintégration -- NameVO: [Disintegrate](spells_vo.md#disintegrate) +- AltName: [Disintegrate](spells_vo.md#disintegrate) - CastingTime: 1 action - Components: V, S, M (de la magnétite et une pincée de poussière) - Duration: instantanée @@ -2454,7 +2454,7 @@ Ce sort désintègre automatiquement les objets non magiques de taille G ou inf [][SpellHD] # Dessiccation -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (une goutte d'eau) - Duration: concentration, jusqu'à 1 minute @@ -2476,7 +2476,7 @@ Les morts-vivants, les créatures artificielles et les élémentaires sont immun [][SpellHD] # Détection de la magie -- NameVO: [Detect Magic](spells_vo.md#detect-magic) +- AltName: [Detect Magic](spells_vo.md#detect-magic) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -2496,7 +2496,7 @@ Le sort ignore la plupart des obstacles, mais il ne peut pas franchir 30 centim [][SpellHD] # Détection des pensées -- NameVO: [Detect Thoughts](spells_vo.md#detect-thoughts) +- AltName: [Detect Thoughts](spells_vo.md#detect-thoughts) - CastingTime: 1 action - Components: V, S, M (une pièce de cuivre) - Duration: concentration, jusqu'à 1 minute @@ -2530,7 +2530,7 @@ Une fois que vous avez ainsi détecté la présence d'une créature, vous pouvez [][SpellHD] # Détection du mal et du bien -- NameVO: [Detect Evil and Good](spells_vo.md#detect-evil-and-good) +- AltName: [Detect Evil and Good](spells_vo.md#detect-evil-and-good) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -2550,7 +2550,7 @@ Le sort ignore la plupart des obstacles, mais il ne peut pas franchir 30 centim [][SpellHD] # Détection du poison et des maladies -- NameVO: [Detect Poison and Disease](spells_vo.md#detect-poison-and-disease) +- AltName: [Detect Poison and Disease](spells_vo.md#detect-poison-and-disease) - CastingTime: 1 action - Components: V, S, M (un brin d'if) - Duration: concentration, jusqu'à 10 minutes @@ -2570,7 +2570,7 @@ Le sort ignore la plupart des obstacles, mais il ne peut pas franchir 30 centim [][SpellHD] # Disque flottant -- NameVO: [Tenser's Floating Disk](spells_vo.md#tensers-floating-disk) +- AltName: [Tenser's Floating Disk](spells_vo.md#tensers-floating-disk) - CastingTime: 1 action - Components: V, S, M (une goutte de mercure) - Duration: 1 heure @@ -2594,7 +2594,7 @@ Si vous vous éloignez à plus de 30 mètres du disque (typiquement parce qu'il [][SpellHD] # Dissipation de la magie -- NameVO: [Dispel Magic](spells_vo.md#dispel-magic) +- AltName: [Dispel Magic](spells_vo.md#dispel-magic) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -2614,7 +2614,7 @@ Choisissez une créature, un objet ou un effet magique à portée. Tout sort de [][SpellHD] # Dissipation du mal et du bien -- NameVO: [Dispel Evil and Good](spells_vo.md#dispel-evil-and-good) +- AltName: [Dispel Evil and Good](spells_vo.md#dispel-evil-and-good) - CastingTime: 1 action - Components: V, S, M (eau bénite ou poudre d'argent et de fer) - Duration: concentration, jusqu'à 1 minute @@ -2638,7 +2638,7 @@ Vous pouvez terminer le sort plus tôt en utilisant l'une des fonctions spécial [][SpellHD] # Divination -- NameVO: [Divination](spells_vo.md#divination) +- AltName: [Divination](spells_vo.md#divination) - CastingTime: 1 action - 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 @@ -2660,7 +2660,7 @@ Si vous lancez ce sort à deux reprises ou plus avant un long repos, il y a 25 % [][SpellHD] # Doigt de mort -- NameVO: [Finger of Death](spells_vo.md#finger-of-death) +- AltName: [Finger of Death](spells_vo.md#finger-of-death) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -2680,7 +2680,7 @@ Si ce sort achève un humanoïde, ce dernier se relève au début de votre proch [][SpellHD] # Dominer un humanoïde -- NameVO: [Dominate Person](spells_vo.md#dominate-person) +- AltName: [Dominate Person](spells_vo.md#dominate-person) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -2712,7 +2712,7 @@ Si vous lancez ce sort en utilisant un emplacement de niveau 8, la durée devien [][SpellHD] # Dominer un monstre -- NameVO: [Dominate Monster](spells_vo.md#dominate-monster) +- AltName: [Dominate Monster](spells_vo.md#dominate-monster) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -2742,7 +2742,7 @@ Si elle le réussit, le sort prend fin. [][SpellHD] # Dominer une bête -- NameVO: [Dominate Beast](spells_vo.md#dominate-beast) +- AltName: [Dominate Beast](spells_vo.md#dominate-beast) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -2772,7 +2772,7 @@ Si elle le réussit, le sort prend fin. [][SpellHD] # Doux repos -- NameVO: [Gentle Repose](spells_vo.md#gentle-repose) +- AltName: [Gentle Repose](spells_vo.md#gentle-repose) - CastingTime: 1 action - 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 @@ -2792,7 +2792,7 @@ Le sort rallonge aussi la période pendant laquelle on peut rappeler la cible d' [][SpellHD] # Druidisme -- NameVO: [Druidcraft](spells_vo.md#druidcraft) +- AltName: [Druidcraft](spells_vo.md#druidcraft) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -2818,7 +2818,7 @@ Vous créez l'un des effets suivants à portée après quelques murmures adress [][SpellHD] # Éclair -- NameVO: [Lightning Bolt](spells_vo.md#lightning-bolt) +- AltName: [Lightning Bolt](spells_vo.md#lightning-bolt) - CastingTime: 1 action - Components: V, S, M (un peu de fourrure et une baguette en ambre, en cristal ou en verre) - Duration: instantanée @@ -2842,7 +2842,7 @@ La foudre embrase les objets inflammables de la zone qui ne sont ni portés ni t [][SpellHD] # Éclat de bois -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (une écharde de bois) - Duration: instantanée @@ -2864,7 +2864,7 @@ Vous pouvez lancer un éclat de bois supplémentaire lorsque vous atteignez les [][SpellHD] # Éclat du soleil -- NameVO: [Sunburst](spells_vo.md#sunburst) +- AltName: [Sunburst](spells_vo.md#sunburst) - CastingTime: 1 action - Components: V, S, M (du feu et un éclat d'héliotrope) - Duration: instantanée @@ -2888,7 +2888,7 @@ Ce sort dissipe toutes les ténèbres issues d'un sort présentes dans la zone. [][SpellHD] # Embruns prismatiques -- NameVO: [Prismatic Spray](spells_vo.md#prismatic-spray) +- AltName: [Prismatic Spray](spells_vo.md#prismatic-spray) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -2920,7 +2920,7 @@ Huit rayons de lumière multicolores jaillissent de votre main. Chacun a une cou [][SpellHD] # Emprisonnement -- NameVO: [Imprisonment](spells_vo.md#imprisonment) +- AltName: [Imprisonment](spells_vo.md#imprisonment) - CastingTime: 1 minute - 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 @@ -2962,7 +2962,7 @@ Vous pouvez utiliser une composante spéciale pour créer une prison à la fois [][SpellHD] # Enchevêtrement -- NameVO: [Entangle](spells_vo.md#entangle) +- AltName: [Entangle](spells_vo.md#entangle) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -2984,7 +2984,7 @@ Quand le sort se termine, les plantes invoquées flétrissent. [][SpellHD] # Entrave planaire -- NameVO: [Planar Binding](spells_vo.md#planar-binding) +- AltName: [Planar Binding](spells_vo.md#planar-binding) - CastingTime: 1 heure - Components: V, S, M (un bijou d'une valeur minimale de 1 000 po, que le sort consume) - Duration: 24 heures @@ -3006,7 +3006,7 @@ La créature liée doit suivre vos instructions au mieux de ses capacités. Vous [][SpellHD] # Envoi de message -- NameVO: [Sending](spells_vo.md#sending) +- AltName: [Sending](spells_vo.md#sending) - CastingTime: 1 action - Components: V, S, M (un petit bout de fil de cuivre) - Duration: 1 round @@ -3026,7 +3026,7 @@ Vous pouvez envoyer votre message à n'importe quelle distance, et même sur un [][SpellHD] # Envoûtement -- NameVO: [Enthrall](spells_vo.md#enthrall) +- AltName: [Enthrall](spells_vo.md#enthrall) - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -3044,7 +3044,7 @@ Vous entonnez une suite de paroles envoûtantes qui obligent les créatures de v [][SpellHD] # Épargner les mourants -- NameVO: [Spare the Dying](spells_vo.md#spare-the-dying) +- AltName: [Spare the Dying](spells_vo.md#spare-the-dying) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -3062,7 +3062,7 @@ Vous touchez une créature vivante à 0 point de vie, ce qui la stabilise. Ce so [][SpellHD] # Épée du juste -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -3080,7 +3080,7 @@ Votre épée devient une épée de justice pour toute la durée du sort. Elle b [][SpellHD] # Épée magique -- NameVO: [Mordenkainen's Sword](spells_vo.md#mordenkainens-sword) +- AltName: [Mordenkainen's Sword](spells_vo.md#mordenkainens-sword) - CastingTime: 1 action - 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 @@ -3100,7 +3100,7 @@ Dès que l'épée apparaît, vous faites une attaque de sort au corps-à-corps c [][SpellHD] # Esprit faible -- NameVO: [Feeblemind](spells_vo.md#feeblemind) +- AltName: [Feeblemind](spells_vo.md#feeblemind) - CastingTime: 1 action - Components: V, S, M (une poignée de sphères en argile, en cristal, en verre ou minérales) - Duration: instantanée @@ -3122,7 +3122,7 @@ La créature peut refaire un jet de sauvegarde tous les 30 jours. Le sort se ter [][SpellHD] # Esprit impénétrable -- NameVO: [Mind Blank](spells_vo.md#mind-blank) +- AltName: [Mind Blank](spells_vo.md#mind-blank) - CastingTime: 1 action - Components: V, S - Duration: 24 heures @@ -3140,7 +3140,7 @@ Vous touchez une créature consentante et, jusqu'à la fin du sort, vous l'immun [][SpellHD] # Esprits gardiens -- NameVO: [Spirit Guardians](spells_vo.md#spirit-guardians) +- AltName: [Spirit Guardians](spells_vo.md#spirit-guardians) - CastingTime: 1 action - Components: V, S M (un symbole sacré) - Duration: concentration, jusqu'à 10 minutes @@ -3164,7 +3164,7 @@ Si elle échoue, elle subit 3d8 dégâts radiants (si vous êtes Bon ou Neutre) [][SpellHD] # Étrangeté -- NameVO: [Weird](spells_vo.md#weird) +- AltName: [Weird](spells_vo.md#weird) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -3182,7 +3182,7 @@ Vous puisez dans les peurs les plus profondes d'un groupe de créatures et crée [][SpellHD] # Éveil -- NameVO: [Awaken](spells_vo.md#awaken) +- AltName: [Awaken](spells_vo.md#awaken) - CastingTime: 8 heures - Components: V, S, M (une agate d'une valeur minimale de 1 000 po, que le sort consomme) - Duration: instantanée @@ -3204,7 +3204,7 @@ La bête ou la plante éveillée est considérée [charmée] par vous pendant 30 [][SpellHD] # Excavation -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (une cuillère) - Duration: instantanée @@ -3222,7 +3222,7 @@ Vous créez un passage de 1,50 mètre de côté et de 15 mètres de profondeur d [][SpellHD] # Expiation du juste -- NameVO: +- AltName: - CastingTime: 1 action bonus - Components: V - Duration: concentration, jusqu'à 1 minute @@ -3240,7 +3240,7 @@ La prochaine fois que vous réussissez une attaque de corps-à-corps pendant la [][SpellHD] # Explosion occulte -- NameVO: [Eldritch Blast](spells_vo.md#eldritch-blast) +- AltName: [Eldritch Blast](spells_vo.md#eldritch-blast) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -3260,7 +3260,7 @@ Le sort crée des rayons supplémentaires quand vous atteignez certains niveaux [][SpellHD] # Fabrication -- NameVO: [Fabricate](spells_vo.md#fabricate) +- AltName: [Fabricate](spells_vo.md#fabricate) - CastingTime: 10 minutes - Components: V, S - Duration: instantanée @@ -3282,7 +3282,7 @@ Il est impossible de créer ou de transmuter des créatures ou des objets magiqu [][SpellHD] # Façonnage de la pierre -- NameVO: [Stone Shape](spells_vo.md#stone-shape) +- AltName: [Stone Shape](spells_vo.md#stone-shape) - CastingTime: 1 action - Components: V, S, M (argile molle, à façonner pour lui donner approximativement la forme de l'objet de pierre désiré) - Duration: instantanée @@ -3300,7 +3300,7 @@ Vous touchez un objet de pierre de taille M ou inférieure ou une section de pie [][SpellHD] # Faveur divine -- NameVO: [Divine Favor](spells_vo.md#divine-favor) +- AltName: [Divine Favor](spells_vo.md#divine-favor) - CastingTime: 1 action bonus - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -3320,7 +3320,7 @@ Jusqu'à la fin du sort, les attaques que vous portez avec une arme infligent 1d [][SpellHD] # Festin des héros -- NameVO: [Heroes' Feast](spells_vo.md#heroes-feast) +- AltName: [Heroes' Feast](spells_vo.md#heroes-feast) - CastingTime: 10 minutes - Components: V, S, M (un bol incrusté de gemmes d'une valeur minimale de 1 000 po, que le sort consume) - Duration: instantanée @@ -3342,7 +3342,7 @@ Son maximum de points de vie augmente de 2d10 et elle gagne le même nombre de p [][SpellHD] # Flamboiement funeste -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (morceau d'onyx) - Duration: instantanée @@ -3364,7 +3364,7 @@ Chaque créature dans la zone doit réussir un jet de sauvegarde de Dextérité, [][SpellHD] # Flamme éternelle -- NameVO: [Continual Flame](spells_vo.md#continual-flame) +- AltName: [Continual Flame](spells_vo.md#continual-flame) - CastingTime: 1 action - Components: V, S, M (poussière de rubis d'une valeur de 50 po, que le sort consume) - Duration: jusqu'à dissipation @@ -3382,7 +3382,7 @@ Une flamme à la luminosité égale à celle d'une torche embrase soudain l'obje [][SpellHD] # Flamme sacrée -- NameVO: [Sacred Flame](spells_vo.md#sacred-flame) +- AltName: [Sacred Flame](spells_vo.md#sacred-flame) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -3404,7 +3404,7 @@ Les dégâts du sort augmentent de 1d8 quand vous atteignez le niveau 5 (2d8), 1 [][SpellHD] # Fléau -- NameVO: [Bane](spells_vo.md#bane) +- AltName: [Bane](spells_vo.md#bane) - CastingTime: 1 action - Components: V, S, M (une goutte de sang) - Duration: concentration, jusqu'à 1 minute @@ -3426,7 +3426,7 @@ Dès qu'une cible qui a raté ce jet effectue un jet d'attaque ou de sauvegarde [][SpellHD] # Fléau d'insectes -- NameVO: [Insect Plague](spells_vo.md#insect-plague) +- AltName: [Insect Plague](spells_vo.md#insect-plague) - CastingTime: 1 action - 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 @@ -3450,7 +3450,7 @@ Une créature doit effectuer le même jet quand elle entre dans la sphère pour [][SpellHD] # Flèche acide -- NameVO: [Melf's Acid Arrow](spells_vo.md#melfs-acid-arrow) +- AltName: [Melf's Acid Arrow](spells_vo.md#melfs-acid-arrow) - CastingTime: 1 action - Components: V, S, M (poudre de feuille de rhubarbe et estomac de vipère) - Duration: instantanée @@ -3470,7 +3470,7 @@ Une flèche d'un vert chatoyant file vers une cible située à portée et explos [][SpellHD] # Flétrissement -- NameVO: [Blight](spells_vo.md#blight) +- AltName: [Blight](spells_vo.md#blight) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -3492,7 +3492,7 @@ Si vous visez une créature végétale ou une plante magique, elle subit un dés [][SpellHD] # Flou -- NameVO: [Blur](spells_vo.md#blur) +- AltName: [Blur](spells_vo.md#blur) - CastingTime: 1 action - Components: V - Duration: concentration, jusqu'à 1 minute @@ -3510,7 +3510,7 @@ Votre corps devient flou, il ondule et vacille comme une flamme aux yeux d'autru [][SpellHD] # Forme éthérée -- NameVO: [Etherealness](spells_vo.md#etherealness) +- AltName: [Etherealness](spells_vo.md#etherealness) - CastingTime: 1 action - Components: V, S - Duration: jusqu'à 8 heures @@ -3538,7 +3538,7 @@ Ce sort n'a aucun effet si vous le lancez alors que vous vous trouvez sur le pla [][SpellHD] # Forme gazeuse -- NameVO: [Gaseous Form](spells_vo.md#gaseous-form) +- AltName: [Gaseous Form](spells_vo.md#gaseous-form) - CastingTime: 1 action - Components: V, S, M (un morceau de gaze et une volute de fumée) - Duration: concentration, jusqu'à 1 heure @@ -3562,7 +3562,7 @@ Sous forme de nuage brumeux, la cible ne peut pas parler ni manipuler d'objet. I [][SpellHD] # Formes animales -- NameVO: [Animal Shapes](spells_vo.md#animal-shapes) +- AltName: [Animal Shapes](spells_vo.md#animal-shapes) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 24 heures @@ -3584,7 +3584,7 @@ L'équipement de la cible fusionne avec sa nouvelle forme, mais elle ne peut pas [][SpellHD] # Fou rire -- NameVO: [Tasha's Hideous Laughter](spells_vo.md#tashas-hideous-laughter) +- AltName: [Tasha's Hideous Laughter](spells_vo.md#tashas-hideous-laughter) - CastingTime: 1 action - Components: V, S, M (de minuscules tartes et une plume à agiter dans les airs) - Duration: concentration, jusqu'à 1 minute @@ -3604,7 +3604,7 @@ Une créature de votre choix située à portée et dans votre champ de vision tr [][SpellHD] # Frappe du juste -- NameVO: +- AltName: - CastingTime: 1 action bonus - Components: V - Duration: concentration, jusqu'à 1 minute @@ -3632,7 +3632,7 @@ Le type de dégâts supplémentaires infligés et la nature de l'effet dépenden [][SpellHD] # Frappe lumineuse -- NameVO: [Branding Smite](spells_vo.md#branding-smite) +- AltName: [Branding Smite](spells_vo.md#branding-smite) - CastingTime: 1 action bonus - Components: V - Duration: concentration, jusqu'à 1 minute @@ -3652,7 +3652,7 @@ La prochaine attaque avec une arme de corps-àcorps ou à distance qui vous perm [][SpellHD] # Fusion dans la pierre -- NameVO: [Meld into Stone](spells_vo.md#meld-into-stone) +- AltName: [Meld into Stone](spells_vo.md#meld-into-stone) - CastingTime: 1 action - Components: V, S - Duration: 8 heures @@ -3676,7 +3676,7 @@ Vous n'êtes pas blessé si la pierre subit des dégâts mineurs mais, si elle e [][SpellHD] # Gardien de la foi -- NameVO: [Guardian of Faith](spells_vo.md#guardian-of-faith) +- AltName: [Guardian of Faith](spells_vo.md#guardian-of-faith) - CastingTime: - Components: V - Duration: 8 heures @@ -3696,7 +3696,7 @@ Toute créature hostile envers vous qui entre dans un emplacement situé dans un [][SpellHD] # Geyser d'énergie -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (une petite poire remplie d'air) - Duration: instantanée @@ -3718,7 +3718,7 @@ Si le jet est réussi, les dégâts sont réduits de moitié. [][SpellHD] # Globe d'invulnérabilité -- NameVO: [Globe of Invulnerability](spells_vo.md#globe-of-invulnerability) +- AltName: [Globe of Invulnerability](spells_vo.md#globe-of-invulnerability) - CastingTime: 1 action - Components: V, S, M (une perle de verre ou de cristal qui explose à la fin du sort) - Duration: concentration, jusqu'à 1 minute @@ -3740,7 +3740,7 @@ Tout sort de niveau 5 ou inférieur lancé depuis l'extérieur de la barrière s [][SpellHD] # Glyphe de protection -- NameVO: [Glyph of Warding](spells_vo.md#glyph-of-warding) +- AltName: [Glyph of Warding](spells_vo.md#glyph-of-warding) - CastingTime: 1 heure - 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 @@ -3774,7 +3774,7 @@ Lorsque vous dessinez le glyphe, vous devez choisir entre des runes explosives o [][SpellHD] # Gourdin magique -- NameVO: [Shillelagh](spells_vo.md#shillelagh) +- AltName: [Shillelagh](spells_vo.md#shillelagh) - CastingTime: 1 action bonus - Components: V, S, M (du gui, une feuille de trèfle et un bâton ou un gourdin) - Duration: 1 minute @@ -3792,7 +3792,7 @@ La puissance du monde naturel imprègne le bois du bâton ou du gourdin que vous [][SpellHD] # Graisse -- NameVO: [Grease](spells_vo.md#grease) +- AltName: [Grease](spells_vo.md#grease) - CastingTime: 1 action - Components: V, S, M (de la couenne de porc ou du beurre) - Duration: 1 minute @@ -3812,7 +3812,7 @@ Lorsque la graisse apparaît, chaque créature qui se trouve dans la zone affect [][SpellHD] # Grande foulée -- NameVO: [Longstrider](spells_vo.md#longstrider) +- AltName: [Longstrider](spells_vo.md#longstrider) - CastingTime: 1 action - Components: V, S, M (une pincée de poussière) - Duration: 1 heure @@ -3832,7 +3832,7 @@ Vous touchez une créature dont la vitesse augmente de 3 mètres jusqu'à la fin [][SpellHD] # Guérison -- NameVO: [Heal](spells_vo.md#heal) +- AltName: [Heal](spells_vo.md#heal) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -3852,7 +3852,7 @@ Choisissez une créature située à portée et dans votre champ de vision. Une b [][SpellHD] # Guérison de groupe -- NameVO: [Mass Heal](spells_vo.md#mass-heal) +- AltName: [Mass Heal](spells_vo.md#mass-heal) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -3872,7 +3872,7 @@ Le sort débarrasse aussi les créatures qu'il guérit de leurs maladies et des [][SpellHD] # Harmonique miraculeuse -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (un verre en cristal d'une valeur de 500 po) - Duration: concentration, jusqu'à 1 minute @@ -3892,7 +3892,7 @@ Enfin, le sort met un terme aux effets de réduction des points de vie maximum p [][SpellHD] # Hâte -- NameVO: [Haste](spells_vo.md#haste) +- AltName: [Haste](spells_vo.md#haste) - CastingTime: 1 action - Components: V, S, M (un copeau de racine de réglisse) - Duration: concentration, jusqu'à 1 minute @@ -3912,7 +3912,7 @@ Quand le sort se termine, la cible ne peut pas se déplacer ni effectuer une act [][SpellHD] # Héroïsme -- NameVO: [Heroism](spells_vo.md#heroism) +- AltName: [Heroism](spells_vo.md#heroism) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -3932,7 +3932,7 @@ Vous imprégnez de courage une créature consentante que vous touchez. Jusqu'à [][SpellHD] # Identification -- NameVO: [Identify](spells_vo.md#identify) +- AltName: [Identify](spells_vo.md#identify) - CastingTime: 1 minute - Components: V, S, M (une perle d'une valeur minimale de 100 po et une plume de hibou) - Duration: instantanée @@ -3952,7 +3952,7 @@ Si, à la place, vous touchez une créature pendant toute l'incantation, vous d [][SpellHD] # Illusion mineure -- NameVO: [Minor Illusion](spells_vo.md#minor-illusion) +- AltName: [Minor Illusion](spells_vo.md#minor-illusion) - CastingTime: 1 action - Components: S, M (un morceau de toison) - Duration: 1 minute @@ -3976,7 +3976,7 @@ Si une créature utilise son action pour examiner le son ou l'image, elle compre [][SpellHD] # Illusion programmée -- NameVO: [Programmed Illusion](spells_vo.md#programmed-illusion) +- AltName: [Programmed Illusion](spells_vo.md#programmed-illusion) - CastingTime: 1 action - Components: V, S, M (un morceau de toison et de la poussière de jade d'une valeur de 25 po) - Duration: jusqu'à dissipation @@ -4000,7 +4000,7 @@ Les interactions physiques révèlent que l'image n'est qu'une illusion, car les [][SpellHD] # Image majeure -- NameVO: [Major Image](spells_vo.md#major-image) +- AltName: [Major Image](spells_vo.md#major-image) - CastingTime: 1 action - Components: V, S, M (un morceau de toison) - Duration: concentration, jusqu'à 10 minutes @@ -4024,7 +4024,7 @@ Les interactions physiques avec l'image révèlent qu'elle n'est qu'une illusion [][SpellHD] # Image miroir -- NameVO: [Mirror Image](spells_vo.md#mirror-image) +- AltName: [Mirror Image](spells_vo.md#mirror-image) - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -4054,7 +4054,7 @@ Une créature n'est pas affectée par ce sort si elle ne voit pas, si elle se se [][SpellHD] # Image projetée -- NameVO: [Project Image](spells_vo.md#project-image) +- AltName: [Project Image](spells_vo.md#project-image) - CastingTime: 1 action - 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 @@ -4078,7 +4078,7 @@ Les interactions physiques révèlent que l'image n'est qu'une illusion, car les [][SpellHD] # Image silencieuse -- NameVO: [Silent Image](spells_vo.md#silent-image) +- AltName: [Silent Image](spells_vo.md#silent-image) - CastingTime: 1 action - Components: V, S, M (un morceau de toison) - Duration: concentration, jusqu'à 10 minutes @@ -4100,7 +4100,7 @@ Les interactions physiques révèlent que l'image n'est qu'une illusion, car les [][SpellHD] # Immobiliser un humanoïde -- NameVO: [Hold Person](spells_vo.md#hold-person) +- AltName: [Hold Person](spells_vo.md#hold-person) - CastingTime: 1 action - Components: V, S, M (un petit morceau de fer bien droit) - Duration: concentration, jusqu'à 1 minute @@ -4120,7 +4120,7 @@ Choisissez un humanoïde situé à portée et dans votre champ de vision. Il doi [][SpellHD] # Immobiliser un monstre -- NameVO: [Hold Monster](spells_vo.md#hold-monster) +- AltName: [Hold Monster](spells_vo.md#hold-monster) - CastingTime: 1 action - Components: V, S, M (un petit morceau de fer bien droit) - Duration: concentration, jusqu'à 1 minute @@ -4142,7 +4142,7 @@ Les créatures visées doivent se trouver à 9 mètres ou moins les unes des aut [][SpellHD] # Injonction -- NameVO: [Command](spells_vo.md#command) +- AltName: [Command](spells_vo.md#command) - CastingTime: 1 action - Components: V - Duration: 1 round @@ -4174,7 +4174,7 @@ Voici quelques ordres typiques et leurs effets. Vous pouvez donner un ordre diff [][SpellHD] # Insecte géant -- NameVO: [Giant Insect](spells_vo.md#giant-insect) +- AltName: [Giant Insect](spells_vo.md#giant-insect) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -4200,7 +4200,7 @@ Par exemple, si vous transformez une abeille, sa version géante peut disposer d [][SpellHD] # Instrument fantomatique -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (un archet et un morceau d'os) - Duration: concentration, jusqu'à 1 minute @@ -4222,7 +4222,7 @@ Au début de chacun de ses tours, la créature doit réussir un jet de sauvegard [][SpellHD] # Interdiction -- NameVO: [Forbiddance](spells_vo.md#forbiddance) +- AltName: [Forbiddance](spells_vo.md#forbiddance) - CastingTime: 10 minutes - 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 @@ -4250,7 +4250,7 @@ La zone d'effet de ce sort ne peut pas se superposer à celle d'un autre sort d' [][SpellHD] # Inversion de la gravité -- NameVO: [Reverse Gravity](spells_vo.md#reverse-gravity) +- AltName: [Reverse Gravity](spells_vo.md#reverse-gravity) - CastingTime: 1 action - Components: V, S, M (de la magnétite et de la limaille de fer) - Duration: concentration, jusqu'à 1 minute @@ -4272,7 +4272,7 @@ Une fois la durée du sort écoulée, les objets et les créatures affectés ret [][SpellHD] # Invisibilité -- NameVO: [Invisibility](spells_vo.md#invisibility) +- AltName: [Invisibility](spells_vo.md#invisibility) - CastingTime: 1 action - Components: V, S, M (un cil enrobé de gomme arabique) - Duration: concentration, jusqu'à 1 heure @@ -4292,7 +4292,7 @@ La créature que vous touchez devient [invisible] jusqu'à la fin du sort. Tout [][SpellHD] # Invisibilité supérieure -- NameVO: [Greater Invisibility](spells_vo.md#greater-invisibility) +- AltName: [Greater Invisibility](spells_vo.md#greater-invisibility) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -4310,7 +4310,7 @@ Vous devenez [invisible] jusqu'à ce que le sort se termine, ou vous pouvez acco [][SpellHD] # Invoquer des animaux -- NameVO: [Conjure Animals](spells_vo.md#conjure-animals) +- AltName: [Conjure Animals](spells_vo.md#conjure-animals) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -4346,7 +4346,7 @@ C'est le MJ qui dispose du profil technique des créatures. [][SpellHD] # Invoquer des élémentaires mineurs -- NameVO: [Conjure Minor Elementals](spells_vo.md#conjure-minor-elementals) +- AltName: [Conjure Minor Elementals](spells_vo.md#conjure-minor-elementals) - CastingTime: 1 minute - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -4380,7 +4380,7 @@ C'est le MJ qui dispose du profil technique des créatures. [][SpellHD] # Invoquer des êtres des bois -- NameVO: [Conjure Woodland Beings](spells_vo.md#conjure-woodland-beings) +- AltName: [Conjure Woodland Beings](spells_vo.md#conjure-woodland-beings) - CastingTime: 1 action - Components: V, S, M (une baie de houx par créature invoquée) - Duration: concentration, jusqu'à 1 heure @@ -4414,7 +4414,7 @@ C'est le MJ qui dispose du profil technique des créatures. [][SpellHD] # Invoquer un céleste -- NameVO: [Conjure Celestial](spells_vo.md#conjure-celestial) +- AltName: [Conjure Celestial](spells_vo.md#conjure-celestial) - CastingTime: 1 minute - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -4442,7 +4442,7 @@ C'est le MJ qui dispose du profil technique du céleste. [][SpellHD] # Invoquer un élémentaire -- NameVO: [Conjure Elemental](spells_vo.md#conjure-elemental) +- AltName: [Conjure Elemental](spells_vo.md#conjure-elemental) - CastingTime: 1 minute - 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 @@ -4470,7 +4470,7 @@ C'est le MJ qui dispose du profil technique de l'élémentaire. [][SpellHD] # Invoquer une fée -- NameVO: [Conjure Fey](spells_vo.md#conjure-fey) +- AltName: [Conjure Fey](spells_vo.md#conjure-fey) - CastingTime: 1 minute - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -4496,7 +4496,7 @@ C'est le MJ qui dispose du profil technique de la créature féerique. [][SpellHD] # Jeter une malédiction -- NameVO: [Bestow curse](spells_vo.md#bestow-curse) +- AltName: [Bestow curse](spells_vo.md#bestow-curse) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -4528,7 +4528,7 @@ Si le MJ est d'accord, vous pouvez choisir un autre effet de malédiction, mais [][SpellHD] # Jugement dernier -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -4546,7 +4546,7 @@ Vous créez une sphère de 9 mètres de rayon centrée sur un point visible de v [][SpellHD] # Labyrinthe -- NameVO: [Maze](spells_vo.md#maze) +- AltName: [Maze](spells_vo.md#maze) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -4572,7 +4572,7 @@ Quand le sort se termine, la cible réapparaît à l'emplacement qu'elle a quitt [][SpellHD] # Lame de feu -- NameVO: [Flame Blade](spells_vo.md#flame-blade) +- AltName: [Flame Blade](spells_vo.md#flame-blade) - CastingTime: 1 action bonus - Components: V, S, M (feuille de sumac) - Duration: concentration, jusqu'à 10 minutes @@ -4596,7 +4596,7 @@ La lame enflammée émet une vive lumière dans un rayon de 3 mètres et une fai [][SpellHD] # Lance du juste -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -4616,7 +4616,7 @@ De plus, la créature touchée se retrouve [aveuglée]. Elle doit effectuer un j [][SpellHD] # Langues -- NameVO: [Tongues](spells_vo.md#tongues) +- AltName: [Tongues](spells_vo.md#tongues) - CastingTime: 1 action - Components: V, M (un modèle réduit de ziggourat en argile) - Duration: 1 heure @@ -4636,7 +4636,7 @@ De plus, quand elle parle, toute créature qui maîtrise au moins une langue et [][SpellHD] # Légende -- NameVO: [Legend Lore](spells_vo.md#legend-lore) +- AltName: [Legend Lore](spells_vo.md#legend-lore) - CastingTime: 10 minutes - 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 @@ -4658,7 +4658,7 @@ Les informations obtenues sont exactes, mais susceptibles de se présenter dans [][SpellHD] # Léger comme une plume -- NameVO: [Feather Fall](spells_vo.md#feather-fall) +- AltName: [Feather Fall](spells_vo.md#feather-fall) - 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 - Components: V, M (une petite plume ou un peu de duvet) - Duration: 1 minute @@ -4676,7 +4676,7 @@ Choisissez jusqu'à cinq créatures à portée en train de chuter. La vitesse de [][SpellHD] # Lenteur -- NameVO: [Slow](spells_vo.md#slow) +- AltName: [Slow](spells_vo.md#slow) - CastingTime: 1 action - Components: V, S, M (une goutte de mélasse) - Duration: concentration, jusqu'à 1 minute @@ -4702,7 +4702,7 @@ Une créature affectée par ce sort fait un nouveau jet de sauvegarde de Sagesse [][SpellHD] # Lever une malédiction -- NameVO: [Remove Curse](spells_vo.md#remove-curse) +- AltName: [Remove Curse](spells_vo.md#remove-curse) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -4720,7 +4720,7 @@ Une créature affectée par ce sort fait un nouveau jet de sauvegarde de Sagesse [][SpellHD] # Lévitation -- NameVO: [Levitate](spells_vo.md#levitate) +- AltName: [Levitate](spells_vo.md#levitate) - CastingTime: 1 action - 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 @@ -4744,7 +4744,7 @@ Si la cible est encore en l'air quand le sort se termine, elle flotte délicatem [][SpellHD] # Liane chasseresse -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -4766,7 +4766,7 @@ La liane a le profil suivant : CA 15, points de vie 30, Force 20 (+5), résistan [][SpellHD] # Liberté de mouvement -- NameVO: [Freedom of Movement](spells_vo.md#freedom-of-movement) +- AltName: [Freedom of Movement](spells_vo.md#freedom-of-movement) - CastingTime: 1 action - Components: V, S, M (un lien de cuir enroulé autour d'un bras ou d'un appendice similaire) - Duration: 1 heure @@ -4786,7 +4786,7 @@ La cible peut également dépenser 1,50 mètre de déplacement pour échapper au [][SpellHD] # Lien de protection -- NameVO: [Warding Bond](spells_vo.md#warding-bond) +- AltName: [Warding Bond](spells_vo.md#warding-bond) - CastingTime: 1 action - 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 @@ -4808,7 +4808,7 @@ Le sort se termine si vous tombez à 0 point de vie ou si votre cible et vous ê [][SpellHD] # Lien télépathique -- NameVO: [Rary's Telepathic Bond](spells_vo.md#rarys-telepathic-bond) +- AltName: [Rary's Telepathic Bond](spells_vo.md#rarys-telepathic-bond) - CastingTime: 1 action - Components: V, S, M (bouts de coquille d'oeuf issus de deux espèces de créatures différentes) - Duration: 1 heure @@ -4830,7 +4830,7 @@ Jusqu'à la fin du sort, les cibles peuvent communiquer entre elles par télépa [][SpellHD] # Localiser des animaux ou des plantes -- NameVO: [Locate Animals or Plants](spells_vo.md#locate-animals-or-plants) +- AltName: [Locate Animals or Plants](spells_vo.md#locate-animals-or-plants) - CastingTime: 1 action - Components: V, S, M (des poils de chien de chasse) - Duration: instantanée @@ -4848,7 +4848,7 @@ Décrivez ou nommez un type spécifique de bêtes ou de plantes. Vous vous conce [][SpellHD] # Localiser un objet -- NameVO: [Locate Object](spells_vo.md#locate-object) +- AltName: [Locate Object](spells_vo.md#locate-object) - CastingTime: 1 action - Components: V, S, M (une branche fourchue) - Duration: concentration, jusqu'à 10 minutes @@ -4872,7 +4872,7 @@ Le sort ne parvient pas à localiser l'objet si une couche de plomb, aussi mince [][SpellHD] # Localiser une créature -- NameVO: [Locate Creature](spells_vo.md#locate-creature) +- AltName: [Locate Creature](spells_vo.md#locate-creature) - CastingTime: 1 action - Components: V, S, M (des poils de chien de chasse) - Duration: concentration, jusqu'à 1 heure @@ -4896,7 +4896,7 @@ Le sort ne parvient pas à localiser la créature si le chemin qui vous relie di [][SpellHD] # Lueur d'espoir -- NameVO: [Beacon of Hope](spells_vo.md#beacon-of-hope) +- AltName: [Beacon of Hope](spells_vo.md#beacon-of-hope) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -4916,7 +4916,7 @@ Pendant toute la durée du sort, elles bénéficient d'un avantage lors des jets [][SpellHD] # Lueurs féeriques -- NameVO: [Faerie Fire](spells_vo.md#faerie-fire) +- AltName: [Faerie Fire](spells_vo.md#faerie-fire) - CastingTime: 1 action - Components: V - Duration: concentration, jusqu'à 1 minute @@ -4936,7 +4936,7 @@ Un assaillant a l'avantage lors du jet d'attaque contre une cible affectée s'il [][SpellHD] # Lumière -- NameVO: [Light](spells_vo.md#light) +- AltName: [Light](spells_vo.md#light) - CastingTime: 1 action - Components: V, M (une luciole ou de la mousse phosphorescente) - Duration: 1 heure @@ -4960,7 +4960,7 @@ Si vous visez un objet porté ou transporté par une créature hostile, cette de [][SpellHD] # Lumière du jour -- NameVO: [Daylight](spells_vo.md#daylight) +- AltName: [Daylight](spells_vo.md#daylight) - CastingTime: 1 action - Components: V, S - Duration: 1 heure @@ -4982,7 +4982,7 @@ Si une partie de la zone affectée par ce sort chevauche une zone de ténèbres [][SpellHD] # Lumières dansantes -- NameVO: [Dancing Lights](spells_vo.md#dancing-lights) +- AltName: [Dancing Lights](spells_vo.md#dancing-lights) - CastingTime: 1 action - Components: V, S, M (un bout de phosphore ou d'orme, ou un ver luisant) - Duration: concentration, jusqu'à 1 minute @@ -5008,7 +5008,7 @@ Elle s'éteint si elle passe hors de portée. [][SpellHD] # Main du mage -- NameVO: [Mage Hand](spells_vo.md#mage-hand) +- AltName: [Mage Hand](spells_vo.md#mage-hand) - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -5030,7 +5030,7 @@ La main ne peut pas attaquer, activer un objet magique, ni transporter plus de 5 [][SpellHD] # Main magique -- NameVO: [Bigby's Hand](spells_vo.md#bigbys-hand) +- AltName: [Bigby's Hand](spells_vo.md#bigbys-hand) - CastingTime: 1 action - Components: V, S, M (une coquille d'oeuf et un gant en peau de serpent) - Duration: concentration, jusqu'à 1 minute @@ -5066,7 +5066,7 @@ Faites une attaque de sort de contact pour la main en utilisant vos propres bonu [][SpellHD] # Mains brûlantes -- NameVO: [Burning Hands](spells_vo.md#burning-hands) +- AltName: [Burning Hands](spells_vo.md#burning-hands) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -5090,7 +5090,7 @@ Le feu embrase tous les objets inflammables de la zone, à moins que quelqu'un n [][SpellHD] # Manoir somptueux -- NameVO: [Mordenkainen's Magnificent Mansion](spells_vo.md#mordenkainens-magnificent-mansion) +- AltName: [Mordenkainen's Magnificent Mansion](spells_vo.md#mordenkainens-magnificent-mansion) - CastingTime: 1 minute - 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 @@ -5120,7 +5120,7 @@ Quand le sort se termine, toutes les créatures qui se trouvent dans l'espace ex [][SpellHD] # Manteau de givre -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (un peu d'eau) - Duration: 8 heures @@ -5140,7 +5140,7 @@ Vous vous recouvrez d'une enveloppe de givre. Vous bénéficiez d'une résistanc [][SpellHD] # Marche sur l'eau -- NameVO: [Water Walk](spells_vo.md#water-walk) +- AltName: [Water Walk](spells_vo.md#water-walk) - CastingTime: 1 action - Components: V, S, M (un bout de liège) - Duration: 1 heure @@ -5160,7 +5160,7 @@ Si vous prenez pour cible une créature immergée dans un liquide, le sort la ra [][SpellHD] # Marche sur le vent -- NameVO: [Wind Walk](spells_vo.md#wind-walk) +- AltName: [Wind Walk](spells_vo.md#wind-walk) - CastingTime: 1 minute - Components: V, S, M (du feu et de l'eau bénite) - Duration: 8 heures @@ -5180,7 +5180,7 @@ Si une créature est sous forme de nuage et en plein vol quand le sort se termin [][SpellHD] # Marque du chasseur -- NameVO: [Hunter's Mark](spells_vo.md#hunters-mark) +- AltName: [Hunter's Mark](spells_vo.md#hunters-mark) - CastingTime: 1 action bonus - Components: V - Duration: concentration, jusqu'à 1 heure @@ -5200,7 +5200,7 @@ Vous choisissez une créature située dans votre champ de vision et à portée e [][SpellHD] # Mauvais oeil -- NameVO: [Eyebite](spells_vo.md#eyebite) +- AltName: [Eyebite](spells_vo.md#eyebite) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -5224,7 +5224,7 @@ Pendant la durée du sort, vos yeux deviennent deux trous noirs regorgeant d'un [][SpellHD] # Message -- NameVO: [Message](spells_vo.md#message) +- AltName: [Message](spells_vo.md#message) - CastingTime: 1 action - Components: V, S, M (un petit bout de fil de cuivre) - Duration: 1 round @@ -5244,7 +5244,7 @@ Vous pouvez lancer ce sort au travers d'un objet solide si vous connaissez bien [][SpellHD] # Messager animal -- NameVO: [Animal Messenger](spells_vo.md#animal-messenger) +- AltName: [Animal Messenger](spells_vo.md#animal-messenger) - CastingTime: 1 action - Components: V, S, M (un peu de nourriture) - Duration: 24 heures @@ -5270,7 +5270,7 @@ Quand elle arrive sur place, elle transmet votre message à la créature que vou [][SpellHD] # Métamorphose -- NameVO: [Polymorph](spells_vo.md#polymorph) +- AltName: [Polymorph](spells_vo.md#polymorph) - CastingTime: 1 action - Components: V, S, M (un cocon de chenille) - Duration: concentration, jusqu'à 1 heure @@ -5296,7 +5296,7 @@ L'équipement de la cible fusionne avec sa nouvelle forme, mais elle ne peut pas [][SpellHD] # Métamorphose suprême -- NameVO: [True Polymorph](spells_vo.md#true-polymorph) +- AltName: [True Polymorph](spells_vo.md#true-polymorph) - CastingTime: 1 action - 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 @@ -5340,7 +5340,7 @@ Si le sort devient permanent, vous ne contrôlez plus la créature, mais elle pe [][SpellHD] # Mirage -- NameVO: [Mirage Arcane](spells_vo.md#mirage-arcane) +- AltName: [Mirage Arcane](spells_vo.md#mirage-arcane) - CastingTime: 10 minutes - Components: V, S - Duration: 10 jours @@ -5362,7 +5362,7 @@ Les créatures dotées de vision parfaite distinguent le véritable terrain derr [][SpellHD] # Modification de mémoire -- NameVO: [Modify Memory](spells_vo.md#modify-memory) +- AltName: [Modify Memory](spells_vo.md#modify-memory) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -5390,7 +5390,7 @@ Un sort _[lever une malédiction]_ ou _[restauration supérieure]_ permet à la [][SpellHD] # Modifier son apparence -- NameVO: [Alter Self](spells_vo.md#alter-self) +- AltName: [Alter Self](spells_vo.md#alter-self) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -5414,7 +5414,7 @@ Vous revêtez une forme différente. Quand vous lancez ce sort, choisissez l'une [][SpellHD] # Monture fantôme -- NameVO: [Phantom Steed](spells_vo.md#phantom-steed) +- AltName: [Phantom Steed](spells_vo.md#phantom-steed) - CastingTime: 1 action - Components: V, S - Duration: 1 heure @@ -5436,7 +5436,7 @@ Pendant toute la durée du sort, vous et une créature de votre choix pouvez che [][SpellHD] # Moquerie cruelle -- NameVO: [Vicious Mockery](spells_vo.md#vicious-mockery) +- AltName: [Vicious Mockery](spells_vo.md#vicious-mockery) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -5456,7 +5456,7 @@ Les dégâts du sort augmentent de 1d4 quand vous atteignez le niveau 5 (2d4), l [][SpellHD] # Mot de guérison -- NameVO: [Healing Word](spells_vo.md#healing-word) +- AltName: [Healing Word](spells_vo.md#healing-word) - CastingTime: 1 action bonus - Components: V - Duration: instantanée @@ -5476,7 +5476,7 @@ Une créature de votre choix située à portée et dans votre champ de vision r [][SpellHD] # Mot de guérison de groupe -- NameVO: [Mass Healing Word](spells_vo.md#mass-healing-word) +- AltName: [Mass Healing Word](spells_vo.md#mass-healing-word) - CastingTime: 1 action bonus - Components: V - Duration: instantanée @@ -5496,7 +5496,7 @@ Vous prononcez des paroles curatives qui rendent un nombre de points de vie éga [][SpellHD] # Mot de pouvoir étourdissant -- NameVO: [Power Word Stun](spells_vo.md#power-word-stun) +- AltName: [Power Word Stun](spells_vo.md#power-word-stun) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -5516,7 +5516,7 @@ Une cible [étourdie] a droit à un jet de sauvegarde de Constitution à la fin [][SpellHD] # Mot de pouvoir mortel -- NameVO: [Power Word Kill](spells_vo.md#power-word-kill) +- AltName: [Power Word Kill](spells_vo.md#power-word-kill) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -5534,7 +5534,7 @@ Vous prononcez un mot de pouvoir capable d'obliger une créature située à port [][SpellHD] # Mot de retour -- NameVO: [Word of Recall](spells_vo.md#word-of-recall) +- AltName: [Word of Recall](spells_vo.md#word-of-recall) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -5554,7 +5554,7 @@ Pour désigner un sanctuaire, vous devez lancer ce sort en un lieu dédié à vo [][SpellHD] # Motif hypnotique -- NameVO: [Hypnotic Pattern](spells_vo.md#hypnotic-pattern) +- AltName: [Hypnotic Pattern](spells_vo.md#hypnotic-pattern) - CastingTime: 1 action - 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 @@ -5576,7 +5576,7 @@ Le sort se termine pour une créature donnée si elle subit le moindre dégât o [][SpellHD] # Mur d'épines -- NameVO: [Wall of Thorns](spells_vo.md#wall-of-thorns) +- AltName: [Wall of Thorns](spells_vo.md#wall-of-thorns) - CastingTime: 1 action - Components: V, S, M (une poignée d'épines) - Duration: concentration, jusqu'à 10 minutes @@ -5602,7 +5602,7 @@ Une créature peut traverser le mur, mais lentement et dans la douleur. Elle doi [][SpellHD] # Mur de feu -- NameVO: [Wall of Fire](spells_vo.md#wall-of-fire) +- AltName: [Wall of Fire](spells_vo.md#wall-of-fire) - CastingTime: 1 action - Components: V, S, M (un éclat de phosphore) - Duration: concentration, jusqu'à 1 minute @@ -5628,7 +5628,7 @@ L'autre face du mur n'inflige pas de dégâts. [][SpellHD] # Mur de force -- NameVO: [Wall of Force](spells_vo.md#wall-of-force) +- AltName: [Wall of Force](spells_vo.md#wall-of-force) - CastingTime: 1 action - Components: V, S, M (une pincée de poudre de gemme translucide) - Duration: concentration, jusqu'à 10 minutes @@ -5648,7 +5648,7 @@ Aucun élément ne peut franchir physiquement le mur, qui est immunisé contre t [][SpellHD] # Mur de glace -- NameVO: [Wall of Ice](spells_vo.md#wall-of-ice) +- AltName: [Wall of Ice](spells_vo.md#wall-of-ice) - CastingTime: 1 action - Components: V, S, M (un éclat de quartz) - Duration: concentration, jusqu'à 10 minutes @@ -5672,7 +5672,7 @@ Si elle échoue, elle subit 5d6 dégâts de froid, la moitié seulement si elle [][SpellHD] # Mur de pierre -- NameVO: [Wall of Stone](spells_vo.md#wall-of-stone) +- AltName: [Wall of Stone](spells_vo.md#wall-of-stone) - CastingTime: 1 action - Components: V, S, M (un petit bloc de granite) - Duration: concentration, jusqu'à 10 minutes @@ -5700,7 +5700,7 @@ Si vous restez concentré sur le sort pendant toute sa durée, le mur devient un [][SpellHD] # Mur de vent -- NameVO: [Wind Wall](spells_vo.md#wind-wall) +- AltName: [Wind Wall](spells_vo.md#wind-wall) - CastingTime: 1 action - Components: V, S, M (un petit éventail et une plume exotique) - Duration: concentration, jusqu'à 1 minute @@ -5722,7 +5722,7 @@ Le vent fort maintient la brume, la fumée et les autres gaz à l'écart. Les cr [][SpellHD] # Mur prismatique -- NameVO: [Prismatic Wall](spells_vo.md#prismatic-wall) +- AltName: [Prismatic Wall](spells_vo.md#prismatic-wall) - CastingTime: 1 action - Components: V, S - Duration: 10 minutes @@ -5766,7 +5766,7 @@ Tant que cette couche est en place, il est impossible de lancer un sort à trave [][SpellHD] # Nappe de brouillard -- NameVO: [Fog Cloud](spells_vo.md#fog-cloud) +- AltName: [Fog Cloud](spells_vo.md#fog-cloud) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -5786,7 +5786,7 @@ Vous créez une sphère de brouillard de 6 mètres de rayon centrée sur un poin [][SpellHD] # Nimbe de bienfaisance -- NameVO: +- AltName: - CastingTime: 1 action - Components: V - Duration: concentration, jusqu'à 10 minutes @@ -5806,7 +5806,7 @@ Un nimbe blanc et scintillant d'énergie sacrée vous entoure pour la durée du [][SpellHD] # Non-détection -- NameVO: [Nondetection](spells_vo.md#nondetection) +- AltName: [Nondetection](spells_vo.md#nondetection) - CastingTime: 1 action - 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 @@ -5826,7 +5826,7 @@ Vous pouvez prendre pour cible une créature consentante, un endroit ou un objet [][SpellHD] # Nuage incendiaire -- NameVO: [Incendiary Cloud](spells_vo.md#incendiary-cloud) +- AltName: [Incendiary Cloud](spells_vo.md#incendiary-cloud) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -5850,7 +5850,7 @@ Le nuage s'éloigne de vous sur 3 mètres dans la direction de votre choix au d [][SpellHD] # Nuage mortel -- NameVO: [Cloudkill](spells_vo.md#cloudkill) +- AltName: [Cloudkill](spells_vo.md#cloudkill) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -5876,7 +5876,7 @@ Le brouillard s'éloigne de vous sur une distance de 3 mètres au début de chac [][SpellHD] # Nuage puant -- NameVO: [Stinking Cloud](spells_vo.md#stinking-cloud) +- AltName: [Stinking Cloud](spells_vo.md#stinking-cloud) - CastingTime: 1 action - Components: V, S, M (un oeuf pourri ou des feuilles de chou pourri) - Duration: concentration, jusqu'à 1 minute @@ -5898,7 +5898,7 @@ Un vent modéré (au moins 15 km/h) disperse le nuage après 4 rounds. Un vent f [][SpellHD] # Nuée de météores -- NameVO: [Meteor Swarm](spells_vo.md#meteor-swarm) +- AltName: [Meteor Swarm](spells_vo.md#meteor-swarm) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -5920,7 +5920,7 @@ Le sort abîme et embrase les objets inflammables de la zone s'ils ne sont pas p [][SpellHD] # Nuée de projectiles -- NameVO: +- AltName: - CastingTime: 1 action bonus - Components: V, S, M (un projectile) - Duration: instantané @@ -5938,7 +5938,7 @@ Vous utilisez votre action pour lancer une arme ou tirer un projectile et une ac [][SpellHD] # Oeil magique -- NameVO: [Arcane Eye](spells_vo.md#arcane-eye) +- AltName: [Arcane Eye](spells_vo.md#arcane-eye) - CastingTime: 1 action - Components: V, S, M (des poils de chauve-souris) - Duration: concentration, jusqu'à 1 heure @@ -5958,7 +5958,7 @@ Par une action, vous pouvez déplacer l'oeil d'un maximum de 9 mètres dans la d [][SpellHD] # Offrande inéluctable -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -5978,7 +5978,7 @@ Pour toute la durée du sort, la cible fait en sorte de protéger l'objet qu'ell [][SpellHD] # Ombres imaginaires -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (un morceau de charbon) - Duration: concentration, jusqu'à 1 minute @@ -5998,7 +5998,7 @@ Vous désignez une cible à portée et dans votre champ de vision. Vous créez d [][SpellHD] # Panacée -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: Instantanée @@ -6016,7 +6016,7 @@ Vous libérez une vague d'énergie purificatrice qui met instantanément fin aux [][SpellHD] # Parole divine -- NameVO: [Divine Word](spells_vo.md#divine-word) +- AltName: [Divine Word](spells_vo.md#divine-word) - CastingTime: 1 action bonus - Components: V - Duration: instantanée @@ -6046,7 +6046,7 @@ Quels que soient ses points de vie, si un céleste, un élémentaire, une fée o [][SpellHD] # Pas brumeux -- NameVO: [Misty Step](spells_vo.md#misty-step) +- AltName: [Misty Step](spells_vo.md#misty-step) - CastingTime: 1 action bonus - Components: V - Duration: instantanée @@ -6064,7 +6064,7 @@ Vous êtes brièvement entouré d'une brume argentée et vous vous téléportez [][SpellHD] # Passage dimensionnel -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -6092,7 +6092,7 @@ Les ouvertures ne laissent pas passer les matières liquides ou gazeuses sauf si [][SpellHD] # Passage par les arbres -- NameVO: [Tree Stride](spells_vo.md#tree-stride) +- AltName: [Tree Stride](spells_vo.md#tree-stride) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -6112,7 +6112,7 @@ Vous pouvez utiliser cette capacité de transport une fois par round pendant tou [][SpellHD] # Passage sans trace -- NameVO: [Pass without Trace](spells_vo.md#pass-without-trace) +- AltName: [Pass without Trace](spells_vo.md#pass-without-trace) - CastingTime: 1 action - Components: V, S, M (cendres d'une feuille de gui et une brindille d'épicéa) - Duration: concentration, jusqu'à 1 heure @@ -6134,7 +6134,7 @@ Une créature qui profite de ce bonus ne laisse derrière elle aucune trace ni a [][SpellHD] # Passe-muraille -- NameVO: [Passwall](spells_vo.md#passwall) +- AltName: [Passwall](spells_vo.md#passwall) - CastingTime: 1 action - Components: V, S, M (une pincée de graines de sésame) - Duration: 1 heure @@ -6154,7 +6154,7 @@ Quand l'ouverture disparaît, les créatures et les objets qui s'y trouvaient en [][SpellHD] # Pattes d'araignée -- NameVO: [Spider Climb](spells_vo.md#spider-climb) +- AltName: [Spider Climb](spells_vo.md#spider-climb) - CastingTime: 1 action - Components: V, S, M (une goutte de bitume et une araignée) - Duration: concentration, jusqu'à 1 heure @@ -6172,7 +6172,7 @@ Jusqu'à la fin du sort, une créature consentante que vous touchez devient capa [][SpellHD] # Peau d'écorce -- NameVO: [Barkskin](spells_vo.md#barkskin) +- AltName: [Barkskin](spells_vo.md#barkskin) - CastingTime: 1 action - Components: V, S, M (une poignée d'écorce de chêne) - Duration: concentration, jusqu'à 1 heure @@ -6190,7 +6190,7 @@ Vous touchez une créature consentante. Pendant toute la durée du sort, sa peau [][SpellHD] # Peau de pierre -- NameVO: [Stoneskin](spells_vo.md#stoneskin) +- AltName: [Stoneskin](spells_vo.md#stoneskin) - CastingTime: 1 action - Components: V, S, M (poussière de diamant d'une valeur de 100 po, que le sort consume) - Duration: concentration, jusqu'à 1 heure @@ -6208,7 +6208,7 @@ Ce sort modifie la chair d'une créature consentante pour la rendre aussi dure q [][SpellHD] # Petite hutte -- NameVO: [Leomund's Tiny Hut](spells_vo.md#leomunds-tiny-hut) +- AltName: [Leomund's Tiny Hut](spells_vo.md#leomunds-tiny-hut) - CastingTime: 1 minute - Components: V, S, M (une petite perle de cristal) - Duration: 8 heures @@ -6230,7 +6230,7 @@ Tant que le sort n'est pas terminé, vous pouvez faire en sorte que l'intérieur [][SpellHD] # Pétrification -- NameVO: [Flesh to Stone](spells_vo.md#flesh-to-stone) +- AltName: [Flesh to Stone](spells_vo.md#flesh-to-stone) - CastingTime: 1 action - Components: V, S, M (une pincée de chaux, de l'eau et de la terre) - Duration: concentration, jusqu'à 1 minute @@ -6254,7 +6254,7 @@ Si vous maintenez votre concentration sur ce sort jusqu'à la fin de la durée m [][SpellHD] # Peur -- NameVO: [Fear](spells_vo.md#fear) +- AltName: [Fear](spells_vo.md#fear) - CastingTime: 1 action - Components: V, S, M (une plume blanche ou un coeur de poule) - Duration: concentration, jusqu'à 1 minute. @@ -6274,7 +6274,7 @@ Tant qu'une créature est [terrorisée] par ce sort, elle est obligée d'utilise [][SpellHD] # Pluie de projectiles -- NameVO: +- AltName: - CastingTime: 1 action bonus - Components: V, S, M (un projectile) - Duration: instantané @@ -6294,7 +6294,7 @@ Le projectile se dédouble de nombreuses fois et affecte toutes les créatures d [][SpellHD] # Poigne électrique -- NameVO: [Shocking Grasp](spells_vo.md#shocking-grasp) +- AltName: [Shocking Grasp](spells_vo.md#shocking-grasp) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -6314,7 +6314,7 @@ Les dégâts du sort augmentent de 1d8 quand vous atteignez le niveau 5 (2d8), 1 [][SpellHD] # Poison naturel -- NameVO: +- AltName: - CastingTime: 1 action bonus - Components: V - Duration: concentration, jusqu'à 1 minute @@ -6334,7 +6334,7 @@ Une arme de votre choix exsude une substance poisseuse et venimeuse. À la premi [][SpellHD] # Portail -- NameVO: [Gate](spells_vo.md#gate) +- AltName: [Gate](spells_vo.md#gate) - CastingTime: 1 action - Components: V, S, M (un diamant d'une valeur minimale de 5 000 po) - Duration: concentration, jusqu'à 1 minute @@ -6358,7 +6358,7 @@ Quand vous lancez ce sort, vous pouvez prononcer le nom d'une créature spécifi [][SpellHD] # Porte dimensionnelle -- NameVO: [Dimension Door](spells_vo.md#dimension-door) +- AltName: [Dimension Door](spells_vo.md#dimension-door) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -6382,7 +6382,7 @@ Si vous deviez arriver dans un emplacement déjà occupé par un objet ou une cr [][SpellHD] # Porte-bonheur -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (objet porte-bonheur) - Duration: 1 round @@ -6400,7 +6400,7 @@ Vous agrippez votre objet porte-bonheur (gri-gri, talisman, amulette, etc.) et, [][SpellHD] # Possession -- NameVO: [Magic Jar](spells_vo.md#magic-jar) +- AltName: [Magic Jar](spells_vo.md#magic-jar) - CastingTime: 1 minute - 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 @@ -6442,7 +6442,7 @@ Le réceptacle est détruit quand le sort se termine. [][SpellHD] # Prémonition -- NameVO: [Foresight](spells_vo.md#foresight) +- AltName: [Foresight](spells_vo.md#foresight) - CastingTime: 1 minute - Components: V, S, M (une plume d'oiseau chanteur) - Duration: 8 heures @@ -6462,7 +6462,7 @@ Le sort se termine immédiatement si vous le lancez de nouveau avant la fin de s [][SpellHD] # Prestidigitation -- NameVO: [Prestidigitation](spells_vo.md#prestidigitation) +- AltName: [Prestidigitation](spells_vo.md#prestidigitation) - CastingTime: 1 action - Components: V, S - Duration: jusqu'à 1 heure @@ -6494,7 +6494,7 @@ Si vous lancez le sort à plusieurs reprises, vous ne pouvez pas avoir plus de t [][SpellHD] # Prière de soins -- NameVO: [Prayer of Healing](spells_vo.md#prayer-of-healing) +- AltName: [Prayer of Healing](spells_vo.md#prayer-of-healing) - CastingTime: 10 minutes - Components: V - Duration: instantanée @@ -6514,7 +6514,7 @@ Un maximum de six créatures de votre choix, situées à portée et dans votre c [][SpellHD] # Produire une flamme -- NameVO: [Produce Flame](spells_vo.md#produce-flame) +- AltName: [Produce Flame](spells_vo.md#produce-flame) - CastingTime: 1 action - Components: V, S - Duration: 10 minutes @@ -6538,7 +6538,7 @@ Les dégâts de ce sort augmentent de 1d8 quand vous atteignez le niveau 5 (2d8) [][SpellHD] # Projectile magique -- NameVO: [Magic Missile](spells_vo.md#magic-missile) +- AltName: [Magic Missile](spells_vo.md#magic-missile) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -6558,7 +6558,7 @@ Vous créez trois fléchettes faites d'énergie magique brillante. Chacune touch [][SpellHD] # Projectile toxique -- NameVO: +- AltName: - CastingTime: 1 action bonus - Components: V, S, M (un projectile) - Duration: instantané @@ -6580,7 +6580,7 @@ Vous utilisez votre action pour lancer une arme ou tirer un projectile et une ac [][SpellHD] # Projection astrale -- NameVO: [Astral Projection](spells_vo.md#astral-projection) +- AltName: [Astral Projection](spells_vo.md#astral-projection) - CastingTime: 1 heure - 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 @@ -6608,7 +6608,7 @@ Si vous êtes prématurément renvoyé dans votre corps physique, vos compagnons [][SpellHD] # Protection contre la mort -- NameVO: [Death Ward](spells_vo.md#death-ward) +- AltName: [Death Ward](spells_vo.md#death-ward) - CastingTime: 1 action - Components: V, S - Duration: 8 heures @@ -6628,7 +6628,7 @@ Si le sort est encore actif quand la cible est soumise à un effet qui devrait l [][SpellHD] # Protection contre le mal et le bien -- NameVO: [Protection from Evil and Good](spells_vo.md#protection-from-evil-and-good) +- AltName: [Protection from Evil and Good](spells_vo.md#protection-from-evil-and-good) - CastingTime: 1 action - Components: V, S, M (eau bénite ou poudre de fer et d'argent, que le sort consume) - Duration: concentration, jusqu'à 10 minutes @@ -6650,7 +6650,7 @@ Les créatures des types précédemment nommés subissent un désavantage lors d [][SpellHD] # Protection contre le poison -- NameVO: [Protection from Poison](spells_vo.md#protection-from-poison) +- AltName: [Protection from Poison](spells_vo.md#protection-from-poison) - CastingTime: 1 action - Components: V, S - Duration: 1 heure @@ -6670,7 +6670,7 @@ Pendant toute la durée du sort, la cible bénéficie d'un avantage lors des jet [][SpellHD] # Protection contre les énergies -- NameVO: [Protection from Energy](spells_vo.md#protection-from-energy) +- AltName: [Protection from Energy](spells_vo.md#protection-from-energy) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 heure @@ -6688,7 +6688,7 @@ Pendant toute la durée du sort, la créature consentante que vous touchez devie [][SpellHD] # Protections et sceaux -- NameVO: [Guards and Wards](spells_vo.md#guards-and-wards) +- AltName: [Guards and Wards](spells_vo.md#guards-and-wards) - CastingTime: 10 minutes - 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 @@ -6734,7 +6734,7 @@ Vous pouvez protéger une structure en permanence si vous lancez ce sort tous le [][SpellHD] # Purification de la nourriture et de l'eau -- NameVO: [Purify Food and Drink](spells_vo.md#purify-food-and-drink) +- AltName: [Purify Food and Drink](spells_vo.md#purify-food-and-drink) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -6752,7 +6752,7 @@ Toute la nourriture et les boissons non magiques présentes dans une sphère d'u [][SpellHD] # Putréfaction -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M - Duration: concentration, jusqu'à 1 heure @@ -6776,7 +6776,7 @@ Si la cible décède pendant qu'elle est sous l'effet du sort, son corps éclate [][SpellHD] # Rappel à la vie -- NameVO: [Raise Dead](spells_vo.md#raise-dead) +- AltName: [Raise Dead](spells_vo.md#raise-dead) - CastingTime: 1 heure - Components: V, S, M (un diamant d'une valeur minimale de 500 po, que le sort consume) - Duration: instantanée @@ -6800,7 +6800,7 @@ Le retour d'entre les morts est une rude épreuve qui se traduit par un malus de [][SpellHD] # Rayon affaiblissant -- NameVO: [Ray of Enfeeblement](spells_vo.md#ray-of-enfeeblement) +- AltName: [Ray of Enfeeblement](spells_vo.md#ray-of-enfeeblement) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -6820,7 +6820,7 @@ La cible a droit à un jet de sauvegarde de Constitution contre le sort à la fi [][SpellHD] # Rayon ardent -- NameVO: [Scorching Ray](spells_vo.md#scorching-ray) +- AltName: [Scorching Ray](spells_vo.md#scorching-ray) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -6840,7 +6840,7 @@ Vous créez trois rayons de feu et les projetez sur des cibles à portée. Vous [][SpellHD] # Rayon de givre -- NameVO: [Ray of Frost](spells_vo.md#ray-of-frost) +- AltName: [Ray of Frost](spells_vo.md#ray-of-frost) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -6860,7 +6860,7 @@ Les dégâts du sort augmentent de 1d8 quand vous atteignez le niveau 5 (2d8),11 [][SpellHD] # Rayon de lune -- NameVO: [Moonbeam](spells_vo.md#moonbeam) +- AltName: [Moonbeam](spells_vo.md#moonbeam) - CastingTime: 1 action - Components: V, S, M (quelques graines de lierre, peu importe l'espèce, et un éclat de feldspath opalescent) - Duration: concentration, jusqu'à 1 minute @@ -6886,7 +6886,7 @@ Une fois que vous avez lancé ce sort, à chacun de vos tours, vous pouvez utili [][SpellHD] # Rayon de soleil -- NameVO: [Sunbeam](spells_vo.md#sunbeam) +- AltName: [Sunbeam](spells_vo.md#sunbeam) - CastingTime: 1 action - Components: V, S, M (une loupe) - Duration: concentration, jusqu'à 1 minute @@ -6910,7 +6910,7 @@ Pendant toute la durée du sort, une boule de lumière brille dans votre main. E [][SpellHD] # Régénération -- NameVO: [Regenerate](spells_vo.md#regenerate) +- AltName: [Regenerate](spells_vo.md#regenerate) - CastingTime: 1 minute - Components: V, S, M (un moulin à prières et de l'eau bénite) - Duration: 1 heure @@ -6932,7 +6932,7 @@ Si vous disposez de la partie amputée et la maintenez contre le moignon, le sor [][SpellHD] # Réincarnation -- NameVO: [Reincarnate](spells_vo.md#reincarnate) +- AltName: [Reincarnate](spells_vo.md#reincarnate) - CastingTime: 1 heure - Components: V, S, M (huiles et onguents rares d'une valeur minimale de 1 000 po, que le sort consume) - Duration: instantanée @@ -6976,7 +6976,7 @@ La créature réincarnée se souvient de son ancienne vie et de ses expériences [][SpellHD] # Réparation -- NameVO: [Mending](spells_vo.md#mending) +- AltName: [Mending](spells_vo.md#mending) - CastingTime: 1 minute - Components: V, S, M (deux magnétites) - Duration: instantanée @@ -6998,7 +6998,7 @@ Le sort permet de réparer un objet magique ou une créature artificielle, mais [][SpellHD] # Repli expéditif -- NameVO: [Expeditious Retreat](spells_vo.md#expeditious-retreat) +- AltName: [Expeditious Retreat](spells_vo.md#expeditious-retreat) - CastingTime: 1 action bonus - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -7016,7 +7016,7 @@ Ce sort vous permet de vous déplacer à une vitesse incroyable. Vous pouvez uti [][SpellHD] # Représailles infernales -- NameVO: [Hellish Rebuke](spells_vo.md#hellish-rebuke) +- AltName: [Hellish Rebuke](spells_vo.md#hellish-rebuke) - CastingTime: - Components: V, S - Duration: instantanée @@ -7036,7 +7036,7 @@ Durée d'incantation : 1 réaction en réponse aux dégâts que vous inflige une [][SpellHD] # Répulsion/attirance -- NameVO: [Antipathy/Sympathy](spells_vo.md#antipathysympathy) +- AltName: [Antipathy/Sympathy](spells_vo.md#antipathysympathy) - CastingTime: 1 heure - 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 @@ -7068,7 +7068,7 @@ Une créature qui réussit son jet de sauvegarde contre l'effet est immunisée c [][SpellHD] # Résistance -- NameVO: [Resistance](spells_vo.md#resistance) +- AltName: [Resistance](spells_vo.md#resistance) - CastingTime: 1 action - Components: V, S, M (une cape miniature) - Duration: concentration, jusqu'à 1 minute @@ -7088,7 +7088,7 @@ Le sort se termine alors. [][SpellHD] # Respiration aquatique -- NameVO: [Water Breathing](spells_vo.md#water-breathing) +- AltName: [Water Breathing](spells_vo.md#water-breathing) - CastingTime: 1 action - Components: V, S, M (un petit roseau ou un brin de paille) - Duration: 24 heures @@ -7106,7 +7106,7 @@ Grâce à ce sort, un maximum de dix créatures situées à portée et dans votr [][SpellHD] # Restauration inférieure -- NameVO: [Lesser Restoration](spells_vo.md#lesser-restoration) +- AltName: [Lesser Restoration](spells_vo.md#lesser-restoration) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -7124,7 +7124,7 @@ Vous touchez une créature et mettez fin à une maladie ou à un état spécial [][SpellHD] # Restauration supérieure -- NameVO: [Greater Restoration](spells_vo.md#greater-restoration) +- AltName: [Greater Restoration](spells_vo.md#greater-restoration) - CastingTime: 1 action - Components: V, S, M (poussière de diamant d'une valeur minimale de 100 po, que le sort consume) - Duration: instantanée @@ -7150,7 +7150,7 @@ Vous imprégnez la créature que vous touchez d'énergie positive, afin de la d [][SpellHD] # Résurrection -- NameVO: [Resurrection](spells_vo.md#resurrection) +- AltName: [Resurrection](spells_vo.md#resurrection) - CastingTime: 1 heure - Components: V, S, M (un diamant d'une valeur minimale de 1 000 po, que le sort consume) - Duration: instantanée @@ -7178,7 +7178,7 @@ Après cela, vous ne pouvez plus lancer de sort et vous souffrez d'un désavanta [][SpellHD] # Résurrection suprême -- NameVO: [True Resurrection](spells_vo.md#true-resurrection) +- AltName: [True Resurrection](spells_vo.md#true-resurrection) - CastingTime: 1 heure - 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 @@ -7200,7 +7200,7 @@ Le sort referme toutes les plaies, neutralise tous les poisons, guérit toutes l [][SpellHD] # Rêve -- NameVO: [Dream](spells_vo.md#dream) +- AltName: [Dream](spells_vo.md#dream) - CastingTime: 1 minute - 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 @@ -7224,7 +7224,7 @@ Si vous êtes en possession d'un élément corporel de la cible, comme une mèch [][SpellHD] # Revigorer -- NameVO: [Revivify](spells_vo.md#revivify) +- AltName: [Revivify](spells_vo.md#revivify) - CastingTime: 1 action - Components: V, S, M (diamant d'une valeur de 300 po, que le sort consume) - Duration: instantanée @@ -7242,7 +7242,7 @@ Vous touchez une créature morte au cours de la minute précédente. Elle revien [][SpellHD] # Sanctification -- NameVO: [Hallow](spells_vo.md#hallow) +- AltName: [Hallow](spells_vo.md#hallow) - CastingTime: 24 heures - Components: V, S, M (herbes, huiles et encens d'une valeur minimale de 1 000 po, que le sort consume) - Duration: jusqu'à dissipation @@ -7288,7 +7288,7 @@ Les ténèbres magiques issues d'un sort de niveau inférieur à celui de l'empl [][SpellHD] # Sanctuaire -- NameVO: [Sanctuary](spells_vo.md#sanctuary) +- AltName: [Sanctuary](spells_vo.md#sanctuary) - CastingTime: 1 action bonus - Components: V, S, M (un petit miroir en argent) - Duration: 1 minute @@ -7310,7 +7310,7 @@ Ce sort se termine si la créature protégée attaque ou lance un sort affectant [][SpellHD] # Sanctuaire privé -- NameVO: [Mordenkainen's Private Sanctum](spells_vo.md#mordenkainens-private-sanctum) +- AltName: [Mordenkainen's Private Sanctum](spells_vo.md#mordenkainens-private-sanctum) - CastingTime: 10 minutes - 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 @@ -7346,7 +7346,7 @@ Si on lance ce sort tous les jours au même endroit pendant un an, ses effets de [][SpellHD] # Sang du démon -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (une fiole d'un mélange de sang et d'acide) - Duration: concentration, jusqu'à 1 minute @@ -7366,7 +7366,7 @@ Vous contaminez le sang d'une créature vivante que vous touchez. Vous effectuez [][SpellHD] # Saut -- NameVO: [Jump](spells_vo.md#jump) +- AltName: [Jump](spells_vo.md#jump) - CastingTime: 1 action - Components: V, S, M (une patte arrière de sauterelle) - Duration: 1 minute @@ -7384,7 +7384,7 @@ Vous touchez une créature et triplez sa distance de saut jusqu'à ce que le sor [][SpellHD] # Scrutation -- NameVO: [Scrying](spells_vo.md#scrying) +- AltName: [Scrying](spells_vo.md#scrying) - CastingTime: 10 minutes - 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 @@ -7420,7 +7420,7 @@ Au lieu de prendre une créature pour cible, vous pouvez choisir un lieu que vou [][SpellHD] # Séquestration -- NameVO: [Sequester](spells_vo.md#sequester) +- AltName: [Sequester](spells_vo.md#sequester) - CastingTime: 1 action - 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 @@ -7442,7 +7442,7 @@ Vous pouvez décider d'une condition qui mettra un terme prématuré au sort. Ce [][SpellHD] # Serviteur invisible -- NameVO: [Unseen Servant](spells_vo.md#unseen-servant) +- AltName: [Unseen Servant](spells_vo.md#unseen-servant) - CastingTime: 1 action - Components: V, S, M (un bout de ficelle et un morceau de bois) - Duration: 1 heure @@ -7464,7 +7464,7 @@ Si vous ordonnez à votre serviteur d'accomplir une tâche qui l'éloigne à plu [][SpellHD] # Silence -- NameVO: [Silence](spells_vo.md#silence) +- AltName: [Silence](spells_vo.md#silence) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -7484,7 +7484,7 @@ Une créature ou un objet entièrement contenu dans la sphère sont immunisés c [][SpellHD] # Simulacre -- NameVO: [Simulacrum](spells_vo.md#simulacrum) +- AltName: [Simulacrum](spells_vo.md#simulacrum) - CastingTime: 12 heures - 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 @@ -7510,7 +7510,7 @@ Si vous lancez de nouveau ce sort, l'éventuel double que vous maintenez déjà [][SpellHD] # Simulacre de vie -- NameVO: [False Life](spells_vo.md#false-life) +- AltName: [False Life](spells_vo.md#false-life) - CastingTime: 1 action - Components: V, S, M (une petite quantité d'alcool ou de spiritueux) - Duration: 1 heure @@ -7530,7 +7530,7 @@ Vous renforcez votre corps avec un ersatz de vie et gagnez 1d4+4 points de vie t [][SpellHD] # Soin des blessures -- NameVO: [Cure Wounds](spells_vo.md#cure-wounds) +- AltName: [Cure Wounds](spells_vo.md#cure-wounds) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -7550,7 +7550,7 @@ La créature que vous touchez récupère un nombre de points de vie égal à 1d8 [][SpellHD] # Soin des blessures de groupe -- NameVO: [Mass Cure Wounds](spells_vo.md#mass-cure-wounds) +- AltName: [Mass Cure Wounds](spells_vo.md#mass-cure-wounds) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -7570,7 +7570,7 @@ Une vague d'énergie curative s'étend depuis un point de votre choix situé à [][SpellHD] # Sommeil -- NameVO: [Sleep](spells_vo.md#sleep) +- AltName: [Sleep](spells_vo.md#sleep) - CastingTime: 1 action - Components: V, S, M (une pincée de sable fin, des pétales de rose ou un criquet) - Duration: 1 minute @@ -7594,7 +7594,7 @@ Ce sort reste sans effet sur les morts-vivants et les créatures qui ne peuvent [][SpellHD] # Souhait -- NameVO: [Wish](spells_vo.md#wish) +- AltName: [Wish](spells_vo.md#wish) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -7634,7 +7634,7 @@ Le stress lié à l'incantation d'un souhait pour faire autre chose que répliqu [][SpellHD] # Sphère de feu -- NameVO: [Flaming Sphere](spells_vo.md#flaming-sphere) +- AltName: [Flaming Sphere](spells_vo.md#flaming-sphere) - CastingTime: 1 action - 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 @@ -7658,7 +7658,7 @@ Quand vous déplacez la sphère, vous pouvez lui faire franchir des obstacles de [][SpellHD] # Sphère glacée -- NameVO: [Otiluke's Freezing Sphere](spells_vo.md#otilukes-freezing-sphere) +- AltName: [Otiluke's Freezing Sphere](spells_vo.md#otilukes-freezing-sphere) - CastingTime: 1 action - Components: V, S, M (une petite sphère de cristal) - Duration: instantanée @@ -7688,7 +7688,7 @@ Il explose au bout de 1 minute s'il n'a pas été brisé auparavant. [][SpellHD] # Sphère résiliente -- NameVO: [Otiluke's Resilient Sphere](spells_vo.md#otilukes-resilient-sphere) +- AltName: [Otiluke's Resilient Sphere](spells_vo.md#otilukes-resilient-sphere) - CastingTime: 1 action - Components: V, S, M (un bout de cristal transparent hémisphérique et son équivalent en gomme arabique) - Duration: concentration, jusqu'à 1 minute @@ -7714,7 +7714,7 @@ Un sort de _[désintégration]_ visant la sphère la détruit sans endommager ce [][SpellHD] # Stalagmites fulgurantes -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute. @@ -7734,7 +7734,7 @@ Vous faites jaillir du sol des stalagmites de pierre d'une hauteur de 3 mètres [][SpellHD] # Strangulation -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -7754,7 +7754,7 @@ Vous tendez le bras en direction de votre cible et, de votre main, vous mimez so [][SpellHD] # Suggestion -- NameVO: [Suggestion](spells_vo.md#suggestion) +- AltName: [Suggestion](spells_vo.md#suggestion) - CastingTime: 1 action - 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 @@ -7782,7 +7782,7 @@ Si vous (ou l'un de vos compagnons) blessez une créature affectée par ce sort, [][SpellHD] # Suggestion de groupe -- NameVO: [Mass Suggestion](spells_vo.md#mass-suggestion) +- AltName: [Mass Suggestion](spells_vo.md#mass-suggestion) - CastingTime: 1 action - Components: V, M (une langue de serpent et soit un rayon de miel, soit une goutte d'huile d'olive) - Duration: 24 heures @@ -7808,7 +7808,7 @@ Si vous (ou l'un de vos compagnons) blessez une créature affectée par ce sort, [][SpellHD] # Symbole -- NameVO: [Symbol](spells_vo.md#symbol) +- AltName: [Symbol](spells_vo.md#symbol) - CastingTime: 1 minute - 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 @@ -7854,7 +7854,7 @@ Une telle créature se réveille si elle subit des dégâts ou si quelqu'un util [][SpellHD] # Télékinésie -- NameVO: [Telekinesis](spells_vo.md#telekinesis) +- AltName: [Telekinesis](spells_vo.md#telekinesis) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 10 minutes @@ -7882,7 +7882,7 @@ Vous exercez un contrôle précis sur les objets pris dans votre étreinte tél [][SpellHD] # Téléportation -- NameVO: [Teleport](spells_vo.md#teleport) +- AltName: [Teleport](spells_vo.md#teleport) - CastingTime: 1 action - Components: V - Duration: instantanée @@ -7928,7 +7928,7 @@ La distance qui vous sépare de votre destination est de 1d10 × 1d10 % de la di [][SpellHD] # Tempête de feu -- NameVO: [Fire Storm](spells_vo.md#fire-storm) +- AltName: [Fire Storm](spells_vo.md#fire-storm) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -7950,7 +7950,7 @@ Le feu endommage les objets présents dans la zone et embrase les objets inflamm [][SpellHD] # Tempête de grêle -- NameVO: [Ice Storm](spells_vo.md#ice-storm) +- AltName: [Ice Storm](spells_vo.md#ice-storm) - CastingTime: 1 action - Components: V, S, M (une pincée de poussière et quelques gouttes d'eau) - Duration: instantanée @@ -7974,7 +7974,7 @@ Les grêlons transforment la zone en terrain difficile jusqu'à la fin de votre [][SpellHD] # Tempête de neige -- NameVO: [Sleet Storm](spells_vo.md#sleet-storm) +- AltName: [Sleet Storm](spells_vo.md#sleet-storm) - CastingTime: 1 action - Components: V, S, M (une pincée de poussière et quelques gouttes d'eau) - Duration: concentration, jusqu'à 1 minute @@ -7996,7 +7996,7 @@ Si une créature se concentre dans la zone d'effet du sort, elle doit réussir u [][SpellHD] # Tempête de sable -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S, M (une rose des sables) - Duration: concentration, jusqu'à 1 minute @@ -8018,7 +8018,7 @@ Si ce sort est lancé dans un désert de sable ou de pierre, il inflige 4d6 dég [][SpellHD] # Tempête vengeresse -- NameVO: [Storm of Vengeance](spells_vo.md#storm-of-vengeance) +- AltName: [Storm of Vengeance](spells_vo.md#storm-of-vengeance) - CastingTime: 1 action - Components: V, S - Duration: concentration, jusqu'à 1 minute @@ -8048,7 +8048,7 @@ Le vent et la pluie fonctionnent comme une distraction sévère quand il s'agit [][SpellHD] # Ténèbres -- NameVO: [Darkness](spells_vo.md#darkness) +- AltName: [Darkness](spells_vo.md#darkness) - CastingTime: 1 action - Components: V, M (des poils de chauve-souris et une goutte de poix ou un bout de charbon) - Duration: concentration, jusqu'à 10 minutes @@ -8070,7 +8070,7 @@ Si une partie de la zone affectée par ce sort chevauche une zone de lumière is [][SpellHD] # Tentacules noirs -- NameVO: [Evard's Black Tentacles](spells_vo.md#evards-black-tentacles) +- AltName: [Evard's Black Tentacles](spells_vo.md#evards-black-tentacles) - CastingTime: 1 action - Components: V, S, M (un bout de tentacule appartenant à une pieuvre ou un calmar géant) - Duration: concentration, jusqu'à 1 minute @@ -8092,7 +8092,7 @@ Une créature [entravée] par les tentacules peut utiliser son action pour effec [][SpellHD] # Terrain hallucinatoire -- NameVO: [Hallucinatory Terrain](spells_vo.md#hallucinatory-terrain) +- AltName: [Hallucinatory Terrain](spells_vo.md#hallucinatory-terrain) - CastingTime: 10 minutes - Components: V, S, M (une pierre, une brindille et un bout de plante verte) - Duration: 24 heures @@ -8116,7 +8116,7 @@ Une fois qu'une créature a compris l'illusion, elle la voit comme une image flo [][SpellHD] # Texte illusoire -- NameVO: [Illusory Script](spells_vo.md#illusory-script) +- AltName: [Illusory Script](spells_vo.md#illusory-script) - CastingTime: 1 minute - Components: S, M (de l'encre à base de plomb valant au minimum 10 po, que le sort consume) - Duration: 10 jours @@ -8138,7 +8138,7 @@ Si quelqu'un dissipe le sort, l'illusion disparaît, mais le message original au [][SpellHD] # Thaumaturgie -- NameVO: [Thaumaturgy](spells_vo.md#thaumaturgy) +- AltName: [Thaumaturgy](spells_vo.md#thaumaturgy) - CastingTime: 1 action - Components: V - Duration: jusqu'à 1 minute @@ -8172,7 +8172,7 @@ Vous pouvez révoquer un tel effet par une action. [][SpellHD] # Toile d'araignée -- NameVO: [Web](spells_vo.md#web) +- AltName: [Web](spells_vo.md#web) - CastingTime: 1 action - Components: V, S, M (un bout de toile d'araignée) - Duration: concentration, jusqu'à 1 heure @@ -8200,7 +8200,7 @@ Les toiles sont inflammables. Un cube de toiles de 1,50 mètre d'arête exposé [][SpellHD] # Trait de feu -- NameVO: [Fire Bolt](spells_vo.md#fire-bolt) +- AltName: [Fire Bolt](spells_vo.md#fire-bolt) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -8220,7 +8220,7 @@ Les dégâts du sort augmentent de 1d10 quand vous atteignez le niveau 5 (2d10), [][SpellHD] # Transpercer -- NameVO: +- AltName: - CastingTime: 1 action bonus - Components: V - Duration: concentration, jusqu'à 1 minute @@ -8242,7 +8242,7 @@ Retirer l'arme lui inflige 2d6 dégâts, ou la moitié si elle réussit un jet d [][SpellHD] # Transport végétal -- NameVO: [Transport via Plants](spells_vo.md#transport-via-plants) +- AltName: [Transport via Plants](spells_vo.md#transport-via-plants) - CastingTime: 1 action - Components: V, S - Duration: 1 round @@ -8260,7 +8260,7 @@ Ce sort crée un lien magique entre une plante inanimée de taille G ou supérie [][SpellHD] # Tremblement de terre -- NameVO: [Earthquake](spells_vo.md#earthquake) +- AltName: [Earthquake](spells_vo.md#earthquake) - CastingTime: 1 action - Components: V, S, M (une pincée de poussière, un caillou et un peu d'argile) - Duration: concentration, jusqu'à 1 minute @@ -8294,7 +8294,7 @@ Une créature qui se trouve près d'un bâtiment en train de s'effondrer, à une [][SpellHD] # Tromperie -- NameVO: [Mislead](spells_vo.md#mislead) +- AltName: [Mislead](spells_vo.md#mislead) - CastingTime: 1 action - Components: S - Duration: concentration, jusqu'à 1 heure @@ -8318,7 +8318,7 @@ Tant que vous utilisez les sens de votre double, vous êtes sourd et aveugle à [][SpellHD] # Trouver les pièges -- NameVO: [Find Traps](spells_vo.md#find-traps) +- AltName: [Find Traps](spells_vo.md#find-traps) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -8338,7 +8338,7 @@ Le sort indique simplement qu'il y a un piège ; il ne précise pas où, mais vo [][SpellHD] # Trouver un chemin -- NameVO: [Find the Path](spells_vo.md#find-the-path) +- AltName: [Find the Path](spells_vo.md#find-the-path) - CastingTime: 1 minute - 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 @@ -8358,7 +8358,7 @@ Tant que le sort persiste et que vous êtes sur le même plan d'existence que vo [][SpellHD] # Trouver une monture -- NameVO: [Find Steed](spells_vo.md#find-steed) +- AltName: [Find Steed](spells_vo.md#find-steed) - CastingTime: 10 minutes - Components: V, S - Duration: instantanée @@ -8388,7 +8388,7 @@ Vous ne pouvez vous lier qu'à une seule monture issue de ce sort à la fois. Vo [][SpellHD] # Vague tonnante -- NameVO: [Thunderwave](spells_vo.md#thunderwave) +- AltName: [Thunderwave](spells_vo.md#thunderwave) - CastingTime: 1 action - Components: V, S - Duration: instantanée @@ -8414,7 +8414,7 @@ De plus, les objets qui ne sont pas arrimés et se trouvent entièrement englob [][SpellHD] # Verrou magique -- NameVO: [Arcane Lock](spells_vo.md#arcane-lock) +- AltName: [Arcane Lock](spells_vo.md#arcane-lock) - CastingTime: 1 action - Components: V, S, M (poussière d'or d'une valeur minimum de 25 po, que le sort consume) - Duration: jusqu'à dissipation @@ -8434,7 +8434,7 @@ Tant que l'objet est affecté par ce sort, il est bien plus difficile à briser [][SpellHD] # Viser juste -- NameVO: [True Strike](spells_vo.md#true-strike) +- AltName: [True Strike](spells_vo.md#true-strike) - CastingTime: 1 action - Components: S - Duration: concentration, jusqu'à 1 round @@ -8452,7 +8452,7 @@ Vous tendez la main et pointez du doigt une cible à portée. Votre magie vous d [][SpellHD] # Vision dans le noir -- NameVO: [Darkvision](spells_vo.md#darkvision) +- AltName: [Darkvision](spells_vo.md#darkvision) - CastingTime: 1 action - Components: V, S, M (une pincée de carotte séchée ou une agate) - Duration: 8 heures @@ -8470,7 +8470,7 @@ Vous touchez une créature consentante pour lui permettre de voir dans le noir. [][SpellHD] # Vision suprême -- NameVO: [True Seeing](spells_vo.md#true-seeing) +- AltName: [True Seeing](spells_vo.md#true-seeing) - CastingTime: 1 action - 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 @@ -8490,7 +8490,7 @@ Pendant toute la durée du sort, la cible bénéficie de vision parfaite, repèr [][SpellHD] # Vitalité -- NameVO: +- AltName: - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -8510,7 +8510,7 @@ Jusqu'à six créatures vivantes de votre choix, à portée et dans votre champ [][SpellHD] # Voir l'invisible -- NameVO: [See Invisibility](spells_vo.md#see-invisibility) +- AltName: [See Invisibility](spells_vo.md#see-invisibility) - CastingTime: 1 action - Components: V, S, M (une pincée de talc et un saupoudrage de poudre d'argent) - Duration: 1 heure @@ -8528,7 +8528,7 @@ Pendant toute la durée du sort, vous voyez les créatures et les objets [invisi [][SpellHD] # Vol -- NameVO: [Fly](spells_vo.md#fly) +- AltName: [Fly](spells_vo.md#fly) - CastingTime: 1 action - Components: V, S, M (une rémige) - Duration: concentration, jusqu'à 10 minutes @@ -8548,7 +8548,7 @@ Vous touchez une créature consentante et lui conférez la capacité de voler à [][SpellHD] # Zone de vérité -- NameVO: [Zone of Truth](spells_vo.md#zone-of-truth) +- AltName: [Zone of Truth](spells_vo.md#zone-of-truth) - CastingTime: 1 action - Components: V, S - Duration: 10 minutes diff --git a/Data/spells_vo.md b/Data/spells_vo.md index 38be0cbc..90e5420d 100644 --- a/Data/spells_vo.md +++ b/Data/spells_vo.md @@ -2,13 +2,13 @@ [][Items] # Spells (SRD) -- NameVO: [Sorts (H&D)](spells_hd.md) +- AltName: [Sorts (H&D)](spells_hd.md) [][SpellVO] # Acid Splash -- NameVO: [Aspersion acide] +- AltName: [Aspersion acide] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -29,7 +29,7 @@ This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level [][SpellVO] # Aid -- NameVO: [Aide] +- AltName: [Aide] - CastingTime: 1 action - Components: V, S, M (a tiny strip of white cloth) - Duration: 8 hours @@ -50,7 +50,7 @@ Your spell bolsters your allies with toughness and resolve. Choose up to three c [][SpellVO] # Alarm -- NameVO: [Alarme] +- AltName: [Alarme] - CastingTime: 1 minute - Components: V, S, M (a tiny bell and a piece of fine silver wire) - Duration: 8 hours @@ -71,7 +71,7 @@ A mental alarm alerts you with a ping in your mind if you are within 1 mile of t [][SpellVO] # Alter Self -- NameVO: [Modifier son apparence] +- AltName: [Modifier son apparence] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 hour @@ -96,7 +96,7 @@ You assume a different form. When you cast the spell, choose one of the followin [][SpellVO] # Animal Friendship -- NameVO: [Amitié avec les animaux] +- AltName: [Amitié avec les animaux] - CastingTime: 1 action - Components: V, S, M (a morsel of food) - Duration: 24 hours @@ -117,7 +117,7 @@ This spell lets you convince a beast that you mean it no harm. Choose a beast th [][SpellVO] # Animal Messenger -- NameVO: [Messager animal] +- AltName: [Messager animal] - CastingTime: 1 action - Components: V, S, M (a morsel of food) - Duration: 24 hours @@ -140,7 +140,7 @@ When the messenger arrives, it delivers your message to the creature that you de [][SpellVO] # Animal Shapes -- NameVO: [Formes animales] +- AltName: [Formes animales] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 24 hours @@ -163,7 +163,7 @@ The target's gear melds into the new form. The target can't activate, wield, or [][SpellVO] # Animate Dead -- NameVO: [Animation des morts] +- AltName: [Animation des morts] - CastingTime: 1 minute - Components: V, S, M (a drop of blood, a piece of flesh, and a pinch of bone dust) - Duration: Instantaneous @@ -188,7 +188,7 @@ The creature is under your control for 24 hours, after which it stops obeying an [][SpellVO] # Animate Objects -- NameVO: [Animation des objets] +- AltName: [Animation des objets] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -223,7 +223,7 @@ If you command an object to attack, it can make a single melee attack against a [][SpellVO] # Antilife Shell -- NameVO: [Coquille antivie] +- AltName: [Coquille antivie] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 hour @@ -246,7 +246,7 @@ If you move so that an affected creature is forced to pass through the barrier, [][SpellVO] # Antimagic Field -- NameVO: [Champ antimagie] +- AltName: [Champ antimagie] - CastingTime: 1 action - Components: V, S, M (a pinch of powdered iron or iron filings) - Duration: Concentration, up to 1 hour @@ -283,7 +283,7 @@ A magic weapon's properties and powers are suppressed if it is used against a ta [][SpellVO] # Antipathy/Sympathy -- NameVO: [Répulsion/attirance] +- AltName: [Répulsion/attirance] - CastingTime: 1 hour - 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 @@ -312,7 +312,7 @@ A creature that successfully saves against this effect is immune to it for 1 min [][SpellVO] # Arcane Eye -- NameVO: [Oeil magique] +- AltName: [Oeil magique] - CastingTime: 1 action - Components: V, S, M (a bit of bat fur) - Duration: Concentration, up to 1 hour @@ -335,7 +335,7 @@ As an action, you can move the eye up to 30 feet in any direction. There is no l [][SpellVO] # Arcane Lock -- NameVO: [Verrou magique] +- AltName: [Verrou magique] - CastingTime: 1 action - Components: V, S, M (gold dust worth at least 25 gp, which the spell consumes) - Duration: Until dispelled @@ -356,7 +356,7 @@ While affected by this spell, the object is more difficult to break or force ope [][SpellVO] # Astral Projection -- NameVO: [Projection astrale] +- AltName: [Projection astrale] - CastingTime: 1 hour - 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 @@ -385,7 +385,7 @@ If you are returned to your body prematurely, your companions remain in their as [][SpellVO] # Augury -- NameVO: [Augure] +- AltName: [Augure] - CastingTime: 1 minute - Components: V, S, M (specially marked sticks, bones, or similar tokens worth at least 25 gp) - Duration: Instantaneous @@ -416,7 +416,7 @@ If you cast the spell two or more times before completing your next long rest, t [][SpellVO] # Awaken -- NameVO: [Éveil] +- AltName: [Éveil] - CastingTime: 8 hours - Components: V, S, M (an agate worth at least 1,000 gp, which the spell consumes) - Duration: Instantaneous @@ -437,7 +437,7 @@ The awakened beast or plant is charmed by you for 30 days or until you or your c [][SpellVO] # Bane -- NameVO: [Fléau] +- AltName: [Fléau] - CastingTime: 1 action - Components: V, S, M (a drop of blood) - Duration: Concentration, up to 1 minute @@ -458,7 +458,7 @@ Up to three creatures of your choice that you can see within range must make Cha [][SpellVO] # Banishment -- NameVO: [Bannissement] +- AltName: [Bannissement] - CastingTime: 1 action - Components: V, S, M (an item distasteful to the target) - Duration: Concentration, up to 1 minute @@ -483,7 +483,7 @@ If the target is native to a different plane of existence than the one you're on [][SpellVO] # Barkskin -- NameVO: [Peau d'écorce] +- AltName: [Peau d'écorce] - CastingTime: 1 action - Components: V, S, M (a handful of oak bark) - Duration: Concentration, up to 1 hour @@ -502,7 +502,7 @@ You touch a willing creature. Until the spell ends, the target's skin has a roug [][SpellVO] # Beacon of Hope -- NameVO: [Lueur d'espoir] +- AltName: [Lueur d'espoir] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -521,7 +521,7 @@ This spell bestows hope and vitality. Choose any number of creatures within rang [][SpellVO] # Bestow curse -- NameVO: [Jeter une malédiction] +- AltName: [Jeter une malédiction] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -552,7 +552,7 @@ A _[remove curse]_ spell ends this effect. At the DM's option, you may choose an [][SpellVO] # Bigby's Hand -- NameVO: [Main magique] +- AltName: [Main magique] - CastingTime: 1 action - Components: V, S, M (an eggshell and a snakeskin glove) - Duration: Concentration, up to 1 minute @@ -585,7 +585,7 @@ When you cast the spell and as a bonus action on your subsequent turns, you can [][SpellVO] # Blade Barrier -- NameVO: [Barrière de lames] +- AltName: [Barrière de lames] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -606,7 +606,7 @@ When a creature enters the wall's area for the first time on a turn or starts it [][SpellVO] # Bless -- NameVO: [Bénédiction] +- AltName: [Bénédiction] - CastingTime: 1 action - Components: V, S, M (a sprinkling of holy water) - Duration: Concentration, up to 1 minute @@ -627,7 +627,7 @@ You bless up to three creatures of your choice within range. Whenever a target m [][SpellVO] # Blight -- NameVO: [Flétrissement] +- AltName: [Flétrissement] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -650,7 +650,7 @@ If you target a nonmagical plant that isn't a creature, such as a tree or shrub, [][SpellVO] # Blindness/Deafness -- NameVO: [Cécité/Surdité] +- AltName: [Cécité/Surdité] - CastingTime: 1 action - Components: V - Duration: 1 minute @@ -671,7 +671,7 @@ You can blind or deafen a foe. Choose one creature that you can see within range [][SpellVO] # Blink -- NameVO: [Clignotement] +- AltName: [Clignotement] - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -692,7 +692,7 @@ While on the Ethereal Plane, you can see and hear the plane you originated from, [][SpellVO] # Blur -- NameVO: [Flou] +- AltName: [Flou] - CastingTime: 1 action - Components: V - Duration: Concentration, up to 1 minute @@ -711,7 +711,7 @@ Your body becomes blurred, shifting and wavering to all who can see you. For the [][SpellVO] # Branding Smite -- NameVO: [Frappe lumineuse] +- AltName: [Frappe lumineuse] - CastingTime: 1 bonus action - Components: V - Duration: Concentration, up to 1 minute @@ -732,7 +732,7 @@ The next time you hit a creature with a weapon attack before this spell ends, th [][SpellVO] # Burning Hands -- NameVO: [Mains brûlantes] +- AltName: [Mains brûlantes] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -755,7 +755,7 @@ The fire ignites any flammable objects in the area that aren't being worn or car [][SpellVO] # Call Lightning -- NameVO: [Appel de la foudre] +- AltName: [Appel de la foudre] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -780,7 +780,7 @@ If you are outdoors in stormy conditions when you cast this spell, the spell giv [][SpellVO] # Calm Emotions -- NameVO: [Apaisement des émotions] +- AltName: [Apaisement des émotions] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -803,7 +803,7 @@ You attempt to suppress strong emotions in a group of people. Each humanoid in a [][SpellVO] # Chain Lightning -- NameVO: [Chaîne d'éclairs] +- AltName: [Chaîne d'éclairs] - CastingTime: 1 action - Components: V, S, M (a bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins) - Duration: Instantaneous @@ -826,7 +826,7 @@ A target must make a Dexterity saving throw. The target takes 10d8 lightning dam [][SpellVO] # Charm Person -- NameVO: [Charme-personne] +- AltName: [Charme-personne] - CastingTime: 1 action - Components: V, S - Duration: 1 hour @@ -847,7 +847,7 @@ You attempt to charm a humanoid you can see within range. It must make a Wisdom [][SpellVO] # Chill Touch -- NameVO: [Contact glacial] +- AltName: [Contact glacial] - CastingTime: 1 action - Components: V, S - Duration: 1 round @@ -868,7 +868,7 @@ This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level [][SpellVO] # Circle of Death -- NameVO: [Cercle de mort] +- AltName: [Cercle de mort] - CastingTime: 1 action - Components: V, S, M (the powder of a crushed black pearl worth at least 500 gp) - Duration: Instantaneous @@ -889,7 +889,7 @@ A sphere of negative energy ripples out in a 60-foot-radius sphere from a point [][SpellVO] # Clairvoyance -- NameVO: [Clairvoyance] +- AltName: [Clairvoyance] - CastingTime: 10 minutes - 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 @@ -912,7 +912,7 @@ A creature that can see the sensor (such as a creature benefiting from _see invi [][SpellVO] # Clone -- NameVO: [Clone] +- AltName: [Clone] - CastingTime: 1 hour - 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 @@ -935,7 +935,7 @@ The clone is physically identical to the original and has the same personality, [][SpellVO] # Cloudkill -- NameVO: [Nuage mortel] +- AltName: [Nuage mortel] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -960,7 +960,7 @@ The fog moves 10 feet away from you at the start of each of your turns, rolling [][SpellVO] # Color Spray -- NameVO: [Couleurs dansantes] +- AltName: [Couleurs dansantes] - CastingTime: 1 action - Components: V, S, M (a pinch of powder or sand that is colored red, yellow, and blue) - Duration: 1 round @@ -983,7 +983,7 @@ Starting with the creature that has the lowest current hit points, each creature [][SpellVO] # Command -- NameVO: [Injonction] +- AltName: [Injonction] - CastingTime: 1 action - Components: V - Duration: 1 round @@ -1016,7 +1016,7 @@ Some typical commands and their effects follow. You might issue a command other [][SpellVO] # Commune -- NameVO: [Communion] +- AltName: [Communion] - CastingTime: 1 minute - Components: V, S, M (incense and a vial of holy or unholy water) - Duration: 1 minute @@ -1039,7 +1039,7 @@ If you cast the spell two or more times before finishing your next long rest, th [][SpellVO] # Commune with Nature -- NameVO: [Communion avec la nature] +- AltName: [Communion avec la nature] - CastingTime: 1 minute - Components: V, S - Duration: Instantaneous @@ -1072,7 +1072,7 @@ For example, you could determine the location of powerful undead in the area, th [][SpellVO] # Comprehend Languages -- NameVO: [Compréhension des langues] +- AltName: [Compréhension des langues] - CastingTime: 1 action - Components: V, S, M (a pinch of soot and salt) - Duration: 1 hour @@ -1093,7 +1093,7 @@ This spell doesn't decode secret messages in a text or a glyph, such as an arcan [][SpellVO] # Compulsion -- NameVO: [Compulsion] +- AltName: [Compulsion] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -1114,7 +1114,7 @@ A target isn't compelled to move into an obviously deadly hazard, such as a fire [][SpellVO] # Cone of Cold -- NameVO: [Cône de froid] +- AltName: [Cône de froid] - CastingTime: 1 action - Components: V, S, M (a small crystal or glass cone) - Duration: Instantaneous @@ -1137,7 +1137,7 @@ A creature killed by this spell becomes a frozen statue until it thaws. [][SpellVO] # Confusion -- NameVO: [Confusion] +- AltName: [Confusion] - CastingTime: 1 action - Components: V, S, M (three nut shells) - Duration: Concentration, up to 1 minute @@ -1169,7 +1169,7 @@ At the end of each of its turns, an affected target can make a Wisdom saving thr [][SpellVO] # Conjure Animals -- NameVO: [Invoquer des animaux] +- AltName: [Invoquer des animaux] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 hour @@ -1200,7 +1200,7 @@ Each beast is also considered fey, and it disappears when it drops to 0 hit poin [][SpellVO] # Conjure Celestial -- NameVO: [Invoquer un céleste] +- AltName: [Invoquer un céleste] - CastingTime: 1 minute - Components: V, S - Duration: Concentration, up to 1 hour @@ -1225,7 +1225,7 @@ The DM has the celestial's statistics. [][SpellVO] # Conjure Elemental -- NameVO: [Invoquer un élémentaire] +- AltName: [Invoquer un élémentaire] - CastingTime: 1 minute - 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 @@ -1248,7 +1248,7 @@ If your concentration is broken, the elemental doesn't disappear. Instead, you l [][SpellVO] # Conjure Fey -- NameVO: [Invoquer une fée] +- AltName: [Invoquer une fée] - CastingTime: 1 minute - Components: V, S - Duration: Concentration, up to 1 hour @@ -1275,7 +1275,7 @@ The DM has the fey creature's statistics. [][SpellVO] # Conjure Minor Elementals -- NameVO: [Invoquer des élémentaires mineurs] +- AltName: [Invoquer des élémentaires mineurs] - CastingTime: 1 minute - Components: V, S - Duration: Concentration, up to 1 hour @@ -1310,7 +1310,7 @@ The DM has the creatures' statistics. [][SpellVO] # Conjure Woodland Beings -- NameVO: [Invoquer des êtres des bois] +- AltName: [Invoquer des êtres des bois] - CastingTime: 1 action - Components: V, S, M (one holly berry per creature summoned) - Duration: Concentration, up to 1 hour @@ -1345,7 +1345,7 @@ The DM has the creatures' statistics. [][SpellVO] # Contact Other Plane -- NameVO: [Contacter un autre plan] +- AltName: [Contacter un autre plan] - CastingTime: 1 minute - Components: V - Duration: 1 minute @@ -1366,7 +1366,7 @@ On a successful save, you can ask the entity up to five questions. You must ask [][SpellVO] # Contagion -- NameVO: [Contagion] +- AltName: [Contagion] - CastingTime: 1 action - Components: - Duration: 7 days @@ -1403,7 +1403,7 @@ Since this spell induces a natural disease in its target, any effect that remove [][SpellVO] # Contingency -- NameVO: [Contingence] +- AltName: [Contingence] - CastingTime: 10 minutes - Components: V, S, M (a statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp) - Duration: 10 days @@ -1426,7 +1426,7 @@ The contingent spell takes effect only on you, even if it can normally target ot [][SpellVO] # Continual Flame -- NameVO: [Flamme éternelle] +- AltName: [Flamme éternelle] - CastingTime: 1 action - Components: V, S, M (ruby dust worth 50 gp, which the spell consumes) - Duration: Until dispelled @@ -1445,7 +1445,7 @@ A flame, equivalent in brightness to a torch, springs forth from an object that [][SpellVO] # Control Water -- NameVO: [Contrôle de l'eau] +- AltName: [Contrôle de l'eau] - CastingTime: 1 action - Components: V, S, M (a drop of water and a pinch of dust) - Duration: Concentration, up to 10 minutes @@ -1476,7 +1476,7 @@ The first time each turn that an object enters the vortex, the object takes 2d8 [][SpellVO] # Control Weather -- NameVO: [Contrôle du climat] +- AltName: [Contrôle du climat] - CastingTime: 10 minutes - Components: V, S, M (burning incense and bits of earth and wood mixed in water) - Duration: Concentration, up to 8 hours @@ -1529,7 +1529,7 @@ Wind [][SpellVO] # Counterspell -- NameVO: [Contresort] +- AltName: [Contresort] - CastingTime: 1 reaction, which you take when you see a creature within 60 feet of you casting a spell - Components: S - Duration: Instantaneous @@ -1550,7 +1550,7 @@ You attempt to interrupt a creature in the process of casting a spell. If the cr [][SpellVO] # Create Food and Water -- NameVO: [Création de nourriture et d'eau] +- AltName: [Création de nourriture et d'eau] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -1569,7 +1569,7 @@ You create 45 pounds of food and 30 gallons of water on the ground or in contain [][SpellVO] # Create or Destroy Water -- NameVO: [Création ou destruction d'eau] +- AltName: [Création ou destruction d'eau] - CastingTime: 1 action - Components: V, S, M (a drop of water if creating water or a few grains of sand if destroying it) - Duration: Instantaneous @@ -1594,7 +1594,7 @@ You either create or destroy water. [][SpellVO] # Create Undead -- NameVO: [Création de mort-vivant] +- AltName: [Création de mort-vivant] - CastingTime: 1 minute - 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 @@ -1619,7 +1619,7 @@ The creature is under your control for 24 hours, after which it stops obeying an [][SpellVO] # Creation -- NameVO: [Création] +- AltName: [Création] - CastingTime: 1 minute - Components: V, S, M (a tiny piece of matter of the same type of the item you plan to create) - Duration: Special @@ -1652,7 +1652,7 @@ Using any material created by this spell as another spell's material component c [][SpellVO] # Cure Wounds -- NameVO: [Soin des blessures] +- AltName: [Soin des blessures] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -1673,7 +1673,7 @@ A creature you touch regains a number of hit points equal to 1d8 + your spellcas [][SpellVO] # Dancing Lights -- NameVO: [Lumières dansantes] +- AltName: [Lumières dansantes] - CastingTime: 1 action - Components: V, S, M (a bit of phosphorus or wychwood, or a glowworm) - Duration: Concentration, up to 1 minute @@ -1694,7 +1694,7 @@ As a bonus action on your turn, you can move the lights up to 60 feet to a new s [][SpellVO] # Darkness -- NameVO: [Ténèbres] +- AltName: [Ténèbres] - CastingTime: 1 action - Components: V, M (bat fur and a drop of pitch or piece of coal) - Duration: Concentration, up to 10 minutes @@ -1717,7 +1717,7 @@ If any of this spell's area overlaps with an area of light created by a spell of [][SpellVO] # Darkvision -- NameVO: [Vision dans le noir] +- AltName: [Vision dans le noir] - CastingTime: 1 action - Components: V, S, M (either a pinch of dried carrot or an agate) - Duration: 8 hours @@ -1736,7 +1736,7 @@ You touch a willing creature to grant it the ability to see in the dark. For the [][SpellVO] # Daylight -- NameVO: [Lumière du jour] +- AltName: [Lumière du jour] - CastingTime: 1 action - Components: V, S - Duration: 1 hour @@ -1759,7 +1759,7 @@ If any of this spell's area overlaps with an area of darkness created by a spell [][SpellVO] # Death Ward -- NameVO: [Protection contre la mort] +- AltName: [Protection contre la mort] - CastingTime: 1 action - Components: V, S - Duration: 8 hours @@ -1782,7 +1782,7 @@ If the spell is still in effect when the target is subjected to an effect that w [][SpellVO] # Delayed Blast Fireball -- NameVO: [Boule de feu à explosion retardée] +- AltName: [Boule de feu à explosion retardée] - CastingTime: 1 action - Components: V, S, M (a tiny ball of bat guano and sulfur) - Duration: Concentration, up to 1 minute @@ -1809,7 +1809,7 @@ The fire damages objects in the area and ignites flammable objects that aren't b [][SpellVO] # Demiplane -- NameVO: [Demi-plan] +- AltName: [Demi-plan] - CastingTime: 1 action - Components: S - Duration: 1 hour @@ -1830,7 +1830,7 @@ Each time you cast this spell, you can create a new demiplane, or have the shado [][SpellVO] # Detect Evil and Good -- NameVO: [Détection du mal et du bien] +- AltName: [Détection du mal et du bien] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -1851,7 +1851,7 @@ The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 i [][SpellVO] # Detect Magic -- NameVO: [Détection de la magie] +- AltName: [Détection de la magie] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -1872,7 +1872,7 @@ The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 i [][SpellVO] # Detect Poison and Disease -- NameVO: [Détection du poison et des maladies] +- AltName: [Détection du poison et des maladies] - CastingTime: 1 action - Components: V, S, M (a yew leaf) - Duration: Concentration, up to 10 minutes @@ -1893,7 +1893,7 @@ The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 i [][SpellVO] # Detect Thoughts -- NameVO: [Détection des pensées] +- AltName: [Détection des pensées] - CastingTime: 1 action - Components: V, S, M (a copper piece) - Duration: Concentration, up to 1 minute @@ -1920,7 +1920,7 @@ Once you detect the presence of a creature in this way, you can read its thought [][SpellVO] # Dimension Door -- NameVO: [Porte dimensionnelle] +- AltName: [Porte dimensionnelle] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -1943,7 +1943,7 @@ If you would arrive in a place already occupied by an object or a creature, you [][SpellVO] # Disguise Self -- NameVO: [Déguisement] +- AltName: [Déguisement] - CastingTime: 1 action - Components: V, S - Duration: 1 hour @@ -1966,7 +1966,7 @@ To discern that you are disguised, a creature can use its action to inspect your [][SpellVO] # Disintegrate -- NameVO: [Désintégration] +- AltName: [Désintégration] - CastingTime: 1 action - Components: V, S, M (a lodestone and a pinch of dust) - Duration: Instantaneous @@ -1993,7 +1993,7 @@ This spell automatically disintegrates a Large or smaller nonmagical object or a [][SpellVO] # Dispel Evil and Good -- NameVO: [Dissipation du mal et du bien] +- AltName: [Dissipation du mal et du bien] - CastingTime: 1 action - Components: V, S, M (holy water or powdered silver and iron) - Duration: Concentration, up to 1 minute @@ -2018,7 +2018,7 @@ You can end the spell early by using either of the following special functions. [][SpellVO] # Dispel Magic -- NameVO: [Dissipation de la magie] +- AltName: [Dissipation de la magie] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -2039,7 +2039,7 @@ Choose one creature, object, or magical effect within range. Any spell of 3rd le [][SpellVO] # Divination -- NameVO: [Divination] +- AltName: [Divination] - CastingTime: 1 action - 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 @@ -2062,7 +2062,7 @@ If you cast the spell two or more times before finishing your next long rest, th [][SpellVO] # Divine Favor -- NameVO: [Faveur divine] +- AltName: [Faveur divine] - CastingTime: 1 bonus action - Components: V, S - Duration: Concentration, up to 1 minute @@ -2081,7 +2081,7 @@ Your prayer empowers you with divine radiance. Until the spell ends, your weapon [][SpellVO] # Divine Word -- NameVO: [Parole divine] +- AltName: [Parole divine] - CastingTime: 1 bonus action - Components: V - Duration: Instantaneous @@ -2110,7 +2110,7 @@ Regardless of its current hit points, a celestial, an elemental, a fey, or a fie [][SpellVO] # Dominate Beast -- NameVO: [Dominer une bête] +- AltName: [Dominer une bête] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -2135,7 +2135,7 @@ You can use your action to take total and precise control of the target. Until t [][SpellVO] # Dominate Monster -- NameVO: [Dominer un monstre] +- AltName: [Dominer un monstre] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 hour @@ -2162,7 +2162,7 @@ Each time the target takes damage, it makes a new Wisdom saving throw against th [][SpellVO] # Dominate Person -- NameVO: [Dominer un humanoïde] +- AltName: [Dominer un humanoïde] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -2191,7 +2191,7 @@ Wisdom saving throw against the spell. If the saving throw succeeds, the spell e [][SpellVO] # Drawmij's Instant Summons -- NameVO: [Convocations instantanées] +- AltName: [Convocations instantanées] - CastingTime: 1 minute - Components: V, S, M (a sapphire worth 1,000 gp) - Duration: Until dispelled @@ -2216,7 +2216,7 @@ _[dispel magic]_ or a similar effect successfully applied to the sapphire ends t [][SpellVO] # Dream -- NameVO: [Rêve] +- AltName: [Rêve] - CastingTime: 1 minute - Components: V, S, M (a handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird) - Duration: 8 hours @@ -2241,7 +2241,7 @@ If you have a body part, lock of hair, clipping from a nail, or similar portion [][SpellVO] # Druidcraft -- NameVO: [Druidisme] +- AltName: [Druidisme] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -2268,7 +2268,7 @@ Whispering to the spirits of nature, you create one of the following effects wit [][SpellVO] # Earthquake -- NameVO: [Tremblement de terre] +- AltName: [Tremblement de terre] - CastingTime: 1 action - Components: V, S, M (a pinch of dirt, a piece of rock, and a lump of clay) - Duration: Concentration, up to 1 minute @@ -2299,7 +2299,7 @@ A fissure that opens beneath a structure causes it to automatically collapse (se [][SpellVO] # Eldritch Blast -- NameVO: [Explosion occulte] +- AltName: [Explosion occulte] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -2320,7 +2320,7 @@ The spell creates more than one beam when you reach higher levels: two beams at [][SpellVO] # Enhance Ability -- NameVO: [Amélioration de caractéristique] +- AltName: [Amélioration de caractéristique] - CastingTime: 1 action - Components: V, S, M (fur or a feather from a beast) - Duration: Concentration, up to 1 hour @@ -2353,7 +2353,7 @@ You touch a creature and bestow upon it a magical enhancement. Choose one of the [][SpellVO] # Enlarge/Reduce -- NameVO: [Agrandir/Rétrécir] +- AltName: [Agrandir/Rétrécir] - CastingTime: 1 action - Components: V, S, M (a pinch of powdered iron) - Duration: Concentration, up to 1 minute @@ -2378,7 +2378,7 @@ If the target is a creature, everything it is wearing and carrying changes size [][SpellVO] # Entangle -- NameVO: [Enchevêtrement] +- AltName: [Enchevêtrement] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -2401,7 +2401,7 @@ When the spell ends, the conjured plants wilt away. [][SpellVO] # Enthrall -- NameVO: [Envoûtement] +- AltName: [Envoûtement] - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -2420,7 +2420,7 @@ You weave a distracting string of words, causing creatures of your choice that y [][SpellVO] # Etherealness -- NameVO: [Forme éthérée] +- AltName: [Forme éthérée] - CastingTime: 1 action - Components: V, S - Duration: Up to 8 hours @@ -2449,7 +2449,7 @@ This spell has no effect if you cast it while you are on the Ethereal Plane or a [][SpellVO] # Evard's Black Tentacles -- NameVO: [Tentacules noirs] +- AltName: [Tentacules noirs] - CastingTime: 1 action - Components: V, S, M (a piece of tentacle from a giant octopus or a giant squid) - Duration: Concentration, up to 1 minute @@ -2472,7 +2472,7 @@ A creature restrained by the tentacles can use its action to make a Strength or [][SpellVO] # Expeditious Retreat -- NameVO: [Repli expéditif] +- AltName: [Repli expéditif] - CastingTime: 1 bonus action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -2491,7 +2491,7 @@ This spell allows you to move at an incredible pace. When you cast this spell, a [][SpellVO] # Eyebite -- NameVO: [Mauvais oeil] +- AltName: [Mauvais oeil] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -2516,7 +2516,7 @@ For the spell's duration, your eyes become an inky void imbued with dread power. [][SpellVO] # Fabricate -- NameVO: [Fabrication] +- AltName: [Fabrication] - CastingTime: 10 minutes - Components: V, S - Duration: Instantaneous @@ -2539,7 +2539,7 @@ Creatures or magic items can't be created or transmuted by this spell. You also [][SpellVO] # Faerie Fire -- NameVO: [Lueurs féeriques] +- AltName: [Lueurs féeriques] - CastingTime: 1 action - Components: V - Duration: Concentration, up to 1 minute @@ -2560,7 +2560,7 @@ Any attack roll against an affected creature or object has advantage if the atta [][SpellVO] # False Life -- NameVO: [Simulacre de vie] +- AltName: [Simulacre de vie] - CastingTime: 1 action - Components: V, S, M (a small amount of alcohol or distilled spirits) - Duration: 1 hour @@ -2581,7 +2581,7 @@ Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 tempo [][SpellVO] # Fear -- NameVO: [Peur] +- AltName: [Peur] - CastingTime: 1 action - Components: V, S, M (a white feather or the heart of a hen) - Duration: Concentration, up to 1 minute @@ -2600,7 +2600,7 @@ You project a phantasmal image of a creature's worst fears. Each creature in a 3 [][SpellVO] # Feather Fall -- NameVO: [Léger comme une plume] +- AltName: [Léger comme une plume] - CastingTime: 1 reaction, which you take when you or a creature within 60 feet of you falls - Components: V, M (a small feather or piece of down) - Duration: 1 minute @@ -2619,7 +2619,7 @@ Choose up to five falling creatures within range. A falling creature's rate of d [][SpellVO] # Feeblemind -- NameVO: [Esprit faible] +- AltName: [Esprit faible] - CastingTime: 1 action - Components: V, S, M (a handful of clay, crystal, glass, or mineral spheres) - Duration: Instantaneous @@ -2644,7 +2644,7 @@ The spell can also be ended by _[greater restoration], [heal]_, or _[wish]_. [][SpellVO] # Find Familiar -- NameVO: [Appel de familier] +- AltName: [Appel de familier] - CastingTime: 1 hour - Components: V, S, M (10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier) - Duration: Instantaneous @@ -2675,7 +2675,7 @@ Finally, when you cast a spell with a range of touch, your familiar can deliver [][SpellVO] # Find Steed -- NameVO: [Trouver une monture] +- AltName: [Trouver une monture] - CastingTime: 10 minutes - Components: V, S - Duration: Instantaneous @@ -2702,7 +2702,7 @@ You can't have more than one steed bonded by this spell at a time. As an action, [][SpellVO] # Find the Path -- NameVO: [Trouver un chemin] +- AltName: [Trouver un chemin] - CastingTime: 1 minute - 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 @@ -2723,7 +2723,7 @@ For the duration, as long as you are on the same plane of existence as the desti [][SpellVO] # Find Traps -- NameVO: [Trouver les pièges] +- AltName: [Trouver les pièges] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -2744,7 +2744,7 @@ This spell merely reveals that a trap is present. You don't learn the location o [][SpellVO] # Finger of Death -- NameVO: [Doigt de mort] +- AltName: [Doigt de mort] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -2765,7 +2765,7 @@ A humanoid killed by this spell rises at the start of your next turn as a zombie [][SpellVO] # Fire Bolt -- NameVO: [Trait de feu] +- AltName: [Trait de feu] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -2786,7 +2786,7 @@ This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th leve [][SpellVO] # Fire Shield -- NameVO: [Bouclier de feu] +- AltName: [Bouclier de feu] - CastingTime: 1 action - Components: V, S, M (a bit of phosphorus or a firefly) - Duration: 10 minutes @@ -2809,7 +2809,7 @@ In addition, whenever a creature within 5 feet of you hits you with a melee atta [][SpellVO] # Fire Storm -- NameVO: [Tempête de feu] +- AltName: [Tempête de feu] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -2830,7 +2830,7 @@ The fire damages objects in the area and ignites flammable objects that aren't b [][SpellVO] # Fireball -- NameVO: [Boule de feu] +- AltName: [Boule de feu] - CastingTime: 1 action - Components: V, S, M (a tiny ball of bat guano and sulfur) - Duration: Instantaneous @@ -2853,7 +2853,7 @@ The fire spreads around corners. It ignites flammable objects in the area that a [][SpellVO] # Flame Blade -- NameVO: [Lame de feu] +- AltName: [Lame de feu] - CastingTime: 1 bonus action - Components: V, S, M (leaf of sumac) - Duration: Concentration, up to 10 minutes @@ -2878,7 +2878,7 @@ The flaming blade sheds bright light in a 10-foot radius and dim light for an ad [][SpellVO] # Flame Strike -- NameVO: [Colonne de flamme] +- AltName: [Colonne de flamme] - CastingTime: 1 action - Components: V, S, M (pinch of sulfur) - Duration: Instantaneous @@ -2899,7 +2899,7 @@ A vertical column of divine fire roars down from the heavens in a location you s [][SpellVO] # Flaming Sphere -- NameVO: [Sphère de feu] +- AltName: [Sphère de feu] - CastingTime: 1 action - Components: V, S, M (a bit of tallow, a pinch of brimstone, and a dusting of powdered iron) - Duration: Concentration, up to 1 minute @@ -2924,7 +2924,7 @@ When you move the sphere, you can direct it over barriers up to 5 feet tall and [][SpellVO] # Flesh to Stone -- NameVO: [Pétrification] +- AltName: [Pétrification] - CastingTime: 1 action - Components: V, S, M (a pinch of lime, water, and earth) - Duration: Concentration, up to 1 minute @@ -2949,7 +2949,7 @@ If you maintain your concentration on this spell for the entire possible duratio [][SpellVO] # Fly -- NameVO: [Vol] +- AltName: [Vol] - CastingTime: 1 action - Components: V, S, M (a wing feather from any bird) - Duration: Concentration, up to 10 minutes @@ -2970,7 +2970,7 @@ You touch a willing creature. The target gains a flying speed of 60 feet for the [][SpellVO] # Fog Cloud -- NameVO: [Nappe de brouillard] +- AltName: [Nappe de brouillard] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 hour @@ -2991,7 +2991,7 @@ You create a 20-foot-radius sphere of fog centered on a point within range. The [][SpellVO] # Forbiddance -- NameVO: [Interdiction] +- AltName: [Interdiction] - CastingTime: 10 minutes - Components: V, S, M (a sprinkling of holy water, rare incense, and powdered ruby worth at least 1,000 gp) - Duration: 1 day @@ -3016,7 +3016,7 @@ The spell's area can't overlap with the area of another forbiddance spell. If yo [][SpellVO] # Forcecage -- NameVO: [Cage de force] +- AltName: [Cage de force] - CastingTime: 1 action - Components: V, S, M (ruby dust worth 1,500 gp) - Duration: 1 hour @@ -3045,7 +3045,7 @@ This spell can't be dispelled by _[dispel magic]_. [][SpellVO] # Foresight -- NameVO: [Prémonition] +- AltName: [Prémonition] - CastingTime: 1 minute - Components: V, S, M (a hummingbird feather) - Duration: 8 hours @@ -3066,7 +3066,7 @@ This spell immediately ends if you cast it again before its duration ends. [][SpellVO] # Freedom of Movement -- NameVO: [Liberté de mouvement] +- AltName: [Liberté de mouvement] - CastingTime: 1 action - Components: V, S, M (a leather strap, bound around the arm or a similar appendage) - Duration: 1 hour @@ -3087,7 +3087,7 @@ The target can also spend 5 feet of movement to automatically escape from nonmag [][SpellVO] # Gaseous Form -- NameVO: [Forme gazeuse] +- AltName: [Forme gazeuse] - CastingTime: 1 action - Components: V, S, M (a bit of gauze and a wisp of smoke) - Duration: Concentration, up to 1 hour @@ -3110,7 +3110,7 @@ While in the form of a misty cloud, the target can't talk or manipulate objects, [][SpellVO] # Gate -- NameVO: [Portail] +- AltName: [Portail] - CastingTime: 1 action - Components: V, S, M (a diamond worth at least 5,000 gp) - Duration: Concentration, up to 1 minute @@ -3135,7 +3135,7 @@ When you cast this spell, you can speak the name of a specific creature (a pseud [][SpellVO] # Geas -- NameVO: [Coercition mystique] +- AltName: [Coercition mystique] - CastingTime: 1 minute - Components: V - Duration: 30 days @@ -3160,7 +3160,7 @@ You can end the spell early by using an action to dismiss it. A _[remove curse], [][SpellVO] # Gentle Repose -- NameVO: [Doux repos] +- AltName: [Doux repos] - CastingTime: 1 action - 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 @@ -3181,7 +3181,7 @@ The spell also effectively extends the time limit on raising the target from the [][SpellVO] # Giant Insect -- NameVO: [Insecte géant] +- AltName: [Insecte géant] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -3206,7 +3206,7 @@ The DM might allow you to choose different targets. For example, if you transfor [][SpellVO] # Glibness -- NameVO: [Bagou] +- AltName: [Bagou] - CastingTime: 1 action - Components: V - Duration: 1 hour @@ -3225,7 +3225,7 @@ Until the spell ends, when you make a Charisma check, you can replace the number [][SpellVO] # Globe of Invulnerability -- NameVO: [Globe d'invulnérabilité] +- AltName: [Globe d'invulnérabilité] - CastingTime: 1 action - Components: V, S, M (a glass or crystal bead that shatters when the spell ends) - Duration: Concentration, up to 1 minute @@ -3248,7 +3248,7 @@ Any spell of 5th level or lower cast from outside the barrier can't affect creat [][SpellVO] # Glyph of Warding -- NameVO: [Glyphe de protection] +- AltName: [Glyphe de protection] - CastingTime: 1 hour - Components: V, S, M (incense and powdered diamond worth at least 200 gp, which the spell consumes) - Duration: Until dispelled or triggered @@ -3281,7 +3281,7 @@ When you inscribe the glyph, choose _explosive runes_ or a _spell glyph_. [][SpellVO] # Goodberry -- NameVO: [Baies nourricières] +- AltName: [Baies nourricières] - CastingTime: 1 action - Components: V, S, M (a sprig of mistletoe) - Duration: Instantaneous @@ -3302,7 +3302,7 @@ The berries lose their potency if they have not been consumed within 24 hours of [][SpellVO] # Grease -- NameVO: [Graisse] +- AltName: [Graisse] - CastingTime: 1 action - Components: V, S, M (a bit of pork rind or butter) - Duration: 1 minute @@ -3323,7 +3323,7 @@ When the grease appears, each creature standing in its area must succeed on a De [][SpellVO] # Greater Invisibility -- NameVO: [Invisibilité supérieure] +- AltName: [Invisibilité supérieure] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -3342,7 +3342,7 @@ You or a creature you touch becomes invisible until the spell ends. Anything the [][SpellVO] # Greater Restoration -- NameVO: [Restauration supérieure] +- AltName: [Restauration supérieure] - CastingTime: 1 action - Components: V, S, M (diamond dust worth at least 100 gp, which the spell consumes) - Duration: Instantaneous @@ -3369,7 +3369,7 @@ You imbue a creature you touch with positive energy to undo a debilitating effec [][SpellVO] # Guardian of Faith -- NameVO: [Gardien de la foi] +- AltName: [Gardien de la foi] - CastingTime: 1 action - Components: V - Duration: 8 hours @@ -3390,7 +3390,7 @@ Any creature hostile to you that moves to a space within 10 feet of the guardian [][SpellVO] # Guards and Wards -- NameVO: [Protections et sceaux] +- AltName: [Protections et sceaux] - CastingTime: 10 minutes - 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 @@ -3435,7 +3435,7 @@ You can create a permanently guarded and warded structure by casting this spell [][SpellVO] # Guidance -- NameVO: [Assistance] +- AltName: [Assistance] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -3454,7 +3454,7 @@ You touch one willing creature. Once before the spell ends, the target can roll [][SpellVO] # Guiding Bolt -- NameVO: [Balisage] +- AltName: [Balisage] - CastingTime: 1 action - Components: V, S - Duration: 1 round @@ -3475,7 +3475,7 @@ A flash of light streaks toward a creature of your choice within range. Make a r [][SpellVO] # Gust of Wind -- NameVO: [Bourrasque] +- AltName: [Bourrasque] - CastingTime: 1 action - Components: V, S, M (a legume seed) - Duration: Concentration, up to 1 minute @@ -3500,7 +3500,7 @@ As a bonus action on each of your turns before the spell ends, you can change th [][SpellVO] # Hallow -- NameVO: [Sanctification] +- AltName: [Sanctification] - CastingTime: 24 hours - Components: V, S, M (herbs, oils, and incense worth at least 1,000 gp, which the spell consumes) - Duration: Until dispelled @@ -3543,7 +3543,7 @@ Second, you can bind an extra effect to the area. Choose the effect from the fol [][SpellVO] # Hallucinatory Terrain -- NameVO: [Terrain hallucinatoire] +- AltName: [Terrain hallucinatoire] - CastingTime: 10 minutes - Components: V, S, M (a stone, a twig, and a bit of green plant) - Duration: 24 hours @@ -3564,7 +3564,7 @@ The tactile characteristics of the terrain are unchanged, so creatures entering [][SpellVO] # Harm -- NameVO: [Contamination] +- AltName: [Contamination] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -3583,7 +3583,7 @@ You unleash a virulent disease on a creature that you can see within range. The [][SpellVO] # Haste -- NameVO: [Hâte] +- AltName: [Hâte] - CastingTime: 1 action - Components: V, S, M (a shaving of licorice root) - Duration: Concentration, up to 1 minute @@ -3604,7 +3604,7 @@ When the spell ends, the target can't move or take actions until after its next [][SpellVO] # Heal -- NameVO: [Guérison] +- AltName: [Guérison] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -3625,7 +3625,7 @@ Choose a creature that you can see within range. A surge of positive energy wash [][SpellVO] # Healing Word -- NameVO: [Mot de guérison] +- AltName: [Mot de guérison] - CastingTime: 1 bonus action - Components: V - Duration: Instantaneous @@ -3646,7 +3646,7 @@ A creature of your choice that you can see within range regains hit points equal [][SpellVO] # Heat Metal -- NameVO: [Chauffer le métal] +- AltName: [Chauffer le métal] - CastingTime: 1 action - Components: V, S, M (a piece of iron and a flame) - Duration: Concentration, up to 1 minute @@ -3669,7 +3669,7 @@ If a creature is holding or wearing the object and takes the damage from it, the [][SpellVO] # Hellish Rebuke -- NameVO: [Représailles infernales] +- AltName: [Représailles infernales] - CastingTime: 1 reaction, which you take in response to being damaged by a creature within 60 feet of you that you can see - Components: V, S - Duration: Instantaneous @@ -3690,7 +3690,7 @@ You point your finger, and the creature that damaged you is momentarily surround [][SpellVO] # Heroes' Feast -- NameVO: [Festin des héros] +- AltName: [Festin des héros] - CastingTime: 10 minutes - Components: V, S, M (a gem-encrusted bowl worth at least 1,000 gp, which the spell consumes) - Duration: Instantaneous @@ -3711,7 +3711,7 @@ A creature that partakes of the feast gains several benefits. The creature is cu [][SpellVO] # Heroism -- NameVO: [Héroïsme] +- AltName: [Héroïsme] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -3732,7 +3732,7 @@ A willing creature you touch is imbued with bravery. Until the spell ends, the c [][SpellVO] # Hold Monster -- NameVO: [Immobiliser un monstre] +- AltName: [Immobiliser un monstre] - CastingTime: 1 action - Components: V, S, M (a small, straight piece of iron) - Duration: Concentration, up to 1 minute @@ -3753,7 +3753,7 @@ Choose a creature that you can see within range. The target must succeed on a Wi [][SpellVO] # Hold Person -- NameVO: [Immobiliser un humanoïde] +- AltName: [Immobiliser un humanoïde] - CastingTime: 1 action - Components: V, S, M (a small, straight piece of iron) - Duration: Concentration, up to 1 minute @@ -3774,7 +3774,7 @@ Choose a humanoid that you can see within range. The target must succeed on a Wi [][SpellVO] # Holy Aura -- NameVO: [Aura sacrée] +- AltName: [Aura sacrée] - CastingTime: 1 action - 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 @@ -3793,7 +3793,7 @@ Divine light washes out from you and coalesces in a soft radiance in a 30-foot r [][SpellVO] # Hunter's Mark -- NameVO: [Marque du chasseur] +- AltName: [Marque du chasseur] - CastingTime: 1 bonus action - Components: V - Duration: Concentration, up to 1 hour @@ -3814,7 +3814,7 @@ You choose a creature you can see within range and mystically mark it as your qu [][SpellVO] # Hypnotic Pattern -- NameVO: [Motif hypnotique] +- AltName: [Motif hypnotique] - CastingTime: 1 action - Components: S, M (a glowing stick of incense or a crystal vial filled with phosphorescent material) - Duration: Concentration, up to 1 minute @@ -3833,7 +3833,7 @@ You create a twisting pattern of colors that weaves through the air inside a 30- [][SpellVO] # Ice Storm -- NameVO: [Tempête de grêle] +- AltName: [Tempête de grêle] - CastingTime: 1 action - Components: V, S, M (a pinch of dust and a few drops of water) - Duration: Instantaneous @@ -3856,7 +3856,7 @@ Hailstones turn the storm's area of effect into difficult terrain until the end [][SpellVO] # Identify -- NameVO: [Identification] +- AltName: [Identification] - CastingTime: 1 minute - Components: V, S, M (a pearl worth at least 100 gp and an owl feather) - Duration: Instantaneous @@ -3877,7 +3877,7 @@ If you instead touch a creature throughout the casting, you learn what spells, i [][SpellVO] # Illusory Script -- NameVO: [Texte illusoire] +- AltName: [Texte illusoire] - CastingTime: 1 minute - Components: S, M (a lead-based ink worth at least 10 gp, which the spell consumes) - Duration: 10 days @@ -3902,7 +3902,7 @@ A creature with truesight can read the hidden message. [][SpellVO] # Imprisonment -- NameVO: [Emprisonnement] +- AltName: [Emprisonnement] - CastingTime: 1 minute - 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 @@ -3949,7 +3949,7 @@ You can use a particular special component to create only one prison at a time. [][SpellVO] # Incendiary Cloud -- NameVO: [Nuage incendiaire] +- AltName: [Nuage incendiaire] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -3972,7 +3972,7 @@ The cloud moves 10 feet directly away from you in a direction that you choose at [][SpellVO] # Inflict Wounds -- NameVO: [Blessure] +- AltName: [Blessure] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -3993,7 +3993,7 @@ Make a melee spell attack against a creature you can reach. On a hit, the target [][SpellVO] # Insect Plague -- NameVO: [Fléau d'insectes] +- AltName: [Fléau d'insectes] - CastingTime: 1 action - Components: V, S, M (a few grains of sugar, some kernels of grain, and a smear of fat) - Duration: Concentration, up to 10 minutes @@ -4016,7 +4016,7 @@ When the area appears, each creature in it must make a Constitution saving throw [][SpellVO] # Invisibility -- NameVO: [Invisibilité] +- AltName: [Invisibilité] - CastingTime: 1 action - Components: V, S, M (an eyelash encased in gum arabic) - Duration: Concentration, up to 1 hour @@ -4037,7 +4037,7 @@ A creature you touch becomes invisible until the spell ends. Anything the target [][SpellVO] # Jump -- NameVO: [Saut] +- AltName: [Saut] - CastingTime: 1 action - Components: V, S, M (a grasshopper's hind leg) - Duration: 1 minute @@ -4056,7 +4056,7 @@ You touch a creature. The creature's jump distance is tripled until the spell en [][SpellVO] # Knock -- NameVO: [Déblocage] +- AltName: [Déblocage] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -4081,7 +4081,7 @@ When you cast the spell, a loud knock, audible from as far away as 300 feet, ema [][SpellVO] # Legend Lore -- NameVO: [Légende] +- AltName: [Légende] - CastingTime: 10 minutes - 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 @@ -4102,7 +4102,7 @@ The information you learn is accurate but might be couched in figurative languag [][SpellVO] # Leomund's Secret Chest -- NameVO: [Coffre secret] +- AltName: [Coffre secret] - CastingTime: 1 action - 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 @@ -4125,7 +4125,7 @@ After 60 days, there is a cumulative 5 percent chance per day that the spell's e [][SpellVO] # Leomund's Tiny Hut -- NameVO: [Petite hutte] +- AltName: [Petite hutte] - CastingTime: 1 minute - Components: V, S, M (a small crystal bead) - Duration: 8 hours @@ -4148,7 +4148,7 @@ Until the spell ends, you can command the interior to become dimly lit or dark. [][SpellVO] # Lesser Restoration -- NameVO: [Restauration inférieure] +- AltName: [Restauration inférieure] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -4167,7 +4167,7 @@ You touch a creature and can end either one disease or one condition afflicting [][SpellVO] # Levitate -- NameVO: [Lévitation] +- AltName: [Lévitation] - CastingTime: 1 action - 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 @@ -4190,7 +4190,7 @@ When the spell ends, the target floats gently to the ground if it is still aloft [][SpellVO] # Light -- NameVO: [Lumière] +- AltName: [Lumière] - CastingTime: 1 action - Components: V, M (a firefly or phosphorescent moss) - Duration: 1 hour @@ -4211,7 +4211,7 @@ If you target an object held or worn by a hostile creature, that creature must s [][SpellVO] # Lightning Bolt -- NameVO: [Éclair] +- AltName: [Éclair] - CastingTime: 1 action - Components: V, S, M (a bit of fur and a rod of amber, crystal, or glass) - Duration: Instantaneous @@ -4234,7 +4234,7 @@ The lightning ignites flammable objects in the area that aren't being worn or ca [][SpellVO] # Locate Animals or Plants -- NameVO: [Localiser des animaux ou des plantes] +- AltName: [Localiser des animaux ou des plantes] - CastingTime: 1 action - Components: V, S, M (a bit of fur from a bloodhound) - Duration: Instantaneous @@ -4253,7 +4253,7 @@ Describe or name a specific kind of beast or plant. Concentrating on the voice o [][SpellVO] # Locate Creature -- NameVO: [Localiser une créature] +- AltName: [Localiser une créature] - CastingTime: 1 action - Components: V, S, M (a bit of fur from a bloodhound) - Duration: Concentration, up to 1 hour @@ -4276,7 +4276,7 @@ This spell can't locate a creature if running water at least 10 feet wide blocks [][SpellVO] # Locate Object -- NameVO: [Localiser un objet] +- AltName: [Localiser un objet] - CastingTime: 1 action - Components: V, S, M (a forked twig) - Duration: Concentration, up to 10 minutes @@ -4299,7 +4299,7 @@ This spell can't locate an object if any thickness of lead, even a thin sheet, b [][SpellVO] # Longstrider -- NameVO: [Grande foulée] +- AltName: [Grande foulée] - CastingTime: 1 action - Components: V, S, M (a pinch of dirt) - Duration: 1 hour @@ -4320,7 +4320,7 @@ You touch a creature. The target's speed increases by 10 feet until the spell en [][SpellVO] # Mage Armor -- NameVO: [Armure du mage] +- AltName: [Armure du mage] - CastingTime: 1 action - Components: V, S, M (a piece of cured leather) - Duration: 8 hours @@ -4339,7 +4339,7 @@ You touch a willing creature who isn't wearing armor, and a protective magical f [][SpellVO] # Mage Hand -- NameVO: [Main du mage] +- AltName: [Main du mage] - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -4362,7 +4362,7 @@ The hand can't attack, activate magic items, or carry more than 10 pounds. [][SpellVO] # Magic Circle -- NameVO: [Cercle magique] +- AltName: [Cercle magique] - CastingTime: 1 minute - Components: V, S, M (holy water or powdered silver and iron worth at least 100 gp, which the spell consumes) - Duration: 1 hour @@ -4393,7 +4393,7 @@ When you cast this spell, you can elect to cause its magic to operate in the rev [][SpellVO] # Magic Jar -- NameVO: [Possession] +- AltName: [Possession] - CastingTime: 1 minute - Components: V, S, M (a gem, crystal, reliquary, or some other ornamental container worth at least 500 gp) - Duration: Until dispelled @@ -4424,7 +4424,7 @@ When the spell ends, the container is destroyed. [][SpellVO] # Magic Missile -- NameVO: [Projectile magique] +- AltName: [Projectile magique] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -4445,7 +4445,7 @@ You create three glowing darts of magical force. Each dart hits a creature of yo [][SpellVO] # Magic Mouth -- NameVO: [Bouche magique] +- AltName: [Bouche magique] - CastingTime: 1 minute - Components: V, S, M (a small bit of honeycomb and jade dust worth at least 10 gp, which the spell consumes) - Duration: Until dispelled @@ -4468,7 +4468,7 @@ The triggering circumstance can be as general or as detailed as you like, though [][SpellVO] # Magic Weapon -- NameVO: [Arme magique] +- AltName: [Arme magique] - CastingTime: 1 bonus action - Components: V, S - Duration: Concentration, up to 1 hour @@ -4489,7 +4489,7 @@ You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic [][SpellVO] # Major Image -- NameVO: [Image majeure] +- AltName: [Image majeure] - CastingTime: 1 action - Components: V, S, M (a bit of fleece) - Duration: Concentration, up to 10 minutes @@ -4514,7 +4514,7 @@ Physical interaction with the image reveals it to be an illusion, because things [][SpellVO] # Mass Cure Wounds -- NameVO: [Soin des blessures de groupe] +- AltName: [Soin des blessures de groupe] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -4535,7 +4535,7 @@ A wave of healing energy washes out from a point of your choice within range. Ch [][SpellVO] # Mass Heal -- NameVO: [Guérison de groupe] +- AltName: [Guérison de groupe] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -4554,7 +4554,7 @@ A flood of healing energy flows from you into injured creatures around you. You [][SpellVO] # Mass Healing Word -- NameVO: [Mot de guérison de groupe] +- AltName: [Mot de guérison de groupe] - CastingTime: 1 bonus action - Components: V - Duration: Instantaneous @@ -4575,7 +4575,7 @@ As you call out words of restoration, up to six creatures of your choice that yo [][SpellVO] # Mass Suggestion -- NameVO: [Suggestion de groupe] +- AltName: [Suggestion de groupe] - CastingTime: 1 action - Components: V, M (a snake's tongue and either a bit of honeycomb or a drop of sweet oil) - Duration: 24 hours @@ -4602,7 +4602,7 @@ If you or any of your companions damage a creature affected by this spell, the s [][SpellVO] # Maze -- NameVO: [Labyrinthe] +- AltName: [Labyrinthe] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -4625,7 +4625,7 @@ When the spell ends, the target reappears in the space it left or, if that space [][SpellVO] # Meld into Stone -- NameVO: [Fusion dans la pierre] +- AltName: [Fusion dans la pierre] - CastingTime: 1 action - Components: V, S - Duration: 8 hours @@ -4648,7 +4648,7 @@ Minor physical damage to the stone doesn't harm you, but its partial destruction [][SpellVO] # Melf's Acid Arrow -- NameVO: [Flèche acide] +- AltName: [Flèche acide] - CastingTime: 1 action - Components: V, S, M (powdered rhubarb leaf and an adder's stomach) - Duration: Instantaneous @@ -4669,7 +4669,7 @@ A shimmering green arrow streaks toward a target within range and bursts in a sp [][SpellVO] # Mending -- NameVO: [Réparation] +- AltName: [Réparation] - CastingTime: 1 minute - Components: V, S, M (two lodestones) - Duration: Instantaneous @@ -4688,7 +4688,7 @@ This spell repairs a single break or tear in an object you touch, such as a brok [][SpellVO] # Message -- NameVO: [Message] +- AltName: [Message] - CastingTime: 1 action - Components: V, S, M (a short piece of copper wire) - Duration: 1 round @@ -4709,7 +4709,7 @@ You can cast this spell through solid objects if you re familiar with the target [][SpellVO] # Meteor Swarm -- NameVO: [Nuée de météores] +- AltName: [Nuée de météores] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -4730,7 +4730,7 @@ The spell damages objects in the area and ignites flammable objects that aren't [][SpellVO] # Mind Blank -- NameVO: [Esprit impénétrable] +- AltName: [Esprit impénétrable] - CastingTime: 1 action - Components: V, S - Duration: 24 hours @@ -4749,7 +4749,7 @@ Until the spell ends, one willing creature you touch is immune to psychic damage [][SpellVO] # Minor Illusion -- NameVO: [Illusion mineure] +- AltName: [Illusion mineure] - CastingTime: 1 action - Components: S, M (a bit of fleece) - Duration: 1 minute @@ -4774,7 +4774,7 @@ If a creature uses its action to examine the sound or image, the creature can de [][SpellVO] # Mirage Arcane -- NameVO: [Mirage] +- AltName: [Mirage] - CastingTime: 10 minutes - Components: V, S - Duration: 10 days @@ -4799,7 +4799,7 @@ Creatures with truesight can see through the illusion to the terrain's true form [][SpellVO] # Mirror Image -- NameVO: [Image miroir] +- AltName: [Image miroir] - CastingTime: 1 action - Components: V, S - Duration: 1 minute @@ -4826,7 +4826,7 @@ A creature is unaffected by this spell if it can't see, if it relies on senses o [][SpellVO] # Mislead -- NameVO: [Tromperie] +- AltName: [Tromperie] - CastingTime: 1 action - Components: S - Duration: Concentration, up to 1 hour @@ -4849,7 +4849,7 @@ You can see through its eyes and hear through its ears as if you were located wh [][SpellVO] # Misty Step -- NameVO: [Pas brumeux] +- AltName: [Pas brumeux] - CastingTime: 1 bonus action - Components: V - Duration: Instantaneous @@ -4868,7 +4868,7 @@ Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied [][SpellVO] # Modify Memory -- NameVO: [Modification de mémoire] +- AltName: [Modification de mémoire] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -4897,7 +4897,7 @@ A _[remove curse]_ or _[greater restoration]_ spell cast on the target restores [][SpellVO] # Moonbeam -- NameVO: [Rayon de lune] +- AltName: [Rayon de lune] - CastingTime: 1 action - Components: V, S, M (several seeds of any moonseed plant and a piece of opalescent feldspar) - Duration: Concentration, up to 1 minute @@ -4924,7 +4924,7 @@ On each of your turns after you cast this spell, you can use an action to move t [][SpellVO] # Mordenkainen's Faithful Hound -- NameVO: [Chien de garde] +- AltName: [Chien de garde] - CastingTime: 1 action - Components: V, S, M (a tiny silver whistle, a piece of bone, and a thread) - Duration: 8 hours @@ -4947,7 +4947,7 @@ At the start of each of your turns, the hound attempts to bite one creature with [][SpellVO] # Mordenkainen's Magnificent Mansion -- NameVO: [Manoir somptueux] +- AltName: [Manoir somptueux] - CastingTime: 1 minute - 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 @@ -4970,7 +4970,7 @@ You can create any floor plan you like, but the space can't exceed 50 cubes, eac [][SpellVO] # Mordenkainen's Private Sanctum -- NameVO: [Sanctuaire privé] +- AltName: [Sanctuaire privé] - CastingTime: 10 minutes - 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 @@ -5007,7 +5007,7 @@ Casting this spell on the same spot every day for a year makes this effect perma [][SpellVO] # Mordenkainen's Sword -- NameVO: [Épée magique] +- AltName: [Épée magique] - CastingTime: 1 action - 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 @@ -5028,7 +5028,7 @@ When the sword appears, you make a melee spell attack against a target of your c [][SpellVO] # Move Earth -- NameVO: [Déplacer la terre] +- AltName: [Déplacer la terre] - CastingTime: 1 action - 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 @@ -5055,7 +5055,7 @@ Similarly, this spell doesn't directly affect plant growth. The moved earth carr [][SpellVO] # Nondetection -- NameVO: [Non-détection] +- AltName: [Non-détection] - CastingTime: 1 action - Components: V, S, M (a pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes) - Duration: 8 hours @@ -5074,7 +5074,7 @@ For the duration, you hide a target that you touch from divination magic. The ta [][SpellVO] # Nystul's Magic Aura -- NameVO: [Aura magique de l'arcaniste] +- AltName: [Aura magique de l'arcaniste] - CastingTime: 1 action - Components: V, S, M (a small square of silk) - Duration: 24 hours @@ -5099,7 +5099,7 @@ When you cast the spell, choose one or both of the following effects. The effect [][SpellVO] # Otiluke's Freezing Sphere -- NameVO: [Sphère glacée] +- AltName: [Sphère glacée] - CastingTime: 1 action - Components: V, S, M (a small crystal sphere - Duration: Instantaneous @@ -5124,7 +5124,7 @@ You can refrain from firing the globe after completing the spell, if you wish. A [][SpellVO] # Otiluke's Resilient Sphere -- NameVO: [Sphère résiliente] +- AltName: [Sphère résiliente] - CastingTime: 1 action - Components: V, S, M (a hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic) - Duration: Concentration, up to 1 minute @@ -5149,7 +5149,7 @@ A _[disintegrate]_ spell targeting the globe destroys it without harming anythin [][SpellVO] # Otto's Irresistible Dance -- NameVO: [Danse irrésistible] +- AltName: [Danse irrésistible] - CastingTime: 1 action - Components: V - Duration: Concentration, up to 1 minute @@ -5170,7 +5170,7 @@ A dancing creature must use all its movement to dance without leaving its space [][SpellVO] # Pass without Trace -- NameVO: [Passage sans trace] +- AltName: [Passage sans trace] - CastingTime: 1 action - Components: V, S, M (ashes from a burned leaf of mistletoe and a sprig of spruce) - Duration: Concentration, up to 1 hour @@ -5189,7 +5189,7 @@ A veil of shadows and silence radiates from you, masking you and your companions [][SpellVO] # Passwall -- NameVO: [Passe-muraille] +- AltName: [Passe-muraille] - CastingTime: 1 action - Components: V, S, M (a pinch of sesame seeds) - Duration: 1 hour @@ -5210,7 +5210,7 @@ When the opening disappears, any creatures or objects still in the passage creat [][SpellVO] # Phantasmal Killer -- NameVO: [Assassin imaginaire] +- AltName: [Assassin imaginaire] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -5231,7 +5231,7 @@ You tap into the nightmares of a creature you can see within range and create an [][SpellVO] # Phantom Steed -- NameVO: [Monture fantôme] +- AltName: [Monture fantôme] - CastingTime: 1 minute - Components: V, S - Duration: 1 hour @@ -5252,7 +5252,7 @@ For the duration, you or a creature you choose can ride the steed. The creature [][SpellVO] # Planar Ally -- NameVO: [Allié planaire] +- AltName: [Allié planaire] - CastingTime: 10 minutes - Components: V, S - Duration: Instantaneous @@ -5283,7 +5283,7 @@ A creature enlisted to join your group counts as a member of it, receiving a ful [][SpellVO] # Planar Binding -- NameVO: [Entrave planaire] +- AltName: [Entrave planaire] - CastingTime: 1 hour - Components: V, S, M (a jewel worth at least 1,000 gp, which the spell consumes) - Duration: 24 hours @@ -5306,7 +5306,7 @@ A bound creature must follow your instructions to the best of its ability. You m [][SpellVO] # Plane Shift -- NameVO: [Changement de plan] +- AltName: [Changement de plan] - CastingTime: 1 action - Components: V, S, M (a forked, metal rod worth at least 250 gp, attuned to a particular plane of existence) - Duration: Instantaneous @@ -5329,7 +5329,7 @@ You can use this spell to banish an unwilling creature to another plane. Choose [][SpellVO] # Plant Growth -- NameVO: [Croissance végétale] +- AltName: [Croissance végétale] - CastingTime: 1 action or 8 hours - Components: V, S - Duration: Instantaneous @@ -5354,7 +5354,7 @@ If you cast this spell over 8 hours, you enrich the land. All plants in a half-m [][SpellVO] # Poison Spray -- NameVO: [Bouffée de poison] +- AltName: [Bouffée de poison] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -5375,7 +5375,7 @@ This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th leve [][SpellVO] # Polymorph -- NameVO: [Métamorphose] +- AltName: [Métamorphose] - CastingTime: 1 action - Components: V, S, M (a caterpillar cocoon) - Duration: Concentration, up to 1 hour @@ -5402,7 +5402,7 @@ The target's gear melds into the new form. The creature can't activate, use, wie [][SpellVO] # Power Word Kill -- NameVO: [Mot de pouvoir mortel] +- AltName: [Mot de pouvoir mortel] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -5421,7 +5421,7 @@ You utter a word of power that can compel one creature you can see within range [][SpellVO] # Power Word Stun -- NameVO: [Mot de pouvoir étourdissant] +- AltName: [Mot de pouvoir étourdissant] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -5442,7 +5442,7 @@ The stunned target must make a Constitution saving throw at the end of each of i [][SpellVO] # Prayer of Healing -- NameVO: [Prière de soins] +- AltName: [Prière de soins] - CastingTime: 10 minutes - Components: V - Duration: Instantaneous @@ -5463,7 +5463,7 @@ Up to six creatures of your choice that you can see within range each regain hit [][SpellVO] # Prestidigitation -- NameVO: [Prestidigitation] +- AltName: [Prestidigitation] - CastingTime: 1 action - Components: V, S - Duration: Up to 1 hour @@ -5496,7 +5496,7 @@ If you cast this spell multiple times, you can have up to three of its non-insta [][SpellVO] # Prismatic Spray -- NameVO: [Embruns prismatiques] +- AltName: [Embruns prismatiques] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -5531,7 +5531,7 @@ Eight multicolored rays of light flash from your hand. Each ray is a different c [][SpellVO] # Prismatic Wall -- NameVO: [Mur prismatique] +- AltName: [Mur prismatique] - CastingTime: 1 action - Components: V, S - Duration: 10 minutes @@ -5572,7 +5572,7 @@ While this layer is in place, spells can't be cast through the wall. The layer i [][SpellVO] # Produce Flame -- NameVO: [Produire une flamme] +- AltName: [Produire une flamme] - CastingTime: 1 action - Components: V, S - Duration: 10 minutes @@ -5595,7 +5595,7 @@ This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level [][SpellVO] # Programmed Illusion -- NameVO: [Illusion programmée] +- AltName: [Illusion programmée] - CastingTime: 1 action - Components: V, S, M (a bit of fleece and jade dust worth at least 25 gp) - Duration: Until dispelled @@ -5620,7 +5620,7 @@ Physical interaction with the image reveals it to be an illusion, because things [][SpellVO] # Project Image -- NameVO: [Image projetée] +- AltName: [Image projetée] - CastingTime: 1 action - Components: V, S, M (a small replica of you made from materials worth at least 5 gp) - Duration: Concentration, up to 1 day @@ -5645,7 +5645,7 @@ Physical interaction with the image reveals it to be an illusion, because things [][SpellVO] # Protection from Energy -- NameVO: [Protection contre les énergies] +- AltName: [Protection contre les énergies] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 hour @@ -5664,7 +5664,7 @@ For the duration, the willing creature you touch has resistance to one damage ty [][SpellVO] # Protection from Evil and Good -- NameVO: [Protection contre le mal et le bien] +- AltName: [Protection contre le mal et le bien] - CastingTime: 1 action - Components: V, S, M (holy water or powdered silver and iron, which the spell consumes) - Duration: Concentration, up to 10 minutes @@ -5685,7 +5685,7 @@ The protection grants several benefits. Creatures of those types have disadvanta [][SpellVO] # Protection from Poison -- NameVO: [Protection contre le poison] +- AltName: [Protection contre le poison] - CastingTime: 1 action - Components: V, S - Duration: 1 hour @@ -5706,7 +5706,7 @@ For the duration, the target has advantage on saving throws against being poison [][SpellVO] # Purify Food and Drink -- NameVO: [Purification de la nourriture et de l'eau] +- AltName: [Purification de la nourriture et de l'eau] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -5725,7 +5725,7 @@ All nonmagical food and drink within a 5-foot-radius sphere centered on a point [][SpellVO] # Raise Dead -- NameVO: [Rappel à la vie] +- AltName: [Rappel à la vie] - CastingTime: 1 hour - Components: V, S, M (a diamond worth at least 500 gp, which the spell consumes) - Duration: Instantaneous @@ -5750,7 +5750,7 @@ Coming back from the dead is an ordeal. The target takes a -4 penalty to all att [][SpellVO] # Rary's Telepathic Bond -- NameVO: [Lien télépathique] +- AltName: [Lien télépathique] - CastingTime: 1 action - Components: V, S, M (pieces of eggshell from two different kinds of creatures) - Duration: 1 hour @@ -5771,7 +5771,7 @@ Until the spell ends, the targets can communicate telepathically through the bon [][SpellVO] # Ray of Enfeeblement -- NameVO: [Rayon affaiblissant] +- AltName: [Rayon affaiblissant] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -5792,7 +5792,7 @@ At the end of each of the target's turns, it can make a Constitution saving thro [][SpellVO] # Ray of Frost -- NameVO: [Rayon de givre] +- AltName: [Rayon de givre] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -5813,7 +5813,7 @@ The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level ( [][SpellVO] # Regenerate -- NameVO: [Régénération] +- AltName: [Régénération] - CastingTime: 1 minute - Components: V, S, M (a prayer wheel and holy water) - Duration: 1 hour @@ -5834,7 +5834,7 @@ The target's severed body members (fingers, legs, tails, and so on), if any, are [][SpellVO] # Reincarnate -- NameVO: [Réincarnation] +- AltName: [Réincarnation] - CastingTime: 1 hour - Components: V, S, M (rare oils and unguents worth at least 1,000 gp, which the spell consumes) - Duration: Instantaneous @@ -5876,7 +5876,7 @@ The reincarnated creature recalls its former life and experiences. It retains th [][SpellVO] # Remove Curse -- NameVO: [Lever une malédiction] +- AltName: [Lever une malédiction] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -5895,7 +5895,7 @@ At your touch, all curses affecting one creature or object end. If the object is [][SpellVO] # Resistance -- NameVO: [Résistance] +- AltName: [Résistance] - CastingTime: 1 action - Components: V, S, M (a miniature cloak) - Duration: Concentration, up to 1 minute @@ -5914,7 +5914,7 @@ You touch one willing creature. Once before the spell ends, the target can roll [][SpellVO] # Resurrection -- NameVO: [Résurrection] +- AltName: [Résurrection] - CastingTime: 1 hour - Components: V, S, M (a diamond worth at least 1,000 gp, which the spell consumes) - Duration: Instantaneous @@ -5941,7 +5941,7 @@ Casting this spell to restore life to a creature that has been dead for one year [][SpellVO] # Reverse Gravity -- NameVO: [Inversion de la gravité] +- AltName: [Inversion de la gravité] - CastingTime: 1 action - Components: V, S, M (a lodestone and iron filings) - Duration: Concentration, up to 1 minute @@ -5964,7 +5964,7 @@ At the end of the duration, affected objects and creatures fall back down. [][SpellVO] # Revivify -- NameVO: [Revigorer] +- AltName: [Revigorer] - CastingTime: 1 action - Components: V, S, M (diamonds worth 300 gp, which the spell consumes) - Duration: Instantaneous @@ -5983,7 +5983,7 @@ You touch a creature that has died within the last minute. That creature returns [][SpellVO] # Rope Trick -- NameVO: [Corde enchantée] +- AltName: [Corde enchantée] - CastingTime: 1 action - Components: V, S, M (powdered corn extract and a twisted loop of parchment) - Duration: 1 hour @@ -6008,7 +6008,7 @@ Anything inside the extradimensional space drops out when the spell ends. [][SpellVO] # Sacred Flame -- NameVO: [Flamme sacrée] +- AltName: [Flamme sacrée] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -6029,7 +6029,7 @@ The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level ( [][SpellVO] # Sanctuary -- NameVO: [Sanctuaire] +- AltName: [Sanctuaire] - CastingTime: 1 bonus action - Components: V, S, M (a small silver mirror) - Duration: 1 minute @@ -6050,7 +6050,7 @@ If the warded creature makes an attack or casts a spell that affects an enemy cr [][SpellVO] # Scorching Ray -- NameVO: [Rayon ardent] +- AltName: [Rayon ardent] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -6073,7 +6073,7 @@ Make a ranged spell attack for each ray. On a hit, the target takes 2d6 fire dam [][SpellVO] # Scrying -- NameVO: [Scrutation] +- AltName: [Scrutation] - CastingTime: 10 minutes - 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 @@ -6106,7 +6106,7 @@ On a successful save, the target isn't affected, and you can't use this spell ag [][SpellVO] # See Invisibility -- NameVO: [Voir l'invisible] +- AltName: [Voir l'invisible] - CastingTime: 1 action - Components: V, S, M (a pinch of talc and a small sprinkling of powdered silver) - Duration: 1 hour @@ -6125,7 +6125,7 @@ For the duration, you see invisible creatures and objects as if they were visibl [][SpellVO] # Seeming -- NameVO: [Apparence trompeuse] +- AltName: [Apparence trompeuse] - CastingTime: 1 action - Components: V, S - Duration: 8 hours @@ -6150,7 +6150,7 @@ A creature can use its action to inspect a target and make an Intelligence (Inve [][SpellVO] # Sending -- NameVO: [Envoi de message] +- AltName: [Envoi de message] - CastingTime: 1 action - Components: V, S, M (a short piece of fine copper wire) - Duration: 1 round @@ -6171,7 +6171,7 @@ You can send the message across any distance and even to other planes of existen [][SpellVO] # Sequester -- NameVO: [Séquestration] +- AltName: [Séquestration] - CastingTime: 1 action - 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 @@ -6194,7 +6194,7 @@ You can set a condition for the spell to end early. The condition can be anythin [][SpellVO] # Shapechange -- NameVO: [Changement de forme] +- AltName: [Changement de forme] - CastingTime: 1 action - 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 @@ -6223,7 +6223,7 @@ During this spell's duration, you can use your action to assume a different form [][SpellVO] # Shatter -- NameVO: [Briser] +- AltName: [Briser] - CastingTime: 1 action - Components: V, S, M (a chip of mica) - Duration: Instantaneous @@ -6246,7 +6246,7 @@ A nonmagical object that isn't being worn or carried also takes the damage if it [][SpellVO] # Shield -- NameVO: [Bouclier] +- AltName: [Bouclier] - CastingTime: 1 reaction, which you take when you are hit by an attack or targeted by the magic missile spell - Components: V, S - Duration: 1 round @@ -6265,7 +6265,7 @@ An invisible barrier of magical force appears and protects you. Until the start [][SpellVO] # Shield of Faith -- NameVO: [Bouclier de la foi] +- AltName: [Bouclier de la foi] - CastingTime: 1 bonus action - Components: V, S, M (a small parchment with a bit of holy text written on it) - Duration: Concentration, up to 10 minutes @@ -6284,7 +6284,7 @@ A shimmering field appears and surrounds a creature of your choice within range, [][SpellVO] # Shillelagh -- NameVO: [Gourdin magique] +- AltName: [Gourdin magique] - CastingTime: 1 bonus action - Components: V, S, M (mistletoe, a shamrock leaf, and a club or quarterstaff) - Duration: 1 minute @@ -6303,7 +6303,7 @@ The wood of a club or quarterstaff you are holding is imbued with nature's power [][SpellVO] # Shocking Grasp -- NameVO: [Poigne électrique] +- AltName: [Poigne électrique] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -6324,7 +6324,7 @@ The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level ( [][SpellVO] # Silence -- NameVO: [Silence] +- AltName: [Silence] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -6345,7 +6345,7 @@ Casting a spell that includes a verbal component is impossible there. [][SpellVO] # Silent Image -- NameVO: [Image silencieuse] +- AltName: [Image silencieuse] - CastingTime: 1 action - Components: V, S, M (a bit of fleece) - Duration: Concentration, up to 10 minutes @@ -6368,7 +6368,7 @@ Physical interaction with the image reveals it to be an illusion, because things [][SpellVO] # Simulacrum -- NameVO: [Simulacre] +- AltName: [Simulacre] - CastingTime: 12 hours - 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 @@ -6393,7 +6393,7 @@ If you cast this spell again, any currently active duplicates you created with t [][SpellVO] # Sleep -- NameVO: [Sommeil] +- AltName: [Sommeil] - CastingTime: 1 action - Components: V, S, M (a pinch of fine sand, rose petals, or a cricket) - Duration: 1 minute @@ -6418,7 +6418,7 @@ Undead and creatures immune to being charmed aren't affected by this spell. [][SpellVO] # Sleet Storm -- NameVO: [Tempête de neige] +- AltName: [Tempête de neige] - CastingTime: 1 action - Components: V, S, M (a pinch of dust and a few drops of water) - Duration: Concentration, up to 1 minute @@ -6441,7 +6441,7 @@ If a creature is concentrating in the spell's area, the creature must make a suc [][SpellVO] # Slow -- NameVO: [Lenteur] +- AltName: [Lenteur] - CastingTime: 1 action - Components: V, S, M (a drop of molasses) - Duration: Concentration, up to 1 minute @@ -6466,7 +6466,7 @@ A creature affected by this spell makes another Wisdom saving throw at the end o [][SpellVO] # Spare the Dying -- NameVO: [Épargner les mourants] +- AltName: [Épargner les mourants] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -6485,7 +6485,7 @@ You touch a living creature that has 0 hit points. The creature becomes stable. [][SpellVO] # Speak with Animals -- NameVO: [Communication avec les animaux] +- AltName: [Communication avec les animaux] - CastingTime: 1 action - Components: V, S - Duration: 10 minutes @@ -6504,7 +6504,7 @@ You gain the ability to comprehend and verbally communicate with beasts for the [][SpellVO] # Speak with Dead -- NameVO: [Communication avec les morts] +- AltName: [Communication avec les morts] - CastingTime: 1 action - Components: V, S, M (burning incense) - Duration: 10 minutes @@ -6525,7 +6525,7 @@ Until the spell ends, you can ask the corpse up to five questions. The corpse kn [][SpellVO] # Speak with Plants -- NameVO: [Communication avec les plantes] +- AltName: [Communication avec les plantes] - CastingTime: 1 action - Components: V, S - Duration: 10 minutes @@ -6552,7 +6552,7 @@ This spell can cause the plants created by the _[entangle]_ spell to release a r [][SpellVO] # Spider Climb -- NameVO: [Pattes d'araignée] +- AltName: [Pattes d'araignée] - CastingTime: 1 action - Components: V, S, M (a drop of bitumen and a spider) - Duration: Concentration, up to 1 hour @@ -6571,7 +6571,7 @@ Until the spell ends, one willing creature you touch gains the ability to move u [][SpellVO] # Spike Growth -- NameVO: [Croissance d'épines] +- AltName: [Croissance d'épines] - CastingTime: 1 action - Components: V, S, M (seven sharp thorns or seven small twigs, each sharpened to a point) - Duration: Concentration, up to 10 minutes @@ -6592,7 +6592,7 @@ The transformation of the ground is camouflaged to look natural. Any creature th [][SpellVO] # Spirit Guardians -- NameVO: [Esprits gardiens] +- AltName: [Esprits gardiens] - CastingTime: 1 action - Components: V, S, M (a holy symbol) - Duration: Concentration, up to 10 minutes @@ -6615,7 +6615,7 @@ When you cast this spell, you can designate any number of creatures you can see [][SpellVO] # Spiritual Weapon -- NameVO: [Arme spirituelle] +- AltName: [Arme spirituelle] - CastingTime: 1 bonus action - Components: V, S - Duration: 1 minute @@ -6640,7 +6640,7 @@ The weapon can take whatever form you choose. Clerics of deities who are associa [][SpellVO] # Stinking Cloud -- NameVO: [Nuage puant] +- AltName: [Nuage puant] - CastingTime: 1 action - Components: V, S, M (a rotten egg or several skunk cabbage leaves) - Duration: Concentration, up to 1 minute @@ -6663,7 +6663,7 @@ A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. [][SpellVO] # Stone Shape -- NameVO: [Façonnage de la pierre] +- AltName: [Façonnage de la pierre] - CastingTime: 1 action - Components: V, S, M (soft clay, which must be worked into roughly the desired shape of the stone object) - Duration: Instantaneous @@ -6682,7 +6682,7 @@ You touch a stone object of Medium size or smaller or a section of stone no more [][SpellVO] # Stoneskin -- NameVO: [Peau de pierre] +- AltName: [Peau de pierre] - CastingTime: 1 action - Components: V, S, M (diamond dust worth 100 gp, which the spell consumes) - Duration: Concentration, up to 1 hour @@ -6701,7 +6701,7 @@ This spell turns the flesh of a willing creature you touch as hard as stone. Unt [][SpellVO] # Storm of Vengeance -- NameVO: [Tempête vengeresse] +- AltName: [Tempête vengeresse] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -6730,7 +6730,7 @@ Each round you maintain concentration on this spell, the storm produces addition [][SpellVO] # Suggestion -- NameVO: [Suggestion] +- AltName: [Suggestion] - CastingTime: 1 action - 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 @@ -6755,7 +6755,7 @@ If you or any of your companions damage the target, the spell ends. [][SpellVO] # Sunbeam -- NameVO: [Rayon de soleil] +- AltName: [Rayon de soleil] - CastingTime: 1 action - Components: V, S, M (a magnifying glass) - Duration: Concentration, up to 1 minute @@ -6778,7 +6778,7 @@ For the duration, a mote of brilliant radiance shines in your hand. It sheds bri [][SpellVO] # Sunburst -- NameVO: [Éclat du soleil] +- AltName: [Éclat du soleil] - CastingTime: 1 action - Components: V, S, M (fire and a piece of sunstone) - Duration: Instantaneous @@ -6801,7 +6801,7 @@ This spell dispels any darkness in its area that was created by a spell. [][SpellVO] # Symbol -- NameVO: [Symbole] +- AltName: [Symbole] - CastingTime: 1 minute - 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 @@ -6844,7 +6844,7 @@ When you inscribe the glyph, choose one of the options below for its effect. Onc [][SpellVO] # Tasha's Hideous Laughter -- NameVO: [Fou rire] +- AltName: [Fou rire] - CastingTime: 1 action - Components: V, S, M (tiny tarts and a feather that is waved in the air) - Duration: Concentration, up to 1 minute @@ -6865,7 +6865,7 @@ At the end of each of its turns, and each time it takes damage, the target can m [][SpellVO] # Telekinesis -- NameVO: [Télékinésie] +- AltName: [Télékinésie] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 10 minutes @@ -6890,7 +6890,7 @@ You can exert fine control on objects with your telekinetic grip, such as manipu [][SpellVO] # Teleport -- NameVO: [Téléportation] +- AltName: [Téléportation] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -6943,7 +6943,7 @@ The destination you choose must be known to you, and it must be on the same plan [][SpellVO] # Teleportation Circle -- NameVO: [Cercle de téléportation] +- AltName: [Cercle de téléportation] - CastingTime: 1 minute - Components: V, M (rare chalks and inks infused with precious gems with 50 gp, which the spell consumes) - Duration: 1 round @@ -6966,7 +6966,7 @@ You can create a permanent teleportation circle by casting this spell in the sam [][SpellVO] # Tenser's Floating Disk -- NameVO: [Disque flottant] +- AltName: [Disque flottant] - CastingTime: 1 action - Components: V, S, M (a drop of mercury) - Duration: 1 hour @@ -6989,7 +6989,7 @@ If you move more than 100 feet from the disk (typically because it can't move ar [][SpellVO] # Thaumaturgy -- NameVO: [Thaumaturgie] +- AltName: [Thaumaturgie] - CastingTime: 1 action - Components: V - Duration: Up to 1 minute @@ -7022,7 +7022,7 @@ If you cast this spell multiple times, you can have up to three of its 1-minute [][SpellVO] # Thunderwave -- NameVO: [Vague tonnante] +- AltName: [Vague tonnante] - CastingTime: 1 action - Components: V, S - Duration: Instantaneous @@ -7045,7 +7045,7 @@ In addition, unsecured objects that are completely within the area of effect are [][SpellVO] # Time Stop -- NameVO: [Arrêt du temps] +- AltName: [Arrêt du temps] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -7066,7 +7066,7 @@ This spell ends if one of the actions you use during this period, or any effects [][SpellVO] # Tongues -- NameVO: [Langues] +- AltName: [Langues] - CastingTime: 1 action - Components: V, M (a small clay model of a ziggurat) - Duration: 1 hour @@ -7085,7 +7085,7 @@ This spell grants the creature you touch the ability to understand any spoken la [][SpellVO] # Transport via Plants -- NameVO: [Transport végétal] +- AltName: [Transport végétal] - CastingTime: 1 action - Components: V, S - Duration: 1 round @@ -7104,7 +7104,7 @@ This spell creates a magical link between a Large or larger inanimate plant with [][SpellVO] # Tree Stride -- NameVO: [Passage par les arbres] +- AltName: [Passage par les arbres] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -7125,7 +7125,7 @@ You can use this transportation ability once per round for the duration. You mus [][SpellVO] # True Polymorph -- NameVO: [Métamorphose suprême] +- AltName: [Métamorphose suprême] - CastingTime: 1 action - Components: V, S, M (a drop of mercury, a dollop of gum arabic, and a wisp of smoke) - Duration: Concentration, up to 1 hour @@ -7160,7 +7160,7 @@ If the spell becomes permanent, you no longer control the creature. It might rem [][SpellVO] # True Resurrection -- NameVO: [Résurrection suprême] +- AltName: [Résurrection suprême] - CastingTime: 1 hour - Components: V, S, M (a sprinkle of holy water and diamonds worth at least 25,000 gp, which the spell consumes) - Duration: Instantaneous @@ -7183,7 +7183,7 @@ The spell can even provide a new body if the original no longer exists, in which [][SpellVO] # True Seeing -- NameVO: [Vision suprême] +- AltName: [Vision suprême] - CastingTime: 1 action - 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 @@ -7202,7 +7202,7 @@ This spell gives the willing creature you touch the ability to see things as the [][SpellVO] # True Strike -- NameVO: [Viser juste] +- AltName: [Viser juste] - CastingTime: 1 action - Components: S - Duration: Concentration, up to 1 round @@ -7221,7 +7221,7 @@ You extend your hand and point a finger at a target in range. Your magic grants [][SpellVO] # Unseen Servant -- NameVO: [Serviteur invisible] +- AltName: [Serviteur invisible] - CastingTime: 1 action - Components: V, S, M (a piece of string and a bit of wood) - Duration: 1 hour @@ -7244,7 +7244,7 @@ If you command the servant to perform a task that would move it more than 60 fee [][SpellVO] # Vampiric Touch -- NameVO: [Caresse du vampire] +- AltName: [Caresse du vampire] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -7265,7 +7265,7 @@ The touch of your shadow-wreathed hand can siphon life force from others to heal [][SpellVO] # Vicious Mockery -- NameVO: [Moquerie cruelle] +- AltName: [Moquerie cruelle] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -7286,7 +7286,7 @@ This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level [][SpellVO] # Wall of Fire -- NameVO: [Mur de feu] +- AltName: [Mur de feu] - CastingTime: 1 action - Components: V, S, M (a small piece of phosphorus) - Duration: Concentration, up to 1 minute @@ -7313,7 +7313,7 @@ The other side of the wall deals no damage. [][SpellVO] # Wall of Force -- NameVO: [Mur de force] +- AltName: [Mur de force] - CastingTime: 1 action - Components: V, S, M (a pinch of powder made by crushing a clear gemstone) - Duration: Concentration, up to 10 minutes @@ -7334,7 +7334,7 @@ Nothing can physically pass through the wall. It is immune to all damage and can [][SpellVO] # Wall of Ice -- NameVO: [Mur de glace] +- AltName: [Mur de glace] - CastingTime: 1 action - Components: V, S, M (a small piece of quartz) - Duration: Concentration, up to 10 minutes @@ -7359,7 +7359,7 @@ The wall is an object that can be damaged and thus breached. It has AC 12 and 30 [][SpellVO] # Wall of Stone -- NameVO: [Mur de pierre] +- AltName: [Mur de pierre] - CastingTime: 1 action - Components: V, S, M (a small block of granite) - Duration: Concentration, up to 10 minutes @@ -7388,7 +7388,7 @@ If you maintain your concentration on this spell for its whole duration, the wal [][SpellVO] # Wall of Thorns -- NameVO: [Mur d'épines] +- AltName: [Mur d'épines] - CastingTime: 1 action - Components: V, S, M (a handful of thorns) - Duration: Concentration, up to 10 minutes @@ -7413,7 +7413,7 @@ A creature can move through the wall, albeit slowly and painfully. For every 1 f [][SpellVO] # Warding Bond -- NameVO: [Lien de protection] +- AltName: [Lien de protection] - CastingTime: 1 action - 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 @@ -7434,7 +7434,7 @@ The spell ends if you drop to 0 hit points or if you and the target become separ [][SpellVO] # Water Breathing -- NameVO: [Respiration aquatique] +- AltName: [Respiration aquatique] - CastingTime: 1 action - Components: V, S, M (a short reed or piece of straw) - Duration: 24 hours @@ -7453,7 +7453,7 @@ This spell grants up to ten willing creatures you can see within range the abili [][SpellVO] # Water Walk -- NameVO: [Marche sur l'eau] +- AltName: [Marche sur l'eau] - CastingTime: 1 action - Components: V, S, M (a piece of cork) - Duration: 1 hour @@ -7474,7 +7474,7 @@ If you target a creature submerged in a liquid, the spell carries the target to [][SpellVO] # Web -- NameVO: [Toile d'araignée] +- AltName: [Toile d'araignée] - CastingTime: 1 action - Components: V, S, M (a bit of spiderweb) - Duration: Concentration, up to 1 hour @@ -7501,7 +7501,7 @@ The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 [][SpellVO] # Weird -- NameVO: [Étrangeté] +- AltName: [Étrangeté] - CastingTime: 1 action - Components: V, S - Duration: Concentration, up to 1 minute @@ -7520,7 +7520,7 @@ Drawing on the deepest fears of a group of creatures, you create illusory creatu [][SpellVO] # Wind Walk -- NameVO: [Marche sur le vent] +- AltName: [Marche sur le vent] - CastingTime: 1 minute - Components: V, S, M (fire and holy water) - Duration: 8 hours @@ -7541,7 +7541,7 @@ If a creature is in cloud form and flying when the effect ends, the creature des [][SpellVO] # Wind Wall -- NameVO: [Mur de vent] +- AltName: [Mur de vent] - CastingTime: 1 action - Components: V, S, M (a tiny fan and a feather of exotic origin) - Duration: Concentration, up to 1 minute @@ -7564,7 +7564,7 @@ The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flyin [][SpellVO] # Wish -- NameVO: [Souhait] +- AltName: [Souhait] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -7601,7 +7601,7 @@ The stress of casting this spell to produce any effect other than duplicating an [][SpellVO] # Word of Recall -- NameVO: [Mot de retour] +- AltName: [Mot de retour] - CastingTime: 1 action - Components: V - Duration: Instantaneous @@ -7622,7 +7622,7 @@ You must designate a sanctuary by casting this spell within a location, such as [][SpellVO] # Zone of Truth -- NameVO: [Zone de vérité] +- AltName: [Zone de vérité] - CastingTime: 1 action - Components: V, S - Duration: 10 minutes