diff --git a/AideDeJeu/AideDeJeu/AideDeJeu.csproj b/AideDeJeu/AideDeJeu/AideDeJeu.csproj
index 0c000786..6e6ec5b9 100644
--- a/AideDeJeu/AideDeJeu/AideDeJeu.csproj
+++ b/AideDeJeu/AideDeJeu/AideDeJeu.csproj
@@ -114,15 +114,6 @@
ItemView.xaml
-
- ItemDetailPage.xaml
-
-
- FilteredItemsPage.xaml
-
-
- ItemsPage.xaml
-
MainTabbedPage.xaml
@@ -220,4 +211,16 @@
+
+
+ FilteredItemsPage.xaml_
+
+
+ ItemDetailPage.xaml_
+
+
+ ItemsPage.xaml_
+
+
+
\ No newline at end of file
diff --git a/AideDeJeu/AideDeJeu/Pdf/PdfService.cs b/AideDeJeu/AideDeJeu/Pdf/PdfService.cs
index e2cbb995..43b094c6 100644
--- a/AideDeJeu/AideDeJeu/Pdf/PdfService.cs
+++ b/AideDeJeu/AideDeJeu/Pdf/PdfService.cs
@@ -118,7 +118,14 @@ namespace AideDeJeu.Pdf
{
}
- writer.Close();
+ try
+ {
+ writer?.Close();
+ }
+ catch
+ {
+
+ }
}
//stamper.Close();
diff --git a/AideDeJeu/AideDeJeu/ViewModels/Library/ItemDetailViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/Library/ItemDetailViewModel.cs_
similarity index 76%
rename from AideDeJeu/AideDeJeu/ViewModels/Library/ItemDetailViewModel.cs
rename to AideDeJeu/AideDeJeu/ViewModels/Library/ItemDetailViewModel.cs_
index 21857f34..e87dee87 100644
--- a/AideDeJeu/AideDeJeu/ViewModels/Library/ItemDetailViewModel.cs
+++ b/AideDeJeu/AideDeJeu/ViewModels/Library/ItemDetailViewModel.cs_
@@ -2,7 +2,7 @@
namespace AideDeJeu.ViewModels.Library
{
- public class ItemDetailViewModel : BaseViewModel
+ public class ItemDetailViewModelOld : BaseViewModel
{
Item _Item = null;
public Item Item
@@ -14,7 +14,7 @@ namespace AideDeJeu.ViewModels.Library
}
}
- public ItemDetailViewModel(Item item = null)
+ public ItemDetailViewModelOld(Item item = null)
{
Title = item?.Name;
Item = item;
diff --git a/AideDeJeu/AideDeJeu/ViewModels/Library/ItemsViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/Library/ItemsViewModel.cs_
similarity index 97%
rename from AideDeJeu/AideDeJeu/ViewModels/Library/ItemsViewModel.cs
rename to AideDeJeu/AideDeJeu/ViewModels/Library/ItemsViewModel.cs_
index 1a2c63e8..791acce5 100644
--- a/AideDeJeu/AideDeJeu/ViewModels/Library/ItemsViewModel.cs
+++ b/AideDeJeu/AideDeJeu/ViewModels/Library/ItemsViewModel.cs_
@@ -10,11 +10,11 @@ using Xamarin.Forms;
namespace AideDeJeu.ViewModels.Library
{
- public class ItemsViewModel : BaseViewModel
+ public class ItemsViewModelOld : BaseViewModel
{
CancellationTokenSource cancellationTokenSource;
- public ItemsViewModel()
+ public ItemsViewModelOld()
{
LoadItemsCommand = new Command(async () => await ExecuteLoadItemsCommandAsync().ConfigureAwait(false));
SearchCommand = new Command((text) =>
diff --git a/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs b/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs
index 82b78e82..ed05ef68 100644
--- a/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs
+++ b/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs
@@ -77,7 +77,8 @@ namespace AideDeJeu.ViewModels
public async Task GotoLibraryPageAsync()
{
//await Navigation.PushAsync(new Views.ItemDetailPage(),true);
- await Navigation.PushAsync(new Views.Library.MainTabbedPage(), true);
+ //await Navigation.PushAsync(new Views.Library.MainTabbedPage(), true);
+ await Navigation.PushAsync(new Views.Library.ItemPage("index.md"), true);
//TestNotify = new NotifyTaskCompletion(TestGotoAsync(), true);
}
@@ -154,15 +155,15 @@ namespace AideDeJeu.ViewModels
var navigationPage = tabbedPage; //.MainNavigationPage;
var lastPage = navigationPage.Navigation.NavigationStack.LastOrDefault();
var context = lastPage.BindingContext;
- Item item = null;
- if (context is ItemDetailViewModel)
- {
- item = (context as ItemDetailViewModel).Item;
- }
- else if (context is ItemsViewModel)
- {
- item = (context as ItemsViewModel).AllItems;
- }
+ Item item = (context as ItemViewModel)?.Item;
+ //if (context is ItemDetailViewModel)
+ //{
+ // item = (context as ItemDetailViewModel).Item;
+ //}
+ //else if (context is ItemsViewModel)
+ //{
+ // item = (context as ItemsViewModel).AllItems;
+ //}
//await Application.Current.MainPage.DisplayAlert("Id", item.Id, "OK");
var vm = Main.Bookmarks;
var result = await Application.Current.MainPage.DisplayActionSheet("Ajouter à", "Annuler", "Nouvelle liste", vm.BookmarkCollectionNames.ToArray());
@@ -185,9 +186,10 @@ namespace AideDeJeu.ViewModels
if (item == null)
return;
+
var items = item as Item;
var filterViewModel = items.GetNewFilterViewModel();
- var itemsViewModel = new ItemsViewModel() { AllItems = items, Filter = filterViewModel };
+ var itemsViewModel = new ItemViewModel() { Item = item, AllItems = items, Filter = filterViewModel };
itemsViewModel.LoadItemsCommand.Execute(null);
SwitchToMainTab();
@@ -212,20 +214,20 @@ namespace AideDeJeu.ViewModels
}
}
- public async Task GotoItemsPageAsync(ItemsViewModel itemsVM)
+ public async Task GotoItemsPageAsync(ItemViewModel itemsVM)
{
if (itemsVM == null)
return;
- await Navigation.PushAsync(new ItemsPage(itemsVM), true);
+ await Navigation.PushAsync(new ItemPage(itemsVM), true);
}
- public async Task GotoFilteredItemsPageAsync(ItemsViewModel itemsVM)
+ public async Task GotoFilteredItemsPageAsync(ItemViewModel itemsVM)
{
if (itemsVM == null)
return;
- await Navigation.PushAsync(new FilteredItemsPage(itemsVM), true);
+ await Navigation.PushAsync(new ItemPage(itemsVM), true);
}
private ICommand _NavigateToLinkCommand = null;
@@ -264,7 +266,7 @@ namespace AideDeJeu.ViewModels
{
var items = item; // as Items;
var filterViewModel = items.GetNewFilterViewModel();
- var itemsViewModel = new ItemsViewModel() { AllItems = items, Filter = filterViewModel };
+ var itemsViewModel = new ItemViewModel() { AllItems = items, Filter = filterViewModel };
itemsViewModel.LoadItemsCommand.Execute(null);
if (!string.IsNullOrEmpty(with))
{
diff --git a/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs b/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs
index 1d7b4316..b9dc15b8 100644
--- a/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs
+++ b/AideDeJeu/AideDeJeu/ViewModels/StoreViewModel.cs
@@ -739,8 +739,8 @@ namespace AideDeJeu.ViewModels
modelBuilder.Entity();
modelBuilder.Entity();
- modelBuilder.Entity();
- modelBuilder.Entity- ();
+ modelBuilder.Entity().HasIndex(i => new { i.Id, i.Name, i.AltNameText, i.NormalizedName, i.NormalizedAltName });
+ modelBuilder.Entity
- ().HasIndex(i => new { i.Id, i.Name, i.AltNameText, i.NormalizedName, i.NormalizedAltName });
}
}
diff --git a/AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml.cs b/AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml.cs_
similarity index 87%
rename from AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml.cs
rename to AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml.cs_
index c56c31df..d772ce08 100644
--- a/AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml.cs
+++ b/AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml.cs_
@@ -8,7 +8,7 @@ using Xamarin.Forms.Xaml;
namespace AideDeJeu.Views.Library
{
[XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class FilteredItemsPage : MasterDetailPage
+ public partial class FilteredItemsPageOld : MasterDetailPage
{
MainViewModel Main
{
@@ -26,13 +26,13 @@ namespace AideDeJeu.Views.Library
return _ItemsViewModel;
}
}
- public FilteredItemsPage (ItemsViewModel itemsViewModel)
+ public FilteredItemsPageOld (ItemsViewModel itemsViewModel)
{
InitializeComponent();
BindingContext = _ItemsViewModel = itemsViewModel;
}
- public FilteredItemsPage()
+ public FilteredItemsPageOld()
{
InitializeComponent();
diff --git a/AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml b/AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml_
similarity index 98%
rename from AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml
rename to AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml_
index 962a07aa..e7f4dde0 100644
--- a/AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml
+++ b/AideDeJeu/AideDeJeu/Views/Library/FilteredItemsPage.xaml_
@@ -4,7 +4,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:AideDeJeu.Views"
xmlns:tools="clr-namespace:AideDeJeu.Tools"
- x:Class="AideDeJeu.Views.Library.FilteredItemsPage"
+ x:Class="AideDeJeu.Views.Library.FilteredItemsPageOld"
x:Name="This"
Title="{Binding Title}">
diff --git a/AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml.cs b/AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml.cs_
similarity index 96%
rename from AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml.cs
rename to AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml.cs_
index d2f42edd..e08935b3 100644
--- a/AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml.cs
+++ b/AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml.cs_
@@ -12,7 +12,7 @@ using Xamarin.Forms.Xaml;
namespace AideDeJeu.Views.Library
{
[XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class ItemDetailPage : ContentPage
+ public partial class ItemDetailPageOld : ContentPage
{
public MainViewModel Main
{
@@ -24,7 +24,7 @@ namespace AideDeJeu.Views.Library
ItemDetailViewModel viewModel;
- public ItemDetailPage(ItemDetailViewModel itemVM)
+ public ItemDetailPageOld(ItemDetailViewModel itemVM)
{
InitializeComponent();
@@ -34,7 +34,7 @@ namespace AideDeJeu.Views.Library
//mdMarkdown.NavigateToLink = async (s) => await viewModel.Main.Navigator.NavigateToLinkAsync(s);
}
- public ItemDetailPage()
+ public ItemDetailPageOld()
{
InitializeComponent();
diff --git a/AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml b/AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml_
similarity index 97%
rename from AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml
rename to AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml_
index c5490792..bcb2c18c 100644
--- a/AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml
+++ b/AideDeJeu/AideDeJeu/Views/Library/ItemDetailPage.xaml_
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:tools="clr-namespace:AideDeJeu.Tools"
xmlns:mdview="clr-namespace:Xam.Forms.Markdown"
- x:Class="AideDeJeu.Views.Library.ItemDetailPage"
+ x:Class="AideDeJeu.Views.Library.ItemDetailPageOld"
Title="{Binding Title}"
Icon="spell_book.png"
x:Name="This">
diff --git a/AideDeJeu/AideDeJeu/Views/Library/ItemPage.xaml b/AideDeJeu/AideDeJeu/Views/Library/ItemPage.xaml
index 8760321f..67b4e048 100644
--- a/AideDeJeu/AideDeJeu/Views/Library/ItemPage.xaml
+++ b/AideDeJeu/AideDeJeu/Views/Library/ItemPage.xaml
@@ -17,6 +17,7 @@
+
-
+
diff --git a/Data/HD/baby_bestiary.md b/Data/HD/baby_bestiary.md
index 664ad29b..1ce61a2c 100644
--- a/Data/HD/baby_bestiary.md
+++ b/Data/HD/baby_bestiary.md
@@ -11,6 +11,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Aboleth, rejeton
+ Source: (MM p14)(BB2 p14)
+ AltName: Aboleth Spawn
Type: Aberration
Size: M
Alignment: Loyal Mauvais
@@ -51,6 +53,14 @@ SubItems:
+ - Source: (MM p14)(BB2 p14)
+
+
+
+ - Alias: Aboleth Spawn
+
+
+
- Aberration de taille M, Loyal Mauvais
@@ -161,6 +171,10 @@ SubItems:
+ Source: (MM p14)(BB2 p14)
+
+ AltName: Aboleth Spawn
+
Type: Aberration
Size: M
@@ -200,6 +214,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Ancien dieu, rejeton
+ Source: (MM p16)(BB2 p28)
+ AltName: Elder Godspawn
Type: Fiélon (titan)
Size: G
Alignment: Chaotique Mauvais
@@ -234,6 +250,14 @@ SubItems:
+ - Source: (MM p16)(BB2 p28)
+
+
+
+ - Alias: Elder Godspawn
+
+
+
- Fiélon (titan) de taille G, Chaotique Mauvais
@@ -360,6 +384,10 @@ SubItems:
+ Source: (MM p16)(BB2 p28)
+
+ AltName: Elder Godspawn
+
Type: Fiélon (titan)
Size: G
@@ -399,6 +427,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Archon canin, chiot
+ Source: (MM p18)(BB2 p38)
+ AltName: Hound Archon Pup
Type: Céleste
Size: P
Alignment: Loyal Bon
@@ -433,6 +463,14 @@ SubItems:
+ - Source: (MM p18)(BB2 p38)
+
+
+
+ - Alias: Hound Archon Pup
+
+
+
- Céleste de taille P, Loyal Bon
@@ -549,6 +587,10 @@ SubItems:
+ Source: (MM p18)(BB2 p38)
+
+ AltName: Hound Archon Pup
+
Type: Céleste
Size: P
@@ -588,6 +630,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Baku, éléphanteau
+ Source: (MM p20)(BB2 p16)
+ AltName: Baku Calf
Type: Aberration
Size: P
Alignment: Neutre
@@ -621,6 +665,14 @@ SubItems:
+ - Source: (MM p20)(BB2 p16)
+
+
+
+ - Alias: Baku Calf
+
+
+
- Aberration de taille P, Neutre
@@ -715,6 +767,10 @@ SubItems:
+ Source: (MM p20)(BB2 p16)
+
+ AltName: Baku Calf
+
Type: Aberration
Size: P
@@ -752,6 +808,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Balor, brandon
+ Source: (MM p22)(BB2 p18)
+ AltName: Balrog Emberling
Type: Fiélon
Size: P
Alignment: Mauvais
@@ -791,6 +849,14 @@ SubItems:
+ - Source: (MM p22)(BB2 p18)
+
+
+
+ - Alias: Balrog Emberling
+
+
+
- Fiélon de taille P, Mauvais
@@ -899,6 +965,10 @@ SubItems:
+ Source: (MM p22)(BB2 p18)
+
+ AltName: Balrog Emberling
+
Type: Fiélon
Size: P
@@ -1073,7 +1143,9 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
- Name: Beithir
+ Name: Beithir, Lézardeau
+ Source: (MM p26)(BB2 p20)
+ AltName: Beithir Hatchling
Type: Créature monstrueuse
Size: M
Alignment: non aligné
@@ -1092,21 +1164,29 @@ SubItems:
Wisdom: 14 (+2)
Charisma: 12 (+1)
XP: 200
- Id: baby_bestiary.md#beithir
+ Id: baby_bestiary.md#beithir-lézardeau
ParentLink: baby_bestiary.md#monstrueusement-mignons
ParentName: Monstrueusement mignons
NameLevel: 1
AttributesDictionary: >+
- Name: Beithir
+ Name: Beithir, Lézardeau
Markdown: >+
- # Beithir
+ # Beithir, Lézardeau
+ - Source: (MM p26)(BB2 p20)
+
+
+
+ - Alias: Beithir Hatchling
+
+
+
- Créature monstrueuse de taille M, non aligné
@@ -1195,6 +1275,10 @@ SubItems:
+ Source: (MM p26)(BB2 p20)
+
+ AltName: Beithir Hatchling
+
Type: Créature monstrueuse
Size: M
@@ -1232,6 +1316,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Bulette, chevreau
+ Source: (MM p28)(BB1 p16)
+ AltName: Bulette Billy
Type: Créature monstrueuse
Size: M
Alignment: non aligné
@@ -1270,6 +1356,14 @@ SubItems:
+ - Source: (MM p28)(BB1 p16)
+
+
+
+ - Alias: Bulette Billy
+
+
+
- Créature monstrueuse de taille M, non aligné
@@ -1342,6 +1436,10 @@ SubItems:
+ Source: (MM p28)(BB1 p16)
+
+ AltName: Bulette Billy
+
Type: Créature monstrueuse
Size: M
@@ -1377,6 +1475,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Centaure, poulain
+ Source: (MM p30)(BB1 p18)
+ AltName: Centaur Foal
Type: Créature monstrueuse
Size: M
Alignment: Neutre Bon
@@ -1415,6 +1515,14 @@ SubItems:
+ - Source: (MM p30)(BB1 p18)
+
+
+
+ - Alias: Centaur Foal
+
+
+
- Créature monstrueuse de taille M, Neutre Bon
@@ -1499,6 +1607,10 @@ SubItems:
+ Source: (MM p30)(BB1 p18)
+
+ AltName: Centaur Foal
+
Type: Créature monstrueuse
Size: M
@@ -1534,6 +1646,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Cerbère, chiot
+ Source: (MM p32)(BB1 p20)
+ AltName: Cerberus Puppy
Type: Créature monstrueuse
Size: M
Alignment: Neutre Mauvais
@@ -1574,6 +1688,14 @@ SubItems:
+ - Source: (MM p32)(BB1 p20)
+
+
+
+ - Alias: Cerberus Puppy
+
+
+
- Créature monstrueuse de taille M, Neutre Mauvais
@@ -1660,6 +1782,10 @@ SubItems:
+ Source: (MM p32)(BB1 p20)
+
+ AltName: Cerberus Puppy
+
Type: Créature monstrueuse
Size: M
@@ -1699,6 +1825,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Chien esquiveur, chiot
+ Source: (MM p34)(BB1 p14)
+ AltName: Blink Puppy
Type: Fée
Size: P
Alignment: Loyal Bon
@@ -1737,6 +1865,14 @@ SubItems:
+ - Source: (MM p34)(BB1 p14)
+
+
+
+ - Alias: Blink Puppy
+
+
+
- Fée de taille P, Loyal Bon
@@ -1821,6 +1957,10 @@ SubItems:
+ Source: (MM p34)(BB1 p14)
+
+ AltName: Blink Puppy
+
Type: Fée
Size: P
@@ -1856,6 +1996,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Chimère, lionceau
+ Source: (MM p36)(BB1 p22)
+ AltName: Chimera Cub
Type: Créature monstrueuse
Size: M
Alignment: Chaotique Mauvais
@@ -1894,6 +2036,14 @@ SubItems:
+ - Source: (MM p36)(BB1 p22)
+
+
+
+ - Alias: Chimera Cub
+
+
+
- Créature monstrueuse de taille M, Chaotique Mauvais
@@ -1996,6 +2146,10 @@ SubItems:
+ Source: (MM p36)(BB1 p22)
+
+ AltName: Chimera Cub
+
Type: Créature monstrueuse
Size: M
@@ -2031,6 +2185,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Cocatrice, poussin
+ Source: (MM p38)(BB1 p24)
+ AltName: Cockatrice Chick
Type: Créature monstrueuse
Size: TP
Alignment: non aligné
@@ -2066,6 +2222,14 @@ SubItems:
+ - Source: (MM p38)(BB1 p24)
+
+
+
+ - Alias: Cockatrice Chick
+
+
+
- Créature monstrueuse de taille TP, non aligné
@@ -2124,6 +2288,10 @@ SubItems:
+ Source: (MM p38)(BB1 p24)
+
+ AltName: Cockatrice Chick
+
Type: Créature monstrueuse
Size: TP
@@ -2155,6 +2323,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Couatl, nouveau-né
+ Source: (MM p40)(BB1 p26)
+ AltName: Couatl Neonate
Type: Créature monstrueuse
Size: P
Alignment: Loyal Bon
@@ -2195,6 +2365,14 @@ SubItems:
+ - Source: (MM p40)(BB1 p26)
+
+
+
+ - Alias: Couatl Neonate
+
+
+
- Créature monstrueuse de taille P, Loyal Bon
@@ -2303,6 +2481,10 @@ SubItems:
+ Source: (MM p40)(BB1 p26)
+
+ AltName: Couatl Neonate
+
Type: Créature monstrueuse
Size: P
@@ -2342,6 +2524,8 @@ SubItems:
- !MonsterItem
Family: BabyBestiary
Name: Criard, bouton
+ Source: (MM p42)(BB2 p76)
+ AltName: Shrieker Button
Type: Plante
Size: P
Alignment: non aligné
@@ -2381,6 +2565,14 @@ SubItems:
+ - Source: (MM p42)(BB2 p76)
+
+
+
+ - Alias: Shrieker Button
+
+
+
- Plante de taille P, non aligné
@@ -2457,6 +2649,10 @@ SubItems:
+ Source: (MM p42)(BB2 p76)
+
+ AltName: Shrieker Button
+
Type: Plante
Size: P
@@ -12776,6 +12972,8 @@ AttributesDictionary: >+
Voir [Aboleth](hd_monsters_aboleth.md)
+- Source: (MM p14)(BB2 p14)
+- Alias: Aboleth Spawn
- Aberration de taille M, Loyal Mauvais
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 15 (armure naturelle)
@@ -12816,6 +13014,8 @@ _Touché :_ 6 (2d4+1) dégâts contondants. Si la cible est une créature, elle
# Ancien dieu, rejeton
+- Source: (MM p16)(BB2 p28)
+- Alias: Elder Godspawn
- Fiélon (titan) de taille G, Chaotique Mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 100 (8d10+56)
@@ -12861,6 +13061,8 @@ _Touché :_ 15 (3d6+5) dégâts perforants et la cible est empoignée (évasion
# Archon canin, chiot
+- Source: (MM p18)(BB2 p38)
+- Alias: Hound Archon Pup
- Céleste de taille P, Loyal Bon
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 16 (3d6+6)
@@ -12903,6 +13105,8 @@ _Touché :_ 3 (1d4+1) dégâts perforants.
# Baku, éléphanteau
+- Source: (MM p20)(BB2 p16)
+- Alias: Baku Calf
- Aberration de taille P, Neutre
- **Classe d'armure** 12
- **Points de vie** 11 (2d8+2)
@@ -12940,6 +13144,8 @@ _Touché :_ 5 (1d6+2) dégâts psychiques.
Voir [Balor](hd_monsters_balor.md)
+- Source: (MM p22)(BB2 p18)
+- Alias: Balrog Emberling
- Fiélon de taille P, Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
@@ -13006,8 +13212,10 @@ Voir [Basilic](hd_monsters_basilic.md)
---
-# Beithir
+# Beithir, Lézardeau
+- Source: (MM p26)(BB2 p20)
+- Alias: Beithir Hatchling
- Créature monstrueuse de taille M, non aligné
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 43 (5d8+20)
@@ -13043,6 +13251,8 @@ _Touché :_ 9 (2d6+2) dégâts perforants.
Voir [Bulette](hd_monsters_bulette.md)
+- Source: (MM p28)(BB1 p16)
+- Alias: Bulette Billy
- Créature monstrueuse de taille M, non aligné
- **Terrain** Bois / Forêt, Collines / Vallées, Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
@@ -13073,6 +13283,8 @@ Voir [Bulette](hd_monsters_bulette.md)
Voir [Centaure](hd_monsters_centaure.md)
+- Source: (MM p30)(BB1 p18)
+- Alias: Centaur Foal
- Créature monstrueuse de taille M, Neutre Bon
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
@@ -13107,6 +13319,8 @@ _Touché :_ selon arme.
Voir [Cerbère](hd_monsters_cerbere.md)
+- Source: (MM p32)(BB1 p20)
+- Alias: Cerberus Puppy
- Créature monstrueuse de taille M, Neutre Mauvais
- **Terrain** Bois / Forêt, Jungle, Montagnes
- **Classe d'armure** 13
@@ -13141,6 +13355,8 @@ Voir [Cerbère](hd_monsters_cerbere.md)
Voir [Chien esquiveur](hd_monsters_chien_esquiveur.md)
+- Source: (MM p34)(BB1 p14)
+- Alias: Blink Puppy
- Fée de taille P, Loyal Bon
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -13175,6 +13391,8 @@ _Touché :_ 1 dégât perforant.
Voir [Chimère](hd_monsters_chimere.md)
+- Source: (MM p36)(BB1 p22)
+- Alias: Chimera Cub
- Créature monstrueuse de taille M, Chaotique Mauvais
- **Terrain** Bois / Forêt, Montagnes, Ruines extérieures
- **Classe d'armure** 13 (armure naturelle)
@@ -13215,6 +13433,8 @@ _Touché :_ 6 (2d4+1) dégâts perforants.
Voir [Cockatrice](hd_monsters_cockatrice.md)
+- Source: (MM p38)(BB1 p24)
+- Alias: Cockatrice Chick
- Créature monstrueuse de taille TP, non aligné
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -13241,6 +13461,8 @@ _Touché :_ 1 dégât perforant et la cible doit réussir un jet de sauvegarde d
Voir [Couatl](hd_monsters_couatl.md)
+- Source: (MM p40)(BB1 p26)
+- Alias: Couatl Neonate
- Créature monstrueuse de taille P, Loyal Bon
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 16 (armure naturelle)
@@ -13282,6 +13504,8 @@ _Touché :_ 2 (1d6-1) dégâts perforants et la cible doit réussir un jet de sa
Voir [Criard](hd_monsters_criard.md)
+- Source: (MM p42)(BB2 p76)
+- Alias: Shrieker Button
- Plante de taille P, non aligné
- **Terrain** Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 5
diff --git a/Data/HD/baby_bestiary_aboleth_rejeton.md b/Data/HD/baby_bestiary_aboleth_rejeton.md
index b0ff3a5e..5437fe9b 100644
--- a/Data/HD/baby_bestiary_aboleth_rejeton.md
+++ b/Data/HD/baby_bestiary_aboleth_rejeton.md
@@ -6,6 +6,8 @@
Voir [Aboleth](hd_monsters_aboleth.md)
+- Source: (MM p14)(BB2 p14)
+- Alias: Aboleth Spawn
- Aberration de taille M, Loyal Mauvais
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/baby_bestiary_ancien_dieu_rejeton.md b/Data/HD/baby_bestiary_ancien_dieu_rejeton.md
index 6ec8fdd5..9a4ef3fa 100644
--- a/Data/HD/baby_bestiary_ancien_dieu_rejeton.md
+++ b/Data/HD/baby_bestiary_ancien_dieu_rejeton.md
@@ -4,6 +4,8 @@
# Ancien dieu, rejeton
+- Source: (MM p16)(BB2 p28)
+- Alias: Elder Godspawn
- Fiélon (titan) de taille G, Chaotique Mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 100 (8d10+56)
diff --git a/Data/HD/baby_bestiary_archon_canin_chiot.md b/Data/HD/baby_bestiary_archon_canin_chiot.md
index 7ce27d24..02c15e0d 100644
--- a/Data/HD/baby_bestiary_archon_canin_chiot.md
+++ b/Data/HD/baby_bestiary_archon_canin_chiot.md
@@ -4,6 +4,8 @@
# Archon canin, chiot
+- Source: (MM p18)(BB2 p38)
+- Alias: Hound Archon Pup
- Céleste de taille P, Loyal Bon
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 16 (3d6+6)
diff --git a/Data/HD/baby_bestiary_baku_elephanteau.md b/Data/HD/baby_bestiary_baku_elephanteau.md
index 95349aa0..d49a7816 100644
--- a/Data/HD/baby_bestiary_baku_elephanteau.md
+++ b/Data/HD/baby_bestiary_baku_elephanteau.md
@@ -4,6 +4,8 @@
# Baku, éléphanteau
+- Source: (MM p20)(BB2 p16)
+- Alias: Baku Calf
- Aberration de taille P, Neutre
- **Classe d'armure** 12
- **Points de vie** 11 (2d8+2)
diff --git a/Data/HD/baby_bestiary_balor_brandon.md b/Data/HD/baby_bestiary_balor_brandon.md
index 1f71eae3..868d8701 100644
--- a/Data/HD/baby_bestiary_balor_brandon.md
+++ b/Data/HD/baby_bestiary_balor_brandon.md
@@ -6,6 +6,8 @@
Voir [Balor](hd_monsters_balor.md)
+- Source: (MM p22)(BB2 p18)
+- Alias: Balrog Emberling
- Fiélon de taille P, Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/baby_bestiary_beithir_lezardeau.md b/Data/HD/baby_bestiary_beithir_lezardeau.md
new file mode 100644
index 00000000..9a3d69d6
--- /dev/null
+++ b/Data/HD/baby_bestiary_beithir_lezardeau.md
@@ -0,0 +1,35 @@
+> [Monstrueusement mignons](baby_bestiary.md)
+
+---
+
+# Beithir, Lézardeau
+
+- Source: (MM p26)(BB2 p20)
+- Alias: Beithir Hatchling
+- Créature monstrueuse de taille M, non aligné
+- **Classe d'armure** 14 (armure naturelle)
+- **Points de vie** 43 (5d8+20)
+- **Vitesse** 9 m, escalade 9 m
+
+|FOR|DEX|CON|INT|SAG|CHA|
+|---|---|---|---|---|---|
+|14 (+2)|14 (+2)|18 (+4)|5 (-3)|14 (+2)|12 (+1)|
+
+- **Compétences** Discrétion +4, Perception +4
+- **Résistance aux dégâts** de foudre
+- **Sens** vision dans le noir 27 m, Perception passive 16
+- **Langue** aucune
+- **Dangerosité** 1 (200 PX)
+
+## Actions
+
+**_Attaques multiples._** Le beithir effectue deux attaques : une avec sa morsure et une pour saisir.
+
+**_Engloutir._** Le beithir effectue une attaque de morsure contre une cible de taille petite qu'il empoigne. Si l'attaque est réussie, la cible est également engloutie et l'empoignade prend fin. Tant qu'elle est engloutie, la cible est aveuglée et entravée, elle bénéfcie d'un abri total contre les attaques et autres effets provenant de l'extérieur du beithir et elle subit 7 (2d6) dégâts d'acide au début de chacun des tours du beithir. Un beithir ne peut engloutir qu'une seule créature à la fois. Si le beithir subit 10 dégâts ou plus infligés lors d'un seul tour par la créature engloutie, il doit réussir un jet de sauvegarde de Constitution DD 14 à la fin de ce tour pour ne pas régurgiter la créature qui tombe alors à terre à un emplacement situé à 3 mètres ou moins de lui. Si le beithir meurt, une créature engloutie n'est plus entravée et peut s'extirper de la carcasse en dépensant 3 mètres de déplacement. Elle tombe à terre en sortant.
+
+**_Morsure._** Attaque d'arme au corps-à-corps : +4 pour toucher, allonge 1,5 m, une cible.
+
+_Touché :_ 9 (2d6+2) dégâts perforants.
+
+**_Saisir._** Attaque d'arme au corps-à-corps : +4 pour toucher, allonge 1,50 m, une créature de taille P ou plus petite. La cible est empoignée (DD 16 pour se libérer) si le beithir n'est pas déjà en train de saisir une créature et elle est entravée jusqu'au terme de cette empoignade.
+
diff --git a/Data/HD/baby_bestiary_bulette_chevreau.md b/Data/HD/baby_bestiary_bulette_chevreau.md
index 11536013..facf4596 100644
--- a/Data/HD/baby_bestiary_bulette_chevreau.md
+++ b/Data/HD/baby_bestiary_bulette_chevreau.md
@@ -6,6 +6,8 @@
Voir [Bulette](hd_monsters_bulette.md)
+- Source: (MM p28)(BB1 p16)
+- Alias: Bulette Billy
- Créature monstrueuse de taille M, non aligné
- **Terrain** Bois / Forêt, Collines / Vallées, Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/baby_bestiary_centaure_poulain.md b/Data/HD/baby_bestiary_centaure_poulain.md
index 36ae35f7..55a6e7f2 100644
--- a/Data/HD/baby_bestiary_centaure_poulain.md
+++ b/Data/HD/baby_bestiary_centaure_poulain.md
@@ -6,6 +6,8 @@
Voir [Centaure](hd_monsters_centaure.md)
+- Source: (MM p30)(BB1 p18)
+- Alias: Centaur Foal
- Créature monstrueuse de taille M, Neutre Bon
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
diff --git a/Data/HD/baby_bestiary_cerbere_chiot.md b/Data/HD/baby_bestiary_cerbere_chiot.md
index 674351e8..d48d55ab 100644
--- a/Data/HD/baby_bestiary_cerbere_chiot.md
+++ b/Data/HD/baby_bestiary_cerbere_chiot.md
@@ -6,6 +6,8 @@
Voir [Cerbère](hd_monsters_cerbere.md)
+- Source: (MM p32)(BB1 p20)
+- Alias: Cerberus Puppy
- Créature monstrueuse de taille M, Neutre Mauvais
- **Terrain** Bois / Forêt, Jungle, Montagnes
- **Classe d'armure** 13
diff --git a/Data/HD/baby_bestiary_chien_esquiveur_chiot.md b/Data/HD/baby_bestiary_chien_esquiveur_chiot.md
index 225b7274..b794046c 100644
--- a/Data/HD/baby_bestiary_chien_esquiveur_chiot.md
+++ b/Data/HD/baby_bestiary_chien_esquiveur_chiot.md
@@ -6,6 +6,8 @@
Voir [Chien esquiveur](hd_monsters_chien_esquiveur.md)
+- Source: (MM p34)(BB1 p14)
+- Alias: Blink Puppy
- Fée de taille P, Loyal Bon
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/baby_bestiary_chimere_lionceau.md b/Data/HD/baby_bestiary_chimere_lionceau.md
index 4c94cacc..8557ac33 100644
--- a/Data/HD/baby_bestiary_chimere_lionceau.md
+++ b/Data/HD/baby_bestiary_chimere_lionceau.md
@@ -6,6 +6,8 @@
Voir [Chimère](hd_monsters_chimere.md)
+- Source: (MM p36)(BB1 p22)
+- Alias: Chimera Cub
- Créature monstrueuse de taille M, Chaotique Mauvais
- **Terrain** Bois / Forêt, Montagnes, Ruines extérieures
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/baby_bestiary_cocatrice_poussin.md b/Data/HD/baby_bestiary_cocatrice_poussin.md
index 0b60ec72..8bb775d9 100644
--- a/Data/HD/baby_bestiary_cocatrice_poussin.md
+++ b/Data/HD/baby_bestiary_cocatrice_poussin.md
@@ -6,6 +6,8 @@
Voir [Cockatrice](hd_monsters_cockatrice.md)
+- Source: (MM p38)(BB1 p24)
+- Alias: Cockatrice Chick
- Créature monstrueuse de taille TP, non aligné
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/baby_bestiary_couatl_nouveau_ne.md b/Data/HD/baby_bestiary_couatl_nouveau_ne.md
index 873edf3d..13a3ade5 100644
--- a/Data/HD/baby_bestiary_couatl_nouveau_ne.md
+++ b/Data/HD/baby_bestiary_couatl_nouveau_ne.md
@@ -6,6 +6,8 @@
Voir [Couatl](hd_monsters_couatl.md)
+- Source: (MM p40)(BB1 p26)
+- Alias: Couatl Neonate
- Créature monstrueuse de taille P, Loyal Bon
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/baby_bestiary_criard_bouton.md b/Data/HD/baby_bestiary_criard_bouton.md
index cb3662d5..e68b60ac 100644
--- a/Data/HD/baby_bestiary_criard_bouton.md
+++ b/Data/HD/baby_bestiary_criard_bouton.md
@@ -6,6 +6,8 @@
Voir [Criard](hd_monsters_criard.md)
+- Source: (MM p42)(BB2 p76)
+- Alias: Shrieker Button
- Plante de taille P, non aligné
- **Terrain** Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 5
diff --git a/Data/HD/hd_abilities.md b/Data/HD/hd_abilities.md
index dc317608..a9cb38f7 100644
--- a/Data/HD/hd_abilities.md
+++ b/Data/HD/hd_abilities.md
@@ -5,7 +5,7 @@
# Utiliser les caractéristiques
-- AltName: Using Ability Scores (SRD p76)
+- Alias: Using Ability Scores (SRD p76)
- Source: (MDR p258)
Le profil physique et mental d'une créature est défini par six caractéristiques :
diff --git a/Data/HD/hd_abilities_charisma.md b/Data/HD/hd_abilities_charisma.md
index abe2178a..df0221ee 100644
--- a/Data/HD/hd_abilities_charisma.md
+++ b/Data/HD/hd_abilities_charisma.md
@@ -5,7 +5,7 @@
# Charisme
-- AltName: Charisma (SRD p82)
+- Alias: Charisma (SRD p82)
- Source: (MDR p265)
Le Charisme représente votre capacité à interagir avec les autres. Il prend en compte votre confiance en vous et votre éloquence, et est un indicateur du charme et de l'autorité qui se dégagent de vous.
diff --git a/Data/HD/hd_abilities_dexterity.md b/Data/HD/hd_abilities_dexterity.md
index 6c223ef3..de6a9d68 100644
--- a/Data/HD/hd_abilities_dexterity.md
+++ b/Data/HD/hd_abilities_dexterity.md
@@ -5,7 +5,7 @@
# Dextérité
-- AltName: Dexterity (SRD p80)
+- Alias: Dexterity (SRD p80)
- Source: (MDR p263)
La Dextérité représente tout ce qui a trait à l'agilité, les réflexes et l'équilibre.
diff --git a/Data/HD/hd_abilities_strength.md b/Data/HD/hd_abilities_strength.md
index 53f00157..e84837eb 100644
--- a/Data/HD/hd_abilities_strength.md
+++ b/Data/HD/hd_abilities_strength.md
@@ -5,7 +5,7 @@
# Force
-- AltName: Strength (SRD p79)
+- Alias: Strength (SRD p79)
- Source: (MDR p262)
La Force détermine la puissance physique d'un personnage, ses compétences en [athlétisme](hd_abilities_strength_athletisme.md) et dans quelle mesure il peut se reposer sur sa force brute.
diff --git a/Data/HD/hd_abilities_wisdom.md b/Data/HD/hd_abilities_wisdom.md
index d463a131..ea4b4ef4 100644
--- a/Data/HD/hd_abilities_wisdom.md
+++ b/Data/HD/hd_abilities_wisdom.md
@@ -5,7 +5,7 @@
# Sagesse
-- AltName: Wisdom (SRD p82)
+- Alias: Wisdom (SRD p82)
- Source: (MDR p265)
La Sagesse représente votre sensibilité au monde qui vous entoure, votre perspicacité et votre intuition.
diff --git a/Data/HD/hd_alignment.md b/Data/HD/hd_alignment.md
index 9feef9f5..0044838d 100644
--- a/Data/HD/hd_alignment.md
+++ b/Data/HD/hd_alignment.md
@@ -5,7 +5,7 @@
# Alignement
-- AltName: Alignment (SRD p58)
+- Alias: Alignment (SRD p58)
- Source: (MDR p75)
Une créature typique de l'univers du jeu a un alignement qui permet de donner une idée générale de son point de vue moral et de ce qui dicte son attitude. L'alignement est une combinaison de deux facteurs : l'un identifie la morale (Bon, Mauvais ou Neutre) et l'autre son positionnement par rapport à la société et à l'ordre (Loyal, Chaotique ou Neutre). Il existe neuf combinaisons de ces deux critères, et donc neuf alignements possibles.
diff --git a/Data/HD/hd_armor.md b/Data/HD/hd_armor.md
index 34cefbfb..c16c1583 100644
--- a/Data/HD/hd_armor.md
+++ b/Data/HD/hd_armor.md
@@ -5,7 +5,7 @@
# Armures
-- AltName: Armor (SRD p62)
+- Alias: Armor (SRD p62)
- Source: (MDR p223)
Les univers de Héros & Dragons sont une vaste tapisserie réunissant de nombreuses cultures qui ont chacune leur propre niveau de technologie. Pour cette raison, les aventuriers ont accès à un vaste éventail de types d’armure, de l’armure de cuir à la cotte de mailles, et jusqu’à la coûteuse armure de plates, avec de nombreux types intermédiaires. Le tableau des armures réunit les types d’armure les plus courants qui se trouvent dans le jeu et les présente selon trois catégories : armures légères, armures intermédiaires et armures lourdes. De nombreux guerriers utilisent un bouclier en complément de leur armure.
diff --git a/Data/HD/hd_armor_armures_intermediaires.md b/Data/HD/hd_armor_armures_intermediaires.md
index 4186a95d..b0d8676e 100644
--- a/Data/HD/hd_armor_armures_intermediaires.md
+++ b/Data/HD/hd_armor_armures_intermediaires.md
@@ -4,7 +4,7 @@
### Armures intermédiaires
-- AltName: Medium Armor (SRD p63)
+- Alias: Medium Armor (SRD p63)
- Source: (MDR p224)
Une armure intermédiaire protège plus qu'une armure légère mais, en contrepartie, elle gène davantage les mouvements. Si vous portez une armure intermédiaire, ajoutez votre modificateur de Dextérité jusqu'à un maximum de +2 à la valeur de base de votre armure afin de déterminer votre classe d'armure.
diff --git a/Data/HD/hd_armor_armures_legeres.md b/Data/HD/hd_armor_armures_legeres.md
index 22774a5d..1e7acd52 100644
--- a/Data/HD/hd_armor_armures_legeres.md
+++ b/Data/HD/hd_armor_armures_legeres.md
@@ -4,7 +4,7 @@
### Armures légères
-- AltName: Light Armor (SRD p63)
+- Alias: Light Armor (SRD p63)
- Source: (MDR p223)
Les armures légères sont faites de matériaux souples et fins. Elles sont adaptées aux aventuriers agiles dans la mesure où elles offrent une protection sans sacrifier leur mobilité. Si vous portez une armure légère, vous ajoutez votre modificateur de Dextérité à la valeur de base de votre armure pour déterminer votre classe d'armure.
diff --git a/Data/HD/hd_armor_armures_lourdes.md b/Data/HD/hd_armor_armures_lourdes.md
index d4cd6009..b1dc310d 100644
--- a/Data/HD/hd_armor_armures_lourdes.md
+++ b/Data/HD/hd_armor_armures_lourdes.md
@@ -4,7 +4,7 @@
### Armures lourdes
-- AltName: Heavy Armor (SRD p63)
+- Alias: Heavy Armor (SRD p63)
- Source: (MDR p225)
Parmi toutes les catégories d'armures, ce sont les armures lourdes qui offrent la meilleure protection. Ces armures couvrent l'ensemble du corps et sont conçues pour arrêter une large gamme d'attaques. Seuls les guerriers expérimentés arrivent à bien en gérer le poids et l'encombrement.
diff --git a/Data/HD/hd_armor_enfiler_et_retirer_une_armure.md b/Data/HD/hd_armor_enfiler_et_retirer_une_armure.md
index 4f547cbb..33c7ed28 100644
--- a/Data/HD/hd_armor_enfiler_et_retirer_une_armure.md
+++ b/Data/HD/hd_armor_enfiler_et_retirer_une_armure.md
@@ -4,7 +4,7 @@
### Enfiler et retirer une armure
-- AltName: Getting Into and Out of Armor (SRD p64)
+- Alias: Getting Into and Out of Armor (SRD p64)
- Source: (MDR p225)
Le temps mis pour enfiler ou retirer une armure dépend de sa catégorie.
diff --git a/Data/HD/hd_artifacts.md b/Data/HD/hd_artifacts.md
index 5edc08f8..4c8cc4a3 100644
--- a/Data/HD/hd_artifacts.md
+++ b/Data/HD/hd_artifacts.md
@@ -5,7 +5,7 @@
# Artefacts
-- AltName: Artifacts (SRD p252)
+- Alias: Artifacts (SRD p252)
- Source: (CDC p191)
diff --git a/Data/HD/hd_artifacts_orbe_des_dragons.md b/Data/HD/hd_artifacts_orbe_des_dragons.md
index ca9fa324..8df49f91 100644
--- a/Data/HD/hd_artifacts_orbe_des_dragons.md
+++ b/Data/HD/hd_artifacts_orbe_des_dragons.md
@@ -4,7 +4,7 @@
## ORBE DES DRAGONS
-- AltName: Orb of Dragonkind (SRD p252)
+- Alias: Orb of Dragonkind (SRD p252)
- Source: (CDC p192)
#### Objet merveilleux, artefact (harmonisation requise)
diff --git a/Data/HD/hd_background_devot.md b/Data/HD/hd_background_devot.md
index be90c04f..a1ef79f4 100644
--- a/Data/HD/hd_background_devot.md
+++ b/Data/HD/hd_background_devot.md
@@ -5,7 +5,7 @@
# Dévot
-- AltName: Acolyte (SRD p60)
+- Alias: Acolyte (SRD p60)
- Source: (MDR p81)
Vous avez passé votre vie au service d'un temple dédié à un dieu particulier ou à un panthéon de dieux. Vous serviez d'intermédiaire entre le domaine du sacré et le monde mortel. Vous accomplissiez les rites sacrés et faisiez les sacrifices nécessaires qui permettent de mettre les fidèles en présence du divin. Vous n'étiez pas nécessairement un clerc (accomplir des rites sacrés n'est pas la même chose que canaliser la puissance divine).
diff --git a/Data/HD/hd_background_devot_aptitude_refuge_du_pelerin.md b/Data/HD/hd_background_devot_aptitude_refuge_du_pelerin.md
index 71b1ff21..586d1373 100644
--- a/Data/HD/hd_background_devot_aptitude_refuge_du_pelerin.md
+++ b/Data/HD/hd_background_devot_aptitude_refuge_du_pelerin.md
@@ -4,7 +4,7 @@
#### Aptitude : Refuge du pèlerin
-- AltName: Feature: Shelter of the Faithful (SRD p61)
+- Alias: Feature: Shelter of the Faithful (SRD p61)
- Source: (MDR p82)
Vous êtes un acolyte et recevez le respect de ceux qui partagent votre foi. Vous pouvez accomplir les cérémonies religieuses liées à votre déité. Vous et vos compagnons d'aventure pouvez espérer recevoir des soins gratuits dans les temples, autels et autres endroits dédiés à la divinité que vous vénérez. Cela ne vous dispense par contre pas de fournir les ingrédients nécessaires au lancement des sorts. Ceux qui partagent votre religion peuvent aussi vous donner (mais seulement à vous) de quoi mener un train de vie modeste.
diff --git a/Data/HD/hd_background_devot_defaut.md b/Data/HD/hd_background_devot_defaut.md
index aa7b6808..ccc97d7e 100644
--- a/Data/HD/hd_background_devot_defaut.md
+++ b/Data/HD/hd_background_devot_defaut.md
@@ -4,7 +4,7 @@
##### Défaut
-- AltName: Flaw (SRD p61)
+- Alias: Flaw (SRD p61)
- Source: (MDR p83)
|d6|Défaut|
diff --git a/Data/HD/hd_background_devot_ideal.md b/Data/HD/hd_background_devot_ideal.md
index db54c464..84ec096d 100644
--- a/Data/HD/hd_background_devot_ideal.md
+++ b/Data/HD/hd_background_devot_ideal.md
@@ -4,7 +4,7 @@
##### Idéal
-- AltName: Ideal (SRD p61)
+- Alias: Ideal (SRD p61)
- Source: (MDR p83)
|d6|Idéal|
diff --git a/Data/HD/hd_background_devot_lien.md b/Data/HD/hd_background_devot_lien.md
index b539229b..9d6bd539 100644
--- a/Data/HD/hd_background_devot_lien.md
+++ b/Data/HD/hd_background_devot_lien.md
@@ -4,7 +4,7 @@
##### Lien
-- AltName: Bond (SRD p61)
+- Alias: Bond (SRD p61)
- Source: (MDR p83)
|d6|Lien|
diff --git a/Data/HD/hd_background_devot_personnalites_suggerees.md b/Data/HD/hd_background_devot_personnalites_suggerees.md
index 6c8696e7..a53ba36b 100644
--- a/Data/HD/hd_background_devot_personnalites_suggerees.md
+++ b/Data/HD/hd_background_devot_personnalites_suggerees.md
@@ -4,7 +4,7 @@
#### Personnalités suggérées
-- AltName: Feature: Suggested Characteristics (SRD p61)
+- Alias: Feature: Suggested Characteristics (SRD p61)
- Source: (MDR p82)
La personnalité des acolytes est façonnée par leurs expériences dans les temples ou les communautés religieuses. Leurs études de l'histoire et des fondements de leur religion, ainsi que leurs rapports aux temples, autels ou clergés ont une influence sur leurs manières et leurs idéaux.
diff --git a/Data/HD/hd_background_devot_trait_de_personnalite.md b/Data/HD/hd_background_devot_trait_de_personnalite.md
index 308f3fe7..3989aeea 100644
--- a/Data/HD/hd_background_devot_trait_de_personnalite.md
+++ b/Data/HD/hd_background_devot_trait_de_personnalite.md
@@ -4,7 +4,7 @@
##### Trait de personnalité
-- AltName: Feature: Personality Trait (SRD p61)
+- Alias: Feature: Personality Trait (SRD p61)
- Source: (MDR p82)
|d8|Trait de personnalité|
diff --git a/Data/HD/hd_backgrounds.md b/Data/HD/hd_backgrounds.md
index 52ef5207..228c801f 100644
--- a/Data/HD/hd_backgrounds.md
+++ b/Data/HD/hd_backgrounds.md
@@ -5,7 +5,7 @@
## Historique
-- AltName: Backgrounds (SRD p60)
+- Alias: Backgrounds (SRD p60)
- Source: (MDR p77)
Toute histoire a un commencement. L'historique de votre personnage permet de révéler ses origines, comment il est devenu aventurier et quelle est sa place dans le monde. Votre guerrier a peut-être d'abord été un preux chevalier ou un vétéran endurci. Votre sorcier était peut-être quant à lui un sage ou un artisan, et votre roublard un voleur affilié à la guilde ou un amuseur public.
diff --git a/Data/HD/hd_backgrounds_equipement.md b/Data/HD/hd_backgrounds_equipement.md
index 5637adc7..843da01f 100644
--- a/Data/HD/hd_backgrounds_equipement.md
+++ b/Data/HD/hd_backgrounds_equipement.md
@@ -4,7 +4,7 @@
### Équipement
-- AltName: Equipment (SRD p60)
+- Alias: Equipment (SRD p60)
- Source: (MDR p77)
Chaque historique donne accès à un équipement de départ. Si vous utilisez la règle optionnelle qui vous permet à la place d'acheter votre propre équipement, vous ne recevez aucun équipement lié à votre historique. Cette option est décrite dans le chapitre 1, Création du personnage, page 30.
diff --git a/Data/HD/hd_backgrounds_langues.md b/Data/HD/hd_backgrounds_langues.md
index d7675d7a..ca5412ed 100644
--- a/Data/HD/hd_backgrounds_langues.md
+++ b/Data/HD/hd_backgrounds_langues.md
@@ -4,7 +4,7 @@
### Langues
-- AltName: Languages (SRD p60)
+- Alias: Languages (SRD p60)
- Source: (MDR p77)
Le passé de certains personnages leur donne la capacité de pratiquer des langues supplémentaires à celles accordées par leur race. Reportez-vous à la section Langues du présent chapitre.
diff --git a/Data/HD/hd_backgrounds_maitrises.md b/Data/HD/hd_backgrounds_maitrises.md
index 3e036f9f..e326d7d7 100644
--- a/Data/HD/hd_backgrounds_maitrises.md
+++ b/Data/HD/hd_backgrounds_maitrises.md
@@ -4,7 +4,7 @@
### Maîtrises
-- AltName: Proficiencies (SRD p60)
+- Alias: Proficiencies (SRD p60)
- Source: (MDR p77)
Chaque historique confère à un personnage la maîtrise de deux compétences. Ces compétences sont décrites dans le chapitre 7, Utiliser les caractéristiques, pages 257-267. En plus de cela, la plupart des historiques permettent à un personnage d'acquérir la maîtrise d'un ou plusieurs outils. Ces outils sont décrits dans le chapitre 5, Équipement, pages 236-237. Si un personnage gagne une même maîtrise de deux sources différentes, il peut choisir une maîtrise différente du même type (compétence ou outil) à la place.
diff --git a/Data/HD/hd_backgrounds_personnaliser_votre_historique.md b/Data/HD/hd_backgrounds_personnaliser_votre_historique.md
index 40fca06f..b3477e15 100644
--- a/Data/HD/hd_backgrounds_personnaliser_votre_historique.md
+++ b/Data/HD/hd_backgrounds_personnaliser_votre_historique.md
@@ -4,7 +4,7 @@
### Personnaliser votre historique
-- AltName: Customizing a Background (SRD p60)
+- Alias: Customizing a Background (SRD p60)
- Source: (MDR p78)
Vous voudrez peut-être adapter certains détails d'un historique pour qu'il corresponde mieux à votre personnage ou au cadre de la campagne. Afin de le personnaliser, vous pouvez remplacer une aptitude par une autre, choisir deux compétences et un total de deux maîtrises d'outils ou de deux langues parmi les historiques qui vous sont proposés ici. Vous pouvez choisir d'utiliser l'équipement de départ proposé ou d'acheter vous-même votre équipement, comme expliqué au chapitre 1, Création du personnage, page 30. Enfin, vous pouvez choisir deux traits de personnalité, un idéal, un lien et un défaut. Si vous n'arrivez pas à trouver d'option qui corresponde à l'historique que vous voulez donner à votre personnage, vous pouvez collaborer avec le MJ pour en créer une.
diff --git a/Data/HD/hd_backgrounds_suggestions_de_personnalites.md b/Data/HD/hd_backgrounds_suggestions_de_personnalites.md
index 669d036b..2a979565 100644
--- a/Data/HD/hd_backgrounds_suggestions_de_personnalites.md
+++ b/Data/HD/hd_backgrounds_suggestions_de_personnalites.md
@@ -4,7 +4,7 @@
### Suggestions de personnalités
-- AltName: Suggested Characteristics (SRD p60)
+- Alias: Suggested Characteristics (SRD p60)
- Source: (MDR p77)
Chaque historique vous suggère des traits de personnalité liés à l'histoire de votre personnage. Vous pouvez les sélectionner, lancer des dés pour laisser le hasard décider, ou utiliser ces suggestions pour inventer vousmême les spécificités de votre personnage.
diff --git a/Data/HD/hd_barbarian.md b/Data/HD/hd_barbarian.md
index 44965dce..a87c41f8 100644
--- a/Data/HD/hd_barbarian.md
+++ b/Data/HD/hd_barbarian.md
@@ -5,7 +5,7 @@
# Barbare
-- AltName: Barbarian (SRD p8)
+- Alias: Barbarian (SRD p8)
- Source: (MDR p114)
En tant que barbare, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_barbarian_berserker.md b/Data/HD/hd_barbarian_berserker.md
index 8dae3f98..c683eebc 100644
--- a/Data/HD/hd_barbarian_berserker.md
+++ b/Data/HD/hd_barbarian_berserker.md
@@ -5,7 +5,7 @@
# Voie du berserker
-- AltName: Wisdom (SRD p9)
+- Alias: Wisdom (SRD p9)
- Source: (MDR p116)
Pour certains barbares, la rage est un moyen d'atteindre leur but, et ce but est la violence. Animé par une furie débridée, le berserker suit une voie sanglante.
diff --git a/Data/HD/hd_bard.md b/Data/HD/hd_bard.md
index f2516806..46100613 100644
--- a/Data/HD/hd_bard.md
+++ b/Data/HD/hd_bard.md
@@ -5,7 +5,7 @@
# Barde
-- AltName: Bard (SRD p11)
+- Alias: Bard (SRD p11)
- Source: (MDR p121)
En tant que barde, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_bard_knowledge.md b/Data/HD/hd_bard_knowledge.md
index 2be6edf9..79b930f2 100644
--- a/Data/HD/hd_bard_knowledge.md
+++ b/Data/HD/hd_bard_knowledge.md
@@ -5,7 +5,7 @@
# Collège du savoir
-- AltName: College of Lore (SRD p13)
+- Alias: College of Lore (SRD p13)
- Source: (MDR p125)
Les bardes du collège du savoir sont versés dans de nombreux domaines de connaissance et ils collectionnent des fragments d'information issus de sources aussi diverses que des traités écrits par des érudits ou des légendes rurales. Qu'ils chantent des ballades populaires dans les tavernes ou interprètent des compositions élaborées dans les cours royales, ces bardes utilisent leurs dons pour captiver leur auditoire. Et quand les applaudissements s'arrêtent, l'audience se retrouve parfois en train de remettre en question ce qui semblait auparavant des évidences, comme leur foi dans la religion locale ou leur loyauté envers leur seigneur.
diff --git a/Data/HD/hd_beyond1stlevel.md b/Data/HD/hd_beyond1stlevel.md
index 109161a1..1e7d4dad 100644
--- a/Data/HD/hd_beyond1stlevel.md
+++ b/Data/HD/hd_beyond1stlevel.md
@@ -3,7 +3,7 @@
---
-- AltName: Beyond 1st Level (SRD p56)
+- Alias: Beyond 1st Level (SRD p56)
- Source: (MDR p32)
# Au-delà du niveau 1
diff --git a/Data/HD/hd_cleric.md b/Data/HD/hd_cleric.md
index 5225e48e..c6d36b73 100644
--- a/Data/HD/hd_cleric.md
+++ b/Data/HD/hd_cleric.md
@@ -5,7 +5,7 @@
# Clerc
-- AltName: Cleric (SRD p15)
+- Alias: Cleric (SRD p15)
- Source: (MDR p129)
En tant que clerc, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_cleric_life.md b/Data/HD/hd_cleric_life.md
index bf399cc4..9d2c3842 100644
--- a/Data/HD/hd_cleric_life.md
+++ b/Data/HD/hd_cleric_life.md
@@ -5,7 +5,7 @@
# Domaine de la Vie
-- AltName: Life Domain (SRD p17)
+- Alias: Life Domain (SRD p17)
- Source: (MDR p418)
Le domaine de la vie est centré sur l’énergie de vie positive, une des forces fondamentale de l’univers, qui est à l’origine de toute vie. Les dieux de la vie sont les défenseurs de la vitalité et de la santé, et ils soignent les malades et les blessés, prennent soin des individus dans le besoin et font barrage aux forces de la mort et de la non-mort. Presque toutes les déités qui ne sont pas mauvaises peuvent se réclamer d’une influence dans ce domaine, et plus particulièrement les déités agricoles ou solaires, celles de la guérison et de l’endurance, ou les divinités du foyer et de la communauté.
diff --git a/Data/HD/hd_combat.md b/Data/HD/hd_combat.md
index b70e68f7..243d742b 100644
--- a/Data/HD/hd_combat.md
+++ b/Data/HD/hd_combat.md
@@ -5,7 +5,7 @@
# Combattre
-- AltName: The Order of Combat (SRD p90)
+- Alias: The Order of Combat (SRD p90)
- Source: (MDR p283)
diff --git a/Data/HD/hd_combat_abri.md b/Data/HD/hd_combat_abri.md
index 4391f3d5..3a733847 100644
--- a/Data/HD/hd_combat_abri.md
+++ b/Data/HD/hd_combat_abri.md
@@ -4,7 +4,7 @@
## Abri
-- AltName: Cover (SRD p96)
+- Alias: Cover (SRD p96)
- Source: (MDR p293)
Les murs, les arbres, les créatures, et d'autres obstacles constituent pendant un combat autant d'abris potentiels qui rendent une cible plus difficile à blesser. Une cible ne bénéficie d'un abri que si une attaque ou un autre effet provient depuis l'autre côté de ce qui sert d'abri.
diff --git a/Data/HD/hd_combat_action_bonus.md b/Data/HD/hd_combat_action_bonus.md
index 8b648daa..2e524235 100644
--- a/Data/HD/hd_combat_action_bonus.md
+++ b/Data/HD/hd_combat_action_bonus.md
@@ -4,7 +4,7 @@
#### Action bonus
-- AltName: Bonus Actions (SRD p90)
+- Alias: Bonus Actions (SRD p90)
- Source: (MDR p285)
Plusieurs aptitudes de classes, sorts et autres capacités vous permettent d'accomplir une action supplémentaire lors de votre tour. L'aptitude ruse, par exemple, permet à un roublard d'accomplir une action bonus. Vous ne pouvez accomplir d'action bonus que si une capacité spéciale, un sort ou une aptitude stipule que vous pouvez « accomplir quelque chose comme action bonus ». Si ce n'est pas le cas, vous ne pouvez pas accomplir d'action bonus.
diff --git a/Data/HD/hd_combat_actions_en_combat.md b/Data/HD/hd_combat_actions_en_combat.md
index d91c3309..5714763f 100644
--- a/Data/HD/hd_combat_actions_en_combat.md
+++ b/Data/HD/hd_combat_actions_en_combat.md
@@ -4,7 +4,7 @@
## Actions en combat
-- AltName: Actions in Combat (SRD p93)
+- Alias: Actions in Combat (SRD p93)
- Source: (MDR p288)
Quand vous accomplissez une action lors de votre tour, vous avez le choix entre les actions présentées ci-dessous, une action qui dépend de votre classe ou d'une aptitude particulière, ou, enfin, une action que vous improvisez. De nombreux monstres possèdent des actions qui leurs sont propres et qui sont présentées dans leur profils statistiques.
diff --git a/Data/HD/hd_combat_aider.md b/Data/HD/hd_combat_aider.md
index 1cb258a9..4002191c 100644
--- a/Data/HD/hd_combat_aider.md
+++ b/Data/HD/hd_combat_aider.md
@@ -4,7 +4,7 @@
### Aider
-- AltName: Help (SRD p93)
+- Alias: Help (SRD p93)
- Source: (MDR p288)
Vous pouvez apporter votre aide à une autre créature pour réaliser une tâche. Quand vous choisissez l'action aider, la créature que vous aidez obtient un avantage sur le prochain test de caractéristique qu'elle fait dans le but d'accomplir la tâche pour laquelle vous coopérez, mais seulement si elle fait ce test avant le début de votre prochain tour.
diff --git a/Data/HD/hd_combat_assommer_une_creature.md b/Data/HD/hd_combat_assommer_une_creature.md
index 57c29931..0a990a3d 100644
--- a/Data/HD/hd_combat_assommer_une_creature.md
+++ b/Data/HD/hd_combat_assommer_une_creature.md
@@ -4,7 +4,7 @@
### Assommer une créature
-- AltName: Knocking a Creature Out (SRD p98)
+- Alias: Knocking a Creature Out (SRD p98)
- Source: (MDR p294)
Parfois, un attaquant souhaite neutraliser une ennemi plutôt que le tuer. Quand il réussit à faire tomber cette créature à 0 point de vie suite à une attaque de corps-àcorps, il a la possibilité de l'assommer. L'attaquant peut faire ce choix au moment d'infliger les dégâts. La créature est inconsciente et est considérée comme stabilisée.
diff --git a/Data/HD/hd_combat_attaquants_et_cibles_invisibles.md b/Data/HD/hd_combat_attaquants_et_cibles_invisibles.md
index 7e02aae8..54e78b22 100644
--- a/Data/HD/hd_combat_attaquants_et_cibles_invisibles.md
+++ b/Data/HD/hd_combat_attaquants_et_cibles_invisibles.md
@@ -4,7 +4,7 @@
### Attaquants et cibles invisibles
-- AltName: Unseen Attackers and Targets (SRD p94)
+- Alias: Unseen Attackers and Targets (SRD p94)
- Source: (MDR p291)
Les combattants essaient souvent d'échapper à la vigilance de leurs ennemis en se cachant, en lançant un sort d'invisibilité ou en se fondant dans les ténèbres.
diff --git a/Data/HD/hd_combat_attaque_a_distance.md b/Data/HD/hd_combat_attaque_a_distance.md
index 3f6bd4cb..c2b494a4 100644
--- a/Data/HD/hd_combat_attaque_a_distance.md
+++ b/Data/HD/hd_combat_attaque_a_distance.md
@@ -4,7 +4,7 @@
### Attaque à distance
-- AltName: Ranged Attacks (SRD p95)
+- Alias: Ranged Attacks (SRD p95)
- Source: (MDR p291)
Vous faites une attaque à distance quand vous utilisez une arme ou un projectile quelconque qui permet de toucher un ennemi qui se trouve à distance, comme un arc, une arbalète ou une hachette que vous lancez. Un monstre qui projette des épines avec sa queue fait lui aussi une attaque à distance. De nombreux sorts sont également considérés comme des attaques à distance.
diff --git a/Data/HD/hd_combat_attaque_a_distance_dans_un_combat_au_corps_a_corps.md b/Data/HD/hd_combat_attaque_a_distance_dans_un_combat_au_corps_a_corps.md
index c97241f6..9652debe 100644
--- a/Data/HD/hd_combat_attaque_a_distance_dans_un_combat_au_corps_a_corps.md
+++ b/Data/HD/hd_combat_attaque_a_distance_dans_un_combat_au_corps_a_corps.md
@@ -4,7 +4,7 @@
#### Attaque à distance dans un combat au corps-à-corps
-- AltName: Ranged Attacks in Close Combat (SRD p95)
+- Alias: Ranged Attacks in Close Combat (SRD p95)
- Source: (MDR p291)
Il est plus difficile de faire une attaque à distance si un ennemi est à côté de vous. Quand vous faites une attaque à distance en utilisant une arme, un sort, ou par un autre moyen, vous subissez un désavantage sur votre jet d'attaque si vous vous trouvez dans un rayon de 1,50 mètre d'une créature hostile qui se trouve dans votre champ de vision et qui n'est pas neutralisée.
diff --git a/Data/HD/hd_combat_attaque_de_corps_a_corps.md b/Data/HD/hd_combat_attaque_de_corps_a_corps.md
index 37e834e6..34ab6601 100644
--- a/Data/HD/hd_combat_attaque_de_corps_a_corps.md
+++ b/Data/HD/hd_combat_attaque_de_corps_a_corps.md
@@ -4,7 +4,7 @@
### Attaque de corps-à-corps
-- AltName: Melee Attacks (SRD p95)
+- Alias: Melee Attacks (SRD p95)
- Source: (MDR p291)
Une attaque de corps-à-corps vous permet d'attaquer un ennemi qui se trouve à la portée de votre allonge. Une attaque de corps-à-corps est généralement portée avec une arme tenue à une ou deux mains, comme une épée, un marteau de guerre ou une hache. Les monstres peuvent également attaquer en frappant avec leurs griffes, leurs cornes, leurs dents, leurs tentacules ou tout autre membre. Il existe aussi quelques sorts qui permettent de porter une attaque de corps-à-corps.
diff --git a/Data/HD/hd_combat_attaque_dopportunite.md b/Data/HD/hd_combat_attaque_dopportunite.md
index c31a9de3..b1bb8448 100644
--- a/Data/HD/hd_combat_attaque_dopportunite.md
+++ b/Data/HD/hd_combat_attaque_dopportunite.md
@@ -4,7 +4,7 @@
#### Attaque d'opportunité
-- AltName: Opportunity Attacks (SRD p95)
+- Alias: Opportunity Attacks (SRD p95)
- Source: (MDR p292)
Au coeur d'un combat, chacun reste à l'affût d'une chance de frapper un ennemi qui baisse sa garde parce qu'il est en train de fuir ou de passer devant soi. Une telle attaque est appelée une attaque d'opportunité.
diff --git a/Data/HD/hd_combat_attaquer.md b/Data/HD/hd_combat_attaquer.md
index 767fd601..d94605de 100644
--- a/Data/HD/hd_combat_attaquer.md
+++ b/Data/HD/hd_combat_attaquer.md
@@ -4,7 +4,7 @@
### Attaquer
-- AltName: Attack (SRD p93)
+- Alias: Attack (SRD p93)
- Source: (MDR p288)
L'action de combat la plus courante est attaquer, que ce soit en frappant avec une épée, en tirant une flèche avec un arc ou en combattant à mains nues.
diff --git a/Data/HD/hd_combat_autres_activites_pendant_votre_tour.md b/Data/HD/hd_combat_autres_activites_pendant_votre_tour.md
index 044e57b7..4acac567 100644
--- a/Data/HD/hd_combat_autres_activites_pendant_votre_tour.md
+++ b/Data/HD/hd_combat_autres_activites_pendant_votre_tour.md
@@ -4,7 +4,7 @@
#### Autres activités pendant votre tour
-- AltName: Other Activity on Your Turn (SRD p91)
+- Alias: Other Activity on Your Turn (SRD p91)
- Source: (MDR p285)
Pendant votre tour, vous pouvez faire de nombreuses choses qui ne vous demandent pas de vous déplacer ni d'utiliser une action.
diff --git a/Data/HD/hd_combat_bousculer_une_creature.md b/Data/HD/hd_combat_bousculer_une_creature.md
index 19b2722f..6736b9aa 100644
--- a/Data/HD/hd_combat_bousculer_une_creature.md
+++ b/Data/HD/hd_combat_bousculer_une_creature.md
@@ -4,7 +4,7 @@
#### Bousculer une créature
-- AltName: Shoving a Creature (SRD p96)
+- Alias: Shoving a Creature (SRD p96)
- Source: (MDR p292)
Vous pouvez utiliser l'action attaquer pour porter une attaque de corps-à-corps spéciale consistant à bousculer une créature, soit pour la faire tomber à terre, soit pour la repousser loin de vous. Si vous pouvez accomplir plusieurs attaques pendant votre action attaquer, cette attaque spéciale remplace l'une d'entre elles.
diff --git a/Data/HD/hd_combat_chercher.md b/Data/HD/hd_combat_chercher.md
index 340ec205..1a6f4c33 100644
--- a/Data/HD/hd_combat_chercher.md
+++ b/Data/HD/hd_combat_chercher.md
@@ -4,7 +4,7 @@
### Chercher
-- AltName: Search (SRD p94)
+- Alias: Search (SRD p94)
- Source: (MDR p288)
Quand vous choisissez l'action chercher, toute votre attention est tournée vers l'objet de votre recherche. En fonction de ce que vous cherchez, le MJ peut vous demander de faire un test de Sagesse (Perception) ou un d'Intelligence (Investigation).
diff --git a/Data/HD/hd_combat_combat_a_deux_armes.md b/Data/HD/hd_combat_combat_a_deux_armes.md
index 8634b313..94ea5ded 100644
--- a/Data/HD/hd_combat_combat_a_deux_armes.md
+++ b/Data/HD/hd_combat_combat_a_deux_armes.md
@@ -4,7 +4,7 @@
#### Combat à deux armes
-- AltName: Two-Weapon Fighting (SRD p95)
+- Alias: Two-Weapon Fighting (SRD p95)
- Source: (MDR p292)
Quand vous choisissez l'action attaquer et que vous utilisez pour attaquer une arme de corps-à-corps légère que vous tenez dans une main, vous pouvez utiliser une action bonus pour attaquer avec une autre arme légère de corps-à-corps que vous tenez dans votre autre main. Vous n'ajoutez pas votre modificateur de caractéristique aux dégâts de cette attaque bonus, sauf si ce modificateur est négatif.
diff --git a/Data/HD/hd_combat_combat_monte.md b/Data/HD/hd_combat_combat_monte.md
index d4a3bf1e..0300682c 100644
--- a/Data/HD/hd_combat_combat_monte.md
+++ b/Data/HD/hd_combat_combat_monte.md
@@ -4,7 +4,7 @@
## Combat monté
-- AltName: Mounted Combat (SRD p99)
+- Alias: Mounted Combat (SRD p99)
- Source: (MDR p295)
Un chevalier qui charge en plein coeur de la bataille sur son cheval de guerre, un magicien qui lance des sorts monté sur un griffon ou un clerc qui traverse le ciel à dos de pégase, tous ces héros bénéficient de la vitesse et de la mobilité de leur monture.
diff --git a/Data/HD/hd_combat_combat_sous_marin.md b/Data/HD/hd_combat_combat_sous_marin.md
index 3a0a2479..deedc118 100644
--- a/Data/HD/hd_combat_combat_sous_marin.md
+++ b/Data/HD/hd_combat_combat_sous_marin.md
@@ -4,7 +4,7 @@
## Combat sous-marin
-- AltName: Underwater Combat (SRD p99)
+- Alias: Underwater Combat (SRD p99)
- Source: (MDR p295)
Quand les aventuriers poursuivent des sahuagins jusqu'à leur repaire sous-marin, affrontent des requins au coeur d'une épave antique ou se trouvent dans une salle de donjon inondée, ils sont contraints de se battre dans un environnement difficile. Sous l'eau, les règles suivantes s'appliquent.
diff --git a/Data/HD/hd_combat_controler_sa_monture.md b/Data/HD/hd_combat_controler_sa_monture.md
index 325b17c6..81ac2157 100644
--- a/Data/HD/hd_combat_controler_sa_monture.md
+++ b/Data/HD/hd_combat_controler_sa_monture.md
@@ -4,7 +4,7 @@
### Contrôler sa monture
-- AltName: Controlling a Mount (SRD p99)
+- Alias: Controlling a Mount (SRD p99)
- Source: (MDR p295)
Tant que vous êtes sur le dos de votre monture, vous avez deux options : soit vous pouvez contrôler vousmême votre monture, soit vous la laissez agir à sa guise. Les créatures intelligentes, comme les dragons, restent toujours libres de leurs actions.
diff --git a/Data/HD/hd_combat_coups_critiques.md b/Data/HD/hd_combat_coups_critiques.md
index 437cd11f..88b13c01 100644
--- a/Data/HD/hd_combat_coups_critiques.md
+++ b/Data/HD/hd_combat_coups_critiques.md
@@ -4,7 +4,7 @@
#### Coups critiques
-- AltName: Critical Hits (SRD p96)
+- Alias: Critical Hits (SRD p96)
- Source: (MDR p293)
Si vous réussissez un coup critique contre une cible, vous pouvez lancer des dés de dégâts supplémentaires. Lancez l'ensemble des dés de dégâts deux fois et additionnez- les, puis ajoutez à ce total les modificateurs. Pour simplifier les choses, vous pouvez lancer tous les dés de dégâts à la fois.
diff --git a/Data/HD/hd_combat_degats.md b/Data/HD/hd_combat_degats.md
index b6a046b0..4a8df498 100644
--- a/Data/HD/hd_combat_degats.md
+++ b/Data/HD/hd_combat_degats.md
@@ -4,7 +4,7 @@
## Dégâts
-- AltName: Hit Points (SRD p96)
+- Alias: Hit Points (SRD p96)
- Source: (MDR p293)
Lorsqu'une attaque est réussie, la créature ciblée subit des dégâts. Certaines capacités ou un coup critique peuvent altérer la quantité de dégâts infligés.
diff --git a/Data/HD/hd_combat_deplacement_en_vol.md b/Data/HD/hd_combat_deplacement_en_vol.md
index 4804e1f4..0635e696 100644
--- a/Data/HD/hd_combat_deplacement_en_vol.md
+++ b/Data/HD/hd_combat_deplacement_en_vol.md
@@ -4,7 +4,7 @@
#### Déplacement en vol
-- AltName: Flying Movement (SRD p92)
+- Alias: Flying Movement (SRD p92)
- Source: (MDR p287)
Les créatures volantes bénéficient d'une grande mobilité. En revanche elles doivent également composer avec le risque de tomber. Si une créature volante est jetée à terre, voit sa vitesse réduite à 0 ou se retrouve d'une manière ou d'une autre dans l'incapacité de bouger, elle chute, à moins d'être en mesure de faire du vol stationnaire ou d'être maintenue dans les airs par magie grâce au sort vol, par exemple.
diff --git a/Data/HD/hd_combat_deplacement_et_position.md b/Data/HD/hd_combat_deplacement_et_position.md
index 04b2dc38..55e23894 100644
--- a/Data/HD/hd_combat_deplacement_et_position.md
+++ b/Data/HD/hd_combat_deplacement_et_position.md
@@ -4,7 +4,7 @@
## Déplacement et position
-- AltName: Movement and Position (SRD p91)
+- Alias: Movement and Position (SRD p91)
- Source: (MDR p286)
Au cours d'un combat, les héros et leurs adversaires sont constamment en mouvement et utilisent souvent leur déplacement ou leur position pour tenter de prendre le dessus sur leurs ennemis.
diff --git a/Data/HD/hd_combat_emplacement.md b/Data/HD/hd_combat_emplacement.md
index 52d28c00..5ee7272e 100644
--- a/Data/HD/hd_combat_emplacement.md
+++ b/Data/HD/hd_combat_emplacement.md
@@ -4,7 +4,7 @@
#### Emplacement
-- AltName: Space (SRD p92)
+- Alias: Space (SRD p92)
- Source: (MDR p287)
L'emplacement d'une créature correspond à la surface qu'elle contrôle lors d'un combat et non à la surface qu'elle occupe réellement. Par exemple, une créature de taille moyenne classique ne fait pas 1,50 mètre de large, mais elle contrôle une surface de 1,50 mètre de côté. Si un hobgobelin de taille moyenne se trouve dans l'embrasure d'une porte de 1,50 mètre de large, les autres créatures ne peuvent passer que si le hobgobelin leur permet.
diff --git a/Data/HD/hd_combat_empoignade.md b/Data/HD/hd_combat_empoignade.md
index 45fbbd24..f81bfd0c 100644
--- a/Data/HD/hd_combat_empoignade.md
+++ b/Data/HD/hd_combat_empoignade.md
@@ -4,7 +4,7 @@
#### Empoignade
-- AltName: Grappling (SRD p95)
+- Alias: Grappling (SRD p95)
- Source: (MDR p292)
Quand vous tentez d'empoigner une créature ou de lutter avec elle, vous utilisez l'action attaquer pour faire une attaque de corps-à-corps spéciale appelée empoignade. Si vous avez la possibilité de faire plusieurs attaques pendant votre action attaquer, l'empoignade remplace l'une d'entre elle.
diff --git a/Data/HD/hd_combat_esquiver.md b/Data/HD/hd_combat_esquiver.md
index dd822c3e..5e644f3a 100644
--- a/Data/HD/hd_combat_esquiver.md
+++ b/Data/HD/hd_combat_esquiver.md
@@ -4,7 +4,7 @@
### Esquiver
-- AltName: Dodge (SRD p93)
+- Alias: Dodge (SRD p93)
- Source: (MDR p288)
Quand vous choisissez l'action esquiver, votre unique objectif est d'éviter les attaques. Jusqu'au début de votre tour suivant, tout jet d'attaque qui vous prend pour cible subit un désavantage si vous pouvez voir l'attaquant, et vous bénéficiez d'un avantage pour tout jet de sauvegarde de Dextérité. Vous perdez les bénéfices de cette action si vous êtes neutralisé (voir page 302) ou si votre vitesse est réduite à 0.
diff --git a/Data/HD/hd_combat_etre_a_terre.md b/Data/HD/hd_combat_etre_a_terre.md
index cf3758e5..a2aba350 100644
--- a/Data/HD/hd_combat_etre_a_terre.md
+++ b/Data/HD/hd_combat_etre_a_terre.md
@@ -4,7 +4,7 @@
### Être à terre
-- AltName: Being Prone (SRD p91)
+- Alias: Being Prone (SRD p91)
- Source: (MDR p286)
Il n'est pas rare que des combattants se trouvent au sol, allongés par terre, qu'ils aient été renversés ou qu'ils se soient eux-mêmes jetés au sol. Dans le cadre du jeu, on dit qu'ils sont à terre, un état décrit à la page 301 du chapitre 10, Gérer la santé.
diff --git a/Data/HD/hd_combat_faire_1_ou_20.md b/Data/HD/hd_combat_faire_1_ou_20.md
index 8a3136ee..e95a345a 100644
--- a/Data/HD/hd_combat_faire_1_ou_20.md
+++ b/Data/HD/hd_combat_faire_1_ou_20.md
@@ -4,7 +4,7 @@
#### Faire 1 ou 20
-- AltName: Rolling 1 or 20 (SRD p94)
+- Alias: Rolling 1 or 20 (SRD p94)
- Source: (MDR p291)
Parfois, le destin se montre particulièrement cruel ou clément envers un combattant. Et donc, un novice va parfois réussir une attaque très improbable et le vétéran confirmé va rater un coup tout fait.
diff --git a/Data/HD/hd_combat_fragmenter_votre_mouvement.md b/Data/HD/hd_combat_fragmenter_votre_mouvement.md
index 012b6275..8a566f9f 100644
--- a/Data/HD/hd_combat_fragmenter_votre_mouvement.md
+++ b/Data/HD/hd_combat_fragmenter_votre_mouvement.md
@@ -4,7 +4,7 @@
#### Fragmenter votre mouvement
-- AltName: Breaking Up Your Move (SRD p91)
+- Alias: Breaking Up Your Move (SRD p91)
- Source: (MDR p286)
Pendant votre tour, vous pouvez fragmenter votre déplacement et utiliser une partie de votre déplacement avant votre action et le reste après celle-ci. Par exemple, si votre vitesse est de 9 mètres, vous pouvez vous déplacer de 3 mètres, faire une action, puis parcourir les 6 mètres restant.
diff --git a/Data/HD/hd_combat_initiative.md b/Data/HD/hd_combat_initiative.md
index 5c1a8369..c89243d4 100644
--- a/Data/HD/hd_combat_initiative.md
+++ b/Data/HD/hd_combat_initiative.md
@@ -4,7 +4,7 @@
### Initiative
-- AltName: Initiative (SRD p90)
+- Alias: Initiative (SRD p90)
- Source: (MDR p284)
L'initiative permet de déterminer l'ordre des tours pendant un combat. Au début du combat, chaque par- ticipant fait un test de Dextérité afin de déterminer son rang dans l'ordre d'initiative. Le MJ lance un seul dé pour un groupe de créatures identiques, de sorte que tous les membres de ce groupe agissent en même temps.
diff --git a/Data/HD/hd_combat_interagir_avec_les_objets_alentours.md b/Data/HD/hd_combat_interagir_avec_les_objets_alentours.md
index 752dc554..4cffdefc 100644
--- a/Data/HD/hd_combat_interagir_avec_les_objets_alentours.md
+++ b/Data/HD/hd_combat_interagir_avec_les_objets_alentours.md
@@ -4,7 +4,7 @@
### Interagir avec les objets alentours
-- AltName: Interacting with Objects Around You (SRD p92)
+- Alias: Interacting with Objects Around You (SRD p92)
- Source: (MDR p287)
Voici quelques exemples de ce que vous pouvez accomplir librement, en même temps que votre déplacement ou que votre action. Pour rappel, vous ne pouvez interagir librement qu'avec un seul objet par tour de jeu. Interagir avec deux objets vous oblige à utiliser votre action.
diff --git a/Data/HD/hd_combat_jets_dattaque.md b/Data/HD/hd_combat_jets_dattaque.md
index f62b9a6b..c850d0a9 100644
--- a/Data/HD/hd_combat_jets_dattaque.md
+++ b/Data/HD/hd_combat_jets_dattaque.md
@@ -4,7 +4,7 @@
### Jets d'attaque
-- AltName: Attack Rolls (SRD p94)
+- Alias: Attack Rolls (SRD p94)
- Source: (MDR p290)
Quand vous faites une attaque, votre jet d'attaque permet de déterminer si vous touchez votre cible ou non. Pour faire un jet d'attaque, lancez un d20 et ajoutez les modificateurs appropriés. Si le total du dé et des modificateurs est supérieur ou égal à la classe d'armure (CA) de votre cible, votre attaque est réussie. La CA d'un personnage est déterminée au moment de sa création, tandis que la CA d'un monstre est indiquée dans ses statistiques.
diff --git a/Data/HD/hd_combat_jets_de_degats.md b/Data/HD/hd_combat_jets_de_degats.md
index aaad54f0..11cf60f5 100644
--- a/Data/HD/hd_combat_jets_de_degats.md
+++ b/Data/HD/hd_combat_jets_de_degats.md
@@ -4,7 +4,7 @@
### Jets de dégâts
-- AltName: Damage Rolls (SRD p96)
+- Alias: Damage Rolls (SRD p96)
- Source: (MDR p293)
Pour chaque arme, sort ou capacité offensive de monstre, les dégâts infligés sont décrits dans la rubrique correspondante. Quand vous lancez un ou plusieurs dés de dégâts, vous devez ajouter tous les modificateurs, puis infliger ces dégâts à votre cible. Les armes magiques, les capacités spéciales et d'autres facteurs peuvent infliger des dégâts bonus. Il est également possible qu'un malus vous fasse infliger un nombre de dégâts égal à 0, mais vous ne pouvez jamais infliger de dégâts négatifs.
diff --git a/Data/HD/hd_combat_lancer_un_sort.md b/Data/HD/hd_combat_lancer_un_sort.md
index d13aa950..94814046 100644
--- a/Data/HD/hd_combat_lancer_un_sort.md
+++ b/Data/HD/hd_combat_lancer_un_sort.md
@@ -4,7 +4,7 @@
### Lancer un sort
-- AltName: Cast a Spell (SRD p93)
+- Alias: Cast a Spell (SRD p93)
- Source: (MDR p288)
Les lanceurs de sort, comme les magiciens et les clercs ainsi que de nombreux monstres, ont accès à des sorts qu'ils peuvent utiliser avec une redoutable efficacité en combat. À chaque sort correspond un temps d'incantation : le descriptif du sort indique si le lancement du sort nécessite d'utiliser une action ou une réaction, ou doit être préparé pendant plusieurs minutes ou heures. Lancer un sort n'est donc pas nécessairement une action. La plupart des sorts ont un temps d'incantation d'une action, un lanceur de sort utilisera à ce moment une action de combat pour lancer un tel sort.
diff --git a/Data/HD/hd_combat_les_etapes_du_combat.md b/Data/HD/hd_combat_les_etapes_du_combat.md
index b0094bfa..6d22f9c8 100644
--- a/Data/HD/hd_combat_les_etapes_du_combat.md
+++ b/Data/HD/hd_combat_les_etapes_du_combat.md
@@ -4,7 +4,7 @@
### Les étapes du combat
-- AltName: Combat Step by Step (SRD p90)
+- Alias: Combat Step by Step (SRD p90)
- Source: (MDR p284)
1. Surprise. Le MJ détermine si l'une des créatures qui prend part au combat est surprise.
diff --git a/Data/HD/hd_combat_modificateurs_du_jet.md b/Data/HD/hd_combat_modificateurs_du_jet.md
index 2efed0cd..69565a11 100644
--- a/Data/HD/hd_combat_modificateurs_du_jet.md
+++ b/Data/HD/hd_combat_modificateurs_du_jet.md
@@ -4,7 +4,7 @@
#### Modificateurs du jet
-- AltName: Modifiers to the Roll (SRD p94)
+- Alias: Modifiers to the Roll (SRD p94)
- Source: (MDR p290)
Quand un joueur fait un jet d'attaque, les deux modificateurs les plus courants sont un modificateur de caractéristique et le bonus de maîtrise du personnage. Quand un monstre porte une attaque, il faut appliquer les modificateurs indiqués dans ses statistiques.
diff --git a/Data/HD/hd_combat_monter_et_descendre_de_sa_monture.md b/Data/HD/hd_combat_monter_et_descendre_de_sa_monture.md
index 582f77a8..7554c9ea 100644
--- a/Data/HD/hd_combat_monter_et_descendre_de_sa_monture.md
+++ b/Data/HD/hd_combat_monter_et_descendre_de_sa_monture.md
@@ -4,7 +4,7 @@
### Monter et descendre de sa monture
-- AltName: Mounting and Dismounting (SRD p99)
+- Alias: Mounting and Dismounting (SRD p99)
- Source: (MDR p295)
Au cours de votre déplacement, vous pouvez descendre de votre monture ou monter sur celle-ci si elle se trouve dans un rayon de 1,50 mètre de vous. Vous ne pouvez accomplir ce déplacement spécial qu'une fois par tour et il vous coûte la moitié de votre vitesse. Par exemple, si votre vitesse est de 9 mètres, vous devez utiliser 4,50 mètres de votre jauge de déplacement pour monter à cheval. Vous ne pourrez par monter à cheval s'il vous reste moins de 4,50 mètres ou si votre vitesse est réduite à 0.
diff --git a/Data/HD/hd_combat_opposition_en_combat.md b/Data/HD/hd_combat_opposition_en_combat.md
index f86736f1..21b53744 100644
--- a/Data/HD/hd_combat_opposition_en_combat.md
+++ b/Data/HD/hd_combat_opposition_en_combat.md
@@ -4,7 +4,7 @@
#### Opposition en combat
-- AltName: Contests in Combat (SRD p96)
+- Alias: Contests in Combat (SRD p96)
- Source: (MDR p292)
Au cours d'une bataille, vos prouesses ne valent que si elles sont supérieures à celles de votre ennemi. Une telle compétition est représentée par une opposition. Cette section présente les oppositions les plus courantes en combat qui nécessitent d'utiliser une action : empoigner ou bousculer une créature. Le MJ peut s'inspirer de ces règles pour improviser d'autres oppositions.
diff --git a/Data/HD/hd_combat_ordre_de_combat.md b/Data/HD/hd_combat_ordre_de_combat.md
index 85549f4c..cb8b8ded 100644
--- a/Data/HD/hd_combat_ordre_de_combat.md
+++ b/Data/HD/hd_combat_ordre_de_combat.md
@@ -4,7 +4,7 @@
## Ordre de combat
-- AltName: The Order of Combat (SRD p90)
+- Alias: The Order of Combat (SRD p90)
- Source: (MDR p284)
Un combat typique est la rencontre brutale de deux camps qui s'opposent. Un tourbillon de violence constitué de coups, de feintes, de parades, de sorts qui fusent entre des adversaires toujours en mouvement. Dans le cadre du jeu, le chaos du combat est organisé en un cycle de rounds et de tours. Un round est une période de 6 secondes dans le monde du jeu. Pendant un round, chaque créature qui participe au combat se voit attribuer un tour. L'ordre des tours de toutes les créatures présentes est déterminé au début du combat par les jets d'initiative. Une fois que chaque créature a agi lors de son tour, si aucun des camps n'a vaincu l'autre et si aucun des camps ne souhaite rompre l'affrontement, le combat continue pendant un nouveau round.
diff --git a/Data/HD/hd_combat_portee.md b/Data/HD/hd_combat_portee.md
index 159f7697..75a8b09d 100644
--- a/Data/HD/hd_combat_portee.md
+++ b/Data/HD/hd_combat_portee.md
@@ -4,7 +4,7 @@
#### Portée
-- AltName: Range (SRD p95)
+- Alias: Range (SRD p95)
- Source: (MDR p291)
Vous ne pouvez faire d'attaque à distance que contre des cibles qui se trouvent à une portée spécifique.
diff --git a/Data/HD/hd_combat_porter_une_attaque.md b/Data/HD/hd_combat_porter_une_attaque.md
index 3e6d5fff..be2d7b48 100644
--- a/Data/HD/hd_combat_porter_une_attaque.md
+++ b/Data/HD/hd_combat_porter_une_attaque.md
@@ -4,7 +4,7 @@
## Porter une attaque
-- AltName: Making an Attack (SRD p94)
+- Alias: Making an Attack (SRD p94)
- Source: (MDR p290)
Que vous portiez une attaque avec une arme de corpsà- corps, une arme à distance ou que vous fassiez un jet d'attaque dans le cadre d'un sort, cette attaque se décompose ainsi :
diff --git a/Data/HD/hd_combat_reaction.md b/Data/HD/hd_combat_reaction.md
index 90e19c16..aae0a89b 100644
--- a/Data/HD/hd_combat_reaction.md
+++ b/Data/HD/hd_combat_reaction.md
@@ -4,7 +4,7 @@
### Réaction
-- AltName: Reactions (SRD p91)
+- Alias: Reactions (SRD p91)
- Source: (MDR p285)
Certaines capacités spéciales, sorts ou situations permettent à votre personnage d'accomplir une action spéciale appelée une réaction. Une réaction est une réponse instantanée déclenchée par un stimulus qui peut se produire pendant votre tour ou celui de quelqu'un d'autre. Le type de réaction le plus courant est l'attaque d'opportunité, décrite plus loin dans ce chapitre.
diff --git a/Data/HD/hd_combat_resistance_et_vulnerabilite_aux_degats.md b/Data/HD/hd_combat_resistance_et_vulnerabilite_aux_degats.md
index 3eb5c25c..8da147a1 100644
--- a/Data/HD/hd_combat_resistance_et_vulnerabilite_aux_degats.md
+++ b/Data/HD/hd_combat_resistance_et_vulnerabilite_aux_degats.md
@@ -4,7 +4,7 @@
### Résistance et vulnérabilité aux dégâts
-- AltName: Damage Resistance and Vulnerability (SRD p97)
+- Alias: Damage Resistance and Vulnerability (SRD p97)
- Source: (MDR p294)
Certaines créatures sont particulièrement difficiles ou faciles à blesser selon qu'on leur inflige certains types de dégâts. Il en va de même pour certains objets.
diff --git a/Data/HD/hd_combat_se_cacher.md b/Data/HD/hd_combat_se_cacher.md
index aaa16afd..03f277df 100644
--- a/Data/HD/hd_combat_se_cacher.md
+++ b/Data/HD/hd_combat_se_cacher.md
@@ -4,7 +4,7 @@
### Se cacher
-- AltName: Hide (SRD p93)
+- Alias: Hide (SRD p93)
- Source: (MDR p288)
Quand vous choisissez l'action se cacher, vous devez faire un test de Dextérité (Discrétion) pour tenter de vous cacher en suivant les règles appropriées. Si vous réussissez, vous gagnez certains des bénéfices associés à cet état, tels qu'ils sont décrits dans la section Attaquants et cibles invisibles.
diff --git a/Data/HD/hd_combat_se_deplacer_au_milieu_dautres_creatures.md b/Data/HD/hd_combat_se_deplacer_au_milieu_dautres_creatures.md
index 557a9f51..38e9323a 100644
--- a/Data/HD/hd_combat_se_deplacer_au_milieu_dautres_creatures.md
+++ b/Data/HD/hd_combat_se_deplacer_au_milieu_dautres_creatures.md
@@ -4,7 +4,7 @@
### Se déplacer au milieu d'autres créatures
-- AltName: Moving Around Other Creatures (SRD p92)
+- Alias: Moving Around Other Creatures (SRD p92)
- Source: (MDR p286)
Vous pouvez traverser l'emplacement d'une créature qui ne vous est pas hostile. En revanche, vous ne pouvez traverser l'emplacement occupé par une créature hostile que si celle-ci fait deux tailles de plus ou de moins que vous. N'oubliez pas que l'emplacement oc- cupé par une autre créature est considéré comme un terrain difficile.
diff --git a/Data/HD/hd_combat_se_deplacer_entre_des_attaques.md b/Data/HD/hd_combat_se_deplacer_entre_des_attaques.md
index fc33575e..76f94791 100644
--- a/Data/HD/hd_combat_se_deplacer_entre_des_attaques.md
+++ b/Data/HD/hd_combat_se_deplacer_entre_des_attaques.md
@@ -4,7 +4,7 @@
#### Se déplacer entre des attaques
-- AltName: Moving between Attacks (SRD p91)
+- Alias: Moving between Attacks (SRD p91)
- Source: (MDR p286)
Si vous utilisez une action qui vous permet de porter plusieurs attaques avec une arme, vous pouvez fragmenter encore plus votre déplacement et vous déplacer entre ces attaques. Par exemple, un guerrier qui peut porter deux attaques grâce à l'aptitude attaque supplémentaire et qui a une vitesse de 7,50 mètres peut se déplacer de 3 mètres, porter sa première attaque, se déplacer de 4,50 mètres supplémentaires et porter sa seconde attaque.
diff --git a/Data/HD/hd_combat_se_desengager.md b/Data/HD/hd_combat_se_desengager.md
index e9f3db98..51448859 100644
--- a/Data/HD/hd_combat_se_desengager.md
+++ b/Data/HD/hd_combat_se_desengager.md
@@ -4,7 +4,7 @@
### Se désengager
-- AltName: Disengage (SRD p93)
+- Alias: Disengage (SRD p93)
- Source: (MDR p288)
Si vous choisissez l'action se désengager, vous pouvez vous déplacer sans risquer de créer des attaques d'opportunités jusqu'à la fin du tour.
diff --git a/Data/HD/hd_combat_se_faufiler_dans_un_espace_reduit.md b/Data/HD/hd_combat_se_faufiler_dans_un_espace_reduit.md
index 6f16b5a8..b18d3463 100644
--- a/Data/HD/hd_combat_se_faufiler_dans_un_espace_reduit.md
+++ b/Data/HD/hd_combat_se_faufiler_dans_un_espace_reduit.md
@@ -4,7 +4,7 @@
#### Se faufiler dans un espace réduit
-- AltName: Squeezing into a Smaller Space (SRD p92)
+- Alias: Squeezing into a Smaller Space (SRD p92)
- Source: (MDR p288)
Une créature peut se faufiler dans un espace minimum d'une taille égale à l'espace contrôlé par une créature de la catégorie de taille inférieure à la sienne. Ainsi, une grande créature peut se faufiler dans un passage qui ne fait que 1,50 mètre de large. Mais en se faufilant dans un tel espace, chaque mètre parcouru par la créature lui coûte 1 mètre de déplacement supplémentaire et elle subit un désavantage sur les jets d'attaque et les jets de sauvegarde de Dextérité. À l'inverse, toute créature qui attaque celle qui se faufile obtient l'avantage sur ses jets d'attaque tant que sa cible se trouve dans un espace trop petit pour elle.
diff --git a/Data/HD/hd_combat_se_precipiter.md b/Data/HD/hd_combat_se_precipiter.md
index d87c21f7..f1b741e0 100644
--- a/Data/HD/hd_combat_se_precipiter.md
+++ b/Data/HD/hd_combat_se_precipiter.md
@@ -4,7 +4,7 @@
### Se précipiter
-- AltName: Dash (SRD p93)
+- Alias: Dash (SRD p93)
- Source: (MDR p290)
Quand vous choisissez l'action se précipiter, la distance que vous pouvez parcourir est augmentée jusqu'à la fin du tour. Ce bonus de déplacement est égal à votre vitesse, après avoir appliqué tous les modificateurs éventuels. Donc si votre vitesse est de 9 mètres, par exemple, si vous utilisez l'action se précipiter, vous pourrez parcourir 18 mètres lors de votre tour.
diff --git a/Data/HD/hd_combat_se_tenir_pret.md b/Data/HD/hd_combat_se_tenir_pret.md
index 9283bd7d..1f5cbd9a 100644
--- a/Data/HD/hd_combat_se_tenir_pret.md
+++ b/Data/HD/hd_combat_se_tenir_pret.md
@@ -4,7 +4,7 @@
### Se tenir prêt
-- AltName: Ready (SRD p93)
+- Alias: Ready (SRD p93)
- Source: (MDR p290)
Il peut vous arriver de vouloir surprendre un ennemi ou attendre une configuration particulière avant d'agir. Pour cela, vous devez choisir l'action se tenir prêt pendant votre tour. Cette action vous permet d'utiliser votre réaction avant le début de votre prochain tour.
diff --git a/Data/HD/hd_combat_surprise.md b/Data/HD/hd_combat_surprise.md
index d2696505..0819d88e 100644
--- a/Data/HD/hd_combat_surprise.md
+++ b/Data/HD/hd_combat_surprise.md
@@ -4,7 +4,7 @@
### Surprise
-- AltName: Surprise (SRD p90)
+- Alias: Surprise (SRD p90)
- Source: (MDR p284)
Les héros rampent sans un bruit dans les hautes herbes. Ils ont mis de la graisse sur leurs visages et sur leurs lames. Les guerriers ont laissé leurs amures de métal non loin de là. La nuit est parfaitement noire. Tout proches, les esclavagistes fêtent le butin de la journée autour d'un feu de camp. Ils n'ont aucune conscience du danger qui les guette… L'assassin, qui a bu une potion d'invisibilité, se place juste à côté du clerc et tire sa dague. Aucun héros ne l'a senti passer… Dans chacune de ces situations, l'un des deux partis est surpris par l'autre.
diff --git a/Data/HD/hd_combat_taille_des_creatures.md b/Data/HD/hd_combat_taille_des_creatures.md
index 3f0a4d9a..73ef015f 100644
--- a/Data/HD/hd_combat_taille_des_creatures.md
+++ b/Data/HD/hd_combat_taille_des_creatures.md
@@ -4,7 +4,7 @@
### Taille des créatures
-- AltName: Creature Size (SRD p92)
+- Alias: Creature Size (SRD p92)
- Source: (MDR p287)
Chaque créature occupe une surface plus ou moins importante en fonction de sa taille. Le tableau des catégories de tailles qui suit indique la taille de la surface occupée et contrôlée en combat par une créature d'une taille donnée. Les objets utilisent parfois les mêmes catégories de taille.
diff --git a/Data/HD/hd_combat_terrain_difficile.md b/Data/HD/hd_combat_terrain_difficile.md
index 6b117959..d92f7a9d 100644
--- a/Data/HD/hd_combat_terrain_difficile.md
+++ b/Data/HD/hd_combat_terrain_difficile.md
@@ -4,7 +4,7 @@
### Terrain difficile
-- AltName: Difficult Terrain (SRD p91)
+- Alias: Difficult Terrain (SRD p91)
- Source: (MDR p286)
Un combat se déroule rarement sur le sol d'une pièce vide ou dans une plaine bien dégagée. Que ce soit sur le sol irrégulier d'une caverne, au milieu d'une forêt envahie de bruyères, ou dans un escalier glissant, un champ de bataille est généralement un terrain difficile.
diff --git a/Data/HD/hd_combat_types_de_degats.md b/Data/HD/hd_combat_types_de_degats.md
index 40e991fc..1d443b2d 100644
--- a/Data/HD/hd_combat_types_de_degats.md
+++ b/Data/HD/hd_combat_types_de_degats.md
@@ -4,7 +4,7 @@
#### Types de dégâts
-- AltName: Damage Types (SRD p97)
+- Alias: Damage Types (SRD p97)
- Source: (MDR p294)
Il existe de nombreux types d'attaques, de sorts et d'effets préjudiciables qui infligent différents types de dégâts. Les types de dégâts eux-mêmes n'ont pas de règle de fonctionnement spécifique, mais ils sont liés à d'autres règles, comme la résistance aux dégâts.
diff --git a/Data/HD/hd_combat_utiliser_differentes_vitesses.md b/Data/HD/hd_combat_utiliser_differentes_vitesses.md
index 56735027..d87c9019 100644
--- a/Data/HD/hd_combat_utiliser_differentes_vitesses.md
+++ b/Data/HD/hd_combat_utiliser_differentes_vitesses.md
@@ -4,7 +4,7 @@
#### Utiliser différentes vitesses
-- AltName: Using Different Speeds (SRD p91)
+- Alias: Using Different Speeds (SRD p91)
- Source: (MDR p286)
Si vous avez la capacité de vous déplacer à plusieurs vitesses, comme une vitesse au sol et une vitesse en vol, par exemple, vous pouvez alterner les deux lors de votre déplacement. À chaque fois que vous passez d'un type de vitesse à l'autre, vous devez soustraire la distance que vous avez déjà parcourue de la nouvelle jauge de vitesse. Le résultat indique quelle distance vous pouvez encore parcourir. Si ce résultat est de 0 ou moins, vous ne pouvez plus vous déplacer pendant ce tour.
diff --git a/Data/HD/hd_combat_utiliser_un_objet.md b/Data/HD/hd_combat_utiliser_un_objet.md
index d9b02450..ff3e2f4b 100644
--- a/Data/HD/hd_combat_utiliser_un_objet.md
+++ b/Data/HD/hd_combat_utiliser_un_objet.md
@@ -4,7 +4,7 @@
### Utiliser un objet
-- AltName: Use an Object (SRD p94)
+- Alias: Use an Object (SRD p94)
- Source: (MDR p290)
Normalement, vous interagissez avec un objet en faisant quelque chose d'autre, par exemple quand vous dégainez votre épée dans le cadre de l'action attaquer. Quand un objet nécessite une action pour que vous puissiez l'utiliser, vous choisissez l'action utiliser un objet. Cette action se montre aussi pratique quand vous voulez interagir avec plus d'un objet pendant votre tour.
diff --git a/Data/HD/hd_combat_votre_tour.md b/Data/HD/hd_combat_votre_tour.md
index 3e817ed3..49051460 100644
--- a/Data/HD/hd_combat_votre_tour.md
+++ b/Data/HD/hd_combat_votre_tour.md
@@ -4,7 +4,7 @@
### Votre tour
-- AltName: Your Turn (SRD p90)
+- Alias: Your Turn (SRD p90)
- Source: (MDR p285)
Pendant votre tour, vous pouvez vous déplacer d'une distance égale à votre vitesse et accomplir une action.
diff --git a/Data/HD/hd_conditions.md b/Data/HD/hd_conditions.md
index 26dbea59..c203d589 100644
--- a/Data/HD/hd_conditions.md
+++ b/Data/HD/hd_conditions.md
@@ -5,7 +5,7 @@
# États spéciaux
-- AltName: [Conditions](srd_conditions.md)
+- Alias: [Conditions](srd_conditions.md)
- Source: (MDR p299)
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é](hd_conditions_aveugle.md), mais quelques-uns confèrent un bénéfice, comme d'être [invisible](hd_conditions_invisible.md).
diff --git a/Data/HD/hd_conditions_a_terre.md b/Data/HD/hd_conditions_a_terre.md
index 6747b460..d7163e08 100644
--- a/Data/HD/hd_conditions_a_terre.md
+++ b/Data/HD/hd_conditions_a_terre.md
@@ -4,7 +4,7 @@
# À terre
-- AltName: [Prone](srd_conditions_prone.md)
+- Alias: [Prone](srd_conditions_prone.md)
* 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.
diff --git a/Data/HD/hd_conditions_assourdi.md b/Data/HD/hd_conditions_assourdi.md
index e0e1ab18..acb8c363 100644
--- a/Data/HD/hd_conditions_assourdi.md
+++ b/Data/HD/hd_conditions_assourdi.md
@@ -4,7 +4,7 @@
# Assourdi
-- AltName: [Deafened](srd_conditions_deafened.md)
+- Alias: [Deafened](srd_conditions_deafened.md)
* Une créature assourdie n'entend plus rien et rate automatiquement tous les tests de caractéristique faisant intervenir des capacités auditives.
diff --git a/Data/HD/hd_conditions_aveugle.md b/Data/HD/hd_conditions_aveugle.md
index 0abffd22..6fa03471 100644
--- a/Data/HD/hd_conditions_aveugle.md
+++ b/Data/HD/hd_conditions_aveugle.md
@@ -4,7 +4,7 @@
# Aveuglé
-- AltName: [Blinded](srd_conditions_blinded.md)
+- Alias: [Blinded](srd_conditions_blinded.md)
* Une créature aveuglée ne voit plus rien et rate automatiquement tout test de caractéristique qui requiert la vue.
diff --git a/Data/HD/hd_conditions_charme.md b/Data/HD/hd_conditions_charme.md
index 8c89aa68..e708e4e1 100644
--- a/Data/HD/hd_conditions_charme.md
+++ b/Data/HD/hd_conditions_charme.md
@@ -4,7 +4,7 @@
# Charmé
-- AltName: [Charmed](srd_conditions_charmed.md)
+- Alias: [Charmed](srd_conditions_charmed.md)
* 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.
diff --git a/Data/HD/hd_conditions_empoigne.md b/Data/HD/hd_conditions_empoigne.md
index b5e9359a..3bd8dfbf 100644
--- a/Data/HD/hd_conditions_empoigne.md
+++ b/Data/HD/hd_conditions_empoigne.md
@@ -4,7 +4,7 @@
# Empoigné
-- AltName: [Grappled](srd_conditions_grappled.md)
+- Alias: [Grappled](srd_conditions_grappled.md)
* La vitesse d'une créature empoignée devient 0 et elle ne peut plus bénéficier de ses éventuels bonus de vitesse.
diff --git a/Data/HD/hd_conditions_empoisonne.md b/Data/HD/hd_conditions_empoisonne.md
index e5da2629..3f07db88 100644
--- a/Data/HD/hd_conditions_empoisonne.md
+++ b/Data/HD/hd_conditions_empoisonne.md
@@ -4,7 +4,7 @@
# Empoisonné
-- AltName: [Poisoned](srd_conditions_poisoned.md)
+- Alias: [Poisoned](srd_conditions_poisoned.md)
* Une créature empoisonnée souffre d'un désavantage lors de ses jets d'attaque et de ses tests de caractéristique.
diff --git a/Data/HD/hd_conditions_entrave.md b/Data/HD/hd_conditions_entrave.md
index 6cfab6e7..7c177ecd 100644
--- a/Data/HD/hd_conditions_entrave.md
+++ b/Data/HD/hd_conditions_entrave.md
@@ -4,7 +4,7 @@
# Entravé
-- AltName: [Restrained](srd_conditions_restrained.md)
+- Alias: [Restrained](srd_conditions_restrained.md)
* La vitesse de la créature entravée tombe à 0 et elle ne peut plus bénéficier de ses éventuels bonus de vitesse.
diff --git a/Data/HD/hd_conditions_etourdi.md b/Data/HD/hd_conditions_etourdi.md
index cb59ea34..8787b479 100644
--- a/Data/HD/hd_conditions_etourdi.md
+++ b/Data/HD/hd_conditions_etourdi.md
@@ -4,7 +4,7 @@
# Étourdi
-- AltName: [Stunned](srd_conditions_stunned.md)
+- Alias: [Stunned](srd_conditions_stunned.md)
* Une créature étourdie est [neutralisée](hd_conditions_neutralise.md) (voir l'état), incapable de se déplacer et parle en balbutiant.
diff --git a/Data/HD/hd_conditions_fatigue_et_epuisement.md b/Data/HD/hd_conditions_fatigue_et_epuisement.md
index f33f34c6..614d2927 100644
--- a/Data/HD/hd_conditions_fatigue_et_epuisement.md
+++ b/Data/HD/hd_conditions_fatigue_et_epuisement.md
@@ -4,7 +4,7 @@
# Fatigue et épuisement
-- AltName: [Exhaustion](srd_conditions_exhaustion.md)
+- Alias: [Exhaustion](srd_conditions_exhaustion.md)
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/HD/hd_conditions_inconscient.md b/Data/HD/hd_conditions_inconscient.md
index d4256458..5a98a633 100644
--- a/Data/HD/hd_conditions_inconscient.md
+++ b/Data/HD/hd_conditions_inconscient.md
@@ -4,7 +4,7 @@
# Inconscient
-- AltName: [Unconscious](srd_conditions_unconscious.md)
+- Alias: [Unconscious](srd_conditions_unconscious.md)
* Une créature inconsciente est [neutralisée](hd_conditions_neutralise.md) (voir l'état), incapable de se déplacer et de parler et n'a pas conscience de ce qui l'entoure.
diff --git a/Data/HD/hd_conditions_invisible.md b/Data/HD/hd_conditions_invisible.md
index 6faf83a5..2f7c91f9 100644
--- a/Data/HD/hd_conditions_invisible.md
+++ b/Data/HD/hd_conditions_invisible.md
@@ -4,7 +4,7 @@
# Invisible
-- AltName: [Invisible](srd_conditions_invisible.md)
+- Alias: [Invisible](srd_conditions_invisible.md)
* 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.
diff --git a/Data/HD/hd_conditions_neutralise.md b/Data/HD/hd_conditions_neutralise.md
index fb1cabcf..4efc2d72 100644
--- a/Data/HD/hd_conditions_neutralise.md
+++ b/Data/HD/hd_conditions_neutralise.md
@@ -4,7 +4,7 @@
# Neutralisé
-- AltName: [Incapacitated](srd_conditions_incapacitated.md)
+- Alias: [Incapacitated](srd_conditions_incapacitated.md)
* Une créature neutralisée est incapable d'effectuer une action ou une réaction.
diff --git a/Data/HD/hd_conditions_paralyse.md b/Data/HD/hd_conditions_paralyse.md
index d5e64bba..e685d672 100644
--- a/Data/HD/hd_conditions_paralyse.md
+++ b/Data/HD/hd_conditions_paralyse.md
@@ -4,7 +4,7 @@
# Paralysé
-- AltName: [Paralyzed](srd_conditions_paralyzed.md)
+- Alias: [Paralyzed](srd_conditions_paralyzed.md)
* Une créature paralysée est [neutralisée](hd_conditions_neutralise.md) (voir l'état) et ne peut ni parler ni se déplacer.
diff --git a/Data/HD/hd_conditions_petrifie.md b/Data/HD/hd_conditions_petrifie.md
index 9893472f..1d823bb6 100644
--- a/Data/HD/hd_conditions_petrifie.md
+++ b/Data/HD/hd_conditions_petrifie.md
@@ -4,7 +4,7 @@
# Pétrifié
-- AltName: [Petrified](srd_conditions_petrified.md)
+- Alias: [Petrified](srd_conditions_petrified.md)
* 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.
diff --git a/Data/HD/hd_conditions_terrorise.md b/Data/HD/hd_conditions_terrorise.md
index 598046c7..fd4da05a 100644
--- a/Data/HD/hd_conditions_terrorise.md
+++ b/Data/HD/hd_conditions_terrorise.md
@@ -4,7 +4,7 @@
# Terrorisé
-- AltName: [Frightened](srd_conditions_frightened.md)
+- Alias: [Frightened](srd_conditions_frightened.md)
* 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.
diff --git a/Data/HD/hd_damage_healing.md b/Data/HD/hd_damage_healing.md
index 8bf2cde6..aa5fd1f2 100644
--- a/Data/HD/hd_damage_healing.md
+++ b/Data/HD/hd_damage_healing.md
@@ -5,7 +5,7 @@
## Dégâts et guérison
-- AltName: Damage and Healing
+- Alias: Damage and Healing
- Source: (MDR p298)(SRD p96)
Dans l’univers fantastique de Héros & Dragons, les risques de se blesser et de mourir sont des compagnons de tous les instants. Le souffle d’un dragon, les griffes d’un troll, le poison d’un ennemi, un carreau d’arbalète qui fait mouche, tous ces dangers ont le potentiel de blesser, voire de tuer les héros et les créatures les plus résistantes.
diff --git a/Data/HD/hd_damage_healing_jets_de_sauvegarde_contre_la_mort.md b/Data/HD/hd_damage_healing_jets_de_sauvegarde_contre_la_mort.md
index 6e1a4b66..caa6d2ae 100644
--- a/Data/HD/hd_damage_healing_jets_de_sauvegarde_contre_la_mort.md
+++ b/Data/HD/hd_damage_healing_jets_de_sauvegarde_contre_la_mort.md
@@ -4,7 +4,7 @@
#### Jets de sauvegarde contre la mort
-- AltName: Death Saving Throws
+- Alias: Death Saving Throws
- Source: (MDR p298)(SRD p98)
À chaque fois que vous commencez votre tour de jeu à 0 point de vie, vous devez faire un jet de sauvegarde spécial appelé jet de sauvegarde contre la mort. Cela permet de déterminer si vous sombrez doucement dans le néant ou si vous vous accrochez à la vie. À la différence des autres jets de sauvegarde, celui-ci n'est pas lié à une caractéristique. Vous êtes entre les mains du destin, et vous ne pouvez être aidé que par certains sorts ou des aptitudes qui vous permettent d'augmenter vos chances de réussir un jet de sauvegarde.
diff --git a/Data/HD/hd_damage_healing_les_monstres_et_la_mort.md b/Data/HD/hd_damage_healing_les_monstres_et_la_mort.md
index 742f8cbc..e4eb105e 100644
--- a/Data/HD/hd_damage_healing_les_monstres_et_la_mort.md
+++ b/Data/HD/hd_damage_healing_les_monstres_et_la_mort.md
@@ -4,7 +4,7 @@
#### Les monstres et la mort
-- AltName: Monsters and Death
+- Alias: Monsters and Death
- Source: (MDR p299)(SRD p98)
La plupart des MJ font mourir les monstres dès qu’ils atteignent 0 point de vie plutôt que de les considérer comme inconscients et de faire pour eux des jets de sauvegarde contre la mort.
diff --git a/Data/HD/hd_damage_healing_mort_instantanee.md b/Data/HD/hd_damage_healing_mort_instantanee.md
index 2dd258bf..ea843b47 100644
--- a/Data/HD/hd_damage_healing_mort_instantanee.md
+++ b/Data/HD/hd_damage_healing_mort_instantanee.md
@@ -4,7 +4,7 @@
#### Mort instantanée
-- AltName: Instant Death
+- Alias: Instant Death
- Source: (MDR p298)(SRD p98)
Des dégâts trop importants peuvent vous tuer sur le coup. Pour que cette chose terrible arrive, il faut que les dégâts vous fassent tomber à 0 point de vie et que le reliquat des dégâts infligés par l’attaque soit supérieur ou égal à votre maximum de points de vie.
diff --git a/Data/HD/hd_damage_healing_perdre_conscience.md b/Data/HD/hd_damage_healing_perdre_conscience.md
index abc5ce27..bd0828ab 100644
--- a/Data/HD/hd_damage_healing_perdre_conscience.md
+++ b/Data/HD/hd_damage_healing_perdre_conscience.md
@@ -4,7 +4,7 @@
#### Perdre conscience
-- AltName: Falling Unconscious
+- Alias: Falling Unconscious
- Source: (MDR p298)(SRD p98)
Si les dégâts que vous subissez vous font tomber à 0 point de vie mais ne vous tuent pas, vous êtes inconscient (voir la section États spéciaux page 301). Vous ne pouvez reprendre conscience que si vous regagnez des points de vie.
diff --git a/Data/HD/hd_damage_healing_points_de_vie.md b/Data/HD/hd_damage_healing_points_de_vie.md
index 1b944e9c..fc45d7b4 100644
--- a/Data/HD/hd_damage_healing_points_de_vie.md
+++ b/Data/HD/hd_damage_healing_points_de_vie.md
@@ -4,7 +4,7 @@
### Points de vie
-- AltName: Hit Points
+- Alias: Hit Points
- Source: (MDR p298)(SRD p96)
Les points de vie représentent une combinaison de résistance mentale et physique, de volonté de vivre et de chance. Plus une créature a de points de vie, plus elle est difficile à tuer. Les créatures avec peu de points de vie sont plus fragiles.
diff --git a/Data/HD/hd_damage_healing_points_de_vie_temporaires.md b/Data/HD/hd_damage_healing_points_de_vie_temporaires.md
index 0e66a08e..c79248ba 100644
--- a/Data/HD/hd_damage_healing_points_de_vie_temporaires.md
+++ b/Data/HD/hd_damage_healing_points_de_vie_temporaires.md
@@ -4,7 +4,7 @@
### Points de vie temporaires
-- AltName: Temporary Hit Points
+- Alias: Temporary Hit Points
- Source: (MDR p299)(SRD p98)
Certains sorts et capacités spéciales confèrent des points de vie temporaires à une créature. Ces points de vie temporaires ne sont pas réellement des points de vie, mais plutôt une protection contre les dégâts, une réserve de points de vie qui évite à un personnage de subir véritablement des dégâts.
diff --git a/Data/HD/hd_damage_healing_soins.md b/Data/HD/hd_damage_healing_soins.md
index 4d443e43..5f78bbc1 100644
--- a/Data/HD/hd_damage_healing_soins.md
+++ b/Data/HD/hd_damage_healing_soins.md
@@ -4,7 +4,7 @@
### Soins
-- AltName: Healing
+- Alias: Healing
- Source: (MDR p298)(SRD p97)
Les dégâts ne sont pas permanents, à moins bien sûr qu’ils ne provoquent la mort d’une créature. Mais, avec une magie assez puissante, il est même possible de revenir de la mort. Le repos permet de restaurer les points de vie d’une créature, et des méthodes magiques – comme le sort soin des blessures ou une potion de soins – peuvent soigner les dégâts en un instant.
diff --git a/Data/HD/hd_damage_healing_stabiliser_une_creature.md b/Data/HD/hd_damage_healing_stabiliser_une_creature.md
index c0451b8b..a6410e2d 100644
--- a/Data/HD/hd_damage_healing_stabiliser_une_creature.md
+++ b/Data/HD/hd_damage_healing_stabiliser_une_creature.md
@@ -4,7 +4,7 @@
#### Stabiliser une créature
-- AltName: Stabilizing a Creature
+- Alias: Stabilizing a Creature
- Source: (MDR p299)(SRD p98)
Le meilleur moyen de sauver une créature qui se trouve à 0 point de vie est de la soigner. S’il n’est pas possible de la soigner, elle peut être stabilisée afin de lui éviter de mourir des suites d’un échec à son jet de sauvegarde contre la mort.
diff --git a/Data/HD/hd_damage_healing_tomber_a_0_point_de_vie.md b/Data/HD/hd_damage_healing_tomber_a_0_point_de_vie.md
index 494d1851..3735a834 100644
--- a/Data/HD/hd_damage_healing_tomber_a_0_point_de_vie.md
+++ b/Data/HD/hd_damage_healing_tomber_a_0_point_de_vie.md
@@ -4,7 +4,7 @@
### Tomber à 0 point de vie
-- AltName: Dropping to 0 Hit Points
+- Alias: Dropping to 0 Hit Points
- Source: (MDR p298)(SRD p97)
Quand vous atteignez 0 point de vie, vous pouvez soit mourir, soit perdre conscience. Les différents cas de figure sont expliqués dans les sections ci-dessous.
diff --git a/Data/HD/hd_diseases.md b/Data/HD/hd_diseases.md
index 9890cb79..151e214a 100644
--- a/Data/HD/hd_diseases.md
+++ b/Data/HD/hd_diseases.md
@@ -5,7 +5,7 @@
## Les maladies
-- AltName: Diseases
+- Alias: Diseases
- Source: (CEO p379)(SRD p199)
Une épidémie ravage le royaume et nos aventuriers se mettent en quête d'un remède. Une aventurière ressort d'une antique tombe qui n'a pas été ouverte depuis des siècles et souffre bientôt d'une maladie débilitante. Un sorcier offense de sinistres puissances et contracte une étrange maladie qui se propage à chaque fois qu'il lance un sort.
diff --git a/Data/HD/hd_dragonborn.md b/Data/HD/hd_dragonborn.md
index e94a9d44..a092ae09 100644
--- a/Data/HD/hd_dragonborn.md
+++ b/Data/HD/hd_dragonborn.md
@@ -5,7 +5,7 @@
# Sangdragon
-- AltName: Dragonborn (SRD p5)
+- Alias: Dragonborn (SRD p5)
- Source: (MDR p69)
## Traits des sangdragons
diff --git a/Data/HD/hd_druid.md b/Data/HD/hd_druid.md
index 74f1e13d..8529e6c7 100644
--- a/Data/HD/hd_druid.md
+++ b/Data/HD/hd_druid.md
@@ -5,7 +5,7 @@
# Druide
-- AltName: Druid (SRD p17)
+- Alias: Druid (SRD p17)
- Source: (MDR p142)
En tant que druide, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_druid_earth.md b/Data/HD/hd_druid_earth.md
index 81500e98..3601c97e 100644
--- a/Data/HD/hd_druid_earth.md
+++ b/Data/HD/hd_druid_earth.md
@@ -5,7 +5,7 @@
# Cercle de la terre
-- AltName: Circle of the Land (SRD p21)
+- Alias: Circle of the Land (SRD p21)
- Source: (MDR p145)
Le cercle de la terre réunit des mystiques et des sages qui perpétuent d'antiques connaissances et rites grâce à une tradition orale très développée. Ces druides se rassemblent dans des cercles d'arbres sacrés ou de pierres dressées pour se murmurer des secrets primordiaux en druidique. Les membres les plus sages du cercle font office de grands prêtres dans les communautés qui respectent encore l'antique religion, et conseillent leurs dirigeants. En tant que membre du cercle, votre magie est influencée par le type de terrain sur lequel vous avez été initié aux rites mystérieux du cercle.
diff --git a/Data/HD/hd_dwarf.md b/Data/HD/hd_dwarf.md
index 28ac47e2..e86dda7a 100644
--- a/Data/HD/hd_dwarf.md
+++ b/Data/HD/hd_dwarf.md
@@ -5,7 +5,7 @@
# Nain
-- AltName: Dwarf (SRD p3)
+- Alias: Dwarf (SRD p3)
- Source: (MDR p57)
## Traits des nains
diff --git a/Data/HD/hd_dwarf_nain_des_tertres.md b/Data/HD/hd_dwarf_nain_des_tertres.md
index 8cf25da8..8ce71c26 100644
--- a/Data/HD/hd_dwarf_nain_des_tertres.md
+++ b/Data/HD/hd_dwarf_nain_des_tertres.md
@@ -4,7 +4,7 @@
## Nain des tertres
-- AltName: Hill Dwarf (SRD p3)
+- Alias: Hill Dwarf (SRD p3)
- Source: (MDR p57)
En tant que nain des tertres, vous avez des sens aiguisés, êtes très intuitif et vous faites preuve d'une résistance remarquable.
diff --git a/Data/HD/hd_elf.md b/Data/HD/hd_elf.md
index 8fc4242d..8c0d3b88 100644
--- a/Data/HD/hd_elf.md
+++ b/Data/HD/hd_elf.md
@@ -5,7 +5,7 @@
# Elfe
-- AltName: Elf (SRD p4)
+- Alias: Elf (SRD p4)
- Source: (MDR p44)
## Traits des elfes
diff --git a/Data/HD/hd_elf_elfe_daether.md b/Data/HD/hd_elf_elfe_daether.md
index c5a11f7f..34b817d9 100644
--- a/Data/HD/hd_elf_elfe_daether.md
+++ b/Data/HD/hd_elf_elfe_daether.md
@@ -4,7 +4,7 @@
## Elfe d'aether
-- AltName: High Elf (SRD p4)
+- Alias: High Elf (SRD p4)
- Source: (MDR p45)
En tant qu'elfe d'aether, votre intelligence dépasse celles des autres peuples elfiques. Vous avez une affinité supérieure avec la magie et placez la quête du savoir avant toute chose.
diff --git a/Data/HD/hd_environment.md b/Data/HD/hd_environment.md
index a0246620..0322bfdb 100644
--- a/Data/HD/hd_environment.md
+++ b/Data/HD/hd_environment.md
@@ -5,7 +5,7 @@
# L’environnement
-- AltName: The Environment (SRD p86)
+- Alias: The Environment (SRD p86)
- Source: (MDR p274)
Par définition, l’aventure rime avec l’exploration d’endroits dangereux et mystérieux. Les règles présentées dans cette section traitent des principales manières dont les aventuriers interagissent avec leur environnement dans ce genre de situations très particulières.
diff --git a/Data/HD/hd_equipment_properties_focaliseur_arcanique.md b/Data/HD/hd_equipment_properties_focaliseur_arcanique.md
index 93fa0371..866d03da 100644
--- a/Data/HD/hd_equipment_properties_focaliseur_arcanique.md
+++ b/Data/HD/hd_equipment_properties_focaliseur_arcanique.md
@@ -4,7 +4,7 @@
## Focaliseur arcanique
-- AltName: Arcane Focus (SRD p66)
+- Alias: Arcane Focus (SRD p66)
- Source: (MDR p230)
Un focaliseur arcanique est un objet spécial – un [orbe](hd_equipment_orbe_focaliseur_arcanique.md), un [cristal](hd_equipment_cristal_focaliseur_arcanique.md), une [baguette](hd_equipment_baguette_focaliseur_arcanique.md), un [bâton](hd_equipment_baton_focaliseur_arcanique.md) spécialement construit ou un objet similaire – conçu pour canaliser la puissance de la magie arcanique. Un [ensorceleur](hd_sorcerer.md), un [sorcier](hd_warlock.md) ou un [magicien](hd_wizard.md) peut utiliser de tels objets comme focaliseur d'incantation.
diff --git a/Data/HD/hd_equipment_properties_focaliseur_druidique.md b/Data/HD/hd_equipment_properties_focaliseur_druidique.md
index 4ff2f42c..17c46f19 100644
--- a/Data/HD/hd_equipment_properties_focaliseur_druidique.md
+++ b/Data/HD/hd_equipment_properties_focaliseur_druidique.md
@@ -4,7 +4,7 @@
## Focaliseur druidique
-- AltName: Druidic Focus (SRD p67)
+- Alias: Druidic Focus (SRD p67)
- Source: (MDR p230)
Un focaliseur druidique peut être une [branche de houx](hd_equipment_branche_de_houx_focaliseur_druidique.md), une [baguette](hd_equipment_baguette_dif_focaliseur_druidique.md) ou un [sceptre en if](hd_equipment_baguette_dif_focaliseur_druidique.md) ou dans un autre bois spécial, un [bâton](hd_equipment_baton_focaliseur_druidique.md) taillé dans un arbre encore vivant ou un [totem](hd_equipment_totem_focaliseur_druidique.md) fait avec les plumes, la fourrure, les os ou les dents d'animaux sacrés. Un [druide](hd_druid.md) peut utiliser un tel objet comme focaliseur d'incantation.
diff --git a/Data/HD/hd_equipment_properties_symbole_sacre.md b/Data/HD/hd_equipment_properties_symbole_sacre.md
index d58c3a1e..42945abd 100644
--- a/Data/HD/hd_equipment_properties_symbole_sacre.md
+++ b/Data/HD/hd_equipment_properties_symbole_sacre.md
@@ -4,7 +4,7 @@
## Symbole sacré
-- AltName: Holy Symbol (SRD p67)
+- Alias: Holy Symbol (SRD p67)
- Source: (MDR p233)
Un symbole sacré est la représentation d'un dieu ou d'un panthéon. Il peut s'agir d'une [amulette](hd_equipment_amulette.md) sur laquelle se trouve le symbole d'un dieu, de ce même symbole gravé avec soin ou incrusté comme [emblème](hd_equipment_embleme.md) d'un bouclier, ou encore d'une petite boîte contenant un fragment de [relique](hd_warlock_immortal_relique.md) sacrée. Vous trouverez dans l'appendice A, Panthéons historiques et fantastiques, pages 414-418, une liste des symboles sacrés généralement associés à de nombreuses divinités du multivers.
diff --git a/Data/HD/hd_feats.md b/Data/HD/hd_feats.md
index 54b90ee8..bcacfd62 100644
--- a/Data/HD/hd_feats.md
+++ b/Data/HD/hd_feats.md
@@ -5,7 +5,7 @@
# Dons
-- AltName: Feats (SRD p75)
+- Alias: Feats (SRD p75)
- Source: (MDR p245)
Un don représente un talent ou un domaine d'expertise d'un personnage, qui lui accorde des capacités spéciales. Un don représente un entraînement, une expérience et des capacités qui sortent du cadre de ce que la classe d'un personnage peut lui accorder.
diff --git a/Data/HD/hd_fighter.md b/Data/HD/hd_fighter.md
index 78ca91c8..9a7c2c9f 100644
--- a/Data/HD/hd_fighter.md
+++ b/Data/HD/hd_fighter.md
@@ -5,7 +5,7 @@
# Guerrier
-- AltName: Fighter (SRD p24)
+- Alias: Fighter (SRD p24)
- Source: (MDR p160)
En tant que guerrier, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_fighter_champion.md b/Data/HD/hd_fighter_champion.md
index 4ab556ec..9963f948 100644
--- a/Data/HD/hd_fighter_champion.md
+++ b/Data/HD/hd_fighter_champion.md
@@ -5,7 +5,7 @@
# Champion
-- AltName: Champion (SRD p25)
+- Alias: Champion (SRD p25)
- Source: (MDR p162)
Le champion se concentre sur le développement de la force physique brute perfectionnée pour en faire une arme mortelle. Ceux qui adoptent cet archétype associent entraînement rigoureux avec excellence physique afin de porter des coups dévastateurs.
diff --git a/Data/HD/hd_gnome.md b/Data/HD/hd_gnome.md
index e805b551..3d2c6b9f 100644
--- a/Data/HD/hd_gnome.md
+++ b/Data/HD/hd_gnome.md
@@ -5,7 +5,7 @@
# Gnome
-- AltName: Gnome (SRD p6)
+- Alias: Gnome (SRD p6)
- Source: (MDR p48)
## Traits des gnomes
diff --git a/Data/HD/hd_gnome_gnome_des_roches.md b/Data/HD/hd_gnome_gnome_des_roches.md
index 189390d3..8f539628 100644
--- a/Data/HD/hd_gnome_gnome_des_roches.md
+++ b/Data/HD/hd_gnome_gnome_des_roches.md
@@ -4,7 +4,7 @@
## Gnome des roches
-- AltName: Rock Gnome (SRD p6)
+- Alias: Rock Gnome (SRD p6)
- Source: (MDR p48)
Les gnomes des roches sont naturellement plus inventifs et résistants que les autres gnomes.
diff --git a/Data/HD/hd_half_elf.md b/Data/HD/hd_half_elf.md
index 1ec73611..73791e08 100644
--- a/Data/HD/hd_half_elf.md
+++ b/Data/HD/hd_half_elf.md
@@ -5,7 +5,7 @@
# Demi-elfe
-- AltName: Half-Elf (SRD p6)
+- Alias: Half-Elf (SRD p6)
- Source: (MDR p39)
## Traits des demi-elfes
diff --git a/Data/HD/hd_half_orc.md b/Data/HD/hd_half_orc.md
index e7103623..c72021c6 100644
--- a/Data/HD/hd_half_orc.md
+++ b/Data/HD/hd_half_orc.md
@@ -5,7 +5,7 @@
# Demi-orc
-- AltName: Half-Orc (SRD p7)
+- Alias: Half-Orc (SRD p7)
- Source: (MDR p41)
## Traits des demi-orcs
diff --git a/Data/HD/hd_halfling.md b/Data/HD/hd_halfling.md
index 2a99d9bc..bd024be6 100644
--- a/Data/HD/hd_halfling.md
+++ b/Data/HD/hd_halfling.md
@@ -5,7 +5,7 @@
# Halfelin
-- AltName: Halfling (SRD p4)
+- Alias: Halfling (SRD p4)
- Source: (MDR p52)
## Traits des halfelins
diff --git a/Data/HD/hd_halfling_halfelin_pied_leger.md b/Data/HD/hd_halfling_halfelin_pied_leger.md
index 905c7017..5066ddc7 100644
--- a/Data/HD/hd_halfling_halfelin_pied_leger.md
+++ b/Data/HD/hd_halfling_halfelin_pied_leger.md
@@ -4,7 +4,7 @@
## Halfelin pied-léger
-- AltName: Lightfoot (SRD p5)
+- Alias: Lightfoot (SRD p5)
- Source: (MDR p52)
En tant que halfelin pied-léger, vous cacher est presque une seconde nature et vous n'hésitez pas à utiliser d'autres créatures pour échapper aux regards. Vous êtes d'un naturel plutôt affable et sympathique.
diff --git a/Data/HD/hd_human.md b/Data/HD/hd_human.md
index 684b7cfd..1890571f 100644
--- a/Data/HD/hd_human.md
+++ b/Data/HD/hd_human.md
@@ -5,7 +5,7 @@
# Humain
-- AltName: Human (SRD p5)
+- Alias: Human (SRD p5)
- Source: (MDR p54)
## Traits des humains
diff --git a/Data/HD/hd_inspiration.md b/Data/HD/hd_inspiration.md
index c9234036..f36d6ffe 100644
--- a/Data/HD/hd_inspiration.md
+++ b/Data/HD/hd_inspiration.md
@@ -5,7 +5,7 @@
# Inspiration
-- AltName: Inspiration (SRD p59)
+- Alias: Inspiration (SRD p59)
- Source: (MDR p76)
L'inspiration est une règle que le maître du donjon peut utiliser pour récompenser un joueur qui interprète son personnage de manière particulièrement juste, en restant fidèle à ses traits de personnalité, ses idéaux, ses liens et ses défauts. L'inspiration vous permet par exemple d'exploiter la compassion dont fait preuve votre personnage pour les plus démunis pour avoir un ascendant lors d'une négociation avec le prince mendiant, ou encore d'utiliser votre promesse de défendre votre village natal pour vous délivrer des effets d'un sort qui vous a été lancé.
diff --git a/Data/HD/hd_languages.md b/Data/HD/hd_languages.md
index 13cd4a97..58f96571 100644
--- a/Data/HD/hd_languages.md
+++ b/Data/HD/hd_languages.md
@@ -5,7 +5,7 @@
# Langues
-- AltName: Languages (SRD p59)
+- Alias: Languages (SRD p59)
- Source: (MDR p75)
La race d'un personnage détermine la langue qu'il parle par défaut et son historique peut lui permettre de parler une ou deux langues supplémentaires au choix. Ces langues doivent être notées sur la fiche de personnage.
diff --git a/Data/HD/hd_madness.md b/Data/HD/hd_madness.md
index 82d2edff..aab9c886 100644
--- a/Data/HD/hd_madness.md
+++ b/Data/HD/hd_madness.md
@@ -5,7 +5,7 @@
## La folie
-- AltName: Madness
+- Alias: Madness
- Source: (CEO p380)(SRD p201)
Dans une campagne ordinaire, il est bien rare que les personnages deviennent fous à force d'affronter de multiples horreurs et de se livrer à maints carnages, cependant, parfois, le stress de la vie d'aventurier devient un poids trop lourd à porter. Si l'horreur tient une place de choix parmi les thèmes de votre campagne, vous pouvez utiliser la folie pour lui donner encore plus d'importance et mettre en valeur la nature horrifiante hors du commun des dangers à surmonter.
diff --git a/Data/HD/hd_magicitems.md b/Data/HD/hd_magicitems.md
index cf531467..037841b0 100644
--- a/Data/HD/hd_magicitems.md
+++ b/Data/HD/hd_magicitems.md
@@ -5,7 +5,7 @@
# Objets magiques
-- AltName: Magic Items (SRD p206)
+- Alias: Magic Items (SRD p206)
- Source: (CDC p129)
Les objets magiques sont récupérés dans les caches aux trésors de monstres vaincus ou dans des chambres fortes depuis longtemps oubliées. Ces objets confèrent à leur détenteur des capacités qu'ils ont rarement l'occasion de maîtriser par ailleurs ou complètent leurs capacités par le biais d'une extraordinaire magie.
diff --git a/Data/HD/hd_magicitems_az.md b/Data/HD/hd_magicitems_az.md
index 1a276b86..357dcc3f 100644
--- a/Data/HD/hd_magicitems_az.md
+++ b/Data/HD/hd_magicitems_az.md
@@ -5,7 +5,7 @@
## Les objets magiques
-- AltName: Magic Items A-Z (SRD p207)
+- Alias: Magic Items A-Z (SRD p207)
- Source: (CDC p138)
Les objets magiques sont présentés ici dans l'ordre alphabétique. Le descriptif de chacun comprend son nom, sa catégorie, sa rareté et ses propriétés magiques.
diff --git a/Data/HD/hd_magicitems_az_ailes_de_vol.md b/Data/HD/hd_magicitems_az_ailes_de_vol.md
index c4cbcb7d..f54c7e99 100644
--- a/Data/HD/hd_magicitems_az_ailes_de_vol.md
+++ b/Data/HD/hd_magicitems_az_ailes_de_vol.md
@@ -4,7 +4,7 @@
### Ailes de vol
-- AltName: Wings of Flying (SRD p251)
+- Alias: Wings of Flying (SRD p251)
- Source: (CDC p138)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_amulette_antidote.md b/Data/HD/hd_magicitems_az_amulette_antidote.md
index 2fc4c198..9ce249a3 100644
--- a/Data/HD/hd_magicitems_az_amulette_antidote.md
+++ b/Data/HD/hd_magicitems_az_amulette_antidote.md
@@ -4,7 +4,7 @@
### Amulette antidote
-- AltName: Periapt of Proof against Poison (SRD p232)
+- Alias: Periapt of Proof against Poison (SRD p232)
- Source: (CDC p139)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_amulette_dantidetection.md b/Data/HD/hd_magicitems_az_amulette_dantidetection.md
index 9efdf036..c9b7f8c8 100644
--- a/Data/HD/hd_magicitems_az_amulette_dantidetection.md
+++ b/Data/HD/hd_magicitems_az_amulette_dantidetection.md
@@ -4,7 +4,7 @@
### Amulette d'antidétection
-- AltName: Amulet of Proof against Detection and Location (SRD p207)
+- Alias: Amulet of Proof against Detection and Location (SRD p207)
- Source: (CDC p139)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_amulette_de_bonne_sante.md b/Data/HD/hd_magicitems_az_amulette_de_bonne_sante.md
index 871d0052..62cca300 100644
--- a/Data/HD/hd_magicitems_az_amulette_de_bonne_sante.md
+++ b/Data/HD/hd_magicitems_az_amulette_de_bonne_sante.md
@@ -4,7 +4,7 @@
### Amulette de bonne santé
-- AltName: Amulet of Health (SRD p207)
+- Alias: Amulet of Health (SRD p207)
- Source: (CDC p139)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_amulette_de_cicatrisation.md b/Data/HD/hd_magicitems_az_amulette_de_cicatrisation.md
index 42940612..417fef7c 100644
--- a/Data/HD/hd_magicitems_az_amulette_de_cicatrisation.md
+++ b/Data/HD/hd_magicitems_az_amulette_de_cicatrisation.md
@@ -4,7 +4,7 @@
### Amulette de cicatrisation
-- AltName: Periapt of Wound Closure (SRD p232)
+- Alias: Periapt of Wound Closure (SRD p232)
- Source: (CDC p139)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_amulette_de_sante.md b/Data/HD/hd_magicitems_az_amulette_de_sante.md
index cd4b0735..4963afe4 100644
--- a/Data/HD/hd_magicitems_az_amulette_de_sante.md
+++ b/Data/HD/hd_magicitems_az_amulette_de_sante.md
@@ -4,7 +4,7 @@
### Amulette de santé
-- AltName: Periapt of Health (SRD p232)
+- Alias: Periapt of Health (SRD p232)
- Source: (CDC p139)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_amulette_des_plans.md b/Data/HD/hd_magicitems_az_amulette_des_plans.md
index c56b614a..57789864 100644
--- a/Data/HD/hd_magicitems_az_amulette_des_plans.md
+++ b/Data/HD/hd_magicitems_az_amulette_des_plans.md
@@ -4,7 +4,7 @@
### Amulette des plans
-- AltName: Amulet of the Planes (SRD p207)
+- Alias: Amulet of the Planes (SRD p207)
- Source: (CDC p139)
- Objet merveilleux, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_daction_libre.md b/Data/HD/hd_magicitems_az_anneau_daction_libre.md
index e6b5263b..d9df5f52 100644
--- a/Data/HD/hd_magicitems_az_anneau_daction_libre.md
+++ b/Data/HD/hd_magicitems_az_anneau_daction_libre.md
@@ -4,7 +4,7 @@
### Anneau d'action libre
-- AltName: Ring of Free Action (SRD p236)
+- Alias: Ring of Free Action (SRD p236)
- Source: (CDC p139)
- Anneau, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_chaleur.md b/Data/HD/hd_magicitems_az_anneau_de_chaleur.md
index 9ac6cae1..1b87c9c5 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_chaleur.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_chaleur.md
@@ -4,7 +4,7 @@
### Anneau de chaleur
-- AltName: Ring of Warmth (SRD p238)
+- Alias: Ring of Warmth (SRD p238)
- Source: (CDC p139)
- Anneau, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_convocation_de_djinn.md b/Data/HD/hd_magicitems_az_anneau_de_convocation_de_djinn.md
index 2a716269..aaeaa8cf 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_convocation_de_djinn.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_convocation_de_djinn.md
@@ -4,7 +4,7 @@
### Anneau de convocation de djinn
-- AltName: Ring of Djinni Summoning (SRD p235)
+- Alias: Ring of Djinni Summoning (SRD p235)
- Source: (CDC p139)
- Anneau, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_derobade.md b/Data/HD/hd_magicitems_az_anneau_de_derobade.md
index 2f66f909..b6d6c81c 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_derobade.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_derobade.md
@@ -4,7 +4,7 @@
### Anneau de dérobade
-- AltName: Ring of Evasion (SRD p236)
+- Alias: Ring of Evasion (SRD p236)
- Source: (CDC p139)
- Anneau, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_feu_detoiles.md b/Data/HD/hd_magicitems_az_anneau_de_feu_detoiles.md
index a8b1a07c..b422e28b 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_feu_detoiles.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_feu_detoiles.md
@@ -4,7 +4,7 @@
### Anneau de feu d'étoiles
-- AltName: Ring of Shooting Stars (SRD p237)
+- Alias: Ring of Shooting Stars (SRD p237)
- Source: (CDC p140)
- Anneau, très rare (harmonisation en plein air et de nuit exigée)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_legerete.md b/Data/HD/hd_magicitems_az_anneau_de_legerete.md
index be950c89..5e0aa4d9 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_legerete.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_legerete.md
@@ -4,7 +4,7 @@
### Anneau de légèreté
-- AltName: Ring of Feather Falling (SRD p236)
+- Alias: Ring of Feather Falling (SRD p236)
- Source: (CDC p140)
- Anneau, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_maitrise_elementaire.md b/Data/HD/hd_magicitems_az_anneau_de_maitrise_elementaire.md
index 78f65edb..f1b458b4 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_maitrise_elementaire.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_maitrise_elementaire.md
@@ -4,7 +4,7 @@
### Anneau de maîtrise élémentaire
-- AltName: Ring of Elemental Command (SRD p235)
+- Alias: Ring of Elemental Command (SRD p235)
- Source: (CDC p140)
- Anneau, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_marche_sur_leau.md b/Data/HD/hd_magicitems_az_anneau_de_marche_sur_leau.md
index baaff86f..39fc39f9 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_marche_sur_leau.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_marche_sur_leau.md
@@ -4,7 +4,7 @@
### Anneau de marche sur l'eau
-- AltName: Ring of Water Walking (SRD p238)
+- Alias: Ring of Water Walking (SRD p238)
- Source: (CDC p141)
- Anneau, peu courant
diff --git a/Data/HD/hd_magicitems_az_anneau_de_nage.md b/Data/HD/hd_magicitems_az_anneau_de_nage.md
index 64b4a381..07af10f7 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_nage.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_nage.md
@@ -4,7 +4,7 @@
### Anneau de nage
-- AltName: Ring of Swimming (SRD p238)
+- Alias: Ring of Swimming (SRD p238)
- Source: (CDC p141)
- Anneau, peu courant
diff --git a/Data/HD/hd_magicitems_az_anneau_de_protection.md b/Data/HD/hd_magicitems_az_anneau_de_protection.md
index ad6126ef..db9b06b8 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_protection.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_protection.md
@@ -4,7 +4,7 @@
### Anneau de protection
-- AltName: Ring of Protection (SRD p237)
+- Alias: Ring of Protection (SRD p237)
- Source: (CDC p141)
- Anneau, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_protection_mentale.md b/Data/HD/hd_magicitems_az_anneau_de_protection_mentale.md
index f8ae4d59..c9ac787e 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_protection_mentale.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_protection_mentale.md
@@ -4,7 +4,7 @@
### Anneau de protection mentale
-- AltName: Ring of Mind Shielding (SRD p236)
+- Alias: Ring of Mind Shielding (SRD p236)
- Source: (CDC p141)
- Anneau, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_regeneration.md b/Data/HD/hd_magicitems_az_anneau_de_regeneration.md
index 63201f2b..6d938cfa 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_regeneration.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_regeneration.md
@@ -4,7 +4,7 @@
### Anneau de régénération
-- AltName: Ring of Regeneration (SRD p237)
+- Alias: Ring of Regeneration (SRD p237)
- Source: (CDC p141)
- Anneau, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_renvoi_des_sorts.md b/Data/HD/hd_magicitems_az_anneau_de_renvoi_des_sorts.md
index 69895781..68651a01 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_renvoi_des_sorts.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_renvoi_des_sorts.md
@@ -4,7 +4,7 @@
### Anneau de renvoi des sorts
-- AltName: Ring of Spell Turning (SRD p237)
+- Alias: Ring of Spell Turning (SRD p237)
- Source: (CDC p142)
- Anneau, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_resistance.md b/Data/HD/hd_magicitems_az_anneau_de_resistance.md
index 1fec75a3..4eeec2f9 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_resistance.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_resistance.md
@@ -4,7 +4,7 @@
### Anneau de résistance
-- AltName: Ring of Resistance (SRD p237)
+- Alias: Ring of Resistance (SRD p237)
- Source: (CDC p142)
- Anneau, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_saut.md b/Data/HD/hd_magicitems_az_anneau_de_saut.md
index 3dad7ebc..275d119f 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_saut.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_saut.md
@@ -4,7 +4,7 @@
### Anneau de saut
-- AltName: Ring of Jumping (SRD p236)
+- Alias: Ring of Jumping (SRD p236)
- Source: (CDC p142)
- Anneau, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_stockage_de_sorts.md b/Data/HD/hd_magicitems_az_anneau_de_stockage_de_sorts.md
index 8e6ad192..1e276cc2 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_stockage_de_sorts.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_stockage_de_sorts.md
@@ -4,7 +4,7 @@
### Anneau de stockage de sorts
-- AltName: Ring of Spell Storing (SRD p237)
+- Alias: Ring of Spell Storing (SRD p237)
- Source: (CDC p142)
- Anneau, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_telekinesie.md b/Data/HD/hd_magicitems_az_anneau_de_telekinesie.md
index f5234924..6450d2c5 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_telekinesie.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_telekinesie.md
@@ -4,7 +4,7 @@
### Anneau de télékinésie
-- AltName: Ring of Telekinesis (SRD p238)
+- Alias: Ring of Telekinesis (SRD p238)
- Source: (CDC p142)
- Anneau, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_de_triple_souhait.md b/Data/HD/hd_magicitems_az_anneau_de_triple_souhait.md
index 8051fc84..95a00e90 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_triple_souhait.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_triple_souhait.md
@@ -4,7 +4,7 @@
### Anneau de triple souhait
-- AltName: Ring of Three Wishes (SRD p238)
+- Alias: Ring of Three Wishes (SRD p238)
- Source: (CDC p142)
- Anneau, légendaire
diff --git a/Data/HD/hd_magicitems_az_anneau_de_vision_aux_rayons_x.md b/Data/HD/hd_magicitems_az_anneau_de_vision_aux_rayons_x.md
index 0eed8fca..5d401f60 100644
--- a/Data/HD/hd_magicitems_az_anneau_de_vision_aux_rayons_x.md
+++ b/Data/HD/hd_magicitems_az_anneau_de_vision_aux_rayons_x.md
@@ -4,7 +4,7 @@
### Anneau de vision aux rayons X
-- AltName: Ring of X-ray Vision (SRD p238)
+- Alias: Ring of X-ray Vision (SRD p238)
- Source: (CDC p142)
- Anneau, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_dinfluence_animale.md b/Data/HD/hd_magicitems_az_anneau_dinfluence_animale.md
index 5f3a3a3c..e462575d 100644
--- a/Data/HD/hd_magicitems_az_anneau_dinfluence_animale.md
+++ b/Data/HD/hd_magicitems_az_anneau_dinfluence_animale.md
@@ -4,7 +4,7 @@
### Anneau d'influence animale
-- AltName: Ring of Animal Influence (SRD p235)
+- Alias: Ring of Animal Influence (SRD p235)
- Source: (CDC p142)
- Anneau, rare
diff --git a/Data/HD/hd_magicitems_az_anneau_dinvisibilite.md b/Data/HD/hd_magicitems_az_anneau_dinvisibilite.md
index 789f60ce..82f94d88 100644
--- a/Data/HD/hd_magicitems_az_anneau_dinvisibilite.md
+++ b/Data/HD/hd_magicitems_az_anneau_dinvisibilite.md
@@ -4,7 +4,7 @@
### Anneau d'invisibilité
-- AltName: Ring of Invisibility (SRD p236)
+- Alias: Ring of Invisibility (SRD p236)
- Source: (CDC p143)
- Anneau, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_anneau_du_belier.md b/Data/HD/hd_magicitems_az_anneau_du_belier.md
index 7bc7eee4..67ceb897 100644
--- a/Data/HD/hd_magicitems_az_anneau_du_belier.md
+++ b/Data/HD/hd_magicitems_az_anneau_du_belier.md
@@ -4,7 +4,7 @@
### Anneau du bélier
-- AltName: Ring of the Ram (SRD p238)
+- Alias: Ring of the Ram (SRD p238)
- Source: (CDC p143)
- Anneau, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_arc_du_serment.md b/Data/HD/hd_magicitems_az_arc_du_serment.md
index fc426a8d..73e154d6 100644
--- a/Data/HD/hd_magicitems_az_arc_du_serment.md
+++ b/Data/HD/hd_magicitems_az_arc_du_serment.md
@@ -4,7 +4,7 @@
### Arc du serment
-- AltName: Oathbow (SRD p231)
+- Alias: Oathbow (SRD p231)
- Source: (CDC p143)
- Arme (arc long), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_arme_1_2_ou_3.md b/Data/HD/hd_magicitems_az_arme_1_2_ou_3.md
index a762ec23..4ec97e70 100644
--- a/Data/HD/hd_magicitems_az_arme_1_2_ou_3.md
+++ b/Data/HD/hd_magicitems_az_arme_1_2_ou_3.md
@@ -4,7 +4,7 @@
### Arme +1, +2 ou +3
-- AltName: Weapon, +1, +2, or +3 (SRD p250)
+- Alias: Weapon, +1, +2, or +3 (SRD p250)
- Source: (CDC p143)
- Arme (n'importe quelle arme), peu courante (+1), rare (+2) ou très rare (+3)
diff --git a/Data/HD/hd_magicitems_az_arme_vicieuse.md b/Data/HD/hd_magicitems_az_arme_vicieuse.md
index 601647b1..e535e5ed 100644
--- a/Data/HD/hd_magicitems_az_arme_vicieuse.md
+++ b/Data/HD/hd_magicitems_az_arme_vicieuse.md
@@ -4,7 +4,7 @@
### Arme vicieuse
-- AltName: Vicious Weapon (SRD p248)
+- Alias: Vicious Weapon (SRD p248)
- Source: (CDC p143)
- Arme (n'importe quelle arme), rare
diff --git a/Data/HD/hd_magicitems_az_armure_1_2_ou_3.md b/Data/HD/hd_magicitems_az_armure_1_2_ou_3.md
index 57ca4d95..f794023e 100644
--- a/Data/HD/hd_magicitems_az_armure_1_2_ou_3.md
+++ b/Data/HD/hd_magicitems_az_armure_1_2_ou_3.md
@@ -4,7 +4,7 @@
### Armure +1, +2 ou +3
-- AltName: Armor +1, +2, or +3 (SRD p208)
+- Alias: Armor +1, +2, or +3 (SRD p208)
- Source: (CDC p145)
- Armure (légère, intermédiaire ou lourde), rare (+1), très rare (+2) ou légendaire (+3)
diff --git a/Data/HD/hd_magicitems_az_armure_de_mithral.md b/Data/HD/hd_magicitems_az_armure_de_mithral.md
index aefe580a..430fa528 100644
--- a/Data/HD/hd_magicitems_az_armure_de_mithral.md
+++ b/Data/HD/hd_magicitems_az_armure_de_mithral.md
@@ -4,7 +4,7 @@
### Armure de mithral
-- AltName: Mithral Armor (SRD p231)
+- Alias: Mithral Armor (SRD p231)
- Source: (CDC p143)
- Armure (intermédiaire ou lourde mais pas en peau), peu courante
diff --git a/Data/HD/hd_magicitems_az_armure_de_resistance.md b/Data/HD/hd_magicitems_az_armure_de_resistance.md
index 45da0aa4..8b4970c8 100644
--- a/Data/HD/hd_magicitems_az_armure_de_resistance.md
+++ b/Data/HD/hd_magicitems_az_armure_de_resistance.md
@@ -4,7 +4,7 @@
### Armure de résistance
-- AltName: Armor of Resistance (SRD p208)
+- Alias: Armor of Resistance (SRD p208)
- Source: (CDC p144)
- Armure (légère, intermédiaire ou lourde), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_armure_de_vulnerabilite.md b/Data/HD/hd_magicitems_az_armure_de_vulnerabilite.md
index 762e4be5..7b3a1d90 100644
--- a/Data/HD/hd_magicitems_az_armure_de_vulnerabilite.md
+++ b/Data/HD/hd_magicitems_az_armure_de_vulnerabilite.md
@@ -4,7 +4,7 @@
### Armure de vulnérabilité
-- AltName: Armor of Vulnerability (SRD p209)
+- Alias: Armor of Vulnerability (SRD p209)
- Source: (CDC p145)
- Armure (harnois), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_armure_decailles_de_dragon.md b/Data/HD/hd_magicitems_az_armure_decailles_de_dragon.md
index 004f9e5e..9008bfd3 100644
--- a/Data/HD/hd_magicitems_az_armure_decailles_de_dragon.md
+++ b/Data/HD/hd_magicitems_az_armure_decailles_de_dragon.md
@@ -4,7 +4,7 @@
### Armure d'écailles de dragon
-- AltName: Dragon Scale Mail (SRD p219)
+- Alias: Dragon Scale Mail (SRD p219)
- Source: (CDC p143)
- Armure (armure d'écaille), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_armure_demoniaque.md b/Data/HD/hd_magicitems_az_armure_demoniaque.md
index 0ab2411f..380202ae 100644
--- a/Data/HD/hd_magicitems_az_armure_demoniaque.md
+++ b/Data/HD/hd_magicitems_az_armure_demoniaque.md
@@ -4,7 +4,7 @@
### Armure démoniaque
-- AltName: Demon Armor (SRD p218)
+- Alias: Demon Armor (SRD p218)
- Source: (CDC p144)
- Armure (harnois), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_armure_dinvulnerabilite.md b/Data/HD/hd_magicitems_az_armure_dinvulnerabilite.md
index e6bdd7a8..718e6443 100644
--- a/Data/HD/hd_magicitems_az_armure_dinvulnerabilite.md
+++ b/Data/HD/hd_magicitems_az_armure_dinvulnerabilite.md
@@ -4,7 +4,7 @@
### Armure d'invulnérabilité
-- AltName: Armor of Invulnerability (SRD p208)
+- Alias: Armor of Invulnerability (SRD p208)
- Source: (CDC p145)
- Armure (harnois), légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_armure_en_adamantium.md b/Data/HD/hd_magicitems_az_armure_en_adamantium.md
index 101cd60a..4e6749e9 100644
--- a/Data/HD/hd_magicitems_az_armure_en_adamantium.md
+++ b/Data/HD/hd_magicitems_az_armure_en_adamantium.md
@@ -4,7 +4,7 @@
### Armure en adamantium
-- AltName: Adamantine Armor (SRD p207)
+- Alias: Adamantine Armor (SRD p207)
- Source: (CDC p145)
- Armure (intermédiaire ou lourde, mais pas en peau), peu courante
diff --git a/Data/HD/hd_magicitems_az_baguette_de_boules_de_feu.md b/Data/HD/hd_magicitems_az_baguette_de_boules_de_feu.md
index 17cf8b30..5e50f51a 100644
--- a/Data/HD/hd_magicitems_az_baguette_de_boules_de_feu.md
+++ b/Data/HD/hd_magicitems_az_baguette_de_boules_de_feu.md
@@ -4,7 +4,7 @@
### Baguette de boules de feu
-- AltName: Wand of Fireballs (SRD p248)
+- Alias: Wand of Fireballs (SRD p248)
- Source: (CDC p145)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
diff --git a/Data/HD/hd_magicitems_az_baguette_de_detection_de_la_magie.md b/Data/HD/hd_magicitems_az_baguette_de_detection_de_la_magie.md
index 8a9e2ee9..25ff53bb 100644
--- a/Data/HD/hd_magicitems_az_baguette_de_detection_de_la_magie.md
+++ b/Data/HD/hd_magicitems_az_baguette_de_detection_de_la_magie.md
@@ -4,7 +4,7 @@
### Baguette de détection de la magie
-- AltName: Wand of Magic Detection (SRD p249)
+- Alias: Wand of Magic Detection (SRD p249)
- Source: (CDC p145)
- Baguette, peu courante
diff --git a/Data/HD/hd_magicitems_az_baguette_de_detection_de_lennemi.md b/Data/HD/hd_magicitems_az_baguette_de_detection_de_lennemi.md
index edf4e1f2..ee65eb4e 100644
--- a/Data/HD/hd_magicitems_az_baguette_de_detection_de_lennemi.md
+++ b/Data/HD/hd_magicitems_az_baguette_de_detection_de_lennemi.md
@@ -4,7 +4,7 @@
### Baguette de détection de l'ennemi
-- AltName: Wand of Enemy Detection (SRD p248)
+- Alias: Wand of Enemy Detection (SRD p248)
- Source: (CDC p145)
- Baguette, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_baguette_de_metamorphose.md b/Data/HD/hd_magicitems_az_baguette_de_metamorphose.md
index 4a97c839..e1f864cb 100644
--- a/Data/HD/hd_magicitems_az_baguette_de_metamorphose.md
+++ b/Data/HD/hd_magicitems_az_baguette_de_metamorphose.md
@@ -4,7 +4,7 @@
### Baguette de métamorphose
-- AltName: Wand of Polymorph (SRD p249)
+- Alias: Wand of Polymorph (SRD p249)
- Source: (CDC p145)
- Baguette, très rare (harmonisation avec un lanceur de sorts exigée)
diff --git a/Data/HD/hd_magicitems_az_baguette_de_paralysie.md b/Data/HD/hd_magicitems_az_baguette_de_paralysie.md
index fcc15cd3..45ecd115 100644
--- a/Data/HD/hd_magicitems_az_baguette_de_paralysie.md
+++ b/Data/HD/hd_magicitems_az_baguette_de_paralysie.md
@@ -4,7 +4,7 @@
### Baguette de paralysie
-- AltName: Wand of Paralysis (SRD p249)
+- Alias: Wand of Paralysis (SRD p249)
- Source: (CDC p146)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
diff --git a/Data/HD/hd_magicitems_az_baguette_de_projectiles_magiques.md b/Data/HD/hd_magicitems_az_baguette_de_projectiles_magiques.md
index d88d2d3c..5aac5a75 100644
--- a/Data/HD/hd_magicitems_az_baguette_de_projectiles_magiques.md
+++ b/Data/HD/hd_magicitems_az_baguette_de_projectiles_magiques.md
@@ -4,7 +4,7 @@
### Baguette de projectiles magiques
-- AltName: Wand of Magic Missiles (SRD p249)
+- Alias: Wand of Magic Missiles (SRD p249)
- Source: (CDC p146)
- Baguette, peu courante
diff --git a/Data/HD/hd_magicitems_az_baguette_de_terreur.md b/Data/HD/hd_magicitems_az_baguette_de_terreur.md
index 6037da7e..edf7fc96 100644
--- a/Data/HD/hd_magicitems_az_baguette_de_terreur.md
+++ b/Data/HD/hd_magicitems_az_baguette_de_terreur.md
@@ -4,7 +4,7 @@
### Baguette de terreur
-- AltName: Wand of Fear (SRD p248)
+- Alias: Wand of Fear (SRD p248)
- Source: (CDC p146)
- Baguette, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_baguette_declairs.md b/Data/HD/hd_magicitems_az_baguette_declairs.md
index 5646fc92..9f04621c 100644
--- a/Data/HD/hd_magicitems_az_baguette_declairs.md
+++ b/Data/HD/hd_magicitems_az_baguette_declairs.md
@@ -4,7 +4,7 @@
### Baguette d'éclairs
-- AltName: Wand of Lightning Bolts (SRD p249)
+- Alias: Wand of Lightning Bolts (SRD p249)
- Source: (CDC p145)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
diff --git a/Data/HD/hd_magicitems_az_baguette_des_entraves.md b/Data/HD/hd_magicitems_az_baguette_des_entraves.md
index 4275632b..c409d4b2 100644
--- a/Data/HD/hd_magicitems_az_baguette_des_entraves.md
+++ b/Data/HD/hd_magicitems_az_baguette_des_entraves.md
@@ -4,7 +4,7 @@
### Baguette des entraves
-- AltName: Wand of Binding (SRD p248)
+- Alias: Wand of Binding (SRD p248)
- Source: (CDC p146)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
diff --git a/Data/HD/hd_magicitems_az_baguette_des_secrets.md b/Data/HD/hd_magicitems_az_baguette_des_secrets.md
index 232e827f..77f89990 100644
--- a/Data/HD/hd_magicitems_az_baguette_des_secrets.md
+++ b/Data/HD/hd_magicitems_az_baguette_des_secrets.md
@@ -4,7 +4,7 @@
### Baguette des secrets
-- AltName: Wand of Secrets (SRD p249)
+- Alias: Wand of Secrets (SRD p249)
- Source: (CDC p147)
- Baguette, peu courante
diff --git a/Data/HD/hd_magicitems_az_baguette_du_mage_de_guerre_1_2_ou_3.md b/Data/HD/hd_magicitems_az_baguette_du_mage_de_guerre_1_2_ou_3.md
index 16a05716..b3f6e292 100644
--- a/Data/HD/hd_magicitems_az_baguette_du_mage_de_guerre_1_2_ou_3.md
+++ b/Data/HD/hd_magicitems_az_baguette_du_mage_de_guerre_1_2_ou_3.md
@@ -4,7 +4,7 @@
### Baguette du mage de guerre +1, +2 ou +3
-- AltName: Wand of the War Mage, +1, +2, or +3 (SRD p249)
+- Alias: Wand of the War Mage, +1, +2, or +3 (SRD p249)
- Source: (CDC p147)
- Baguette, peu courant (+1), rare (+2) ou très rare (+3) (harmonisation avec un lanceur de sorts exigée)
diff --git a/Data/HD/hd_magicitems_az_baguette_entoilee.md b/Data/HD/hd_magicitems_az_baguette_entoilee.md
index 4c134026..2138b3d0 100644
--- a/Data/HD/hd_magicitems_az_baguette_entoilee.md
+++ b/Data/HD/hd_magicitems_az_baguette_entoilee.md
@@ -4,7 +4,7 @@
### Baguette entoilée
-- AltName: Wand of Web (SRD p249)
+- Alias: Wand of Web (SRD p249)
- Source: (CDC p147)
- Baguette, peu courante (harmonisation avec un lanceur de sorts exigée)
diff --git a/Data/HD/hd_magicitems_az_baguette_merveilleuse.md b/Data/HD/hd_magicitems_az_baguette_merveilleuse.md
index 7080e8fc..31ad12d3 100644
--- a/Data/HD/hd_magicitems_az_baguette_merveilleuse.md
+++ b/Data/HD/hd_magicitems_az_baguette_merveilleuse.md
@@ -4,7 +4,7 @@
### Baguette merveilleuse
-- AltName: Wand of Wonder (SRD p249)
+- Alias: Wand of Wonder (SRD p249)
- Source: (CDC p147)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
diff --git a/Data/HD/hd_magicitems_az_balai_volant.md b/Data/HD/hd_magicitems_az_balai_volant.md
index 29ec27c9..f0a35bb3 100644
--- a/Data/HD/hd_magicitems_az_balai_volant.md
+++ b/Data/HD/hd_magicitems_az_balai_volant.md
@@ -4,7 +4,7 @@
### Balai volant
-- AltName: Broom of Flying (SRD p213)
+- Alias: Broom of Flying (SRD p213)
- Source: (CDC p148)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_bandeau_dintelligence.md b/Data/HD/hd_magicitems_az_bandeau_dintelligence.md
index 3ba9298e..0d76562c 100644
--- a/Data/HD/hd_magicitems_az_bandeau_dintelligence.md
+++ b/Data/HD/hd_magicitems_az_bandeau_dintelligence.md
@@ -4,7 +4,7 @@
### Bandeau d'intelligence
-- AltName: Headband of Intellect (SRD p225)
+- Alias: Headband of Intellect (SRD p225)
- Source: (CDC p148)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bateau_pliable.md b/Data/HD/hd_magicitems_az_bateau_pliable.md
index 0b0ec13e..15ecf863 100644
--- a/Data/HD/hd_magicitems_az_bateau_pliable.md
+++ b/Data/HD/hd_magicitems_az_bateau_pliable.md
@@ -4,7 +4,7 @@
### Bateau pliable
-- AltName: Folding Boat (SRD p223)
+- Alias: Folding Boat (SRD p223)
- Source: (CDC p148)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_baton_de_combat.md b/Data/HD/hd_magicitems_az_baton_de_combat.md
index f3a3da8f..a5cd3c73 100644
--- a/Data/HD/hd_magicitems_az_baton_de_combat.md
+++ b/Data/HD/hd_magicitems_az_baton_de_combat.md
@@ -4,7 +4,7 @@
### Bâton de combat
-- AltName: Staff of Striking (SRD p244)
+- Alias: Staff of Striking (SRD p244)
- Source: (CDC p149)
- Bâton, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_baton_de_feu.md b/Data/HD/hd_magicitems_az_baton_de_feu.md
index 2c71f6cd..dfe3d284 100644
--- a/Data/HD/hd_magicitems_az_baton_de_feu.md
+++ b/Data/HD/hd_magicitems_az_baton_de_feu.md
@@ -4,7 +4,7 @@
### Bâton de feu
-- AltName: Staff of Fire (SRD p243)
+- Alias: Staff of Fire (SRD p243)
- Source: (CDC p149)
- Bâton, très rare (harmonisation avec un druide, un ensorceleur, un magicien ou un sorcier exigée)
diff --git a/Data/HD/hd_magicitems_az_baton_de_fletrissement.md b/Data/HD/hd_magicitems_az_baton_de_fletrissement.md
index 14a35134..8daf1f63 100644
--- a/Data/HD/hd_magicitems_az_baton_de_fletrissement.md
+++ b/Data/HD/hd_magicitems_az_baton_de_fletrissement.md
@@ -4,7 +4,7 @@
### Bâton de flétrissement
-- AltName: Staff of Withering (SRD p246)
+- Alias: Staff of Withering (SRD p246)
- Source: (CDC p149)
- Bâton, rare (harmonisation avec un druide, un clerc ou un sorcier exigée)
diff --git a/Data/HD/hd_magicitems_az_baton_de_givre.md b/Data/HD/hd_magicitems_az_baton_de_givre.md
index 7e9b2f6e..d5de4ec1 100644
--- a/Data/HD/hd_magicitems_az_baton_de_givre.md
+++ b/Data/HD/hd_magicitems_az_baton_de_givre.md
@@ -4,7 +4,7 @@
### Bâton de givre
-- AltName: Staff of Frost (SRD p243)
+- Alias: Staff of Frost (SRD p243)
- Source: (CDC p149)
- Bâton, très rare (harmonisation avec un druide, un ensorceleur, un magicien ou un sorcier exigée)
diff --git a/Data/HD/hd_magicitems_az_baton_de_guerison.md b/Data/HD/hd_magicitems_az_baton_de_guerison.md
index 7853ca9a..b6a40216 100644
--- a/Data/HD/hd_magicitems_az_baton_de_guerison.md
+++ b/Data/HD/hd_magicitems_az_baton_de_guerison.md
@@ -4,7 +4,7 @@
### Bâton de guérison
-- AltName: Staff of Healing (SRD p243)
+- Alias: Staff of Healing (SRD p243)
- Source: (CDC p149)
- Bâton, rare (harmonisation avec un barde, un clerc ou un druide exigée)
diff --git a/Data/HD/hd_magicitems_az_baton_de_puissance.md b/Data/HD/hd_magicitems_az_baton_de_puissance.md
index 1ef0059a..7243c1a3 100644
--- a/Data/HD/hd_magicitems_az_baton_de_puissance.md
+++ b/Data/HD/hd_magicitems_az_baton_de_puissance.md
@@ -4,7 +4,7 @@
### Bâton de puissance
-- AltName: Staff of Power (SRD p243)
+- Alias: Staff of Power (SRD p243)
- Source: (CDC p149)
- Bâton, très rare (harmonisation avec un ensorceleur, un magicien ou un sorcier exigée)
diff --git a/Data/HD/hd_magicitems_az_baton_de_tonnerre_et_de_foudre.md b/Data/HD/hd_magicitems_az_baton_de_tonnerre_et_de_foudre.md
index a1881c79..a9d5f168 100644
--- a/Data/HD/hd_magicitems_az_baton_de_tonnerre_et_de_foudre.md
+++ b/Data/HD/hd_magicitems_az_baton_de_tonnerre_et_de_foudre.md
@@ -4,7 +4,7 @@
### Bâton de tonnerre et de foudre
-- AltName: Staff of Thunder and Lightning (SRD p245)
+- Alias: Staff of Thunder and Lightning (SRD p245)
- Source: (CDC p150)
- Bâton, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_baton_denvoutement.md b/Data/HD/hd_magicitems_az_baton_denvoutement.md
index 43ce8b08..aeec9dcf 100644
--- a/Data/HD/hd_magicitems_az_baton_denvoutement.md
+++ b/Data/HD/hd_magicitems_az_baton_denvoutement.md
@@ -4,7 +4,7 @@
### Bâton d'envoûtement
-- AltName: Staff of Charming (SRD p243)
+- Alias: Staff of Charming (SRD p243)
- Source: (CDC p148)
- Bâton, rare (harmonisation avec un barde, un clerc, un druide, un ensorceleur, un magicien ou un sorcier exigée)
diff --git a/Data/HD/hd_magicitems_az_baton_des_forets.md b/Data/HD/hd_magicitems_az_baton_des_forets.md
index 424bdde1..bd9950ff 100644
--- a/Data/HD/hd_magicitems_az_baton_des_forets.md
+++ b/Data/HD/hd_magicitems_az_baton_des_forets.md
@@ -4,7 +4,7 @@
### Bâton des forêts
-- AltName: Staff of the Woodlands (SRD p245)
+- Alias: Staff of the Woodlands (SRD p245)
- Source: (CDC p150)
- Bâton, rare (harmonisation avec un druide exigée)
diff --git a/Data/HD/hd_magicitems_az_baton_du_grand_essaim.md b/Data/HD/hd_magicitems_az_baton_du_grand_essaim.md
index 499ca985..fe369359 100644
--- a/Data/HD/hd_magicitems_az_baton_du_grand_essaim.md
+++ b/Data/HD/hd_magicitems_az_baton_du_grand_essaim.md
@@ -4,7 +4,7 @@
### Bâton du grand essaim
-- AltName: Staff of Swarming Insects (SRD p244)
+- Alias: Staff of Swarming Insects (SRD p244)
- Source: (CDC p150)
- Bâton, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_baton_du_python.md b/Data/HD/hd_magicitems_az_baton_du_python.md
index 08a29f88..0016053f 100644
--- a/Data/HD/hd_magicitems_az_baton_du_python.md
+++ b/Data/HD/hd_magicitems_az_baton_du_python.md
@@ -4,7 +4,7 @@
### Bâton du python
-- AltName: Staff of the Python (SRD p245)
+- Alias: Staff of the Python (SRD p245)
- Source: (CDC p151)
- Bâton, peu courant (harmonisation avec un clerc, druide ou un sorcier exigée)
diff --git a/Data/HD/hd_magicitems_az_baton_du_thaumaturge.md b/Data/HD/hd_magicitems_az_baton_du_thaumaturge.md
index d279acbd..34191d01 100644
--- a/Data/HD/hd_magicitems_az_baton_du_thaumaturge.md
+++ b/Data/HD/hd_magicitems_az_baton_du_thaumaturge.md
@@ -4,7 +4,7 @@
### Bâton du thaumaturge
-- AltName: Staff of the Magi (SRD p244)
+- Alias: Staff of the Magi (SRD p244)
- Source: (CDC p151)
- Bâton, légendaire (harmonisation avec un ensorceleur, un magicien ou un sorcier exigée)
diff --git a/Data/HD/hd_magicitems_az_baume_revigorant.md b/Data/HD/hd_magicitems_az_baume_revigorant.md
index 8cc527dd..108587f5 100644
--- a/Data/HD/hd_magicitems_az_baume_revigorant.md
+++ b/Data/HD/hd_magicitems_az_baume_revigorant.md
@@ -4,7 +4,7 @@
### Baume revigorant
-- AltName: Restorative Ointment (SRD p235)
+- Alias: Restorative Ointment (SRD p235)
- Source: (CDC p152)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_bol_de_controle_des_elementaires_de_leau.md b/Data/HD/hd_magicitems_az_bol_de_controle_des_elementaires_de_leau.md
index c034ab31..a692b6e5 100644
--- a/Data/HD/hd_magicitems_az_bol_de_controle_des_elementaires_de_leau.md
+++ b/Data/HD/hd_magicitems_az_bol_de_controle_des_elementaires_de_leau.md
@@ -4,7 +4,7 @@
### Bol de contrôle des élémentaires de l'eau
-- AltName: Bowl of Commanding Water Elementals (SRD p212)
+- Alias: Bowl of Commanding Water Elementals (SRD p212)
- Source: (CDC p152)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_bottes_ailees.md b/Data/HD/hd_magicitems_az_bottes_ailees.md
index 9d05842b..e713d83b 100644
--- a/Data/HD/hd_magicitems_az_bottes_ailees.md
+++ b/Data/HD/hd_magicitems_az_bottes_ailees.md
@@ -4,7 +4,7 @@
### Bottes ailées
-- AltName: Winged Boots (SRD p251)
+- Alias: Winged Boots (SRD p251)
- Source: (CDC p152)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bottes_de_levitation.md b/Data/HD/hd_magicitems_az_bottes_de_levitation.md
index 9e6c19b7..246a1a7a 100644
--- a/Data/HD/hd_magicitems_az_bottes_de_levitation.md
+++ b/Data/HD/hd_magicitems_az_bottes_de_levitation.md
@@ -4,7 +4,7 @@
### Bottes de lévitation
-- AltName: Boots of Levitation (SRD p212)
+- Alias: Boots of Levitation (SRD p212)
- Source: (CDC p152)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bottes_de_marche_et_de_saut.md b/Data/HD/hd_magicitems_az_bottes_de_marche_et_de_saut.md
index f25e00ef..b1e71a46 100644
--- a/Data/HD/hd_magicitems_az_bottes_de_marche_et_de_saut.md
+++ b/Data/HD/hd_magicitems_az_bottes_de_marche_et_de_saut.md
@@ -4,7 +4,7 @@
### Bottes de marche et de saut
-- AltName: Boots of Striding and Springing (SRD p212)
+- Alias: Boots of Striding and Springing (SRD p212)
- Source: (CDC p152)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bottes_de_rapidite.md b/Data/HD/hd_magicitems_az_bottes_de_rapidite.md
index 2135ae14..9fc6203b 100644
--- a/Data/HD/hd_magicitems_az_bottes_de_rapidite.md
+++ b/Data/HD/hd_magicitems_az_bottes_de_rapidite.md
@@ -4,7 +4,7 @@
### Bottes de rapidité
-- AltName: Boots of Speed (SRD p212)
+- Alias: Boots of Speed (SRD p212)
- Source: (CDC p152)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bottes_des_terres_gelees.md b/Data/HD/hd_magicitems_az_bottes_des_terres_gelees.md
index 936ac34b..937a75f2 100644
--- a/Data/HD/hd_magicitems_az_bottes_des_terres_gelees.md
+++ b/Data/HD/hd_magicitems_az_bottes_des_terres_gelees.md
@@ -4,7 +4,7 @@
### Bottes des terres gelées
-- AltName: Boots of the Winterlands (SRD p212)
+- Alias: Boots of the Winterlands (SRD p212)
- Source: (CDC p153)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bottes_elfiques.md b/Data/HD/hd_magicitems_az_bottes_elfiques.md
index bd9f2e4b..b6040822 100644
--- a/Data/HD/hd_magicitems_az_bottes_elfiques.md
+++ b/Data/HD/hd_magicitems_az_bottes_elfiques.md
@@ -4,7 +4,7 @@
### Bottes elfiques
-- AltName: Boots of Elvenkind (SRD p212)
+- Alias: Boots of Elvenkind (SRD p212)
- Source: (CDC p153)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_bouclier_1_2_ou_3.md b/Data/HD/hd_magicitems_az_bouclier_1_2_ou_3.md
index 241878f0..d6139f55 100644
--- a/Data/HD/hd_magicitems_az_bouclier_1_2_ou_3.md
+++ b/Data/HD/hd_magicitems_az_bouclier_1_2_ou_3.md
@@ -4,7 +4,7 @@
### Bouclier +1, +2 ou +3
-- AltName: Shield, +1, +2, or +3 (SRD p242)
+- Alias: Shield, +1, +2, or +3 (SRD p242)
- Source: (CDC p153)
- Armure (bouclier), peu courant (+1), rare (+2) ou très rare (+3)
diff --git a/Data/HD/hd_magicitems_az_bouclier_anime.md b/Data/HD/hd_magicitems_az_bouclier_anime.md
index b06ce20f..8607fe57 100644
--- a/Data/HD/hd_magicitems_az_bouclier_anime.md
+++ b/Data/HD/hd_magicitems_az_bouclier_anime.md
@@ -4,7 +4,7 @@
### Bouclier animé
-- AltName: Animated Shield (SRD p208)
+- Alias: Animated Shield (SRD p208)
- Source: (CDC p153)
- Armure (bouclier), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bouclier_antiprojectiles.md b/Data/HD/hd_magicitems_az_bouclier_antiprojectiles.md
index 83419432..fe54f8f0 100644
--- a/Data/HD/hd_magicitems_az_bouclier_antiprojectiles.md
+++ b/Data/HD/hd_magicitems_az_bouclier_antiprojectiles.md
@@ -4,7 +4,7 @@
### Bouclier antiprojectiles
-- AltName: Arrow-Catching Shield (SRD p209)
+- Alias: Arrow-Catching Shield (SRD p209)
- Source: (CDC p153)
- Armure (bouclier), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bouclier_dattraction_des_projectiles.md b/Data/HD/hd_magicitems_az_bouclier_dattraction_des_projectiles.md
index bc7c8dc4..2fa585b4 100644
--- a/Data/HD/hd_magicitems_az_bouclier_dattraction_des_projectiles.md
+++ b/Data/HD/hd_magicitems_az_bouclier_dattraction_des_projectiles.md
@@ -4,7 +4,7 @@
### Bouclier d'attraction des projectiles
-- AltName: Shield of Missile Attraction (SRD p242)
+- Alias: Shield of Missile Attraction (SRD p242)
- Source: (CDC p153)
- Armure (bouclier), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bouclier_de_protection_contre_la_magie.md b/Data/HD/hd_magicitems_az_bouclier_de_protection_contre_la_magie.md
index 363912e7..6bee07e1 100644
--- a/Data/HD/hd_magicitems_az_bouclier_de_protection_contre_la_magie.md
+++ b/Data/HD/hd_magicitems_az_bouclier_de_protection_contre_la_magie.md
@@ -4,7 +4,7 @@
### Bouclier de protection contre la magie
-- AltName: Spellguard Shield (SRD p242)
+- Alias: Spellguard Shield (SRD p242)
- Source: (CDC p153)
- Armure (bouclier), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_boule_de_cristal.md b/Data/HD/hd_magicitems_az_boule_de_cristal.md
index 6aa7575d..eac7da20 100644
--- a/Data/HD/hd_magicitems_az_boule_de_cristal.md
+++ b/Data/HD/hd_magicitems_az_boule_de_cristal.md
@@ -4,7 +4,7 @@
### Boule de cristal
-- AltName: Crystal Ball (SRD p214)
+- Alias: Crystal Ball (SRD p214)
- Source: (CDC p153)
- Objet merveilleux, très rare ou légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bouteille_de_lefrit.md b/Data/HD/hd_magicitems_az_bouteille_de_lefrit.md
index 187c41b4..382b7230 100644
--- a/Data/HD/hd_magicitems_az_bouteille_de_lefrit.md
+++ b/Data/HD/hd_magicitems_az_bouteille_de_lefrit.md
@@ -4,7 +4,7 @@
### Bouteille de l'éfrit
-- AltName: Efreeti Bottle (SRD p220)
+- Alias: Efreeti Bottle (SRD p220)
- Source: (CDC p154)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_bouteille_fumigene.md b/Data/HD/hd_magicitems_az_bouteille_fumigene.md
index 00982e4a..f53e7410 100644
--- a/Data/HD/hd_magicitems_az_bouteille_fumigene.md
+++ b/Data/HD/hd_magicitems_az_bouteille_fumigene.md
@@ -4,7 +4,7 @@
### Bouteille fumigène
-- AltName: Eversmoking Bottle (SRD p220)
+- Alias: Eversmoking Bottle (SRD p220)
- Source: (CDC p154)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_bracelets_darcherie.md b/Data/HD/hd_magicitems_az_bracelets_darcherie.md
index ca166d93..3d376202 100644
--- a/Data/HD/hd_magicitems_az_bracelets_darcherie.md
+++ b/Data/HD/hd_magicitems_az_bracelets_darcherie.md
@@ -4,7 +4,7 @@
### Bracelets d'archerie
-- AltName: Bracers of Archery (SRD p212)
+- Alias: Bracers of Archery (SRD p212)
- Source: (CDC p154)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_bracelets_de_defense.md b/Data/HD/hd_magicitems_az_bracelets_de_defense.md
index 7eca8d40..3744288d 100644
--- a/Data/HD/hd_magicitems_az_bracelets_de_defense.md
+++ b/Data/HD/hd_magicitems_az_bracelets_de_defense.md
@@ -4,7 +4,7 @@
### Bracelets de défense
-- AltName: Bracers of Defense (SRD p212)
+- Alias: Bracers of Defense (SRD p212)
- Source: (CDC p154)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_brasero_de_controle_des_elementaires_du_feu.md b/Data/HD/hd_magicitems_az_brasero_de_controle_des_elementaires_du_feu.md
index 567c666b..3c5acfbb 100644
--- a/Data/HD/hd_magicitems_az_brasero_de_controle_des_elementaires_du_feu.md
+++ b/Data/HD/hd_magicitems_az_brasero_de_controle_des_elementaires_du_feu.md
@@ -4,7 +4,7 @@
### Brasero de contrôle des élémentaires du feu
-- AltName: Brazier of Commanding Fire Elementals (SRD p212)
+- Alias: Brazier of Commanding Fire Elementals (SRD p212)
- Source: (CDC p154)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_broche_de_protection.md b/Data/HD/hd_magicitems_az_broche_de_protection.md
index 27e0ab59..dfaf35e5 100644
--- a/Data/HD/hd_magicitems_az_broche_de_protection.md
+++ b/Data/HD/hd_magicitems_az_broche_de_protection.md
@@ -4,7 +4,7 @@
### Broche de protection
-- AltName: Brooch of Shielding (SRD p212)
+- Alias: Brooch of Shielding (SRD p212)
- Source: (CDC p154)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_cape_de_deplacement.md b/Data/HD/hd_magicitems_az_cape_de_deplacement.md
index e8d19cdd..88d1da81 100644
--- a/Data/HD/hd_magicitems_az_cape_de_deplacement.md
+++ b/Data/HD/hd_magicitems_az_cape_de_deplacement.md
@@ -4,7 +4,7 @@
### Cape de déplacement
-- AltName: Cloak of Displacement (SRD p214)
+- Alias: Cloak of Displacement (SRD p214)
- Source: (CDC p154)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_cape_de_la_chauve_souris.md b/Data/HD/hd_magicitems_az_cape_de_la_chauve_souris.md
index 3092c952..6cddfbc2 100644
--- a/Data/HD/hd_magicitems_az_cape_de_la_chauve_souris.md
+++ b/Data/HD/hd_magicitems_az_cape_de_la_chauve_souris.md
@@ -4,7 +4,7 @@
### Cape de la chauve-souris
-- AltName: Cloak of the Bat (SRD p214)
+- Alias: Cloak of the Bat (SRD p214)
- Source: (CDC p155)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_cape_de_la_raie_manta.md b/Data/HD/hd_magicitems_az_cape_de_la_raie_manta.md
index 6e13ae90..313a0a11 100644
--- a/Data/HD/hd_magicitems_az_cape_de_la_raie_manta.md
+++ b/Data/HD/hd_magicitems_az_cape_de_la_raie_manta.md
@@ -4,7 +4,7 @@
### Cape de la raie manta
-- AltName: Cloak of the Manta Ray (SRD p214)
+- Alias: Cloak of the Manta Ray (SRD p214)
- Source: (CDC p155)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_cape_de_larachnide.md b/Data/HD/hd_magicitems_az_cape_de_larachnide.md
index 251c2bc6..322a15ca 100644
--- a/Data/HD/hd_magicitems_az_cape_de_larachnide.md
+++ b/Data/HD/hd_magicitems_az_cape_de_larachnide.md
@@ -4,7 +4,7 @@
### Cape de l'arachnide
-- AltName: Cloak of Arachnida (SRD p214)
+- Alias: Cloak of Arachnida (SRD p214)
- Source: (CDC p154)
- Objet merveilleux, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_cape_de_prestidigitateur.md b/Data/HD/hd_magicitems_az_cape_de_prestidigitateur.md
index c1b98a9e..7a88aa7c 100644
--- a/Data/HD/hd_magicitems_az_cape_de_prestidigitateur.md
+++ b/Data/HD/hd_magicitems_az_cape_de_prestidigitateur.md
@@ -4,7 +4,7 @@
### Cape de prestidigitateur
-- AltName: Cape of the Mountebank (SRD p213)
+- Alias: Cape of the Mountebank (SRD p213)
- Source: (CDC p155)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_cape_de_protection.md b/Data/HD/hd_magicitems_az_cape_de_protection.md
index 77f53be1..15571924 100644
--- a/Data/HD/hd_magicitems_az_cape_de_protection.md
+++ b/Data/HD/hd_magicitems_az_cape_de_protection.md
@@ -4,7 +4,7 @@
### Cape de protection
-- AltName: Cloak of Protection (SRD p214)
+- Alias: Cloak of Protection (SRD p214)
- Source: (CDC p155)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_cape_elfique.md b/Data/HD/hd_magicitems_az_cape_elfique.md
index 8a21eec0..83cc5f1b 100644
--- a/Data/HD/hd_magicitems_az_cape_elfique.md
+++ b/Data/HD/hd_magicitems_az_cape_elfique.md
@@ -4,7 +4,7 @@
### Cape elfique
-- AltName: Cloak of Elvenkind (SRD p214)
+- Alias: Cloak of Elvenkind (SRD p214)
- Source: (CDC p155)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_carafe_intarissable.md b/Data/HD/hd_magicitems_az_carafe_intarissable.md
index 8c146187..02e5593a 100644
--- a/Data/HD/hd_magicitems_az_carafe_intarissable.md
+++ b/Data/HD/hd_magicitems_az_carafe_intarissable.md
@@ -4,7 +4,7 @@
### Carafe intarissable
-- AltName: Decanter of Endless Water (SRD p216)
+- Alias: Decanter of Endless Water (SRD p216)
- Source: (CDC p155)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_carillon_douverture.md b/Data/HD/hd_magicitems_az_carillon_douverture.md
index 26baba22..2c69a3b2 100644
--- a/Data/HD/hd_magicitems_az_carillon_douverture.md
+++ b/Data/HD/hd_magicitems_az_carillon_douverture.md
@@ -4,7 +4,7 @@
### Carillon d'ouverture
-- AltName: Chime of Opening (SRD p213)
+- Alias: Chime of Opening (SRD p213)
- Source: (CDC p156)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_carquois_efficace.md b/Data/HD/hd_magicitems_az_carquois_efficace.md
index aec2d21f..fe8a4761 100644
--- a/Data/HD/hd_magicitems_az_carquois_efficace.md
+++ b/Data/HD/hd_magicitems_az_carquois_efficace.md
@@ -4,7 +4,7 @@
### Carquois efficace
-- AltName: Efficient Quiver (SRD p220)
+- Alias: Efficient Quiver (SRD p220)
- Source: (CDC p156)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_cartes_dillusion.md b/Data/HD/hd_magicitems_az_cartes_dillusion.md
index 81ac2791..21968932 100644
--- a/Data/HD/hd_magicitems_az_cartes_dillusion.md
+++ b/Data/HD/hd_magicitems_az_cartes_dillusion.md
@@ -4,7 +4,7 @@
### Cartes d'illusion
-- AltName: Deck of Illusions (SRD p216)
+- Alias: Deck of Illusions (SRD p216)
- Source: (CDC p156)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_cartes_merveilleuses.md b/Data/HD/hd_magicitems_az_cartes_merveilleuses.md
index c7c78dba..6a9f56b5 100644
--- a/Data/HD/hd_magicitems_az_cartes_merveilleuses.md
+++ b/Data/HD/hd_magicitems_az_cartes_merveilleuses.md
@@ -4,7 +4,7 @@
### Cartes merveilleuses
-- AltName: Deck of Many Things (SRD p216)
+- Alias: Deck of Many Things (SRD p216)
- Source: (CDC p157)
- Objet merveilleux, légendaire
diff --git a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant.md b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant.md
index c8c75f79..4813789d 100644
--- a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant.md
+++ b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant.md
@@ -4,7 +4,7 @@
### Ceinturon de force de géant
-- AltName: Belt of Giant Strength (SRD p211)
+- Alias: Belt of Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, rareté variable (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_collines.md b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_collines.md
index 0592caab..0bf8ec6a 100644
--- a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_collines.md
+++ b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_collines.md
@@ -4,7 +4,7 @@
### Ceinturon de force de géant des collines
-- AltName: Belt of Hill Giant Strength (SRD p211)
+- Alias: Belt of Hill Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_nuages.md b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_nuages.md
index 09d24b9f..b654b3ba 100644
--- a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_nuages.md
+++ b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_nuages.md
@@ -4,7 +4,7 @@
### Ceinturon de force de géant des nuages
-- AltName: Belt of Cloud Giant Strength (SRD p211)
+- Alias: Belt of Cloud Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_tempetes.md b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_tempetes.md
index 8d65b11f..ba7f4ecb 100644
--- a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_tempetes.md
+++ b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_des_tempetes.md
@@ -4,7 +4,7 @@
### Ceinturon de force de géant des tempêtes
-- AltName: Belt of Storm Giant Strength (SRD p211)
+- Alias: Belt of Storm Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_du_feu.md b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_du_feu.md
index f96ae229..faad17dd 100644
--- a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_du_feu.md
+++ b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_du_feu.md
@@ -4,7 +4,7 @@
### Ceinturon de force de géant du feu
-- AltName: Belt of Fire Giant Strength (SRD p211)
+- Alias: Belt of Fire Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_du_givredes_pierres.md b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_du_givredes_pierres.md
index 8a2147d3..a1aff4e3 100644
--- a/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_du_givredes_pierres.md
+++ b/Data/HD/hd_magicitems_az_ceinturon_de_force_de_geant_du_givredes_pierres.md
@@ -4,7 +4,7 @@
### Ceinturon de force de géant du givre/des pierres
-- AltName: Belt of Frost / Stone Giant Strength (SRD p211)
+- Alias: Belt of Frost / Stone Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_ceinturon_des_nains.md b/Data/HD/hd_magicitems_az_ceinturon_des_nains.md
index fc5d64bd..173fba08 100644
--- a/Data/HD/hd_magicitems_az_ceinturon_des_nains.md
+++ b/Data/HD/hd_magicitems_az_ceinturon_des_nains.md
@@ -4,7 +4,7 @@
### Ceinturon des nains
-- AltName: Belt of Dwarvenkind (SRD p211)
+- Alias: Belt of Dwarvenkind (SRD p211)
- Source: (CDC p159)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_chapeau_de_deguisement.md b/Data/HD/hd_magicitems_az_chapeau_de_deguisement.md
index f272ac87..dfac27bc 100644
--- a/Data/HD/hd_magicitems_az_chapeau_de_deguisement.md
+++ b/Data/HD/hd_magicitems_az_chapeau_de_deguisement.md
@@ -4,7 +4,7 @@
### Chapeau de déguisement
-- AltName: Hat of Disguise (SRD p225)
+- Alias: Hat of Disguise (SRD p225)
- Source: (CDC p159)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_chapelet.md b/Data/HD/hd_magicitems_az_chapelet.md
index 4b2e3254..e324a61d 100644
--- a/Data/HD/hd_magicitems_az_chapelet.md
+++ b/Data/HD/hd_magicitems_az_chapelet.md
@@ -4,7 +4,7 @@
### Chapelet
-- AltName: Necklace of Prayer Beads (SRD p231)
+- Alias: Necklace of Prayer Beads (SRD p231)
- Source: (CDC p159)
- Objet merveilleux, rare (harmonisation requise par un clerc, un druide ou un paladin)
diff --git a/Data/HD/hd_magicitems_az_chaussons_de_laraignee.md b/Data/HD/hd_magicitems_az_chaussons_de_laraignee.md
index b0ada41f..896e0cfd 100644
--- a/Data/HD/hd_magicitems_az_chaussons_de_laraignee.md
+++ b/Data/HD/hd_magicitems_az_chaussons_de_laraignee.md
@@ -4,7 +4,7 @@
### Chaussons de l'araignée
-- AltName: Slippers of Spider Climbing (SRD p242)
+- Alias: Slippers of Spider Climbing (SRD p242)
- Source: (CDC p159)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_chemise_de_mailles_elfique.md b/Data/HD/hd_magicitems_az_chemise_de_mailles_elfique.md
index 3beede84..2bc2adb6 100644
--- a/Data/HD/hd_magicitems_az_chemise_de_mailles_elfique.md
+++ b/Data/HD/hd_magicitems_az_chemise_de_mailles_elfique.md
@@ -4,7 +4,7 @@
### Chemise de mailles elfique
-- AltName: Elven Chain (SRD p220)
+- Alias: Elven Chain (SRD p220)
- Source: (CDC p160)
- Armure (chemise de mailles), rare
diff --git a/Data/HD/hd_magicitems_az_cierge_dinvocation.md b/Data/HD/hd_magicitems_az_cierge_dinvocation.md
index ebe9804e..b0aefee4 100644
--- a/Data/HD/hd_magicitems_az_cierge_dinvocation.md
+++ b/Data/HD/hd_magicitems_az_cierge_dinvocation.md
@@ -4,7 +4,7 @@
### Cierge d'invocation
-- AltName: Candle of Invocation (SRD p213)
+- Alias: Candle of Invocation (SRD p213)
- Source: (CDC p160)
- Objet merveilleux, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_cimeterre_de_celerite.md b/Data/HD/hd_magicitems_az_cimeterre_de_celerite.md
index 178f2e87..1a603466 100644
--- a/Data/HD/hd_magicitems_az_cimeterre_de_celerite.md
+++ b/Data/HD/hd_magicitems_az_cimeterre_de_celerite.md
@@ -4,7 +4,7 @@
### Cimeterre de célérité
-- AltName: Scimitar of Speed (SRD p241)
+- Alias: Scimitar of Speed (SRD p241)
- Source: (CDC p160)
- Arme (cimeterre), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_colle_universelle.md b/Data/HD/hd_magicitems_az_colle_universelle.md
index da671143..3ca37f59 100644
--- a/Data/HD/hd_magicitems_az_colle_universelle.md
+++ b/Data/HD/hd_magicitems_az_colle_universelle.md
@@ -4,7 +4,7 @@
### Colle universelle
-- AltName: Sovereign Glue (SRD p242)
+- Alias: Sovereign Glue (SRD p242)
- Source: (CDC p160)
- Objet merveilleux, légendaire
diff --git a/Data/HD/hd_magicitems_az_collier_dadaptation.md b/Data/HD/hd_magicitems_az_collier_dadaptation.md
index 4ee0b229..15468bfd 100644
--- a/Data/HD/hd_magicitems_az_collier_dadaptation.md
+++ b/Data/HD/hd_magicitems_az_collier_dadaptation.md
@@ -4,7 +4,7 @@
### Collier d'adaptation
-- AltName: Necklace of Adaptation (SRD p231)
+- Alias: Necklace of Adaptation (SRD p231)
- Source: (CDC p160)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_collier_de_boules_de_feu.md b/Data/HD/hd_magicitems_az_collier_de_boules_de_feu.md
index 60a7b826..39638dc0 100644
--- a/Data/HD/hd_magicitems_az_collier_de_boules_de_feu.md
+++ b/Data/HD/hd_magicitems_az_collier_de_boules_de_feu.md
@@ -4,7 +4,7 @@
### Collier de boules de feu
-- AltName: Necklace of Fireballs (SRD p231)
+- Alias: Necklace of Fireballs (SRD p231)
- Source: (CDC p160)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_cor_de_destruction.md b/Data/HD/hd_magicitems_az_cor_de_destruction.md
index d9a36b80..202fd851 100644
--- a/Data/HD/hd_magicitems_az_cor_de_destruction.md
+++ b/Data/HD/hd_magicitems_az_cor_de_destruction.md
@@ -4,7 +4,7 @@
### Cor de destruction
-- AltName: Horn of Blasting (SRD p226)
+- Alias: Horn of Blasting (SRD p226)
- Source: (CDC p160)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_cor_du_valhalla.md b/Data/HD/hd_magicitems_az_cor_du_valhalla.md
index f86afaa6..5dc1e1b4 100644
--- a/Data/HD/hd_magicitems_az_cor_du_valhalla.md
+++ b/Data/HD/hd_magicitems_az_cor_du_valhalla.md
@@ -4,7 +4,7 @@
### Cor du Valhalla
-- AltName: Horn of Valhalla (SRD p226)
+- Alias: Horn of Valhalla (SRD p226)
- Source: (CDC p161)
- Objet merveilleux, rare (argent ou cuivre), très rare (bronze) ou légendaire (fer)
diff --git a/Data/HD/hd_magicitems_az_corde_denchevetrement.md b/Data/HD/hd_magicitems_az_corde_denchevetrement.md
index 4910af03..baa1f2ab 100644
--- a/Data/HD/hd_magicitems_az_corde_denchevetrement.md
+++ b/Data/HD/hd_magicitems_az_corde_denchevetrement.md
@@ -4,7 +4,7 @@
### Corde d'enchevêtrement
-- AltName: Rope of Entanglement (SRD p241)
+- Alias: Rope of Entanglement (SRD p241)
- Source: (CDC p161)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_corde_descalade.md b/Data/HD/hd_magicitems_az_corde_descalade.md
index 72b140c8..af329778 100644
--- a/Data/HD/hd_magicitems_az_corde_descalade.md
+++ b/Data/HD/hd_magicitems_az_corde_descalade.md
@@ -4,7 +4,7 @@
### Corde d'escalade
-- AltName: Rope of Climbing (SRD p241)
+- Alias: Rope of Climbing (SRD p241)
- Source: (CDC p161)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_cube_de_force.md b/Data/HD/hd_magicitems_az_cube_de_force.md
index 57f3b147..00716279 100644
--- a/Data/HD/hd_magicitems_az_cube_de_force.md
+++ b/Data/HD/hd_magicitems_az_cube_de_force.md
@@ -4,7 +4,7 @@
### Cube de force
-- AltName: Cube of Force (SRD p215)
+- Alias: Cube of Force (SRD p215)
- Source: (CDC p161)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_cuir_cloutee_glamour.md b/Data/HD/hd_magicitems_az_cuir_cloutee_glamour.md
index 0ade82c6..e81a22f1 100644
--- a/Data/HD/hd_magicitems_az_cuir_cloutee_glamour.md
+++ b/Data/HD/hd_magicitems_az_cuir_cloutee_glamour.md
@@ -4,7 +4,7 @@
### Cuir cloutée glamour
-- AltName: Glamoured Studded Leather (SRD p224)
+- Alias: Glamoured Studded Leather (SRD p224)
- Source: (CDC p162)
- Armure (cuir cloutée), rare
diff --git a/Data/HD/hd_magicitems_az_dague_venimeuse.md b/Data/HD/hd_magicitems_az_dague_venimeuse.md
index 46c90bdd..648dff56 100644
--- a/Data/HD/hd_magicitems_az_dague_venimeuse.md
+++ b/Data/HD/hd_magicitems_az_dague_venimeuse.md
@@ -4,7 +4,7 @@
### Dague venimeuse
-- AltName: Dagger of Venom (SRD p215)
+- Alias: Dagger of Venom (SRD p215)
- Source: (CDC p162)
- Arme (dague), rare
diff --git a/Data/HD/hd_magicitems_az_diademe_de_destruction.md b/Data/HD/hd_magicitems_az_diademe_de_destruction.md
index 602a13a1..8bec2d85 100644
--- a/Data/HD/hd_magicitems_az_diademe_de_destruction.md
+++ b/Data/HD/hd_magicitems_az_diademe_de_destruction.md
@@ -4,7 +4,7 @@
### Diadème de destruction
-- AltName: Circlet of Blasting (SRD p214)
+- Alias: Circlet of Blasting (SRD p214)
- Source: (CDC p162)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_encensoir_de_controle_des_elementaires_de_lair.md b/Data/HD/hd_magicitems_az_encensoir_de_controle_des_elementaires_de_lair.md
index 8e75339a..724ba229 100644
--- a/Data/HD/hd_magicitems_az_encensoir_de_controle_des_elementaires_de_lair.md
+++ b/Data/HD/hd_magicitems_az_encensoir_de_controle_des_elementaires_de_lair.md
@@ -4,7 +4,7 @@
### Encensoir de contrôle des élémentaires de l'air
-- AltName: Censer of Controlling Air Elementals (SRD p213)
+- Alias: Censer of Controlling Air Elementals (SRD p213)
- Source: (CDC p162)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_epee_ardente.md b/Data/HD/hd_magicitems_az_epee_ardente.md
index 60c336ad..54854680 100644
--- a/Data/HD/hd_magicitems_az_epee_ardente.md
+++ b/Data/HD/hd_magicitems_az_epee_ardente.md
@@ -4,7 +4,7 @@
### Épée ardente
-- AltName: Flame Tongue (SRD p223)
+- Alias: Flame Tongue (SRD p223)
- Source: (CDC p162)
- Arme (épée), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_epee_dansante.md b/Data/HD/hd_magicitems_az_epee_dansante.md
index 153c154c..075fc257 100644
--- a/Data/HD/hd_magicitems_az_epee_dansante.md
+++ b/Data/HD/hd_magicitems_az_epee_dansante.md
@@ -4,7 +4,7 @@
### Épée dansante
-- AltName: Dancing Sword (SRD p215)
+- Alias: Dancing Sword (SRD p215)
- Source: (CDC p163)
- Arme (épée), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_epee_mordante.md b/Data/HD/hd_magicitems_az_epee_mordante.md
index b45a5dfc..69365e43 100644
--- a/Data/HD/hd_magicitems_az_epee_mordante.md
+++ b/Data/HD/hd_magicitems_az_epee_mordante.md
@@ -4,7 +4,7 @@
### Épée mordante
-- AltName: Sword of Wounding (SRD p246)
+- Alias: Sword of Wounding (SRD p246)
- Source: (CDC p163)
- Arme (n'importe quel type d'épée), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_epee_radieuse.md b/Data/HD/hd_magicitems_az_epee_radieuse.md
index f8fa405e..0e99bee7 100644
--- a/Data/HD/hd_magicitems_az_epee_radieuse.md
+++ b/Data/HD/hd_magicitems_az_epee_radieuse.md
@@ -4,7 +4,7 @@
### Épée radieuse
-- AltName: Sun Blade (SRD p246)
+- Alias: Sun Blade (SRD p246)
- Source: (CDC p163)
- Arme (épée longue), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_epee_tranchante.md b/Data/HD/hd_magicitems_az_epee_tranchante.md
index c8c0a1e3..5b03a58e 100644
--- a/Data/HD/hd_magicitems_az_epee_tranchante.md
+++ b/Data/HD/hd_magicitems_az_epee_tranchante.md
@@ -4,7 +4,7 @@
### Épée tranchante
-- AltName: Sword of Sharpness (SRD p246)
+- Alias: Sword of Sharpness (SRD p246)
- Source: (CDC p163)
- Arme (n'importe quelle épée qui inflige des dégâts tranchants), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_epee_voleuse_de_vie.md b/Data/HD/hd_magicitems_az_epee_voleuse_de_vie.md
index 88dd9b13..2d9fe0b4 100644
--- a/Data/HD/hd_magicitems_az_epee_voleuse_de_vie.md
+++ b/Data/HD/hd_magicitems_az_epee_voleuse_de_vie.md
@@ -4,7 +4,7 @@
### Épée voleuse de vie
-- AltName: Sword of Life Stealing (SRD p246)
+- Alias: Sword of Life Stealing (SRD p246)
- Source: (CDC p163)
- Arme (n'importe quel type d'épée), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_epee_vorpale.md b/Data/HD/hd_magicitems_az_epee_vorpale.md
index cb3e5f82..496c1b05 100644
--- a/Data/HD/hd_magicitems_az_epee_vorpale.md
+++ b/Data/HD/hd_magicitems_az_epee_vorpale.md
@@ -4,7 +4,7 @@
### Épée vorpale
-- AltName: Vorpal Sword (SRD p248)
+- Alias: Vorpal Sword (SRD p248)
- Source: (CDC p163)
- Arme (n'importe quel type d'épée qui inflige des dégâts tranchants), légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_eventail_enchante.md b/Data/HD/hd_magicitems_az_eventail_enchante.md
index fa83a922..09a6eb8b 100644
--- a/Data/HD/hd_magicitems_az_eventail_enchante.md
+++ b/Data/HD/hd_magicitems_az_eventail_enchante.md
@@ -4,7 +4,7 @@
### Éventail enchanté
-- AltName: Wind Fan (SRD p250)
+- Alias: Wind Fan (SRD p250)
- Source: (CDC p164)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_fer_gele.md b/Data/HD/hd_magicitems_az_fer_gele.md
index f9161f0b..c7de1530 100644
--- a/Data/HD/hd_magicitems_az_fer_gele.md
+++ b/Data/HD/hd_magicitems_az_fer_gele.md
@@ -4,7 +4,7 @@
### Fer gelé
-- AltName: Frost Brand (SRD p223)
+- Alias: Frost Brand (SRD p223)
- Source: (CDC p164)
- Arme (épée), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_fers_de_rapidite.md b/Data/HD/hd_magicitems_az_fers_de_rapidite.md
index c3f38ca8..71cb51ec 100644
--- a/Data/HD/hd_magicitems_az_fers_de_rapidite.md
+++ b/Data/HD/hd_magicitems_az_fers_de_rapidite.md
@@ -4,7 +4,7 @@
### Fers de rapidité
-- AltName: Horseshoes of Speed (SRD p226)
+- Alias: Horseshoes of Speed (SRD p226)
- Source: (CDC p164)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_fers_du_zephyr.md b/Data/HD/hd_magicitems_az_fers_du_zephyr.md
index 74587d48..ed8efabf 100644
--- a/Data/HD/hd_magicitems_az_fers_du_zephyr.md
+++ b/Data/HD/hd_magicitems_az_fers_du_zephyr.md
@@ -4,7 +4,7 @@
### Fers du zéphyr
-- AltName: Horseshoes of a Zephyr (SRD p226)
+- Alias: Horseshoes of a Zephyr (SRD p226)
- Source: (CDC p164)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_figurine_merveilleuse.md b/Data/HD/hd_magicitems_az_figurine_merveilleuse.md
index 26469b1e..95294f92 100644
--- a/Data/HD/hd_magicitems_az_figurine_merveilleuse.md
+++ b/Data/HD/hd_magicitems_az_figurine_merveilleuse.md
@@ -4,7 +4,7 @@
### Figurine merveilleuse
-- AltName: Figurine of Wondrous Power (SRD p221)
+- Alias: Figurine of Wondrous Power (SRD p221)
- Source: (CDC p164)
- Objet merveilleux, rareté selon la figurine
diff --git a/Data/HD/hd_magicitems_az_flasque_de_fer.md b/Data/HD/hd_magicitems_az_flasque_de_fer.md
index 327a1ebe..41fa88f1 100644
--- a/Data/HD/hd_magicitems_az_flasque_de_fer.md
+++ b/Data/HD/hd_magicitems_az_flasque_de_fer.md
@@ -4,7 +4,7 @@
### Flasque de fer
-- AltName: Iron Flask (SRD p228)
+- Alias: Iron Flask (SRD p228)
- Source: (CDC p165)
- Objet merveilleux, légendaire
diff --git a/Data/HD/hd_magicitems_az_fleche_tueuse.md b/Data/HD/hd_magicitems_az_fleche_tueuse.md
index bacc2920..b2614bac 100644
--- a/Data/HD/hd_magicitems_az_fleche_tueuse.md
+++ b/Data/HD/hd_magicitems_az_fleche_tueuse.md
@@ -4,7 +4,7 @@
### Flèche tueuse
-- AltName: Arrow of Slaying (SRD p209)
+- Alias: Arrow of Slaying (SRD p209)
- Source: (CDC p166)
- Arme (flèche), très rare
diff --git a/Data/HD/hd_magicitems_az_flute_des_egouts.md b/Data/HD/hd_magicitems_az_flute_des_egouts.md
index a9a08216..209fac7e 100644
--- a/Data/HD/hd_magicitems_az_flute_des_egouts.md
+++ b/Data/HD/hd_magicitems_az_flute_des_egouts.md
@@ -4,7 +4,7 @@
### Flûte des égouts
-- AltName: Pipes of the Sewers (SRD p232)
+- Alias: Pipes of the Sewers (SRD p232)
- Source: (CDC p166)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_flute_terrifiante.md b/Data/HD/hd_magicitems_az_flute_terrifiante.md
index 966566d2..00ad5086 100644
--- a/Data/HD/hd_magicitems_az_flute_terrifiante.md
+++ b/Data/HD/hd_magicitems_az_flute_terrifiante.md
@@ -4,7 +4,7 @@
### Flûte terrifiante
-- AltName: Pipes of Haunting (SRD p232)
+- Alias: Pipes of Haunting (SRD p232)
- Source: (CDC p166)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_forteresse_instantanee.md b/Data/HD/hd_magicitems_az_forteresse_instantanee.md
index 79380159..d2853bb6 100644
--- a/Data/HD/hd_magicitems_az_forteresse_instantanee.md
+++ b/Data/HD/hd_magicitems_az_forteresse_instantanee.md
@@ -4,7 +4,7 @@
### Forteresse instantanée
-- AltName: Instant Fortress (SRD p226)
+- Alias: Instant Fortress (SRD p226)
- Source: (CDC p167)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_gantelets_de_puissance_dogre.md b/Data/HD/hd_magicitems_az_gantelets_de_puissance_dogre.md
index b7fd8cf2..404161c5 100644
--- a/Data/HD/hd_magicitems_az_gantelets_de_puissance_dogre.md
+++ b/Data/HD/hd_magicitems_az_gantelets_de_puissance_dogre.md
@@ -4,7 +4,7 @@
### Gantelets de puissance d'ogre
-- AltName: Gauntlets of Ogre Power (SRD p223)
+- Alias: Gauntlets of Ogre Power (SRD p223)
- Source: (CDC p167)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_gants_de_nage_et_descalade.md b/Data/HD/hd_magicitems_az_gants_de_nage_et_descalade.md
index 4fbc0dc1..0a378ce8 100644
--- a/Data/HD/hd_magicitems_az_gants_de_nage_et_descalade.md
+++ b/Data/HD/hd_magicitems_az_gants_de_nage_et_descalade.md
@@ -4,7 +4,7 @@
### Gants de nage et d'escalade
-- AltName: Gloves of Swimming and Climbing (SRD p224)
+- Alias: Gloves of Swimming and Climbing (SRD p224)
- Source: (CDC p167)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_gants_piegeurs_de_projectiles.md b/Data/HD/hd_magicitems_az_gants_piegeurs_de_projectiles.md
index e449b26d..9504249c 100644
--- a/Data/HD/hd_magicitems_az_gants_piegeurs_de_projectiles.md
+++ b/Data/HD/hd_magicitems_az_gants_piegeurs_de_projectiles.md
@@ -4,7 +4,7 @@
### Gants piégeurs de projectiles
-- AltName: Gloves of Missile Snaring (SRD p224)
+- Alias: Gloves of Missile Snaring (SRD p224)
- Source: (CDC p167)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_gemme_de_vision.md b/Data/HD/hd_magicitems_az_gemme_de_vision.md
index 27a0a40c..6714dc0b 100644
--- a/Data/HD/hd_magicitems_az_gemme_de_vision.md
+++ b/Data/HD/hd_magicitems_az_gemme_de_vision.md
@@ -4,7 +4,7 @@
### Gemme de vision
-- AltName: Gem of Seeing (SRD p223)
+- Alias: Gem of Seeing (SRD p223)
- Source: (CDC p167)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_gemme_elementaire.md b/Data/HD/hd_magicitems_az_gemme_elementaire.md
index 2b9da098..aaf2c560 100644
--- a/Data/HD/hd_magicitems_az_gemme_elementaire.md
+++ b/Data/HD/hd_magicitems_az_gemme_elementaire.md
@@ -4,7 +4,7 @@
### Gemme élémentaire
-- AltName: Elemental Gem (SRD p220)
+- Alias: Elemental Gem (SRD p220)
- Source: (CDC p168)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_gemme_lumineuse.md b/Data/HD/hd_magicitems_az_gemme_lumineuse.md
index 7c4975e1..f08ca310 100644
--- a/Data/HD/hd_magicitems_az_gemme_lumineuse.md
+++ b/Data/HD/hd_magicitems_az_gemme_lumineuse.md
@@ -4,7 +4,7 @@
### Gemme lumineuse
-- AltName: Gem of Brightness (SRD p223)
+- Alias: Gem of Brightness (SRD p223)
- Source: (CDC p168)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_hache_du_berserker.md b/Data/HD/hd_magicitems_az_hache_du_berserker.md
index f88e659a..d8c60fa0 100644
--- a/Data/HD/hd_magicitems_az_hache_du_berserker.md
+++ b/Data/HD/hd_magicitems_az_hache_du_berserker.md
@@ -4,7 +4,7 @@
### Hache du berserker
-- AltName: Berserker Axe (SRD p211)
+- Alias: Berserker Axe (SRD p211)
- Source: (CDC p168)
- Arme (hache), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_harnois_ethere.md b/Data/HD/hd_magicitems_az_harnois_ethere.md
index a065b23a..20a55c7b 100644
--- a/Data/HD/hd_magicitems_az_harnois_ethere.md
+++ b/Data/HD/hd_magicitems_az_harnois_ethere.md
@@ -4,7 +4,7 @@
### Harnois éthéré
-- AltName: Plate Armor of Etherealness (SRD p233)
+- Alias: Plate Armor of Etherealness (SRD p233)
- Source: (CDC p168)
- Armure (harnois), légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_harnois_nain.md b/Data/HD/hd_magicitems_az_harnois_nain.md
index 654aaa6f..ad2df2dc 100644
--- a/Data/HD/hd_magicitems_az_harnois_nain.md
+++ b/Data/HD/hd_magicitems_az_harnois_nain.md
@@ -4,7 +4,7 @@
### Harnois nain
-- AltName: Dwarven Plate (SRD p220)
+- Alias: Dwarven Plate (SRD p220)
- Source: (CDC p168)
- Armure (harnois), très rare
diff --git a/Data/HD/hd_magicitems_az_havresac_magique.md b/Data/HD/hd_magicitems_az_havresac_magique.md
index faeac832..8a55d2b6 100644
--- a/Data/HD/hd_magicitems_az_havresac_magique.md
+++ b/Data/HD/hd_magicitems_az_havresac_magique.md
@@ -4,7 +4,7 @@
### Havresac magique
-- AltName: Handy Haversack (SRD p224)
+- Alias: Handy Haversack (SRD p224)
- Source: (CDC p168)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_heaume_de_comprehension_des_langages.md b/Data/HD/hd_magicitems_az_heaume_de_comprehension_des_langages.md
index f9340a69..4a1a8e32 100644
--- a/Data/HD/hd_magicitems_az_heaume_de_comprehension_des_langages.md
+++ b/Data/HD/hd_magicitems_az_heaume_de_comprehension_des_langages.md
@@ -4,7 +4,7 @@
### Heaume de compréhension des langages
-- AltName: Helm of Comprehending Languages (SRD p225)
+- Alias: Helm of Comprehending Languages (SRD p225)
- Source: (CDC p169)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_heaume_de_telepathie.md b/Data/HD/hd_magicitems_az_heaume_de_telepathie.md
index 96ac850e..a9f899be 100644
--- a/Data/HD/hd_magicitems_az_heaume_de_telepathie.md
+++ b/Data/HD/hd_magicitems_az_heaume_de_telepathie.md
@@ -4,7 +4,7 @@
### Heaume de télépathie
-- AltName: Helm of Telepathy (SRD p225)
+- Alias: Helm of Telepathy (SRD p225)
- Source: (CDC p169)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_heaume_de_teleportation.md b/Data/HD/hd_magicitems_az_heaume_de_teleportation.md
index 5467d7c9..7a16be0c 100644
--- a/Data/HD/hd_magicitems_az_heaume_de_teleportation.md
+++ b/Data/HD/hd_magicitems_az_heaume_de_teleportation.md
@@ -4,7 +4,7 @@
### Heaume de téléportation
-- AltName: Helm of Teleportation (SRD p225)
+- Alias: Helm of Teleportation (SRD p225)
- Source: (CDC p169)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_heaume_scintillant.md b/Data/HD/hd_magicitems_az_heaume_scintillant.md
index 2f3ce7ae..4821fe39 100644
--- a/Data/HD/hd_magicitems_az_heaume_scintillant.md
+++ b/Data/HD/hd_magicitems_az_heaume_scintillant.md
@@ -4,7 +4,7 @@
### Heaume scintillant
-- AltName: Helm of Brilliance (SRD p225)
+- Alias: Helm of Brilliance (SRD p225)
- Source: (CDC p169)
- Objet merveilleux, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_huile_daffutage.md b/Data/HD/hd_magicitems_az_huile_daffutage.md
index 537be68e..ac811132 100644
--- a/Data/HD/hd_magicitems_az_huile_daffutage.md
+++ b/Data/HD/hd_magicitems_az_huile_daffutage.md
@@ -4,7 +4,7 @@
### Huile d'affûtage
-- AltName: Oil of Sharpness (SRD p232)
+- Alias: Oil of Sharpness (SRD p232)
- Source: (CDC p170)
- Potion, très rare
diff --git a/Data/HD/hd_magicitems_az_huile_etheree.md b/Data/HD/hd_magicitems_az_huile_etheree.md
index 0143d89d..b8a8baac 100644
--- a/Data/HD/hd_magicitems_az_huile_etheree.md
+++ b/Data/HD/hd_magicitems_az_huile_etheree.md
@@ -4,7 +4,7 @@
### Huile éthérée
-- AltName: Oil of Etherealness (SRD p231)
+- Alias: Oil of Etherealness (SRD p231)
- Source: (CDC p170)
- Potion, rare
diff --git a/Data/HD/hd_magicitems_az_huile_glissante.md b/Data/HD/hd_magicitems_az_huile_glissante.md
index f670ad24..4be415a7 100644
--- a/Data/HD/hd_magicitems_az_huile_glissante.md
+++ b/Data/HD/hd_magicitems_az_huile_glissante.md
@@ -4,7 +4,7 @@
### Huile glissante
-- AltName: Oil of Slipperiness (SRD p232)
+- Alias: Oil of Slipperiness (SRD p232)
- Source: (CDC p170)
- Potion, peu courante
diff --git a/Data/HD/hd_magicitems_az_javeline_de_foudre.md b/Data/HD/hd_magicitems_az_javeline_de_foudre.md
index de0195a6..6016aff9 100644
--- a/Data/HD/hd_magicitems_az_javeline_de_foudre.md
+++ b/Data/HD/hd_magicitems_az_javeline_de_foudre.md
@@ -4,7 +4,7 @@
### Javeline de foudre
-- AltName: Javelin of Lightning (SRD p228)
+- Alias: Javelin of Lightning (SRD p228)
- Source: (CDC p170)
- Arme (javeline), peu courante
diff --git a/Data/HD/hd_magicitems_az_lame_porte_bonheur.md b/Data/HD/hd_magicitems_az_lame_porte_bonheur.md
index a0d2bcdf..8eb410e5 100644
--- a/Data/HD/hd_magicitems_az_lame_porte_bonheur.md
+++ b/Data/HD/hd_magicitems_az_lame_porte_bonheur.md
@@ -4,7 +4,7 @@
### Lame porte-bonheur
-- AltName: Luck Blade (SRD p229)
+- Alias: Luck Blade (SRD p229)
- Source: (CDC p170)
- Arme (épée), légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_lanterne_de_revelation.md b/Data/HD/hd_magicitems_az_lanterne_de_revelation.md
index 23c98d81..b3a4b14c 100644
--- a/Data/HD/hd_magicitems_az_lanterne_de_revelation.md
+++ b/Data/HD/hd_magicitems_az_lanterne_de_revelation.md
@@ -4,7 +4,7 @@
### Lanterne de révélation
-- AltName: Lantern of Revealing (SRD p228)
+- Alias: Lantern of Revealing (SRD p228)
- Source: (CDC p170)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_lentilles_de_nettete.md b/Data/HD/hd_magicitems_az_lentilles_de_nettete.md
index 27428772..4b32f191 100644
--- a/Data/HD/hd_magicitems_az_lentilles_de_nettete.md
+++ b/Data/HD/hd_magicitems_az_lentilles_de_nettete.md
@@ -4,7 +4,7 @@
### Lentilles de netteté
-- AltName: Eyes of Minute Seeing (SRD p221)
+- Alias: Eyes of Minute Seeing (SRD p221)
- Source: (CDC p170)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_les_objets_magiques_de_a_a_z.md b/Data/HD/hd_magicitems_az_les_objets_magiques_de_a_a_z.md
index 17ccde87..6a6f1a3c 100644
--- a/Data/HD/hd_magicitems_az_les_objets_magiques_de_a_a_z.md
+++ b/Data/HD/hd_magicitems_az_les_objets_magiques_de_a_a_z.md
@@ -26,7 +26,7 @@ SubItems:
- - AltName: Wings of Flying (SRD p251)
+ - Alias: Wings of Flying (SRD p251)
@@ -75,7 +75,7 @@ SubItems:
- - AltName: Periapt of Proof against Poison (SRD p232)
+ - Alias: Periapt of Proof against Poison (SRD p232)
@@ -123,7 +123,7 @@ SubItems:
- - AltName: Amulet of Proof against Detection and Location (SRD p207)
+ - Alias: Amulet of Proof against Detection and Location (SRD p207)
@@ -173,7 +173,7 @@ SubItems:
- - AltName: Amulet of Health (SRD p207)
+ - Alias: Amulet of Health (SRD p207)
@@ -223,7 +223,7 @@ SubItems:
- - AltName: Periapt of Wound Closure (SRD p232)
+ - Alias: Periapt of Wound Closure (SRD p232)
@@ -272,7 +272,7 @@ SubItems:
- - AltName: Periapt of Health (SRD p232)
+ - Alias: Periapt of Health (SRD p232)
@@ -320,7 +320,7 @@ SubItems:
- - AltName: Amulet of the Planes (SRD p207)
+ - Alias: Amulet of the Planes (SRD p207)
@@ -370,7 +370,7 @@ SubItems:
- - AltName: Ring of Free Action (SRD p236)
+ - Alias: Ring of Free Action (SRD p236)
@@ -420,7 +420,7 @@ SubItems:
- - AltName: Ring of Warmth (SRD p238)
+ - Alias: Ring of Warmth (SRD p238)
@@ -470,7 +470,7 @@ SubItems:
- - AltName: Ring of Djinni Summoning (SRD p235)
+ - Alias: Ring of Djinni Summoning (SRD p235)
@@ -532,7 +532,7 @@ SubItems:
- - AltName: Ring of Evasion (SRD p236)
+ - Alias: Ring of Evasion (SRD p236)
@@ -582,7 +582,7 @@ SubItems:
- - AltName: Ring of Shooting Stars (SRD p237)
+ - Alias: Ring of Shooting Stars (SRD p237)
@@ -694,7 +694,7 @@ SubItems:
- - AltName: Ring of Feather Falling (SRD p236)
+ - Alias: Ring of Feather Falling (SRD p236)
@@ -744,7 +744,7 @@ SubItems:
- - AltName: Ring of Elemental Command (SRD p235)
+ - Alias: Ring of Elemental Command (SRD p235)
@@ -901,7 +901,7 @@ SubItems:
- - AltName: Ring of Water Walking (SRD p238)
+ - Alias: Ring of Water Walking (SRD p238)
@@ -948,7 +948,7 @@ SubItems:
- - AltName: Ring of Swimming (SRD p238)
+ - Alias: Ring of Swimming (SRD p238)
@@ -996,7 +996,7 @@ SubItems:
- - AltName: Ring of Protection (SRD p237)
+ - Alias: Ring of Protection (SRD p237)
@@ -1046,7 +1046,7 @@ SubItems:
- - AltName: Ring of Mind Shielding (SRD p236)
+ - Alias: Ring of Mind Shielding (SRD p236)
@@ -1108,7 +1108,7 @@ SubItems:
- - AltName: Ring of Regeneration (SRD p237)
+ - Alias: Ring of Regeneration (SRD p237)
@@ -1158,7 +1158,7 @@ SubItems:
- - AltName: Ring of Spell Turning (SRD p237)
+ - Alias: Ring of Spell Turning (SRD p237)
@@ -1208,7 +1208,7 @@ SubItems:
- - AltName: Ring of Resistance (SRD p237)
+ - Alias: Ring of Resistance (SRD p237)
@@ -1308,7 +1308,7 @@ SubItems:
- - AltName: Ring of Jumping (SRD p236)
+ - Alias: Ring of Jumping (SRD p236)
@@ -1358,7 +1358,7 @@ SubItems:
- - AltName: Ring of Spell Storing (SRD p237)
+ - Alias: Ring of Spell Storing (SRD p237)
@@ -1420,7 +1420,7 @@ SubItems:
- - AltName: Ring of Telekinesis (SRD p238)
+ - Alias: Ring of Telekinesis (SRD p238)
@@ -1469,7 +1469,7 @@ SubItems:
- - AltName: Ring of Three Wishes (SRD p238)
+ - Alias: Ring of Three Wishes (SRD p238)
@@ -1517,7 +1517,7 @@ SubItems:
- - AltName: Ring of X-ray Vision (SRD p238)
+ - Alias: Ring of X-ray Vision (SRD p238)
@@ -1572,7 +1572,7 @@ SubItems:
- - AltName: Ring of Animal Influence (SRD p235)
+ - Alias: Ring of Animal Influence (SRD p235)
@@ -1634,7 +1634,7 @@ SubItems:
- - AltName: Ring of Invisibility (SRD p236)
+ - Alias: Ring of Invisibility (SRD p236)
@@ -1684,7 +1684,7 @@ SubItems:
- - AltName: Ring of the Ram (SRD p238)
+ - Alias: Ring of the Ram (SRD p238)
@@ -1740,7 +1740,7 @@ SubItems:
- - AltName: Oathbow (SRD p231)
+ - Alias: Oathbow (SRD p231)
@@ -1801,7 +1801,7 @@ SubItems:
- - AltName: Vicious Weapon (SRD p248)
+ - Alias: Vicious Weapon (SRD p248)
@@ -1848,7 +1848,7 @@ SubItems:
- - AltName: Weapon, +1, +2, or +3 (SRD p250)
+ - Alias: Weapon, +1, +2, or +3 (SRD p250)
@@ -1896,7 +1896,7 @@ SubItems:
- - AltName: Dragon Scale Mail (SRD p219)
+ - Alias: Dragon Scale Mail (SRD p219)
@@ -2007,7 +2007,7 @@ SubItems:
- - AltName: Mithral Armor (SRD p231)
+ - Alias: Mithral Armor (SRD p231)
@@ -2055,7 +2055,7 @@ SubItems:
- - AltName: Demon Armor (SRD p218)
+ - Alias: Demon Armor (SRD p218)
@@ -2111,7 +2111,7 @@ SubItems:
- - AltName: Armor of Resistance (SRD p208)
+ - Alias: Armor of Resistance (SRD p208)
@@ -2211,7 +2211,7 @@ SubItems:
- - AltName: Armor of Vulnerability (SRD p209)
+ - Alias: Armor of Vulnerability (SRD p209)
@@ -2267,7 +2267,7 @@ SubItems:
- - AltName: Armor of Invulnerability (SRD p208)
+ - Alias: Armor of Invulnerability (SRD p208)
@@ -2316,7 +2316,7 @@ SubItems:
- - AltName: Adamantine Armor (SRD p207)
+ - Alias: Adamantine Armor (SRD p207)
@@ -2363,7 +2363,7 @@ SubItems:
- - AltName: Armor +1, +2, or +3 (SRD p208)
+ - Alias: Armor +1, +2, or +3 (SRD p208)
@@ -2411,7 +2411,7 @@ SubItems:
- - AltName: Wand of Lightning Bolts (SRD p249)
+ - Alias: Wand of Lightning Bolts (SRD p249)
@@ -2467,7 +2467,7 @@ SubItems:
- - AltName: Wand of Fireballs (SRD p248)
+ - Alias: Wand of Fireballs (SRD p248)
@@ -2523,7 +2523,7 @@ SubItems:
- - AltName: Wand of Enemy Detection (SRD p248)
+ - Alias: Wand of Enemy Detection (SRD p248)
@@ -2578,7 +2578,7 @@ SubItems:
- - AltName: Wand of Magic Detection (SRD p249)
+ - Alias: Wand of Magic Detection (SRD p249)
@@ -2626,7 +2626,7 @@ SubItems:
- - AltName: Wand of Polymorph (SRD p249)
+ - Alias: Wand of Polymorph (SRD p249)
@@ -2682,7 +2682,7 @@ SubItems:
- - AltName: Wand of Paralysis (SRD p249)
+ - Alias: Wand of Paralysis (SRD p249)
@@ -2737,7 +2737,7 @@ SubItems:
- - AltName: Wand of Magic Missiles (SRD p249)
+ - Alias: Wand of Magic Missiles (SRD p249)
@@ -2791,7 +2791,7 @@ SubItems:
- - AltName: Wand of Fear (SRD p248)
+ - Alias: Wand of Fear (SRD p248)
@@ -2853,7 +2853,7 @@ SubItems:
- - AltName: Wand of Binding (SRD p248)
+ - Alias: Wand of Binding (SRD p248)
@@ -2914,7 +2914,7 @@ SubItems:
- - AltName: Wand of Secrets (SRD p249)
+ - Alias: Wand of Secrets (SRD p249)
@@ -2962,7 +2962,7 @@ SubItems:
- - AltName: Wand of the War Mage, +1, +2, or +3 (SRD p249)
+ - Alias: Wand of the War Mage, +1, +2, or +3 (SRD p249)
@@ -3012,7 +3012,7 @@ SubItems:
- - AltName: Wand of Web (SRD p249)
+ - Alias: Wand of Web (SRD p249)
@@ -3068,7 +3068,7 @@ SubItems:
- - AltName: Wand of Wonder (SRD p249)
+ - Alias: Wand of Wonder (SRD p249)
@@ -3233,7 +3233,7 @@ SubItems:
- - AltName: Broom of Flying (SRD p213)
+ - Alias: Broom of Flying (SRD p213)
@@ -3287,7 +3287,7 @@ SubItems:
- - AltName: Headband of Intellect (SRD p225)
+ - Alias: Headband of Intellect (SRD p225)
@@ -3336,7 +3336,7 @@ SubItems:
- - AltName: Folding Boat (SRD p223)
+ - Alias: Folding Boat (SRD p223)
@@ -3408,7 +3408,7 @@ SubItems:
- - AltName: Staff of Charming (SRD p243)
+ - Alias: Staff of Charming (SRD p243)
@@ -3470,7 +3470,7 @@ SubItems:
- - AltName: Staff of Striking (SRD p244)
+ - Alias: Staff of Striking (SRD p244)
@@ -3526,7 +3526,7 @@ SubItems:
- - AltName: Staff of Fire (SRD p243)
+ - Alias: Staff of Fire (SRD p243)
@@ -3588,7 +3588,7 @@ SubItems:
- - AltName: Staff of Withering (SRD p246)
+ - Alias: Staff of Withering (SRD p246)
@@ -3644,7 +3644,7 @@ SubItems:
- - AltName: Staff of Healing (SRD p243)
+ - Alias: Staff of Healing (SRD p243)
@@ -3700,7 +3700,7 @@ SubItems:
- - AltName: Staff of Frost (SRD p243)
+ - Alias: Staff of Frost (SRD p243)
@@ -3762,7 +3762,7 @@ SubItems:
- - AltName: Staff of Power (SRD p243)
+ - Alias: Staff of Power (SRD p243)
@@ -3864,7 +3864,7 @@ SubItems:
- - AltName: Staff of Thunder and Lightning (SRD p245)
+ - Alias: Staff of Thunder and Lightning (SRD p245)
@@ -3944,7 +3944,7 @@ SubItems:
- - AltName: Staff of the Woodlands (SRD p245)
+ - Alias: Staff of the Woodlands (SRD p245)
@@ -4018,7 +4018,7 @@ SubItems:
- - AltName: Staff of Swarming Insects (SRD p244)
+ - Alias: Staff of Swarming Insects (SRD p244)
@@ -4080,7 +4080,7 @@ SubItems:
- - AltName: Staff of the Python (SRD p245)
+ - Alias: Staff of the Python (SRD p245)
@@ -4142,7 +4142,7 @@ SubItems:
- - AltName: Staff of the Magi (SRD p244)
+ - Alias: Staff of the Magi (SRD p244)
@@ -4249,7 +4249,7 @@ SubItems:
- - AltName: Restorative Ointment (SRD p235)
+ - Alias: Restorative Ointment (SRD p235)
@@ -4302,7 +4302,7 @@ SubItems:
- - AltName: Bowl of Commanding Water Elementals (SRD p212)
+ - Alias: Bowl of Commanding Water Elementals (SRD p212)
@@ -4356,7 +4356,7 @@ SubItems:
- - AltName: Winged Boots (SRD p251)
+ - Alias: Winged Boots (SRD p251)
@@ -4412,7 +4412,7 @@ SubItems:
- - AltName: Boots of Levitation (SRD p212)
+ - Alias: Boots of Levitation (SRD p212)
@@ -4462,7 +4462,7 @@ SubItems:
- - AltName: Boots of Striding and Springing (SRD p212)
+ - Alias: Boots of Striding and Springing (SRD p212)
@@ -4512,7 +4512,7 @@ SubItems:
- - AltName: Boots of Speed (SRD p212)
+ - Alias: Boots of Speed (SRD p212)
@@ -4568,7 +4568,7 @@ SubItems:
- - AltName: Boots of the Winterlands (SRD p212)
+ - Alias: Boots of the Winterlands (SRD p212)
@@ -4631,7 +4631,7 @@ SubItems:
- - AltName: Boots of Elvenkind (SRD p212)
+ - Alias: Boots of Elvenkind (SRD p212)
@@ -4679,7 +4679,7 @@ SubItems:
- - AltName: Animated Shield (SRD p208)
+ - Alias: Animated Shield (SRD p208)
@@ -4729,7 +4729,7 @@ SubItems:
- - AltName: Arrow-Catching Shield (SRD p209)
+ - Alias: Arrow-Catching Shield (SRD p209)
@@ -4779,7 +4779,7 @@ SubItems:
- - AltName: Shield of Missile Attraction (SRD p242)
+ - Alias: Shield of Missile Attraction (SRD p242)
@@ -4835,7 +4835,7 @@ SubItems:
- - AltName: Spellguard Shield (SRD p242)
+ - Alias: Spellguard Shield (SRD p242)
@@ -4884,7 +4884,7 @@ SubItems:
- - AltName: Shield, +1, +2, or +3 (SRD p242)
+ - Alias: Shield, +1, +2, or +3 (SRD p242)
@@ -4932,7 +4932,7 @@ SubItems:
- - AltName: Crystal Ball (SRD p214)
+ - Alias: Crystal Ball (SRD p214)
@@ -5005,7 +5005,7 @@ SubItems:
- - AltName: Efreeti Bottle (SRD p220)
+ - Alias: Efreeti Bottle (SRD p220)
@@ -5080,7 +5080,7 @@ SubItems:
- - AltName: Eversmoking Bottle (SRD p220)
+ - Alias: Eversmoking Bottle (SRD p220)
@@ -5134,7 +5134,7 @@ SubItems:
- - AltName: Bracers of Archery (SRD p212)
+ - Alias: Bracers of Archery (SRD p212)
@@ -5184,7 +5184,7 @@ SubItems:
- - AltName: Bracers of Defense (SRD p212)
+ - Alias: Bracers of Defense (SRD p212)
@@ -5233,7 +5233,7 @@ SubItems:
- - AltName: Brazier of Commanding Fire Elementals (SRD p212)
+ - Alias: Brazier of Commanding Fire Elementals (SRD p212)
@@ -5287,7 +5287,7 @@ SubItems:
- - AltName: Brooch of Shielding (SRD p212)
+ - Alias: Brooch of Shielding (SRD p212)
@@ -5337,7 +5337,7 @@ SubItems:
- - AltName: Cloak of Displacement (SRD p214)
+ - Alias: Cloak of Displacement (SRD p214)
@@ -5387,7 +5387,7 @@ SubItems:
- - AltName: Cloak of Arachnida (SRD p214)
+ - Alias: Cloak of Arachnida (SRD p214)
@@ -5459,7 +5459,7 @@ SubItems:
- - AltName: Cloak of the Bat (SRD p214)
+ - Alias: Cloak of the Bat (SRD p214)
@@ -5514,7 +5514,7 @@ SubItems:
- - AltName: Cloak of the Manta Ray (SRD p214)
+ - Alias: Cloak of the Manta Ray (SRD p214)
@@ -5561,7 +5561,7 @@ SubItems:
- - AltName: Cape of the Mountebank (SRD p213)
+ - Alias: Cape of the Mountebank (SRD p213)
@@ -5615,7 +5615,7 @@ SubItems:
- - AltName: Cloak of Protection (SRD p214)
+ - Alias: Cloak of Protection (SRD p214)
@@ -5665,7 +5665,7 @@ SubItems:
- - AltName: Cloak of Elvenkind (SRD p214)
+ - Alias: Cloak of Elvenkind (SRD p214)
@@ -5714,7 +5714,7 @@ SubItems:
- - AltName: Decanter of Endless Water (SRD p216)
+ - Alias: Decanter of Endless Water (SRD p216)
@@ -5781,7 +5781,7 @@ SubItems:
- - AltName: Chime of Opening (SRD p213)
+ - Alias: Chime of Opening (SRD p213)
@@ -5834,7 +5834,7 @@ SubItems:
- - AltName: Efficient Quiver (SRD p220)
+ - Alias: Efficient Quiver (SRD p220)
@@ -5887,7 +5887,7 @@ SubItems:
- - AltName: Deck of Illusions (SRD p216)
+ - Alias: Deck of Illusions (SRD p216)
@@ -6094,7 +6094,7 @@ SubItems:
- - AltName: Deck of Many Things (SRD p216)
+ - Alias: Deck of Many Things (SRD p216)
@@ -6390,7 +6390,7 @@ SubItems:
- - AltName: Belt of Giant Strength (SRD p211)
+ - Alias: Belt of Giant Strength (SRD p211)
@@ -6476,7 +6476,7 @@ SubItems:
- - AltName: Belt of Hill Giant Strength (SRD p211)
+ - Alias: Belt of Hill Giant Strength (SRD p211)
@@ -6526,7 +6526,7 @@ SubItems:
- - AltName: Belt of Frost / Stone Giant Strength (SRD p211)
+ - Alias: Belt of Frost / Stone Giant Strength (SRD p211)
@@ -6582,7 +6582,7 @@ SubItems:
- - AltName: Belt of Fire Giant Strength (SRD p211)
+ - Alias: Belt of Fire Giant Strength (SRD p211)
@@ -6632,7 +6632,7 @@ SubItems:
- - AltName: Belt of Cloud Giant Strength (SRD p211)
+ - Alias: Belt of Cloud Giant Strength (SRD p211)
@@ -6682,7 +6682,7 @@ SubItems:
- - AltName: Belt of Storm Giant Strength (SRD p211)
+ - Alias: Belt of Storm Giant Strength (SRD p211)
@@ -6732,7 +6732,7 @@ SubItems:
- - AltName: Belt of Dwarvenkind (SRD p211)
+ - Alias: Belt of Dwarvenkind (SRD p211)
@@ -6824,7 +6824,7 @@ SubItems:
- - AltName: Hat of Disguise (SRD p225)
+ - Alias: Hat of Disguise (SRD p225)
@@ -6874,7 +6874,7 @@ SubItems:
- - AltName: Necklace of Prayer Beads (SRD p231)
+ - Alias: Necklace of Prayer Beads (SRD p231)
@@ -6964,7 +6964,7 @@ SubItems:
- - AltName: Slippers of Spider Climbing (SRD p242)
+ - Alias: Slippers of Spider Climbing (SRD p242)
@@ -7013,7 +7013,7 @@ SubItems:
- - AltName: Elven Chain (SRD p220)
+ - Alias: Elven Chain (SRD p220)
@@ -7061,7 +7061,7 @@ SubItems:
- - AltName: Candle of Invocation (SRD p213)
+ - Alias: Candle of Invocation (SRD p213)
@@ -7175,7 +7175,7 @@ SubItems:
- - AltName: Scimitar of Speed (SRD p241)
+ - Alias: Scimitar of Speed (SRD p241)
@@ -7224,7 +7224,7 @@ SubItems:
- - AltName: Sovereign Glue (SRD p242)
+ - Alias: Sovereign Glue (SRD p242)
@@ -7278,7 +7278,7 @@ SubItems:
- - AltName: Necklace of Adaptation (SRD p231)
+ - Alias: Necklace of Adaptation (SRD p231)
@@ -7327,7 +7327,7 @@ SubItems:
- - AltName: Necklace of Fireballs (SRD p231)
+ - Alias: Necklace of Fireballs (SRD p231)
@@ -7380,7 +7380,7 @@ SubItems:
- - AltName: Horn of Blasting (SRD p226)
+ - Alias: Horn of Blasting (SRD p226)
@@ -7433,7 +7433,7 @@ SubItems:
- - AltName: Horn of Valhalla (SRD p226)
+ - Alias: Horn of Valhalla (SRD p226)
@@ -7518,7 +7518,7 @@ SubItems:
- - AltName: Rope of Entanglement (SRD p241)
+ - Alias: Rope of Entanglement (SRD p241)
@@ -7577,7 +7577,7 @@ SubItems:
- - AltName: Rope of Climbing (SRD p241)
+ - Alias: Rope of Climbing (SRD p241)
@@ -7637,7 +7637,7 @@ SubItems:
- - AltName: Cube of Force (SRD p215)
+ - Alias: Cube of Force (SRD p215)
@@ -7774,7 +7774,7 @@ SubItems:
- - AltName: Glamoured Studded Leather (SRD p224)
+ - Alias: Glamoured Studded Leather (SRD p224)
@@ -7821,7 +7821,7 @@ SubItems:
- - AltName: Dagger of Venom (SRD p215)
+ - Alias: Dagger of Venom (SRD p215)
@@ -7874,7 +7874,7 @@ SubItems:
- - AltName: Circlet of Blasting (SRD p214)
+ - Alias: Circlet of Blasting (SRD p214)
@@ -7921,7 +7921,7 @@ SubItems:
- - AltName: Censer of Controlling Air Elementals (SRD p213)
+ - Alias: Censer of Controlling Air Elementals (SRD p213)
@@ -7975,7 +7975,7 @@ SubItems:
- - AltName: Flame Tongue (SRD p223)
+ - Alias: Flame Tongue (SRD p223)
@@ -8025,7 +8025,7 @@ SubItems:
- - AltName: Dancing Sword (SRD p215)
+ - Alias: Dancing Sword (SRD p215)
@@ -8087,7 +8087,7 @@ SubItems:
- - AltName: Sword of Wounding (SRD p246)
+ - Alias: Sword of Wounding (SRD p246)
@@ -8143,7 +8143,7 @@ SubItems:
- - AltName: Sun Blade (SRD p246)
+ - Alias: Sun Blade (SRD p246)
@@ -8205,7 +8205,7 @@ SubItems:
- - AltName: Sword of Sharpness (SRD p246)
+ - Alias: Sword of Sharpness (SRD p246)
@@ -8267,7 +8267,7 @@ SubItems:
- - AltName: Sword of Life Stealing (SRD p246)
+ - Alias: Sword of Life Stealing (SRD p246)
@@ -8317,7 +8317,7 @@ SubItems:
- - AltName: Vorpal Sword (SRD p248)
+ - Alias: Vorpal Sword (SRD p248)
@@ -8372,7 +8372,7 @@ SubItems:
- - AltName: Wind Fan (SRD p250)
+ - Alias: Wind Fan (SRD p250)
@@ -8420,7 +8420,7 @@ SubItems:
- - AltName: Frost Brand (SRD p223)
+ - Alias: Frost Brand (SRD p223)
@@ -8481,7 +8481,7 @@ SubItems:
- - AltName: Horseshoes of Speed (SRD p226)
+ - Alias: Horseshoes of Speed (SRD p226)
@@ -8528,7 +8528,7 @@ SubItems:
- - AltName: Horseshoes of a Zephyr (SRD p226)
+ - Alias: Horseshoes of a Zephyr (SRD p226)
@@ -8575,7 +8575,7 @@ SubItems:
- - AltName: Figurine of Wondrous Power (SRD p221)
+ - Alias: Figurine of Wondrous Power (SRD p221)
@@ -8706,7 +8706,7 @@ SubItems:
- - AltName: Iron Flask (SRD p228)
+ - Alias: Iron Flask (SRD p228)
@@ -8851,7 +8851,7 @@ SubItems:
- - AltName: Arrow of Slaying (SRD p209)
+ - Alias: Arrow of Slaying (SRD p209)
@@ -8911,7 +8911,7 @@ SubItems:
- - AltName: Pipes of the Sewers (SRD p232)
+ - Alias: Pipes of the Sewers (SRD p232)
@@ -8972,7 +8972,7 @@ SubItems:
- - AltName: Pipes of Haunting (SRD p232)
+ - Alias: Pipes of Haunting (SRD p232)
@@ -9019,7 +9019,7 @@ SubItems:
- - AltName: Instant Fortress (SRD p226)
+ - Alias: Instant Fortress (SRD p226)
@@ -9085,7 +9085,7 @@ SubItems:
- - AltName: Gauntlets of Ogre Power (SRD p223)
+ - Alias: Gauntlets of Ogre Power (SRD p223)
@@ -9135,7 +9135,7 @@ SubItems:
- - AltName: Gloves of Swimming and Climbing (SRD p224)
+ - Alias: Gloves of Swimming and Climbing (SRD p224)
@@ -9185,7 +9185,7 @@ SubItems:
- - AltName: Gloves of Missile Snaring (SRD p224)
+ - Alias: Gloves of Missile Snaring (SRD p224)
@@ -9235,7 +9235,7 @@ SubItems:
- - AltName: Gem of Seeing (SRD p223)
+ - Alias: Gem of Seeing (SRD p223)
@@ -9290,7 +9290,7 @@ SubItems:
- - AltName: Elemental Gem (SRD p220)
+ - Alias: Elemental Gem (SRD p220)
@@ -9363,7 +9363,7 @@ SubItems:
- - AltName: Gem of Brightness (SRD p223)
+ - Alias: Gem of Brightness (SRD p223)
@@ -9435,7 +9435,7 @@ SubItems:
- - AltName: Berserker Axe (SRD p211)
+ - Alias: Berserker Axe (SRD p211)
@@ -9497,7 +9497,7 @@ SubItems:
- - AltName: Plate Armor of Etherealness (SRD p233)
+ - Alias: Plate Armor of Etherealness (SRD p233)
@@ -9546,7 +9546,7 @@ SubItems:
- - AltName: Dwarven Plate (SRD p220)
+ - Alias: Dwarven Plate (SRD p220)
@@ -9593,7 +9593,7 @@ SubItems:
- - AltName: Handy Haversack (SRD p224)
+ - Alias: Handy Haversack (SRD p224)
@@ -9658,7 +9658,7 @@ SubItems:
- - AltName: Helm of Comprehending Languages (SRD p225)
+ - Alias: Helm of Comprehending Languages (SRD p225)
@@ -9706,7 +9706,7 @@ SubItems:
- - AltName: Helm of Telepathy (SRD p225)
+ - Alias: Helm of Telepathy (SRD p225)
@@ -9762,7 +9762,7 @@ SubItems:
- - AltName: Helm of Teleportation (SRD p225)
+ - Alias: Helm of Teleportation (SRD p225)
@@ -9812,7 +9812,7 @@ SubItems:
- - AltName: Helm of Brilliance (SRD p225)
+ - Alias: Helm of Brilliance (SRD p225)
@@ -9897,7 +9897,7 @@ SubItems:
- - AltName: Oil of Sharpness (SRD p232)
+ - Alias: Oil of Sharpness (SRD p232)
@@ -9944,7 +9944,7 @@ SubItems:
- - AltName: Oil of Etherealness (SRD p231)
+ - Alias: Oil of Etherealness (SRD p231)
@@ -9991,7 +9991,7 @@ SubItems:
- - AltName: Oil of Slipperiness (SRD p232)
+ - Alias: Oil of Slipperiness (SRD p232)
@@ -10044,7 +10044,7 @@ SubItems:
- - AltName: Javelin of Lightning (SRD p228)
+ - Alias: Javelin of Lightning (SRD p228)
@@ -10098,7 +10098,7 @@ SubItems:
- - AltName: Luck Blade (SRD p229)
+ - Alias: Luck Blade (SRD p229)
@@ -10159,7 +10159,7 @@ SubItems:
- - AltName: Lantern of Revealing (SRD p228)
+ - Alias: Lantern of Revealing (SRD p228)
@@ -10206,7 +10206,7 @@ SubItems:
- - AltName: Eyes of Minute Seeing (SRD p221)
+ - Alias: Eyes of Minute Seeing (SRD p221)
@@ -10253,7 +10253,7 @@ SubItems:
- - AltName: Iron Bands of Binding (SRD p228)
+ - Alias: Iron Bands of Binding (SRD p228)
@@ -10318,7 +10318,7 @@ SubItems:
- - AltName: Goggles of Night (SRD p224)
+ - Alias: Goggles of Night (SRD p224)
@@ -10366,7 +10366,7 @@ SubItems:
- - AltName: Mantle of Spell Resistance (SRD p229)
+ - Alias: Mantle of Spell Resistance (SRD p229)
@@ -10415,7 +10415,7 @@ SubItems:
- - AltName: Manual of Bodily Health (SRD p229)
+ - Alias: Manual of Bodily Health (SRD p229)
@@ -10462,7 +10462,7 @@ SubItems:
- - AltName: Manual of Gainful Exercise (SRD p229)
+ - Alias: Manual of Gainful Exercise (SRD p229)
@@ -10509,7 +10509,7 @@ SubItems:
- - AltName: Manual of Golems (SRD p229)
+ - Alias: Manual of Golems (SRD p229)
@@ -10594,7 +10594,7 @@ SubItems:
- - AltName: Manual of Quickness of Action (SRD p230)
+ - Alias: Manual of Quickness of Action (SRD p230)
@@ -10642,7 +10642,7 @@ SubItems:
- - AltName: Dwarven Thrower (SRD p220)
+ - Alias: Dwarven Thrower (SRD p220)
@@ -10691,7 +10691,7 @@ SubItems:
- - AltName: Hammer of Thunderbolts (SRD p224)
+ - Alias: Hammer of Thunderbolts (SRD p224)
@@ -10751,7 +10751,7 @@ SubItems:
- - AltName: Mace of Disruption (SRD p229)
+ - Alias: Mace of Disruption (SRD p229)
@@ -10806,7 +10806,7 @@ SubItems:
- - AltName: Mace of Smiting (SRD p229)
+ - Alias: Mace of Smiting (SRD p229)
@@ -10860,7 +10860,7 @@ SubItems:
- - AltName: Mace of Terror (SRD p229)
+ - Alias: Mace of Terror (SRD p229)
@@ -10916,7 +10916,7 @@ SubItems:
- - AltName: Medallion of Thoughts (SRD p230)
+ - Alias: Medallion of Thoughts (SRD p230)
@@ -10965,7 +10965,7 @@ SubItems:
- - AltName: Dimensional Shackles (SRD p219)
+ - Alias: Dimensional Shackles (SRD p219)
@@ -11018,7 +11018,7 @@ SubItems:
- - AltName: Mirror of Life Trapping (SRD p230)
+ - Alias: Mirror of Life Trapping (SRD p230)
@@ -11101,7 +11101,7 @@ SubItems:
- - AltName: Ammunition, +1, +2, or +3 (SRD p207)
+ - Alias: Ammunition, +1, +2, or +3 (SRD p207)
@@ -11149,7 +11149,7 @@ SubItems:
- - AltName: Eyes of the Eagle (SRD p221)
+ - Alias: Eyes of the Eagle (SRD p221)
@@ -11198,7 +11198,7 @@ SubItems:
- - AltName: Spell Scroll (SRD p242)
+ - Alias: Spell Scroll (SRD p242)
@@ -11325,7 +11325,7 @@ SubItems:
- - AltName: Bead of Force (SRD p211)
+ - Alias: Bead of Force (SRD p211)
@@ -11385,7 +11385,7 @@ SubItems:
- - AltName: Pearl of Power (SRD p232)
+ - Alias: Pearl of Power (SRD p232)
@@ -11434,7 +11434,7 @@ SubItems:
- - AltName: Philter of Love (SRD p232)
+ - Alias: Philter of Love (SRD p232)
@@ -11481,7 +11481,7 @@ SubItems:
- - AltName: Marvelous Pigments (SRD p230)
+ - Alias: Marvelous Pigments (SRD p230)
@@ -11552,7 +11552,7 @@ SubItems:
- - AltName: Stone of Controlling Earth Elementals (SRD p246)
+ - Alias: Stone of Controlling Earth Elementals (SRD p246)
@@ -11600,7 +11600,7 @@ SubItems:
- - AltName: Ioun Stone (SRD p227)
+ - Alias: Ioun Stone (SRD p227)
@@ -11770,7 +11770,7 @@ SubItems:
- - AltName: Stone of Good Luck (Luckstone) (SRD p246)
+ - Alias: Stone of Good Luck (Luckstone) (SRD p246)
@@ -11819,7 +11819,7 @@ SubItems:
- - AltName: Feather Token (SRD p221)
+ - Alias: Feather Token (SRD p221)
@@ -11942,7 +11942,7 @@ SubItems:
- - AltName: Cubic Gate (SRD p215)
+ - Alias: Cubic Gate (SRD p215)
@@ -12001,7 +12001,7 @@ SubItems:
- - AltName: Potion of Growth (SRD p234)
+ - Alias: Potion of Growth (SRD p234)
@@ -12048,7 +12048,7 @@ SubItems:
- - AltName: Potion of Animal Friendship (SRD p233)
+ - Alias: Potion of Animal Friendship (SRD p233)
@@ -12095,7 +12095,7 @@ SubItems:
- - AltName: Potion of Clairvoyance (SRD p233)
+ - Alias: Potion of Clairvoyance (SRD p233)
@@ -12142,7 +12142,7 @@ SubItems:
- - AltName: Potion of Climbing (SRD p233)
+ - Alias: Potion of Climbing (SRD p233)
@@ -12189,7 +12189,7 @@ SubItems:
- - AltName: Potion of Giant Strength (SRD p234)
+ - Alias: Potion of Giant Strength (SRD p234)
@@ -12272,7 +12272,7 @@ SubItems:
- - AltName: Potion of Gaseous Form (SRD p234)
+ - Alias: Potion of Gaseous Form (SRD p234)
@@ -12319,7 +12319,7 @@ SubItems:
- - AltName: Potion of Mind Reading (SRD p234)
+ - Alias: Potion of Mind Reading (SRD p234)
@@ -12366,7 +12366,7 @@ SubItems:
- - AltName: Potion of Poison (SRD p234)
+ - Alias: Potion of Poison (SRD p234)
@@ -12419,7 +12419,7 @@ SubItems:
- - AltName: Potion of Resistance (SRD p235)
+ - Alias: Potion of Resistance (SRD p235)
@@ -12516,7 +12516,7 @@ SubItems:
- - AltName: Potion of Water Breathing (SRD p235)
+ - Alias: Potion of Water Breathing (SRD p235)
@@ -12563,7 +12563,7 @@ SubItems:
- - AltName: Potion of Diminution (SRD p233)
+ - Alias: Potion of Diminution (SRD p233)
@@ -12610,7 +12610,7 @@ SubItems:
- - AltName: Potion of Healing (SRD p234)
+ - Alias: Potion of Healing (SRD p234)
@@ -12689,7 +12689,7 @@ SubItems:
- - AltName: Potion of Speed (SRD p235)
+ - Alias: Potion of Speed (SRD p235)
@@ -12736,7 +12736,7 @@ SubItems:
- - AltName: Potion of Flying (SRD p234)
+ - Alias: Potion of Flying (SRD p234)
@@ -12783,7 +12783,7 @@ SubItems:
- - AltName: Potion of Heroism (SRD p234)
+ - Alias: Potion of Heroism (SRD p234)
@@ -12830,7 +12830,7 @@ SubItems:
- - AltName: Potion of Invisibility (SRD p234)
+ - Alias: Potion of Invisibility (SRD p234)
@@ -12877,7 +12877,7 @@ SubItems:
- - AltName: Dust of Sneezing and Choking (SRD p219)
+ - Alias: Dust of Sneezing and Choking (SRD p219)
@@ -12930,7 +12930,7 @@ SubItems:
- - AltName: Dust of Dryness (SRD p219)
+ - Alias: Dust of Dryness (SRD p219)
@@ -12989,7 +12989,7 @@ SubItems:
- - AltName: Dust of Disappearance (SRD p219)
+ - Alias: Dust of Disappearance (SRD p219)
@@ -13037,7 +13037,7 @@ SubItems:
- - AltName: Defender (SRD p218)
+ - Alias: Defender (SRD p218)
@@ -13092,7 +13092,7 @@ SubItems:
- - AltName: Well of Many Worlds (SRD p250)
+ - Alias: Well of Many Worlds (SRD p250)
@@ -13145,7 +13145,7 @@ SubItems:
- - AltName: Portable Hole (SRD p233)
+ - Alias: Portable Hole (SRD p233)
@@ -13217,7 +13217,7 @@ SubItems:
- - AltName: Eyes of Charming (SRD p220)
+ - Alias: Eyes of Charming (SRD p220)
@@ -13267,7 +13267,7 @@ SubItems:
- - AltName: Robe of Stars (SRD p239)
+ - Alias: Robe of Stars (SRD p239)
@@ -13329,7 +13329,7 @@ SubItems:
- - AltName: Robe of Eyes (SRD p238)
+ - Alias: Robe of Eyes (SRD p238)
@@ -13405,7 +13405,7 @@ SubItems:
- - AltName: Robe of Scintillating Colors (SRD p238)
+ - Alias: Robe of Scintillating Colors (SRD p238)
@@ -13455,7 +13455,7 @@ SubItems:
- - AltName: Robe of the Archmagi (SRD p239)
+ - Alias: Robe of the Archmagi (SRD p239)
@@ -13524,7 +13524,7 @@ SubItems:
- - AltName: Robe of Useful Items (SRD p239)
+ - Alias: Robe of Useful Items (SRD p239)
@@ -13671,7 +13671,7 @@ SubItems:
- - AltName: Bag of Devouring (SRD p210)
+ - Alias: Bag of Devouring (SRD p210)
@@ -13736,7 +13736,7 @@ SubItems:
- - AltName: Bag of Tricks (SRD p210)
+ - Alias: Bag of Tricks (SRD p210)
@@ -13945,7 +13945,7 @@ SubItems:
- - AltName: Bag of Beans (SRD p209)
+ - Alias: Bag of Beans (SRD p209)
@@ -14062,7 +14062,7 @@ SubItems:
- - AltName: Bag of Holding (SRD p210)
+ - Alias: Bag of Holding (SRD p210)
@@ -14122,7 +14122,7 @@ SubItems:
- - AltName: Scarab of Protection (SRD p241)
+ - Alias: Scarab of Protection (SRD p241)
@@ -14182,7 +14182,7 @@ SubItems:
- - AltName: Rod of Absorption (SRD p239)
+ - Alias: Rod of Absorption (SRD p239)
@@ -14250,7 +14250,7 @@ SubItems:
- - AltName: Rod of Lordly Might (SRD p240)
+ - Alias: Rod of Lordly Might (SRD p240)
@@ -14359,7 +14359,7 @@ SubItems:
- - AltName: Rod of Security (SRD p241)
+ - Alias: Rod of Security (SRD p241)
@@ -14419,7 +14419,7 @@ SubItems:
- - AltName: Rod of Rulership (SRD p240)
+ - Alias: Rod of Rulership (SRD p240)
@@ -14469,7 +14469,7 @@ SubItems:
- - AltName: Rod of Alertness (SRD p240)
+ - Alias: Rod of Alertness (SRD p240)
@@ -14542,7 +14542,7 @@ SubItems:
- - AltName: Immovable Rod (SRD p226)
+ - Alias: Immovable Rod (SRD p226)
@@ -14589,7 +14589,7 @@ SubItems:
- - AltName: Sphere of Annihilation (SRD p242)
+ - Alias: Sphere of Annihilation (SRD p242)
@@ -14682,7 +14682,7 @@ SubItems:
- - AltName: Universal Solvent (SRD p248)
+ - Alias: Universal Solvent (SRD p248)
@@ -14729,7 +14729,7 @@ SubItems:
- - AltName: Apparatus of the Crab (SRD p208)
+ - Alias: Apparatus of the Crab (SRD p208)
@@ -14875,7 +14875,7 @@ SubItems:
- - AltName: Talisman of the Sphere (SRD p247)
+ - Alias: Talisman of the Sphere (SRD p247)
@@ -14925,7 +14925,7 @@ SubItems:
- - AltName: Talisman of Pure Good (SRD p247)
+ - Alias: Talisman of Pure Good (SRD p247)
@@ -14987,7 +14987,7 @@ SubItems:
- - AltName: Talisman of Ultimate Evil (SRD p247)
+ - Alias: Talisman of Ultimate Evil (SRD p247)
@@ -15048,7 +15048,7 @@ SubItems:
- - AltName: Carpet of Flying (SRD p213)
+ - Alias: Carpet of Flying (SRD p213)
@@ -15133,7 +15133,7 @@ SubItems:
- - AltName: Tome of Leadership and Influence (SRD p247)
+ - Alias: Tome of Leadership and Influence (SRD p247)
@@ -15180,7 +15180,7 @@ SubItems:
- - AltName: Tome of Understanding (SRD p247)
+ - Alias: Tome of Understanding (SRD p247)
@@ -15227,7 +15227,7 @@ SubItems:
- - AltName: Tome of Clear Thought (SRD p247)
+ - Alias: Tome of Clear Thought (SRD p247)
@@ -15275,7 +15275,7 @@ SubItems:
- - AltName: Trident of Fish Command (SRD p247)
+ - Alias: Trident of Fish Command (SRD p247)
@@ -15324,7 +15324,7 @@ SubItems:
- - AltName: Dragon Slayer (SRD p219)
+ - Alias: Dragon Slayer (SRD p219)
@@ -15377,7 +15377,7 @@ SubItems:
- - AltName: Giant Slayer (SRD p224)
+ - Alias: Giant Slayer (SRD p224)
@@ -15431,7 +15431,7 @@ SubItems:
- - AltName: Holy Avenger (SRD p225)
+ - Alias: Holy Avenger (SRD p225)
@@ -15487,7 +15487,7 @@ SubItems:
- - AltName: Nine Lives Stealer (SRD p231)
+ - Alias: Nine Lives Stealer (SRD p231)
@@ -15538,7 +15538,7 @@ AttributesDictionary: >+
- - AltName: Magic Items A-Z (SRD p207)
+ - Alias: Magic Items A-Z (SRD p207)
@@ -15551,7 +15551,7 @@ AttributesDictionary: >+
### Ailes de vol
-- AltName: Wings of Flying (SRD p251)
+- Alias: Wings of Flying (SRD p251)
- Source: (CDC p138)
- Objet merveilleux, rare (harmonisation requise)
@@ -15563,7 +15563,7 @@ Tant que vous êtes équipé de cette cape, vous pouvez utiliser une action pour
### Amulette antidote
-- AltName: Periapt of Proof against Poison (SRD p232)
+- Alias: Periapt of Proof against Poison (SRD p232)
- Source: (CDC p139)
- Objet merveilleux, rare
@@ -15575,7 +15575,7 @@ Une gemme noire luisante et parfaitement taillée orne cette délicate chaîne d
### Amulette d'antidétection
-- AltName: Amulet of Proof against Detection and Location (SRD p207)
+- Alias: Amulet of Proof against Detection and Location (SRD p207)
- Source: (CDC p139)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -15587,7 +15587,7 @@ Tant que vous portez cette amulette, vous êtes caché aux yeux de la magie de d
### Amulette de bonne santé
-- AltName: Amulet of Health (SRD p207)
+- Alias: Amulet of Health (SRD p207)
- Source: (CDC p139)
- Objet merveilleux, rare (harmonisation requise)
@@ -15599,7 +15599,7 @@ Tant que vous portez cette amulette, votre valeur de Constitution passe à 19. L
### Amulette de cicatrisation
-- AltName: Periapt of Wound Closure (SRD p232)
+- Alias: Periapt of Wound Closure (SRD p232)
- Source: (CDC p139)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -15611,7 +15611,7 @@ Tant que vous portez ce pendentif, vous vous stabilisez automatiquement au débu
### Amulette de santé
-- AltName: Periapt of Health (SRD p232)
+- Alias: Periapt of Health (SRD p232)
- Source: (CDC p139)
- Objet merveilleux, peu courant
@@ -15623,7 +15623,7 @@ Tant que vous portez ce pendentif, vous êtes immunisé contre toutes les maladi
### Amulette des plans
-- AltName: Amulet of the Planes (SRD p207)
+- Alias: Amulet of the Planes (SRD p207)
- Source: (CDC p139)
- Objet merveilleux, très rare (harmonisation requise)
@@ -15635,7 +15635,7 @@ Tant que vous portez cette amulette, vous pouvez utiliser votre action pour nomm
### Anneau d'action libre
-- AltName: Ring of Free Action (SRD p236)
+- Alias: Ring of Free Action (SRD p236)
- Source: (CDC p139)
- Anneau, rare (harmonisation requise)
@@ -15647,7 +15647,7 @@ Tant que vous portez cet anneau au doigt, les terrains difficiles ne vous coûte
### Anneau de chaleur
-- AltName: Ring of Warmth (SRD p238)
+- Alias: Ring of Warmth (SRD p238)
- Source: (CDC p139)
- Anneau, peu courant (harmonisation requise)
@@ -15659,7 +15659,7 @@ Vous bénéficiez d'une résistance contre les dégâts de froid tant que vous p
### Anneau de convocation de djinn
-- AltName: Ring of Djinni Summoning (SRD p235)
+- Alias: Ring of Djinni Summoning (SRD p235)
- Source: (CDC p139)
- Anneau, légendaire (harmonisation requise)
@@ -15675,7 +15675,7 @@ Après le retour du djinn sur son plan d'origine, vous ne pouvez plus le convoqu
### Anneau de dérobade
-- AltName: Ring of Evasion (SRD p236)
+- Alias: Ring of Evasion (SRD p236)
- Source: (CDC p139)
- Anneau, rare (harmonisation requise)
@@ -15687,7 +15687,7 @@ Cet anneau contient 3 charges et récupère 1d3 charges dépensées chaque jour,
### Anneau de feu d'étoiles
-- AltName: Ring of Shooting Stars (SRD p237)
+- Alias: Ring of Shooting Stars (SRD p237)
- Source: (CDC p140)
- Anneau, très rare (harmonisation en plein air et de nuit exigée)
@@ -15718,7 +15718,7 @@ Par une action bonus, vous pouvez déplacer chaque sphère d'une distance maxima
### Anneau de légèreté
-- AltName: Ring of Feather Falling (SRD p236)
+- Alias: Ring of Feather Falling (SRD p236)
- Source: (CDC p140)
- Anneau, rare (harmonisation requise)
@@ -15730,7 +15730,7 @@ Vous descendez de 18 mètres par round et ne subissez aucun dégât de chute tan
### Anneau de maîtrise élémentaire
-- AltName: Ring of Elemental Command (SRD p235)
+- Alias: Ring of Elemental Command (SRD p235)
- Source: (CDC p140)
- Anneau, légendaire (harmonisation requise)
@@ -15776,7 +15776,7 @@ Si vous aidez à tuer un élémentaire du Feu tout en étant harmonisé à l'ann
### Anneau de marche sur l'eau
-- AltName: Ring of Water Walking (SRD p238)
+- Alias: Ring of Water Walking (SRD p238)
- Source: (CDC p141)
- Anneau, peu courant
@@ -15788,7 +15788,7 @@ Vous pouvez vous tenir debout sur toute surface liquide et vous déplacer dessus
### Anneau de nage
-- AltName: Ring of Swimming (SRD p238)
+- Alias: Ring of Swimming (SRD p238)
- Source: (CDC p141)
- Anneau, peu courant
@@ -15800,7 +15800,7 @@ Vous possédez une vitesse de déplacement à la nage de 12 mètres tant que vou
### Anneau de protection
-- AltName: Ring of Protection (SRD p237)
+- Alias: Ring of Protection (SRD p237)
- Source: (CDC p141)
- Anneau, rare (harmonisation requise)
@@ -15812,7 +15812,7 @@ Vous bénéficiez d'un bonus de +1 à la CA et aux jets de sauvegarde tant que v
### Anneau de protection mentale
-- AltName: Ring of Mind Shielding (SRD p236)
+- Alias: Ring of Mind Shielding (SRD p236)
- Source: (CDC p141)
- Anneau, peu courant (harmonisation requise)
@@ -15828,7 +15828,7 @@ Si vous perdez la vie avec l'anneau au doigt, votre âme se réfugie à l'intér
### Anneau de régénération
-- AltName: Ring of Regeneration (SRD p237)
+- Alias: Ring of Regeneration (SRD p237)
- Source: (CDC p141)
- Anneau, très rare (harmonisation requise)
@@ -15840,7 +15840,7 @@ Tant que vous portez cet anneau, vous récupérez 1d6 points de vie toutes les 1
### Anneau de renvoi des sorts
-- AltName: Ring of Spell Turning (SRD p237)
+- Alias: Ring of Spell Turning (SRD p237)
- Source: (CDC p142)
- Anneau, légendaire (harmonisation requise)
@@ -15852,7 +15852,7 @@ Vous obtenez l'avantage lors des jets de sauvegarde contre les sorts qui ne pren
### Anneau de résistance
-- AltName: Ring of Resistance (SRD p237)
+- Alias: Ring of Resistance (SRD p237)
- Source: (CDC p142)
- Anneau, rare (harmonisation requise)
@@ -15877,7 +15877,7 @@ Vous bénéficiez d'une résistance contre un type de dégâts tant que vous por
### Anneau de saut
-- AltName: Ring of Jumping (SRD p236)
+- Alias: Ring of Jumping (SRD p236)
- Source: (CDC p142)
- Anneau, peu courant (harmonisation requise)
@@ -15889,7 +15889,7 @@ Vous pouvez lancer le sort de saut, à volonté et par une action bonus, tant qu
### Anneau de stockage de sorts
-- AltName: Ring of Spell Storing (SRD p237)
+- Alias: Ring of Spell Storing (SRD p237)
- Source: (CDC p142)
- Anneau, rare (harmonisation requise)
@@ -15905,7 +15905,7 @@ Tant que vous portez cet anneau, vous pouvez lancer n'importe quel sort stocké
### Anneau de télékinésie
-- AltName: Ring of Telekinesis (SRD p238)
+- Alias: Ring of Telekinesis (SRD p238)
- Source: (CDC p142)
- Anneau, très rare (harmonisation requise)
@@ -15917,7 +15917,7 @@ Tant que vous portez cet anneau au doigt, vous pouvez lancer le sort de téléki
### Anneau de triple souhait
-- AltName: Ring of Three Wishes (SRD p238)
+- Alias: Ring of Three Wishes (SRD p238)
- Source: (CDC p142)
- Anneau, légendaire
@@ -15929,7 +15929,7 @@ Vous pouvez utiliser une action pour dépenser une des 3 charges que contient l'
### Anneau de vision aux rayons X
-- AltName: Ring of X-ray Vision (SRD p238)
+- Alias: Ring of X-ray Vision (SRD p238)
- Source: (CDC p142)
- Anneau, rare (harmonisation requise)
@@ -15943,7 +15943,7 @@ Chaque fois que vous utilisez l'anneau à nouveau avant de prendre un repos long
### Anneau d'influence animale
-- AltName: Ring of Animal Influence (SRD p235)
+- Alias: Ring of Animal Influence (SRD p235)
- Source: (CDC p142)
- Anneau, rare
@@ -15959,7 +15959,7 @@ Cet anneau contient 3 charges et récupère 1d3 charges dépensées chaque jour,
### Anneau d'invisibilité
-- AltName: Ring of Invisibility (SRD p236)
+- Alias: Ring of Invisibility (SRD p236)
- Source: (CDC p143)
- Anneau, légendaire (harmonisation requise)
@@ -15971,7 +15971,7 @@ Vous pouvez devenir invisible par une action tant que vous portez cet anneau au
### Anneau du bélier
-- AltName: Ring of the Ram (SRD p238)
+- Alias: Ring of the Ram (SRD p238)
- Source: (CDC p143)
- Anneau, rare (harmonisation requise)
@@ -15985,7 +15985,7 @@ Par ailleurs, vous pouvez dépenser de 1 à 3 des charges que contient l'anneau
### Arc du serment
-- AltName: Oathbow (SRD p231)
+- Alias: Oathbow (SRD p231)
- Source: (CDC p143)
- Arme (arc long), très rare (harmonisation requise)
@@ -16001,7 +16001,7 @@ Tant que vit votre ennemi juré, vous subissez un désavantage lors de jets d'at
### Arme vicieuse
-- AltName: Vicious Weapon (SRD p248)
+- Alias: Vicious Weapon (SRD p248)
- Source: (CDC p143)
- Arme (n'importe quelle arme), rare
@@ -16013,7 +16013,7 @@ Lorsque vous obtenez un 20 sur un jet d'attaque avec cette arme magique, votre c
### Arme +1, +2 ou +3
-- AltName: Weapon, +1, +2, or +3 (SRD p250)
+- Alias: Weapon, +1, +2, or +3 (SRD p250)
- Source: (CDC p143)
- Arme (n'importe quelle arme), peu courante (+1), rare (+2) ou très rare (+3)
@@ -16025,7 +16025,7 @@ Vous bénéficiez d'un bonus aux jets d'attaque et de dégâts effectués avec c
### Armure d'écailles de dragon
-- AltName: Dragon Scale Mail (SRD p219)
+- Alias: Dragon Scale Mail (SRD p219)
- Source: (CDC p143)
- Armure (armure d'écaille), très rare (harmonisation requise)
@@ -16054,7 +16054,7 @@ De plus, vous pouvez utiliser une action pour concentrer vos cinq sens et percev
### Armure de mithral
-- AltName: Mithral Armor (SRD p231)
+- Alias: Mithral Armor (SRD p231)
- Source: (CDC p143)
- Armure (intermédiaire ou lourde mais pas en peau), peu courante
@@ -16066,7 +16066,7 @@ Le mithral est un métal léger et flexible, à tel point qu'on peut porter une
### Armure démoniaque
-- AltName: Demon Armor (SRD p218)
+- Alias: Demon Armor (SRD p218)
- Source: (CDC p144)
- Armure (harnois), très rare (harmonisation requise)
@@ -16080,7 +16080,7 @@ Tant que vous portez cette armure, vous gagnez un bonus de +1 à la CA et vous c
### Armure de résistance
-- AltName: Armor of Resistance (SRD p208)
+- Alias: Armor of Resistance (SRD p208)
- Source: (CDC p144)
- Armure (légère, intermédiaire ou lourde), rare (harmonisation requise)
@@ -16105,7 +16105,7 @@ Tant que vous portez cette armure, vous êtes résistant à un type de dégâts.
### Armure de vulnérabilité
-- AltName: Armor of Vulnerability (SRD p209)
+- Alias: Armor of Vulnerability (SRD p209)
- Source: (CDC p145)
- Armure (harnois), rare (harmonisation requise)
@@ -16119,7 +16119,7 @@ Tant que vous portez cette armure, vous êtes résistant à un type de dégâts
### Armure d'invulnérabilité
-- AltName: Armor of Invulnerability (SRD p208)
+- Alias: Armor of Invulnerability (SRD p208)
- Source: (CDC p145)
- Armure (harnois), légendaire (harmonisation requise)
@@ -16131,7 +16131,7 @@ Tant que vous portez cette armure, vous résistez aux dégâts non-magiques. De
### Armure en adamantium
-- AltName: Adamantine Armor (SRD p207)
+- Alias: Adamantine Armor (SRD p207)
- Source: (CDC p145)
- Armure (intermédiaire ou lourde, mais pas en peau), peu courante
@@ -16143,7 +16143,7 @@ Cette armure est renforcée à base d'adamantium, l'une des substances les plus
### Armure +1, +2 ou +3
-- AltName: Armor +1, +2, or +3 (SRD p208)
+- Alias: Armor +1, +2, or +3 (SRD p208)
- Source: (CDC p145)
- Armure (légère, intermédiaire ou lourde), rare (+1), très rare (+2) ou légendaire (+3)
@@ -16155,7 +16155,7 @@ Vous disposez d'un bonus à la CA tant que vous portez cette armure. Ce bonus d
### Baguette d'éclairs
-- AltName: Wand of Lightning Bolts (SRD p249)
+- Alias: Wand of Lightning Bolts (SRD p249)
- Source: (CDC p145)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
@@ -16169,7 +16169,7 @@ La baguette récupère 1d6+1 charges dépensées chaque jour, à l'aube. Lancez
### Baguette de boules de feu
-- AltName: Wand of Fireballs (SRD p248)
+- Alias: Wand of Fireballs (SRD p248)
- Source: (CDC p145)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
@@ -16183,7 +16183,7 @@ La baguette récupère 1d6+1 charges dépensées chaque jour, à l'aube. Lancez
### Baguette de détection de l'ennemi
-- AltName: Wand of Enemy Detection (SRD p248)
+- Alias: Wand of Enemy Detection (SRD p248)
- Source: (CDC p145)
- Baguette, rare (harmonisation requise)
@@ -16197,7 +16197,7 @@ La baguette récupère 1d6+1 charges dépensées chaque jour, à l'aube. Lancez
### Baguette de détection de la magie
-- AltName: Wand of Magic Detection (SRD p249)
+- Alias: Wand of Magic Detection (SRD p249)
- Source: (CDC p145)
- Baguette, peu courante
@@ -16209,7 +16209,7 @@ Cette baguette contient 3 charges. Avec cette baguette en main, vous pouvez dép
### Baguette de métamorphose
-- AltName: Wand of Polymorph (SRD p249)
+- Alias: Wand of Polymorph (SRD p249)
- Source: (CDC p145)
- Baguette, très rare (harmonisation avec un lanceur de sorts exigée)
@@ -16223,7 +16223,7 @@ La baguette récupère 1d6+1 charges dépensées chaque jour, à l'aube. Lancez
### Baguette de paralysie
-- AltName: Wand of Paralysis (SRD p249)
+- Alias: Wand of Paralysis (SRD p249)
- Source: (CDC p146)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
@@ -16237,7 +16237,7 @@ La baguette récupère 1d6+1 charges dépensées chaque jour, à l'aube. Lancez
### Baguette de projectiles magiques
-- AltName: Wand of Magic Missiles (SRD p249)
+- Alias: Wand of Magic Missiles (SRD p249)
- Source: (CDC p146)
- Baguette, peu courante
@@ -16251,7 +16251,7 @@ La baguette récupère 1d6+1 charges dépensées chaque jour, à l'aube. Lancez
### Baguette de terreur
-- AltName: Wand of Fear (SRD p248)
+- Alias: Wand of Fear (SRD p248)
- Source: (CDC p146)
- Baguette, rare (harmonisation requise)
@@ -16267,7 +16267,7 @@ Cette baguette contient 7 charges en ce qui concerne les propriétés suivantes.
### Baguette des entraves
-- AltName: Wand of Binding (SRD p248)
+- Alias: Wand of Binding (SRD p248)
- Source: (CDC p146)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
@@ -16283,7 +16283,7 @@ Cette baguette contient 7 charges en ce qui concerne les propriétés suivantes.
### Baguette des secrets
-- AltName: Wand of Secrets (SRD p249)
+- Alias: Wand of Secrets (SRD p249)
- Source: (CDC p147)
- Baguette, peu courante
@@ -16295,7 +16295,7 @@ Avec cette baguette en main, vous pouvez utiliser une action pour dépenser 1 de
### Baguette du mage de guerre +1, +2 ou +3
-- AltName: Wand of the War Mage, +1, +2, or +3 (SRD p249)
+- Alias: Wand of the War Mage, +1, +2, or +3 (SRD p249)
- Source: (CDC p147)
- Baguette, peu courant (+1), rare (+2) ou très rare (+3) (harmonisation avec un lanceur de sorts exigée)
@@ -16307,7 +16307,7 @@ Avec cette baguette en main, vous bénéficiez d'un bonus aux jets d'attaque des
### Baguette entoilée
-- AltName: Wand of Web (SRD p249)
+- Alias: Wand of Web (SRD p249)
- Source: (CDC p147)
- Baguette, peu courante (harmonisation avec un lanceur de sorts exigée)
@@ -16321,7 +16321,7 @@ La baguette récupère 1d6+1 charges dépensées chaque jour, à l'aube. Lancez
### Baguette merveilleuse
-- AltName: Wand of Wonder (SRD p249)
+- Alias: Wand of Wonder (SRD p249)
- Source: (CDC p147)
- Baguette, rare (harmonisation avec un lanceur de sorts exigée)
@@ -16364,7 +16364,7 @@ La baguette récupère 1d6+1 charges dépensées chaque jour, à l'aube. Lancez
### Balai volant
-- AltName: Broom of Flying (SRD p213)
+- Alias: Broom of Flying (SRD p213)
- Source: (CDC p148)
- Objet merveilleux, peu courant
@@ -16378,7 +16378,7 @@ Vous pouvez envoyer le balai rejoindre seul une destination située dans un rayo
### Bandeau d'intelligence
-- AltName: Headband of Intellect (SRD p225)
+- Alias: Headband of Intellect (SRD p225)
- Source: (CDC p148)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -16390,7 +16390,7 @@ Tant que vous portez ce bandeau, votre Intelligence passe à 19. Si elle est dé
### Bateau pliable
-- AltName: Folding Boat (SRD p223)
+- Alias: Folding Boat (SRD p223)
- Source: (CDC p148)
- Objet merveilleux, rare
@@ -16410,7 +16410,7 @@ Le troisième mot de commande replie le bateau qui redevient une boîte, à cond
### Bâton d'envoûtement
-- AltName: Staff of Charming (SRD p243)
+- Alias: Staff of Charming (SRD p243)
- Source: (CDC p148)
- Bâton, rare (harmonisation avec un barde, un clerc, un druide, un ensorceleur, un magicien ou un sorcier exigée)
@@ -16426,7 +16426,7 @@ Le bâton récupère 1d8+2 charges dépensées chaque jour, à l'aube. Si vous d
### Bâton de combat
-- AltName: Staff of Striking (SRD p244)
+- Alias: Staff of Striking (SRD p244)
- Source: (CDC p149)
- Bâton, très rare (harmonisation requise)
@@ -16440,7 +16440,7 @@ Le bâton contient 10 charges. Quand vous réussissez une attaque au corps à co
### Bâton de feu
-- AltName: Staff of Fire (SRD p243)
+- Alias: Staff of Fire (SRD p243)
- Source: (CDC p149)
- Bâton, très rare (harmonisation avec un druide, un ensorceleur, un magicien ou un sorcier exigée)
@@ -16456,7 +16456,7 @@ Le bâton récupère 1d6+4 charges dépensées chaque jour, à l'aube. Si vous d
### Bâton de flétrissement
-- AltName: Staff of Withering (SRD p246)
+- Alias: Staff of Withering (SRD p246)
- Source: (CDC p149)
- Bâton, rare (harmonisation avec un druide, un clerc ou un sorcier exigée)
@@ -16470,7 +16470,7 @@ Le bâton peut être manié comme une arme magique. En cas d'attaque réussie, i
### Bâton de guérison
-- AltName: Staff of Healing (SRD p243)
+- Alias: Staff of Healing (SRD p243)
- Source: (CDC p149)
- Bâton, rare (harmonisation avec un barde, un clerc ou un druide exigée)
@@ -16484,7 +16484,7 @@ Le bâton récupère 1d6+4 charges dépensées chaque jour, à l'aube. Si vous d
### Bâton de givre
-- AltName: Staff of Frost (SRD p243)
+- Alias: Staff of Frost (SRD p243)
- Source: (CDC p149)
- Bâton, très rare (harmonisation avec un druide, un ensorceleur, un magicien ou un sorcier exigée)
@@ -16500,7 +16500,7 @@ Le bâton récupère 1d6+4 charges dépensées chaque jour, à l'aube. Si vous d
### Bâton de puissance
-- AltName: Staff of Power (SRD p243)
+- Alias: Staff of Power (SRD p243)
- Source: (CDC p149)
- Bâton, très rare (harmonisation avec un ensorceleur, un magicien ou un sorcier exigée)
@@ -16528,7 +16528,7 @@ Il y a 50 % de chances pour que vous soyez instantanément transporté vers un p
### Bâton de tonnerre et de foudre
-- AltName: Staff of Thunder and Lightning (SRD p245)
+- Alias: Staff of Thunder and Lightning (SRD p245)
- Source: (CDC p150)
- Bâton, très rare (harmonisation requise)
@@ -16550,7 +16550,7 @@ Ce bâton peut être manié comme une arme magique qui confère un bonus de +2
### Bâton des forêts
-- AltName: Staff of the Woodlands (SRD p245)
+- Alias: Staff of the Woodlands (SRD p245)
- Source: (CDC p150)
- Bâton, rare (harmonisation avec un druide exigée)
@@ -16570,7 +16570,7 @@ Vous pouvez également utiliser une action pour lancer le sort passage sans trac
### Bâton du grand essaim
-- AltName: Staff of Swarming Insects (SRD p244)
+- Alias: Staff of Swarming Insects (SRD p244)
- Source: (CDC p150)
- Bâton, rare (harmonisation requise)
@@ -16586,7 +16586,7 @@ Ce bâton contient 10 charges. Il récupère 1d6+4 charges dépensées chaque jo
### Bâton du python
-- AltName: Staff of the Python (SRD p245)
+- Alias: Staff of the Python (SRD p245)
- Source: (CDC p151)
- Bâton, peu courant (harmonisation avec un clerc, druide ou un sorcier exigée)
@@ -16602,7 +16602,7 @@ Si le nombre de points de vie du serpent tombe à 0, il meurt et reprend sa form
### Bâton du thaumaturge
-- AltName: Staff of the Magi (SRD p244)
+- Alias: Staff of the Magi (SRD p244)
- Source: (CDC p151)
- Bâton, légendaire (harmonisation avec un ensorceleur, un magicien ou un sorcier exigée)
@@ -16632,7 +16632,7 @@ Il y a 50 % de chances pour que vous soyez instantanément transporté vers un p
### Baume revigorant
-- AltName: Restorative Ointment (SRD p235)
+- Alias: Restorative Ointment (SRD p235)
- Source: (CDC p152)
- Objet merveilleux, peu courant
@@ -16646,7 +16646,7 @@ Par une action, il est possible d'avaler ou d'appliquer sur la peau une dose de
### Bol de contrôle des élémentaires de l'eau
-- AltName: Bowl of Commanding Water Elementals (SRD p212)
+- Alias: Bowl of Commanding Water Elementals (SRD p212)
- Source: (CDC p152)
- Objet merveilleux, rare
@@ -16660,7 +16660,7 @@ Le bol fait une trentaine de centimètres de diamètre pour quinze centimètres
### Bottes ailées
-- AltName: Winged Boots (SRD p251)
+- Alias: Winged Boots (SRD p251)
- Source: (CDC p152)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -16674,7 +16674,7 @@ Les bottes récupèrent 2 heures de capacité de vol pour chaque période de 12
### Bottes de lévitation
-- AltName: Boots of Levitation (SRD p212)
+- Alias: Boots of Levitation (SRD p212)
- Source: (CDC p152)
- Objet merveilleux, rare (harmonisation requise)
@@ -16686,7 +16686,7 @@ Tant que vous portez ces bottes, vous pouvez utiliser une action pour lancer le
### Bottes de marche et de saut
-- AltName: Boots of Striding and Springing (SRD p212)
+- Alias: Boots of Striding and Springing (SRD p212)
- Source: (CDC p152)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -16698,7 +16698,7 @@ Tant que vous portez ces bottes, votre vitesse au sol passe à 9 mètres (à moi
### Bottes de rapidité
-- AltName: Boots of Speed (SRD p212)
+- Alias: Boots of Speed (SRD p212)
- Source: (CDC p152)
- Objet merveilleux, rare (harmonisation requise)
@@ -16712,7 +16712,7 @@ Une fois que la capacité spéciale des bottes a servi pendant un total de 10 mi
### Bottes des terres gelées
-- AltName: Boots of the Winterlands (SRD p212)
+- Alias: Boots of the Winterlands (SRD p212)
- Source: (CDC p153)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -16728,7 +16728,7 @@ Ces bottes fourrées sont chaudes et bien douillettes. Tant que vous les portez,
### Bottes elfiques
-- AltName: Boots of Elvenkind (SRD p212)
+- Alias: Boots of Elvenkind (SRD p212)
- Source: (CDC p153)
- Objet merveilleux, peu courant
@@ -16740,7 +16740,7 @@ Tant que vous portez ces bottes, vos pas ne s'accompagnent d'aucun bruit, quelle
### Bouclier animé
-- AltName: Animated Shield (SRD p208)
+- Alias: Animated Shield (SRD p208)
- Source: (CDC p153)
- Armure (bouclier), très rare (harmonisation requise)
@@ -16752,7 +16752,7 @@ Tant que vous maniez ce bouclier, vous pouvez prononcer son mot de commande par
### Bouclier antiprojectiles
-- AltName: Arrow-Catching Shield (SRD p209)
+- Alias: Arrow-Catching Shield (SRD p209)
- Source: (CDC p153)
- Armure (bouclier), rare (harmonisation requise)
@@ -16764,7 +16764,7 @@ Tant que vous maniez ce bouclier, vous bénéficiez d'un bonus de +2 à la CA co
### Bouclier d'attraction des projectiles
-- AltName: Shield of Missile Attraction (SRD p242)
+- Alias: Shield of Missile Attraction (SRD p242)
- Source: (CDC p153)
- Armure (bouclier), rare (harmonisation requise)
@@ -16778,7 +16778,7 @@ Tant que vous tenez ce bouclier, vous bénéficiez d'une résistance contre les
### Bouclier de protection contre la magie
-- AltName: Spellguard Shield (SRD p242)
+- Alias: Spellguard Shield (SRD p242)
- Source: (CDC p153)
- Armure (bouclier), très rare (harmonisation requise)
@@ -16790,7 +16790,7 @@ Tant que vous tenez ce bouclier, vous vous obtenez l'avantage lors des jets de s
### Bouclier +1, +2 ou +3
-- AltName: Shield, +1, +2, or +3 (SRD p242)
+- Alias: Shield, +1, +2, or +3 (SRD p242)
- Source: (CDC p153)
- Armure (bouclier), peu courant (+1), rare (+2) ou très rare (+3)
@@ -16802,7 +16802,7 @@ Tant que vous tenez ce bouclier, vous bénéficiez d'un bonus à la CA qui dépe
### Boule de cristal
-- AltName: Crystal Ball (SRD p214)
+- Alias: Crystal Ball (SRD p214)
- Source: (CDC p153)
- Objet merveilleux, très rare ou légendaire (harmonisation requise)
@@ -16822,7 +16822,7 @@ Voici des variantes de ce grand classique qui possèdent des propriétés suppl
### Bouteille de l'éfrit
-- AltName: Efreeti Bottle (SRD p220)
+- Alias: Efreeti Bottle (SRD p220)
- Source: (CDC p154)
- Objet merveilleux, très rare
@@ -16842,7 +16842,7 @@ Le MJ lance un dé dans la table suivante quand quelqu'un ouvre la bouteille pou
### Bouteille fumigène
-- AltName: Eversmoking Bottle (SRD p220)
+- Alias: Eversmoking Bottle (SRD p220)
- Source: (CDC p154)
- Objet merveilleux, peu courant
@@ -16856,7 +16856,7 @@ Le nuage persiste tant que la bouteille est ouverte. Pour la fermer, vous devez
### Bracelets d'archerie
-- AltName: Bracers of Archery (SRD p212)
+- Alias: Bracers of Archery (SRD p212)
- Source: (CDC p154)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -16868,7 +16868,7 @@ Tant que vous portez ces bracelets, vous maîtrisez l'arc long et l'arc court et
### Bracelets de défense
-- AltName: Bracers of Defense (SRD p212)
+- Alias: Bracers of Defense (SRD p212)
- Source: (CDC p154)
- Objet merveilleux, rare (harmonisation requise)
@@ -16880,7 +16880,7 @@ Tant que vous portez ces bracelets, vous gagnez un bonus de +2 à la CA, à cond
### Brasero de contrôle des élémentaires du feu
-- AltName: Brazier of Commanding Fire Elementals (SRD p212)
+- Alias: Brazier of Commanding Fire Elementals (SRD p212)
- Source: (CDC p154)
- Objet merveilleux, rare
@@ -16894,7 +16894,7 @@ Le brasero pèse 2,5 kilos.
### Broche de protection
-- AltName: Brooch of Shielding (SRD p212)
+- Alias: Brooch of Shielding (SRD p212)
- Source: (CDC p154)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -16906,7 +16906,7 @@ Tant que vous portez cette broche, vous êtes résistant aux dégâts de force e
### Cape de déplacement
-- AltName: Cloak of Displacement (SRD p214)
+- Alias: Cloak of Displacement (SRD p214)
- Source: (CDC p154)
- Objet merveilleux, rare (harmonisation requise)
@@ -16918,7 +16918,7 @@ Quand vous enfilez cette cape, elle projette une illusion donnant l'impression q
### Cape de l'arachnide
-- AltName: Cloak of Arachnida (SRD p214)
+- Alias: Cloak of Arachnida (SRD p214)
- Source: (CDC p154)
- Objet merveilleux, très rare (harmonisation requise)
@@ -16936,7 +16936,7 @@ Ce bel habit est fait de soie noire mêlée de discrets filaments d'argent. Tant
### Cape de la chauve-souris
-- AltName: Cloak of the Bat (SRD p214)
+- Alias: Cloak of the Bat (SRD p214)
- Source: (CDC p155)
- Objet merveilleux, rare (harmonisation requise)
@@ -16950,7 +16950,7 @@ Tant que vous portez la cape dans une zone de faible lumière ou de ténèbres,
### Cape de la raie manta
-- AltName: Cloak of the Manta Ray (SRD p214)
+- Alias: Cloak of the Manta Ray (SRD p214)
- Source: (CDC p155)
- Objet merveilleux, peu courant
@@ -16962,7 +16962,7 @@ Tant que vous portez cette cape avec le capuchon tiré, vous pouvez respirer sou
### Cape de prestidigitateur
-- AltName: Cape of the Mountebank (SRD p213)
+- Alias: Cape of the Mountebank (SRD p213)
- Source: (CDC p155)
- Objet merveilleux, rare
@@ -16976,7 +16976,7 @@ Quand vous disparaissez, vous laissez un nuage de fumée derrière vous et appar
### Cape de protection
-- AltName: Cloak of Protection (SRD p214)
+- Alias: Cloak of Protection (SRD p214)
- Source: (CDC p155)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -16988,7 +16988,7 @@ Vous gagnez un bonus de +1 à la CA et aux jets de sauvegarde tant que vous port
### Cape elfique
-- AltName: Cloak of Elvenkind (SRD p214)
+- Alias: Cloak of Elvenkind (SRD p214)
- Source: (CDC p155)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -17000,7 +17000,7 @@ Tant que vous portez cette cape avec le capuchon tiré, les créatures qui tente
### Carafe intarissable
-- AltName: Decanter of Endless Water (SRD p216)
+- Alias: Decanter of Endless Water (SRD p216)
- Source: (CDC p155)
- Objet merveilleux, peu courant
@@ -17018,7 +17018,7 @@ Vous pouvez dépenser une action pour enlever le couvercle et prononcer l'un des
### Carillon d'ouverture
-- AltName: Chime of Opening (SRD p213)
+- Alias: Chime of Opening (SRD p213)
- Source: (CDC p156)
- Objet merveilleux, rare
@@ -17032,7 +17032,7 @@ Le carillon dispose de dix utilisations. Il se fissure après la dixième et ne
### Carquois efficace
-- AltName: Efficient Quiver (SRD p220)
+- Alias: Efficient Quiver (SRD p220)
- Source: (CDC p156)
- Objet merveilleux, peu courant
@@ -17046,7 +17046,7 @@ Vous pouvez tirer ces objets du carquois comme vous le feriez avec un carquois o
### Cartes d'illusion
-- AltName: Deck of Illusions (SRD p216)
+- Alias: Deck of Illusions (SRD p216)
- Source: (CDC p156)
- Objet merveilleux, peu courant
@@ -17100,7 +17100,7 @@ L'illusion persiste jusqu'à ce qu'on la dissipe ou que l'on déplace la carte.
### Cartes merveilleuses
-- AltName: Deck of Many Things (SRD p216)
+- Alias: Deck of Many Things (SRD p216)
- Source: (CDC p157)
- Objet merveilleux, légendaire
@@ -17187,7 +17187,7 @@ Une fois une carte piochée, elle disparaît, mais à moins qu'il ne s'agisse du
### Ceinturon de force de géant
-- AltName: Belt of Giant Strength (SRD p211)
+- Alias: Belt of Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, rareté variable (harmonisation requise)
@@ -17209,7 +17209,7 @@ Il existe six modèles de ceinturon qui correspondent aux six espèces de géant
### Ceinturon de force de géant des collines
-- AltName: Belt of Hill Giant Strength (SRD p211)
+- Alias: Belt of Hill Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, rare (harmonisation requise)
@@ -17221,7 +17221,7 @@ Tant que vous portez ce ceinturon, votre valeur de Force se modifie à 21 (en fo
### Ceinturon de force de géant du givre/des pierres
-- AltName: Belt of Frost / Stone Giant Strength (SRD p211)
+- Alias: Belt of Frost / Stone Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, très rare (harmonisation requise)
@@ -17235,7 +17235,7 @@ Le ceinturon de force de géant des pierres et le ceinturon de force de géant d
### Ceinturon de force de géant du feu
-- AltName: Belt of Fire Giant Strength (SRD p211)
+- Alias: Belt of Fire Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, très rare (harmonisation requise)
@@ -17247,7 +17247,7 @@ Tant que vous portez ce ceinturon, votre valeur de Force se modifie à 25 (en fo
### Ceinturon de force de géant des nuages
-- AltName: Belt of Cloud Giant Strength (SRD p211)
+- Alias: Belt of Cloud Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, légendaire (harmonisation requise)
@@ -17259,7 +17259,7 @@ Tant que vous portez ce ceinturon, votre valeur de Force se modifie à 27 (en fo
### Ceinturon de force de géant des tempêtes
-- AltName: Belt of Storm Giant Strength (SRD p211)
+- Alias: Belt of Storm Giant Strength (SRD p211)
- Source: (CDC p158)
- Objet merveilleux, légendaire (harmonisation requise)
@@ -17271,7 +17271,7 @@ Tant que vous portez ce ceinturon, votre valeur de Force se modifie à 29 (en fo
### Ceinturon des nains
-- AltName: Belt of Dwarvenkind (SRD p211)
+- Alias: Belt of Dwarvenkind (SRD p211)
- Source: (CDC p159)
- Objet merveilleux, rare (harmonisation requise)
@@ -17297,7 +17297,7 @@ Vous parlez, lisez et écrivez le nain.
### Chapeau de déguisement
-- AltName: Hat of Disguise (SRD p225)
+- Alias: Hat of Disguise (SRD p225)
- Source: (CDC p159)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -17309,7 +17309,7 @@ Tant que vous portez ce chapeau, vous pouvez lancer déguisement sur vous par so
### Chapelet
-- AltName: Necklace of Prayer Beads (SRD p231)
+- Alias: Necklace of Prayer Beads (SRD p231)
- Source: (CDC p159)
- Objet merveilleux, rare (harmonisation requise par un clerc, un druide ou un paladin)
@@ -17332,7 +17332,7 @@ Il existe six types de grains magiques. C'est au MJ de décider du type de chaqu
### Chaussons de l'araignée
-- AltName: Slippers of Spider Climbing (SRD p242)
+- Alias: Slippers of Spider Climbing (SRD p242)
- Source: (CDC p159)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -17344,7 +17344,7 @@ Tant que vous portez ces souliers légers aux pieds, vous pouvez vous déplacer
### Chemise de mailles elfique
-- AltName: Elven Chain (SRD p220)
+- Alias: Elven Chain (SRD p220)
- Source: (CDC p160)
- Armure (chemise de mailles), rare
@@ -17356,7 +17356,7 @@ Vous gagnez un bonus de +1 à la CA tant que vous portez cette armure. Vous ête
### Cierge d'invocation
-- AltName: Candle of Invocation (SRD p213)
+- Alias: Candle of Invocation (SRD p213)
- Source: (CDC p160)
- Objet merveilleux, très rare (harmonisation requise)
@@ -17386,7 +17386,7 @@ Sinon, vous pouvez lancer le sort portail avec le cierge quand vous l'allumez po
### Cimeterre de célérité
-- AltName: Scimitar of Speed (SRD p241)
+- Alias: Scimitar of Speed (SRD p241)
- Source: (CDC p160)
- Arme (cimeterre), très rare (harmonisation requise)
@@ -17398,7 +17398,7 @@ Vous bénéficiez d'un bonus de +2 aux jets d'attaque et de dégâts effectués
### Colle universelle
-- AltName: Sovereign Glue (SRD p242)
+- Alias: Sovereign Glue (SRD p242)
- Source: (CDC p160)
- Objet merveilleux, légendaire
@@ -17412,7 +17412,7 @@ Cette substance visqueuse et aussi blanche que le lait peut coller deux objets d
### Collier d'adaptation
-- AltName: Necklace of Adaptation (SRD p231)
+- Alias: Necklace of Adaptation (SRD p231)
- Source: (CDC p160)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -17424,7 +17424,7 @@ Tant que vous portez ce collier, vous pouvez respirer normalement quel que soit
### Collier de boules de feu
-- AltName: Necklace of Fireballs (SRD p231)
+- Alias: Necklace of Fireballs (SRD p231)
- Source: (CDC p160)
- Objet merveilleux, rare
@@ -17438,7 +17438,7 @@ Vous pouvez lancer plusieurs perles, ou même tout le collier, en une seule acti
### Cor de destruction
-- AltName: Horn of Blasting (SRD p226)
+- Alias: Horn of Blasting (SRD p226)
- Source: (CDC p160)
- Objet merveilleux, rare
@@ -17452,7 +17452,7 @@ Vous pouvez utiliser votre action pour prononcer le mot de commande du cor puis
### Cor du Valhalla
-- AltName: Horn of Valhalla (SRD p226)
+- Alias: Horn of Valhalla (SRD p226)
- Source: (CDC p161)
- Objet merveilleux, rare (argent ou cuivre), très rare (bronze) ou légendaire (fer)
@@ -17475,7 +17475,7 @@ Si vous soufflez dans le cor alors que vous ne remplissez pas les conditions req
### Corde d'enchevêtrement
-- AltName: Rope of Entanglement (SRD p241)
+- Alias: Rope of Entanglement (SRD p241)
- Source: (CDC p161)
- Objet merveilleux, rare
@@ -17491,7 +17491,7 @@ La corde possède une CA de 20 et 20 points de vie. Elle récupère 1 point de v
### Corde d'escalade
-- AltName: Rope of Climbing (SRD p241)
+- Alias: Rope of Climbing (SRD p241)
- Source: (CDC p161)
- Objet merveilleux, peu courant
@@ -17507,7 +17507,7 @@ La corde possède une CA de 20 et 20 points de vie. Elle récupère 1 point de v
### Cube de force
-- AltName: Cube of Force (SRD p215)
+- Alias: Cube of Force (SRD p215)
- Source: (CDC p161)
- Objet merveilleux, rare (harmonisation requise)
@@ -17544,7 +17544,7 @@ Le cube perd des charges quand la barrière est la cible de certains sorts ou en
### Cuir cloutée glamour
-- AltName: Glamoured Studded Leather (SRD p224)
+- Alias: Glamoured Studded Leather (SRD p224)
- Source: (CDC p162)
- Armure (cuir cloutée), rare
@@ -17556,7 +17556,7 @@ Tant que vous portez cette armure, vous gagnez un bonus de +1 à la CA. Vous pou
### Dague venimeuse
-- AltName: Dagger of Venom (SRD p215)
+- Alias: Dagger of Venom (SRD p215)
- Source: (CDC p162)
- Arme (dague), rare
@@ -17570,7 +17570,7 @@ Vous pouvez dépenser une action pour qu'un épais poison noir enduise la lame.
### Diadème de destruction
-- AltName: Circlet of Blasting (SRD p214)
+- Alias: Circlet of Blasting (SRD p214)
- Source: (CDC p162)
- Objet merveilleux, peu courant
@@ -17582,7 +17582,7 @@ Tant que vous portez ce diadème, vous pouvez utiliser votre action pour lancer
### Encensoir de contrôle des élémentaires de l'air
-- AltName: Censer of Controlling Air Elementals (SRD p213)
+- Alias: Censer of Controlling Air Elementals (SRD p213)
- Source: (CDC p162)
- Objet merveilleux, rare
@@ -17596,7 +17596,7 @@ L'encensoir ressemble à un calice de 15 centimètres de large pour 30 centimèt
### Épée ardente
-- AltName: Flame Tongue (SRD p223)
+- Alias: Flame Tongue (SRD p223)
- Source: (CDC p162)
- Arme (épée), rare (harmonisation requise)
@@ -17608,7 +17608,7 @@ Vous pouvez utiliser une action bonus pour prononcer le mot de commande de cette
### Épée dansante
-- AltName: Dancing Sword (SRD p215)
+- Alias: Dancing Sword (SRD p215)
- Source: (CDC p163)
- Arme (épée), très rare (harmonisation requise)
@@ -17624,7 +17624,7 @@ Une fois que l'épée a attaqué pour la quatrième fois, elle vole sur un maxim
### Épée mordante
-- AltName: Sword of Wounding (SRD p246)
+- Alias: Sword of Wounding (SRD p246)
- Source: (CDC p163)
- Arme (n'importe quel type d'épée), rare (harmonisation requise)
@@ -17638,7 +17638,7 @@ Une fois par tour, lorsque vous réussissez une attaque contre une créature ave
### Épée radieuse
-- AltName: Sun Blade (SRD p246)
+- Alias: Sun Blade (SRD p246)
- Source: (CDC p163)
- Arme (épée longue), rare (harmonisation requise)
@@ -17654,7 +17654,7 @@ La lame lumineuse de l'épée diffuse une lumière vive sur un rayon de 4,50 mè
### Épée tranchante
-- AltName: Sword of Sharpness (SRD p246)
+- Alias: Sword of Sharpness (SRD p246)
- Source: (CDC p163)
- Arme (n'importe quelle épée qui inflige des dégâts tranchants), très rare (harmonisation requise)
@@ -17670,7 +17670,7 @@ En outre, vous pouvez prononcer le mot de commande de l'épée pour que la lame
### Épée voleuse de vie
-- AltName: Sword of Life Stealing (SRD p246)
+- Alias: Sword of Life Stealing (SRD p246)
- Source: (CDC p163)
- Arme (n'importe quel type d'épée), rare (harmonisation requise)
@@ -17682,7 +17682,7 @@ Quand vous attaquez une créature avec cette arme magique et obtenez un 20 sur l
### Épée vorpale
-- AltName: Vorpal Sword (SRD p248)
+- Alias: Vorpal Sword (SRD p248)
- Source: (CDC p163)
- Arme (n'importe quel type d'épée qui inflige des dégâts tranchants), légendaire (harmonisation requise)
@@ -17696,7 +17696,7 @@ Lorsque vous attaquez avec cette arme une créature dotée d'une tête au moins
### Éventail enchanté
-- AltName: Wind Fan (SRD p250)
+- Alias: Wind Fan (SRD p250)
- Source: (CDC p164)
- Objet merveilleux, peu courant
@@ -17708,7 +17708,7 @@ Avec cet éventail en main, vous pouvez utiliser une action pour lancer le sort
### Fer gelé
-- AltName: Frost Brand (SRD p223)
+- Alias: Frost Brand (SRD p223)
- Source: (CDC p164)
- Arme (épée), très rare (harmonisation requise)
@@ -17724,7 +17724,7 @@ Quand vous dégainez cette épée, vous pouvez éteindre toutes les flammes non-
### Fers de rapidité
-- AltName: Horseshoes of Speed (SRD p226)
+- Alias: Horseshoes of Speed (SRD p226)
- Source: (CDC p164)
- Objet merveilleux, rare
@@ -17736,7 +17736,7 @@ Ces fers à cheval se trouvent par quatre. Quand un cheval ou une créature simi
### Fers du zéphyr
-- AltName: Horseshoes of a Zephyr (SRD p226)
+- Alias: Horseshoes of a Zephyr (SRD p226)
- Source: (CDC p164)
- Objet merveilleux, très rare
@@ -17748,7 +17748,7 @@ Ces fers à cheval se trouvent par quatre. Quand un cheval ou une créature simi
### Figurine merveilleuse
-- AltName: Figurine of Wondrous Power (SRD p221)
+- Alias: Figurine of Wondrous Power (SRD p221)
- Source: (CDC p164)
- Objet merveilleux, rareté selon la figurine
@@ -17788,7 +17788,7 @@ Si vous êtes d'alignement bon, la figurine a 10 % de chance d'ignorer vos ordre
### Flasque de fer
-- AltName: Iron Flask (SRD p228)
+- Alias: Iron Flask (SRD p228)
- Source: (CDC p165)
- Objet merveilleux, légendaire
@@ -17826,7 +17826,7 @@ Le sort identification révèle si la flasque contient une créature ou pas, mai
### Flèche tueuse
-- AltName: Arrow of Slaying (SRD p209)
+- Alias: Arrow of Slaying (SRD p209)
- Source: (CDC p166)
- Arme (flèche), très rare
@@ -17842,7 +17842,7 @@ Il existe d'autres munitions magiques similaires, comme des carreaux tueurs pour
### Flûte des égouts
-- AltName: Pipes of the Sewers (SRD p232)
+- Alias: Pipes of the Sewers (SRD p232)
- Source: (CDC p166)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -17858,7 +17858,7 @@ Quand une nuée de rats qui ne se trouve pas sous le contrôle d'une tierce pers
### Flûte terrifiante
-- AltName: Pipes of Haunting (SRD p232)
+- Alias: Pipes of Haunting (SRD p232)
- Source: (CDC p166)
- Objet merveilleux, peu courant
@@ -17870,7 +17870,7 @@ Vous devez maîtriser les instruments à vent si vous voulez jouer de cette flû
### Forteresse instantanée
-- AltName: Instant Fortress (SRD p226)
+- Alias: Instant Fortress (SRD p226)
- Source: (CDC p167)
- Objet merveilleux, rare
@@ -17888,7 +17888,7 @@ La tour est faite en adamantium et sa magie empêche qu'une force extérieure la
### Gantelets de puissance d'ogre
-- AltName: Gauntlets of Ogre Power (SRD p223)
+- Alias: Gauntlets of Ogre Power (SRD p223)
- Source: (CDC p167)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -17900,7 +17900,7 @@ Tant que vous portez ces gants, votre valeur de Force est de 19. Si elle est dé
### Gants de nage et d'escalade
-- AltName: Gloves of Swimming and Climbing (SRD p224)
+- Alias: Gloves of Swimming and Climbing (SRD p224)
- Source: (CDC p167)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -17912,7 +17912,7 @@ Tant que vous portez ces gants, la natation et l'escalade ne vous demandent pas
### Gants piégeurs de projectiles
-- AltName: Gloves of Missile Snaring (SRD p224)
+- Alias: Gloves of Missile Snaring (SRD p224)
- Source: (CDC p167)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -17924,7 +17924,7 @@ Quand vous enfliez ces gants, ils semblent presque fusionner avec votre peau. Qu
### Gemme de vision
-- AltName: Gem of Seeing (SRD p223)
+- Alias: Gem of Seeing (SRD p223)
- Source: (CDC p167)
- Objet merveilleux, rare (harmonisation requise)
@@ -17938,7 +17938,7 @@ Chaque matin à l'aube, la gemme récupère 1d3 charges dépensées.
### Gemme élémentaire
-- AltName: Elemental Gem (SRD p220)
+- Alias: Elemental Gem (SRD p220)
- Source: (CDC p168)
- Objet merveilleux, peu courant
@@ -17957,7 +17957,7 @@ Cette gemme contient une particule d'énergie élémentaire. Quand vous brisez l
### Gemme lumineuse
-- AltName: Gem of Brightness (SRD p223)
+- Alias: Gem of Brightness (SRD p223)
- Source: (CDC p168)
- Objet merveilleux, rare
@@ -17977,7 +17977,7 @@ Quand la gemme a épuisé toutes ses charges, elle devient un joyau dépourvu de
### Hache du berserker
-- AltName: Berserker Axe (SRD p211)
+- Alias: Berserker Axe (SRD p211)
- Source: (CDC p168)
- Arme (hache), rare (harmonisation requise)
@@ -17993,7 +17993,7 @@ Quand une créature hostile vous blesse alors que vous êtes en possession de ce
### Harnois éthéré
-- AltName: Plate Armor of Etherealness (SRD p233)
+- Alias: Plate Armor of Etherealness (SRD p233)
- Source: (CDC p168)
- Armure (harnois), légendaire (harmonisation requise)
@@ -18005,7 +18005,7 @@ Tant que vous portez cette armure, vous pouvez prononcer son mot de commande par
### Harnois nain
-- AltName: Dwarven Plate (SRD p220)
+- Alias: Dwarven Plate (SRD p220)
- Source: (CDC p168)
- Armure (harnois), très rare
@@ -18017,7 +18017,7 @@ Tant que vous portez cette armure, vous gagnez un bonus de +2 à la CA. De plus,
### Havresac magique
-- AltName: Handy Haversack (SRD p224)
+- Alias: Handy Haversack (SRD p224)
- Source: (CDC p168)
- Objet merveilleux, rare
@@ -18035,7 +18035,7 @@ Si l'on place le havresac dans l'espace extradimensionnel né d'un sac sans fond
### Heaume de compréhension des langages
-- AltName: Helm of Comprehending Languages (SRD p225)
+- Alias: Helm of Comprehending Languages (SRD p225)
- Source: (CDC p169)
- Objet merveilleux, peu courant
@@ -18047,7 +18047,7 @@ Tant que vous portez ce heaume, vous pouvez utiliser une action pour lancer comp
### Heaume de télépathie
-- AltName: Helm of Telepathy (SRD p225)
+- Alias: Helm of Telepathy (SRD p225)
- Source: (CDC p169)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -18061,7 +18061,7 @@ Tant que vous vous concentrez sur une créature avec détection des pensées, vo
### Heaume de téléportation
-- AltName: Helm of Teleportation (SRD p225)
+- Alias: Helm of Teleportation (SRD p225)
- Source: (CDC p169)
- Objet merveilleux, rare (harmonisation requise)
@@ -18073,7 +18073,7 @@ Ce heaume possède 3 charges. Tant que vous le portez, vous pouvez utiliser une
### Heaume scintillant
-- AltName: Helm of Brilliance (SRD p225)
+- Alias: Helm of Brilliance (SRD p225)
- Source: (CDC p169)
- Objet merveilleux, très rare (harmonisation requise)
@@ -18097,7 +18097,7 @@ Lancez 1d20 si vous portez le heaume et subissez des dégâts de feu à cause d'
### Huile d'affûtage
-- AltName: Oil of Sharpness (SRD p232)
+- Alias: Oil of Sharpness (SRD p232)
- Source: (CDC p170)
- Potion, très rare
@@ -18109,7 +18109,7 @@ Cette huile claire et gélatineuse est constellée de minuscules paillettes d'ar
### Huile éthérée
-- AltName: Oil of Etherealness (SRD p231)
+- Alias: Oil of Etherealness (SRD p231)
- Source: (CDC p170)
- Potion, rare
@@ -18121,7 +18121,7 @@ L'huile d'un gris trouble contenue dans ce récipient forme des perles sur sa pa
### Huile glissante
-- AltName: Oil of Slipperiness (SRD p232)
+- Alias: Oil of Slipperiness (SRD p232)
- Source: (CDC p170)
- Potion, peu courante
@@ -18135,7 +18135,7 @@ Sinon, vous pouvez verser l'huile à terre par une action. Elle recouvre une zon
### Javeline de foudre
-- AltName: Javelin of Lightning (SRD p228)
+- Alias: Javelin of Lightning (SRD p228)
- Source: (CDC p170)
- Arme (javeline), peu courante
@@ -18149,7 +18149,7 @@ Il faut attendre l'aube suivante pour se servir de nouveau de cette propriété
### Lame porte-bonheur
-- AltName: Luck Blade (SRD p229)
+- Alias: Luck Blade (SRD p229)
- Source: (CDC p170)
- Arme (épée), légendaire (harmonisation requise)
@@ -18165,7 +18165,7 @@ Vous gagnez un bonus de +1 aux jets d'attaque et de dégâts avec cette arme mag
### Lanterne de révélation
-- AltName: Lantern of Revealing (SRD p228)
+- Alias: Lantern of Revealing (SRD p228)
- Source: (CDC p170)
- Objet merveilleux, peu courant
@@ -18177,7 +18177,7 @@ Quand cette lanterne à capote est allumée, elle brûle pendant 6 heures en con
### Lentilles de netteté
-- AltName: Eyes of Minute Seeing (SRD p221)
+- Alias: Eyes of Minute Seeing (SRD p221)
- Source: (CDC p170)
- Objet merveilleux, peu courant
@@ -18189,7 +18189,7 @@ Ces lentilles de cristal se portent sur les yeux. Tant que vous les portez, votr
### Liens de fer
-- AltName: Iron Bands of Binding (SRD p228)
+- Alias: Iron Bands of Binding (SRD p228)
- Source: (CDC p171)
- Objet merveilleux, rare
@@ -18207,7 +18207,7 @@ Une fois les fers utilisés, il faut attendre l'aube prochaine pour s'en servir
### Lunettes nocturnes
-- AltName: Goggles of Night (SRD p224)
+- Alias: Goggles of Night (SRD p224)
- Source: (CDC p171)
- Objet merveilleux, peu courant
@@ -18219,7 +18219,7 @@ Quand vous portez ces verres sombres, vous bénéficiez de la vision dans le noi
### Manteau de résistance aux sorts
-- AltName: Mantle of Spell Resistance (SRD p229)
+- Alias: Mantle of Spell Resistance (SRD p229)
- Source: (CDC p171)
- Objet merveilleux, rare (harmonisation requise)
@@ -18231,7 +18231,7 @@ Tant que vous portez ce manteau, vous obtenez l'avantage lors des jets de sauveg
### Manuel de bonne santé
-- AltName: Manual of Bodily Health (SRD p229)
+- Alias: Manual of Bodily Health (SRD p229)
- Source: (CDC p171)
- Objet merveilleux, très rare
@@ -18243,7 +18243,7 @@ Ce livre contient des conseils pour rester en bonne santé et s'alimenter sainem
### Manuel d'exercices physiques
-- AltName: Manual of Gainful Exercise (SRD p229)
+- Alias: Manual of Gainful Exercise (SRD p229)
- Source: (CDC p171)
- Objet merveilleux, très rare
@@ -18255,7 +18255,7 @@ Ce livre propose des exercices d'entretien musculaire, et ses mots sont chargés
### Manuel des golems
-- AltName: Manual of Golems (SRD p229)
+- Alias: Manual of Golems (SRD p229)
- Source: (CDC p171)
- Objet merveilleux, très rare
@@ -18278,7 +18278,7 @@ Dès que vous avez achevé la construction du golem, le manuel se consume dans d
### Manuel de vivacité
-- AltName: Manual of Quickness of Action (SRD p230)
+- Alias: Manual of Quickness of Action (SRD p230)
- Source: (CDC p172)
- Objet merveilleux, très rare
@@ -18290,7 +18290,7 @@ Ce livre propose des exercices d'équilibre et de coordination, et ses mots sont
### Marteau de lancer nain
-- AltName: Dwarven Thrower (SRD p220)
+- Alias: Dwarven Thrower (SRD p220)
- Source: (CDC p172)
- Arme (marteau de guerre), très rare (harmonisation requise avec un nain)
@@ -18302,7 +18302,7 @@ Vous gagnez un bonus de +3 aux jets d'attaque et de dégâts avec cette arme mag
### Marteau du tonnerre
-- AltName: Hammer of Thunderbolts (SRD p224)
+- Alias: Hammer of Thunderbolts (SRD p224)
- Source: (CDC p172)
- Arme (maillet d'armes), légendaire
@@ -18318,7 +18318,7 @@ Le marteau dispose de 5 charges. Tant que vous êtes harmonisé avec lui, vous p
### Masse d'anéantissement
-- AltName: Mace of Disruption (SRD p229)
+- Alias: Mace of Disruption (SRD p229)
- Source: (CDC p172)
- Arme (masse), rare (harmonisation requise)
@@ -18332,7 +18332,7 @@ Tant que vous tenez cette arme en main, elle émet une vive lumière dans un ray
### Masse destructrice
-- AltName: Mace of Smiting (SRD p229)
+- Alias: Mace of Smiting (SRD p229)
- Source: (CDC p173)
- Arme (masse), rare
@@ -18346,7 +18346,7 @@ Quand vous obtenez un 20 sur un jet d'attaque effectué avec cette arme, la cibl
### Masse terrifiante
-- AltName: Mace of Terror (SRD p229)
+- Alias: Mace of Terror (SRD p229)
- Source: (CDC p173)
- Arme (masse), rare (harmonisation requise)
@@ -18360,7 +18360,7 @@ Chaque matin à l'aube, la masse récupère 1d3 charges dépensées.
### Médaillon des pensées
-- AltName: Medallion of Thoughts (SRD p230)
+- Alias: Medallion of Thoughts (SRD p230)
- Source: (CDC p173)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -18372,7 +18372,7 @@ Le médaillon a trois charges. Tant que vous le portez, vous pouvez utiliser une
### Menottes dimensionnelles
-- AltName: Dimensional Shackles (SRD p219)
+- Alias: Dimensional Shackles (SRD p219)
- Source: (CDC p173)
- Objet merveilleux, rare
@@ -18386,7 +18386,7 @@ Vous-même et toute créature que vous désignez au moment de fermer les menotte
### Miroir d'emprisonnement
-- AltName: Mirror of Life Trapping (SRD p230)
+- Alias: Mirror of Life Trapping (SRD p230)
- Source: (CDC p173)
- Objet merveilleux, très rare
@@ -18410,7 +18410,7 @@ De même, vous pouvez prononcer un deuxième mot de commande et libérer une cr
### Munitions +1, +2 ou +3
-- AltName: Ammunition, +1, +2, or +3 (SRD p207)
+- Alias: Ammunition, +1, +2, or +3 (SRD p207)
- Source: (CDC p174)
- Arme (n'importe quelle munition), peu courante (+1), rare (+2) ou très rare (+3)
@@ -18422,7 +18422,7 @@ Vous bénéficiez d'un bonus aux jets d'attaque et de dégâts effectués avec c
### Oeil de lynx
-- AltName: Eyes of the Eagle (SRD p221)
+- Alias: Eyes of the Eagle (SRD p221)
- Source: (CDC p174)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -18434,7 +18434,7 @@ Ces lentilles de cristal se portent sur les yeux. Tant que vous les portez, vous
### Parchemin magique
-- AltName: Spell Scroll (SRD p242)
+- Alias: Spell Scroll (SRD p242)
- Source: (CDC p174)
- Parchemin, rareté variable
@@ -18469,7 +18469,7 @@ Un sort de magicien inscrit sur un parchemin magique peut être recopié, tout c
### Perle de force
-- AltName: Bead of Force (SRD p211)
+- Alias: Bead of Force (SRD p211)
- Source: (CDC p174)
- Objet merveilleux, rare
@@ -18485,7 +18485,7 @@ Une créature enfermée peut utiliser son action pour peser contre la paroi de l
### Perle de puissance
-- AltName: Pearl of Power (SRD p232)
+- Alias: Pearl of Power (SRD p232)
- Source: (CDC p174)
- Objet merveilleux, peu courant (harmonisation requise par un incantateur)
@@ -18497,7 +18497,7 @@ Tant que vous portez cette perle sur vous, vous pouvez utiliser une action pour
### Philtre d'amour
-- AltName: Philter of Love (SRD p232)
+- Alias: Philter of Love (SRD p232)
- Source: (CDC p174)
- Potion, peu courante
@@ -18509,7 +18509,7 @@ Dans les 10 minutes qui suivent l'absorption de cette potion, vous êtes charmé
### Pigments merveilleux
-- AltName: Marvelous Pigments (SRD p230)
+- Alias: Marvelous Pigments (SRD p230)
- Source: (CDC p175)
- Objet merveilleux, très rare
@@ -18529,7 +18529,7 @@ Si vous peigniez une forme d'énergie, comme du feu ou de la foudre, elle appara
### Pierre de contrôle des élémentaires de la terre
-- AltName: Stone of Controlling Earth Elementals (SRD p246)
+- Alias: Stone of Controlling Earth Elementals (SRD p246)
- Source: (CDC p175)
- Objet merveilleux, rare
@@ -18541,7 +18541,7 @@ Si la pierre est en contact avec le sol, vous pouvez utiliser une action pour pr
### Pierre Ioun
-- AltName: Ioun Stone (SRD p227)
+- Alias: Ioun Stone (SRD p227)
- Source: (CDC p175)
- Objet merveilleux, rareté variable (harmonisation requise)
@@ -18593,7 +18593,7 @@ Tant que cette pierre tourne autour de votre tête, vous pouvez lancer n'importe
### Pierre porte-bonheur
-- AltName: Stone of Good Luck (Luckstone) (SRD p246)
+- Alias: Stone of Good Luck (Luckstone) (SRD p246)
- Source: (CDC p176)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -18605,7 +18605,7 @@ Tant que vous portez sur vous cette agate lustrée, vous bénéficiez d'un bonus
### Plume magique
-- AltName: Feather Token (SRD p221)
+- Alias: Feather Token (SRD p221)
- Source: (CDC p176)
- Objet merveilleux, rare
@@ -18640,7 +18640,7 @@ Ce petit bibelot ressemble à une plume. Il existe plusieurs types de plume, cha
### Portail cubique
-- AltName: Cubic Gate (SRD p215)
+- Alias: Cubic Gate (SRD p215)
- Source: (CDC p177)
- Objet merveilleux, légendaire
@@ -18656,7 +18656,7 @@ Le cube a trois charges et en perd une à chaque utilisation. Chaque matin à l'
### Potion d'agrandissement
-- AltName: Potion of Growth (SRD p234)
+- Alias: Potion of Growth (SRD p234)
- Source: (CDC p177)
- Potion, peu courante
@@ -18668,7 +18668,7 @@ Quand vous buvez cette potion, vous êtes affecté par la version « agrandir »
### Potion d'amitié avec les animaux
-- AltName: Potion of Animal Friendship (SRD p233)
+- Alias: Potion of Animal Friendship (SRD p233)
- Source: (CDC p177)
- Potion, peu courante
@@ -18680,7 +18680,7 @@ Quand vous buvez cette potion, vous pouvez lancer le sort amitié avec les anima
### Potion de clairvoyance
-- AltName: Potion of Clairvoyance (SRD p233)
+- Alias: Potion of Clairvoyance (SRD p233)
- Source: (CDC p177)
- Potion, rare
@@ -18692,7 +18692,7 @@ Quand vous buvez cette potion, vous bénéficiez des effets du sort clairvoyance
### Potion d'escalade
-- AltName: Potion of Climbing (SRD p233)
+- Alias: Potion of Climbing (SRD p233)
- Source: (CDC p177)
- Potion, courante
@@ -18704,7 +18704,7 @@ Quand vous buvez cette potion, vous gagnez une vitesse d'escalade égale à votr
### Potion de force de géant
-- AltName: Potion of Giant Strength (SRD p234)
+- Alias: Potion of Giant Strength (SRD p234)
- Source: (CDC p177)
- Potion, rareté variable
@@ -18726,7 +18726,7 @@ Une rognure d'ongle d'un géant du type approprié flotte dans cette potion tran
### Potion de forme gazeuse
-- AltName: Potion of Gaseous Form (SRD p234)
+- Alias: Potion of Gaseous Form (SRD p234)
- Source: (CDC p178)
- Potion, rare
@@ -18738,7 +18738,7 @@ Quand vous buvez cette potion, vous bénéficiez des effets du sort forme gazeus
### Potion de lecture des pensées
-- AltName: Potion of Mind Reading (SRD p234)
+- Alias: Potion of Mind Reading (SRD p234)
- Source: (CDC p178)
- Potion, rare
@@ -18750,7 +18750,7 @@ Vous bénéficiez des effets d'un sort de détection des pensées (DD des jets d
### Potion de poison
-- AltName: Potion of Poison (SRD p234)
+- Alias: Potion of Poison (SRD p234)
- Source: (CDC p178)
- Potion, peu courante
@@ -18764,7 +18764,7 @@ Vous subissez 3d6 dégâts de poison et devez réussir un jet de sauvegarde de C
### Potion de résistance
-- AltName: Potion of Resistance (SRD p235)
+- Alias: Potion of Resistance (SRD p235)
- Source: (CDC p178)
- Potion, peu courante
@@ -18789,7 +18789,7 @@ Vous bénéficiez d'une résistance à un type spécifique de dégâts pendant 1
### Potion de respiration aquatique
-- AltName: Potion of Water Breathing (SRD p235)
+- Alias: Potion of Water Breathing (SRD p235)
- Source: (CDC p178)
- Potion, peu courante
@@ -18801,7 +18801,7 @@ Vous pouvez respirer sous l'eau pendant 1 heure après avoir bu cette potion. Le
### Potion de rétrécissement
-- AltName: Potion of Diminution (SRD p233)
+- Alias: Potion of Diminution (SRD p233)
- Source: (CDC p178)
- Potion, rare
@@ -18813,7 +18813,7 @@ Quand vous buvez cette potion, vous êtes affecté par la version « rétrécir
### Potion de soins
-- AltName: Potion of Healing (SRD p234)
+- Alias: Potion of Healing (SRD p234)
- Source: (CDC p178)
- Potion, rareté variable
@@ -18834,7 +18834,7 @@ Potions de soins
### Potion de vitesse
-- AltName: Potion of Speed (SRD p235)
+- Alias: Potion of Speed (SRD p235)
- Source: (CDC p178)
- Potion, très rare
@@ -18846,7 +18846,7 @@ Vous bénéficiez des effets d'un sort de hâte pendant 1 minute (aucune concent
### Potion de vol
-- AltName: Potion of Flying (SRD p234)
+- Alias: Potion of Flying (SRD p234)
- Source: (CDC p178)
- Potion, très rare
@@ -18858,7 +18858,7 @@ Quand vous buvez cette potion, vous gagnez une vitesse de vol égale à votre vi
### Potion d'héroïsme
-- AltName: Potion of Heroism (SRD p234)
+- Alias: Potion of Heroism (SRD p234)
- Source: (CDC p179)
- Potion, rare
@@ -18870,7 +18870,7 @@ Pendant 1 heure après l'avoir bue, vous obtenez 10 points de vie temporaires. P
### Potion d'invisibilité
-- AltName: Potion of Invisibility (SRD p234)
+- Alias: Potion of Invisibility (SRD p234)
- Source: (CDC p179)
- Potion, très rare
@@ -18882,7 +18882,7 @@ Le contenant de cette potion paraît vide mais il semble, au contact, contenir u
### Poussière à éternuer
-- AltName: Dust of Sneezing and Choking (SRD p219)
+- Alias: Dust of Sneezing and Choking (SRD p219)
- Source: (CDC p179)
- Objet merveilleux, peu courant
@@ -18896,7 +18896,7 @@ Quand vous utilisez une action pour jeter une poignée de poussière dans les ai
### Poussière d'assèchement
-- AltName: Dust of Dryness (SRD p219)
+- Alias: Dust of Dryness (SRD p219)
- Source: (CDC p179)
- Objet merveilleux, peu courant
@@ -18912,7 +18912,7 @@ Un élémentaire majoritairement composé d'eau exposé à la poussière doit fa
### Poussière de disparition
-- AltName: Dust of Disappearance (SRD p219)
+- Alias: Dust of Disappearance (SRD p219)
- Source: (CDC p179)
- Objet merveilleux, peu courant
@@ -18924,7 +18924,7 @@ Cette poudre se trouve dans un petit paquet et ressemble à du sable fin. Il y e
### Protectrice
-- AltName: Defender (SRD p218)
+- Alias: Defender (SRD p218)
- Source: (CDC p179)
- Arme (épée), légendaire (harmonisation requise)
@@ -18938,7 +18938,7 @@ Vous gagnez un bonus de +3 aux jets d'attaque et de dégâts effectués avec cet
### Puits des mondes
-- AltName: Well of Many Worlds (SRD p250)
+- Alias: Well of Many Worlds (SRD p250)
- Source: (CDC p180)
- Objet merveilleux, légendaire
@@ -18952,7 +18952,7 @@ Vous pouvez utiliser une action pour déplier et positionner le puits des mondes
### Puits portatif
-- AltName: Portable Hole (SRD p233)
+- Alias: Portable Hole (SRD p233)
- Source: (CDC p180)
- Objet merveilleux, rare
@@ -18972,7 +18972,7 @@ Si l'on place un puits portatif dans l'espace extradimensionnel né d'un havresa
### Regard charmeur
-- AltName: Eyes of Charming (SRD p220)
+- Alias: Eyes of Charming (SRD p220)
- Source: (CDC p180)
- Objet merveilleux, peu courant (harmonisation requise)
@@ -18984,7 +18984,7 @@ Ces lentilles de cristal se portent sur les yeux et possèdent trois charges. Ta
### Robe aux étoiles
-- AltName: Robe of Stars (SRD p239)
+- Alias: Robe of Stars (SRD p239)
- Source: (CDC p180)
- Objet merveilleux, très rare (harmonisation requise)
@@ -19000,7 +19000,7 @@ Tant que vous portez la robe, vous pouvez effectuer une action pour entrer dans
### Robe aux yeux multiples
-- AltName: Robe of Eyes (SRD p238)
+- Alias: Robe of Eyes (SRD p238)
- Source: (CDC p180)
- Objet merveilleux, rare (harmonisation requise)
@@ -19020,7 +19020,7 @@ Un sort de lumière lancé sur la robe ou un sort de lumière du jour lancé à
### Robe de couleurs étincelantes
-- AltName: Robe of Scintillating Colors (SRD p238)
+- Alias: Robe of Scintillating Colors (SRD p238)
- Source: (CDC p181)
- Objet merveilleux, très rare (harmonisation requise)
@@ -19032,7 +19032,7 @@ Cette robe contient 3 charges et récupère 1d3 charges dépensées chaque jour,
### Robe de l'archimage
-- AltName: Robe of the Archmagi (SRD p239)
+- Alias: Robe of the Archmagi (SRD p239)
- Source: (CDC p181)
- Objet merveilleux, légendaire (harmonisation avec un ensorceleur, un sorcier ou un magicien exigée)
@@ -19050,7 +19050,7 @@ Vous bénéficiez des avantages suivants lorsque vous portez la robe :
### Robe d'objets pratiques
-- AltName: Robe of Useful Items (SRD p239)
+- Alias: Robe of Useful Items (SRD p239)
- Source: (CDC p182)
- Objet merveilleux, peu courant
@@ -19089,7 +19089,7 @@ En outre, la robe se compose de 4d4 autres pièces. Le MJ choisit ces pièces ou
### Sac affamé
-- AltName: Bag of Devouring (SRD p210)
+- Alias: Bag of Devouring (SRD p210)
- Source: (CDC p182)
- Objet merveilleux, très rare
@@ -19107,7 +19107,7 @@ Si le sac est perforé ou déchiré, il est détruit et tout ce qu'il contenait
### Sac à malice
-- AltName: Bag of Tricks (SRD p210)
+- Alias: Bag of Tricks (SRD p210)
- Source: (CDC p182)
- Objet merveilleux, peu courant
@@ -19164,7 +19164,7 @@ Sac à malice brun
### Sac de haricots
-- AltName: Bag of Beans (SRD p209)
+- Alias: Bag of Beans (SRD p209)
- Source: (CDC p183)
- Objet merveilleux, rare
@@ -19195,7 +19195,7 @@ Si vous sortez un haricot du sac, le plantez dans la terre ou le sable et l'arro
### Sac sans fond
-- AltName: Bag of Holding (SRD p210)
+- Alias: Bag of Holding (SRD p210)
- Source: (CDC p184)
- Objet merveilleux, peu courant
@@ -19211,7 +19211,7 @@ Si l'on place un sac sans fond dans l'espace extradimensionnel né d'un havresac
### Scarabée de protection
-- AltName: Scarab of Protection (SRD p241)
+- Alias: Scarab of Protection (SRD p241)
- Source: (CDC p184)
- Objet merveilleux, légendaire (harmonisation requise)
@@ -19226,7 +19226,7 @@ Si vous tenez ce médaillon en forme de scarabée dans la main pendant 1 round,
### Sceptre d'absorption
-- AltName: Rod of Absorption (SRD p239)
+- Alias: Rod of Absorption (SRD p239)
- Source: (CDC p184)
- Sceptre, très rare (harmonisation requise)
@@ -19244,7 +19244,7 @@ Un sceptre qui vient d'être découvert contient 1d10 niveaux d'énergie magique
### Sceptre de puissance seigneuriale
-- AltName: Rod of Lordly Might (SRD p240)
+- Alias: Rod of Lordly Might (SRD p240)
- Source: (CDC p184)
- Sceptre, légendaire (harmonisation requise)
@@ -19276,7 +19276,7 @@ Si vous appuyez sur le **bouton 6**, le sceptre reprend ou conserve sa forme nor
### Sceptre de sécurité
-- AltName: Rod of Security (SRD p241)
+- Alias: Rod of Security (SRD p241)
- Source: (CDC p185)
- Sceptre, très rare
@@ -19292,7 +19292,7 @@ Une fois cette période écoulée ou si vous utilisez une action pour y mettre f
### Sceptre de suzeraineté
-- AltName: Rod of Rulership (SRD p240)
+- Alias: Rod of Rulership (SRD p240)
- Source: (CDC p185)
- Sceptre, rare (harmonisation requise)
@@ -19304,7 +19304,7 @@ Vous pouvez utiliser une action pour présenter le sceptre et exiger l'obéissan
### Sceptre de vigilance
-- AltName: Rod of Alertness (SRD p240)
+- Alias: Rod of Alertness (SRD p240)
- Source: (CDC p185)
- Sceptre, très rare (harmonisation requise)
@@ -19324,7 +19324,7 @@ La lumière diffusée par la tête du sceptre s'éteint et l'effet prend fin au
### Sceptre inamovible
-- AltName: Immovable Rod (SRD p226)
+- Alias: Immovable Rod (SRD p226)
- Source: (CDC p186)
- Objet merveilleux, peu courant
@@ -19336,7 +19336,7 @@ Ce sceptre plat en fer est équipé d'un bouton sur une extrémité. Vous pouvez
### Sphère d'annihilation
-- AltName: Sphere of Annihilation (SRD p242)
+- Alias: Sphere of Annihilation (SRD p242)
- Source: (CDC p186)
- Objet merveilleux, légendaire
@@ -19362,7 +19362,7 @@ Si la sphère entre en contact avec un portail planaire, tel que ceux créés pa
### Solvant universel
-- AltName: Universal Solvent (SRD p248)
+- Alias: Universal Solvent (SRD p248)
- Source: (CDC p186)
- Objet merveilleux, légendaire
@@ -19374,7 +19374,7 @@ Ce tube contient un liquide laiteux qui sent fort l'alcool. Vous pouvez utiliser
### Submersible du crabe
-- AltName: Apparatus of the Crab (SRD p208)
+- Alias: Apparatus of the Crab (SRD p208)
- Source: (CDC p186)
- Objet merveilleux, légendaire
@@ -19414,7 +19414,7 @@ Leviers du submersible du crabe
### Talisman de la sphère
-- AltName: Talisman of the Sphere (SRD p247)
+- Alias: Talisman of the Sphere (SRD p247)
- Source: (CDC p187)
- Objet merveilleux, légendaire (harmonisation requise)
@@ -19426,7 +19426,7 @@ Lorsque vous effectuez un test d'Intelligence (Arcanes) pour contrôler une sph
### Talisman du bien ultime
-- AltName: Talisman of Pure Good (SRD p247)
+- Alias: Talisman of Pure Good (SRD p247)
- Source: (CDC p187)
- Objet merveilleux, légendaire (harmonisation avec une créature d'alignement bon exigée)
@@ -19442,7 +19442,7 @@ Le talisman contient 7 charges. Si vous le portez sur vous ou le tenez en main,
### Talisman du mal ultime
-- AltName: Talisman of Ultimate Evil (SRD p247)
+- Alias: Talisman of Ultimate Evil (SRD p247)
- Source: (CDC p187)
- Objet merveilleux, légendaire (harmonisation avec une créature d'alignement mauvais exigée)
@@ -19458,7 +19458,7 @@ Le talisman contient 6 charges. Si vous le portez sur vous ou le tenez en main,
### Tapis volant
-- AltName: Carpet of Flying (SRD p213)
+- Alias: Carpet of Flying (SRD p213)
- Source: (CDC p188)
- Objet merveilleux, très rare
@@ -19481,7 +19481,7 @@ Un tapis peut porter deux fois le poids indiqué dans la table mais, s'il porte
### Traité d'autorité et d'influence
-- AltName: Tome of Leadership and Influence (SRD p247)
+- Alias: Tome of Leadership and Influence (SRD p247)
- Source: (CDC p188)
- Objet merveilleux, très rare
@@ -19493,7 +19493,7 @@ Ce livre contient des exercices d'interactions sociales basées sur la manipulat
### Traité de compréhension
-- AltName: Tome of Understanding (SRD p247)
+- Alias: Tome of Understanding (SRD p247)
- Source: (CDC p188)
- Objet merveilleux, très rare
@@ -19505,7 +19505,7 @@ Ce livre contient des exercices intuitifs de sagacité. Ses mots sont imprégné
### Traité de perspicacité
-- AltName: Tome of Clear Thought (SRD p247)
+- Alias: Tome of Clear Thought (SRD p247)
- Source: (CDC p188)
- Objet merveilleux, très rare
@@ -19517,7 +19517,7 @@ Ce livre contient des exercices de logique et de mémoire. Ses mots sont imprég
### Trident de domination aquatique
-- AltName: Trident of Fish Command (SRD p247)
+- Alias: Trident of Fish Command (SRD p247)
- Source: (CDC p188)
- Arme (trident), peu courante (harmonisation requise)
@@ -19529,7 +19529,7 @@ Ce trident est une arme magique. Il contient 3 charges. Tant que vous le portez
### Tueuse de dragons
-- AltName: Dragon Slayer (SRD p219)
+- Alias: Dragon Slayer (SRD p219)
- Source: (CDC p188)
- Arme (épée), rare
@@ -19543,7 +19543,7 @@ Quand vous touchez un dragon avec elle, il subit 3d6 dégâts supplémentaires d
### Tueuse de géant
-- AltName: Giant Slayer (SRD p224)
+- Alias: Giant Slayer (SRD p224)
- Source: (CDC p188)
- Arme (épée ou hache), rare
@@ -19557,7 +19557,7 @@ Quand vous touchez un géant avec elle, il subit 2d6 dégâts supplémentaires d
### Vengeresse sacrée
-- AltName: Holy Avenger (SRD p225)
+- Alias: Holy Avenger (SRD p225)
- Source: (CDC p188)
- Arme (épée), légendaire (harmonisation requise avec un paladin)
@@ -19571,7 +19571,7 @@ Tant que vous tenez l'arme en main, elle génère une aura de 3 mètres de rayon
### Voleuse de vies
-- AltName: Nine Lives Stealer (SRD p231)
+- Alias: Nine Lives Stealer (SRD p231)
- Source: (CDC p188)
- Arme (épée), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_liens_de_fer.md b/Data/HD/hd_magicitems_az_liens_de_fer.md
index 9fd2a734..c784a907 100644
--- a/Data/HD/hd_magicitems_az_liens_de_fer.md
+++ b/Data/HD/hd_magicitems_az_liens_de_fer.md
@@ -4,7 +4,7 @@
### Liens de fer
-- AltName: Iron Bands of Binding (SRD p228)
+- Alias: Iron Bands of Binding (SRD p228)
- Source: (CDC p171)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_lunettes_nocturnes.md b/Data/HD/hd_magicitems_az_lunettes_nocturnes.md
index b32ff866..19bf02f3 100644
--- a/Data/HD/hd_magicitems_az_lunettes_nocturnes.md
+++ b/Data/HD/hd_magicitems_az_lunettes_nocturnes.md
@@ -4,7 +4,7 @@
### Lunettes nocturnes
-- AltName: Goggles of Night (SRD p224)
+- Alias: Goggles of Night (SRD p224)
- Source: (CDC p171)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_manteau_de_resistance_aux_sorts.md b/Data/HD/hd_magicitems_az_manteau_de_resistance_aux_sorts.md
index 0dce9245..1af40d42 100644
--- a/Data/HD/hd_magicitems_az_manteau_de_resistance_aux_sorts.md
+++ b/Data/HD/hd_magicitems_az_manteau_de_resistance_aux_sorts.md
@@ -4,7 +4,7 @@
### Manteau de résistance aux sorts
-- AltName: Mantle of Spell Resistance (SRD p229)
+- Alias: Mantle of Spell Resistance (SRD p229)
- Source: (CDC p171)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_manuel_de_bonne_sante.md b/Data/HD/hd_magicitems_az_manuel_de_bonne_sante.md
index 8c839c79..faf58705 100644
--- a/Data/HD/hd_magicitems_az_manuel_de_bonne_sante.md
+++ b/Data/HD/hd_magicitems_az_manuel_de_bonne_sante.md
@@ -4,7 +4,7 @@
### Manuel de bonne santé
-- AltName: Manual of Bodily Health (SRD p229)
+- Alias: Manual of Bodily Health (SRD p229)
- Source: (CDC p171)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_manuel_de_vivacite.md b/Data/HD/hd_magicitems_az_manuel_de_vivacite.md
index ca0562b3..7ad2814d 100644
--- a/Data/HD/hd_magicitems_az_manuel_de_vivacite.md
+++ b/Data/HD/hd_magicitems_az_manuel_de_vivacite.md
@@ -4,7 +4,7 @@
### Manuel de vivacité
-- AltName: Manual of Quickness of Action (SRD p230)
+- Alias: Manual of Quickness of Action (SRD p230)
- Source: (CDC p172)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_manuel_des_golems.md b/Data/HD/hd_magicitems_az_manuel_des_golems.md
index ebec3043..2a4627bd 100644
--- a/Data/HD/hd_magicitems_az_manuel_des_golems.md
+++ b/Data/HD/hd_magicitems_az_manuel_des_golems.md
@@ -4,7 +4,7 @@
### Manuel des golems
-- AltName: Manual of Golems (SRD p229)
+- Alias: Manual of Golems (SRD p229)
- Source: (CDC p171)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_manuel_dexercices_physiques.md b/Data/HD/hd_magicitems_az_manuel_dexercices_physiques.md
index a9a002ab..5b6d38b5 100644
--- a/Data/HD/hd_magicitems_az_manuel_dexercices_physiques.md
+++ b/Data/HD/hd_magicitems_az_manuel_dexercices_physiques.md
@@ -4,7 +4,7 @@
### Manuel d'exercices physiques
-- AltName: Manual of Gainful Exercise (SRD p229)
+- Alias: Manual of Gainful Exercise (SRD p229)
- Source: (CDC p171)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_marteau_de_lancer_nain.md b/Data/HD/hd_magicitems_az_marteau_de_lancer_nain.md
index 9c6066c8..f1b68821 100644
--- a/Data/HD/hd_magicitems_az_marteau_de_lancer_nain.md
+++ b/Data/HD/hd_magicitems_az_marteau_de_lancer_nain.md
@@ -4,7 +4,7 @@
### Marteau de lancer nain
-- AltName: Dwarven Thrower (SRD p220)
+- Alias: Dwarven Thrower (SRD p220)
- Source: (CDC p172)
- Arme (marteau de guerre), très rare (harmonisation requise avec un nain)
diff --git a/Data/HD/hd_magicitems_az_marteau_du_tonnerre.md b/Data/HD/hd_magicitems_az_marteau_du_tonnerre.md
index de3ab95d..545aeaa3 100644
--- a/Data/HD/hd_magicitems_az_marteau_du_tonnerre.md
+++ b/Data/HD/hd_magicitems_az_marteau_du_tonnerre.md
@@ -4,7 +4,7 @@
### Marteau du tonnerre
-- AltName: Hammer of Thunderbolts (SRD p224)
+- Alias: Hammer of Thunderbolts (SRD p224)
- Source: (CDC p172)
- Arme (maillet d'armes), légendaire
diff --git a/Data/HD/hd_magicitems_az_masse_daneantissement.md b/Data/HD/hd_magicitems_az_masse_daneantissement.md
index a3cea8d8..fea06e60 100644
--- a/Data/HD/hd_magicitems_az_masse_daneantissement.md
+++ b/Data/HD/hd_magicitems_az_masse_daneantissement.md
@@ -4,7 +4,7 @@
### Masse d'anéantissement
-- AltName: Mace of Disruption (SRD p229)
+- Alias: Mace of Disruption (SRD p229)
- Source: (CDC p172)
- Arme (masse), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_masse_destructrice.md b/Data/HD/hd_magicitems_az_masse_destructrice.md
index 46513537..eb555930 100644
--- a/Data/HD/hd_magicitems_az_masse_destructrice.md
+++ b/Data/HD/hd_magicitems_az_masse_destructrice.md
@@ -4,7 +4,7 @@
### Masse destructrice
-- AltName: Mace of Smiting (SRD p229)
+- Alias: Mace of Smiting (SRD p229)
- Source: (CDC p173)
- Arme (masse), rare
diff --git a/Data/HD/hd_magicitems_az_masse_terrifiante.md b/Data/HD/hd_magicitems_az_masse_terrifiante.md
index 27f0e94e..0f9a4923 100644
--- a/Data/HD/hd_magicitems_az_masse_terrifiante.md
+++ b/Data/HD/hd_magicitems_az_masse_terrifiante.md
@@ -4,7 +4,7 @@
### Masse terrifiante
-- AltName: Mace of Terror (SRD p229)
+- Alias: Mace of Terror (SRD p229)
- Source: (CDC p173)
- Arme (masse), rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_medaillon_des_pensees.md b/Data/HD/hd_magicitems_az_medaillon_des_pensees.md
index 0c1f0421..e7418603 100644
--- a/Data/HD/hd_magicitems_az_medaillon_des_pensees.md
+++ b/Data/HD/hd_magicitems_az_medaillon_des_pensees.md
@@ -4,7 +4,7 @@
### Médaillon des pensées
-- AltName: Medallion of Thoughts (SRD p230)
+- Alias: Medallion of Thoughts (SRD p230)
- Source: (CDC p173)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_menottes_dimensionnelles.md b/Data/HD/hd_magicitems_az_menottes_dimensionnelles.md
index 87a678ce..437ce68a 100644
--- a/Data/HD/hd_magicitems_az_menottes_dimensionnelles.md
+++ b/Data/HD/hd_magicitems_az_menottes_dimensionnelles.md
@@ -4,7 +4,7 @@
### Menottes dimensionnelles
-- AltName: Dimensional Shackles (SRD p219)
+- Alias: Dimensional Shackles (SRD p219)
- Source: (CDC p173)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_miroir_demprisonnement.md b/Data/HD/hd_magicitems_az_miroir_demprisonnement.md
index c6721de6..e3aaaeef 100644
--- a/Data/HD/hd_magicitems_az_miroir_demprisonnement.md
+++ b/Data/HD/hd_magicitems_az_miroir_demprisonnement.md
@@ -4,7 +4,7 @@
### Miroir d'emprisonnement
-- AltName: Mirror of Life Trapping (SRD p230)
+- Alias: Mirror of Life Trapping (SRD p230)
- Source: (CDC p173)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_munitions_1_2_ou_3.md b/Data/HD/hd_magicitems_az_munitions_1_2_ou_3.md
index db954af1..2d141e13 100644
--- a/Data/HD/hd_magicitems_az_munitions_1_2_ou_3.md
+++ b/Data/HD/hd_magicitems_az_munitions_1_2_ou_3.md
@@ -4,7 +4,7 @@
### Munitions +1, +2 ou +3
-- AltName: Ammunition, +1, +2, or +3 (SRD p207)
+- Alias: Ammunition, +1, +2, or +3 (SRD p207)
- Source: (CDC p174)
- Arme (n'importe quelle munition), peu courante (+1), rare (+2) ou très rare (+3)
diff --git a/Data/HD/hd_magicitems_az_oeil_de_lynx.md b/Data/HD/hd_magicitems_az_oeil_de_lynx.md
index 90cd500e..10ecb1c7 100644
--- a/Data/HD/hd_magicitems_az_oeil_de_lynx.md
+++ b/Data/HD/hd_magicitems_az_oeil_de_lynx.md
@@ -4,7 +4,7 @@
### Oeil de lynx
-- AltName: Eyes of the Eagle (SRD p221)
+- Alias: Eyes of the Eagle (SRD p221)
- Source: (CDC p174)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_parchemin_magique.md b/Data/HD/hd_magicitems_az_parchemin_magique.md
index 501e97b9..cbe83da9 100644
--- a/Data/HD/hd_magicitems_az_parchemin_magique.md
+++ b/Data/HD/hd_magicitems_az_parchemin_magique.md
@@ -4,7 +4,7 @@
### Parchemin magique
-- AltName: Spell Scroll (SRD p242)
+- Alias: Spell Scroll (SRD p242)
- Source: (CDC p174)
- Parchemin, rareté variable
diff --git a/Data/HD/hd_magicitems_az_perle_de_force.md b/Data/HD/hd_magicitems_az_perle_de_force.md
index d3e88102..db04c6b4 100644
--- a/Data/HD/hd_magicitems_az_perle_de_force.md
+++ b/Data/HD/hd_magicitems_az_perle_de_force.md
@@ -4,7 +4,7 @@
### Perle de force
-- AltName: Bead of Force (SRD p211)
+- Alias: Bead of Force (SRD p211)
- Source: (CDC p174)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_perle_de_puissance.md b/Data/HD/hd_magicitems_az_perle_de_puissance.md
index 91df9710..97a732a4 100644
--- a/Data/HD/hd_magicitems_az_perle_de_puissance.md
+++ b/Data/HD/hd_magicitems_az_perle_de_puissance.md
@@ -4,7 +4,7 @@
### Perle de puissance
-- AltName: Pearl of Power (SRD p232)
+- Alias: Pearl of Power (SRD p232)
- Source: (CDC p174)
- Objet merveilleux, peu courant (harmonisation requise par un incantateur)
diff --git a/Data/HD/hd_magicitems_az_philtre_damour.md b/Data/HD/hd_magicitems_az_philtre_damour.md
index af8b5e4d..535440cb 100644
--- a/Data/HD/hd_magicitems_az_philtre_damour.md
+++ b/Data/HD/hd_magicitems_az_philtre_damour.md
@@ -4,7 +4,7 @@
### Philtre d'amour
-- AltName: Philter of Love (SRD p232)
+- Alias: Philter of Love (SRD p232)
- Source: (CDC p174)
- Potion, peu courante
diff --git a/Data/HD/hd_magicitems_az_pierre_de_controle_des_elementaires_de_la_terre.md b/Data/HD/hd_magicitems_az_pierre_de_controle_des_elementaires_de_la_terre.md
index 322679a6..aee86fc6 100644
--- a/Data/HD/hd_magicitems_az_pierre_de_controle_des_elementaires_de_la_terre.md
+++ b/Data/HD/hd_magicitems_az_pierre_de_controle_des_elementaires_de_la_terre.md
@@ -4,7 +4,7 @@
### Pierre de contrôle des élémentaires de la terre
-- AltName: Stone of Controlling Earth Elementals (SRD p246)
+- Alias: Stone of Controlling Earth Elementals (SRD p246)
- Source: (CDC p175)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_pierre_ioun.md b/Data/HD/hd_magicitems_az_pierre_ioun.md
index 4315e14d..60c16d75 100644
--- a/Data/HD/hd_magicitems_az_pierre_ioun.md
+++ b/Data/HD/hd_magicitems_az_pierre_ioun.md
@@ -4,7 +4,7 @@
### Pierre Ioun
-- AltName: Ioun Stone (SRD p227)
+- Alias: Ioun Stone (SRD p227)
- Source: (CDC p175)
- Objet merveilleux, rareté variable (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_pierre_porte_bonheur.md b/Data/HD/hd_magicitems_az_pierre_porte_bonheur.md
index 129e7767..1452e899 100644
--- a/Data/HD/hd_magicitems_az_pierre_porte_bonheur.md
+++ b/Data/HD/hd_magicitems_az_pierre_porte_bonheur.md
@@ -4,7 +4,7 @@
### Pierre porte-bonheur
-- AltName: Stone of Good Luck (Luckstone) (SRD p246)
+- Alias: Stone of Good Luck (Luckstone) (SRD p246)
- Source: (CDC p176)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_pigments_merveilleux.md b/Data/HD/hd_magicitems_az_pigments_merveilleux.md
index 8d9db90d..7490f98d 100644
--- a/Data/HD/hd_magicitems_az_pigments_merveilleux.md
+++ b/Data/HD/hd_magicitems_az_pigments_merveilleux.md
@@ -4,7 +4,7 @@
### Pigments merveilleux
-- AltName: Marvelous Pigments (SRD p230)
+- Alias: Marvelous Pigments (SRD p230)
- Source: (CDC p175)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_plume_magique.md b/Data/HD/hd_magicitems_az_plume_magique.md
index 28520067..647e6301 100644
--- a/Data/HD/hd_magicitems_az_plume_magique.md
+++ b/Data/HD/hd_magicitems_az_plume_magique.md
@@ -4,7 +4,7 @@
### Plume magique
-- AltName: Feather Token (SRD p221)
+- Alias: Feather Token (SRD p221)
- Source: (CDC p176)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_portail_cubique.md b/Data/HD/hd_magicitems_az_portail_cubique.md
index c11effbd..2552a58f 100644
--- a/Data/HD/hd_magicitems_az_portail_cubique.md
+++ b/Data/HD/hd_magicitems_az_portail_cubique.md
@@ -4,7 +4,7 @@
### Portail cubique
-- AltName: Cubic Gate (SRD p215)
+- Alias: Cubic Gate (SRD p215)
- Source: (CDC p177)
- Objet merveilleux, légendaire
diff --git a/Data/HD/hd_magicitems_az_potion_dagrandissement.md b/Data/HD/hd_magicitems_az_potion_dagrandissement.md
index b4bffc6e..3e166cf5 100644
--- a/Data/HD/hd_magicitems_az_potion_dagrandissement.md
+++ b/Data/HD/hd_magicitems_az_potion_dagrandissement.md
@@ -4,7 +4,7 @@
### Potion d'agrandissement
-- AltName: Potion of Growth (SRD p234)
+- Alias: Potion of Growth (SRD p234)
- Source: (CDC p177)
- Potion, peu courante
diff --git a/Data/HD/hd_magicitems_az_potion_damitie_avec_les_animaux.md b/Data/HD/hd_magicitems_az_potion_damitie_avec_les_animaux.md
index 6835f145..5fa09a76 100644
--- a/Data/HD/hd_magicitems_az_potion_damitie_avec_les_animaux.md
+++ b/Data/HD/hd_magicitems_az_potion_damitie_avec_les_animaux.md
@@ -4,7 +4,7 @@
### Potion d'amitié avec les animaux
-- AltName: Potion of Animal Friendship (SRD p233)
+- Alias: Potion of Animal Friendship (SRD p233)
- Source: (CDC p177)
- Potion, peu courante
diff --git a/Data/HD/hd_magicitems_az_potion_de_clairvoyance.md b/Data/HD/hd_magicitems_az_potion_de_clairvoyance.md
index acbf8d68..3432b7a7 100644
--- a/Data/HD/hd_magicitems_az_potion_de_clairvoyance.md
+++ b/Data/HD/hd_magicitems_az_potion_de_clairvoyance.md
@@ -4,7 +4,7 @@
### Potion de clairvoyance
-- AltName: Potion of Clairvoyance (SRD p233)
+- Alias: Potion of Clairvoyance (SRD p233)
- Source: (CDC p177)
- Potion, rare
diff --git a/Data/HD/hd_magicitems_az_potion_de_force_de_geant.md b/Data/HD/hd_magicitems_az_potion_de_force_de_geant.md
index 1dc88da3..c1a7807f 100644
--- a/Data/HD/hd_magicitems_az_potion_de_force_de_geant.md
+++ b/Data/HD/hd_magicitems_az_potion_de_force_de_geant.md
@@ -4,7 +4,7 @@
### Potion de force de géant
-- AltName: Potion of Giant Strength (SRD p234)
+- Alias: Potion of Giant Strength (SRD p234)
- Source: (CDC p177)
- Potion, rareté variable
diff --git a/Data/HD/hd_magicitems_az_potion_de_forme_gazeuse.md b/Data/HD/hd_magicitems_az_potion_de_forme_gazeuse.md
index 0df10bb1..00a0aad7 100644
--- a/Data/HD/hd_magicitems_az_potion_de_forme_gazeuse.md
+++ b/Data/HD/hd_magicitems_az_potion_de_forme_gazeuse.md
@@ -4,7 +4,7 @@
### Potion de forme gazeuse
-- AltName: Potion of Gaseous Form (SRD p234)
+- Alias: Potion of Gaseous Form (SRD p234)
- Source: (CDC p178)
- Potion, rare
diff --git a/Data/HD/hd_magicitems_az_potion_de_lecture_des_pensees.md b/Data/HD/hd_magicitems_az_potion_de_lecture_des_pensees.md
index bf23c0a5..cd68b21d 100644
--- a/Data/HD/hd_magicitems_az_potion_de_lecture_des_pensees.md
+++ b/Data/HD/hd_magicitems_az_potion_de_lecture_des_pensees.md
@@ -4,7 +4,7 @@
### Potion de lecture des pensées
-- AltName: Potion of Mind Reading (SRD p234)
+- Alias: Potion of Mind Reading (SRD p234)
- Source: (CDC p178)
- Potion, rare
diff --git a/Data/HD/hd_magicitems_az_potion_de_poison.md b/Data/HD/hd_magicitems_az_potion_de_poison.md
index 68f2ea02..f749cf60 100644
--- a/Data/HD/hd_magicitems_az_potion_de_poison.md
+++ b/Data/HD/hd_magicitems_az_potion_de_poison.md
@@ -4,7 +4,7 @@
### Potion de poison
-- AltName: Potion of Poison (SRD p234)
+- Alias: Potion of Poison (SRD p234)
- Source: (CDC p178)
- Potion, peu courante
diff --git a/Data/HD/hd_magicitems_az_potion_de_resistance.md b/Data/HD/hd_magicitems_az_potion_de_resistance.md
index a54e5ec1..d52932ff 100644
--- a/Data/HD/hd_magicitems_az_potion_de_resistance.md
+++ b/Data/HD/hd_magicitems_az_potion_de_resistance.md
@@ -4,7 +4,7 @@
### Potion de résistance
-- AltName: Potion of Resistance (SRD p235)
+- Alias: Potion of Resistance (SRD p235)
- Source: (CDC p178)
- Potion, peu courante
diff --git a/Data/HD/hd_magicitems_az_potion_de_respiration_aquatique.md b/Data/HD/hd_magicitems_az_potion_de_respiration_aquatique.md
index da6f17cc..6c66b91c 100644
--- a/Data/HD/hd_magicitems_az_potion_de_respiration_aquatique.md
+++ b/Data/HD/hd_magicitems_az_potion_de_respiration_aquatique.md
@@ -4,7 +4,7 @@
### Potion de respiration aquatique
-- AltName: Potion of Water Breathing (SRD p235)
+- Alias: Potion of Water Breathing (SRD p235)
- Source: (CDC p178)
- Potion, peu courante
diff --git a/Data/HD/hd_magicitems_az_potion_de_retrecissement.md b/Data/HD/hd_magicitems_az_potion_de_retrecissement.md
index fb74e12c..c3a9b037 100644
--- a/Data/HD/hd_magicitems_az_potion_de_retrecissement.md
+++ b/Data/HD/hd_magicitems_az_potion_de_retrecissement.md
@@ -4,7 +4,7 @@
### Potion de rétrécissement
-- AltName: Potion of Diminution (SRD p233)
+- Alias: Potion of Diminution (SRD p233)
- Source: (CDC p178)
- Potion, rare
diff --git a/Data/HD/hd_magicitems_az_potion_de_soins.md b/Data/HD/hd_magicitems_az_potion_de_soins.md
index 34755311..8c90ac62 100644
--- a/Data/HD/hd_magicitems_az_potion_de_soins.md
+++ b/Data/HD/hd_magicitems_az_potion_de_soins.md
@@ -4,7 +4,7 @@
### Potion de soins
-- AltName: Potion of Healing (SRD p234)
+- Alias: Potion of Healing (SRD p234)
- Source: (CDC p178)
- Potion, rareté variable
diff --git a/Data/HD/hd_magicitems_az_potion_de_vitesse.md b/Data/HD/hd_magicitems_az_potion_de_vitesse.md
index 21e2657f..1e97dfda 100644
--- a/Data/HD/hd_magicitems_az_potion_de_vitesse.md
+++ b/Data/HD/hd_magicitems_az_potion_de_vitesse.md
@@ -4,7 +4,7 @@
### Potion de vitesse
-- AltName: Potion of Speed (SRD p235)
+- Alias: Potion of Speed (SRD p235)
- Source: (CDC p178)
- Potion, très rare
diff --git a/Data/HD/hd_magicitems_az_potion_de_vol.md b/Data/HD/hd_magicitems_az_potion_de_vol.md
index 37aee808..67eeb5bb 100644
--- a/Data/HD/hd_magicitems_az_potion_de_vol.md
+++ b/Data/HD/hd_magicitems_az_potion_de_vol.md
@@ -4,7 +4,7 @@
### Potion de vol
-- AltName: Potion of Flying (SRD p234)
+- Alias: Potion of Flying (SRD p234)
- Source: (CDC p178)
- Potion, très rare
diff --git a/Data/HD/hd_magicitems_az_potion_descalade.md b/Data/HD/hd_magicitems_az_potion_descalade.md
index e2180f26..90c96007 100644
--- a/Data/HD/hd_magicitems_az_potion_descalade.md
+++ b/Data/HD/hd_magicitems_az_potion_descalade.md
@@ -4,7 +4,7 @@
### Potion d'escalade
-- AltName: Potion of Climbing (SRD p233)
+- Alias: Potion of Climbing (SRD p233)
- Source: (CDC p177)
- Potion, courante
diff --git a/Data/HD/hd_magicitems_az_potion_dheroisme.md b/Data/HD/hd_magicitems_az_potion_dheroisme.md
index 2a9d2ac0..f641660a 100644
--- a/Data/HD/hd_magicitems_az_potion_dheroisme.md
+++ b/Data/HD/hd_magicitems_az_potion_dheroisme.md
@@ -4,7 +4,7 @@
### Potion d'héroïsme
-- AltName: Potion of Heroism (SRD p234)
+- Alias: Potion of Heroism (SRD p234)
- Source: (CDC p179)
- Potion, rare
diff --git a/Data/HD/hd_magicitems_az_potion_dinvisibilite.md b/Data/HD/hd_magicitems_az_potion_dinvisibilite.md
index 1575cb44..89817dc9 100644
--- a/Data/HD/hd_magicitems_az_potion_dinvisibilite.md
+++ b/Data/HD/hd_magicitems_az_potion_dinvisibilite.md
@@ -4,7 +4,7 @@
### Potion d'invisibilité
-- AltName: Potion of Invisibility (SRD p234)
+- Alias: Potion of Invisibility (SRD p234)
- Source: (CDC p179)
- Potion, très rare
diff --git a/Data/HD/hd_magicitems_az_poussiere_a_eternuer.md b/Data/HD/hd_magicitems_az_poussiere_a_eternuer.md
index 5b53be07..ed5d1a0a 100644
--- a/Data/HD/hd_magicitems_az_poussiere_a_eternuer.md
+++ b/Data/HD/hd_magicitems_az_poussiere_a_eternuer.md
@@ -4,7 +4,7 @@
### Poussière à éternuer
-- AltName: Dust of Sneezing and Choking (SRD p219)
+- Alias: Dust of Sneezing and Choking (SRD p219)
- Source: (CDC p179)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_poussiere_dassechement.md b/Data/HD/hd_magicitems_az_poussiere_dassechement.md
index bf0a621e..94ec776d 100644
--- a/Data/HD/hd_magicitems_az_poussiere_dassechement.md
+++ b/Data/HD/hd_magicitems_az_poussiere_dassechement.md
@@ -4,7 +4,7 @@
### Poussière d'assèchement
-- AltName: Dust of Dryness (SRD p219)
+- Alias: Dust of Dryness (SRD p219)
- Source: (CDC p179)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_poussiere_de_disparition.md b/Data/HD/hd_magicitems_az_poussiere_de_disparition.md
index d6b70b15..af88aabb 100644
--- a/Data/HD/hd_magicitems_az_poussiere_de_disparition.md
+++ b/Data/HD/hd_magicitems_az_poussiere_de_disparition.md
@@ -4,7 +4,7 @@
### Poussière de disparition
-- AltName: Dust of Disappearance (SRD p219)
+- Alias: Dust of Disappearance (SRD p219)
- Source: (CDC p179)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_protectrice.md b/Data/HD/hd_magicitems_az_protectrice.md
index c3716d5d..4b5d2b2d 100644
--- a/Data/HD/hd_magicitems_az_protectrice.md
+++ b/Data/HD/hd_magicitems_az_protectrice.md
@@ -4,7 +4,7 @@
### Protectrice
-- AltName: Defender (SRD p218)
+- Alias: Defender (SRD p218)
- Source: (CDC p179)
- Arme (épée), légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_puits_des_mondes.md b/Data/HD/hd_magicitems_az_puits_des_mondes.md
index 089791da..edae14f9 100644
--- a/Data/HD/hd_magicitems_az_puits_des_mondes.md
+++ b/Data/HD/hd_magicitems_az_puits_des_mondes.md
@@ -4,7 +4,7 @@
### Puits des mondes
-- AltName: Well of Many Worlds (SRD p250)
+- Alias: Well of Many Worlds (SRD p250)
- Source: (CDC p180)
- Objet merveilleux, légendaire
diff --git a/Data/HD/hd_magicitems_az_puits_portatif.md b/Data/HD/hd_magicitems_az_puits_portatif.md
index 77f6170e..b2ec433d 100644
--- a/Data/HD/hd_magicitems_az_puits_portatif.md
+++ b/Data/HD/hd_magicitems_az_puits_portatif.md
@@ -4,7 +4,7 @@
### Puits portatif
-- AltName: Portable Hole (SRD p233)
+- Alias: Portable Hole (SRD p233)
- Source: (CDC p180)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_regard_charmeur.md b/Data/HD/hd_magicitems_az_regard_charmeur.md
index 4e340b11..04fb2701 100644
--- a/Data/HD/hd_magicitems_az_regard_charmeur.md
+++ b/Data/HD/hd_magicitems_az_regard_charmeur.md
@@ -4,7 +4,7 @@
### Regard charmeur
-- AltName: Eyes of Charming (SRD p220)
+- Alias: Eyes of Charming (SRD p220)
- Source: (CDC p180)
- Objet merveilleux, peu courant (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_robe_aux_etoiles.md b/Data/HD/hd_magicitems_az_robe_aux_etoiles.md
index 0befe68a..2b8c85d9 100644
--- a/Data/HD/hd_magicitems_az_robe_aux_etoiles.md
+++ b/Data/HD/hd_magicitems_az_robe_aux_etoiles.md
@@ -4,7 +4,7 @@
### Robe aux étoiles
-- AltName: Robe of Stars (SRD p239)
+- Alias: Robe of Stars (SRD p239)
- Source: (CDC p180)
- Objet merveilleux, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_robe_aux_yeux_multiples.md b/Data/HD/hd_magicitems_az_robe_aux_yeux_multiples.md
index 05a08e61..cbec10fb 100644
--- a/Data/HD/hd_magicitems_az_robe_aux_yeux_multiples.md
+++ b/Data/HD/hd_magicitems_az_robe_aux_yeux_multiples.md
@@ -4,7 +4,7 @@
### Robe aux yeux multiples
-- AltName: Robe of Eyes (SRD p238)
+- Alias: Robe of Eyes (SRD p238)
- Source: (CDC p180)
- Objet merveilleux, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_robe_de_couleurs_etincelantes.md b/Data/HD/hd_magicitems_az_robe_de_couleurs_etincelantes.md
index 1049624a..caa724da 100644
--- a/Data/HD/hd_magicitems_az_robe_de_couleurs_etincelantes.md
+++ b/Data/HD/hd_magicitems_az_robe_de_couleurs_etincelantes.md
@@ -4,7 +4,7 @@
### Robe de couleurs étincelantes
-- AltName: Robe of Scintillating Colors (SRD p238)
+- Alias: Robe of Scintillating Colors (SRD p238)
- Source: (CDC p181)
- Objet merveilleux, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_robe_de_larchimage.md b/Data/HD/hd_magicitems_az_robe_de_larchimage.md
index ed09d584..7c24368f 100644
--- a/Data/HD/hd_magicitems_az_robe_de_larchimage.md
+++ b/Data/HD/hd_magicitems_az_robe_de_larchimage.md
@@ -4,7 +4,7 @@
### Robe de l'archimage
-- AltName: Robe of the Archmagi (SRD p239)
+- Alias: Robe of the Archmagi (SRD p239)
- Source: (CDC p181)
- Objet merveilleux, légendaire (harmonisation avec un ensorceleur, un sorcier ou un magicien exigée)
diff --git a/Data/HD/hd_magicitems_az_robe_dobjets_pratiques.md b/Data/HD/hd_magicitems_az_robe_dobjets_pratiques.md
index 88587c03..d69eb33f 100644
--- a/Data/HD/hd_magicitems_az_robe_dobjets_pratiques.md
+++ b/Data/HD/hd_magicitems_az_robe_dobjets_pratiques.md
@@ -4,7 +4,7 @@
### Robe d'objets pratiques
-- AltName: Robe of Useful Items (SRD p239)
+- Alias: Robe of Useful Items (SRD p239)
- Source: (CDC p182)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_sac_a_malice.md b/Data/HD/hd_magicitems_az_sac_a_malice.md
index 6375a4f3..b837d69d 100644
--- a/Data/HD/hd_magicitems_az_sac_a_malice.md
+++ b/Data/HD/hd_magicitems_az_sac_a_malice.md
@@ -4,7 +4,7 @@
### Sac à malice
-- AltName: Bag of Tricks (SRD p210)
+- Alias: Bag of Tricks (SRD p210)
- Source: (CDC p182)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_sac_affame.md b/Data/HD/hd_magicitems_az_sac_affame.md
index 35ca56f2..becde8e1 100644
--- a/Data/HD/hd_magicitems_az_sac_affame.md
+++ b/Data/HD/hd_magicitems_az_sac_affame.md
@@ -4,7 +4,7 @@
### Sac affamé
-- AltName: Bag of Devouring (SRD p210)
+- Alias: Bag of Devouring (SRD p210)
- Source: (CDC p182)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_sac_de_haricots.md b/Data/HD/hd_magicitems_az_sac_de_haricots.md
index 6c9716f4..8e4056f8 100644
--- a/Data/HD/hd_magicitems_az_sac_de_haricots.md
+++ b/Data/HD/hd_magicitems_az_sac_de_haricots.md
@@ -4,7 +4,7 @@
### Sac de haricots
-- AltName: Bag of Beans (SRD p209)
+- Alias: Bag of Beans (SRD p209)
- Source: (CDC p183)
- Objet merveilleux, rare
diff --git a/Data/HD/hd_magicitems_az_sac_sans_fond.md b/Data/HD/hd_magicitems_az_sac_sans_fond.md
index 3898ac29..8e0ac2dd 100644
--- a/Data/HD/hd_magicitems_az_sac_sans_fond.md
+++ b/Data/HD/hd_magicitems_az_sac_sans_fond.md
@@ -4,7 +4,7 @@
### Sac sans fond
-- AltName: Bag of Holding (SRD p210)
+- Alias: Bag of Holding (SRD p210)
- Source: (CDC p184)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_scarabee_de_protection.md b/Data/HD/hd_magicitems_az_scarabee_de_protection.md
index b4b9d53a..c58ee7fc 100644
--- a/Data/HD/hd_magicitems_az_scarabee_de_protection.md
+++ b/Data/HD/hd_magicitems_az_scarabee_de_protection.md
@@ -4,7 +4,7 @@
### Scarabée de protection
-- AltName: Scarab of Protection (SRD p241)
+- Alias: Scarab of Protection (SRD p241)
- Source: (CDC p184)
- Objet merveilleux, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_sceptre_dabsorption.md b/Data/HD/hd_magicitems_az_sceptre_dabsorption.md
index 02f65950..d100d406 100644
--- a/Data/HD/hd_magicitems_az_sceptre_dabsorption.md
+++ b/Data/HD/hd_magicitems_az_sceptre_dabsorption.md
@@ -4,7 +4,7 @@
### Sceptre d'absorption
-- AltName: Rod of Absorption (SRD p239)
+- Alias: Rod of Absorption (SRD p239)
- Source: (CDC p184)
- Sceptre, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_sceptre_de_puissance_seigneuriale.md b/Data/HD/hd_magicitems_az_sceptre_de_puissance_seigneuriale.md
index ca0ad36b..d48c0dad 100644
--- a/Data/HD/hd_magicitems_az_sceptre_de_puissance_seigneuriale.md
+++ b/Data/HD/hd_magicitems_az_sceptre_de_puissance_seigneuriale.md
@@ -4,7 +4,7 @@
### Sceptre de puissance seigneuriale
-- AltName: Rod of Lordly Might (SRD p240)
+- Alias: Rod of Lordly Might (SRD p240)
- Source: (CDC p184)
- Sceptre, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_sceptre_de_securite.md b/Data/HD/hd_magicitems_az_sceptre_de_securite.md
index 075b947b..4a5b6950 100644
--- a/Data/HD/hd_magicitems_az_sceptre_de_securite.md
+++ b/Data/HD/hd_magicitems_az_sceptre_de_securite.md
@@ -4,7 +4,7 @@
### Sceptre de sécurité
-- AltName: Rod of Security (SRD p241)
+- Alias: Rod of Security (SRD p241)
- Source: (CDC p185)
- Sceptre, très rare
diff --git a/Data/HD/hd_magicitems_az_sceptre_de_suzerainete.md b/Data/HD/hd_magicitems_az_sceptre_de_suzerainete.md
index a6747fa8..5972b409 100644
--- a/Data/HD/hd_magicitems_az_sceptre_de_suzerainete.md
+++ b/Data/HD/hd_magicitems_az_sceptre_de_suzerainete.md
@@ -4,7 +4,7 @@
### Sceptre de suzeraineté
-- AltName: Rod of Rulership (SRD p240)
+- Alias: Rod of Rulership (SRD p240)
- Source: (CDC p185)
- Sceptre, rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_sceptre_de_vigilance.md b/Data/HD/hd_magicitems_az_sceptre_de_vigilance.md
index 1fda036a..c2306594 100644
--- a/Data/HD/hd_magicitems_az_sceptre_de_vigilance.md
+++ b/Data/HD/hd_magicitems_az_sceptre_de_vigilance.md
@@ -4,7 +4,7 @@
### Sceptre de vigilance
-- AltName: Rod of Alertness (SRD p240)
+- Alias: Rod of Alertness (SRD p240)
- Source: (CDC p185)
- Sceptre, très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_sceptre_inamovible.md b/Data/HD/hd_magicitems_az_sceptre_inamovible.md
index 98a67cce..7456e51e 100644
--- a/Data/HD/hd_magicitems_az_sceptre_inamovible.md
+++ b/Data/HD/hd_magicitems_az_sceptre_inamovible.md
@@ -4,7 +4,7 @@
### Sceptre inamovible
-- AltName: Immovable Rod (SRD p226)
+- Alias: Immovable Rod (SRD p226)
- Source: (CDC p186)
- Objet merveilleux, peu courant
diff --git a/Data/HD/hd_magicitems_az_solvant_universel.md b/Data/HD/hd_magicitems_az_solvant_universel.md
index 825687e9..2de9ccd4 100644
--- a/Data/HD/hd_magicitems_az_solvant_universel.md
+++ b/Data/HD/hd_magicitems_az_solvant_universel.md
@@ -4,7 +4,7 @@
### Solvant universel
-- AltName: Universal Solvent (SRD p248)
+- Alias: Universal Solvent (SRD p248)
- Source: (CDC p186)
- Objet merveilleux, légendaire
diff --git a/Data/HD/hd_magicitems_az_sphere_dannihilation.md b/Data/HD/hd_magicitems_az_sphere_dannihilation.md
index bdcb6d6b..d5dbd5f4 100644
--- a/Data/HD/hd_magicitems_az_sphere_dannihilation.md
+++ b/Data/HD/hd_magicitems_az_sphere_dannihilation.md
@@ -4,7 +4,7 @@
### Sphère d'annihilation
-- AltName: Sphere of Annihilation (SRD p242)
+- Alias: Sphere of Annihilation (SRD p242)
- Source: (CDC p186)
- Objet merveilleux, légendaire
diff --git a/Data/HD/hd_magicitems_az_submersible_du_crabe.md b/Data/HD/hd_magicitems_az_submersible_du_crabe.md
index ec249ab7..9270cfdc 100644
--- a/Data/HD/hd_magicitems_az_submersible_du_crabe.md
+++ b/Data/HD/hd_magicitems_az_submersible_du_crabe.md
@@ -4,7 +4,7 @@
### Submersible du crabe
-- AltName: Apparatus of the Crab (SRD p208)
+- Alias: Apparatus of the Crab (SRD p208)
- Source: (CDC p186)
- Objet merveilleux, légendaire
diff --git a/Data/HD/hd_magicitems_az_talisman_de_la_sphere.md b/Data/HD/hd_magicitems_az_talisman_de_la_sphere.md
index fee210a9..330ecd3c 100644
--- a/Data/HD/hd_magicitems_az_talisman_de_la_sphere.md
+++ b/Data/HD/hd_magicitems_az_talisman_de_la_sphere.md
@@ -4,7 +4,7 @@
### Talisman de la sphère
-- AltName: Talisman of the Sphere (SRD p247)
+- Alias: Talisman of the Sphere (SRD p247)
- Source: (CDC p187)
- Objet merveilleux, légendaire (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_talisman_du_bien_ultime.md b/Data/HD/hd_magicitems_az_talisman_du_bien_ultime.md
index 90ef2a16..d13ec335 100644
--- a/Data/HD/hd_magicitems_az_talisman_du_bien_ultime.md
+++ b/Data/HD/hd_magicitems_az_talisman_du_bien_ultime.md
@@ -4,7 +4,7 @@
### Talisman du bien ultime
-- AltName: Talisman of Pure Good (SRD p247)
+- Alias: Talisman of Pure Good (SRD p247)
- Source: (CDC p187)
- Objet merveilleux, légendaire (harmonisation avec une créature d'alignement bon exigée)
diff --git a/Data/HD/hd_magicitems_az_talisman_du_mal_ultime.md b/Data/HD/hd_magicitems_az_talisman_du_mal_ultime.md
index b5938f17..db46fe60 100644
--- a/Data/HD/hd_magicitems_az_talisman_du_mal_ultime.md
+++ b/Data/HD/hd_magicitems_az_talisman_du_mal_ultime.md
@@ -4,7 +4,7 @@
### Talisman du mal ultime
-- AltName: Talisman of Ultimate Evil (SRD p247)
+- Alias: Talisman of Ultimate Evil (SRD p247)
- Source: (CDC p187)
- Objet merveilleux, légendaire (harmonisation avec une créature d'alignement mauvais exigée)
diff --git a/Data/HD/hd_magicitems_az_tapis_volant.md b/Data/HD/hd_magicitems_az_tapis_volant.md
index 25ca953b..335e476c 100644
--- a/Data/HD/hd_magicitems_az_tapis_volant.md
+++ b/Data/HD/hd_magicitems_az_tapis_volant.md
@@ -4,7 +4,7 @@
### Tapis volant
-- AltName: Carpet of Flying (SRD p213)
+- Alias: Carpet of Flying (SRD p213)
- Source: (CDC p188)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_traite_dautorite_et_dinfluence.md b/Data/HD/hd_magicitems_az_traite_dautorite_et_dinfluence.md
index 10b28447..4cd62b59 100644
--- a/Data/HD/hd_magicitems_az_traite_dautorite_et_dinfluence.md
+++ b/Data/HD/hd_magicitems_az_traite_dautorite_et_dinfluence.md
@@ -4,7 +4,7 @@
### Traité d'autorité et d'influence
-- AltName: Tome of Leadership and Influence (SRD p247)
+- Alias: Tome of Leadership and Influence (SRD p247)
- Source: (CDC p188)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_traite_de_comprehension.md b/Data/HD/hd_magicitems_az_traite_de_comprehension.md
index 71e729d7..1689f69b 100644
--- a/Data/HD/hd_magicitems_az_traite_de_comprehension.md
+++ b/Data/HD/hd_magicitems_az_traite_de_comprehension.md
@@ -4,7 +4,7 @@
### Traité de compréhension
-- AltName: Tome of Understanding (SRD p247)
+- Alias: Tome of Understanding (SRD p247)
- Source: (CDC p188)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_traite_de_perspicacite.md b/Data/HD/hd_magicitems_az_traite_de_perspicacite.md
index 58d784dd..3c139f03 100644
--- a/Data/HD/hd_magicitems_az_traite_de_perspicacite.md
+++ b/Data/HD/hd_magicitems_az_traite_de_perspicacite.md
@@ -4,7 +4,7 @@
### Traité de perspicacité
-- AltName: Tome of Clear Thought (SRD p247)
+- Alias: Tome of Clear Thought (SRD p247)
- Source: (CDC p188)
- Objet merveilleux, très rare
diff --git a/Data/HD/hd_magicitems_az_trident_de_domination_aquatique.md b/Data/HD/hd_magicitems_az_trident_de_domination_aquatique.md
index 63c4d93c..0350b275 100644
--- a/Data/HD/hd_magicitems_az_trident_de_domination_aquatique.md
+++ b/Data/HD/hd_magicitems_az_trident_de_domination_aquatique.md
@@ -4,7 +4,7 @@
### Trident de domination aquatique
-- AltName: Trident of Fish Command (SRD p247)
+- Alias: Trident of Fish Command (SRD p247)
- Source: (CDC p188)
- Arme (trident), peu courante (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_az_tueuse_de_dragons.md b/Data/HD/hd_magicitems_az_tueuse_de_dragons.md
index b3baece2..93ae2589 100644
--- a/Data/HD/hd_magicitems_az_tueuse_de_dragons.md
+++ b/Data/HD/hd_magicitems_az_tueuse_de_dragons.md
@@ -4,7 +4,7 @@
### Tueuse de dragons
-- AltName: Dragon Slayer (SRD p219)
+- Alias: Dragon Slayer (SRD p219)
- Source: (CDC p188)
- Arme (épée), rare
diff --git a/Data/HD/hd_magicitems_az_tueuse_de_geant.md b/Data/HD/hd_magicitems_az_tueuse_de_geant.md
index beb1e699..d867c38c 100644
--- a/Data/HD/hd_magicitems_az_tueuse_de_geant.md
+++ b/Data/HD/hd_magicitems_az_tueuse_de_geant.md
@@ -4,7 +4,7 @@
### Tueuse de géant
-- AltName: Giant Slayer (SRD p224)
+- Alias: Giant Slayer (SRD p224)
- Source: (CDC p188)
- Arme (épée ou hache), rare
diff --git a/Data/HD/hd_magicitems_az_vengeresse_sacree.md b/Data/HD/hd_magicitems_az_vengeresse_sacree.md
index 2264450d..f3ba5d17 100644
--- a/Data/HD/hd_magicitems_az_vengeresse_sacree.md
+++ b/Data/HD/hd_magicitems_az_vengeresse_sacree.md
@@ -4,7 +4,7 @@
### Vengeresse sacrée
-- AltName: Holy Avenger (SRD p225)
+- Alias: Holy Avenger (SRD p225)
- Source: (CDC p188)
- Arme (épée), légendaire (harmonisation requise avec un paladin)
diff --git a/Data/HD/hd_magicitems_az_voleuse_de_vies.md b/Data/HD/hd_magicitems_az_voleuse_de_vies.md
index 97ee6ab5..9d2c1412 100644
--- a/Data/HD/hd_magicitems_az_voleuse_de_vies.md
+++ b/Data/HD/hd_magicitems_az_voleuse_de_vies.md
@@ -4,7 +4,7 @@
### Voleuse de vies
-- AltName: Nine Lives Stealer (SRD p231)
+- Alias: Nine Lives Stealer (SRD p231)
- Source: (CDC p188)
- Arme (épée), très rare (harmonisation requise)
diff --git a/Data/HD/hd_magicitems_harmonisation.md b/Data/HD/hd_magicitems_harmonisation.md
index b2751d06..ff5b4085 100644
--- a/Data/HD/hd_magicitems_harmonisation.md
+++ b/Data/HD/hd_magicitems_harmonisation.md
@@ -4,7 +4,7 @@
### Harmonisation
-- AltName: Attunement (SRD p206)
+- Alias: Attunement (SRD p206)
- Source: (CDC p130)
Une créature doit parfois sceller un pacte avec certains objets magiques avant de pouvoir utiliser leurs propriétés magiques. Ce pacte est appelé harmonisation et il faut parfois remplir certaines conditions pour plusieurs d'entre eux. Si la condition est une classe, une créature doit appartenir à cette classe pour qu'elle et lui puissent s'harmoniser (si la classe est celle d'un lanceur de sorts, un monstre remplit la condition s'il possède des emplacements de sort et utilise la liste de sorts de cette classe).
diff --git a/Data/HD/hd_monk.md b/Data/HD/hd_monk.md
index 730b0b30..ae4b8cbe 100644
--- a/Data/HD/hd_monk.md
+++ b/Data/HD/hd_monk.md
@@ -5,7 +5,7 @@
# Moine
-- AltName: Monk (SRD p26)
+- Alias: Monk (SRD p26)
- Source: (MDR p176)
En tant que moine, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_monk_openhand.md b/Data/HD/hd_monk_openhand.md
index c9077dcc..1306f4c3 100644
--- a/Data/HD/hd_monk_openhand.md
+++ b/Data/HD/hd_monk_openhand.md
@@ -5,7 +5,7 @@
# Voie de la main ouverte
-- AltName: Way of the Open Hand (SRD p28)
+- Alias: Way of the Open Hand (SRD p28)
- Source: (MDR p179)
Les moines qui suivent la voie de la main ouverte sont les maîtres ultimes des arts martiaux, que ce soit à mains nues ou avec des armes. Ils apprennent des techniques leur permettant de pousser ou déséquilibrer leurs adversaires, manipulent le ki pour guérir leurs blessures et pratiquent une forme de méditation avancée qui leur permet de se protéger des dégâts.
diff --git a/Data/HD/hd_monsters.md b/Data/HD/hd_monsters.md
index 6c12418f..3e9881a2 100644
--- a/Data/HD/hd_monsters.md
+++ b/Data/HD/hd_monsters.md
@@ -51,7 +51,7 @@ SubItems:
- - SRD: [Aboleth](srd_monsters_aboleth.md)
+ - Alias: [Aboleth](srd_monsters_aboleth.md)
@@ -532,7 +532,7 @@ SubItems:
- - SRD: [Wraith](srd_monsters_wraith.md)
+ - Alias: [Wraith](srd_monsters_wraith.md)
@@ -913,7 +913,7 @@ SubItems:
- - SRD: [Deva](srd_monsters_deva.md)
+ - Alias: [Deva](srd_monsters_deva.md)
@@ -1145,7 +1145,7 @@ SubItems:
- - SRD: [Planetar](srd_monsters_planetar.md)
+ - Alias: [Planetar](srd_monsters_planetar.md)
@@ -1378,7 +1378,7 @@ SubItems:
- - SRD: [Solar](srd_monsters_solar.md)
+ - Alias: [Solar](srd_monsters_solar.md)
@@ -1667,7 +1667,7 @@ SubItems:
- - SRD: [Ankheg](srd_monsters_ankheg.md)
+ - Alias: [Ankheg](srd_monsters_ankheg.md)
@@ -1823,7 +1823,7 @@ SubItems:
- - SRD: [Azer](srd_monsters_azer.md)
+ - Alias: [Azer](srd_monsters_azer.md)
@@ -2013,7 +2013,7 @@ SubItems:
- - SRD: [Gibbering Mouther](srd_monsters_gibbering_mouther.md)
+ - Alias: [Gibbering Mouther](srd_monsters_gibbering_mouther.md)
@@ -2196,7 +2196,7 @@ SubItems:
- - SRD: [Basilisk](srd_monsters_basilisk.md)
+ - Alias: [Basilisk](srd_monsters_basilisk.md)
@@ -2381,7 +2381,7 @@ SubItems:
- - SRD: [Behir](srd_monsters_behir.md)
+ - Alias: [Behir](srd_monsters_behir.md)
@@ -2577,7 +2577,7 @@ SubItems:
- - SRD: [Bulette](srd_monsters_bulette.md)
+ - Alias: [Bulette](srd_monsters_bulette.md)
@@ -2755,7 +2755,7 @@ SubItems:
- - SRD: [Centaur](srd_monsters_centaur.md)
+ - Alias: [Centaur](srd_monsters_centaur.md)
@@ -3136,7 +3136,7 @@ SubItems:
- - SRD: [Shrieker](srd_monsters_shrieker.md)
+ - Alias: [Shrieker](srd_monsters_shrieker.md)
@@ -3296,7 +3296,7 @@ SubItems:
- - SRD: [Violet Fungus](srd_monsters_violet_fungus.md)
+ - Alias: [Violet Fungus](srd_monsters_violet_fungus.md)
@@ -3468,7 +3468,7 @@ SubItems:
- - SRD: [Chimera](srd_monsters_chimera.md)
+ - Alias: [Chimera](srd_monsters_chimera.md)
@@ -3660,7 +3660,7 @@ SubItems:
- - SRD: [Chuul](srd_monsters_chuul.md)
+ - Alias: [Chuul](srd_monsters_chuul.md)
@@ -3861,7 +3861,7 @@ SubItems:
- - SRD: [Cockatrice](srd_monsters_cockatrice.md)
+ - Alias: [Cockatrice](srd_monsters_cockatrice.md)
@@ -4011,7 +4011,7 @@ SubItems:
- - SRD: [Couatl](srd_monsters_couatl.md)
+ - Alias: [Couatl](srd_monsters_couatl.md)
@@ -4444,7 +4444,7 @@ SubItems:
- - SRD: [Balor](srd_monsters_balor.md)
+ - Alias: [Balor](srd_monsters_balor.md)
@@ -4669,7 +4669,7 @@ SubItems:
- - SRD: [Dretch](srd_monsters_dretch.md)
+ - Alias: [Dretch](srd_monsters_dretch.md)
@@ -4859,7 +4859,7 @@ SubItems:
- - SRD: [Glabrezu](srd_monsters_glabrezu.md)
+ - Alias: [Glabrezu](srd_monsters_glabrezu.md)
@@ -5079,7 +5079,7 @@ SubItems:
- - SRD: [Hezrou](srd_monsters_hezrou.md)
+ - Alias: [Hezrou](srd_monsters_hezrou.md)
@@ -5293,7 +5293,7 @@ SubItems:
- - SRD: [Marilith](srd_monsters_marilith.md)
+ - Alias: [Marilith](srd_monsters_marilith.md)
@@ -5531,7 +5531,7 @@ SubItems:
- - SRD: [Nalfeshnee](srd_monsters_nalfeshnee.md)
+ - Alias: [Nalfeshnee](srd_monsters_nalfeshnee.md)
@@ -5757,7 +5757,7 @@ SubItems:
- - SRD: [Quasit](srd_monsters_quasit.md)
+ - Alias: [Quasit](srd_monsters_quasit.md)
@@ -5971,7 +5971,7 @@ SubItems:
- - SRD: [Vrock](srd_monsters_vrock.md)
+ - Alias: [Vrock](srd_monsters_vrock.md)
@@ -6188,7 +6188,7 @@ SubItems:
- - SRD: [Nightmare](srd_monsters_nightmare.md)
+ - Alias: [Nightmare](srd_monsters_nightmare.md)
@@ -6659,7 +6659,7 @@ SubItems:
- - SRD: [Barbed Devil](srd_monsters_barbed_devil.md)
+ - Alias: [Barbed Devil](srd_monsters_barbed_devil.md)
@@ -6891,7 +6891,7 @@ SubItems:
- - SRD: [Bearded Devil](srd_monsters_bearded_devil.md)
+ - Alias: [Bearded Devil](srd_monsters_bearded_devil.md)
@@ -7105,7 +7105,7 @@ SubItems:
- - SRD: [Horned Devil](srd_monsters_horned_devil.md)
+ - Alias: [Horned Devil](srd_monsters_horned_devil.md)
@@ -7325,7 +7325,7 @@ SubItems:
- - SRD: [Ice Devil](srd_monsters_ice_devil.md)
+ - Alias: [Ice Devil](srd_monsters_ice_devil.md)
@@ -7587,7 +7587,7 @@ SubItems:
- - SRD: [Chain Devil](srd_monsters_chain_devil.md)
+ - Alias: [Chain Devil](srd_monsters_chain_devil.md)
@@ -7814,7 +7814,7 @@ SubItems:
- - SRD: [Bone Devil](srd_monsters_bone_devil.md)
+ - Alias: [Bone Devil](srd_monsters_bone_devil.md)
@@ -8028,7 +8028,7 @@ SubItems:
- - SRD: [Imp](srd_monsters_imp.md)
+ - Alias: [Imp](srd_monsters_imp.md)
@@ -8236,7 +8236,7 @@ SubItems:
- - SRD: [Pit Fiend](srd_monsters_pit_fiend.md)
+ - Alias: [Pit Fiend](srd_monsters_pit_fiend.md)
@@ -8492,7 +8492,7 @@ SubItems:
- - SRD: [Erinyes](srd_monsters_erinyes.md)
+ - Alias: [Erinyes](srd_monsters_erinyes.md)
@@ -8711,7 +8711,7 @@ SubItems:
- - SRD: [Lemure](srd_monsters_lemure.md)
+ - Alias: [Lemure](srd_monsters_lemure.md)
@@ -9085,7 +9085,7 @@ SubItems:
- - SRD: [Plesiosaurus](srd_monsters_plesiosaurus.md)
+ - Alias: [Plesiosaurus](srd_monsters_plesiosaurus.md)
@@ -9250,7 +9250,7 @@ SubItems:
- - SRD: [Triceratops](srd_monsters_triceratops.md)
+ - Alias: [Triceratops](srd_monsters_triceratops.md)
@@ -9422,7 +9422,7 @@ SubItems:
- - SRD: [Tyrannosaurus Rex](srd_monsters_tyrannosaurus_rex.md)
+ - Alias: [Tyrannosaurus Rex](srd_monsters_tyrannosaurus_rex.md)
@@ -9595,7 +9595,7 @@ SubItems:
- - SRD: [Doppelganger](srd_monsters_doppelganger.md)
+ - Alias: [Doppelganger](srd_monsters_doppelganger.md)
@@ -9799,7 +9799,7 @@ SubItems:
- - SRD: [Ancient White Dragon](srd_monsters_ancient_white_dragon.md)
+ - Alias: [Ancient White Dragon](srd_monsters_ancient_white_dragon.md)
@@ -10057,7 +10057,7 @@ SubItems:
- - SRD: [Adult White Dragon](srd_monsters_adult_white_dragon.md)
+ - Alias: [Adult White Dragon](srd_monsters_adult_white_dragon.md)
@@ -10315,7 +10315,7 @@ SubItems:
- - SRD: [Young White Dragon](srd_monsters_young_white_dragon.md)
+ - Alias: [Young White Dragon](srd_monsters_young_white_dragon.md)
@@ -10519,7 +10519,7 @@ SubItems:
- - SRD: [White Dragon Wyrmling](srd_monsters_white_dragon_wyrmling.md)
+ - Alias: [White Dragon Wyrmling](srd_monsters_white_dragon_wyrmling.md)
@@ -10693,7 +10693,7 @@ SubItems:
- - SRD: [Ancient Blue Dragon](srd_monsters_ancient_blue_dragon.md)
+ - Alias: [Ancient Blue Dragon](srd_monsters_ancient_blue_dragon.md)
@@ -10945,7 +10945,7 @@ SubItems:
- - SRD: [Adult Blue Dragon](srd_monsters_adult_blue_dragon.md)
+ - Alias: [Adult Blue Dragon](srd_monsters_adult_blue_dragon.md)
@@ -11197,7 +11197,7 @@ SubItems:
- - SRD: [Young Blue Dragon](srd_monsters_young_blue_dragon.md)
+ - Alias: [Young Blue Dragon](srd_monsters_young_blue_dragon.md)
@@ -11389,7 +11389,7 @@ SubItems:
- - SRD: [Blue Dragon Wyrmling](srd_monsters_blue_dragon_wyrmling.md)
+ - Alias: [Blue Dragon Wyrmling](srd_monsters_blue_dragon_wyrmling.md)
@@ -11563,7 +11563,7 @@ SubItems:
- - SRD: [Ancient Black Dragon](srd_monsters_ancient_black_dragon.md)
+ - Alias: [Ancient Black Dragon](srd_monsters_ancient_black_dragon.md)
@@ -11815,7 +11815,7 @@ SubItems:
- - SRD: [Adult Black Dragon](srd_monsters_adult_black_dragon.md)
+ - Alias: [Adult Black Dragon](srd_monsters_adult_black_dragon.md)
@@ -12073,7 +12073,7 @@ SubItems:
- - SRD: [Young Black Dragon](srd_monsters_young_black_dragon.md)
+ - Alias: [Young Black Dragon](srd_monsters_young_black_dragon.md)
@@ -12277,7 +12277,7 @@ SubItems:
- - SRD: [Black Dragon Wyrmling](srd_monsters_black_dragon_wyrmling.md)
+ - Alias: [Black Dragon Wyrmling](srd_monsters_black_dragon_wyrmling.md)
@@ -12463,7 +12463,7 @@ SubItems:
- - SRD: [Ancient Red Dragon](srd_monsters_ancient_red_dragon.md)
+ - Alias: [Ancient Red Dragon](srd_monsters_ancient_red_dragon.md)
@@ -12715,7 +12715,7 @@ SubItems:
- - SRD: [Adult Red Dragon](srd_monsters_adult_red_dragon.md)
+ - Alias: [Adult Red Dragon](srd_monsters_adult_red_dragon.md)
@@ -12967,7 +12967,7 @@ SubItems:
- - SRD: [Young Red Dragon](srd_monsters_young_red_dragon.md)
+ - Alias: [Young Red Dragon](srd_monsters_young_red_dragon.md)
@@ -13159,7 +13159,7 @@ SubItems:
- - SRD: [Red Dragon Wyrmling](srd_monsters_red_dragon_wyrmling.md)
+ - Alias: [Red Dragon Wyrmling](srd_monsters_red_dragon_wyrmling.md)
@@ -13334,7 +13334,7 @@ SubItems:
- - SRD: [Ancient Green Dragon](srd_monsters_ancient_green_dragon.md)
+ - Alias: [Ancient Green Dragon](srd_monsters_ancient_green_dragon.md)
@@ -13605,7 +13605,7 @@ SubItems:
- - SRD: [Adult Green Dragon](srd_monsters_adult_green_dragon.md)
+ - Alias: [Adult Green Dragon](srd_monsters_adult_green_dragon.md)
@@ -13870,7 +13870,7 @@ SubItems:
- - SRD: [Young Green Dragon](srd_monsters_young_green_dragon.md)
+ - Alias: [Young Green Dragon](srd_monsters_young_green_dragon.md)
@@ -14081,7 +14081,7 @@ SubItems:
- - SRD: [Green Dragon Wyrmling](srd_monsters_green_dragon_wyrmling.md)
+ - Alias: [Green Dragon Wyrmling](srd_monsters_green_dragon_wyrmling.md)
@@ -14273,7 +14273,7 @@ SubItems:
- - SRD: [Ancient Brass Dragon](srd_monsters_ancient_brass_dragon.md)
+ - Alias: [Ancient Brass Dragon](srd_monsters_ancient_brass_dragon.md)
@@ -14555,7 +14555,7 @@ SubItems:
- - SRD: [Adult Brass Dragon](srd_monsters_adult_brass_dragon.md)
+ - Alias: [Adult Brass Dragon](srd_monsters_adult_brass_dragon.md)
@@ -14819,7 +14819,7 @@ SubItems:
- - SRD: [Young Brass Dragon](srd_monsters_young_brass_dragon.md)
+ - Alias: [Young Brass Dragon](srd_monsters_young_brass_dragon.md)
@@ -15023,7 +15023,7 @@ SubItems:
- - SRD: [Brass Dragon Wyrmling](srd_monsters_brass_dragon_wyrmling.md)
+ - Alias: [Brass Dragon Wyrmling](srd_monsters_brass_dragon_wyrmling.md)
@@ -15209,7 +15209,7 @@ SubItems:
- - SRD: [Ancient Silver Dragon](srd_monsters_ancient_silver_dragon.md)
+ - Alias: [Ancient Silver Dragon](srd_monsters_ancient_silver_dragon.md)
@@ -15485,7 +15485,7 @@ SubItems:
- - SRD: [Adult Silver Dragon](srd_monsters_adult_silver_dragon.md)
+ - Alias: [Adult Silver Dragon](srd_monsters_adult_silver_dragon.md)
@@ -15767,7 +15767,7 @@ SubItems:
- - SRD: [Young Silver Dragon](srd_monsters_young_silver_dragon.md)
+ - Alias: [Young Silver Dragon](srd_monsters_young_silver_dragon.md)
@@ -15971,7 +15971,7 @@ SubItems:
- - SRD: [Silver Dragon Wyrmling](srd_monsters_silver_dragon_wyrmling.md)
+ - Alias: [Silver Dragon Wyrmling](srd_monsters_silver_dragon_wyrmling.md)
@@ -16157,7 +16157,7 @@ SubItems:
- - SRD: [Ancient Bronze Dragon](srd_monsters_ancient_bronze_dragon.md)
+ - Alias: [Ancient Bronze Dragon](srd_monsters_ancient_bronze_dragon.md)
@@ -16439,7 +16439,7 @@ SubItems:
- - SRD: [Adult Bronze Dragon](srd_monsters_adult_bronze_dragon.md)
+ - Alias: [Adult Bronze Dragon](srd_monsters_adult_bronze_dragon.md)
@@ -16727,7 +16727,7 @@ SubItems:
- - SRD: [Young Bronze Dragon](srd_monsters_young_bronze_dragon.md)
+ - Alias: [Young Bronze Dragon](srd_monsters_young_bronze_dragon.md)
@@ -16943,7 +16943,7 @@ SubItems:
- - SRD: [Bronze Dragon Wyrmling](srd_monsters_bronze_dragon_wyrmling.md)
+ - Alias: [Bronze Dragon Wyrmling](srd_monsters_bronze_dragon_wyrmling.md)
@@ -17141,7 +17141,7 @@ SubItems:
- - SRD: [Ancient Copper Dragon](srd_monsters_ancient_copper_dragon.md)
+ - Alias: [Ancient Copper Dragon](srd_monsters_ancient_copper_dragon.md)
@@ -17429,7 +17429,7 @@ SubItems:
- - SRD: [Adult Copper Dragon](srd_monsters_adult_copper_dragon.md)
+ - Alias: [Adult Copper Dragon](srd_monsters_adult_copper_dragon.md)
@@ -17699,7 +17699,7 @@ SubItems:
- - SRD: [Young Copper Dragon](srd_monsters_young_copper_dragon.md)
+ - Alias: [Young Copper Dragon](srd_monsters_young_copper_dragon.md)
@@ -17915,7 +17915,7 @@ SubItems:
- - SRD: [Copper Dragon Wyrmling](srd_monsters_copper_dragon_wyrmling.md)
+ - Alias: [Copper Dragon Wyrmling](srd_monsters_copper_dragon_wyrmling.md)
@@ -18100,7 +18100,7 @@ SubItems:
- - SRD: [Ancient Gold Dragon](srd_monsters_ancient_gold_dragon.md)
+ - Alias: [Ancient Gold Dragon](srd_monsters_ancient_gold_dragon.md)
@@ -18379,7 +18379,7 @@ SubItems:
- - SRD: [Adult Gold Dragon](srd_monsters_adult_gold_dragon.md)
+ - Alias: [Adult Gold Dragon](srd_monsters_adult_gold_dragon.md)
@@ -18664,7 +18664,7 @@ SubItems:
- - SRD: [Young Gold Dragon](srd_monsters_young_gold_dragon.md)
+ - Alias: [Young Gold Dragon](srd_monsters_young_gold_dragon.md)
@@ -18877,7 +18877,7 @@ SubItems:
- - SRD: [Gold Dragon Wyrmling](srd_monsters_gold_dragon_wyrmling.md)
+ - Alias: [Gold Dragon Wyrmling](srd_monsters_gold_dragon_wyrmling.md)
@@ -19072,7 +19072,7 @@ SubItems:
- - SRD: [Dragon Turtle](srd_monsters_dragon_turtle.md)
+ - Alias: [Dragon Turtle](srd_monsters_dragon_turtle.md)
@@ -19474,7 +19474,7 @@ SubItems:
- - SRD: [Drider](srd_monsters_drider.md)
+ - Alias: [Drider](srd_monsters_drider.md)
@@ -19706,7 +19706,7 @@ SubItems:
- - SRD: [Drow](srd_monsters_drow.md)
+ - Alias: [Drow](srd_monsters_drow.md)
@@ -20184,7 +20184,7 @@ SubItems:
- - SRD: [Dryad](srd_monsters_dryad.md)
+ - Alias: [Dryad](srd_monsters_dryad.md)
@@ -20404,7 +20404,7 @@ SubItems:
- - SRD: [Duergar](srd_monsters_duergar.md)
+ - Alias: [Duergar](srd_monsters_duergar.md)
@@ -20608,7 +20608,7 @@ SubItems:
- - SRD: [Air Elemental](srd_monsters_air_elemental.md)
+ - Alias: [Air Elemental](srd_monsters_air_elemental.md)
@@ -20812,7 +20812,7 @@ SubItems:
- - SRD: [Water Elemental](srd_monsters_water_elemental.md)
+ - Alias: [Water Elemental](srd_monsters_water_elemental.md)
@@ -21016,7 +21016,7 @@ SubItems:
- - SRD: [Fire Elemental](srd_monsters_fire_elemental.md)
+ - Alias: [Fire Elemental](srd_monsters_fire_elemental.md)
@@ -21215,7 +21215,7 @@ SubItems:
- - SRD: [Earth Elemental](srd_monsters_earth_elemental.md)
+ - Alias: [Earth Elemental](srd_monsters_earth_elemental.md)
@@ -21411,7 +21411,7 @@ SubItems:
- - SRD: [Roper](srd_monsters_roper.md)
+ - Alias: [Roper](srd_monsters_roper.md)
@@ -21619,7 +21619,7 @@ SubItems:
- - SRD: [Sprite](srd_monsters_sprite.md)
+ - Alias: [Sprite](srd_monsters_sprite.md)
@@ -21797,7 +21797,7 @@ SubItems:
- - SRD: [Ettercap](srd_monsters_ettercap.md)
+ - Alias: [Ettercap](srd_monsters_ettercap.md)
@@ -22005,7 +22005,7 @@ SubItems:
- - SRD: [Ettin](srd_monsters_ettin.md)
+ - Alias: [Ettin](srd_monsters_ettin.md)
@@ -22197,7 +22197,7 @@ SubItems:
- - SRD: [Ghost](srd_monsters_ghost.md)
+ - Alias: [Ghost](srd_monsters_ghost.md)
@@ -22413,7 +22413,7 @@ SubItems:
- - SRD: [Will-o'-Wisp](srd_monsters_will_o_wisp.md)
+ - Alias: [Will-o'-Wisp](srd_monsters_will_o_wisp.md)
@@ -22616,7 +22616,7 @@ SubItems:
- - SRD: [Shield Guardian](srd_monsters_shield_guardian.md)
+ - Alias: [Shield Guardian](srd_monsters_shield_guardian.md)
@@ -22820,7 +22820,7 @@ SubItems:
- - SRD: [Gargoyle](srd_monsters_gargoyle.md)
+ - Alias: [Gargoyle](srd_monsters_gargoyle.md)
@@ -23016,7 +23016,7 @@ SubItems:
- - SRD: [Hill Giant](srd_monsters_hill_giant.md)
+ - Alias: [Hill Giant](srd_monsters_hill_giant.md)
@@ -23189,7 +23189,7 @@ SubItems:
- - SRD: [Cloud Giant](srd_monsters_cloud_giant.md)
+ - Alias: [Cloud Giant](srd_monsters_cloud_giant.md)
@@ -23404,7 +23404,7 @@ SubItems:
- - SRD: [Stone Giant](srd_monsters_stone_giant.md)
+ - Alias: [Stone Giant](srd_monsters_stone_giant.md)
@@ -23597,7 +23597,7 @@ SubItems:
- - SRD: [Storm Giant](srd_monsters_storm_giant.md)
+ - Alias: [Storm Giant](srd_monsters_storm_giant.md)
@@ -23825,7 +23825,7 @@ SubItems:
- - SRD: [Fire Giant](srd_monsters_fire_giant.md)
+ - Alias: [Fire Giant](srd_monsters_fire_giant.md)
@@ -24011,7 +24011,7 @@ SubItems:
- - SRD: [Frost Giant](srd_monsters_frost_giant.md)
+ - Alias: [Frost Giant](srd_monsters_frost_giant.md)
@@ -24196,7 +24196,7 @@ SubItems:
- - SRD: [Djinni](srd_monsters_djinni.md)
+ - Alias: [Djinni](srd_monsters_djinni.md)
@@ -24417,7 +24417,7 @@ SubItems:
- - SRD: [Efreeti](srd_monsters_efreeti.md)
+ - Alias: [Efreeti](srd_monsters_efreeti.md)
@@ -24630,7 +24630,7 @@ SubItems:
- - SRD: [Gnoll](srd_monsters_gnoll.md)
+ - Alias: [Gnoll](srd_monsters_gnoll.md)
@@ -24999,7 +24999,7 @@ SubItems:
- - SRD: [Deep Gnome (Svirfneblin)](srd_monsters_deep_gnome_svirfneblin.md)
+ - Alias: [Deep Gnome (Svirfneblin)](srd_monsters_deep_gnome_svirfneblin.md)
@@ -25201,7 +25201,7 @@ SubItems:
- - SRD: [Goblin](srd_monsters_goblin.md)
+ - Alias: [Goblin](srd_monsters_goblin.md)
@@ -25996,7 +25996,7 @@ SubItems:
- - SRD: [Bugbear](srd_monsters_bugbear.md)
+ - Alias: [Bugbear](srd_monsters_bugbear.md)
@@ -26384,7 +26384,7 @@ SubItems:
- - SRD: [Clay Golem](srd_monsters_clay_golem.md)
+ - Alias: [Clay Golem](srd_monsters_clay_golem.md)
@@ -26605,7 +26605,7 @@ SubItems:
- - SRD: [Flesh Golem](srd_monsters_flesh_golem.md)
+ - Alias: [Flesh Golem](srd_monsters_flesh_golem.md)
@@ -26844,7 +26844,7 @@ SubItems:
- - SRD: [Iron Golem](srd_monsters_iron_golem.md)
+ - Alias: [Iron Golem](srd_monsters_iron_golem.md)
@@ -27059,7 +27059,7 @@ SubItems:
- - SRD: [Stone Golem](srd_monsters_stone_golem.md)
+ - Alias: [Stone Golem](srd_monsters_stone_golem.md)
@@ -27256,7 +27256,7 @@ SubItems:
- - SRD: [Gorgon](srd_monsters_gorgon.md)
+ - Alias: [Gorgon](srd_monsters_gorgon.md)
@@ -27453,7 +27453,7 @@ SubItems:
- - SRD: [Ghoul](srd_monsters_ghoul.md)
+ - Alias: [Ghoul](srd_monsters_ghoul.md)
@@ -27627,7 +27627,7 @@ SubItems:
- - SRD: [Ghast](srd_monsters_ghast.md)
+ - Alias: [Ghast](srd_monsters_ghast.md)
@@ -27823,7 +27823,7 @@ SubItems:
- - SRD: [Grick](srd_monsters_grick.md)
+ - Alias: [Grick](srd_monsters_grick.md)
@@ -28007,7 +28007,7 @@ SubItems:
- - SRD: [Griffon](srd_monsters_griffon.md)
+ - Alias: [Griffon](srd_monsters_griffon.md)
@@ -28190,7 +28190,7 @@ SubItems:
- - SRD: [Sea Hag](srd_monsters_sea_hag.md)
+ - Alias: [Sea Hag](srd_monsters_sea_hag.md)
@@ -28382,7 +28382,7 @@ SubItems:
- - SRD: [Night Hag](srd_monsters_night_hag.md)
+ - Alias: [Night Hag](srd_monsters_night_hag.md)
@@ -28602,7 +28602,7 @@ SubItems:
- - SRD: [Green Hag](srd_monsters_green_hag.md)
+ - Alias: [Green Hag](srd_monsters_green_hag.md)
@@ -28809,7 +28809,7 @@ SubItems:
- - SRD: [Harpy](srd_monsters_harpy.md)
+ - Alias: [Harpy](srd_monsters_harpy.md)
@@ -28999,7 +28999,7 @@ SubItems:
- - SRD: [Owlbear](srd_monsters_owlbear.md)
+ - Alias: [Owlbear](srd_monsters_owlbear.md)
@@ -29183,7 +29183,7 @@ SubItems:
- - SRD: [Hippogriff](srd_monsters_hippogriff.md)
+ - Alias: [Hippogriff](srd_monsters_hippogriff.md)
@@ -29366,7 +29366,7 @@ SubItems:
- - SRD: [Hobgoblin](srd_monsters_hobgoblin.md)
+ - Alias: [Hobgoblin](srd_monsters_hobgoblin.md)
@@ -29714,7 +29714,7 @@ SubItems:
- - SRD: [Lizardfolk](srd_monsters_lizardfolk.md)
+ - Alias: [Lizardfolk](srd_monsters_lizardfolk.md)
@@ -30123,7 +30123,7 @@ SubItems:
- - SRD: [Merfolk](srd_monsters_merfolk.md)
+ - Alias: [Merfolk](srd_monsters_merfolk.md)
@@ -30290,7 +30290,7 @@ SubItems:
- - SRD: [Homunculus](srd_monsters_homunculus.md)
+ - Alias: [Homunculus](srd_monsters_homunculus.md)
@@ -30462,7 +30462,7 @@ SubItems:
- - SRD: [Hydra](srd_monsters_hydra.md)
+ - Alias: [Hydra](srd_monsters_hydra.md)
@@ -30663,7 +30663,7 @@ SubItems:
- - SRD: [Kobold](srd_monsters_kobold.md)
+ - Alias: [Kobold](srd_monsters_kobold.md)
@@ -31025,7 +31025,7 @@ SubItems:
- - SRD: [Kraken](srd_monsters_kraken.md)
+ - Alias: [Kraken](srd_monsters_kraken.md)
@@ -31281,7 +31281,7 @@ SubItems:
- - SRD: [Lamia](srd_monsters_lamia.md)
+ - Alias: [Lamia](srd_monsters_lamia.md)
@@ -31498,7 +31498,7 @@ SubItems:
- - SRD: [Lich](srd_monsters_lich.md)
+ - Alias: [Lich](srd_monsters_lich.md)
@@ -31797,7 +31797,7 @@ SubItems:
- - SRD: [Unicorn](srd_monsters_unicorn.md)
+ - Alias: [Unicorn](srd_monsters_unicorn.md)
@@ -32060,7 +32060,7 @@ SubItems:
- - SRD: [Werewolf](srd_monsters_werewolf.md)
+ - Alias: [Werewolf](srd_monsters_werewolf.md)
@@ -32269,7 +32269,7 @@ SubItems:
- - SRD: [Werebear](srd_monsters_werebear.md)
+ - Alias: [Werebear](srd_monsters_werebear.md)
@@ -32478,7 +32478,7 @@ SubItems:
- - SRD: [Wererat](srd_monsters_wererat.md)
+ - Alias: [Wererat](srd_monsters_wererat.md)
@@ -32687,7 +32687,7 @@ SubItems:
- - SRD: [Wereboar](srd_monsters_wereboar.md)
+ - Alias: [Wereboar](srd_monsters_wereboar.md)
@@ -32890,7 +32890,7 @@ SubItems:
- - SRD: [Weretiger](srd_monsters_weretiger.md)
+ - Alias: [Weretiger](srd_monsters_weretiger.md)
@@ -33117,7 +33117,7 @@ SubItems:
- - SRD: [Magmin](srd_monsters_magmin.md)
+ - Alias: [Magmin](srd_monsters_magmin.md)
@@ -33307,7 +33307,7 @@ SubItems:
- - SRD: [Cloaker](srd_monsters_cloaker.md)
+ - Alias: [Cloaker](srd_monsters_cloaker.md)
@@ -33533,7 +33533,7 @@ SubItems:
- - SRD: [Darkmantle](srd_monsters_darkmantle.md)
+ - Alias: [Darkmantle](srd_monsters_darkmantle.md)
@@ -33728,7 +33728,7 @@ SubItems:
- - SRD: [Manticore](srd_monsters_manticore.md)
+ - Alias: [Manticore](srd_monsters_manticore.md)
@@ -33918,7 +33918,7 @@ SubItems:
- - SRD: [Medusa](srd_monsters_medusa.md)
+ - Alias: [Medusa](srd_monsters_medusa.md)
@@ -34129,7 +34129,7 @@ SubItems:
- - SRD: [Ice Mephit](srd_monsters_ice_mephit.md)
+ - Alias: [Ice Mephit](srd_monsters_ice_mephit.md)
@@ -34340,7 +34340,7 @@ SubItems:
- - SRD: [Magma Mephit](srd_monsters_magma_mephit.md)
+ - Alias: [Magma Mephit](srd_monsters_magma_mephit.md)
@@ -34545,7 +34545,7 @@ SubItems:
- - SRD: [Dust Mephit](srd_monsters_dust_mephit.md)
+ - Alias: [Dust Mephit](srd_monsters_dust_mephit.md)
@@ -34748,7 +34748,7 @@ SubItems:
- - SRD: [Steam Mephit](srd_monsters_steam_mephit.md)
+ - Alias: [Steam Mephit](srd_monsters_steam_mephit.md)
@@ -34937,7 +34937,7 @@ SubItems:
- - SRD: [Merrow](srd_monsters_merrow.md)
+ - Alias: [Merrow](srd_monsters_merrow.md)
@@ -35135,7 +35135,7 @@ SubItems:
- - SRD: [Mimic](srd_monsters_mimic.md)
+ - Alias: [Mimic](srd_monsters_mimic.md)
@@ -35349,7 +35349,7 @@ SubItems:
- - SRD: [Minotaur](srd_monsters_minotaur.md)
+ - Alias: [Minotaur](srd_monsters_minotaur.md)
@@ -35545,7 +35545,7 @@ SubItems:
- - SRD: [Hell Hound](srd_monsters_hell_hound.md)
+ - Alias: [Hell Hound](srd_monsters_hell_hound.md)
@@ -35731,7 +35731,7 @@ SubItems:
- - SRD: [Mummy](srd_monsters_mummy.md)
+ - Alias: [Mummy](srd_monsters_mummy.md)
@@ -35931,7 +35931,7 @@ SubItems:
- - SRD: [Mummy Lord](srd_monsters_mummy_lord.md)
+ - Alias: [Mummy Lord](srd_monsters_mummy_lord.md)
@@ -36249,7 +36249,7 @@ SubItems:
- - SRD: [Spirit Naga](srd_monsters_spirit_naga.md)
+ - Alias: [Spirit Naga](srd_monsters_spirit_naga.md)
@@ -36471,7 +36471,7 @@ SubItems:
- - SRD: [Guardian Naga](srd_monsters_guardian_naga.md)
+ - Alias: [Guardian Naga](srd_monsters_guardian_naga.md)
@@ -36712,7 +36712,7 @@ SubItems:
- - SRD: [Wight](srd_monsters_wight.md)
+ - Alias: [Wight](srd_monsters_wight.md)
@@ -36933,7 +36933,7 @@ SubItems:
- - SRD: [Animated Armor](srd_monsters_animated_armor.md)
+ - Alias: [Animated Armor](srd_monsters_animated_armor.md)
@@ -37119,7 +37119,7 @@ SubItems:
- - SRD: [Flying Sword](srd_monsters_flying_sword.md)
+ - Alias: [Flying Sword](srd_monsters_flying_sword.md)
@@ -37304,7 +37304,7 @@ SubItems:
- - SRD: [Rug of Smothering](srd_monsters_rug_of_smothering.md)
+ - Alias: [Rug of Smothering](srd_monsters_rug_of_smothering.md)
@@ -37499,7 +37499,7 @@ SubItems:
- - SRD: [Ogre](srd_monsters_ogre.md)
+ - Alias: [Ogre](srd_monsters_ogre.md)
@@ -37663,7 +37663,7 @@ SubItems:
- - SRD: [Shadow](srd_monsters_shadow.md)
+ - Alias: [Shadow](srd_monsters_shadow.md)
@@ -37871,7 +37871,7 @@ SubItems:
- - SRD: [Oni](srd_monsters_oni.md)
+ - Alias: [Oni](srd_monsters_oni.md)
@@ -38449,7 +38449,7 @@ SubItems:
- - SRD: [Otyugh](srd_monsters_otyugh.md)
+ - Alias: [Otyugh](srd_monsters_otyugh.md)
@@ -38650,7 +38650,7 @@ SubItems:
- - SRD: [Rust Monster](srd_monsters_rust_monster.md)
+ - Alias: [Rust Monster](srd_monsters_rust_monster.md)
@@ -39065,7 +39065,7 @@ SubItems:
- - SRD: [Pegasus](srd_monsters_pegasus.md)
+ - Alias: [Pegasus](srd_monsters_pegasus.md)
@@ -39223,7 +39223,7 @@ SubItems:
- - SRD: [Pseudodragon](srd_monsters_pseudodragon.md)
+ - Alias: [Pseudodragon](srd_monsters_pseudodragon.md)
@@ -39414,7 +39414,7 @@ SubItems:
- - SRD: [Rakshasa](srd_monsters_rakshasa.md)
+ - Alias: [Rakshasa](srd_monsters_rakshasa.md)
@@ -39804,7 +39804,7 @@ SubItems:
- - SRD: [Roc](srd_monsters_roc.md)
+ - Alias: [Roc](srd_monsters_roc.md)
@@ -39994,7 +39994,7 @@ SubItems:
- - SRD: [Sahuagin](srd_monsters_sahuagin.md)
+ - Alias: [Sahuagin](srd_monsters_sahuagin.md)
@@ -40441,7 +40441,7 @@ SubItems:
- - SRD: [Salamander](srd_monsters_salamander.md)
+ - Alias: [Salamander](srd_monsters_salamander.md)
@@ -40643,7 +40643,7 @@ SubItems:
- - SRD: [Satyr](srd_monsters_satyr.md)
+ - Alias: [Satyr](srd_monsters_satyr.md)
@@ -41245,7 +41245,7 @@ SubItems:
- - SRD: [Specter](srd_monsters_specter.md)
+ - Alias: [Specter](srd_monsters_specter.md)
@@ -41432,7 +41432,7 @@ SubItems:
- - SRD: [Androsphinx](srd_monsters_androsphinx.md)
+ - Alias: [Androsphinx](srd_monsters_androsphinx.md)
@@ -41733,7 +41733,7 @@ SubItems:
- - SRD: [Gynosphinx](srd_monsters_gynosphinx.md)
+ - Alias: [Gynosphinx](srd_monsters_gynosphinx.md)
@@ -42003,7 +42003,7 @@ SubItems:
- - SRD: [Skeleton](srd_monsters_skeleton.md)
+ - Alias: [Skeleton](srd_monsters_skeleton.md)
@@ -42182,7 +42182,7 @@ SubItems:
- - SRD: [Warhorse Skeleton](srd_monsters_warhorse_skeleton.md)
+ - Alias: [Warhorse Skeleton](srd_monsters_warhorse_skeleton.md)
@@ -42348,7 +42348,7 @@ SubItems:
- - SRD: [Minotaur Skeleton](srd_monsters_minotaur_skeleton.md)
+ - Alias: [Minotaur Skeleton](srd_monsters_minotaur_skeleton.md)
@@ -42537,7 +42537,7 @@ SubItems:
- - SRD: [Stirge](srd_monsters_stirge.md)
+ - Alias: [Stirge](srd_monsters_stirge.md)
@@ -42697,7 +42697,7 @@ SubItems:
- - SRD: [Succubus](srd_monsters_succubus.md)
+ - Alias: [Succubus](srd_monsters_succubus.md)
@@ -42904,7 +42904,7 @@ SubItems:
- - SRD: [Treant](srd_monsters_treant.md)
+ - Alias: [Treant](srd_monsters_treant.md)
@@ -43107,7 +43107,7 @@ SubItems:
- - SRD: [Tarrasque](srd_monsters_tarrasque.md)
+ - Alias: [Tarrasque](srd_monsters_tarrasque.md)
@@ -43756,7 +43756,7 @@ SubItems:
- - SRD: [Shambling Mound](srd_monsters_shambling_mound.md)
+ - Alias: [Shambling Mound](srd_monsters_shambling_mound.md)
@@ -43953,7 +43953,7 @@ SubItems:
- - SRD: [Grimlock](srd_monsters_grimlock.md)
+ - Alias: [Grimlock](srd_monsters_grimlock.md)
@@ -44139,7 +44139,7 @@ SubItems:
- - SRD: [Invisible Stalker](srd_monsters_invisible_stalker.md)
+ - Alias: [Invisible Stalker](srd_monsters_invisible_stalker.md)
@@ -44329,7 +44329,7 @@ SubItems:
- - SRD: [Troll](srd_monsters_troll.md)
+ - Alias: [Troll](srd_monsters_troll.md)
@@ -44521,7 +44521,7 @@ SubItems:
- - SRD: [Vampire](srd_monsters_vampire.md)
+ - Alias: [Vampire](srd_monsters_vampire.md)
@@ -44851,7 +44851,7 @@ SubItems:
- - SRD: [Vampire Spawn](srd_monsters_vampire_spawn.md)
+ - Alias: [Vampire Spawn](srd_monsters_vampire_spawn.md)
@@ -45089,7 +45089,7 @@ SubItems:
- - SRD: [Gelatinous Cube](srd_monsters_gelatinous_cube.md)
+ - Alias: [Gelatinous Cube](srd_monsters_gelatinous_cube.md)
@@ -45311,7 +45311,7 @@ SubItems:
- - SRD: [Ochre Jelly](srd_monsters_ochre_jelly.md)
+ - Alias: [Ochre Jelly](srd_monsters_ochre_jelly.md)
@@ -45508,7 +45508,7 @@ SubItems:
- - SRD: [Black Pudding](srd_monsters_black_pudding.md)
+ - Alias: [Black Pudding](srd_monsters_black_pudding.md)
@@ -45712,7 +45712,7 @@ SubItems:
- - SRD: [Gray Ooze](srd_monsters_gray_ooze.md)
+ - Alias: [Gray Ooze](srd_monsters_gray_ooze.md)
@@ -45914,7 +45914,7 @@ SubItems:
- - SRD: [Purple Worm](srd_monsters_purple_worm.md)
+ - Alias: [Purple Worm](srd_monsters_purple_worm.md)
@@ -46110,7 +46110,7 @@ SubItems:
- - SRD: [Wyvern](srd_monsters_wyvern.md)
+ - Alias: [Wyvern](srd_monsters_wyvern.md)
@@ -46295,7 +46295,7 @@ SubItems:
- - SRD: [Xorn](srd_monsters_xorn.md)
+ - Alias: [Xorn](srd_monsters_xorn.md)
@@ -46498,7 +46498,7 @@ SubItems:
- - SRD: [Zombie](srd_monsters_zombie.md)
+ - Alias: [Zombie](srd_monsters_zombie.md)
@@ -46675,7 +46675,7 @@ SubItems:
- - SRD: [Ogre Zombie](srd_monsters_ogre_zombie.md)
+ - Alias: [Ogre Zombie](srd_monsters_ogre_zombie.md)
@@ -46851,7 +46851,7 @@ SubItems:
- - SRD: [Eagle](srd_monsters_eagle.md)
+ - Alias: [Eagle](srd_monsters_eagle.md)
@@ -47017,7 +47017,7 @@ SubItems:
- - SRD: [Giant Eagle](srd_monsters_giant_eagle.md)
+ - Alias: [Giant Eagle](srd_monsters_giant_eagle.md)
@@ -47201,7 +47201,7 @@ SubItems:
- - SRD: [Spider](srd_monsters_spider.md)
+ - Alias: [Spider](srd_monsters_spider.md)
@@ -47379,7 +47379,7 @@ SubItems:
- - SRD: [Phase Spider](srd_monsters_phase_spider.md)
+ - Alias: [Phase Spider](srd_monsters_phase_spider.md)
@@ -47557,7 +47557,7 @@ SubItems:
- - SRD: [Giant Spider](srd_monsters_giant_spider.md)
+ - Alias: [Giant Spider](srd_monsters_giant_spider.md)
@@ -47747,7 +47747,7 @@ SubItems:
- - SRD: [Giant Wolf Spider](srd_monsters_giant_wolf_spider.md)
+ - Alias: [Giant Wolf Spider](srd_monsters_giant_wolf_spider.md)
@@ -47926,7 +47926,7 @@ SubItems:
- - SRD: [Awakened Tree](srd_monsters_awakened_tree.md)
+ - Alias: [Awakened Tree](srd_monsters_awakened_tree.md)
@@ -48099,7 +48099,7 @@ SubItems:
- - SRD: [Awakened Shrub](srd_monsters_awakened_shrub.md)
+ - Alias: [Awakened Shrub](srd_monsters_awakened_shrub.md)
@@ -48270,7 +48270,7 @@ SubItems:
- - SRD: [Baboon](srd_monsters_baboon.md)
+ - Alias: [Baboon](srd_monsters_baboon.md)
@@ -48429,7 +48429,7 @@ SubItems:
- - SRD: [Axe Beak](srd_monsters_axe_beak.md)
+ - Alias: [Axe Beak](srd_monsters_axe_beak.md)
@@ -48577,7 +48577,7 @@ SubItems:
- - SRD: [Weasel](srd_monsters_weasel.md)
+ - Alias: [Weasel](srd_monsters_weasel.md)
@@ -48743,7 +48743,7 @@ SubItems:
- - SRD: [Giant Weasel](srd_monsters_giant_weasel.md)
+ - Alias: [Giant Weasel](srd_monsters_giant_weasel.md)
@@ -48908,7 +48908,7 @@ SubItems:
- - SRD: [Badger](srd_monsters_badger.md)
+ - Alias: [Badger](srd_monsters_badger.md)
@@ -49067,7 +49067,7 @@ SubItems:
- - SRD: [Giant Badger](srd_monsters_giant_badger.md)
+ - Alias: [Giant Badger](srd_monsters_giant_badger.md)
@@ -49245,7 +49245,7 @@ SubItems:
- - SRD: [Jackal](srd_monsters_jackal.md)
+ - Alias: [Jackal](srd_monsters_jackal.md)
@@ -49416,7 +49416,7 @@ SubItems:
- - SRD: [Camel](srd_monsters_camel.md)
+ - Alias: [Camel](srd_monsters_camel.md)
@@ -49564,7 +49564,7 @@ SubItems:
- - SRD: [Cat](srd_monsters_cat.md)
+ - Alias: [Cat](srd_monsters_cat.md)
@@ -49729,7 +49729,7 @@ SubItems:
- - SRD: [Bat](srd_monsters_bat.md)
+ - Alias: [Bat](srd_monsters_bat.md)
@@ -49894,7 +49894,7 @@ SubItems:
- - SRD: [Giant Bat](srd_monsters_giant_bat.md)
+ - Alias: [Giant Bat](srd_monsters_giant_bat.md)
@@ -50059,7 +50059,7 @@ SubItems:
- - SRD: [Warhorse](srd_monsters_warhorse.md)
+ - Alias: [Warhorse](srd_monsters_warhorse.md)
@@ -50575,7 +50575,7 @@ SubItems:
- - SRD: [Riding Horse](srd_monsters_riding_horse.md)
+ - Alias: [Riding Horse](srd_monsters_riding_horse.md)
@@ -50722,7 +50722,7 @@ SubItems:
- - SRD: [Draft Horse](srd_monsters_draft_horse.md)
+ - Alias: [Draft Horse](srd_monsters_draft_horse.md)
@@ -50869,7 +50869,7 @@ SubItems:
- - SRD: [Goat](srd_monsters_goat.md)
+ - Alias: [Goat](srd_monsters_goat.md)
@@ -51034,7 +51034,7 @@ SubItems:
- - SRD: [Giant Goat](srd_monsters_giant_goat.md)
+ - Alias: [Giant Goat](srd_monsters_giant_goat.md)
@@ -51199,7 +51199,7 @@ SubItems:
- - SRD: [Deer](srd_monsters_deer.md)
+ - Alias: [Deer](srd_monsters_deer.md)
@@ -51347,7 +51347,7 @@ SubItems:
- - SRD: [Death Dog](srd_monsters_death_dog.md)
+ - Alias: [Death Dog](srd_monsters_death_dog.md)
@@ -51519,7 +51519,7 @@ SubItems:
- - SRD: [Blink Dog](srd_monsters_blink_dog.md)
+ - Alias: [Blink Dog](srd_monsters_blink_dog.md)
@@ -51691,7 +51691,7 @@ SubItems:
- - SRD: [Owl](srd_monsters_owl.md)
+ - Alias: [Owl](srd_monsters_owl.md)
@@ -51863,7 +51863,7 @@ SubItems:
- - SRD: [Giant Owl](srd_monsters_giant_owl.md)
+ - Alias: [Giant Owl](srd_monsters_giant_owl.md)
@@ -52035,7 +52035,7 @@ SubItems:
- - SRD: [Raven](srd_monsters_raven.md)
+ - Alias: [Raven](srd_monsters_raven.md)
@@ -52201,7 +52201,7 @@ SubItems:
- - SRD: [Crab](srd_monsters_crab.md)
+ - Alias: [Crab](srd_monsters_crab.md)
@@ -52367,7 +52367,7 @@ SubItems:
- - SRD: [Giant Crab](srd_monsters_giant_crab.md)
+ - Alias: [Giant Crab](srd_monsters_giant_crab.md)
@@ -52532,7 +52532,7 @@ SubItems:
- - SRD: [Giant Toad](srd_monsters_giant_toad.md)
+ - Alias: [Giant Toad](srd_monsters_giant_toad.md)
@@ -52710,7 +52710,7 @@ SubItems:
- - SRD: [Crocodile](srd_monsters_crocodile.md)
+ - Alias: [Crocodile](srd_monsters_crocodile.md)
@@ -52876,7 +52876,7 @@ SubItems:
- - SRD: [Giant Crocodile](srd_monsters_giant_crocodile.md)
+ - Alias: [Giant Crocodile](srd_monsters_giant_crocodile.md)
@@ -53059,7 +53059,7 @@ SubItems:
- - SRD: [Elk](srd_monsters_elk.md)
+ - Alias: [Elk](srd_monsters_elk.md)
@@ -53231,7 +53231,7 @@ SubItems:
- - SRD: [Giant Elk](srd_monsters_giant_elk.md)
+ - Alias: [Giant Elk](srd_monsters_giant_elk.md)
@@ -53408,7 +53408,7 @@ SubItems:
- - SRD: [Elephant](srd_monsters_elephant.md)
+ - Alias: [Elephant](srd_monsters_elephant.md)
@@ -53580,7 +53580,7 @@ SubItems:
- - SRD: [Killer Whale](srd_monsters_killer_whale.md)
+ - Alias: [Killer Whale](srd_monsters_killer_whale.md)
@@ -53758,7 +53758,7 @@ SubItems:
- - SRD: [Hawk](srd_monsters_hawk.md)
+ - Alias: [Hawk](srd_monsters_hawk.md)
@@ -53924,7 +53924,7 @@ SubItems:
- - SRD: [Blood Hawk](srd_monsters_blood_hawk.md)
+ - Alias: [Blood Hawk](srd_monsters_blood_hawk.md)
@@ -54096,7 +54096,7 @@ SubItems:
- - SRD: [Ape](srd_monsters_ape.md)
+ - Alias: [Ape](srd_monsters_ape.md)
@@ -54267,7 +54267,7 @@ SubItems:
- - SRD: [Frog](srd_monsters_frog.md)
+ - Alias: [Frog](srd_monsters_frog.md)
@@ -54421,7 +54421,7 @@ SubItems:
- - SRD: [Giant Frog](srd_monsters_giant_frog.md)
+ - Alias: [Giant Frog](srd_monsters_giant_frog.md)
@@ -54604,7 +54604,7 @@ SubItems:
- - SRD: [Giant Wasp](srd_monsters_giant_wasp.md)
+ - Alias: [Giant Wasp](srd_monsters_giant_wasp.md)
@@ -55086,7 +55086,7 @@ SubItems:
- - SRD: [Sea Horse](srd_monsters_sea_horse.md)
+ - Alias: [Sea Horse](srd_monsters_sea_horse.md)
@@ -55227,7 +55227,7 @@ SubItems:
- - SRD: [Giant Sea Horse](srd_monsters_giant_sea_horse.md)
+ - Alias: [Giant Sea Horse](srd_monsters_giant_sea_horse.md)
@@ -55393,7 +55393,7 @@ SubItems:
- - SRD: [Hyena](srd_monsters_hyena.md)
+ - Alias: [Hyena](srd_monsters_hyena.md)
@@ -55559,7 +55559,7 @@ SubItems:
- - SRD: [Giant Hyena](srd_monsters_giant_hyena.md)
+ - Alias: [Giant Hyena](srd_monsters_giant_hyena.md)
@@ -55724,7 +55724,7 @@ SubItems:
- - SRD: [Lizard](srd_monsters_lizard.md)
+ - Alias: [Lizard](srd_monsters_lizard.md)
@@ -55871,7 +55871,7 @@ SubItems:
- - SRD: [Giant Lizard](srd_monsters_giant_lizard.md)
+ - Alias: [Giant Lizard](srd_monsters_giant_lizard.md)
@@ -56019,7 +56019,7 @@ SubItems:
- - SRD: [Lion](srd_monsters_lion.md)
+ - Alias: [Lion](srd_monsters_lion.md)
@@ -56209,7 +56209,7 @@ SubItems:
- - SRD: [Wolf](srd_monsters_wolf.md)
+ - Alias: [Wolf](srd_monsters_wolf.md)
@@ -56382,7 +56382,7 @@ SubItems:
- - SRD: [Winter Wolf](srd_monsters_winter_wolf.md)
+ - Alias: [Winter Wolf](srd_monsters_winter_wolf.md)
@@ -56578,7 +56578,7 @@ SubItems:
- - SRD: [Dire Wolf](srd_monsters_dire_wolf.md)
+ - Alias: [Dire Wolf](srd_monsters_dire_wolf.md)
@@ -56749,7 +56749,7 @@ SubItems:
- - SRD: [Mammoth](srd_monsters_mammoth.md)
+ - Alias: [Mammoth](srd_monsters_mammoth.md)
@@ -56921,7 +56921,7 @@ SubItems:
- - SRD: [Mastiff](srd_monsters_mastiff.md)
+ - Alias: [Mastiff](srd_monsters_mastiff.md)
@@ -57086,7 +57086,7 @@ SubItems:
- - SRD: [Giant Centipede](srd_monsters_giant_centipede.md)
+ - Alias: [Giant Centipede](srd_monsters_giant_centipede.md)
@@ -57233,7 +57233,7 @@ SubItems:
- - SRD: [Mule](srd_monsters_mule.md)
+ - Alias: [Mule](srd_monsters_mule.md)
@@ -57400,7 +57400,7 @@ SubItems:
- - SRD: [Swarm of Bats](srd_monsters_swarm_of_bats.md)
+ - Alias: [Swarm of Bats](srd_monsters_swarm_of_bats.md)
@@ -57586,7 +57586,7 @@ SubItems:
- - SRD: [Swarm of Ravens](srd_monsters_swarm_of_ravens.md)
+ - Alias: [Swarm of Ravens](srd_monsters_swarm_of_ravens.md)
@@ -57765,7 +57765,7 @@ SubItems:
- - SRD: [Swarm of Quippers](srd_monsters_swarm_of_quippers.md)
+ - Alias: [Swarm of Quippers](srd_monsters_swarm_of_quippers.md)
@@ -57950,7 +57950,7 @@ SubItems:
- - SRD: [Swarm of Rats](srd_monsters_swarm_of_rats.md)
+ - Alias: [Swarm of Rats](srd_monsters_swarm_of_rats.md)
@@ -58129,7 +58129,7 @@ SubItems:
- - SRD: [Swarm of Poisonous Snakes](srd_monsters_swarm_of_poisonous_snakes.md)
+ - Alias: [Swarm of Poisonous Snakes](srd_monsters_swarm_of_poisonous_snakes.md)
@@ -58302,7 +58302,7 @@ SubItems:
- - SRD: [Swarm of Insects](srd_monsters_swarm_of_insects.md)
+ - Alias: [Swarm of Insects](srd_monsters_swarm_of_insects.md)
@@ -58522,7 +58522,7 @@ SubItems:
- - SRD: [Brown Bear](srd_monsters_brown_bear.md)
+ - Alias: [Brown Bear](srd_monsters_brown_bear.md)
@@ -58705,7 +58705,7 @@ SubItems:
- - SRD: [Black Bear](srd_monsters_black_bear.md)
+ - Alias: [Black Bear](srd_monsters_black_bear.md)
@@ -58887,7 +58887,7 @@ SubItems:
- - SRD: [Polar Bear](srd_monsters_polar_bear.md)
+ - Alias: [Polar Bear](srd_monsters_polar_bear.md)
@@ -59071,7 +59071,7 @@ SubItems:
- - SRD: [Panther](srd_monsters_panther.md)
+ - Alias: [Panther](srd_monsters_panther.md)
@@ -59255,7 +59255,7 @@ SubItems:
- - SRD: [Octopus](srd_monsters_octopus.md)
+ - Alias: [Octopus](srd_monsters_octopus.md)
@@ -59439,7 +59439,7 @@ SubItems:
- - SRD: [Giant Octopus](srd_monsters_giant_octopus.md)
+ - Alias: [Giant Octopus](srd_monsters_giant_octopus.md)
@@ -59628,7 +59628,7 @@ SubItems:
- - SRD: [Quipper](srd_monsters_quipper.md)
+ - Alias: [Quipper](srd_monsters_quipper.md)
@@ -59793,7 +59793,7 @@ SubItems:
- - SRD: [Pony](srd_monsters_pony.md)
+ - Alias: [Pony](srd_monsters_pony.md)
@@ -59940,7 +59940,7 @@ SubItems:
- - SRD: [Giant Fire Beetle](srd_monsters_giant_fire_beetle.md)
+ - Alias: [Giant Fire Beetle](srd_monsters_giant_fire_beetle.md)
@@ -60099,7 +60099,7 @@ SubItems:
- - SRD: [Rat](srd_monsters_rat.md)
+ - Alias: [Rat](srd_monsters_rat.md)
@@ -60258,7 +60258,7 @@ SubItems:
- - SRD: [Giant Rat](srd_monsters_giant_rat.md)
+ - Alias: [Giant Rat](srd_monsters_giant_rat.md)
@@ -60448,7 +60448,7 @@ SubItems:
- - SRD: [Hunter Shark](srd_monsters_hunter_shark.md)
+ - Alias: [Hunter Shark](srd_monsters_hunter_shark.md)
@@ -60620,7 +60620,7 @@ SubItems:
- - SRD: [Reef Shark](srd_monsters_reef_shark.md)
+ - Alias: [Reef Shark](srd_monsters_reef_shark.md)
@@ -60792,7 +60792,7 @@ SubItems:
- - SRD: [Giant Shark](srd_monsters_giant_shark.md)
+ - Alias: [Giant Shark](srd_monsters_giant_shark.md)
@@ -60963,7 +60963,7 @@ SubItems:
- - SRD: [Rhinoceros](srd_monsters_rhinoceros.md)
+ - Alias: [Rhinoceros](srd_monsters_rhinoceros.md)
@@ -61128,7 +61128,7 @@ SubItems:
- - SRD: [Boar](srd_monsters_boar.md)
+ - Alias: [Boar](srd_monsters_boar.md)
@@ -61293,7 +61293,7 @@ SubItems:
- - SRD: [Giant Boar](srd_monsters_giant_boar.md)
+ - Alias: [Giant Boar](srd_monsters_giant_boar.md)
@@ -61458,7 +61458,7 @@ SubItems:
- - SRD: [Scorpion](srd_monsters_scorpion.md)
+ - Alias: [Scorpion](srd_monsters_scorpion.md)
@@ -61605,7 +61605,7 @@ SubItems:
- - SRD: [Giant Scorpion](srd_monsters_giant_scorpion.md)
+ - Alias: [Giant Scorpion](srd_monsters_giant_scorpion.md)
@@ -61770,7 +61770,7 @@ SubItems:
- - SRD: [Constrictor Snake](srd_monsters_constrictor_snake.md)
+ - Alias: [Constrictor Snake](srd_monsters_constrictor_snake.md)
@@ -61930,7 +61930,7 @@ SubItems:
- - SRD: [Giant Constrictor Snake](srd_monsters_giant_constrictor_snake.md)
+ - Alias: [Giant Constrictor Snake](srd_monsters_giant_constrictor_snake.md)
@@ -62095,7 +62095,7 @@ SubItems:
- - SRD: [Poisonous Snake](srd_monsters_poisonous_snake.md)
+ - Alias: [Poisonous Snake](srd_monsters_poisonous_snake.md)
@@ -62243,7 +62243,7 @@ SubItems:
- - SRD: [Giant Poisonous Snake](srd_monsters_giant_poisonous_snake.md)
+ - Alias: [Giant Poisonous Snake](srd_monsters_giant_poisonous_snake.md)
@@ -62402,7 +62402,7 @@ SubItems:
- - SRD: [Flying Snake](srd_monsters_flying_snake.md)
+ - Alias: [Flying Snake](srd_monsters_flying_snake.md)
@@ -62562,7 +62562,7 @@ SubItems:
- - SRD: [Giant Ape](srd_monsters_giant_ape.md)
+ - Alias: [Giant Ape](srd_monsters_giant_ape.md)
@@ -62734,7 +62734,7 @@ SubItems:
- - SRD: [Tiger](srd_monsters_tiger.md)
+ - Alias: [Tiger](srd_monsters_tiger.md)
@@ -62918,7 +62918,7 @@ SubItems:
- - SRD: [Saber-Toothed Tiger](srd_monsters_saber_toothed_tiger.md)
+ - Alias: [Saber-Toothed Tiger](srd_monsters_saber_toothed_tiger.md)
@@ -63102,7 +63102,7 @@ SubItems:
- - SRD: [Vulture](srd_monsters_vulture.md)
+ - Alias: [Vulture](srd_monsters_vulture.md)
@@ -63274,7 +63274,7 @@ SubItems:
- - SRD: [Giant Vulture](srd_monsters_giant_vulture.md)
+ - Alias: [Giant Vulture](srd_monsters_giant_vulture.md)
@@ -63464,7 +63464,7 @@ SubItems:
- - SRD: [Worg](srd_monsters_worg.md)
+ - Alias: [Worg](srd_monsters_worg.md)
@@ -63629,7 +63629,7 @@ SubItems:
- - SRD: [Acolyte](srd_monsters_acolyte.md)
+ - Alias: [Acolyte](srd_monsters_acolyte.md)
@@ -63806,7 +63806,7 @@ SubItems:
- - SRD: [Archmage](srd_monsters_archmage.md)
+ - Alias: [Archmage](srd_monsters_archmage.md)
@@ -64061,7 +64061,7 @@ SubItems:
- - SRD: [Assassin](srd_monsters_assassin.md)
+ - Alias: [Assassin](srd_monsters_assassin.md)
@@ -64265,7 +64265,7 @@ SubItems:
- - SRD: [Bandit](srd_monsters_bandit.md)
+ - Alias: [Bandit](srd_monsters_bandit.md)
@@ -64421,7 +64421,7 @@ SubItems:
- - SRD: [Berserker](srd_monsters_berserker.md)
+ - Alias: [Berserker](srd_monsters_berserker.md)
@@ -64579,7 +64579,7 @@ SubItems:
- - SRD: [Bandit Captain](srd_monsters_bandit_captain.md)
+ - Alias: [Bandit Captain](srd_monsters_bandit_captain.md)
@@ -64766,7 +64766,7 @@ SubItems:
- - SRD: [Knight](srd_monsters_knight.md)
+ - Alias: [Knight](srd_monsters_knight.md)
@@ -64965,7 +64965,7 @@ SubItems:
- - SRD: [Druid](srd_monsters_druid.md)
+ - Alias: [Druid](srd_monsters_druid.md)
@@ -65146,7 +65146,7 @@ SubItems:
- - SRD: [Priest](srd_monsters_priest.md)
+ - Alias: [Priest](srd_monsters_priest.md)
@@ -65345,7 +65345,7 @@ SubItems:
- - SRD: [Scout](srd_monsters_scout.md)
+ - Alias: [Scout](srd_monsters_scout.md)
@@ -65526,7 +65526,7 @@ SubItems:
- - SRD: [Spy](srd_monsters_spy.md)
+ - Alias: [Spy](srd_monsters_spy.md)
@@ -65713,7 +65713,7 @@ SubItems:
- - SRD: [Cult Fanatic](srd_monsters_cult_fanatic.md)
+ - Alias: [Cult Fanatic](srd_monsters_cult_fanatic.md)
@@ -65906,7 +65906,7 @@ SubItems:
- - SRD: [Guard](srd_monsters_guard.md)
+ - Alias: [Guard](srd_monsters_guard.md)
@@ -66058,7 +66058,7 @@ SubItems:
- - SRD: [Gladiator](srd_monsters_gladiator.md)
+ - Alias: [Gladiator](srd_monsters_gladiator.md)
@@ -66268,7 +66268,7 @@ SubItems:
- - SRD: [Tribal Warrior](srd_monsters_tribal_warrior.md)
+ - Alias: [Tribal Warrior](srd_monsters_tribal_warrior.md)
@@ -66426,7 +66426,7 @@ SubItems:
- - SRD: [Mage](srd_monsters_mage.md)
+ - Alias: [Mage](srd_monsters_mage.md)
@@ -66631,7 +66631,7 @@ SubItems:
- - SRD: [Thug](srd_monsters_thug.md)
+ - Alias: [Thug](srd_monsters_thug.md)
@@ -66818,7 +66818,7 @@ SubItems:
- - SRD: [Cultist](srd_monsters_cultist.md)
+ - Alias: [Cultist](srd_monsters_cultist.md)
@@ -66981,7 +66981,7 @@ SubItems:
- - SRD: [Noble](srd_monsters_noble.md)
+ - Alias: [Noble](srd_monsters_noble.md)
@@ -67143,7 +67143,7 @@ SubItems:
- - SRD: [Commoner](srd_monsters_commoner.md)
+ - Alias: [Commoner](srd_monsters_commoner.md)
@@ -67288,7 +67288,7 @@ SubItems:
- - SRD: [Veteran](srd_monsters_veteran.md)
+ - Alias: [Veteran](srd_monsters_veteran.md)
@@ -67464,7 +67464,7 @@ AttributesDictionary: >+
- - SRD: [Monsters](srd_monsters.md)
+ - Alias: [Monsters](srd_monsters.md)
@@ -67482,7 +67482,7 @@ AttributesDictionary: >+
# Aboleth
- Source: (CEO p)(SRD p)
-- SRD: [Aboleth](srd_monsters_aboleth.md)
+- Alias: [Aboleth](srd_monsters_aboleth.md)
- Aberration de taille G, Loyal Mauvais
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 17 (armure naturelle)
@@ -67592,7 +67592,7 @@ Chaque fois que la cible [charmée](hd_conditions_charme.md) subit des dégâts,
# Âme-en-peine
- Source: (CEO p)(SRD p)
-- SRD: [Wraith](srd_monsters_wraith.md)
+- Alias: [Wraith](srd_monsters_wraith.md)
- Mort-vivant de taille M, Neutre Mauvais
- **Terrain** Collines / Vallées, Ruines extérieures, Ruines souterraines
- **Classe d'armure** 13
@@ -67673,7 +67673,7 @@ _Touché :_ 5 (1d4+3) dégâts tranchants.
# Déva
- Source: (CEO p)(SRD p)
-- SRD: [Deva](srd_monsters_deva.md)
+- Alias: [Deva](srd_monsters_deva.md)
- Céleste de taille M, Loyal Bon
- **Terrain**
- **Classe d'armure** 17 (armure naturelle)
@@ -67725,7 +67725,7 @@ _Touché :_ 7 (1d6+4) dégâts contondants plus 18 (4d8) dégâts radiants.
# Planétar
- Source: (CEO p)(SRD p)
-- SRD: [Planetar](srd_monsters_planetar.md)
+- Alias: [Planetar](srd_monsters_planetar.md)
- Céleste de taille G, Loyal Bon
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
@@ -67777,7 +67777,7 @@ _Touché :_ 21 (4d6+7) dégâts tranchants plus 22 (5d8) dégâts radiants.
# Solar
- Source: (CEO p)(SRD p)
-- SRD: [Solar](srd_monsters_solar.md)
+- Alias: [Solar](srd_monsters_solar.md)
- Céleste de taille G, Loyal Bon
- **Terrain**
- **Classe d'armure** 21 (armure naturelle)
@@ -67848,7 +67848,7 @@ Le solar peut effectuer 3 actions légendaires qu'il choisit parmi celles décri
# Ankheg
- Source: (CEO p)(SRD p)
-- SRD: [Ankheg](srd_monsters_ankheg.md)
+- Alias: [Ankheg](srd_monsters_ankheg.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane, Caverne naturelle
- **Classe d'armure** 14 (armure naturelle), 11 quand il est [à terre](hd_conditions_a_terre.md)
@@ -67878,7 +67878,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants plus 3 (1d6) dégâts d'acide. Si la
# Azer
- Source: (CEO p)(SRD p)
-- SRD: [Azer](srd_monsters_azer.md)
+- Alias: [Azer](srd_monsters_azer.md)
- Élémentaire de taille M, Loyal Neutre
- **Terrain** Plans élémentaires, Donjon maçonné
- **Classe d'armure** 17 (armure naturelle, bouclier)
@@ -67917,7 +67917,7 @@ _Touché :_ 7 (1d8+3) dégâts contondants ou 8 (1d10+3) dégâts contondants s'
# Babélien
- Source: (CEO p)(SRD p)
-- SRD: [Gibbering Mouther](srd_monsters_gibbering_mouther.md)
+- Alias: [Gibbering Mouther](srd_monsters_gibbering_mouther.md)
- Aberration de taille M, neutre
- **Terrain** Littoral, Mer / Océan, Caverne naturelle, Caverne sous-marine
- **Classe d'armure** 9
@@ -67956,7 +67956,7 @@ _Touché :_ 17 (5d6) dégâts perforants. Si la cible est de taille M ou plus pe
# Basilic
- Source: (CEO p)(SRD p)
-- SRD: [Basilisk](srd_monsters_basilisk.md)
+- Alias: [Basilisk](srd_monsters_basilisk.md)
- Créature monstrueuse de taille M, non-alignée
- **Terrain** Collines / Vallées, Montagnes, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
@@ -67996,7 +67996,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants plus 7 (2d6) dégâts de poison.
# Béhir
- Source: (CEO p)(SRD p)
-- SRD: [Behir](srd_monsters_behir.md)
+- Alias: [Behir](srd_monsters_behir.md)
- Créature monstrueuse de taille TG, Neutre Mauvais
- **Terrain** Désert chaud, Montagnes, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
@@ -68038,7 +68038,7 @@ _Touché :_ 22 (3d10+6) dégâts perforants.
# Bulette
- Source: (CEO p)(SRD p)
-- SRD: [Bulette](srd_monsters_bulette.md)
+- Alias: [Bulette](srd_monsters_bulette.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Caverne naturelle
- **Classe d'armure** 17 (armure naturelle)
@@ -68075,7 +68075,7 @@ Chacune de ces créatures doit réussir un [jet de sauvegarde](hd_abilities_jets
# Centaure
- Source: (CEO p)(SRD p)
-- SRD: [Centaur](srd_monsters_centaur.md)
+- Alias: [Centaur](srd_monsters_centaur.md)
- Créature monstrueuse de taille G, Neutre Bon
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
@@ -68156,7 +68156,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants et la cible doit réussir un [jet de
# Criard
- Source: (CEO p)(SRD p)
-- SRD: [Shrieker](srd_monsters_shrieker.md)
+- Alias: [Shrieker](srd_monsters_shrieker.md)
- Plante de taille M, non-alignée
- **Terrain** Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 5
@@ -68187,7 +68187,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants et la cible doit réussir un [jet de
# Moisissure violette
- Source: (CEO p)(SRD p)
-- SRD: [Violet Fungus](srd_monsters_violet_fungus.md)
+- Alias: [Violet Fungus](srd_monsters_violet_fungus.md)
- Plante de taille M, non-alignée
- **Terrain** Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 5
@@ -68222,7 +68222,7 @@ _Touché :_ 4 (1d8) dégâts nécrotiques.
# Chimère
- Source: (CEO p)(SRD p)
-- SRD: [Chimera](srd_monsters_chimera.md)
+- Alias: [Chimera](srd_monsters_chimera.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Bois / Forêt, Montagnes, Ruines extérieures
- **Classe d'armure** 14 (armure naturelle)
@@ -68263,7 +68263,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants.
# Chuul
- Source: (CEO p)(SRD p)
-- SRD: [Chuul](srd_monsters_chuul.md)
+- Alias: [Chuul](srd_monsters_chuul.md)
- Aberration de taille G, Chaotique Mauvais
- **Terrain** Mangrove / Marécage, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 16 (armure naturelle)
@@ -68306,7 +68306,7 @@ La cible est [paralysée](hd_conditions_paralyse.md) tant que ce poison fait eff
# Cockatrice
- Source: (CEO p)(SRD p)
-- SRD: [Cockatrice](srd_monsters_cockatrice.md)
+- Alias: [Cockatrice](srd_monsters_cockatrice.md)
- Créature monstrueuse de taille P, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11
@@ -68334,7 +68334,7 @@ _Touché :_ 3 (1d4+1) dégâts perforants et la cible doit réussir un [jet de s
# Couatl
- Source: (CEO p)(SRD p)
-- SRD: [Couatl](srd_monsters_couatl.md)
+- Alias: [Couatl](srd_monsters_couatl.md)
- Céleste de taille M, Loyal Bon
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 19 (armure naturelle)
@@ -68432,7 +68432,7 @@ _Touché :_ 7 (1d8+3) dégâts tranchants ou 8 (1d10+3) dégâts tranchants si e
# Balor
- Source: (CEO p)(SRD p)
-- SRD: [Balor](srd_monsters_balor.md)
+- Alias: [Balor](srd_monsters_balor.md)
- Fiélon (démon) de taille TG, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
@@ -68482,7 +68482,7 @@ _Touché :_ 15 (2d6+8) dégâts tranchants plus 10 (3d6) dégâts de feu et la c
# Dretch
- Source: (CEO p)(SRD p)
-- SRD: [Dretch](srd_monsters_dretch.md)
+- Alias: [Dretch](srd_monsters_dretch.md)
- Fiélon (démon) de taille P, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 11 (armure naturelle)
@@ -68521,7 +68521,7 @@ _Touché :_ 3 (1d6) dégâts perforants.
# Glabrezu
- Source: (CEO p)(SRD p)
-- SRD: [Glabrezu](srd_monsters_glabrezu.md)
+- Alias: [Glabrezu](srd_monsters_glabrezu.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 17 (armure naturelle)
@@ -68569,7 +68569,7 @@ _Touché :_ 7 (2d4+2) dégâts contondants.
# Hezrou
- Source: (CEO p)(SRD p)
-- SRD: [Hezrou](srd_monsters_hezrou.md)
+- Alias: [Hezrou](srd_monsters_hezrou.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 16 (armure naturelle)
@@ -68615,7 +68615,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants.
# Marilith
- Source: (CEO p)(SRD p)
-- SRD: [Marilith](srd_monsters_marilith.md)
+- Alias: [Marilith](srd_monsters_marilith.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
@@ -68669,7 +68669,7 @@ Elle doit voir son agresseur et manier une arme de corps à corps pour pouvoir p
# Nalfeshnie
- Source: (CEO p)(SRD p)
-- SRD: [Nalfeshnee](srd_monsters_nalfeshnee.md)
+- Alias: [Nalfeshnee](srd_monsters_nalfeshnee.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
@@ -68719,7 +68719,7 @@ _Touché :_ 32 (5d10+5) dégâts perforants.
# Quasit
- Source: (CEO p)(SRD p)
-- SRD: [Quasit](srd_monsters_quasit.md)
+- Alias: [Quasit](srd_monsters_quasit.md)
- Fiélon (démon, métamorphe) de taille TP, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 13
@@ -68765,7 +68765,7 @@ La cible peut retenter le [jet de sauvegarde](hd_abilities_jets_de_sauvegarde.md
# Vrock
- Source: (CEO p)(SRD p)
-- SRD: [Vrock](srd_monsters_vrock.md)
+- Alias: [Vrock](srd_monsters_vrock.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
@@ -68813,7 +68813,7 @@ Les spores contournent les angles. Les créatures dans cette zone doivent chacun
# Destrier noir
- Source: (CEO p)(SRD p)
-- SRD: [Nightmare](srd_monsters_nightmare.md)
+- Alias: [Nightmare](srd_monsters_nightmare.md)
- Fiélon de taille G, Neutre Mauvais
- **Terrain**
- **Classe d'armure** 13 (armure naturelle)
@@ -68925,7 +68925,7 @@ Relancez deux fois le dé et rejouez tous les 8.
# Diable barbelé
- Source: (CEO p)(SRD p)
-- SRD: [Barbed Devil](srd_monsters_barbed_devil.md)
+- Alias: [Barbed Devil](srd_monsters_barbed_devil.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
@@ -68976,7 +68976,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants.
# Diable barbu
- Source: (CEO p)(SRD p)
-- SRD: [Bearded Devil](srd_monsters_bearded_devil.md)
+- Alias: [Bearded Devil](srd_monsters_bearded_devil.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 13 (armure naturelle)
@@ -69022,7 +69022,7 @@ _Touché :_ 8 (1d10+3) dégâts tranchants. Si la cible n'est pas un mort-vivant
# Diable cornu
- Source: (CEO p)(SRD p)
-- SRD: [Horned Devil](srd_monsters_horned_devil.md)
+- Alias: [Horned Devil](srd_monsters_horned_devil.md)
- Fiélon (diable) de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
@@ -69070,7 +69070,7 @@ _Touché :_ 10 (1d8+6) dégâts perforants. Si la cible n'est pas un mort-vivant
# Diable gelé
- Source: (CEO p)(SRD p)
-- SRD: [Ice Devil](srd_monsters_ice_devil.md)
+- Alias: [Ice Devil](srd_monsters_ice_devil.md)
- Fiélon (diable) de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
@@ -69132,7 +69132,7 @@ _Touché :_ 12 (2d6+5) dégâts contondants plus 10 (3d6) dégâts de froid.
# Diable des chaînes
- Source: (CEO p)(SRD p)
-- SRD: [Chain Devil](srd_monsters_chain_devil.md)
+- Alias: [Chain Devil](srd_monsters_chain_devil.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 16 (armure naturelle)
@@ -69182,7 +69182,7 @@ Si celle-ci peut voir le diable, elle doit réussir un [jet de sauvegarde](hd_ab
# Diable osseux
- Source: (CEO p)(SRD p)
-- SRD: [Bone Devil](srd_monsters_bone_devil.md)
+- Alias: [Bone Devil](srd_monsters_bone_devil.md)
- Fiélon (diable) de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
@@ -69227,7 +69227,7 @@ _Touché :_ 8 (1d8+4) dégâts tranchants.
# Diablotin
- Source: (CEO p)(SRD p)
-- SRD: [Imp](srd_monsters_imp.md)
+- Alias: [Imp](srd_monsters_imp.md)
- Fiélon (diable, métamorphe) de taille TP, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 13
@@ -69271,7 +69271,7 @@ Il redevient visible s'il attaque ou si sa concentration est interrompue (comme
# Diantrefosse
- Source: (CEO p)(SRD p)
-- SRD: [Pit Fiend](srd_monsters_pit_fiend.md)
+- Alias: [Pit Fiend](srd_monsters_pit_fiend.md)
- Fiélon (diable) de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
@@ -69331,7 +69331,7 @@ _Touché :_ 24 (3d10+8) dégâts contondants.
# Érinye
- Source: (CEO p)(SRD p)
-- SRD: [Erinyes](srd_monsters_erinyes.md)
+- Alias: [Erinyes](srd_monsters_erinyes.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 18 (harnois)
@@ -69379,7 +69379,7 @@ _Touché :_ 8 (1d8+4) dégâts tranchants, ou 9 (1d10+4) dégâts tranchants si
# Lémure
- Source: (CEO p)(SRD p)
-- SRD: [Lemure](srd_monsters_lemure.md)
+- Alias: [Lemure](srd_monsters_lemure.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 7
@@ -69460,7 +69460,7 @@ _Touché :_ 16 (2d10+5) dégâts contondants.
# Plésiosaure
- Source: (CEO p)(SRD p)
-- SRD: [Plesiosaurus](srd_monsters_plesiosaurus.md)
+- Alias: [Plesiosaurus](srd_monsters_plesiosaurus.md)
- Bête de taille G, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
@@ -69493,7 +69493,7 @@ _Touché :_ 14 (3d6+4) dégâts perforants.
# Tricératops
- Source: (CEO p)(SRD p)
-- SRD: [Triceratops](srd_monsters_triceratops.md)
+- Alias: [Triceratops](srd_monsters_triceratops.md)
- Bête de taille TG, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13 (armure naturelle)
@@ -69529,7 +69529,7 @@ _Touché :_ 22 (3d10+6) dégâts contondants.
# Tyrannosaure
- Source: (CEO p)(SRD p)
-- SRD: [Tyrannosaurus Rex](srd_monsters_tyrannosaurus_rex.md)
+- Alias: [Tyrannosaurus Rex](srd_monsters_tyrannosaurus_rex.md)
- Bête de taille TG, non-alignée
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 13 (armure naturelle)
@@ -69564,7 +69564,7 @@ _Touché :_ 20 (3d8+7) dégâts contondants.
# Doppleganger
- Source: (CEO p)(SRD p)
-- SRD: [Doppelganger](srd_monsters_doppelganger.md)
+- Alias: [Doppelganger](srd_monsters_doppelganger.md)
- Créature monstrueuse (métamorphe) de taille M, neutre
- **Terrain** Donjon maçonné
- **Classe d'armure** 14
@@ -69608,7 +69608,7 @@ Tant que la créature est à portée, le doppleganger peut continuer à lire ses
# Dragon blanc vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient White Dragon](srd_monsters_ancient_white_dragon.md)
+- Alias: [Ancient White Dragon](srd_monsters_ancient_white_dragon.md)
- Dragon de taille Gig, Chaotique Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 20 (armure naturelle)
@@ -69669,7 +69669,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon blanc adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult White Dragon](srd_monsters_adult_white_dragon.md)
+- Alias: [Adult White Dragon](srd_monsters_adult_white_dragon.md)
- Dragon de taille TG, Chaotique Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 18 (armure naturelle)
@@ -69730,7 +69730,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon blanc
- Source: (CEO p)(SRD p)
-- SRD: [Young White Dragon](srd_monsters_young_white_dragon.md)
+- Alias: [Young White Dragon](srd_monsters_young_white_dragon.md)
- Dragon de taille G, Chaotique Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 17 (armure naturelle)
@@ -69773,7 +69773,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants plus 4 (1d8) dégâts de froid.
# Dragonnet blanc
- Source: (CEO p)(SRD p)
-- SRD: [White Dragon Wyrmling](srd_monsters_white_dragon_wyrmling.md)
+- Alias: [White Dragon Wyrmling](srd_monsters_white_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 16 (armure naturelle)
@@ -69806,7 +69806,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants plus 2 (1d4) dégâts de froid.
# Dragon bleu vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Blue Dragon](srd_monsters_ancient_blue_dragon.md)
+- Alias: [Ancient Blue Dragon](srd_monsters_ancient_blue_dragon.md)
- Dragon de taille Gig, Loyal Mauvais
- **Terrain** Désert chaud, Littoral
- **Classe d'armure** 22 (armure naturelle)
@@ -69865,7 +69865,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon bleu adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Blue Dragon](srd_monsters_adult_blue_dragon.md)
+- Alias: [Adult Blue Dragon](srd_monsters_adult_blue_dragon.md)
- Dragon de taille TG, Loyal Mauvais
- **Terrain** Désert chaud, Littoral
- **Classe d'armure** 19 (armure naturelle)
@@ -69924,7 +69924,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon bleu
- Source: (CEO p)(SRD p)
-- SRD: [Young Blue Dragon](srd_monsters_young_blue_dragon.md)
+- Alias: [Young Blue Dragon](srd_monsters_young_blue_dragon.md)
- Dragon de taille G, Loyal Mauvais
- **Terrain** Désert chaud, Littoral
- **Classe d'armure** 18 (armure naturelle)
@@ -69963,7 +69963,7 @@ _Touché :_ 16 (2d10+5) dégâts perforants plus 5 (1d10) dégâts de foudre.
# Dragonnet bleu
- Source: (CEO p)(SRD p)
-- SRD: [Blue Dragon Wyrmling](srd_monsters_blue_dragon_wyrmling.md)
+- Alias: [Blue Dragon Wyrmling](srd_monsters_blue_dragon_wyrmling.md)
- Dragon de taille M, Loyal Mauvais
- **Terrain** Désert chaud, Littoral
- **Classe d'armure** 17 (armure naturelle)
@@ -69996,7 +69996,7 @@ _Touché :_ 8 (1d10+3) dégâts perforants plus 3 (1d6) dégâts de foudre.
# Dragon noir vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Black Dragon](srd_monsters_ancient_black_dragon.md)
+- Alias: [Ancient Black Dragon](srd_monsters_ancient_black_dragon.md)
- Dragon de taille Gig, Chaotique Mauvais
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 22 (armure naturelle)
@@ -70055,7 +70055,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon noir adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Black Dragon](srd_monsters_adult_black_dragon.md)
+- Alias: [Adult Black Dragon](srd_monsters_adult_black_dragon.md)
- Dragon de taille TG, Chaotique Mauvais
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 19 (armure naturelle)
@@ -70116,7 +70116,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon noir
- Source: (CEO p)(SRD p)
-- SRD: [Young Black Dragon](srd_monsters_young_black_dragon.md)
+- Alias: [Young Black Dragon](srd_monsters_young_black_dragon.md)
- Dragon de taille G, Chaotique Mauvais
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 18 (armure naturelle)
@@ -70159,7 +70159,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants plus 4 (1d8) dégâts d'acide.
# Dragonnet noir
- Source: (CEO p)(SRD p)
-- SRD: [Black Dragon Wyrmling](srd_monsters_black_dragon_wyrmling.md)
+- Alias: [Black Dragon Wyrmling](srd_monsters_black_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Mauvais
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 17 (armure naturelle)
@@ -70196,7 +70196,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants plus 2 (1d4) dégâts d'acide.
# Dragon rouge vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Red Dragon](srd_monsters_ancient_red_dragon.md)
+- Alias: [Ancient Red Dragon](srd_monsters_ancient_red_dragon.md)
- Dragon de taille Gig, Chaotique Mauvais
- **Terrain** Montagnes, Ruines souterraines
- **Classe d'armure** 22 (armure naturelle)
@@ -70255,7 +70255,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon rouge adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Red Dragon](srd_monsters_adult_red_dragon.md)
+- Alias: [Adult Red Dragon](srd_monsters_adult_red_dragon.md)
- Dragon de taille TG, Chaotique Mauvais
- **Terrain** Montagnes, Ruines souterraines
- **Classe d'armure** 19 (armure naturelle)
@@ -70314,7 +70314,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon rouge
- Source: (CEO p)(SRD p)
-- SRD: [Young Red Dragon](srd_monsters_young_red_dragon.md)
+- Alias: [Young Red Dragon](srd_monsters_young_red_dragon.md)
- Dragon de taille G, Chaotique Mauvais
- **Terrain** Montagnes, Ruines souterraines
- **Classe d'armure** 18 (armure naturelle)
@@ -70353,7 +70353,7 @@ _Touché :_ 17 (2d10+6) dégâts perforants plus 3 (1d6) dégâts de feu.
# Dragonnet rouge
- Source: (CEO p)(SRD p)
-- SRD: [Red Dragon Wyrmling](srd_monsters_red_dragon_wyrmling.md)
+- Alias: [Red Dragon Wyrmling](srd_monsters_red_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Mauvais
- **Terrain** Montagnes, Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
@@ -70386,7 +70386,7 @@ _Touché :_ 9 (1d10+4) dégâts perforants plus 3 (1d6) dégâts de feu.
# Dragon vert vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Green Dragon](srd_monsters_ancient_green_dragon.md)
+- Alias: [Ancient Green Dragon](srd_monsters_ancient_green_dragon.md)
- Dragon de taille Gig, Loyal Mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 21 (armure naturelle)
@@ -70450,7 +70450,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon vert adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Green Dragon](srd_monsters_adult_green_dragon.md)
+- Alias: [Adult Green Dragon](srd_monsters_adult_green_dragon.md)
- Dragon de taille TG, Loyal Mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 19 (armure naturelle)
@@ -70512,7 +70512,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon vert
- Source: (CEO p)(SRD p)
-- SRD: [Young Green Dragon](srd_monsters_young_green_dragon.md)
+- Alias: [Young Green Dragon](srd_monsters_young_green_dragon.md)
- Dragon de taille G, Loyal Mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 18 (armure naturelle)
@@ -70556,7 +70556,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants plus 7 (2d6) dégâts de poison.
# Dragonnet vert
- Source: (CEO p)(SRD p)
-- SRD: [Green Dragon Wyrmling](srd_monsters_green_dragon_wyrmling.md)
+- Alias: [Green Dragon Wyrmling](srd_monsters_green_dragon_wyrmling.md)
- Dragon de taille M, Loyal Mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 17 (armure naturelle)
@@ -70594,7 +70594,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants plus 3 (1d6) dégâts de poison.
# Dragon d'airain vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Brass Dragon](srd_monsters_ancient_brass_dragon.md)
+- Alias: [Ancient Brass Dragon](srd_monsters_ancient_brass_dragon.md)
- Dragon de taille Gig, Chaotique Bon
- **Terrain** Désert chaud, Ruines extérieures
- **Classe d'armure** 20 (armure naturelle)
@@ -70663,7 +70663,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon d'airain adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Brass Dragon](srd_monsters_adult_brass_dragon.md)
+- Alias: [Adult Brass Dragon](srd_monsters_adult_brass_dragon.md)
- Dragon de taille TG, Chaotique Bon
- **Terrain** Désert chaud, Ruines extérieures
- **Classe d'armure** 18 (armure naturelle)
@@ -70726,7 +70726,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon d'airain
- Source: (CEO p)(SRD p)
-- SRD: [Young Brass Dragon](srd_monsters_young_brass_dragon.md)
+- Alias: [Young Brass Dragon](srd_monsters_young_brass_dragon.md)
- Dragon de taille G, Chaotique Bon
- **Terrain** Désert chaud, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -70769,7 +70769,7 @@ _Souffle soporifique._ Le dragon souffle un gaz soporifique sur un cône de 9 m
# Dragonnet d'airain
- Source: (CEO p)(SRD p)
-- SRD: [Brass Dragon Wyrmling](srd_monsters_brass_dragon_wyrmling.md)
+- Alias: [Brass Dragon Wyrmling](srd_monsters_brass_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Bon
- **Terrain** Désert chaud, Ruines extérieures
- **Classe d'armure** 16 (armure naturelle)
@@ -70806,7 +70806,7 @@ _Souffle soporifique._ Le dragon souffle un gaz soporifique sur un cône de 4,50
# Dragon d'argent vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Silver Dragon](srd_monsters_ancient_silver_dragon.md)
+- Alias: [Ancient Silver Dragon](srd_monsters_ancient_silver_dragon.md)
- Dragon de taille Gig, Loyal Bon
- **Terrain** Montagnes
- **Classe d'armure** 22 (armure naturelle)
@@ -70873,7 +70873,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon d'argent adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Silver Dragon](srd_monsters_adult_silver_dragon.md)
+- Alias: [Adult Silver Dragon](srd_monsters_adult_silver_dragon.md)
- Dragon de taille TG, Loyal Bon
- **Terrain** Montagnes
- **Classe d'armure** 19 (armure naturelle)
@@ -70942,7 +70942,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon d'argent
- Source: (CEO p)(SRD p)
-- SRD: [Young Silver Dragon](srd_monsters_young_silver_dragon.md)
+- Alias: [Young Silver Dragon](srd_monsters_young_silver_dragon.md)
- Dragon de taille G, Loyal Bon
- **Terrain** Montagnes
- **Classe d'armure** 18 (armure naturelle)
@@ -70985,7 +70985,7 @@ _Souffle paralysant._ Le dragon souffle du gaz paralysant sur un cône de 9 mèt
# Dragonnet d'argent
- Source: (CEO p)(SRD p)
-- SRD: [Silver Dragon Wyrmling](srd_monsters_silver_dragon_wyrmling.md)
+- Alias: [Silver Dragon Wyrmling](srd_monsters_silver_dragon_wyrmling.md)
- Dragon de taille M, Loyal Bon
- **Terrain** Montagnes
- **Classe d'armure** 17 (armure naturelle)
@@ -71022,7 +71022,7 @@ _Souffle paralysant._ Le dragon souffle du gaz paralysant sur un cône de 4,50 m
# Dragon de bronze vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Bronze Dragon](srd_monsters_ancient_bronze_dragon.md)
+- Alias: [Ancient Bronze Dragon](srd_monsters_ancient_bronze_dragon.md)
- Dragon de taille Gig, Loyal Bon
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 22 (armure naturelle)
@@ -71091,7 +71091,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon de bronze adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Bronze Dragon](srd_monsters_adult_bronze_dragon.md)
+- Alias: [Adult Bronze Dragon](srd_monsters_adult_bronze_dragon.md)
- Dragon de taille TG, Loyal Bon
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 19 (armure naturelle)
@@ -71162,7 +71162,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon de bronze
- Source: (CEO p)(SRD p)
-- SRD: [Young Bronze Dragon](srd_monsters_young_bronze_dragon.md)
+- Alias: [Young Bronze Dragon](srd_monsters_young_bronze_dragon.md)
- Dragon de taille G, Loyal Bon
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 18 (armure naturelle)
@@ -71209,7 +71209,7 @@ _Souffle répulsif._ Le dragon souffle de l'énergie répulsive sur un cône de
# Dragonnet de bronze
- Source: (CEO p)(SRD p)
-- SRD: [Bronze Dragon Wyrmling](srd_monsters_bronze_dragon_wyrmling.md)
+- Alias: [Bronze Dragon Wyrmling](srd_monsters_bronze_dragon_wyrmling.md)
- Dragon de taille M, Loyal Bon
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 17 (armure naturelle)
@@ -71250,7 +71250,7 @@ _Souffle répulsif._ Le dragon souffle de l'énergie répulsive sur un cône de
# Dragon de cuivre vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Copper Dragon](srd_monsters_ancient_copper_dragon.md)
+- Alias: [Ancient Copper Dragon](srd_monsters_ancient_copper_dragon.md)
- Dragon de taille Gig, Chaotique Bon
- **Terrain** Collines / Vallées
- **Classe d'armure** 21 (armure naturelle)
@@ -71321,7 +71321,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon de cuivre adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Copper Dragon](srd_monsters_adult_copper_dragon.md)
+- Alias: [Adult Copper Dragon](srd_monsters_adult_copper_dragon.md)
- Dragon de taille TG, Chaotique Bon
- **Terrain** Collines / Vallées
- **Classe d'armure** 18 (armure naturelle)
@@ -71386,7 +71386,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon de cuivre
- Source: (CEO p)(SRD p)
-- SRD: [Young Copper Dragon](srd_monsters_young_copper_dragon.md)
+- Alias: [Young Copper Dragon](srd_monsters_young_copper_dragon.md)
- Dragon de taille G, Chaotique Bon
- **Terrain** Collines / Vallées
- **Classe d'armure** 17 (armure naturelle)
@@ -71433,7 +71433,7 @@ Ces effets durent 1 minute. Les créatures peuvent retenter le [jet de sauvegard
# Dragonnet de cuivre
- Source: (CEO p)(SRD p)
-- SRD: [Copper Dragon Wyrmling](srd_monsters_copper_dragon_wyrmling.md)
+- Alias: [Copper Dragon Wyrmling](srd_monsters_copper_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Bon
- **Terrain** Collines / Vallées
- **Classe d'armure** 16 (armure naturelle)
@@ -71470,7 +71470,7 @@ _Souffle ralentissant._ Le dragon souffle du gaz sur un cône de 4,50 mètres. L
# Dragon d'or vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Gold Dragon](srd_monsters_ancient_gold_dragon.md)
+- Alias: [Ancient Gold Dragon](srd_monsters_ancient_gold_dragon.md)
- Dragon de taille Gig, Loyal Bon
- **Terrain**
- **Classe d'armure** 22 (armure naturelle)
@@ -71539,7 +71539,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Dragon d'or adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Gold Dragon](srd_monsters_adult_gold_dragon.md)
+- Alias: [Adult Gold Dragon](srd_monsters_adult_gold_dragon.md)
- Dragon de taille TG, Loyal Bon
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
@@ -71610,7 +71610,7 @@ Le dragon peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Jeune dragon d'or
- Source: (CEO p)(SRD p)
-- SRD: [Young Gold Dragon](srd_monsters_young_gold_dragon.md)
+- Alias: [Young Gold Dragon](srd_monsters_young_gold_dragon.md)
- Dragon de taille G, Loyal Bon
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
@@ -71657,7 +71657,7 @@ _Souffle de feu._ Le dragon souffle du feu sur un cône de 9 mètres. Les créat
# Dragonnet d'or
- Source: (CEO p)(SRD p)
-- SRD: [Gold Dragon Wyrmling](srd_monsters_gold_dragon_wyrmling.md)
+- Alias: [Gold Dragon Wyrmling](srd_monsters_gold_dragon_wyrmling.md)
- Dragon de taille M, Loyal Bon
- **Terrain**
- **Classe d'armure** 17 (armure naturelle)
@@ -71698,7 +71698,7 @@ _Souffle de feu._ Le dragon souffle du feu sur un cône de 4,50 mètres. Les cr
# Dragon-tortue
- Source: (CEO p)(SRD p)
-- SRD: [Dragon Turtle](srd_monsters_dragon_turtle.md)
+- Alias: [Dragon Turtle](srd_monsters_dragon_turtle.md)
- Dragon de taille Gig, neutre
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 20 (armure naturelle)
@@ -71786,7 +71786,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants.
# Drider
- Source: (CEO p)(SRD p)
-- SRD: [Drider](srd_monsters_drider.md)
+- Alias: [Drider](srd_monsters_drider.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 19 (armure naturelle)
@@ -71841,7 +71841,7 @@ _Touché :_ 2 (1d4) dégâts perforants plus 9 (2d8) dégâts de poison.
# Drow
- Source: (CEO p)(SRD p)
-- SRD: [Drow](srd_monsters_drow.md)
+- Alias: [Drow](srd_monsters_drow.md)
- Humanoïde (elfe) de taille M, Neutre Mauvais
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 15 (chemise de mailles)
@@ -71953,7 +71953,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants.
# Dryade
- Source: (CEO p)(SRD p)
-- SRD: [Dryad](srd_monsters_dryad.md)
+- Alias: [Dryad](srd_monsters_dryad.md)
- Fée de taille M, neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 11 (16 avec peau d'écorce)
@@ -72004,7 +72004,7 @@ _Touché :_ 2 (1d4) dégâts contondants, ou 8 (1d8+4) dégâts contondants avec
# Duergar
- Source: (CEO p)(SRD p)
-- SRD: [Duergar](srd_monsters_duergar.md)
+- Alias: [Duergar](srd_monsters_duergar.md)
- Humanoïde (nain) de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 16 (armure d'écailles, bouclier)
@@ -72049,7 +72049,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants ou 11 (2d8+2) dégâts perforants s'il
# Élémentaire de l'air
- Source: (CEO p)(SRD p)
-- SRD: [Air Elemental](srd_monsters_air_elemental.md)
+- Alias: [Air Elemental](srd_monsters_air_elemental.md)
- Élémentaire de taille G, neutre
- **Terrain** Montagnes, Plans élémentaires
- **Classe d'armure** 15
@@ -72092,7 +72092,7 @@ Si le [jet de sauvegarde](hd_abilities_jets_de_sauvegarde.md) est réussi, la ci
# Élémentaire de l'eau
- Source: (CEO p)(SRD p)
-- SRD: [Water Elemental](srd_monsters_water_elemental.md)
+- Alias: [Water Elemental](srd_monsters_water_elemental.md)
- Élémentaire de taille G, neutre
- **Terrain** Mer / Océan, Plans élémentaires, Caverne sous-marine
- **Classe d'armure** 14 (armure naturelle)
@@ -72135,7 +72135,7 @@ L'élémentaire peut empoigner une créature de taille G ou jusqu'à deux créat
# Élémentaire du feu
- Source: (CEO p)(SRD p)
-- SRD: [Fire Elemental](srd_monsters_fire_elemental.md)
+- Alias: [Fire Elemental](srd_monsters_fire_elemental.md)
- Élémentaire de taille G, neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 13
@@ -72176,7 +72176,7 @@ _Touché :_ 10 (2d6+3) dégâts de feu. Si la cible est un objet inflammable ou
# Élémentaire de la terre
- Source: (CEO p)(SRD p)
-- SRD: [Earth Elemental](srd_monsters_earth_elemental.md)
+- Alias: [Earth Elemental](srd_monsters_earth_elemental.md)
- Élémentaire de taille G, neutre
- **Terrain** Bois / Forêt, Plans élémentaires
- **Classe d'armure** 17 (armure naturelle)
@@ -72216,7 +72216,7 @@ _Touché :_ 14 (2d8+5) dégâts contondants.
# Enlaceur
- Source: (CEO p)(SRD p)
-- SRD: [Roper](srd_monsters_roper.md)
+- Alias: [Roper](srd_monsters_roper.md)
- Créature monstrueuse de taille G, Neutre Mauvais
- **Terrain** Caverne aménagée, Caverne naturelle
- **Classe d'armure** 20 (armure naturelle)
@@ -72263,7 +72263,7 @@ _Touché :_ 22 (4d8+4) dégâts perforants.
# Esprit follet
- Source: (CEO p)(SRD p)
-- SRD: [Sprite](srd_monsters_sprite.md)
+- Alias: [Sprite](srd_monsters_sprite.md)
- Fée de taille TP, Neutre Bonne
- **Terrain** Bois / Forêt, Collines / Vallées, Ruines extérieures
- **Classe d'armure** 15 (armure de cuir)
@@ -72300,7 +72300,7 @@ _Touché :_ 1 dégât perforant, et la cible doit réussir un [jet de sauvegarde
# Ettercap
- Source: (CEO p)(SRD p)
-- SRD: [Ettercap](srd_monsters_ettercap.md)
+- Alias: [Ettercap](srd_monsters_ettercap.md)
- Créature monstrueuse de taille M, Neutre Mauvais
- **Terrain** Bois / Forêt, Mangrove / Marécage
- **Classe d'armure** 13 (armure naturelle)
@@ -72347,7 +72347,7 @@ _Touché :_ la créature est [entravée](hd_conditions_entrave.md) par la toile.
# Ettin
- Source: (CEO p)(SRD p)
-- SRD: [Ettin](srd_monsters_ettin.md)
+- Alias: [Ettin](srd_monsters_ettin.md)
- Géant de taille G, Chaotique Mauvais
- **Terrain** Collines / Vallées, Montagnes, Caverne naturelle
- **Classe d'armure** 12 (armure naturelle)
@@ -72388,7 +72388,7 @@ _Touché :_ 14 (2d8+5) dégâts perforants.
# Fantôme
- Source: (CEO p)(SRD p)
-- SRD: [Ghost](srd_monsters_ghost.md)
+- Alias: [Ghost](srd_monsters_ghost.md)
- Mort-vivant de taille M, n'importe quel alignement
- **Terrain** Ruines extérieures, Ruines souterraines
- **Classe d'armure** 11
@@ -72435,7 +72435,7 @@ La possession prend fin si le corps physique tombe à 0 point de vie, si le fant
# Feu follet
- Source: (CEO p)(SRD p)
-- SRD: [Will-o'-Wisp](srd_monsters_will_o_wisp.md)
+- Alias: [Will-o'-Wisp](srd_monsters_will_o_wisp.md)
- Mort-vivant de taille TP, Chaotique Mauvais
- **Terrain** Collines / Vallées, Mangrove / Marécage
- **Classe d'armure** 19
@@ -72478,7 +72478,7 @@ _Touché :_ 9 (2d8) dégâts de foudre.
# Garde animé
- Source: (CEO p)(SRD p)
-- SRD: [Shield Guardian](srd_monsters_shield_guardian.md)
+- Alias: [Shield Guardian](srd_monsters_shield_guardian.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
@@ -72522,7 +72522,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants.
# Gargouille
- Source: (CEO p)(SRD p)
-- SRD: [Gargoyle](srd_monsters_gargoyle.md)
+- Alias: [Gargoyle](srd_monsters_gargoyle.md)
- Élémentaire de taille M, Chaotique Mauvais
- **Terrain** Plans élémentaires, Ruines extérieures
- **Classe d'armure** 15 (armure naturelle)
@@ -72563,7 +72563,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Géant des collines
- Source: (CEO p)(SRD p)
-- SRD: [Hill Giant](srd_monsters_hill_giant.md)
+- Alias: [Hill Giant](srd_monsters_hill_giant.md)
- Géant de taille TG, Chaotique Mauvais
- **Terrain** Collines / Vallées, Caverne naturelle, Ruines extérieures
- **Classe d'armure** 13 (armure naturelle)
@@ -72598,7 +72598,7 @@ _Touché :_ 21 (3d10+5) dégâts contondants.
# Géant des nuages
- Source: (CEO p)(SRD p)
-- SRD: [Cloud Giant](srd_monsters_cloud_giant.md)
+- Alias: [Cloud Giant](srd_monsters_cloud_giant.md)
- Géant de taille TG, Neutre Bon (50 %) ou Neutre Mauvais (50 %)
- **Terrain** Montagnes
- **Classe d'armure** 14 (armure naturelle)
@@ -72646,7 +72646,7 @@ _Touché :_ 30 (4d10+8) dégâts contondants.
# Géant des pierres
- Source: (CEO p)(SRD p)
-- SRD: [Stone Giant](srd_monsters_stone_giant.md)
+- Alias: [Stone Giant](srd_monsters_stone_giant.md)
- Géant de taille TG, neutre
- **Terrain** Montagnes
- **Classe d'armure** 17 (armure naturelle)
@@ -72686,7 +72686,7 @@ _Touché :_ 28 (4d10+6) dégâts contondants. Si la cible est une créature, ell
# Géant des tempêtes
- Source: (CEO p)(SRD p)
-- SRD: [Storm Giant](srd_monsters_storm_giant.md)
+- Alias: [Storm Giant](srd_monsters_storm_giant.md)
- Géant de taille TG, Chaotique Bon
- **Terrain** Littoral, Mer / Océan, Ruines sous-marines
- **Classe d'armure** 16 (armure d'écailles)
@@ -72736,7 +72736,7 @@ _Touché :_ 35 (4d12+9) dégâts contondants.
# Géant du feu
- Source: (CEO p)(SRD p)
-- SRD: [Fire Giant](srd_monsters_fire_giant.md)
+- Alias: [Fire Giant](srd_monsters_fire_giant.md)
- Géant de taille TG, Loyal Mauvais
- **Terrain** Désert chaud, Montagnes
- **Classe d'armure** 18 (harnois)
@@ -72773,7 +72773,7 @@ _Touché :_ 29 (4d10+7) dégâts contondants.
# Géant du givre
- Source: (CEO p)(SRD p)
-- SRD: [Frost Giant](srd_monsters_frost_giant.md)
+- Alias: [Frost Giant](srd_monsters_frost_giant.md)
- Géant de taille TG, Neutre Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 15 (armure composite)
@@ -72810,7 +72810,7 @@ _Touché :_ 28 (4d10+6) dégâts contondants.
# Djinn
- Source: (CEO p)(SRD p)
-- SRD: [Djinni](srd_monsters_djinni.md)
+- Alias: [Djinni](srd_monsters_djinni.md)
- Élémentaire de taille G, Chaotique Bon
- **Terrain** Montagnes, Plans élémentaires
- **Classe d'armure** 17 (armure naturelle)
@@ -72860,7 +72860,7 @@ Si le test est réussi, la créature n'est plus [entravée](hd_conditions_entrav
# Éfrit
- Source: (CEO p)(SRD p)
-- SRD: [Efreeti](srd_monsters_efreeti.md)
+- Alias: [Efreeti](srd_monsters_efreeti.md)
- Élémentaire de taille G, Loyal Mauvais
- **Terrain** Désert chaud, Plans élémentaires
- **Classe d'armure** 17 (armure naturelle)
@@ -72908,7 +72908,7 @@ _Touché :_ 17 (5d6) dégâts de feu.
# Gnoll
- Source: (CEO p)(SRD p)
-- SRD: [Gnoll](srd_monsters_gnoll.md)
+- Alias: [Gnoll](srd_monsters_gnoll.md)
- Humanoïde (gnoll) de taille M, Chaotique Mauvais
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 15 (armure de peau, bouclier)
@@ -72991,7 +72991,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants.
# Gnome des profondeurs (svirfneblin)
- Source: (CEO p)(SRD p)
-- SRD: [Deep Gnome (Svirfneblin)](srd_monsters_deep_gnome_svirfneblin.md)
+- Alias: [Deep Gnome (Svirfneblin)](srd_monsters_deep_gnome_svirfneblin.md)
- Humanoïde (gnome) de taille P, Neutre Bon
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 15 (chemise de mailles)
@@ -73036,7 +73036,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants.
# Gobelin
- Source: (CEO p)(SRD p)
-- SRD: [Goblin](srd_monsters_goblin.md)
+- Alias: [Goblin](srd_monsters_goblin.md)
- Humanoïde (gobelinoïde) de taille P, Neutre Mauvais
- **Terrain** Bois / Forêt, Collines / Vallées, Jungle, Caverne aménagée
- **Classe d'armure** 15 (armure de cuir, bouclier)
@@ -73213,7 +73213,7 @@ _Touché :_ 5 (1d8+1) dégâts contondants.
# Gobelours
- Source: (CEO p)(SRD p)
-- SRD: [Bugbear](srd_monsters_bugbear.md)
+- Alias: [Bugbear](srd_monsters_bugbear.md)
- Humanoïde (gobelinoïde) de taille M, Chaotique Mauvais
- **Terrain** Collines / Vallées, Caverne aménagée
- **Classe d'armure** 16 (armure de peau, bouclier)
@@ -73298,7 +73298,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants au corps à corps ou 6 (1d6+3) dégâ
# Golem d'argile
- Source: (CEO p)(SRD p)
-- SRD: [Clay Golem](srd_monsters_clay_golem.md)
+- Alias: [Clay Golem](srd_monsters_clay_golem.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 14 (armure naturelle)
@@ -73348,7 +73348,7 @@ _Touché :_ 16 (2d10+5) dégâts contondants. Si la cible est une créature, ell
# Golem de chair
- Source: (CEO p)(SRD p)
-- SRD: [Flesh Golem](srd_monsters_flesh_golem.md)
+- Alias: [Flesh Golem](srd_monsters_flesh_golem.md)
- Créature artificielle de taille M, neutre
- **Terrain** Donjon maçonné
- **Classe d'armure** 9
@@ -73404,7 +73404,7 @@ _Touché :_ 13 (2d8+4) dégâts contondants.
# Golem de fer
- Source: (CEO p)(SRD p)
-- SRD: [Iron Golem](srd_monsters_iron_golem.md)
+- Alias: [Iron Golem](srd_monsters_iron_golem.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 20 (armure naturelle)
@@ -73452,7 +73452,7 @@ _Touché :_ 23 (3d10+7) dégâts tranchants.
# Golem de pierre
- Source: (CEO p)(SRD p)
-- SRD: [Stone Golem](srd_monsters_stone_golem.md)
+- Alias: [Stone Golem](srd_monsters_stone_golem.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
@@ -73494,7 +73494,7 @@ _Touché :_ 19 (3d8+6) dégâts contondants.
# Gorgone
- Source: (CEO p)(SRD p)
-- SRD: [Gorgon](srd_monsters_gorgon.md)
+- Alias: [Gorgon](srd_monsters_gorgon.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 19 (armure naturelle)
@@ -73536,7 +73536,7 @@ Les créatures situées dans cette zone doivent chacune effectuer un [jet de sau
# Goule
- Source: (CEO p)(SRD p)
-- SRD: [Ghoul](srd_monsters_ghoul.md)
+- Alias: [Ghoul](srd_monsters_ghoul.md)
- Mort-vivant de taille M, Chaotique Mauvais
- **Terrain** Ruines extérieures, Ruines souterraines
- **Classe d'armure** 12
@@ -73570,7 +73570,7 @@ _Touché :_ 9 (2d6+2) dégâts perforants.
# Goule Blême
- Source: (CEO p)(SRD p)
-- SRD: [Ghast](srd_monsters_ghast.md)
+- Alias: [Ghast](srd_monsters_ghast.md)
- Mort-vivant de taille M, Chaotique Mauvais
- **Terrain** Ruines extérieures, Ruines souterraines
- **Classe d'armure** 13
@@ -73611,7 +73611,7 @@ _Touché :_ 12 (2d8+3) dégâts perforants.
# Grick
- Source: (CEO p)(SRD p)
-- SRD: [Grick](srd_monsters_grick.md)
+- Alias: [Grick](srd_monsters_grick.md)
- Créature monstrueuse de taille M, neutre
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
@@ -73650,7 +73650,7 @@ _Touché :_ 9 (2d6+2) dégâts tranchants.
# Griffon
- Source: (CEO p)(SRD p)
-- SRD: [Griffon](srd_monsters_griffon.md)
+- Alias: [Griffon](srd_monsters_griffon.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Montagnes
- **Classe d'armure** 12
@@ -73689,7 +73689,7 @@ _Touché :_ 11 (2d6+4) dégâts tranchants.
# Guenaude aquatique
- Source: (CEO p)(SRD p)
-- SRD: [Sea Hag](srd_monsters_sea_hag.md)
+- Alias: [Sea Hag](srd_monsters_sea_hag.md)
- Fée de taille M, Chaotique Mauvais
- **Terrain** Littoral, Mangrove / Marécage, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 14 (armure naturelle)
@@ -73731,7 +73731,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants.
# Guenaude nocturne
- Source: (CEO p)(SRD p)
-- SRD: [Night Hag](srd_monsters_night_hag.md)
+- Alias: [Night Hag](srd_monsters_night_hag.md)
- Fiélon de taille M, Neutre Mauvais
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
@@ -73780,7 +73780,7 @@ Un sort de protection contre le mal et le bien lancé sur la cible, tout comme u
# Guenaude verte
- Source: (CEO p)(SRD p)
-- SRD: [Green Hag](srd_monsters_green_hag.md)
+- Alias: [Green Hag](srd_monsters_green_hag.md)
- Fée de taille M, Neutre Mauvais
- **Terrain** Bois / Forêt, Collines / Vallées, Mangrove / Marécage
- **Classe d'armure** 17 (armure naturelle)
@@ -73827,7 +73827,7 @@ _Touché :_ 13 (2d8+4) dégâts tranchants.
# Harpie
- Source: (CEO p)(SRD p)
-- SRD: [Harpy](srd_monsters_harpy.md)
+- Alias: [Harpy](srd_monsters_harpy.md)
- Créature monstrueuse de taille M, Chaotique Mauvais
- **Terrain** Littoral, Montagnes, Ruines extérieures
- **Classe d'armure** 11
@@ -73869,7 +73869,7 @@ _Touché :_ 6 (2d4+1) dégâts tranchants.
# Hibours
- Source: (CEO p)(SRD p)
-- SRD: [Owlbear](srd_monsters_owlbear.md)
+- Alias: [Owlbear](srd_monsters_owlbear.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Bois / Forêt, Caverne naturelle
- **Classe d'armure** 13 (armure naturelle)
@@ -73908,7 +73908,7 @@ _Touché :_ 14 (2d8+5) dégâts tranchants.
# Hippogriffe
- Source: (CEO p)(SRD p)
-- SRD: [Hippogriff](srd_monsters_hippogriff.md)
+- Alias: [Hippogriff](srd_monsters_hippogriff.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Littoral, Montagnes
- **Classe d'armure** 11
@@ -73947,7 +73947,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants.
# Hobgobelin
- Source: (CEO p)(SRD p)
-- SRD: [Hobgoblin](srd_monsters_hobgoblin.md)
+- Alias: [Hobgoblin](srd_monsters_hobgoblin.md)
- Humanoïde (gobelinoïde) de taille M, Loyal Mauvais
- **Terrain** Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 18 (bouclier, cotte de mailles)
@@ -74022,7 +74022,7 @@ _Touché :_ 5 (1d8+1) dégâts tranchants, ou 6 (1d10+1) dégâts tranchants si
# Homme-lézard
- Source: (CEO p)(SRD p)
-- SRD: [Lizardfolk](srd_monsters_lizardfolk.md)
+- Alias: [Lizardfolk](srd_monsters_lizardfolk.md)
- Humanoïde (homme-lézard) de taille M, Neutre
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 15 (armure naturelle, bouclier)
@@ -74115,7 +74115,7 @@ _Touché :_ 6 (1d6+3) dégâts perforants.
# Homme-poisson
- Source: (CEO p)(SRD p)
-- SRD: [Merfolk](srd_monsters_merfolk.md)
+- Alias: [Merfolk](srd_monsters_merfolk.md)
- Humanoïde (homme-poisson) de taille M, Neutre
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 11
@@ -74148,7 +74148,7 @@ _Touché :_ 3 (1d6) dégâts perforants ou 4 (1d8) dégâts perforants si elle e
# Homoncule
- Source: (CEO p)(SRD p)
-- SRD: [Homunculus](srd_monsters_homunculus.md)
+- Alias: [Homunculus](srd_monsters_homunculus.md)
- Créature artificielle de taille TP, neutre
- **Terrain** Donjon maçonné
- **Classe d'armure** 13 (armure naturelle)
@@ -74182,7 +74182,7 @@ _Touché :_ 1 dégât perforant, et la cible doit réussir un [jet de sauvegarde
# Hydre
- Source: (CEO p)(SRD p)
-- SRD: [Hydra](srd_monsters_hydra.md)
+- Alias: [Hydra](srd_monsters_hydra.md)
- Créature monstrueuse de taille TG, non-alignée
- **Terrain** Littoral, Caverne sous-marine
- **Classe d'armure** 15 (armure naturelle)
@@ -74227,7 +74227,7 @@ _Touché :_ 10 (1d10+5) dégâts perforants.
# Kobold
- Source: (CEO p)(SRD p)
-- SRD: [Kobold](srd_monsters_kobold.md)
+- Alias: [Kobold](srd_monsters_kobold.md)
- Humanoïde (kobold) de taille P, Loyal Mauvais
- **Terrain** Jungle, Mangrove / Marécage, Caverne aménagée
- **Classe d'armure** 12
@@ -74306,7 +74306,7 @@ _Touché :_ 5 (1d4+3) dégâts contondants.
# Kraken
- Source: (CEO p)(SRD p)
-- SRD: [Kraken](srd_monsters_kraken.md)
+- Alias: [Kraken](srd_monsters_kraken.md)
- Créature monstrueuse (titan) de taille Gig, Chaotique Mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 18 (armure naturelle)
@@ -74367,7 +74367,7 @@ Le kraken peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Lamie
- Source: (CEO p)(SRD p)
-- SRD: [Lamia](srd_monsters_lamia.md)
+- Alias: [Lamia](srd_monsters_lamia.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 13 (armure naturelle)
@@ -74416,7 +74416,7 @@ _Touché :_ 14 (2d10+3) dégâts tranchants.
# Liche
- Source: (CEO p)(SRD p)
-- SRD: [Lich](srd_monsters_lich.md)
+- Alias: [Lich](srd_monsters_lich.md)
- Mort-vivant de taille M, alignement Mauvais
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
@@ -74490,7 +74490,7 @@ La liche peut réaliser 3 actions légendaires, choisies parmi les options suiva
# Licorne
- Source: (CEO p)(SRD p)
-- SRD: [Unicorn](srd_monsters_unicorn.md)
+- Alias: [Unicorn](srd_monsters_unicorn.md)
- Céleste de taille G, Loyal Bon
- **Terrain** Bois / Forêt
- **Classe d'armure** 12
@@ -74554,7 +74554,7 @@ La licorne peut effectuer 3 actions légendaires qu'elle choisit parmi celles d
# Loup-garou
- Source: (CEO p)(SRD p)
-- SRD: [Werewolf](srd_monsters_werewolf.md)
+- Alias: [Werewolf](srd_monsters_werewolf.md)
- Humanoïde (humain, métamorphe) de taille M, Chaotique Mauvais
- **Terrain** Bois / Forêt, Montagnes
- **Classe d'armure** 11 sous forme humanoïde, 12 (armure naturelle) sous forme hybride ou de loup
@@ -74600,7 +74600,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants. Si la cible est un humanoïde, elle d
# Ours-garou
- Source: (CEO p)(SRD p)
-- SRD: [Werebear](srd_monsters_werebear.md)
+- Alias: [Werebear](srd_monsters_werebear.md)
- Humanoïde (humain, métamorphe) de taille M, Neutre Bon
- **Terrain** Bois / Forêt
- **Classe d'armure** 10 sous forme humanoïde, 11 (armure naturelle) sous forme hybride ou d'ours
@@ -74646,7 +74646,7 @@ _Touché :_ 15 (2d10+4) dégâts perforants. Si la cible est un humanoïde, elle
# Rat-garou
- Source: (CEO p)(SRD p)
-- SRD: [Wererat](srd_monsters_wererat.md)
+- Alias: [Wererat](srd_monsters_wererat.md)
- Humanoïde (humain, métamorphe) de taille M, Loyal Mauvais
- **Terrain** Caverne naturelle
- **Classe d'armure** 12
@@ -74692,7 +74692,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. Si la cible est un humanoïde, elle d
# Sanglier-garou
- Source: (CEO p)(SRD p)
-- SRD: [Wereboar](srd_monsters_wereboar.md)
+- Alias: [Wereboar](srd_monsters_wereboar.md)
- Humanoïde (humain, métamorphe) de taille M, Neutre Mauvais
- **Terrain** Bois / Forêt
- **Classe d'armure** 10 sous forme humanoïde, 11 (armure naturelle) sous forme hybride ou de sanglier
@@ -74736,7 +74736,7 @@ _Touché :_ 10 (2d6+3) dégâts contondants.
# Tigre-garou
- Source: (CEO p)(SRD p)
-- SRD: [Weretiger](srd_monsters_weretiger.md)
+- Alias: [Weretiger](srd_monsters_weretiger.md)
- Humanoïde (humain, métamorphe) de taille M, Neutre
- **Terrain** Jungle
- **Classe d'armure** 12
@@ -74788,7 +74788,7 @@ _Touché :_ 8 (1d10+3) dégâts perforants. Si la cible est un humanoïde, elle
# Magmatique
- Source: (CEO p)(SRD p)
-- SRD: [Magmin](srd_monsters_magmin.md)
+- Alias: [Magmin](srd_monsters_magmin.md)
- Élémentaire de taille P, Chaotique Neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 14 (armure naturelle)
@@ -74828,7 +74828,7 @@ Jusqu'au moment où une créature consacre une action à étouffer les flammes,
# Manteleur
- Source: (CEO p)(SRD p)
-- SRD: [Cloaker](srd_monsters_cloaker.md)
+- Alias: [Cloaker](srd_monsters_cloaker.md)
- Aberration de taille G, Chaotique Neutre
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
@@ -74881,7 +74881,7 @@ _Touché :_ 7 (1d8+3) dégâts tranchants.
# Mante obscure
- Source: (CEO p)(SRD p)
-- SRD: [Darkmantle](srd_monsters_darkmantle.md)
+- Alias: [Darkmantle](srd_monsters_darkmantle.md)
- Créature monstrueuse de taille P, non-alignée
- **Terrain** Caverne naturelle
- **Classe d'armure** 11
@@ -74924,7 +74924,7 @@ Lors de son tour, la mante obscure peut se détacher de la cible en dépensant 1
# Manticore
- Source: (CEO p)(SRD p)
-- SRD: [Manticore](srd_monsters_manticore.md)
+- Alias: [Manticore](srd_monsters_manticore.md)
- Créature monstrueuse de taille G, Loyal Mauvais
- **Terrain** Désert chaud, Montagnes
- **Classe d'armure** 14 (armure naturelle)
@@ -74966,7 +74966,7 @@ _Touché :_ 7 (1d8+3) dégâts perforants.
# Méduse
- Source: (CEO p)(SRD p)
-- SRD: [Medusa](srd_monsters_medusa.md)
+- Alias: [Medusa](srd_monsters_medusa.md)
- Créature monstrueuse de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines extérieures, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
@@ -75013,7 +75013,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Méphite de glace
- Source: (CEO p)(SRD p)
-- SRD: [Ice Mephit](srd_monsters_ice_mephit.md)
+- Alias: [Ice Mephit](srd_monsters_ice_mephit.md)
- Élémentaire de taille P, Neutre Mauvais
- **Terrain** Arctique / Subarctique, Montagnes, Plans élémentaires
- **Classe d'armure** 11
@@ -75057,7 +75057,7 @@ _Touché :_ 3 (1d4+1) dégâts tranchants plus 2 (1d4) dégâts de froid.
# Méphite de magma
- Source: (CEO p)(SRD p)
-- SRD: [Magma Mephit](srd_monsters_magma_mephit.md)
+- Alias: [Magma Mephit](srd_monsters_magma_mephit.md)
- Élémentaire de taille P, Neutre Mauvais
- **Terrain** Plans élémentaires
- **Classe d'armure** 11
@@ -75099,7 +75099,7 @@ _Touché :_ 3 (1d4+1) dégâts tranchants plus 2 (1d4) dégâts de feu.
# Méphite de poussière
- Source: (CEO p)(SRD p)
-- SRD: [Dust Mephit](srd_monsters_dust_mephit.md)
+- Alias: [Dust Mephit](srd_monsters_dust_mephit.md)
- Élémentaire de taille P, Neutre Mauvais
- **Terrain** Désert chaud, Plans élémentaires, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 12
@@ -75141,7 +75141,7 @@ Une créature peut retenter le [jet de sauvegarde](hd_abilities_jets_de_sauvegar
# Méphite de vapeur
- Source: (CEO p)(SRD p)
-- SRD: [Steam Mephit](srd_monsters_steam_mephit.md)
+- Alias: [Steam Mephit](srd_monsters_steam_mephit.md)
- Élémentaire de taille P, Neutre Mauvais
- **Terrain** Littoral, Plans élémentaires, Caverne sous-marine
- **Classe d'armure** 10
@@ -75181,7 +75181,7 @@ Les créatures dans cette zone doivent chacune réussir un [jet de sauvegarde](h
# Merrow
- Source: (CEO p)(SRD p)
-- SRD: [Merrow](srd_monsters_merrow.md)
+- Alias: [Merrow](srd_monsters_merrow.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Littoral, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
@@ -75225,7 +75225,7 @@ _Touché :_ 8 (1d8+4) dégâts perforants.
# Mimique
- Source: (CEO p)(SRD p)
-- SRD: [Mimic](srd_monsters_mimic.md)
+- Alias: [Mimic](srd_monsters_mimic.md)
- Créature monstrueuse (métamorphe) de taille M, Neutre
- **Terrain** Caverne aménagée, Donjon maçonné, Ruines souterraines
- **Classe d'armure** 12 (armure naturelle)
@@ -75272,7 +75272,7 @@ _Touché :_ 7 (1d8+3) dégâts contondants. Si la mimique est sous forme d'objet
# Minotaure
- Source: (CEO p)(SRD p)
-- SRD: [Minotaur](srd_monsters_minotaur.md)
+- Alias: [Minotaur](srd_monsters_minotaur.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Caverne aménagée, Donjon maçonné, Ruines extérieures
- **Classe d'armure** 14 (armure naturelle)
@@ -75315,7 +75315,7 @@ _Touché :_ 17 (2d12+4) dégâts tranchants.
# Molosse infernal
- Source: (CEO p)(SRD p)
-- SRD: [Hell Hound](srd_monsters_hell_hound.md)
+- Alias: [Hell Hound](srd_monsters_hell_hound.md)
- Fiélon de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
@@ -75353,7 +75353,7 @@ _Touché :_ 7 (1d8+3) dégâts perforants plus 7 (2d6) dégâts de feu.
# Momie
- Source: (CEO p)(SRD p)
-- SRD: [Mummy](srd_monsters_mummy.md)
+- Alias: [Mummy](srd_monsters_mummy.md)
- Mort-vivant de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 11 (armure naturelle)
@@ -75392,7 +75392,7 @@ Si la cible peut voir la momie, elle doit réussir un [jet de sauvegarde](hd_abi
# Momie auguste
- Source: (CEO p)(SRD p)
-- SRD: [Mummy Lord](srd_monsters_mummy_lord.md)
+- Alias: [Mummy Lord](srd_monsters_mummy_lord.md)
- Mort-vivant de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
@@ -75471,7 +75471,7 @@ Les créatures autres que les morts-vivants, situées à 3 mètres ou moins de l
# Naga corrupteur
- Source: (CEO p)(SRD p)
-- SRD: [Spirit Naga](srd_monsters_spirit_naga.md)
+- Alias: [Spirit Naga](srd_monsters_spirit_naga.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
@@ -75520,7 +75520,7 @@ _Touché :_ 7 (1d6+4) dégâts perforants et la cible doit effectuer un [jet de
# Naga gardien
- Source: (CEO p)(SRD p)
-- SRD: [Guardian Naga](srd_monsters_guardian_naga.md)
+- Alias: [Guardian Naga](srd_monsters_guardian_naga.md)
- Créature monstrueuse de taille G, Loyal Bon
- **Terrain** Ruines extérieures
- **Classe d'armure** 18 (armure naturelle)
@@ -75575,7 +75575,7 @@ _Touché :_ 8 (1d8+4) dégâts perforants et la cible doit effectuer un [jet de
# Nécrophage
- Source: (CEO p)(SRD p)
-- SRD: [Wight](srd_monsters_wight.md)
+- Alias: [Wight](srd_monsters_wight.md)
- Mort-vivant de taille M, Neutre Mauvais
- **Terrain** Mangrove / Marécage, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 14 (armure de cuir clouté)
@@ -75623,7 +75623,7 @@ _Touché :_ 6 (1d8+2) dégâts tranchants ou 7 (1d10+2) dégâts tranchants si e
# Armure animée
- Source: (CEO p)(SRD p)
-- SRD: [Animated Armor](srd_monsters_animated_armor.md)
+- Alias: [Animated Armor](srd_monsters_animated_armor.md)
- Créature artificielle de taille M, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 18 (armure naturelle)
@@ -75661,7 +75661,7 @@ _Touché :_ 5 (1d6+2) dégâts contondants.
# Épée volante
- Source: (CEO p)(SRD p)
-- SRD: [Flying Sword](srd_monsters_flying_sword.md)
+- Alias: [Flying Sword](srd_monsters_flying_sword.md)
- Créature artificielle de taille P, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
@@ -75698,7 +75698,7 @@ _Touché :_ 5 (1d8+1) dégâts tranchants.
# Tapis étrangleur
- Source: (CEO p)(SRD p)
-- SRD: [Rug of Smothering](srd_monsters_rug_of_smothering.md)
+- Alias: [Rug of Smothering](srd_monsters_rug_of_smothering.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 12
@@ -75740,7 +75740,7 @@ De plus, au début de chacun des tours de la cible, celle-ci subit 10 (2d6+3) d
# Ogre
- Source: (CEO p)(SRD p)
-- SRD: [Ogre](srd_monsters_ogre.md)
+- Alias: [Ogre](srd_monsters_ogre.md)
- Géant de taille G, Chaotique Mauvais
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane, Caverne naturelle, Ruines extérieures
- **Classe d'armure** 11 (armure de peau)
@@ -75772,7 +75772,7 @@ _Touché :_ 13 (2d8+4) dégâts contondants.
# Ombre
- Source: (CEO p)(SRD p)
-- SRD: [Shadow](srd_monsters_shadow.md)
+- Alias: [Shadow](srd_monsters_shadow.md)
- Mort-vivant de taille M, Chaotique Mauvais
- **Terrain** Donjon maçonné, Ruines extérieures, Ruines souterraines
- **Classe d'armure** 12
@@ -75815,7 +75815,7 @@ Si un humanoïde non-mauvais meurt à cause de cette attaque, une nouvelle ombre
# Oni
- Source: (CEO p)(SRD p)
-- SRD: [Oni](srd_monsters_oni.md)
+- Alias: [Oni](srd_monsters_oni.md)
- Géant de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 16 (cotte de mailles)
@@ -75943,7 +75943,7 @@ _Touché :_ 5 (1d6+2) dégâts contondants.
# Otyugh
- Source: (CEO p)(SRD p)
-- SRD: [Otyugh](srd_monsters_otyugh.md)
+- Alias: [Otyugh](srd_monsters_otyugh.md)
- Aberration de taille G, Neutre
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
@@ -75988,7 +75988,7 @@ L'otyugh a deux tentacules dont chacun peut empoigner une cible.
# Oxydeur
- Source: (CEO p)(SRD p)
-- SRD: [Rust Monster](srd_monsters_rust_monster.md)
+- Alias: [Rust Monster](srd_monsters_rust_monster.md)
- Créature monstrueuse de taille M, non-alignée
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
@@ -76079,7 +76079,7 @@ Une fois accroché, le parasite absorbe à la cible un emplacement de sort du pl
# Pégase
- Source: (CEO p)(SRD p)
-- SRD: [Pegasus](srd_monsters_pegasus.md)
+- Alias: [Pegasus](srd_monsters_pegasus.md)
- Céleste de taille G, Chaotique Bon
- **Terrain**
- **Classe d'armure** 12
@@ -76109,7 +76109,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants.
# Pseudodragon
- Source: (CEO p)(SRD p)
-- SRD: [Pseudodragon](srd_monsters_pseudodragon.md)
+- Alias: [Pseudodragon](srd_monsters_pseudodragon.md)
- Dragon de taille TP, Neutre Bon
- **Terrain** Bois / Forêt, Jungle, Caverne naturelle
- **Classe d'armure** 13 (armure naturelle)
@@ -76150,7 +76150,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants.
# Rakshasa
- Source: (CEO p)(SRD p)
-- SRD: [Rakshasa](srd_monsters_rakshasa.md)
+- Alias: [Rakshasa](srd_monsters_rakshasa.md)
- Fiélon de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 16 (armure naturelle)
@@ -76235,7 +76235,7 @@ _Touché :_ 40 (6d10+7) dégâts perforants plus 10 (3d6) dégât de feu. Si la
# Roc
- Source: (CEO p)(SRD p)
-- SRD: [Roc](srd_monsters_roc.md)
+- Alias: [Roc](srd_monsters_roc.md)
- Créature monstrueuse de taille Gig, non-alignée
- **Terrain** Montagnes
- **Classe d'armure** 15 (armure naturelle)
@@ -76275,7 +76275,7 @@ _Touché :_ 23 (4d6+9) dégâts tranchants et la cible est [empoignée](hd_condi
# Sahuagin
- Source: (CEO p)(SRD p)
-- SRD: [Sahuagin](srd_monsters_sahuagin.md)
+- Alias: [Sahuagin](srd_monsters_sahuagin.md)
- Humanoïde (sahuagin) de taille M, Loyal Mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 12 (armure naturelle)
@@ -76380,7 +76380,7 @@ _Touché :_ 3 (1d4+1) dégâts perforants.
# Salamandre
- Source: (CEO p)(SRD p)
-- SRD: [Salamander](srd_monsters_salamander.md)
+- Alias: [Salamander](srd_monsters_salamander.md)
- Élémentaire de taille G, Neutre Mauvais
- **Terrain** Plans élémentaires
- **Classe d'armure** 15 (armure naturelle)
@@ -76423,7 +76423,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants plus 7 (2d6) dégâts de feu et la c
# Satyre
- Source: (CEO p)(SRD p)
-- SRD: [Satyr](srd_monsters_satyr.md)
+- Alias: [Satyr](srd_monsters_satyr.md)
- Fée de taille M, Chaotique Neutre
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure de cuir)
@@ -76556,7 +76556,7 @@ _Touché :_ 19 (3d6+9) dégâts contondants. Si la cible est une créature, elle
# Spectre
- Source: (CEO p)(SRD p)
-- SRD: [Specter](srd_monsters_specter.md)
+- Alias: [Specter](srd_monsters_specter.md)
- Mort-vivant de taille M, Chaotique Mauvais
- **Terrain** Ruines extérieures
- **Classe d'armure** 12
@@ -76593,7 +76593,7 @@ _Touché :_ 10 (3d6) dégâts nécrotiques. La cible doit réussir un [jet de sa
# Androsphinx
- Source: (CEO p)(SRD p)
-- SRD: [Androsphinx](srd_monsters_androsphinx.md)
+- Alias: [Androsphinx](srd_monsters_androsphinx.md)
- Créature monstrueuse de taille G, Loyal Neutre
- **Terrain** Désert chaud, Donjon maçonné, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -76667,7 +76667,7 @@ Le sphinx peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Gynosphinx
- Source: (CEO p)(SRD p)
-- SRD: [Gynosphinx](srd_monsters_gynosphinx.md)
+- Alias: [Gynosphinx](srd_monsters_gynosphinx.md)
- Créature monstrueuse de taille G, Loyal Neutre
- **Terrain** Arctique / Subarctique, Désert chaud, Montagnes, Caverne aménagée, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -76731,7 +76731,7 @@ Le sphinx peut effectuer 3 actions légendaires qu'il choisit parmi celles décr
# Squelette
- Source: (CEO p)(SRD p)
-- SRD: [Skeleton](srd_monsters_skeleton.md)
+- Alias: [Skeleton](srd_monsters_skeleton.md)
- Mort-vivant de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines extérieures
- **Classe d'armure** 13 (débris d'armure)
@@ -76766,7 +76766,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Squelette cheval de guerre
- Source: (CEO p)(SRD p)
-- SRD: [Warhorse Skeleton](srd_monsters_warhorse_skeleton.md)
+- Alias: [Warhorse Skeleton](srd_monsters_warhorse_skeleton.md)
- Mort-vivant de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 13 (débris de barde)
@@ -76797,7 +76797,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants.
# Squelette minotaure
- Source: (CEO p)(SRD p)
-- SRD: [Minotaur Skeleton](srd_monsters_minotaur_skeleton.md)
+- Alias: [Minotaur Skeleton](srd_monsters_minotaur_skeleton.md)
- Mort-vivant de taille G, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 12 (armure naturelle)
@@ -76836,7 +76836,7 @@ _Touché :_ 17 (2d12+4) dégâts tranchants.
# Strige
- Source: (CEO p)(SRD p)
-- SRD: [Stirge](srd_monsters_stirge.md)
+- Alias: [Stirge](srd_monsters_stirge.md)
- Bête de taille TP, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
@@ -76868,7 +76868,7 @@ La strige peut se détacher en dépensant 1,50 mètre de sa vitesse de déplacem
# Succube/Incube
- Source: (CEO p)(SRD p)
-- SRD: [Succubus](srd_monsters_succubus.md)
+- Alias: [Succubus](srd_monsters_succubus.md)
- Fiélon (métamorphe) de taille M, Neutre Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
@@ -76914,7 +76914,7 @@ Le fiélon ne peut charmer qu'une seule cible à la fois. S'il en charme une aut
# Sylvanien
- Source: (CEO p)(SRD p)
-- SRD: [Treant](srd_monsters_treant.md)
+- Alias: [Treant](srd_monsters_treant.md)
- Plante de taille TG, Chaotique Bonne
- **Terrain** Bois / Forêt
- **Classe d'armure** 15 (armure naturelle)
@@ -76958,7 +76958,7 @@ _Touché :_ 24 (4d8+6) dégâts contondants.
# Tarasque
- Source: (CEO p)(SRD p)
-- SRD: [Tarrasque](srd_monsters_tarrasque.md)
+- Alias: [Tarrasque](srd_monsters_tarrasque.md)
- Créature monstrueuse (titan) de taille Gig, non-alignée
- **Terrain**
- **Classe d'armure** 25 (armure naturelle)
@@ -77105,7 +77105,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants.
# Tertre errant
- Source: (CEO p)(SRD p)
-- SRD: [Shambling Mound](srd_monsters_shambling_mound.md)
+- Alias: [Shambling Mound](srd_monsters_shambling_mound.md)
- Plante de taille G, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 15 (armure naturelle)
@@ -77145,7 +77145,7 @@ _Touché :_ 13 (2d8+4) dégâts contondants.
# Torve
- Source: (CEO p)(SRD p)
-- SRD: [Grimlock](srd_monsters_grimlock.md)
+- Alias: [Grimlock](srd_monsters_grimlock.md)
- Humanoïde (torve) de taille M, Neutre Mauvais
- **Terrain** Caverne aménagée
- **Classe d'armure** 11
@@ -77183,7 +77183,7 @@ _Touché :_ 5 (1d4+3) dégâts contondants plus 2 (1d4) dégâts perforants.
# Traqueur invisible
- Source: (CEO p)(SRD p)
-- SRD: [Invisible Stalker](srd_monsters_invisible_stalker.md)
+- Alias: [Invisible Stalker](srd_monsters_invisible_stalker.md)
- Élémentaire de taille M, neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 14
@@ -77222,7 +77222,7 @@ _Touché :_ 10 (2d6+3) dégâts contondants.
# Troll
- Source: (CEO p)(SRD p)
-- SRD: [Troll](srd_monsters_troll.md)
+- Alias: [Troll](srd_monsters_troll.md)
- Géant de taille G, Chaotique Mauvais
- **Terrain** Arctique / Subarctique, Bois / Forêt, Mangrove / Marécage, Montagnes
- **Classe d'armure** 15 (armure naturelle)
@@ -77263,7 +77263,7 @@ _Touché :_ 7 (1d6+4) dégâts perforants.
# Vampire
- Source: (CEO p)(SRD p)
-- SRD: [Vampire](srd_monsters_vampire.md)
+- Alias: [Vampire](srd_monsters_vampire.md)
- Mort-vivant (métamorphe) de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné
- **Classe d'armure** 16 (armure naturelle)
@@ -77348,7 +77348,7 @@ Le vampire peut effectuer 3 actions légendaires qu'il choisit parmi celles déc
# Vampirien
- Source: (CEO p)(SRD p)
-- SRD: [Vampire Spawn](srd_monsters_vampire_spawn.md)
+- Alias: [Vampire Spawn](srd_monsters_vampire_spawn.md)
- Mort-vivant de taille M, Neutre Mauvais
- **Terrain** Donjon maçonné
- **Classe d'armure** 15 (armure naturelle)
@@ -77403,7 +77403,7 @@ _Touché :_ 6 (1d6+3) dégâts perforants plus 7 (2d6) dégâts nécrotiques. Le
# Cube gélatineux
- Source: (CEO p)(SRD p)
-- SRD: [Gelatinous Cube](srd_monsters_gelatinous_cube.md)
+- Alias: [Gelatinous Cube](srd_monsters_gelatinous_cube.md)
- Vase de taille G, non-alignée
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 6
@@ -77454,7 +77454,7 @@ _Touché :_ 10 (3d6) dégâts d'acide.
# Gelée ocre
- Source: (CEO p)(SRD p)
-- SRD: [Ochre Jelly](srd_monsters_ochre_jelly.md)
+- Alias: [Ochre Jelly](srd_monsters_ochre_jelly.md)
- Vase de taille G, non-alignée
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 8
@@ -77495,7 +77495,7 @@ _Touché :_ 9 (2d6+2) dégâts contondants plus 3 (1d6) dégâts d'acide.
# Pouding noir
- Source: (CEO p)(SRD p)
-- SRD: [Black Pudding](srd_monsters_black_pudding.md)
+- Alias: [Black Pudding](srd_monsters_black_pudding.md)
- Vase de taille G, non-alignée
- **Terrain** Caverne aménagée, Caverne naturelle, Donjon maçonné
- **Classe d'armure** 7
@@ -77539,7 +77539,7 @@ _Touché :_ 6 (1d6+3) dégâts contondants plus 18 (4d8) dégâts d'acide. De pl
# Vase grise
- Source: (CEO p)(SRD p)
-- SRD: [Gray Ooze](srd_monsters_gray_ooze.md)
+- Alias: [Gray Ooze](srd_monsters_gray_ooze.md)
- Vase de taille M, non-alignée
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 8
@@ -77582,7 +77582,7 @@ _Touché :_ 4 (1d6+1) dégâts contondants plus 7 (2d6) dégâts d'acide et, si
# Ver pourpre
- Source: (CEO p)(SRD p)
-- SRD: [Purple Worm](srd_monsters_purple_worm.md)
+- Alias: [Purple Worm](srd_monsters_purple_worm.md)
- Créature monstrueuse de taille Gig, non-alignée
- **Terrain** Montagnes, Caverne naturelle
- **Classe d'armure** 18 (armure naturelle)
@@ -77625,7 +77625,7 @@ Si le ver meurt, les créatures avalées ne sont plus [entravées](hd_conditions
# Vouivre
- Source: (CEO p)(SRD p)
-- SRD: [Wyvern](srd_monsters_wyvern.md)
+- Alias: [Wyvern](srd_monsters_wyvern.md)
- Dragon de taille G, non-alignée
- **Terrain** Littoral, Montagnes
- **Classe d'armure** 13 (armure naturelle)
@@ -77664,7 +77664,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants.
# Xorn
- Source: (CEO p)(SRD p)
-- SRD: [Xorn](srd_monsters_xorn.md)
+- Alias: [Xorn](srd_monsters_xorn.md)
- Élémentaire de taille M, Neutre
- **Terrain** Montagnes, Plans élémentaires
- **Classe d'armure** 19 (armure naturelle)
@@ -77708,7 +77708,7 @@ _Touché :_ 13 (3d6+3) dégâts perforants.
# Zombi
- Source: (CEO p)(SRD p)
-- SRD: [Zombie](srd_monsters_zombie.md)
+- Alias: [Zombie](srd_monsters_zombie.md)
- Mort-vivant de taille M, Neutre Mauvais
- **Terrain**
- **Classe d'armure** 8
@@ -77743,7 +77743,7 @@ _Touché :_ 4 (1d6+1) dégâts contondants.
# Zombi ogre
- Source: (CEO p)(SRD p)
-- SRD: [Ogre Zombie](srd_monsters_ogre_zombie.md)
+- Alias: [Ogre Zombie](srd_monsters_ogre_zombie.md)
- Mort-vivant de taille G, Neutre Mauvais
- **Terrain**
- **Classe d'armure** 8
@@ -77778,7 +77778,7 @@ _Touché :_ 13 (2d8+4) dégâts contondants.
# Aigle
- Source: (CEO p)(SRD p)
-- SRD: [Eagle](srd_monsters_eagle.md)
+- Alias: [Eagle](srd_monsters_eagle.md)
- Bête de taille P, non-alignée
- **Terrain** Mer / Océan, Montagnes
- **Classe d'armure** 12
@@ -77811,7 +77811,7 @@ _Touché :_ 4 (1d4+2) dégâts tranchants.
# Aigle géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Eagle](srd_monsters_giant_eagle.md)
+- Alias: [Giant Eagle](srd_monsters_giant_eagle.md)
- Bête de taille G, neutre bon
- **Terrain** Montagnes
- **Classe d'armure** 13
@@ -77850,7 +77850,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants.
# Araignée
- Source: (CEO p)(SRD p)
-- SRD: [Spider](srd_monsters_spider.md)
+- Alias: [Spider](srd_monsters_spider.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 12
@@ -77887,7 +77887,7 @@ _Touché :_ 1 dégât perforant et la cible doit effectuer un [jet de sauvegarde
# Araignée de phase
- Source: (CEO p)(SRD p)
-- SRD: [Phase Spider](srd_monsters_phase_spider.md)
+- Alias: [Phase Spider](srd_monsters_phase_spider.md)
- Bête de taille G, non-alignée
- **Terrain** Bois / Forêt, Caverne naturelle, Ruines extérieures
- **Classe d'armure** 13 (armure naturelle)
@@ -77924,7 +77924,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants et la cible doit effectuer un [jet de
# Araignée géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Spider](srd_monsters_giant_spider.md)
+- Alias: [Giant Spider](srd_monsters_giant_spider.md)
- Bête de taille G, non-alignée
- **Terrain** Caverne naturelle, Ruines extérieures
- **Classe d'armure** 14 (armure naturelle)
@@ -77965,7 +77965,7 @@ _Touché :_ la cible est [entravée](hd_conditions_entrave.md) par la toile. Par
# Araignée-loup géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Wolf Spider](srd_monsters_giant_wolf_spider.md)
+- Alias: [Giant Wolf Spider](srd_monsters_giant_wolf_spider.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -78002,7 +78002,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants et la cible doit effectuer un [jet de
# Arbre éveillé
- Source: (CEO p)(SRD p)
-- SRD: [Awakened Tree](srd_monsters_awakened_tree.md)
+- Alias: [Awakened Tree](srd_monsters_awakened_tree.md)
- Plante de taille TG, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 13 (armure naturelle)
@@ -78036,7 +78036,7 @@ _Touché :_ 14 (3d6+4) dégâts contondants.
# Arbuste éveillé
- Source: (CEO p)(SRD p)
-- SRD: [Awakened Shrub](srd_monsters_awakened_shrub.md)
+- Alias: [Awakened Shrub](srd_monsters_awakened_shrub.md)
- Plante de taille P, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 9
@@ -78070,7 +78070,7 @@ _Touché :_ 1 (1d4-1) dégâts tranchants.
# Babouin
- Source: (CEO p)(SRD p)
-- SRD: [Baboon](srd_monsters_baboon.md)
+- Alias: [Baboon](srd_monsters_baboon.md)
- Bête de taille P, non-alignée
- **Terrain** Jungle
- **Classe d'armure** 12
@@ -78102,7 +78102,7 @@ _Touché :_ 1 (1d4-1) dégâts perforants.
# Bec de hache
- Source: (CEO p)(SRD p)
-- SRD: [Axe Beak](srd_monsters_axe_beak.md)
+- Alias: [Axe Beak](srd_monsters_axe_beak.md)
- Bête de taille G, non-alignée
- **Terrain** Jungle
- **Classe d'armure** 11
@@ -78130,7 +78130,7 @@ _Touché :_ 6 (1d8+2) dégâts tranchants.
# Belette
- Source: (CEO p)(SRD p)
-- SRD: [Weasel](srd_monsters_weasel.md)
+- Alias: [Weasel](srd_monsters_weasel.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -78163,7 +78163,7 @@ _Touché :_ 1 dégât perforant.
# Belette géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Weasel](srd_monsters_giant_weasel.md)
+- Alias: [Giant Weasel](srd_monsters_giant_weasel.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -78196,7 +78196,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants.
# Blaireau
- Source: (CEO p)(SRD p)
-- SRD: [Badger](srd_monsters_badger.md)
+- Alias: [Badger](srd_monsters_badger.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 10
@@ -78228,7 +78228,7 @@ _Touché :_ 1 dégât perforant.
# Blaireau géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Badger](srd_monsters_giant_badger.md)
+- Alias: [Giant Badger](srd_monsters_giant_badger.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 10
@@ -78266,7 +78266,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants.
# Chacal
- Source: (CEO p)(SRD p)
-- SRD: [Jackal](srd_monsters_jackal.md)
+- Alias: [Jackal](srd_monsters_jackal.md)
- Bête de taille P, non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
@@ -78301,7 +78301,7 @@ _Touché :_ 1 (1d4-1) dégâts perforants.
# Chameau
- Source: (CEO p)(SRD p)
-- SRD: [Camel](srd_monsters_camel.md)
+- Alias: [Camel](srd_monsters_camel.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud
- **Classe d'armure** 9
@@ -78329,7 +78329,7 @@ _Touché :_ 2 (1d4) dégâts contondants.
# Chat
- Source: (CEO p)(SRD p)
-- SRD: [Cat](srd_monsters_cat.md)
+- Alias: [Cat](srd_monsters_cat.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
@@ -78362,7 +78362,7 @@ _Touché :_ 1 dégât tranchant.
# Chauve-souris
- Source: (CEO p)(SRD p)
-- SRD: [Bat](srd_monsters_bat.md)
+- Alias: [Bat](srd_monsters_bat.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 12
@@ -78396,7 +78396,7 @@ _Touché :_ 1 dégât perforant.
# Chauve-souris géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Bat](srd_monsters_giant_bat.md)
+- Alias: [Giant Bat](srd_monsters_giant_bat.md)
- Bête de taille G, non-alignée
- **Terrain** Jungle, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 13
@@ -78430,7 +78430,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Cheval de guerre
- Source: (CEO p)(SRD p)
-- SRD: [Warhorse](srd_monsters_warhorse.md)
+- Alias: [Warhorse](srd_monsters_warhorse.md)
- Bête de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11
@@ -78537,7 +78537,7 @@ _Touché :_ 11 (2d6+4) dégâts contondants.
# Cheval de selle
- Source: (CEO p)(SRD p)
-- SRD: [Riding Horse](srd_monsters_riding_horse.md)
+- Alias: [Riding Horse](srd_monsters_riding_horse.md)
- Bête de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
@@ -78565,7 +78565,7 @@ _Touché :_ 8 (2d4+3) dégâts contondants.
# Cheval de trait
- Source: (CEO p)(SRD p)
-- SRD: [Draft Horse](srd_monsters_draft_horse.md)
+- Alias: [Draft Horse](srd_monsters_draft_horse.md)
- Bête de taille G, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
@@ -78593,7 +78593,7 @@ _Touché :_ 9 (2d4+4) dégâts contondants.
# Chèvre
- Source: (CEO p)(SRD p)
-- SRD: [Goat](srd_monsters_goat.md)
+- Alias: [Goat](srd_monsters_goat.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 10
@@ -78627,7 +78627,7 @@ _Touché :_ 3 (1d4+1) dégâts contondants.
# Chèvre géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Goat](srd_monsters_giant_goat.md)
+- Alias: [Giant Goat](srd_monsters_giant_goat.md)
- Bête de taille G, non-alignée
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 11 (armure naturelle)
@@ -78661,7 +78661,7 @@ _Touché :_ 8 (2d4+3) dégâts contondants.
# Chevreuil
- Source: (CEO p)(SRD p)
-- SRD: [Deer](srd_monsters_deer.md)
+- Alias: [Deer](srd_monsters_deer.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 13
@@ -78689,7 +78689,7 @@ _Touché :_ 2 (1d4) dégâts perforants.
# Chien du trépas
- Source: (CEO p)(SRD p)
-- SRD: [Death Dog](srd_monsters_death_dog.md)
+- Alias: [Death Dog](srd_monsters_death_dog.md)
- Créature monstrueuse de taille M, Neutre Mauvais
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
@@ -78724,7 +78724,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants. Si la cible est une créature, elle d
# Chien esquiveur
- Source: (CEO p)(SRD p)
-- SRD: [Blink Dog](srd_monsters_blink_dog.md)
+- Alias: [Blink Dog](srd_monsters_blink_dog.md)
- Fée de taille M, Loyal Bon
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -78759,7 +78759,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants.
# Chouette
- Source: (CEO p)(SRD p)
-- SRD: [Owl](srd_monsters_owl.md)
+- Alias: [Owl](srd_monsters_owl.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 11
@@ -78794,7 +78794,7 @@ _Touché :_ 1 dégât tranchant.
# Chouette géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Owl](srd_monsters_giant_owl.md)
+- Alias: [Giant Owl](srd_monsters_giant_owl.md)
- Bête de taille G, neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 12
@@ -78829,7 +78829,7 @@ _Touché :_ 8 (2d6+1) dégâts tranchants.
# Corbeau
- Source: (CEO p)(SRD p)
-- SRD: [Raven](srd_monsters_raven.md)
+- Alias: [Raven](srd_monsters_raven.md)
- Bête de taille TP, non-alignée
- **Terrain** Collines / Vallées, Littoral, Montagnes
- **Classe d'armure** 12
@@ -78862,7 +78862,7 @@ _Touché :_ 1 dégât perforant.
# Crabe
- Source: (CEO p)(SRD p)
-- SRD: [Crab](srd_monsters_crab.md)
+- Alias: [Crab](srd_monsters_crab.md)
- Bête de taille TP, non-alignée
- **Terrain** Littoral, Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 11 (armure naturelle)
@@ -78895,7 +78895,7 @@ _Touché :_ 1 dégât contondant.
# Crabe géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Crab](srd_monsters_giant_crab.md)
+- Alias: [Giant Crab](srd_monsters_giant_crab.md)
- Bête de taille M, non-alignée
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 15 (armure naturelle)
@@ -78928,7 +78928,7 @@ _Touché :_ 4 (1d6+1) dégât contondant et la cible est [empoignée](hd_conditi
# Crapaud géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Toad](srd_monsters_giant_toad.md)
+- Alias: [Giant Toad](srd_monsters_giant_toad.md)
- Bête de taille G, non-alignée
- **Terrain** Littoral, Mangrove / Marécage
- **Classe d'armure** 11
@@ -78966,7 +78966,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants plus 5 (1d10) dégâts de poison et l
# Crocodile
- Source: (CEO p)(SRD p)
-- SRD: [Crocodile](srd_monsters_crocodile.md)
+- Alias: [Crocodile](srd_monsters_crocodile.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud, Jungle, Mangrove / Marécage
- **Classe d'armure** 12 (armure naturelle)
@@ -78999,7 +78999,7 @@ _Touché :_ 7 (1d10+2) dégâts perforants et la cible est [empoignée](hd_condi
# Crocodile géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Crocodile](srd_monsters_giant_crocodile.md)
+- Alias: [Giant Crocodile](srd_monsters_giant_crocodile.md)
- Bête de taille TG, non-alignée
- **Terrain** Désert chaud, Jungle, Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
@@ -79038,7 +79038,7 @@ _Touché :_ 14 (2d8+5) dégâts contondants. Si la cible est une créature, elle
# Élan
- Source: (CEO p)(SRD p)
-- SRD: [Elk](srd_monsters_elk.md)
+- Alias: [Elk](srd_monsters_elk.md)
- Bête de taille G, non-alignée
- **Terrain** Arctique / Subarctique, Bois / Forêt
- **Classe d'armure** 10
@@ -79074,7 +79074,7 @@ _Touché :_ 8 (2d4+3) dégâts contondants.
# Élan géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Elk](srd_monsters_giant_elk.md)
+- Alias: [Giant Elk](srd_monsters_giant_elk.md)
- Bête de taille TG, non-alignée
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 14 (armure naturelle)
@@ -79111,7 +79111,7 @@ _Touché :_ 22 (4d8+4) dégâts contondants.
# Éléphant
- Source: (CEO p)(SRD p)
-- SRD: [Elephant](srd_monsters_elephant.md)
+- Alias: [Elephant](srd_monsters_elephant.md)
- Bête de taille TG, non-alignée
- **Terrain** Désert chaud, Jungle, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12 (armure naturelle)
@@ -79147,7 +79147,7 @@ _Touché :_ 22 (3d10+6) dégâts contondants.
# Épaulard
- Source: (CEO p)(SRD p)
-- SRD: [Killer Whale](srd_monsters_killer_whale.md)
+- Alias: [Killer Whale](srd_monsters_killer_whale.md)
- Bête de taille TG, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 12 (armure naturelle)
@@ -79184,7 +79184,7 @@ _Touché :_ 21 (5d6+4) dégâts perforants.
# Faucon
- Source: (CEO p)(SRD p)
-- SRD: [Hawk](srd_monsters_hawk.md)
+- Alias: [Hawk](srd_monsters_hawk.md)
- Bête de taille TP, non-alignée
- **Terrain** Collines / Vallées, Désert chaud, Littoral
- **Classe d'armure** 13
@@ -79217,7 +79217,7 @@ _Touché :_ 1 dégât tranchant.
# Faucon de sang
- Source: (CEO p)(SRD p)
-- SRD: [Blood Hawk](srd_monsters_blood_hawk.md)
+- Alias: [Blood Hawk](srd_monsters_blood_hawk.md)
- Bête de taille P, non-alignée
- **Terrain** Collines / Vallées, Désert chaud, Littoral
- **Classe d'armure** 12
@@ -79252,7 +79252,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants.
# Grand singe
- Source: (CEO p)(SRD p)
-- SRD: [Ape](srd_monsters_ape.md)
+- Alias: [Ape](srd_monsters_ape.md)
- Bête de taille M, non-alignée
- **Terrain** Jungle, Montagnes
- **Classe d'armure** 12
@@ -79287,7 +79287,7 @@ _Touché :_ 6 (1d6+3) dégâts contondants.
# Grenouille
- Source: (CEO p)(SRD p)
-- SRD: [Frog](srd_monsters_frog.md)
+- Alias: [Frog](srd_monsters_frog.md)
- Bête de taille TP, non-alignée
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 11
@@ -79316,7 +79316,7 @@ _Touché :_ 6 (1d6+3) dégâts contondants.
# Grenouille géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Frog](srd_monsters_giant_frog.md)
+- Alias: [Giant Frog](srd_monsters_giant_frog.md)
- Bête de taille M, non-alignée
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 11
@@ -79355,7 +79355,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants et la cible est [empoignée](hd_condit
# Guêpe géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Wasp](srd_monsters_giant_wasp.md)
+- Alias: [Giant Wasp](srd_monsters_giant_wasp.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt, Jungle, Mangrove / Marécage
- **Classe d'armure** 12
@@ -79453,7 +79453,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants.
# Hippocampe
- Source: (CEO p)(SRD p)
-- SRD: [Sea Horse](srd_monsters_sea_horse.md)
+- Alias: [Sea Horse](srd_monsters_sea_horse.md)
- Bête de taille TP, non-alignée
- **Terrain** Ruines sous-marines
- **Classe d'armure** 11
@@ -79479,7 +79479,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants.
# Hippocampe géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Sea Horse](srd_monsters_giant_sea_horse.md)
+- Alias: [Giant Sea Horse](srd_monsters_giant_sea_horse.md)
- Bête de taille G, non-alignée
- **Terrain** Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
@@ -79513,7 +79513,7 @@ _Touché :_ 4 (1d6+1) dégâts contondants.
# Hyène
- Source: (CEO p)(SRD p)
-- SRD: [Hyena](srd_monsters_hyena.md)
+- Alias: [Hyena](srd_monsters_hyena.md)
- Bête de taille M, non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11
@@ -79546,7 +79546,7 @@ _Touché :_ 3 (1d6) dégâts perforants.
# Hyène géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Hyena](srd_monsters_giant_hyena.md)
+- Alias: [Giant Hyena](srd_monsters_giant_hyena.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
@@ -79579,7 +79579,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants.
# Lézard
- Source: (CEO p)(SRD p)
-- SRD: [Lizard](srd_monsters_lizard.md)
+- Alias: [Lizard](srd_monsters_lizard.md)
- Bête de taille TP, non-alignée
- **Terrain** Désert chaud, Jungle, Caverne sous-marine
- **Classe d'armure** 10
@@ -79607,7 +79607,7 @@ _Touché :_ 1 dégât perforant.
# Lézard géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Lizard](srd_monsters_giant_lizard.md)
+- Alias: [Giant Lizard](srd_monsters_giant_lizard.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud, Jungle, Caverne sous-marine
- **Classe d'armure** 12 (armure naturelle)
@@ -79635,7 +79635,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants.
# Lion
- Source: (CEO p)(SRD p)
-- SRD: [Lion](srd_monsters_lion.md)
+- Alias: [Lion](srd_monsters_lion.md)
- Bête de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
@@ -79676,7 +79676,7 @@ _Touché :_ 7 (1d8+3) dégâts perforants.
# Loup
- Source: (CEO p)(SRD p)
-- SRD: [Wolf](srd_monsters_wolf.md)
+- Alias: [Wolf](srd_monsters_wolf.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Montagnes
- **Classe d'armure** 13 (armure naturelle)
@@ -79711,7 +79711,7 @@ _Touché :_ 7 (2d4+2) dégâts perforants. Si la cible est une créature, elle d
# Loup arctique
- Source: (CEO p)(SRD p)
-- SRD: [Winter Wolf](srd_monsters_winter_wolf.md)
+- Alias: [Winter Wolf](srd_monsters_winter_wolf.md)
- Créature monstrueuse de taille G, Neutre Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 13 (armure naturelle)
@@ -79753,7 +79753,7 @@ Les créatures dans ce cône doivent chacune réussir un [jet de sauvegarde](hd_
# Loup sanguinaire
- Source: (CEO p)(SRD p)
-- SRD: [Dire Wolf](srd_monsters_dire_wolf.md)
+- Alias: [Dire Wolf](srd_monsters_dire_wolf.md)
- Bête de taille G, non-alignée
- **Terrain** Bois / Forêt, Montagnes
- **Classe d'armure** 14 (armure naturelle)
@@ -79788,7 +79788,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants. Si la cible est une créature, elle
# Mammouth
- Source: (CEO p)(SRD p)
-- SRD: [Mammoth](srd_monsters_mammoth.md)
+- Alias: [Mammoth](srd_monsters_mammoth.md)
- Bête de taille TG, non-alignée
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 13 (armure naturelle)
@@ -79824,7 +79824,7 @@ _Touché :_ 29 (4d10+7) dégâts contondants.
# Mastiff
- Source: (CEO p)(SRD p)
-- SRD: [Mastiff](srd_monsters_mastiff.md)
+- Alias: [Mastiff](srd_monsters_mastiff.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
@@ -79857,7 +79857,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants. Si la cible est une créature, elle d
# Mille-pattes géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Centipede](srd_monsters_giant_centipede.md)
+- Alias: [Giant Centipede](srd_monsters_giant_centipede.md)
- Bête de taille P, non-alignée
- **Terrain** Désert chaud, Jungle, Caverne naturelle
- **Classe d'armure** 13 (armure naturelle)
@@ -79885,7 +79885,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants et la cible doit réussir un [jet de s
# Mule
- Source: (CEO p)(SRD p)
-- SRD: [Mule](srd_monsters_mule.md)
+- Alias: [Mule](srd_monsters_mule.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
@@ -79919,7 +79919,7 @@ _Touché :_ 4 (1d4+2) dégâts contondants.
# Nuée de chauve-souris
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Bats](srd_monsters_swarm_of_bats.md)
+- Alias: [Swarm of Bats](srd_monsters_swarm_of_bats.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 12
@@ -79957,7 +79957,7 @@ _Touché :_ 5 (2d4) dégâts perforants ou 2 (1d4) dégâts perforants si la nu
# Nuée de corbeaux
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Ravens](srd_monsters_swarm_of_ravens.md)
+- Alias: [Swarm of Ravens](srd_monsters_swarm_of_ravens.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 12
@@ -79992,7 +79992,7 @@ _Touché :_ 7 (2d6) dégâts perforants ou 3 (1d6) dégâts perforants si la nu
# Nuée de piranhas
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Quippers](srd_monsters_swarm_of_quippers.md)
+- Alias: [Swarm of Quippers](srd_monsters_swarm_of_quippers.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Jungle, Mangrove / Marécage, Ruines sous-marines
- **Classe d'armure** 13
@@ -80030,7 +80030,7 @@ _Touché :_ 14 (4d6) dégâts perforants ou 7 (2d6) dégâts perforants si la nu
# Nuée de rats
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Rats](srd_monsters_swarm_of_rats.md)
+- Alias: [Swarm of Rats](srd_monsters_swarm_of_rats.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Caverne aménagée
- **Classe d'armure** 10
@@ -80066,7 +80066,7 @@ _Touché :_ 7 (2d6) dégâts perforants ou 3 (1d6) dégâts perforants si la nu
# Nuée de serpents venimeux
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Poisonous Snakes](srd_monsters_swarm_of_poisonous_snakes.md)
+- Alias: [Swarm of Poisonous Snakes](srd_monsters_swarm_of_poisonous_snakes.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Jungle, Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 14
@@ -80100,7 +80100,7 @@ _Touché :_ 7 (2d6) dégâts perforants ou 3 (1d6) dégâts perforants si la nu
# Nuée d'insectes
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Insects](srd_monsters_swarm_of_insects.md)
+- Alias: [Swarm of Insects](srd_monsters_swarm_of_insects.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Bois / Forêt, Jungle, Mangrove / Marécage
- **Classe d'armure** 12 (armure naturelle)
@@ -80150,7 +80150,7 @@ Il existe plusieurs types d'insectes susceptibles de se rassembler en nuées, et
# Ours brun
- Source: (CEO p)(SRD p)
-- SRD: [Brown Bear](srd_monsters_brown_bear.md)
+- Alias: [Brown Bear](srd_monsters_brown_bear.md)
- Bête de taille G, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Littoral, Montagnes
- **Classe d'armure** 11 (armure naturelle)
@@ -80189,7 +80189,7 @@ _Touché :_ 8 (1d8+4) dégâts perforants.
# Ours noir
- Source: (CEO p)(SRD p)
-- SRD: [Black Bear](srd_monsters_black_bear.md)
+- Alias: [Black Bear](srd_monsters_black_bear.md)
- Bête de taille M, non-alignée
- **Terrain**
- **Classe d'armure** 11 (armure naturelle)
@@ -80228,7 +80228,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Ours polaire
- Source: (CEO p)(SRD p)
-- SRD: [Polar Bear](srd_monsters_polar_bear.md)
+- Alias: [Polar Bear](srd_monsters_polar_bear.md)
- Bête de taille G, non-alignée
- **Terrain** Arctique / Subarctique, Bois / Forêt
- **Classe d'armure** 12 (armure naturelle)
@@ -80267,7 +80267,7 @@ _Touché :_ 9 (1d8+5) dégâts perforants.
# Panthère
- Source: (CEO p)(SRD p)
-- SRD: [Panther](srd_monsters_panther.md)
+- Alias: [Panther](srd_monsters_panther.md)
- Bête de taille G, non-alignée
- **Terrain** Arctique / Subarctique, Jungle, Mangrove / Marécage
- **Classe d'armure** 12
@@ -80306,7 +80306,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Pieuvre
- Source: (CEO p)(SRD p)
-- SRD: [Octopus](srd_monsters_octopus.md)
+- Alias: [Octopus](srd_monsters_octopus.md)
- Bête de taille P, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 12
@@ -80345,7 +80345,7 @@ _Touché :_ 1 dégât contondant et la cible est [empoignée](hd_conditions_empo
# Pieuvre géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Octopus](srd_monsters_giant_octopus.md)
+- Alias: [Giant Octopus](srd_monsters_giant_octopus.md)
- Bête de taille G, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 11
@@ -80386,7 +80386,7 @@ Jusqu'au terme de cette empoignade, la cible est [entravée](hd_conditions_entra
# Piranha
- Source: (CEO p)(SRD p)
-- SRD: [Quipper](srd_monsters_quipper.md)
+- Alias: [Quipper](srd_monsters_quipper.md)
- Bête de taille TP, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 13
@@ -80420,7 +80420,7 @@ _Touché :_ 1 dégât perforant.
# Poney
- Source: (CEO p)(SRD p)
-- SRD: [Pony](srd_monsters_pony.md)
+- Alias: [Pony](srd_monsters_pony.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
@@ -80448,7 +80448,7 @@ _Touché :_ 7 (2d4+2) dégâts contondants.
# Punaise de feu géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Fire Beetle](srd_monsters_giant_fire_beetle.md)
+- Alias: [Giant Fire Beetle](srd_monsters_giant_fire_beetle.md)
- Bête de taille P, non-alignée
- **Terrain** Bois / Forêt, Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 13 (armure naturelle)
@@ -80480,7 +80480,7 @@ _Touché :_ 2 (1d6-1) dégâts tranchants.
# Rat
- Source: (CEO p)(SRD p)
-- SRD: [Rat](srd_monsters_rat.md)
+- Alias: [Rat](srd_monsters_rat.md)
- Bête de taille TP, non-alignée
- **Terrain** Caverne aménagée
- **Classe d'armure** 10
@@ -80512,7 +80512,7 @@ _Touché :_ 1 dégât perforant.
# Rat géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Rat](srd_monsters_giant_rat.md)
+- Alias: [Giant Rat](srd_monsters_giant_rat.md)
- Bête de taille P, non-alignée
- **Terrain** Jungle, Mangrove / Marécage, Caverne aménagée
- **Classe d'armure** 12
@@ -80554,7 +80554,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants. Si la cible est une créature, elle d
# Requin chasseur
- Source: (CEO p)(SRD p)
-- SRD: [Hunter Shark](srd_monsters_hunter_shark.md)
+- Alias: [Hunter Shark](srd_monsters_hunter_shark.md)
- Bête de taille G, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 12 (armure naturelle)
@@ -80589,7 +80589,7 @@ _Touché :_ 13 (2d8+4) dégâts perforants.
# Requin de récif
- Source: (CEO p)(SRD p)
-- SRD: [Reef Shark](srd_monsters_reef_shark.md)
+- Alias: [Reef Shark](srd_monsters_reef_shark.md)
- Bête de taille M, non-alignée
- **Terrain** Littoral, Ruines sous-marines
- **Classe d'armure** 12 (armure naturelle)
@@ -80624,7 +80624,7 @@ _Touché :_ 6 (1d8+2) dégâts perforants.
# Requin géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Shark](srd_monsters_giant_shark.md)
+- Alias: [Giant Shark](srd_monsters_giant_shark.md)
- Bête de taille TG, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
@@ -80659,7 +80659,7 @@ _Touché :_ 22 (3d10+6) dégâts perforants.
# Rhinocéros
- Source: (CEO p)(SRD p)
-- SRD: [Rhinoceros](srd_monsters_rhinoceros.md)
+- Alias: [Rhinoceros](srd_monsters_rhinoceros.md)
- Bête de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11 (armure naturelle)
@@ -80693,7 +80693,7 @@ _Touché :_ 14 (2d8+5) dégâts contondants.
# Sanglier
- Source: (CEO p)(SRD p)
-- SRD: [Boar](srd_monsters_boar.md)
+- Alias: [Boar](srd_monsters_boar.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Jungle
- **Classe d'armure** 11 (armure naturelle)
@@ -80727,7 +80727,7 @@ _Touché :_ 4 (1d6+1) dégâts tranchants.
# Sanglier géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Boar](srd_monsters_giant_boar.md)
+- Alias: [Giant Boar](srd_monsters_giant_boar.md)
- Bête de taille G, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Jungle
- **Classe d'armure** 12 (armure naturelle)
@@ -80761,7 +80761,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants.
# Scorpion
- Source: (CEO p)(SRD p)
-- SRD: [Scorpion](srd_monsters_scorpion.md)
+- Alias: [Scorpion](srd_monsters_scorpion.md)
- Bête de taille TP, non-alignée
- **Terrain** Désert chaud, Caverne naturelle
- **Classe d'armure** 11 (armure naturelle)
@@ -80789,7 +80789,7 @@ _Touché :_ 1 dégât perforant et la cible doit effectuer un [jet de sauvegarde
# Scorpion géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Scorpion](srd_monsters_giant_scorpion.md)
+- Alias: [Giant Scorpion](srd_monsters_giant_scorpion.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud, Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
@@ -80823,7 +80823,7 @@ _Touché :_ 6 (1d8+2) dégâts contondants et la cible est [empoignée](hd_condi
# Serpent constricteur
- Source: (CEO p)(SRD p)
-- SRD: [Constrictor Snake](srd_monsters_constrictor_snake.md)
+- Alias: [Constrictor Snake](srd_monsters_constrictor_snake.md)
- Bête de taille G, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 12
@@ -80855,7 +80855,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Serpent constricteur géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Constrictor Snake](srd_monsters_giant_constrictor_snake.md)
+- Alias: [Giant Constrictor Snake](srd_monsters_giant_constrictor_snake.md)
- Bête de taille TG, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 12
@@ -80888,7 +80888,7 @@ _Touché :_ 11 (2d6+4) dégâts perforants.
# Serpent venimeux
- Source: (CEO p)(SRD p)
-- SRD: [Poisonous Snake](srd_monsters_poisonous_snake.md)
+- Alias: [Poisonous Snake](srd_monsters_poisonous_snake.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -80916,7 +80916,7 @@ _Touché :_ 1 dégât perforant et la cible doit effectuer un [jet de sauvegarde
# Serpent venimeux géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Poisonous Snake](srd_monsters_giant_poisonous_snake.md)
+- Alias: [Giant Poisonous Snake](srd_monsters_giant_poisonous_snake.md)
- Bête de taille M, non-alignée
- **Terrain** Désert chaud, Caverne sous-marine
- **Classe d'armure** 14
@@ -80947,7 +80947,7 @@ Elle subit 10 (3d6) dégâts de poison en cas de [jet de sauvegarde](hd_abilitie
# Serpent volant
- Source: (CEO p)(SRD p)
-- SRD: [Flying Snake](srd_monsters_flying_snake.md)
+- Alias: [Flying Snake](srd_monsters_flying_snake.md)
- Bête de taille TP, non-alignée
- **Terrain** Montagnes
- **Classe d'armure** 14
@@ -80979,7 +80979,7 @@ _Touché :_ 1 dégât perforant plus 7 (3d4) dégâts de poison.
# Singe géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Ape](srd_monsters_giant_ape.md)
+- Alias: [Giant Ape](srd_monsters_giant_ape.md)
- Bête de taille TG, non-alignée
- **Terrain** Arctique / Subarctique, Jungle, Montagnes
- **Classe d'armure** 12
@@ -81014,7 +81014,7 @@ _Touché :_ 30 (7d6+6) dégâts contondants.
# Tigre
- Source: (CEO p)(SRD p)
-- SRD: [Tiger](srd_monsters_tiger.md)
+- Alias: [Tiger](srd_monsters_tiger.md)
- Bête de taille G, non-alignée
- **Terrain** Arctique / Subarctique, Jungle, Mangrove / Marécage
- **Classe d'armure** 12
@@ -81053,7 +81053,7 @@ _Touché :_ 8 (1d10+3) dégâts perforants.
# Tigre à dents de sabre
- Source: (CEO p)(SRD p)
-- SRD: [Saber-Toothed Tiger](srd_monsters_saber_toothed_tiger.md)
+- Alias: [Saber-Toothed Tiger](srd_monsters_saber_toothed_tiger.md)
- Bête de taille G, non-alignée
- **Terrain** Collines / Vallées, Désert chaud, Montagnes
- **Classe d'armure** 12
@@ -81092,7 +81092,7 @@ _Touché :_ 10 (1d10+5) dégâts perforants.
# Vautour
- Source: (CEO p)(SRD p)
-- SRD: [Vulture](srd_monsters_vulture.md)
+- Alias: [Vulture](srd_monsters_vulture.md)
- Bête de taille M, non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
@@ -81127,7 +81127,7 @@ _Touché :_ 2 (1d4) dégâts perforants.
# Vautour géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Vulture](srd_monsters_giant_vulture.md)
+- Alias: [Giant Vulture](srd_monsters_giant_vulture.md)
- Bête de taille G, Neutre Mauvais
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
@@ -81168,7 +81168,7 @@ _Touché :_ 9 (2d6+2) dégâts tranchants.
# Worg
- Source: (CEO p)(SRD p)
-- SRD: [Worg](srd_monsters_worg.md)
+- Alias: [Worg](srd_monsters_worg.md)
- Créature monstrueuse de taille G, Neutre Mauvais
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 13 (armure naturelle)
@@ -81201,7 +81201,7 @@ _Touché :_ 10 (2d6+3) dégâts perforants. Si la cible est une créature, elle
# Acolyte
- Source: (CEO p)(SRD p)
-- SRD: [Acolyte](srd_monsters_acolyte.md)
+- Alias: [Acolyte](srd_monsters_acolyte.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 10
@@ -81238,7 +81238,7 @@ _Touché :_ 2 (1d4) dégâts contondants.
# Archimage
- Source: (CEO p)(SRD p)
-- SRD: [Archmage](srd_monsters_archmage.md)
+- Alias: [Archmage](srd_monsters_archmage.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 12 (15 avec armure du mage)
@@ -81299,7 +81299,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants.
# Assassin
- Source: (CEO p)(SRD p)
-- SRD: [Assassin](srd_monsters_assassin.md)
+- Alias: [Assassin](srd_monsters_assassin.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon
- **Terrain**
- **Classe d'armure** 15 (armure de cuir clouté)
@@ -81344,7 +81344,7 @@ _Touché :_ 6 (1d6+3) dégâts perforants et la cible doit effectuer un [jet de
# Bandit
- Source: (CEO p)(SRD p)
-- SRD: [Bandit](srd_monsters_bandit.md)
+- Alias: [Bandit](srd_monsters_bandit.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Loyal
- **Terrain**
- **Classe d'armure** 12 (armure de cuir)
@@ -81376,7 +81376,7 @@ _Touché :_ 4 (1d6+1) dégâts tranchants.
# Berserker
- Source: (CEO p)(SRD p)
-- SRD: [Berserker](srd_monsters_berserker.md)
+- Alias: [Berserker](srd_monsters_berserker.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement Chaotique
- **Terrain**
- **Classe d'armure** 13 (armure de peau)
@@ -81408,7 +81408,7 @@ _Touché :_ 9 (1d12+3) dégâts tranchants.
# Capitaine bandit
- Source: (CEO p)(SRD p)
-- SRD: [Bandit Captain](srd_monsters_bandit_captain.md)
+- Alias: [Bandit Captain](srd_monsters_bandit_captain.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Loyal
- **Terrain**
- **Classe d'armure** 15 (armure de cuir clouté)
@@ -81448,7 +81448,7 @@ _Touché :_ 5 (1d4+3) dégâts perforants.
# Chevalier
- Source: (CEO p)(SRD p)
-- SRD: [Knight](srd_monsters_knight.md)
+- Alias: [Knight](srd_monsters_knight.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 18 (harnois)
@@ -81493,7 +81493,7 @@ _Touché :_ 10 (2d6+3) dégâts tranchants.
# Druide
- Source: (CEO p)(SRD p)
-- SRD: [Druid](srd_monsters_druid.md)
+- Alias: [Druid](srd_monsters_druid.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 11 (16 avec peau d'écorce)
@@ -81532,7 +81532,7 @@ _Touché :_ 3 (1d6) dégâts contondants, 4 (1d8) dégâts contondants s'il est
# Ecclésiastique
- Source: (CEO p)(SRD p)
-- SRD: [Priest](srd_monsters_priest.md)
+- Alias: [Priest](srd_monsters_priest.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 13 (chemise de mailles)
@@ -81577,7 +81577,7 @@ _Touché :_ 3 (1d6) dégâts contondants.
# Éclaireur
- Source: (CEO p)(SRD p)
-- SRD: [Scout](srd_monsters_scout.md)
+- Alias: [Scout](srd_monsters_scout.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 13 (armure de cuir)
@@ -81616,7 +81616,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Espion
- Source: (CEO p)(SRD p)
-- SRD: [Spy](srd_monsters_spy.md)
+- Alias: [Spy](srd_monsters_spy.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 12
@@ -81657,7 +81657,7 @@ _Touché :_ 5 (1d6+2) dégâts perforants.
# Fanatique de secte
- Source: (CEO p)(SRD p)
-- SRD: [Cult Fanatic](srd_monsters_cult_fanatic.md)
+- Alias: [Cult Fanatic](srd_monsters_cult_fanatic.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon
- **Terrain**
- **Classe d'armure** 13 (armure de cuir)
@@ -81700,7 +81700,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants.
# Garde
- Source: (CEO p)(SRD p)
-- SRD: [Guard](srd_monsters_guard.md)
+- Alias: [Guard](srd_monsters_guard.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 16 (bouclier, chemise de mailles)
@@ -81729,7 +81729,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants ou 5 (1d8+1) dégâts perforants si el
# Gladiateur
- Source: (CEO p)(SRD p)
-- SRD: [Gladiator](srd_monsters_gladiator.md)
+- Alias: [Gladiator](srd_monsters_gladiator.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 16 (armure de cuir clouté, bouclier)
@@ -81777,7 +81777,7 @@ Il doit voir son agresseur et manier une arme de corps à corps pour pouvoir par
# Guerrier tribal
- Source: (CEO p)(SRD p)
-- SRD: [Tribal Warrior](srd_monsters_tribal_warrior.md)
+- Alias: [Tribal Warrior](srd_monsters_tribal_warrior.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 12 (armure de peau)
@@ -81809,7 +81809,7 @@ _Touché :_ 4 (1d6+1) dégâts perforants ou 5 (1d8+1) dégâts perforants si el
# Mage
- Source: (CEO p)(SRD p)
-- SRD: [Mage](srd_monsters_mage.md)
+- Alias: [Mage](srd_monsters_mage.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 12 (15 avec armure du mage)
@@ -81855,7 +81855,7 @@ _Touché :_ 4 (1d4+2) dégâts perforants.
# Malfrat
- Source: (CEO p)(SRD p)
-- SRD: [Thug](srd_monsters_thug.md)
+- Alias: [Thug](srd_monsters_thug.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que bon
- **Terrain**
- **Classe d'armure** 11 (armure de cuir)
@@ -81896,7 +81896,7 @@ Les malfrats sont d'impitoyables hommes de mains doués en matière d'intimidati
# Membre de secte
- Source: (CEO p)(SRD p)
-- SRD: [Cultist](srd_monsters_cultist.md)
+- Alias: [Cultist](srd_monsters_cultist.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon
- **Terrain**
- **Classe d'armure** 12 (armure de cuir)
@@ -81929,7 +81929,7 @@ _Touché :_ 4 (1d6+1) dégâts tranchants.
# Noble
- Source: (CEO p)(SRD p)
-- SRD: [Noble](srd_monsters_noble.md)
+- Alias: [Noble](srd_monsters_noble.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 15 (cuirasse)
@@ -81962,7 +81962,7 @@ _Touché :_ 5 (1d8+1) dégâts perforants.
# Roturier
- Source: (CEO p)(SRD p)
-- SRD: [Commoner](srd_monsters_commoner.md)
+- Alias: [Commoner](srd_monsters_commoner.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 10
@@ -81990,7 +81990,7 @@ _Touché :_ 2 (1d4) dégâts contondants.
# Vétéran
- Source: (CEO p)(SRD p)
-- SRD: [Veteran](srd_monsters_veteran.md)
+- Alias: [Veteran](srd_monsters_veteran.md)
- Humanoïde (n'importe quelle race) de taille M, alignement quelconque
- **Terrain**
- **Classe d'armure** 17 (clibanion)
diff --git a/Data/HD/hd_monsters_aboleth.md b/Data/HD/hd_monsters_aboleth.md
index a025863b..7a4743c9 100644
--- a/Data/HD/hd_monsters_aboleth.md
+++ b/Data/HD/hd_monsters_aboleth.md
@@ -5,7 +5,7 @@
# Aboleth
- Source: (CEO p)(SRD p)
-- SRD: [Aboleth](srd_monsters_aboleth.md)
+- Alias: [Aboleth](srd_monsters_aboleth.md)
- Aberration de taille G, Loyal Mauvais
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_acolyte.md b/Data/HD/hd_monsters_acolyte.md
index 96165475..cde17396 100644
--- a/Data/HD/hd_monsters_acolyte.md
+++ b/Data/HD/hd_monsters_acolyte.md
@@ -5,7 +5,7 @@
# Acolyte
- Source: (CEO p)(SRD p)
-- SRD: [Acolyte](srd_monsters_acolyte.md)
+- Alias: [Acolyte](srd_monsters_acolyte.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_aigle.md b/Data/HD/hd_monsters_aigle.md
index 98ae3c8f..09b9ec32 100644
--- a/Data/HD/hd_monsters_aigle.md
+++ b/Data/HD/hd_monsters_aigle.md
@@ -5,7 +5,7 @@
# Aigle
- Source: (CEO p)(SRD p)
-- SRD: [Eagle](srd_monsters_eagle.md)
+- Alias: [Eagle](srd_monsters_eagle.md)
- Bête de taille P, non-alignée
- **Terrain** Mer / Océan, Montagnes
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_aigle_geant.md b/Data/HD/hd_monsters_aigle_geant.md
index e9ad3dab..cfeb2604 100644
--- a/Data/HD/hd_monsters_aigle_geant.md
+++ b/Data/HD/hd_monsters_aigle_geant.md
@@ -5,7 +5,7 @@
# Aigle géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Eagle](srd_monsters_giant_eagle.md)
+- Alias: [Giant Eagle](srd_monsters_giant_eagle.md)
- Bête de taille G, neutre bon
- **Terrain** Montagnes
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_ame_en_peine.md b/Data/HD/hd_monsters_ame_en_peine.md
index 51857131..f16bbfb3 100644
--- a/Data/HD/hd_monsters_ame_en_peine.md
+++ b/Data/HD/hd_monsters_ame_en_peine.md
@@ -5,7 +5,7 @@
# Âme-en-peine
- Source: (CEO p)(SRD p)
-- SRD: [Wraith](srd_monsters_wraith.md)
+- Alias: [Wraith](srd_monsters_wraith.md)
- Mort-vivant de taille M, Neutre Mauvais
- **Terrain** Collines / Vallées, Ruines extérieures, Ruines souterraines
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_androsphinx.md b/Data/HD/hd_monsters_androsphinx.md
index 1a65c57f..6f0293ea 100644
--- a/Data/HD/hd_monsters_androsphinx.md
+++ b/Data/HD/hd_monsters_androsphinx.md
@@ -5,7 +5,7 @@
# Androsphinx
- Source: (CEO p)(SRD p)
-- SRD: [Androsphinx](srd_monsters_androsphinx.md)
+- Alias: [Androsphinx](srd_monsters_androsphinx.md)
- Créature monstrueuse de taille G, Loyal Neutre
- **Terrain** Désert chaud, Donjon maçonné, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_ankheg.md b/Data/HD/hd_monsters_ankheg.md
index e46cca9e..e3ccfa6d 100644
--- a/Data/HD/hd_monsters_ankheg.md
+++ b/Data/HD/hd_monsters_ankheg.md
@@ -5,7 +5,7 @@
# Ankheg
- Source: (CEO p)(SRD p)
-- SRD: [Ankheg](srd_monsters_ankheg.md)
+- Alias: [Ankheg](srd_monsters_ankheg.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane, Caverne naturelle
- **Classe d'armure** 14 (armure naturelle), 11 quand il est [à terre](hd_conditions_a_terre.md)
diff --git a/Data/HD/hd_monsters_araignee.md b/Data/HD/hd_monsters_araignee.md
index a9eac12d..7b91dd79 100644
--- a/Data/HD/hd_monsters_araignee.md
+++ b/Data/HD/hd_monsters_araignee.md
@@ -5,7 +5,7 @@
# Araignée
- Source: (CEO p)(SRD p)
-- SRD: [Spider](srd_monsters_spider.md)
+- Alias: [Spider](srd_monsters_spider.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_araignee_de_phase.md b/Data/HD/hd_monsters_araignee_de_phase.md
index 697cb86b..2b75570b 100644
--- a/Data/HD/hd_monsters_araignee_de_phase.md
+++ b/Data/HD/hd_monsters_araignee_de_phase.md
@@ -5,7 +5,7 @@
# Araignée de phase
- Source: (CEO p)(SRD p)
-- SRD: [Phase Spider](srd_monsters_phase_spider.md)
+- Alias: [Phase Spider](srd_monsters_phase_spider.md)
- Bête de taille G, non-alignée
- **Terrain** Bois / Forêt, Caverne naturelle, Ruines extérieures
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_araignee_geante.md b/Data/HD/hd_monsters_araignee_geante.md
index 0c415eae..022d7f6c 100644
--- a/Data/HD/hd_monsters_araignee_geante.md
+++ b/Data/HD/hd_monsters_araignee_geante.md
@@ -5,7 +5,7 @@
# Araignée géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Spider](srd_monsters_giant_spider.md)
+- Alias: [Giant Spider](srd_monsters_giant_spider.md)
- Bête de taille G, non-alignée
- **Terrain** Caverne naturelle, Ruines extérieures
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_araignee_loup_geante.md b/Data/HD/hd_monsters_araignee_loup_geante.md
index 86567848..1730a88a 100644
--- a/Data/HD/hd_monsters_araignee_loup_geante.md
+++ b/Data/HD/hd_monsters_araignee_loup_geante.md
@@ -5,7 +5,7 @@
# Araignée-loup géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Wolf Spider](srd_monsters_giant_wolf_spider.md)
+- Alias: [Giant Wolf Spider](srd_monsters_giant_wolf_spider.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_arbre_eveille.md b/Data/HD/hd_monsters_arbre_eveille.md
index 2d417b5e..c1f47c1d 100644
--- a/Data/HD/hd_monsters_arbre_eveille.md
+++ b/Data/HD/hd_monsters_arbre_eveille.md
@@ -5,7 +5,7 @@
# Arbre éveillé
- Source: (CEO p)(SRD p)
-- SRD: [Awakened Tree](srd_monsters_awakened_tree.md)
+- Alias: [Awakened Tree](srd_monsters_awakened_tree.md)
- Plante de taille TG, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_arbuste_eveille.md b/Data/HD/hd_monsters_arbuste_eveille.md
index b5e7af8e..83c8715e 100644
--- a/Data/HD/hd_monsters_arbuste_eveille.md
+++ b/Data/HD/hd_monsters_arbuste_eveille.md
@@ -5,7 +5,7 @@
# Arbuste éveillé
- Source: (CEO p)(SRD p)
-- SRD: [Awakened Shrub](srd_monsters_awakened_shrub.md)
+- Alias: [Awakened Shrub](srd_monsters_awakened_shrub.md)
- Plante de taille P, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 9
diff --git a/Data/HD/hd_monsters_archimage.md b/Data/HD/hd_monsters_archimage.md
index b5888b56..06106385 100644
--- a/Data/HD/hd_monsters_archimage.md
+++ b/Data/HD/hd_monsters_archimage.md
@@ -5,7 +5,7 @@
# Archimage
- Source: (CEO p)(SRD p)
-- SRD: [Archmage](srd_monsters_archmage.md)
+- Alias: [Archmage](srd_monsters_archmage.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 12 (15 avec armure du mage)
diff --git a/Data/HD/hd_monsters_armure_animee.md b/Data/HD/hd_monsters_armure_animee.md
index 82d3d263..23d4119d 100644
--- a/Data/HD/hd_monsters_armure_animee.md
+++ b/Data/HD/hd_monsters_armure_animee.md
@@ -5,7 +5,7 @@
# Armure animée
- Source: (CEO p)(SRD p)
-- SRD: [Animated Armor](srd_monsters_animated_armor.md)
+- Alias: [Animated Armor](srd_monsters_animated_armor.md)
- Créature artificielle de taille M, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_assassin.md b/Data/HD/hd_monsters_assassin.md
index 48b470ac..e4a21f5c 100644
--- a/Data/HD/hd_monsters_assassin.md
+++ b/Data/HD/hd_monsters_assassin.md
@@ -5,7 +5,7 @@
# Assassin
- Source: (CEO p)(SRD p)
-- SRD: [Assassin](srd_monsters_assassin.md)
+- Alias: [Assassin](srd_monsters_assassin.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon
- **Terrain**
- **Classe d'armure** 15 (armure de cuir clouté)
diff --git a/Data/HD/hd_monsters_azer.md b/Data/HD/hd_monsters_azer.md
index 741b2332..45747d82 100644
--- a/Data/HD/hd_monsters_azer.md
+++ b/Data/HD/hd_monsters_azer.md
@@ -5,7 +5,7 @@
# Azer
- Source: (CEO p)(SRD p)
-- SRD: [Azer](srd_monsters_azer.md)
+- Alias: [Azer](srd_monsters_azer.md)
- Élémentaire de taille M, Loyal Neutre
- **Terrain** Plans élémentaires, Donjon maçonné
- **Classe d'armure** 17 (armure naturelle, bouclier)
diff --git a/Data/HD/hd_monsters_babelien.md b/Data/HD/hd_monsters_babelien.md
index a522582e..d417a61a 100644
--- a/Data/HD/hd_monsters_babelien.md
+++ b/Data/HD/hd_monsters_babelien.md
@@ -5,7 +5,7 @@
# Babélien
- Source: (CEO p)(SRD p)
-- SRD: [Gibbering Mouther](srd_monsters_gibbering_mouther.md)
+- Alias: [Gibbering Mouther](srd_monsters_gibbering_mouther.md)
- Aberration de taille M, neutre
- **Terrain** Littoral, Mer / Océan, Caverne naturelle, Caverne sous-marine
- **Classe d'armure** 9
diff --git a/Data/HD/hd_monsters_babouin.md b/Data/HD/hd_monsters_babouin.md
index 337231ff..b7757baf 100644
--- a/Data/HD/hd_monsters_babouin.md
+++ b/Data/HD/hd_monsters_babouin.md
@@ -5,7 +5,7 @@
# Babouin
- Source: (CEO p)(SRD p)
-- SRD: [Baboon](srd_monsters_baboon.md)
+- Alias: [Baboon](srd_monsters_baboon.md)
- Bête de taille P, non-alignée
- **Terrain** Jungle
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_balor.md b/Data/HD/hd_monsters_balor.md
index a2d4f537..93b0514c 100644
--- a/Data/HD/hd_monsters_balor.md
+++ b/Data/HD/hd_monsters_balor.md
@@ -5,7 +5,7 @@
# Balor
- Source: (CEO p)(SRD p)
-- SRD: [Balor](srd_monsters_balor.md)
+- Alias: [Balor](srd_monsters_balor.md)
- Fiélon (démon) de taille TG, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_bandit.md b/Data/HD/hd_monsters_bandit.md
index a02cecce..0436af2a 100644
--- a/Data/HD/hd_monsters_bandit.md
+++ b/Data/HD/hd_monsters_bandit.md
@@ -5,7 +5,7 @@
# Bandit
- Source: (CEO p)(SRD p)
-- SRD: [Bandit](srd_monsters_bandit.md)
+- Alias: [Bandit](srd_monsters_bandit.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Loyal
- **Terrain**
- **Classe d'armure** 12 (armure de cuir)
diff --git a/Data/HD/hd_monsters_basilic.md b/Data/HD/hd_monsters_basilic.md
index 96cc8b3e..5f91d649 100644
--- a/Data/HD/hd_monsters_basilic.md
+++ b/Data/HD/hd_monsters_basilic.md
@@ -5,7 +5,7 @@
# Basilic
- Source: (CEO p)(SRD p)
-- SRD: [Basilisk](srd_monsters_basilisk.md)
+- Alias: [Basilisk](srd_monsters_basilisk.md)
- Créature monstrueuse de taille M, non-alignée
- **Terrain** Collines / Vallées, Montagnes, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_bec_de_hache.md b/Data/HD/hd_monsters_bec_de_hache.md
index 96ec36b3..73604786 100644
--- a/Data/HD/hd_monsters_bec_de_hache.md
+++ b/Data/HD/hd_monsters_bec_de_hache.md
@@ -5,7 +5,7 @@
# Bec de hache
- Source: (CEO p)(SRD p)
-- SRD: [Axe Beak](srd_monsters_axe_beak.md)
+- Alias: [Axe Beak](srd_monsters_axe_beak.md)
- Bête de taille G, non-alignée
- **Terrain** Jungle
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_behir.md b/Data/HD/hd_monsters_behir.md
index e10388bf..320d90e5 100644
--- a/Data/HD/hd_monsters_behir.md
+++ b/Data/HD/hd_monsters_behir.md
@@ -5,7 +5,7 @@
# Béhir
- Source: (CEO p)(SRD p)
-- SRD: [Behir](srd_monsters_behir.md)
+- Alias: [Behir](srd_monsters_behir.md)
- Créature monstrueuse de taille TG, Neutre Mauvais
- **Terrain** Désert chaud, Montagnes, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_belette.md b/Data/HD/hd_monsters_belette.md
index ad589b64..a89ab5be 100644
--- a/Data/HD/hd_monsters_belette.md
+++ b/Data/HD/hd_monsters_belette.md
@@ -5,7 +5,7 @@
# Belette
- Source: (CEO p)(SRD p)
-- SRD: [Weasel](srd_monsters_weasel.md)
+- Alias: [Weasel](srd_monsters_weasel.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_belette_geante.md b/Data/HD/hd_monsters_belette_geante.md
index 3ebf91ea..da9d6d89 100644
--- a/Data/HD/hd_monsters_belette_geante.md
+++ b/Data/HD/hd_monsters_belette_geante.md
@@ -5,7 +5,7 @@
# Belette géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Weasel](srd_monsters_giant_weasel.md)
+- Alias: [Giant Weasel](srd_monsters_giant_weasel.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_berserker.md b/Data/HD/hd_monsters_berserker.md
index 00935506..75d5438a 100644
--- a/Data/HD/hd_monsters_berserker.md
+++ b/Data/HD/hd_monsters_berserker.md
@@ -5,7 +5,7 @@
# Berserker
- Source: (CEO p)(SRD p)
-- SRD: [Berserker](srd_monsters_berserker.md)
+- Alias: [Berserker](srd_monsters_berserker.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement Chaotique
- **Terrain**
- **Classe d'armure** 13 (armure de peau)
diff --git a/Data/HD/hd_monsters_blaireau.md b/Data/HD/hd_monsters_blaireau.md
index a4a310f8..396f577d 100644
--- a/Data/HD/hd_monsters_blaireau.md
+++ b/Data/HD/hd_monsters_blaireau.md
@@ -5,7 +5,7 @@
# Blaireau
- Source: (CEO p)(SRD p)
-- SRD: [Badger](srd_monsters_badger.md)
+- Alias: [Badger](srd_monsters_badger.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_blaireau_geant.md b/Data/HD/hd_monsters_blaireau_geant.md
index 99af5135..a502aca3 100644
--- a/Data/HD/hd_monsters_blaireau_geant.md
+++ b/Data/HD/hd_monsters_blaireau_geant.md
@@ -5,7 +5,7 @@
# Blaireau géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Badger](srd_monsters_giant_badger.md)
+- Alias: [Giant Badger](srd_monsters_giant_badger.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_bulette.md b/Data/HD/hd_monsters_bulette.md
index 8803daff..de7f59a5 100644
--- a/Data/HD/hd_monsters_bulette.md
+++ b/Data/HD/hd_monsters_bulette.md
@@ -5,7 +5,7 @@
# Bulette
- Source: (CEO p)(SRD p)
-- SRD: [Bulette](srd_monsters_bulette.md)
+- Alias: [Bulette](srd_monsters_bulette.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Caverne naturelle
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_capitaine_bandit.md b/Data/HD/hd_monsters_capitaine_bandit.md
index 089fb138..93ca1c8e 100644
--- a/Data/HD/hd_monsters_capitaine_bandit.md
+++ b/Data/HD/hd_monsters_capitaine_bandit.md
@@ -5,7 +5,7 @@
# Capitaine bandit
- Source: (CEO p)(SRD p)
-- SRD: [Bandit Captain](srd_monsters_bandit_captain.md)
+- Alias: [Bandit Captain](srd_monsters_bandit_captain.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Loyal
- **Terrain**
- **Classe d'armure** 15 (armure de cuir clouté)
diff --git a/Data/HD/hd_monsters_centaure.md b/Data/HD/hd_monsters_centaure.md
index df179989..49fd4b6f 100644
--- a/Data/HD/hd_monsters_centaure.md
+++ b/Data/HD/hd_monsters_centaure.md
@@ -5,7 +5,7 @@
# Centaure
- Source: (CEO p)(SRD p)
-- SRD: [Centaur](srd_monsters_centaur.md)
+- Alias: [Centaur](srd_monsters_centaur.md)
- Créature monstrueuse de taille G, Neutre Bon
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_chacal.md b/Data/HD/hd_monsters_chacal.md
index 7a0f82d9..42545696 100644
--- a/Data/HD/hd_monsters_chacal.md
+++ b/Data/HD/hd_monsters_chacal.md
@@ -5,7 +5,7 @@
# Chacal
- Source: (CEO p)(SRD p)
-- SRD: [Jackal](srd_monsters_jackal.md)
+- Alias: [Jackal](srd_monsters_jackal.md)
- Bête de taille P, non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_chameau.md b/Data/HD/hd_monsters_chameau.md
index 8f188e1e..2c88aff1 100644
--- a/Data/HD/hd_monsters_chameau.md
+++ b/Data/HD/hd_monsters_chameau.md
@@ -5,7 +5,7 @@
# Chameau
- Source: (CEO p)(SRD p)
-- SRD: [Camel](srd_monsters_camel.md)
+- Alias: [Camel](srd_monsters_camel.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud
- **Classe d'armure** 9
diff --git a/Data/HD/hd_monsters_chat.md b/Data/HD/hd_monsters_chat.md
index 76accd00..764bd93f 100644
--- a/Data/HD/hd_monsters_chat.md
+++ b/Data/HD/hd_monsters_chat.md
@@ -5,7 +5,7 @@
# Chat
- Source: (CEO p)(SRD p)
-- SRD: [Cat](srd_monsters_cat.md)
+- Alias: [Cat](srd_monsters_cat.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_chauve_souris.md b/Data/HD/hd_monsters_chauve_souris.md
index 989cf681..2e184507 100644
--- a/Data/HD/hd_monsters_chauve_souris.md
+++ b/Data/HD/hd_monsters_chauve_souris.md
@@ -5,7 +5,7 @@
# Chauve-souris
- Source: (CEO p)(SRD p)
-- SRD: [Bat](srd_monsters_bat.md)
+- Alias: [Bat](srd_monsters_bat.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_chauve_souris_geante.md b/Data/HD/hd_monsters_chauve_souris_geante.md
index 2909a72e..8fb46351 100644
--- a/Data/HD/hd_monsters_chauve_souris_geante.md
+++ b/Data/HD/hd_monsters_chauve_souris_geante.md
@@ -5,7 +5,7 @@
# Chauve-souris géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Bat](srd_monsters_giant_bat.md)
+- Alias: [Giant Bat](srd_monsters_giant_bat.md)
- Bête de taille G, non-alignée
- **Terrain** Jungle, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_cheval_de_guerre.md b/Data/HD/hd_monsters_cheval_de_guerre.md
index 4048fe99..93e5643f 100644
--- a/Data/HD/hd_monsters_cheval_de_guerre.md
+++ b/Data/HD/hd_monsters_cheval_de_guerre.md
@@ -5,7 +5,7 @@
# Cheval de guerre
- Source: (CEO p)(SRD p)
-- SRD: [Warhorse](srd_monsters_warhorse.md)
+- Alias: [Warhorse](srd_monsters_warhorse.md)
- Bête de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_cheval_de_selle.md b/Data/HD/hd_monsters_cheval_de_selle.md
index 1268b765..9bbb86b1 100644
--- a/Data/HD/hd_monsters_cheval_de_selle.md
+++ b/Data/HD/hd_monsters_cheval_de_selle.md
@@ -5,7 +5,7 @@
# Cheval de selle
- Source: (CEO p)(SRD p)
-- SRD: [Riding Horse](srd_monsters_riding_horse.md)
+- Alias: [Riding Horse](srd_monsters_riding_horse.md)
- Bête de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_cheval_de_trait.md b/Data/HD/hd_monsters_cheval_de_trait.md
index a9225c12..a78c0516 100644
--- a/Data/HD/hd_monsters_cheval_de_trait.md
+++ b/Data/HD/hd_monsters_cheval_de_trait.md
@@ -5,7 +5,7 @@
# Cheval de trait
- Source: (CEO p)(SRD p)
-- SRD: [Draft Horse](srd_monsters_draft_horse.md)
+- Alias: [Draft Horse](srd_monsters_draft_horse.md)
- Bête de taille G, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_chevalier.md b/Data/HD/hd_monsters_chevalier.md
index 0e1ff3a6..ee49c231 100644
--- a/Data/HD/hd_monsters_chevalier.md
+++ b/Data/HD/hd_monsters_chevalier.md
@@ -5,7 +5,7 @@
# Chevalier
- Source: (CEO p)(SRD p)
-- SRD: [Knight](srd_monsters_knight.md)
+- Alias: [Knight](srd_monsters_knight.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 18 (harnois)
diff --git a/Data/HD/hd_monsters_chevre.md b/Data/HD/hd_monsters_chevre.md
index 58869960..447f0261 100644
--- a/Data/HD/hd_monsters_chevre.md
+++ b/Data/HD/hd_monsters_chevre.md
@@ -5,7 +5,7 @@
# Chèvre
- Source: (CEO p)(SRD p)
-- SRD: [Goat](srd_monsters_goat.md)
+- Alias: [Goat](srd_monsters_goat.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_chevre_geante.md b/Data/HD/hd_monsters_chevre_geante.md
index 13930465..a72c5df6 100644
--- a/Data/HD/hd_monsters_chevre_geante.md
+++ b/Data/HD/hd_monsters_chevre_geante.md
@@ -5,7 +5,7 @@
# Chèvre géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Goat](srd_monsters_giant_goat.md)
+- Alias: [Giant Goat](srd_monsters_giant_goat.md)
- Bête de taille G, non-alignée
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_chevreuil.md b/Data/HD/hd_monsters_chevreuil.md
index 1386ac3d..7f823e61 100644
--- a/Data/HD/hd_monsters_chevreuil.md
+++ b/Data/HD/hd_monsters_chevreuil.md
@@ -5,7 +5,7 @@
# Chevreuil
- Source: (CEO p)(SRD p)
-- SRD: [Deer](srd_monsters_deer.md)
+- Alias: [Deer](srd_monsters_deer.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_chien_du_trepas.md b/Data/HD/hd_monsters_chien_du_trepas.md
index 3a70d15e..1e3ff4aa 100644
--- a/Data/HD/hd_monsters_chien_du_trepas.md
+++ b/Data/HD/hd_monsters_chien_du_trepas.md
@@ -5,7 +5,7 @@
# Chien du trépas
- Source: (CEO p)(SRD p)
-- SRD: [Death Dog](srd_monsters_death_dog.md)
+- Alias: [Death Dog](srd_monsters_death_dog.md)
- Créature monstrueuse de taille M, Neutre Mauvais
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_chien_esquiveur.md b/Data/HD/hd_monsters_chien_esquiveur.md
index d2a26b01..f6d5376c 100644
--- a/Data/HD/hd_monsters_chien_esquiveur.md
+++ b/Data/HD/hd_monsters_chien_esquiveur.md
@@ -5,7 +5,7 @@
# Chien esquiveur
- Source: (CEO p)(SRD p)
-- SRD: [Blink Dog](srd_monsters_blink_dog.md)
+- Alias: [Blink Dog](srd_monsters_blink_dog.md)
- Fée de taille M, Loyal Bon
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_chimere.md b/Data/HD/hd_monsters_chimere.md
index 9babfe4b..04244c4c 100644
--- a/Data/HD/hd_monsters_chimere.md
+++ b/Data/HD/hd_monsters_chimere.md
@@ -5,7 +5,7 @@
# Chimère
- Source: (CEO p)(SRD p)
-- SRD: [Chimera](srd_monsters_chimera.md)
+- Alias: [Chimera](srd_monsters_chimera.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Bois / Forêt, Montagnes, Ruines extérieures
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_chouette.md b/Data/HD/hd_monsters_chouette.md
index 525271a3..0f59f377 100644
--- a/Data/HD/hd_monsters_chouette.md
+++ b/Data/HD/hd_monsters_chouette.md
@@ -5,7 +5,7 @@
# Chouette
- Source: (CEO p)(SRD p)
-- SRD: [Owl](srd_monsters_owl.md)
+- Alias: [Owl](srd_monsters_owl.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_chouette_geante.md b/Data/HD/hd_monsters_chouette_geante.md
index d00dcc2d..ec5d31ab 100644
--- a/Data/HD/hd_monsters_chouette_geante.md
+++ b/Data/HD/hd_monsters_chouette_geante.md
@@ -5,7 +5,7 @@
# Chouette géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Owl](srd_monsters_giant_owl.md)
+- Alias: [Giant Owl](srd_monsters_giant_owl.md)
- Bête de taille G, neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_chuul.md b/Data/HD/hd_monsters_chuul.md
index ccd15213..43c6d38e 100644
--- a/Data/HD/hd_monsters_chuul.md
+++ b/Data/HD/hd_monsters_chuul.md
@@ -5,7 +5,7 @@
# Chuul
- Source: (CEO p)(SRD p)
-- SRD: [Chuul](srd_monsters_chuul.md)
+- Alias: [Chuul](srd_monsters_chuul.md)
- Aberration de taille G, Chaotique Mauvais
- **Terrain** Mangrove / Marécage, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/hd_monsters_cockatrice.md b/Data/HD/hd_monsters_cockatrice.md
index 589b6a40..5965c2c5 100644
--- a/Data/HD/hd_monsters_cockatrice.md
+++ b/Data/HD/hd_monsters_cockatrice.md
@@ -5,7 +5,7 @@
# Cockatrice
- Source: (CEO p)(SRD p)
-- SRD: [Cockatrice](srd_monsters_cockatrice.md)
+- Alias: [Cockatrice](srd_monsters_cockatrice.md)
- Créature monstrueuse de taille P, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_corbeau.md b/Data/HD/hd_monsters_corbeau.md
index 9bbbdb6e..83140420 100644
--- a/Data/HD/hd_monsters_corbeau.md
+++ b/Data/HD/hd_monsters_corbeau.md
@@ -5,7 +5,7 @@
# Corbeau
- Source: (CEO p)(SRD p)
-- SRD: [Raven](srd_monsters_raven.md)
+- Alias: [Raven](srd_monsters_raven.md)
- Bête de taille TP, non-alignée
- **Terrain** Collines / Vallées, Littoral, Montagnes
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_couatl.md b/Data/HD/hd_monsters_couatl.md
index 5ae6f779..537ce271 100644
--- a/Data/HD/hd_monsters_couatl.md
+++ b/Data/HD/hd_monsters_couatl.md
@@ -5,7 +5,7 @@
# Couatl
- Source: (CEO p)(SRD p)
-- SRD: [Couatl](srd_monsters_couatl.md)
+- Alias: [Couatl](srd_monsters_couatl.md)
- Céleste de taille M, Loyal Bon
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_crabe.md b/Data/HD/hd_monsters_crabe.md
index 66b1d6e9..6167b5cc 100644
--- a/Data/HD/hd_monsters_crabe.md
+++ b/Data/HD/hd_monsters_crabe.md
@@ -5,7 +5,7 @@
# Crabe
- Source: (CEO p)(SRD p)
-- SRD: [Crab](srd_monsters_crab.md)
+- Alias: [Crab](srd_monsters_crab.md)
- Bête de taille TP, non-alignée
- **Terrain** Littoral, Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_crabe_geant.md b/Data/HD/hd_monsters_crabe_geant.md
index 8eb64d32..26fc9cc2 100644
--- a/Data/HD/hd_monsters_crabe_geant.md
+++ b/Data/HD/hd_monsters_crabe_geant.md
@@ -5,7 +5,7 @@
# Crabe géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Crab](srd_monsters_giant_crab.md)
+- Alias: [Giant Crab](srd_monsters_giant_crab.md)
- Bête de taille M, non-alignée
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_crapaud_geant.md b/Data/HD/hd_monsters_crapaud_geant.md
index 5d4fce8a..adbab72c 100644
--- a/Data/HD/hd_monsters_crapaud_geant.md
+++ b/Data/HD/hd_monsters_crapaud_geant.md
@@ -5,7 +5,7 @@
# Crapaud géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Toad](srd_monsters_giant_toad.md)
+- Alias: [Giant Toad](srd_monsters_giant_toad.md)
- Bête de taille G, non-alignée
- **Terrain** Littoral, Mangrove / Marécage
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_criard.md b/Data/HD/hd_monsters_criard.md
index 4e4a76a1..cbcfd2d0 100644
--- a/Data/HD/hd_monsters_criard.md
+++ b/Data/HD/hd_monsters_criard.md
@@ -5,7 +5,7 @@
# Criard
- Source: (CEO p)(SRD p)
-- SRD: [Shrieker](srd_monsters_shrieker.md)
+- Alias: [Shrieker](srd_monsters_shrieker.md)
- Plante de taille M, non-alignée
- **Terrain** Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 5
diff --git a/Data/HD/hd_monsters_crocodile.md b/Data/HD/hd_monsters_crocodile.md
index fe05c200..4484dff5 100644
--- a/Data/HD/hd_monsters_crocodile.md
+++ b/Data/HD/hd_monsters_crocodile.md
@@ -5,7 +5,7 @@
# Crocodile
- Source: (CEO p)(SRD p)
-- SRD: [Crocodile](srd_monsters_crocodile.md)
+- Alias: [Crocodile](srd_monsters_crocodile.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud, Jungle, Mangrove / Marécage
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_crocodile_geant.md b/Data/HD/hd_monsters_crocodile_geant.md
index fdb6ea00..13e13156 100644
--- a/Data/HD/hd_monsters_crocodile_geant.md
+++ b/Data/HD/hd_monsters_crocodile_geant.md
@@ -5,7 +5,7 @@
# Crocodile géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Crocodile](srd_monsters_giant_crocodile.md)
+- Alias: [Giant Crocodile](srd_monsters_giant_crocodile.md)
- Bête de taille TG, non-alignée
- **Terrain** Désert chaud, Jungle, Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_cube_gelatineux.md b/Data/HD/hd_monsters_cube_gelatineux.md
index 6b661877..26652606 100644
--- a/Data/HD/hd_monsters_cube_gelatineux.md
+++ b/Data/HD/hd_monsters_cube_gelatineux.md
@@ -5,7 +5,7 @@
# Cube gélatineux
- Source: (CEO p)(SRD p)
-- SRD: [Gelatinous Cube](srd_monsters_gelatinous_cube.md)
+- Alias: [Gelatinous Cube](srd_monsters_gelatinous_cube.md)
- Vase de taille G, non-alignée
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 6
diff --git a/Data/HD/hd_monsters_destrier_noir.md b/Data/HD/hd_monsters_destrier_noir.md
index dabf30a6..486f078c 100644
--- a/Data/HD/hd_monsters_destrier_noir.md
+++ b/Data/HD/hd_monsters_destrier_noir.md
@@ -5,7 +5,7 @@
# Destrier noir
- Source: (CEO p)(SRD p)
-- SRD: [Nightmare](srd_monsters_nightmare.md)
+- Alias: [Nightmare](srd_monsters_nightmare.md)
- Fiélon de taille G, Neutre Mauvais
- **Terrain**
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_deva.md b/Data/HD/hd_monsters_deva.md
index 403c4964..50155cb4 100644
--- a/Data/HD/hd_monsters_deva.md
+++ b/Data/HD/hd_monsters_deva.md
@@ -5,7 +5,7 @@
# Déva
- Source: (CEO p)(SRD p)
-- SRD: [Deva](srd_monsters_deva.md)
+- Alias: [Deva](srd_monsters_deva.md)
- Céleste de taille M, Loyal Bon
- **Terrain**
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_diable_barbele.md b/Data/HD/hd_monsters_diable_barbele.md
index dd7d33c5..4d520264 100644
--- a/Data/HD/hd_monsters_diable_barbele.md
+++ b/Data/HD/hd_monsters_diable_barbele.md
@@ -5,7 +5,7 @@
# Diable barbelé
- Source: (CEO p)(SRD p)
-- SRD: [Barbed Devil](srd_monsters_barbed_devil.md)
+- Alias: [Barbed Devil](srd_monsters_barbed_devil.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_diable_barbu.md b/Data/HD/hd_monsters_diable_barbu.md
index ffd74c35..4a80fd52 100644
--- a/Data/HD/hd_monsters_diable_barbu.md
+++ b/Data/HD/hd_monsters_diable_barbu.md
@@ -5,7 +5,7 @@
# Diable barbu
- Source: (CEO p)(SRD p)
-- SRD: [Bearded Devil](srd_monsters_bearded_devil.md)
+- Alias: [Bearded Devil](srd_monsters_bearded_devil.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_diable_cornu.md b/Data/HD/hd_monsters_diable_cornu.md
index 89294760..0a05b150 100644
--- a/Data/HD/hd_monsters_diable_cornu.md
+++ b/Data/HD/hd_monsters_diable_cornu.md
@@ -5,7 +5,7 @@
# Diable cornu
- Source: (CEO p)(SRD p)
-- SRD: [Horned Devil](srd_monsters_horned_devil.md)
+- Alias: [Horned Devil](srd_monsters_horned_devil.md)
- Fiélon (diable) de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_diable_des_chaines.md b/Data/HD/hd_monsters_diable_des_chaines.md
index 20fbf1e1..48faa641 100644
--- a/Data/HD/hd_monsters_diable_des_chaines.md
+++ b/Data/HD/hd_monsters_diable_des_chaines.md
@@ -5,7 +5,7 @@
# Diable des chaînes
- Source: (CEO p)(SRD p)
-- SRD: [Chain Devil](srd_monsters_chain_devil.md)
+- Alias: [Chain Devil](srd_monsters_chain_devil.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/hd_monsters_diable_gele.md b/Data/HD/hd_monsters_diable_gele.md
index 193048f9..175ce133 100644
--- a/Data/HD/hd_monsters_diable_gele.md
+++ b/Data/HD/hd_monsters_diable_gele.md
@@ -5,7 +5,7 @@
# Diable gelé
- Source: (CEO p)(SRD p)
-- SRD: [Ice Devil](srd_monsters_ice_devil.md)
+- Alias: [Ice Devil](srd_monsters_ice_devil.md)
- Fiélon (diable) de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_diable_osseux.md b/Data/HD/hd_monsters_diable_osseux.md
index 3d03bf4b..d239f3ce 100644
--- a/Data/HD/hd_monsters_diable_osseux.md
+++ b/Data/HD/hd_monsters_diable_osseux.md
@@ -5,7 +5,7 @@
# Diable osseux
- Source: (CEO p)(SRD p)
-- SRD: [Bone Devil](srd_monsters_bone_devil.md)
+- Alias: [Bone Devil](srd_monsters_bone_devil.md)
- Fiélon (diable) de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_diablotin.md b/Data/HD/hd_monsters_diablotin.md
index 6b698c98..19de448a 100644
--- a/Data/HD/hd_monsters_diablotin.md
+++ b/Data/HD/hd_monsters_diablotin.md
@@ -5,7 +5,7 @@
# Diablotin
- Source: (CEO p)(SRD p)
-- SRD: [Imp](srd_monsters_imp.md)
+- Alias: [Imp](srd_monsters_imp.md)
- Fiélon (diable, métamorphe) de taille TP, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_diantrefosse.md b/Data/HD/hd_monsters_diantrefosse.md
index dfad6d3b..07174712 100644
--- a/Data/HD/hd_monsters_diantrefosse.md
+++ b/Data/HD/hd_monsters_diantrefosse.md
@@ -5,7 +5,7 @@
# Diantrefosse
- Source: (CEO p)(SRD p)
-- SRD: [Pit Fiend](srd_monsters_pit_fiend.md)
+- Alias: [Pit Fiend](srd_monsters_pit_fiend.md)
- Fiélon (diable) de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_djinn.md b/Data/HD/hd_monsters_djinn.md
index fd4caa9f..afa1ec16 100644
--- a/Data/HD/hd_monsters_djinn.md
+++ b/Data/HD/hd_monsters_djinn.md
@@ -5,7 +5,7 @@
# Djinn
- Source: (CEO p)(SRD p)
-- SRD: [Djinni](srd_monsters_djinni.md)
+- Alias: [Djinni](srd_monsters_djinni.md)
- Élémentaire de taille G, Chaotique Bon
- **Terrain** Montagnes, Plans élémentaires
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_doppleganger.md b/Data/HD/hd_monsters_doppleganger.md
index 6efaefa8..dc4a579f 100644
--- a/Data/HD/hd_monsters_doppleganger.md
+++ b/Data/HD/hd_monsters_doppleganger.md
@@ -5,7 +5,7 @@
# Doppleganger
- Source: (CEO p)(SRD p)
-- SRD: [Doppelganger](srd_monsters_doppelganger.md)
+- Alias: [Doppelganger](srd_monsters_doppelganger.md)
- Créature monstrueuse (métamorphe) de taille M, neutre
- **Terrain** Donjon maçonné
- **Classe d'armure** 14
diff --git a/Data/HD/hd_monsters_dragon_blanc_adulte.md b/Data/HD/hd_monsters_dragon_blanc_adulte.md
index bc65771f..b5fb2694 100644
--- a/Data/HD/hd_monsters_dragon_blanc_adulte.md
+++ b/Data/HD/hd_monsters_dragon_blanc_adulte.md
@@ -5,7 +5,7 @@
# Dragon blanc adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult White Dragon](srd_monsters_adult_white_dragon.md)
+- Alias: [Adult White Dragon](srd_monsters_adult_white_dragon.md)
- Dragon de taille TG, Chaotique Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_blanc_venerable.md b/Data/HD/hd_monsters_dragon_blanc_venerable.md
index 87995437..22217e74 100644
--- a/Data/HD/hd_monsters_dragon_blanc_venerable.md
+++ b/Data/HD/hd_monsters_dragon_blanc_venerable.md
@@ -5,7 +5,7 @@
# Dragon blanc vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient White Dragon](srd_monsters_ancient_white_dragon.md)
+- Alias: [Ancient White Dragon](srd_monsters_ancient_white_dragon.md)
- Dragon de taille Gig, Chaotique Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_bleu_adulte.md b/Data/HD/hd_monsters_dragon_bleu_adulte.md
index 60029f5b..d942cfd9 100644
--- a/Data/HD/hd_monsters_dragon_bleu_adulte.md
+++ b/Data/HD/hd_monsters_dragon_bleu_adulte.md
@@ -5,7 +5,7 @@
# Dragon bleu adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Blue Dragon](srd_monsters_adult_blue_dragon.md)
+- Alias: [Adult Blue Dragon](srd_monsters_adult_blue_dragon.md)
- Dragon de taille TG, Loyal Mauvais
- **Terrain** Désert chaud, Littoral
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_bleu_venerable.md b/Data/HD/hd_monsters_dragon_bleu_venerable.md
index 1a1362b0..3e1bc724 100644
--- a/Data/HD/hd_monsters_dragon_bleu_venerable.md
+++ b/Data/HD/hd_monsters_dragon_bleu_venerable.md
@@ -5,7 +5,7 @@
# Dragon bleu vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Blue Dragon](srd_monsters_ancient_blue_dragon.md)
+- Alias: [Ancient Blue Dragon](srd_monsters_ancient_blue_dragon.md)
- Dragon de taille Gig, Loyal Mauvais
- **Terrain** Désert chaud, Littoral
- **Classe d'armure** 22 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_dairain_adulte.md b/Data/HD/hd_monsters_dragon_dairain_adulte.md
index 0b01d4e9..36656579 100644
--- a/Data/HD/hd_monsters_dragon_dairain_adulte.md
+++ b/Data/HD/hd_monsters_dragon_dairain_adulte.md
@@ -5,7 +5,7 @@
# Dragon d'airain adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Brass Dragon](srd_monsters_adult_brass_dragon.md)
+- Alias: [Adult Brass Dragon](srd_monsters_adult_brass_dragon.md)
- Dragon de taille TG, Chaotique Bon
- **Terrain** Désert chaud, Ruines extérieures
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_dairain_venerable.md b/Data/HD/hd_monsters_dragon_dairain_venerable.md
index 33222948..5f530afb 100644
--- a/Data/HD/hd_monsters_dragon_dairain_venerable.md
+++ b/Data/HD/hd_monsters_dragon_dairain_venerable.md
@@ -5,7 +5,7 @@
# Dragon d'airain vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Brass Dragon](srd_monsters_ancient_brass_dragon.md)
+- Alias: [Ancient Brass Dragon](srd_monsters_ancient_brass_dragon.md)
- Dragon de taille Gig, Chaotique Bon
- **Terrain** Désert chaud, Ruines extérieures
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_dargent_adulte.md b/Data/HD/hd_monsters_dragon_dargent_adulte.md
index 23b7a70d..fa90fb96 100644
--- a/Data/HD/hd_monsters_dragon_dargent_adulte.md
+++ b/Data/HD/hd_monsters_dragon_dargent_adulte.md
@@ -5,7 +5,7 @@
# Dragon d'argent adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Silver Dragon](srd_monsters_adult_silver_dragon.md)
+- Alias: [Adult Silver Dragon](srd_monsters_adult_silver_dragon.md)
- Dragon de taille TG, Loyal Bon
- **Terrain** Montagnes
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_dargent_venerable.md b/Data/HD/hd_monsters_dragon_dargent_venerable.md
index c5455556..beff4c96 100644
--- a/Data/HD/hd_monsters_dragon_dargent_venerable.md
+++ b/Data/HD/hd_monsters_dragon_dargent_venerable.md
@@ -5,7 +5,7 @@
# Dragon d'argent vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Silver Dragon](srd_monsters_ancient_silver_dragon.md)
+- Alias: [Ancient Silver Dragon](srd_monsters_ancient_silver_dragon.md)
- Dragon de taille Gig, Loyal Bon
- **Terrain** Montagnes
- **Classe d'armure** 22 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_de_bronze_adulte.md b/Data/HD/hd_monsters_dragon_de_bronze_adulte.md
index b46a600a..29b9854b 100644
--- a/Data/HD/hd_monsters_dragon_de_bronze_adulte.md
+++ b/Data/HD/hd_monsters_dragon_de_bronze_adulte.md
@@ -5,7 +5,7 @@
# Dragon de bronze adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Bronze Dragon](srd_monsters_adult_bronze_dragon.md)
+- Alias: [Adult Bronze Dragon](srd_monsters_adult_bronze_dragon.md)
- Dragon de taille TG, Loyal Bon
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_de_bronze_venerable.md b/Data/HD/hd_monsters_dragon_de_bronze_venerable.md
index 460d96ee..1c736e38 100644
--- a/Data/HD/hd_monsters_dragon_de_bronze_venerable.md
+++ b/Data/HD/hd_monsters_dragon_de_bronze_venerable.md
@@ -5,7 +5,7 @@
# Dragon de bronze vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Bronze Dragon](srd_monsters_ancient_bronze_dragon.md)
+- Alias: [Ancient Bronze Dragon](srd_monsters_ancient_bronze_dragon.md)
- Dragon de taille Gig, Loyal Bon
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 22 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_de_cuivre_adulte.md b/Data/HD/hd_monsters_dragon_de_cuivre_adulte.md
index 435463d8..cd216da6 100644
--- a/Data/HD/hd_monsters_dragon_de_cuivre_adulte.md
+++ b/Data/HD/hd_monsters_dragon_de_cuivre_adulte.md
@@ -5,7 +5,7 @@
# Dragon de cuivre adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Copper Dragon](srd_monsters_adult_copper_dragon.md)
+- Alias: [Adult Copper Dragon](srd_monsters_adult_copper_dragon.md)
- Dragon de taille TG, Chaotique Bon
- **Terrain** Collines / Vallées
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_de_cuivre_venerable.md b/Data/HD/hd_monsters_dragon_de_cuivre_venerable.md
index b1c82923..41061097 100644
--- a/Data/HD/hd_monsters_dragon_de_cuivre_venerable.md
+++ b/Data/HD/hd_monsters_dragon_de_cuivre_venerable.md
@@ -5,7 +5,7 @@
# Dragon de cuivre vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Copper Dragon](srd_monsters_ancient_copper_dragon.md)
+- Alias: [Ancient Copper Dragon](srd_monsters_ancient_copper_dragon.md)
- Dragon de taille Gig, Chaotique Bon
- **Terrain** Collines / Vallées
- **Classe d'armure** 21 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_dor_adulte.md b/Data/HD/hd_monsters_dragon_dor_adulte.md
index 5d42a928..98ffd799 100644
--- a/Data/HD/hd_monsters_dragon_dor_adulte.md
+++ b/Data/HD/hd_monsters_dragon_dor_adulte.md
@@ -5,7 +5,7 @@
# Dragon d'or adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Gold Dragon](srd_monsters_adult_gold_dragon.md)
+- Alias: [Adult Gold Dragon](srd_monsters_adult_gold_dragon.md)
- Dragon de taille TG, Loyal Bon
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_dor_venerable.md b/Data/HD/hd_monsters_dragon_dor_venerable.md
index ce859ca6..d83948c4 100644
--- a/Data/HD/hd_monsters_dragon_dor_venerable.md
+++ b/Data/HD/hd_monsters_dragon_dor_venerable.md
@@ -5,7 +5,7 @@
# Dragon d'or vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Gold Dragon](srd_monsters_ancient_gold_dragon.md)
+- Alias: [Ancient Gold Dragon](srd_monsters_ancient_gold_dragon.md)
- Dragon de taille Gig, Loyal Bon
- **Terrain**
- **Classe d'armure** 22 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_noir_adulte.md b/Data/HD/hd_monsters_dragon_noir_adulte.md
index cb8f9688..4ec729d5 100644
--- a/Data/HD/hd_monsters_dragon_noir_adulte.md
+++ b/Data/HD/hd_monsters_dragon_noir_adulte.md
@@ -5,7 +5,7 @@
# Dragon noir adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Black Dragon](srd_monsters_adult_black_dragon.md)
+- Alias: [Adult Black Dragon](srd_monsters_adult_black_dragon.md)
- Dragon de taille TG, Chaotique Mauvais
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_noir_venerable.md b/Data/HD/hd_monsters_dragon_noir_venerable.md
index 013a97f1..0ecf599f 100644
--- a/Data/HD/hd_monsters_dragon_noir_venerable.md
+++ b/Data/HD/hd_monsters_dragon_noir_venerable.md
@@ -5,7 +5,7 @@
# Dragon noir vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Black Dragon](srd_monsters_ancient_black_dragon.md)
+- Alias: [Ancient Black Dragon](srd_monsters_ancient_black_dragon.md)
- Dragon de taille Gig, Chaotique Mauvais
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 22 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_rouge_adulte.md b/Data/HD/hd_monsters_dragon_rouge_adulte.md
index 10f0d9b7..ceda00a5 100644
--- a/Data/HD/hd_monsters_dragon_rouge_adulte.md
+++ b/Data/HD/hd_monsters_dragon_rouge_adulte.md
@@ -5,7 +5,7 @@
# Dragon rouge adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Red Dragon](srd_monsters_adult_red_dragon.md)
+- Alias: [Adult Red Dragon](srd_monsters_adult_red_dragon.md)
- Dragon de taille TG, Chaotique Mauvais
- **Terrain** Montagnes, Ruines souterraines
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_rouge_venerable.md b/Data/HD/hd_monsters_dragon_rouge_venerable.md
index 4c0b81bd..e6b0a9ed 100644
--- a/Data/HD/hd_monsters_dragon_rouge_venerable.md
+++ b/Data/HD/hd_monsters_dragon_rouge_venerable.md
@@ -5,7 +5,7 @@
# Dragon rouge vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Red Dragon](srd_monsters_ancient_red_dragon.md)
+- Alias: [Ancient Red Dragon](srd_monsters_ancient_red_dragon.md)
- Dragon de taille Gig, Chaotique Mauvais
- **Terrain** Montagnes, Ruines souterraines
- **Classe d'armure** 22 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_tortue.md b/Data/HD/hd_monsters_dragon_tortue.md
index 2b57e3e5..add03694 100644
--- a/Data/HD/hd_monsters_dragon_tortue.md
+++ b/Data/HD/hd_monsters_dragon_tortue.md
@@ -5,7 +5,7 @@
# Dragon-tortue
- Source: (CEO p)(SRD p)
-- SRD: [Dragon Turtle](srd_monsters_dragon_turtle.md)
+- Alias: [Dragon Turtle](srd_monsters_dragon_turtle.md)
- Dragon de taille Gig, neutre
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_vert_adulte.md b/Data/HD/hd_monsters_dragon_vert_adulte.md
index 87421832..797b01e4 100644
--- a/Data/HD/hd_monsters_dragon_vert_adulte.md
+++ b/Data/HD/hd_monsters_dragon_vert_adulte.md
@@ -5,7 +5,7 @@
# Dragon vert adulte
- Source: (CEO p)(SRD p)
-- SRD: [Adult Green Dragon](srd_monsters_adult_green_dragon.md)
+- Alias: [Adult Green Dragon](srd_monsters_adult_green_dragon.md)
- Dragon de taille TG, Loyal Mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragon_vert_venerable.md b/Data/HD/hd_monsters_dragon_vert_venerable.md
index 46baf64b..ad91a7b4 100644
--- a/Data/HD/hd_monsters_dragon_vert_venerable.md
+++ b/Data/HD/hd_monsters_dragon_vert_venerable.md
@@ -5,7 +5,7 @@
# Dragon vert vénérable
- Source: (CEO p)(SRD p)
-- SRD: [Ancient Green Dragon](srd_monsters_ancient_green_dragon.md)
+- Alias: [Ancient Green Dragon](srd_monsters_ancient_green_dragon.md)
- Dragon de taille Gig, Loyal Mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 21 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_blanc.md b/Data/HD/hd_monsters_dragonnet_blanc.md
index b0a6db4f..75c7114d 100644
--- a/Data/HD/hd_monsters_dragonnet_blanc.md
+++ b/Data/HD/hd_monsters_dragonnet_blanc.md
@@ -5,7 +5,7 @@
# Dragonnet blanc
- Source: (CEO p)(SRD p)
-- SRD: [White Dragon Wyrmling](srd_monsters_white_dragon_wyrmling.md)
+- Alias: [White Dragon Wyrmling](srd_monsters_white_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_bleu.md b/Data/HD/hd_monsters_dragonnet_bleu.md
index 6fe801ed..d7d0f3b3 100644
--- a/Data/HD/hd_monsters_dragonnet_bleu.md
+++ b/Data/HD/hd_monsters_dragonnet_bleu.md
@@ -5,7 +5,7 @@
# Dragonnet bleu
- Source: (CEO p)(SRD p)
-- SRD: [Blue Dragon Wyrmling](srd_monsters_blue_dragon_wyrmling.md)
+- Alias: [Blue Dragon Wyrmling](srd_monsters_blue_dragon_wyrmling.md)
- Dragon de taille M, Loyal Mauvais
- **Terrain** Désert chaud, Littoral
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_dairain.md b/Data/HD/hd_monsters_dragonnet_dairain.md
index ee1f07b1..5a10debe 100644
--- a/Data/HD/hd_monsters_dragonnet_dairain.md
+++ b/Data/HD/hd_monsters_dragonnet_dairain.md
@@ -5,7 +5,7 @@
# Dragonnet d'airain
- Source: (CEO p)(SRD p)
-- SRD: [Brass Dragon Wyrmling](srd_monsters_brass_dragon_wyrmling.md)
+- Alias: [Brass Dragon Wyrmling](srd_monsters_brass_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Bon
- **Terrain** Désert chaud, Ruines extérieures
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_dargent.md b/Data/HD/hd_monsters_dragonnet_dargent.md
index b71be735..579a1ad2 100644
--- a/Data/HD/hd_monsters_dragonnet_dargent.md
+++ b/Data/HD/hd_monsters_dragonnet_dargent.md
@@ -5,7 +5,7 @@
# Dragonnet d'argent
- Source: (CEO p)(SRD p)
-- SRD: [Silver Dragon Wyrmling](srd_monsters_silver_dragon_wyrmling.md)
+- Alias: [Silver Dragon Wyrmling](srd_monsters_silver_dragon_wyrmling.md)
- Dragon de taille M, Loyal Bon
- **Terrain** Montagnes
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_de_bronze.md b/Data/HD/hd_monsters_dragonnet_de_bronze.md
index 05dcc7b6..2ec83b4a 100644
--- a/Data/HD/hd_monsters_dragonnet_de_bronze.md
+++ b/Data/HD/hd_monsters_dragonnet_de_bronze.md
@@ -5,7 +5,7 @@
# Dragonnet de bronze
- Source: (CEO p)(SRD p)
-- SRD: [Bronze Dragon Wyrmling](srd_monsters_bronze_dragon_wyrmling.md)
+- Alias: [Bronze Dragon Wyrmling](srd_monsters_bronze_dragon_wyrmling.md)
- Dragon de taille M, Loyal Bon
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_de_cuivre.md b/Data/HD/hd_monsters_dragonnet_de_cuivre.md
index d89277b8..95857a17 100644
--- a/Data/HD/hd_monsters_dragonnet_de_cuivre.md
+++ b/Data/HD/hd_monsters_dragonnet_de_cuivre.md
@@ -5,7 +5,7 @@
# Dragonnet de cuivre
- Source: (CEO p)(SRD p)
-- SRD: [Copper Dragon Wyrmling](srd_monsters_copper_dragon_wyrmling.md)
+- Alias: [Copper Dragon Wyrmling](srd_monsters_copper_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Bon
- **Terrain** Collines / Vallées
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_dor.md b/Data/HD/hd_monsters_dragonnet_dor.md
index 16e9a44d..c78ad17b 100644
--- a/Data/HD/hd_monsters_dragonnet_dor.md
+++ b/Data/HD/hd_monsters_dragonnet_dor.md
@@ -5,7 +5,7 @@
# Dragonnet d'or
- Source: (CEO p)(SRD p)
-- SRD: [Gold Dragon Wyrmling](srd_monsters_gold_dragon_wyrmling.md)
+- Alias: [Gold Dragon Wyrmling](srd_monsters_gold_dragon_wyrmling.md)
- Dragon de taille M, Loyal Bon
- **Terrain**
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_noir.md b/Data/HD/hd_monsters_dragonnet_noir.md
index cd7de128..9f5ec7ce 100644
--- a/Data/HD/hd_monsters_dragonnet_noir.md
+++ b/Data/HD/hd_monsters_dragonnet_noir.md
@@ -5,7 +5,7 @@
# Dragonnet noir
- Source: (CEO p)(SRD p)
-- SRD: [Black Dragon Wyrmling](srd_monsters_black_dragon_wyrmling.md)
+- Alias: [Black Dragon Wyrmling](srd_monsters_black_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Mauvais
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_rouge.md b/Data/HD/hd_monsters_dragonnet_rouge.md
index e9ebe1e1..129f5808 100644
--- a/Data/HD/hd_monsters_dragonnet_rouge.md
+++ b/Data/HD/hd_monsters_dragonnet_rouge.md
@@ -5,7 +5,7 @@
# Dragonnet rouge
- Source: (CEO p)(SRD p)
-- SRD: [Red Dragon Wyrmling](srd_monsters_red_dragon_wyrmling.md)
+- Alias: [Red Dragon Wyrmling](srd_monsters_red_dragon_wyrmling.md)
- Dragon de taille M, Chaotique Mauvais
- **Terrain** Montagnes, Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dragonnet_vert.md b/Data/HD/hd_monsters_dragonnet_vert.md
index 7b007f78..d70c3231 100644
--- a/Data/HD/hd_monsters_dragonnet_vert.md
+++ b/Data/HD/hd_monsters_dragonnet_vert.md
@@ -5,7 +5,7 @@
# Dragonnet vert
- Source: (CEO p)(SRD p)
-- SRD: [Green Dragon Wyrmling](srd_monsters_green_dragon_wyrmling.md)
+- Alias: [Green Dragon Wyrmling](srd_monsters_green_dragon_wyrmling.md)
- Dragon de taille M, Loyal Mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_dretch.md b/Data/HD/hd_monsters_dretch.md
index 8626964e..27e2c675 100644
--- a/Data/HD/hd_monsters_dretch.md
+++ b/Data/HD/hd_monsters_dretch.md
@@ -5,7 +5,7 @@
# Dretch
- Source: (CEO p)(SRD p)
-- SRD: [Dretch](srd_monsters_dretch.md)
+- Alias: [Dretch](srd_monsters_dretch.md)
- Fiélon (démon) de taille P, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_drider.md b/Data/HD/hd_monsters_drider.md
index c05f6ebe..aa93e9b9 100644
--- a/Data/HD/hd_monsters_drider.md
+++ b/Data/HD/hd_monsters_drider.md
@@ -5,7 +5,7 @@
# Drider
- Source: (CEO p)(SRD p)
-- SRD: [Drider](srd_monsters_drider.md)
+- Alias: [Drider](srd_monsters_drider.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_drow.md b/Data/HD/hd_monsters_drow.md
index f741c1eb..a9087fa4 100644
--- a/Data/HD/hd_monsters_drow.md
+++ b/Data/HD/hd_monsters_drow.md
@@ -5,7 +5,7 @@
# Drow
- Source: (CEO p)(SRD p)
-- SRD: [Drow](srd_monsters_drow.md)
+- Alias: [Drow](srd_monsters_drow.md)
- Humanoïde (elfe) de taille M, Neutre Mauvais
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 15 (chemise de mailles)
diff --git a/Data/HD/hd_monsters_druide.md b/Data/HD/hd_monsters_druide.md
index 574636b4..717f9a48 100644
--- a/Data/HD/hd_monsters_druide.md
+++ b/Data/HD/hd_monsters_druide.md
@@ -5,7 +5,7 @@
# Druide
- Source: (CEO p)(SRD p)
-- SRD: [Druid](srd_monsters_druid.md)
+- Alias: [Druid](srd_monsters_druid.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 11 (16 avec peau d'écorce)
diff --git a/Data/HD/hd_monsters_dryade.md b/Data/HD/hd_monsters_dryade.md
index 0c0800f0..bda22f76 100644
--- a/Data/HD/hd_monsters_dryade.md
+++ b/Data/HD/hd_monsters_dryade.md
@@ -5,7 +5,7 @@
# Dryade
- Source: (CEO p)(SRD p)
-- SRD: [Dryad](srd_monsters_dryad.md)
+- Alias: [Dryad](srd_monsters_dryad.md)
- Fée de taille M, neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 11 (16 avec peau d'écorce)
diff --git a/Data/HD/hd_monsters_duergar.md b/Data/HD/hd_monsters_duergar.md
index fa6aa4cf..398d757d 100644
--- a/Data/HD/hd_monsters_duergar.md
+++ b/Data/HD/hd_monsters_duergar.md
@@ -5,7 +5,7 @@
# Duergar
- Source: (CEO p)(SRD p)
-- SRD: [Duergar](srd_monsters_duergar.md)
+- Alias: [Duergar](srd_monsters_duergar.md)
- Humanoïde (nain) de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 16 (armure d'écailles, bouclier)
diff --git a/Data/HD/hd_monsters_ecclesiastique.md b/Data/HD/hd_monsters_ecclesiastique.md
index e8757234..8ec4def7 100644
--- a/Data/HD/hd_monsters_ecclesiastique.md
+++ b/Data/HD/hd_monsters_ecclesiastique.md
@@ -5,7 +5,7 @@
# Ecclésiastique
- Source: (CEO p)(SRD p)
-- SRD: [Priest](srd_monsters_priest.md)
+- Alias: [Priest](srd_monsters_priest.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 13 (chemise de mailles)
diff --git a/Data/HD/hd_monsters_eclaireur.md b/Data/HD/hd_monsters_eclaireur.md
index 004aad7f..09e0832a 100644
--- a/Data/HD/hd_monsters_eclaireur.md
+++ b/Data/HD/hd_monsters_eclaireur.md
@@ -5,7 +5,7 @@
# Éclaireur
- Source: (CEO p)(SRD p)
-- SRD: [Scout](srd_monsters_scout.md)
+- Alias: [Scout](srd_monsters_scout.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 13 (armure de cuir)
diff --git a/Data/HD/hd_monsters_efrit.md b/Data/HD/hd_monsters_efrit.md
index 6bf0c51e..65152a8a 100644
--- a/Data/HD/hd_monsters_efrit.md
+++ b/Data/HD/hd_monsters_efrit.md
@@ -5,7 +5,7 @@
# Éfrit
- Source: (CEO p)(SRD p)
-- SRD: [Efreeti](srd_monsters_efreeti.md)
+- Alias: [Efreeti](srd_monsters_efreeti.md)
- Élémentaire de taille G, Loyal Mauvais
- **Terrain** Désert chaud, Plans élémentaires
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_elan.md b/Data/HD/hd_monsters_elan.md
index e6ec5c9d..473e9923 100644
--- a/Data/HD/hd_monsters_elan.md
+++ b/Data/HD/hd_monsters_elan.md
@@ -5,7 +5,7 @@
# Élan
- Source: (CEO p)(SRD p)
-- SRD: [Elk](srd_monsters_elk.md)
+- Alias: [Elk](srd_monsters_elk.md)
- Bête de taille G, non-alignée
- **Terrain** Arctique / Subarctique, Bois / Forêt
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_elan_geant.md b/Data/HD/hd_monsters_elan_geant.md
index 17aa5544..6bd83129 100644
--- a/Data/HD/hd_monsters_elan_geant.md
+++ b/Data/HD/hd_monsters_elan_geant.md
@@ -5,7 +5,7 @@
# Élan géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Elk](srd_monsters_giant_elk.md)
+- Alias: [Giant Elk](srd_monsters_giant_elk.md)
- Bête de taille TG, non-alignée
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_elementaire_de_la_terre.md b/Data/HD/hd_monsters_elementaire_de_la_terre.md
index e70c90ea..ee9b40ec 100644
--- a/Data/HD/hd_monsters_elementaire_de_la_terre.md
+++ b/Data/HD/hd_monsters_elementaire_de_la_terre.md
@@ -5,7 +5,7 @@
# Élémentaire de la terre
- Source: (CEO p)(SRD p)
-- SRD: [Earth Elemental](srd_monsters_earth_elemental.md)
+- Alias: [Earth Elemental](srd_monsters_earth_elemental.md)
- Élémentaire de taille G, neutre
- **Terrain** Bois / Forêt, Plans élémentaires
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_elementaire_de_lair.md b/Data/HD/hd_monsters_elementaire_de_lair.md
index be59754e..19662bf1 100644
--- a/Data/HD/hd_monsters_elementaire_de_lair.md
+++ b/Data/HD/hd_monsters_elementaire_de_lair.md
@@ -5,7 +5,7 @@
# Élémentaire de l'air
- Source: (CEO p)(SRD p)
-- SRD: [Air Elemental](srd_monsters_air_elemental.md)
+- Alias: [Air Elemental](srd_monsters_air_elemental.md)
- Élémentaire de taille G, neutre
- **Terrain** Montagnes, Plans élémentaires
- **Classe d'armure** 15
diff --git a/Data/HD/hd_monsters_elementaire_de_leau.md b/Data/HD/hd_monsters_elementaire_de_leau.md
index a09f003b..715cba49 100644
--- a/Data/HD/hd_monsters_elementaire_de_leau.md
+++ b/Data/HD/hd_monsters_elementaire_de_leau.md
@@ -5,7 +5,7 @@
# Élémentaire de l'eau
- Source: (CEO p)(SRD p)
-- SRD: [Water Elemental](srd_monsters_water_elemental.md)
+- Alias: [Water Elemental](srd_monsters_water_elemental.md)
- Élémentaire de taille G, neutre
- **Terrain** Mer / Océan, Plans élémentaires, Caverne sous-marine
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_elementaire_du_feu.md b/Data/HD/hd_monsters_elementaire_du_feu.md
index e666d806..ff242432 100644
--- a/Data/HD/hd_monsters_elementaire_du_feu.md
+++ b/Data/HD/hd_monsters_elementaire_du_feu.md
@@ -5,7 +5,7 @@
# Élémentaire du feu
- Source: (CEO p)(SRD p)
-- SRD: [Fire Elemental](srd_monsters_fire_elemental.md)
+- Alias: [Fire Elemental](srd_monsters_fire_elemental.md)
- Élémentaire de taille G, neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_elephant.md b/Data/HD/hd_monsters_elephant.md
index e5273fff..1cf60f85 100644
--- a/Data/HD/hd_monsters_elephant.md
+++ b/Data/HD/hd_monsters_elephant.md
@@ -5,7 +5,7 @@
# Éléphant
- Source: (CEO p)(SRD p)
-- SRD: [Elephant](srd_monsters_elephant.md)
+- Alias: [Elephant](srd_monsters_elephant.md)
- Bête de taille TG, non-alignée
- **Terrain** Désert chaud, Jungle, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_enlaceur.md b/Data/HD/hd_monsters_enlaceur.md
index fe6204ef..96b56f64 100644
--- a/Data/HD/hd_monsters_enlaceur.md
+++ b/Data/HD/hd_monsters_enlaceur.md
@@ -5,7 +5,7 @@
# Enlaceur
- Source: (CEO p)(SRD p)
-- SRD: [Roper](srd_monsters_roper.md)
+- Alias: [Roper](srd_monsters_roper.md)
- Créature monstrueuse de taille G, Neutre Mauvais
- **Terrain** Caverne aménagée, Caverne naturelle
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/hd_monsters_epaulard.md b/Data/HD/hd_monsters_epaulard.md
index 3210fa42..0e979ea9 100644
--- a/Data/HD/hd_monsters_epaulard.md
+++ b/Data/HD/hd_monsters_epaulard.md
@@ -5,7 +5,7 @@
# Épaulard
- Source: (CEO p)(SRD p)
-- SRD: [Killer Whale](srd_monsters_killer_whale.md)
+- Alias: [Killer Whale](srd_monsters_killer_whale.md)
- Bête de taille TG, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_epee_volante.md b/Data/HD/hd_monsters_epee_volante.md
index 67b038b6..a46841c9 100644
--- a/Data/HD/hd_monsters_epee_volante.md
+++ b/Data/HD/hd_monsters_epee_volante.md
@@ -5,7 +5,7 @@
# Épée volante
- Source: (CEO p)(SRD p)
-- SRD: [Flying Sword](srd_monsters_flying_sword.md)
+- Alias: [Flying Sword](srd_monsters_flying_sword.md)
- Créature artificielle de taille P, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_erinye.md b/Data/HD/hd_monsters_erinye.md
index 331786a1..806ddac1 100644
--- a/Data/HD/hd_monsters_erinye.md
+++ b/Data/HD/hd_monsters_erinye.md
@@ -5,7 +5,7 @@
# Érinye
- Source: (CEO p)(SRD p)
-- SRD: [Erinyes](srd_monsters_erinyes.md)
+- Alias: [Erinyes](srd_monsters_erinyes.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 18 (harnois)
diff --git a/Data/HD/hd_monsters_espion.md b/Data/HD/hd_monsters_espion.md
index bc917989..aa473420 100644
--- a/Data/HD/hd_monsters_espion.md
+++ b/Data/HD/hd_monsters_espion.md
@@ -5,7 +5,7 @@
# Espion
- Source: (CEO p)(SRD p)
-- SRD: [Spy](srd_monsters_spy.md)
+- Alias: [Spy](srd_monsters_spy.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_esprit_follet.md b/Data/HD/hd_monsters_esprit_follet.md
index 4360eea2..567f876b 100644
--- a/Data/HD/hd_monsters_esprit_follet.md
+++ b/Data/HD/hd_monsters_esprit_follet.md
@@ -5,7 +5,7 @@
# Esprit follet
- Source: (CEO p)(SRD p)
-- SRD: [Sprite](srd_monsters_sprite.md)
+- Alias: [Sprite](srd_monsters_sprite.md)
- Fée de taille TP, Neutre Bonne
- **Terrain** Bois / Forêt, Collines / Vallées, Ruines extérieures
- **Classe d'armure** 15 (armure de cuir)
diff --git a/Data/HD/hd_monsters_ettercap.md b/Data/HD/hd_monsters_ettercap.md
index b9fa8dd0..e6deecd9 100644
--- a/Data/HD/hd_monsters_ettercap.md
+++ b/Data/HD/hd_monsters_ettercap.md
@@ -5,7 +5,7 @@
# Ettercap
- Source: (CEO p)(SRD p)
-- SRD: [Ettercap](srd_monsters_ettercap.md)
+- Alias: [Ettercap](srd_monsters_ettercap.md)
- Créature monstrueuse de taille M, Neutre Mauvais
- **Terrain** Bois / Forêt, Mangrove / Marécage
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_ettin.md b/Data/HD/hd_monsters_ettin.md
index ba32e4dd..21d64602 100644
--- a/Data/HD/hd_monsters_ettin.md
+++ b/Data/HD/hd_monsters_ettin.md
@@ -5,7 +5,7 @@
# Ettin
- Source: (CEO p)(SRD p)
-- SRD: [Ettin](srd_monsters_ettin.md)
+- Alias: [Ettin](srd_monsters_ettin.md)
- Géant de taille G, Chaotique Mauvais
- **Terrain** Collines / Vallées, Montagnes, Caverne naturelle
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_fanatique_de_secte.md b/Data/HD/hd_monsters_fanatique_de_secte.md
index 255ff5e8..1fa03c25 100644
--- a/Data/HD/hd_monsters_fanatique_de_secte.md
+++ b/Data/HD/hd_monsters_fanatique_de_secte.md
@@ -5,7 +5,7 @@
# Fanatique de secte
- Source: (CEO p)(SRD p)
-- SRD: [Cult Fanatic](srd_monsters_cult_fanatic.md)
+- Alias: [Cult Fanatic](srd_monsters_cult_fanatic.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon
- **Terrain**
- **Classe d'armure** 13 (armure de cuir)
diff --git a/Data/HD/hd_monsters_fantome.md b/Data/HD/hd_monsters_fantome.md
index 876d155a..70a4fadd 100644
--- a/Data/HD/hd_monsters_fantome.md
+++ b/Data/HD/hd_monsters_fantome.md
@@ -5,7 +5,7 @@
# Fantôme
- Source: (CEO p)(SRD p)
-- SRD: [Ghost](srd_monsters_ghost.md)
+- Alias: [Ghost](srd_monsters_ghost.md)
- Mort-vivant de taille M, n'importe quel alignement
- **Terrain** Ruines extérieures, Ruines souterraines
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_faucon.md b/Data/HD/hd_monsters_faucon.md
index 3ae33357..c14947f0 100644
--- a/Data/HD/hd_monsters_faucon.md
+++ b/Data/HD/hd_monsters_faucon.md
@@ -5,7 +5,7 @@
# Faucon
- Source: (CEO p)(SRD p)
-- SRD: [Hawk](srd_monsters_hawk.md)
+- Alias: [Hawk](srd_monsters_hawk.md)
- Bête de taille TP, non-alignée
- **Terrain** Collines / Vallées, Désert chaud, Littoral
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_faucon_de_sang.md b/Data/HD/hd_monsters_faucon_de_sang.md
index e580115b..16744e7d 100644
--- a/Data/HD/hd_monsters_faucon_de_sang.md
+++ b/Data/HD/hd_monsters_faucon_de_sang.md
@@ -5,7 +5,7 @@
# Faucon de sang
- Source: (CEO p)(SRD p)
-- SRD: [Blood Hawk](srd_monsters_blood_hawk.md)
+- Alias: [Blood Hawk](srd_monsters_blood_hawk.md)
- Bête de taille P, non-alignée
- **Terrain** Collines / Vallées, Désert chaud, Littoral
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_feu_follet.md b/Data/HD/hd_monsters_feu_follet.md
index 5dafd1ee..619fda10 100644
--- a/Data/HD/hd_monsters_feu_follet.md
+++ b/Data/HD/hd_monsters_feu_follet.md
@@ -5,7 +5,7 @@
# Feu follet
- Source: (CEO p)(SRD p)
-- SRD: [Will-o'-Wisp](srd_monsters_will_o_wisp.md)
+- Alias: [Will-o'-Wisp](srd_monsters_will_o_wisp.md)
- Mort-vivant de taille TP, Chaotique Mauvais
- **Terrain** Collines / Vallées, Mangrove / Marécage
- **Classe d'armure** 19
diff --git a/Data/HD/hd_monsters_garde.md b/Data/HD/hd_monsters_garde.md
index 843897f7..1ea0364a 100644
--- a/Data/HD/hd_monsters_garde.md
+++ b/Data/HD/hd_monsters_garde.md
@@ -5,7 +5,7 @@
# Garde
- Source: (CEO p)(SRD p)
-- SRD: [Guard](srd_monsters_guard.md)
+- Alias: [Guard](srd_monsters_guard.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 16 (bouclier, chemise de mailles)
diff --git a/Data/HD/hd_monsters_garde_anime.md b/Data/HD/hd_monsters_garde_anime.md
index d9380eff..74913652 100644
--- a/Data/HD/hd_monsters_garde_anime.md
+++ b/Data/HD/hd_monsters_garde_anime.md
@@ -5,7 +5,7 @@
# Garde animé
- Source: (CEO p)(SRD p)
-- SRD: [Shield Guardian](srd_monsters_shield_guardian.md)
+- Alias: [Shield Guardian](srd_monsters_shield_guardian.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_gargouille.md b/Data/HD/hd_monsters_gargouille.md
index 76d84c6e..70b56f8c 100644
--- a/Data/HD/hd_monsters_gargouille.md
+++ b/Data/HD/hd_monsters_gargouille.md
@@ -5,7 +5,7 @@
# Gargouille
- Source: (CEO p)(SRD p)
-- SRD: [Gargoyle](srd_monsters_gargoyle.md)
+- Alias: [Gargoyle](srd_monsters_gargoyle.md)
- Élémentaire de taille M, Chaotique Mauvais
- **Terrain** Plans élémentaires, Ruines extérieures
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_geant_des_collines.md b/Data/HD/hd_monsters_geant_des_collines.md
index 949e9dfb..cc02e03a 100644
--- a/Data/HD/hd_monsters_geant_des_collines.md
+++ b/Data/HD/hd_monsters_geant_des_collines.md
@@ -5,7 +5,7 @@
# Géant des collines
- Source: (CEO p)(SRD p)
-- SRD: [Hill Giant](srd_monsters_hill_giant.md)
+- Alias: [Hill Giant](srd_monsters_hill_giant.md)
- Géant de taille TG, Chaotique Mauvais
- **Terrain** Collines / Vallées, Caverne naturelle, Ruines extérieures
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_geant_des_nuages.md b/Data/HD/hd_monsters_geant_des_nuages.md
index 022a1b98..3365f20a 100644
--- a/Data/HD/hd_monsters_geant_des_nuages.md
+++ b/Data/HD/hd_monsters_geant_des_nuages.md
@@ -5,7 +5,7 @@
# Géant des nuages
- Source: (CEO p)(SRD p)
-- SRD: [Cloud Giant](srd_monsters_cloud_giant.md)
+- Alias: [Cloud Giant](srd_monsters_cloud_giant.md)
- Géant de taille TG, Neutre Bon (50 %) ou Neutre Mauvais (50 %)
- **Terrain** Montagnes
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_geant_des_pierres.md b/Data/HD/hd_monsters_geant_des_pierres.md
index e6fb48b0..1ffd0a79 100644
--- a/Data/HD/hd_monsters_geant_des_pierres.md
+++ b/Data/HD/hd_monsters_geant_des_pierres.md
@@ -5,7 +5,7 @@
# Géant des pierres
- Source: (CEO p)(SRD p)
-- SRD: [Stone Giant](srd_monsters_stone_giant.md)
+- Alias: [Stone Giant](srd_monsters_stone_giant.md)
- Géant de taille TG, neutre
- **Terrain** Montagnes
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_geant_des_tempetes.md b/Data/HD/hd_monsters_geant_des_tempetes.md
index 2eb94a9b..8581dfac 100644
--- a/Data/HD/hd_monsters_geant_des_tempetes.md
+++ b/Data/HD/hd_monsters_geant_des_tempetes.md
@@ -5,7 +5,7 @@
# Géant des tempêtes
- Source: (CEO p)(SRD p)
-- SRD: [Storm Giant](srd_monsters_storm_giant.md)
+- Alias: [Storm Giant](srd_monsters_storm_giant.md)
- Géant de taille TG, Chaotique Bon
- **Terrain** Littoral, Mer / Océan, Ruines sous-marines
- **Classe d'armure** 16 (armure d'écailles)
diff --git a/Data/HD/hd_monsters_geant_du_feu.md b/Data/HD/hd_monsters_geant_du_feu.md
index da8f5fc7..ffcc9788 100644
--- a/Data/HD/hd_monsters_geant_du_feu.md
+++ b/Data/HD/hd_monsters_geant_du_feu.md
@@ -5,7 +5,7 @@
# Géant du feu
- Source: (CEO p)(SRD p)
-- SRD: [Fire Giant](srd_monsters_fire_giant.md)
+- Alias: [Fire Giant](srd_monsters_fire_giant.md)
- Géant de taille TG, Loyal Mauvais
- **Terrain** Désert chaud, Montagnes
- **Classe d'armure** 18 (harnois)
diff --git a/Data/HD/hd_monsters_geant_du_givre.md b/Data/HD/hd_monsters_geant_du_givre.md
index 2bcc038c..e4263acf 100644
--- a/Data/HD/hd_monsters_geant_du_givre.md
+++ b/Data/HD/hd_monsters_geant_du_givre.md
@@ -5,7 +5,7 @@
# Géant du givre
- Source: (CEO p)(SRD p)
-- SRD: [Frost Giant](srd_monsters_frost_giant.md)
+- Alias: [Frost Giant](srd_monsters_frost_giant.md)
- Géant de taille TG, Neutre Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 15 (armure composite)
diff --git a/Data/HD/hd_monsters_gelee_ocre.md b/Data/HD/hd_monsters_gelee_ocre.md
index fea41468..ec02a1ed 100644
--- a/Data/HD/hd_monsters_gelee_ocre.md
+++ b/Data/HD/hd_monsters_gelee_ocre.md
@@ -5,7 +5,7 @@
# Gelée ocre
- Source: (CEO p)(SRD p)
-- SRD: [Ochre Jelly](srd_monsters_ochre_jelly.md)
+- Alias: [Ochre Jelly](srd_monsters_ochre_jelly.md)
- Vase de taille G, non-alignée
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 8
diff --git a/Data/HD/hd_monsters_glabrezu.md b/Data/HD/hd_monsters_glabrezu.md
index 59a6534c..82b76624 100644
--- a/Data/HD/hd_monsters_glabrezu.md
+++ b/Data/HD/hd_monsters_glabrezu.md
@@ -5,7 +5,7 @@
# Glabrezu
- Source: (CEO p)(SRD p)
-- SRD: [Glabrezu](srd_monsters_glabrezu.md)
+- Alias: [Glabrezu](srd_monsters_glabrezu.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_gladiateur.md b/Data/HD/hd_monsters_gladiateur.md
index 1c7bcfdc..77c7c7ba 100644
--- a/Data/HD/hd_monsters_gladiateur.md
+++ b/Data/HD/hd_monsters_gladiateur.md
@@ -5,7 +5,7 @@
# Gladiateur
- Source: (CEO p)(SRD p)
-- SRD: [Gladiator](srd_monsters_gladiator.md)
+- Alias: [Gladiator](srd_monsters_gladiator.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 16 (armure de cuir clouté, bouclier)
diff --git a/Data/HD/hd_monsters_gnoll.md b/Data/HD/hd_monsters_gnoll.md
index a172c14f..4d1a0c63 100644
--- a/Data/HD/hd_monsters_gnoll.md
+++ b/Data/HD/hd_monsters_gnoll.md
@@ -5,7 +5,7 @@
# Gnoll
- Source: (CEO p)(SRD p)
-- SRD: [Gnoll](srd_monsters_gnoll.md)
+- Alias: [Gnoll](srd_monsters_gnoll.md)
- Humanoïde (gnoll) de taille M, Chaotique Mauvais
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 15 (armure de peau, bouclier)
diff --git a/Data/HD/hd_monsters_gnome_des_profondeurs_svirfneblin.md b/Data/HD/hd_monsters_gnome_des_profondeurs_svirfneblin.md
index 0a1df4bc..2ae8082b 100644
--- a/Data/HD/hd_monsters_gnome_des_profondeurs_svirfneblin.md
+++ b/Data/HD/hd_monsters_gnome_des_profondeurs_svirfneblin.md
@@ -5,7 +5,7 @@
# Gnome des profondeurs (svirfneblin)
- Source: (CEO p)(SRD p)
-- SRD: [Deep Gnome (Svirfneblin)](srd_monsters_deep_gnome_svirfneblin.md)
+- Alias: [Deep Gnome (Svirfneblin)](srd_monsters_deep_gnome_svirfneblin.md)
- Humanoïde (gnome) de taille P, Neutre Bon
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 15 (chemise de mailles)
diff --git a/Data/HD/hd_monsters_gobelin.md b/Data/HD/hd_monsters_gobelin.md
index 20e4af90..801a9505 100644
--- a/Data/HD/hd_monsters_gobelin.md
+++ b/Data/HD/hd_monsters_gobelin.md
@@ -5,7 +5,7 @@
# Gobelin
- Source: (CEO p)(SRD p)
-- SRD: [Goblin](srd_monsters_goblin.md)
+- Alias: [Goblin](srd_monsters_goblin.md)
- Humanoïde (gobelinoïde) de taille P, Neutre Mauvais
- **Terrain** Bois / Forêt, Collines / Vallées, Jungle, Caverne aménagée
- **Classe d'armure** 15 (armure de cuir, bouclier)
diff --git a/Data/HD/hd_monsters_gobelours.md b/Data/HD/hd_monsters_gobelours.md
index a5ca182d..83c9c270 100644
--- a/Data/HD/hd_monsters_gobelours.md
+++ b/Data/HD/hd_monsters_gobelours.md
@@ -5,7 +5,7 @@
# Gobelours
- Source: (CEO p)(SRD p)
-- SRD: [Bugbear](srd_monsters_bugbear.md)
+- Alias: [Bugbear](srd_monsters_bugbear.md)
- Humanoïde (gobelinoïde) de taille M, Chaotique Mauvais
- **Terrain** Collines / Vallées, Caverne aménagée
- **Classe d'armure** 16 (armure de peau, bouclier)
diff --git a/Data/HD/hd_monsters_golem_dargile.md b/Data/HD/hd_monsters_golem_dargile.md
index 9f6518e6..5e4def56 100644
--- a/Data/HD/hd_monsters_golem_dargile.md
+++ b/Data/HD/hd_monsters_golem_dargile.md
@@ -5,7 +5,7 @@
# Golem d'argile
- Source: (CEO p)(SRD p)
-- SRD: [Clay Golem](srd_monsters_clay_golem.md)
+- Alias: [Clay Golem](srd_monsters_clay_golem.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_golem_de_chair.md b/Data/HD/hd_monsters_golem_de_chair.md
index 86bf659d..b5538d01 100644
--- a/Data/HD/hd_monsters_golem_de_chair.md
+++ b/Data/HD/hd_monsters_golem_de_chair.md
@@ -5,7 +5,7 @@
# Golem de chair
- Source: (CEO p)(SRD p)
-- SRD: [Flesh Golem](srd_monsters_flesh_golem.md)
+- Alias: [Flesh Golem](srd_monsters_flesh_golem.md)
- Créature artificielle de taille M, neutre
- **Terrain** Donjon maçonné
- **Classe d'armure** 9
diff --git a/Data/HD/hd_monsters_golem_de_fer.md b/Data/HD/hd_monsters_golem_de_fer.md
index 8102efab..1e70dff2 100644
--- a/Data/HD/hd_monsters_golem_de_fer.md
+++ b/Data/HD/hd_monsters_golem_de_fer.md
@@ -5,7 +5,7 @@
# Golem de fer
- Source: (CEO p)(SRD p)
-- SRD: [Iron Golem](srd_monsters_iron_golem.md)
+- Alias: [Iron Golem](srd_monsters_iron_golem.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/hd_monsters_golem_de_pierre.md b/Data/HD/hd_monsters_golem_de_pierre.md
index a62442a7..8d5312f0 100644
--- a/Data/HD/hd_monsters_golem_de_pierre.md
+++ b/Data/HD/hd_monsters_golem_de_pierre.md
@@ -5,7 +5,7 @@
# Golem de pierre
- Source: (CEO p)(SRD p)
-- SRD: [Stone Golem](srd_monsters_stone_golem.md)
+- Alias: [Stone Golem](srd_monsters_stone_golem.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_gorgone.md b/Data/HD/hd_monsters_gorgone.md
index 1c9ac502..906f3422 100644
--- a/Data/HD/hd_monsters_gorgone.md
+++ b/Data/HD/hd_monsters_gorgone.md
@@ -5,7 +5,7 @@
# Gorgone
- Source: (CEO p)(SRD p)
-- SRD: [Gorgon](srd_monsters_gorgon.md)
+- Alias: [Gorgon](srd_monsters_gorgon.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_goule.md b/Data/HD/hd_monsters_goule.md
index 99995fdb..6af6cb8f 100644
--- a/Data/HD/hd_monsters_goule.md
+++ b/Data/HD/hd_monsters_goule.md
@@ -5,7 +5,7 @@
# Goule
- Source: (CEO p)(SRD p)
-- SRD: [Ghoul](srd_monsters_ghoul.md)
+- Alias: [Ghoul](srd_monsters_ghoul.md)
- Mort-vivant de taille M, Chaotique Mauvais
- **Terrain** Ruines extérieures, Ruines souterraines
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_goule_bleme.md b/Data/HD/hd_monsters_goule_bleme.md
index 963c481e..f719f804 100644
--- a/Data/HD/hd_monsters_goule_bleme.md
+++ b/Data/HD/hd_monsters_goule_bleme.md
@@ -5,7 +5,7 @@
# Goule Blême
- Source: (CEO p)(SRD p)
-- SRD: [Ghast](srd_monsters_ghast.md)
+- Alias: [Ghast](srd_monsters_ghast.md)
- Mort-vivant de taille M, Chaotique Mauvais
- **Terrain** Ruines extérieures, Ruines souterraines
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_grand_singe.md b/Data/HD/hd_monsters_grand_singe.md
index 81a28628..18afbf26 100644
--- a/Data/HD/hd_monsters_grand_singe.md
+++ b/Data/HD/hd_monsters_grand_singe.md
@@ -5,7 +5,7 @@
# Grand singe
- Source: (CEO p)(SRD p)
-- SRD: [Ape](srd_monsters_ape.md)
+- Alias: [Ape](srd_monsters_ape.md)
- Bête de taille M, non-alignée
- **Terrain** Jungle, Montagnes
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_grenouille.md b/Data/HD/hd_monsters_grenouille.md
index ce02c4a5..d1d519ad 100644
--- a/Data/HD/hd_monsters_grenouille.md
+++ b/Data/HD/hd_monsters_grenouille.md
@@ -5,7 +5,7 @@
# Grenouille
- Source: (CEO p)(SRD p)
-- SRD: [Frog](srd_monsters_frog.md)
+- Alias: [Frog](srd_monsters_frog.md)
- Bête de taille TP, non-alignée
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_grenouille_geante.md b/Data/HD/hd_monsters_grenouille_geante.md
index ed94a363..31d1c331 100644
--- a/Data/HD/hd_monsters_grenouille_geante.md
+++ b/Data/HD/hd_monsters_grenouille_geante.md
@@ -5,7 +5,7 @@
# Grenouille géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Frog](srd_monsters_giant_frog.md)
+- Alias: [Giant Frog](srd_monsters_giant_frog.md)
- Bête de taille M, non-alignée
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_grick.md b/Data/HD/hd_monsters_grick.md
index aadbb307..d0175e03 100644
--- a/Data/HD/hd_monsters_grick.md
+++ b/Data/HD/hd_monsters_grick.md
@@ -5,7 +5,7 @@
# Grick
- Source: (CEO p)(SRD p)
-- SRD: [Grick](srd_monsters_grick.md)
+- Alias: [Grick](srd_monsters_grick.md)
- Créature monstrueuse de taille M, neutre
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_griffon.md b/Data/HD/hd_monsters_griffon.md
index a0f8fc26..da9e852a 100644
--- a/Data/HD/hd_monsters_griffon.md
+++ b/Data/HD/hd_monsters_griffon.md
@@ -5,7 +5,7 @@
# Griffon
- Source: (CEO p)(SRD p)
-- SRD: [Griffon](srd_monsters_griffon.md)
+- Alias: [Griffon](srd_monsters_griffon.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Montagnes
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_guenaude_aquatique.md b/Data/HD/hd_monsters_guenaude_aquatique.md
index 01333fec..832e397c 100644
--- a/Data/HD/hd_monsters_guenaude_aquatique.md
+++ b/Data/HD/hd_monsters_guenaude_aquatique.md
@@ -5,7 +5,7 @@
# Guenaude aquatique
- Source: (CEO p)(SRD p)
-- SRD: [Sea Hag](srd_monsters_sea_hag.md)
+- Alias: [Sea Hag](srd_monsters_sea_hag.md)
- Fée de taille M, Chaotique Mauvais
- **Terrain** Littoral, Mangrove / Marécage, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_guenaude_nocturne.md b/Data/HD/hd_monsters_guenaude_nocturne.md
index 93b330cf..6f804cc2 100644
--- a/Data/HD/hd_monsters_guenaude_nocturne.md
+++ b/Data/HD/hd_monsters_guenaude_nocturne.md
@@ -5,7 +5,7 @@
# Guenaude nocturne
- Source: (CEO p)(SRD p)
-- SRD: [Night Hag](srd_monsters_night_hag.md)
+- Alias: [Night Hag](srd_monsters_night_hag.md)
- Fiélon de taille M, Neutre Mauvais
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_guenaude_verte.md b/Data/HD/hd_monsters_guenaude_verte.md
index cbb4a224..1a414e85 100644
--- a/Data/HD/hd_monsters_guenaude_verte.md
+++ b/Data/HD/hd_monsters_guenaude_verte.md
@@ -5,7 +5,7 @@
# Guenaude verte
- Source: (CEO p)(SRD p)
-- SRD: [Green Hag](srd_monsters_green_hag.md)
+- Alias: [Green Hag](srd_monsters_green_hag.md)
- Fée de taille M, Neutre Mauvais
- **Terrain** Bois / Forêt, Collines / Vallées, Mangrove / Marécage
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_guepe_geante.md b/Data/HD/hd_monsters_guepe_geante.md
index e313a4f9..7173a0b9 100644
--- a/Data/HD/hd_monsters_guepe_geante.md
+++ b/Data/HD/hd_monsters_guepe_geante.md
@@ -5,7 +5,7 @@
# Guêpe géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Wasp](srd_monsters_giant_wasp.md)
+- Alias: [Giant Wasp](srd_monsters_giant_wasp.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt, Jungle, Mangrove / Marécage
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_guerrier_tribal.md b/Data/HD/hd_monsters_guerrier_tribal.md
index a10a5870..daff42d1 100644
--- a/Data/HD/hd_monsters_guerrier_tribal.md
+++ b/Data/HD/hd_monsters_guerrier_tribal.md
@@ -5,7 +5,7 @@
# Guerrier tribal
- Source: (CEO p)(SRD p)
-- SRD: [Tribal Warrior](srd_monsters_tribal_warrior.md)
+- Alias: [Tribal Warrior](srd_monsters_tribal_warrior.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 12 (armure de peau)
diff --git a/Data/HD/hd_monsters_gynosphinx.md b/Data/HD/hd_monsters_gynosphinx.md
index db80e166..752d4bbf 100644
--- a/Data/HD/hd_monsters_gynosphinx.md
+++ b/Data/HD/hd_monsters_gynosphinx.md
@@ -5,7 +5,7 @@
# Gynosphinx
- Source: (CEO p)(SRD p)
-- SRD: [Gynosphinx](srd_monsters_gynosphinx.md)
+- Alias: [Gynosphinx](srd_monsters_gynosphinx.md)
- Créature monstrueuse de taille G, Loyal Neutre
- **Terrain** Arctique / Subarctique, Désert chaud, Montagnes, Caverne aménagée, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_harpie.md b/Data/HD/hd_monsters_harpie.md
index d0673fc1..785b4005 100644
--- a/Data/HD/hd_monsters_harpie.md
+++ b/Data/HD/hd_monsters_harpie.md
@@ -5,7 +5,7 @@
# Harpie
- Source: (CEO p)(SRD p)
-- SRD: [Harpy](srd_monsters_harpy.md)
+- Alias: [Harpy](srd_monsters_harpy.md)
- Créature monstrueuse de taille M, Chaotique Mauvais
- **Terrain** Littoral, Montagnes, Ruines extérieures
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_hezrou.md b/Data/HD/hd_monsters_hezrou.md
index 773541c9..542b2748 100644
--- a/Data/HD/hd_monsters_hezrou.md
+++ b/Data/HD/hd_monsters_hezrou.md
@@ -5,7 +5,7 @@
# Hezrou
- Source: (CEO p)(SRD p)
-- SRD: [Hezrou](srd_monsters_hezrou.md)
+- Alias: [Hezrou](srd_monsters_hezrou.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/hd_monsters_hibours.md b/Data/HD/hd_monsters_hibours.md
index aeae8776..4bc0f6ae 100644
--- a/Data/HD/hd_monsters_hibours.md
+++ b/Data/HD/hd_monsters_hibours.md
@@ -5,7 +5,7 @@
# Hibours
- Source: (CEO p)(SRD p)
-- SRD: [Owlbear](srd_monsters_owlbear.md)
+- Alias: [Owlbear](srd_monsters_owlbear.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Bois / Forêt, Caverne naturelle
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_hippocampe.md b/Data/HD/hd_monsters_hippocampe.md
index 3d11d671..d206e13c 100644
--- a/Data/HD/hd_monsters_hippocampe.md
+++ b/Data/HD/hd_monsters_hippocampe.md
@@ -5,7 +5,7 @@
# Hippocampe
- Source: (CEO p)(SRD p)
-- SRD: [Sea Horse](srd_monsters_sea_horse.md)
+- Alias: [Sea Horse](srd_monsters_sea_horse.md)
- Bête de taille TP, non-alignée
- **Terrain** Ruines sous-marines
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_hippocampe_geant.md b/Data/HD/hd_monsters_hippocampe_geant.md
index 7fbb63cf..2f95c551 100644
--- a/Data/HD/hd_monsters_hippocampe_geant.md
+++ b/Data/HD/hd_monsters_hippocampe_geant.md
@@ -5,7 +5,7 @@
# Hippocampe géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Sea Horse](srd_monsters_giant_sea_horse.md)
+- Alias: [Giant Sea Horse](srd_monsters_giant_sea_horse.md)
- Bête de taille G, non-alignée
- **Terrain** Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_hippogriffe.md b/Data/HD/hd_monsters_hippogriffe.md
index 884448d8..3852eea3 100644
--- a/Data/HD/hd_monsters_hippogriffe.md
+++ b/Data/HD/hd_monsters_hippogriffe.md
@@ -5,7 +5,7 @@
# Hippogriffe
- Source: (CEO p)(SRD p)
-- SRD: [Hippogriff](srd_monsters_hippogriff.md)
+- Alias: [Hippogriff](srd_monsters_hippogriff.md)
- Créature monstrueuse de taille G, non-alignée
- **Terrain** Littoral, Montagnes
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_hobgobelin.md b/Data/HD/hd_monsters_hobgobelin.md
index 007442c8..54830e0f 100644
--- a/Data/HD/hd_monsters_hobgobelin.md
+++ b/Data/HD/hd_monsters_hobgobelin.md
@@ -5,7 +5,7 @@
# Hobgobelin
- Source: (CEO p)(SRD p)
-- SRD: [Hobgoblin](srd_monsters_hobgoblin.md)
+- Alias: [Hobgoblin](srd_monsters_hobgoblin.md)
- Humanoïde (gobelinoïde) de taille M, Loyal Mauvais
- **Terrain** Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 18 (bouclier, cotte de mailles)
diff --git a/Data/HD/hd_monsters_homme_lezard.md b/Data/HD/hd_monsters_homme_lezard.md
index dbf277b4..d3fe85d2 100644
--- a/Data/HD/hd_monsters_homme_lezard.md
+++ b/Data/HD/hd_monsters_homme_lezard.md
@@ -5,7 +5,7 @@
# Homme-lézard
- Source: (CEO p)(SRD p)
-- SRD: [Lizardfolk](srd_monsters_lizardfolk.md)
+- Alias: [Lizardfolk](srd_monsters_lizardfolk.md)
- Humanoïde (homme-lézard) de taille M, Neutre
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 15 (armure naturelle, bouclier)
diff --git a/Data/HD/hd_monsters_homme_poisson.md b/Data/HD/hd_monsters_homme_poisson.md
index c362299c..09883f23 100644
--- a/Data/HD/hd_monsters_homme_poisson.md
+++ b/Data/HD/hd_monsters_homme_poisson.md
@@ -5,7 +5,7 @@
# Homme-poisson
- Source: (CEO p)(SRD p)
-- SRD: [Merfolk](srd_monsters_merfolk.md)
+- Alias: [Merfolk](srd_monsters_merfolk.md)
- Humanoïde (homme-poisson) de taille M, Neutre
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_homoncule.md b/Data/HD/hd_monsters_homoncule.md
index e0f9e291..9886dd86 100644
--- a/Data/HD/hd_monsters_homoncule.md
+++ b/Data/HD/hd_monsters_homoncule.md
@@ -5,7 +5,7 @@
# Homoncule
- Source: (CEO p)(SRD p)
-- SRD: [Homunculus](srd_monsters_homunculus.md)
+- Alias: [Homunculus](srd_monsters_homunculus.md)
- Créature artificielle de taille TP, neutre
- **Terrain** Donjon maçonné
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_hydre.md b/Data/HD/hd_monsters_hydre.md
index d2f38577..388d8d18 100644
--- a/Data/HD/hd_monsters_hydre.md
+++ b/Data/HD/hd_monsters_hydre.md
@@ -5,7 +5,7 @@
# Hydre
- Source: (CEO p)(SRD p)
-- SRD: [Hydra](srd_monsters_hydra.md)
+- Alias: [Hydra](srd_monsters_hydra.md)
- Créature monstrueuse de taille TG, non-alignée
- **Terrain** Littoral, Caverne sous-marine
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_hyene.md b/Data/HD/hd_monsters_hyene.md
index a0ef2e32..e0cc8819 100644
--- a/Data/HD/hd_monsters_hyene.md
+++ b/Data/HD/hd_monsters_hyene.md
@@ -5,7 +5,7 @@
# Hyène
- Source: (CEO p)(SRD p)
-- SRD: [Hyena](srd_monsters_hyena.md)
+- Alias: [Hyena](srd_monsters_hyena.md)
- Bête de taille M, non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_hyene_geante.md b/Data/HD/hd_monsters_hyene_geante.md
index 38889350..cf6eff38 100644
--- a/Data/HD/hd_monsters_hyene_geante.md
+++ b/Data/HD/hd_monsters_hyene_geante.md
@@ -5,7 +5,7 @@
# Hyène géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Hyena](srd_monsters_giant_hyena.md)
+- Alias: [Giant Hyena](srd_monsters_giant_hyena.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_jeune_dragon_blanc.md b/Data/HD/hd_monsters_jeune_dragon_blanc.md
index ef5fb514..45c56acc 100644
--- a/Data/HD/hd_monsters_jeune_dragon_blanc.md
+++ b/Data/HD/hd_monsters_jeune_dragon_blanc.md
@@ -5,7 +5,7 @@
# Jeune dragon blanc
- Source: (CEO p)(SRD p)
-- SRD: [Young White Dragon](srd_monsters_young_white_dragon.md)
+- Alias: [Young White Dragon](srd_monsters_young_white_dragon.md)
- Dragon de taille G, Chaotique Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_bleu.md b/Data/HD/hd_monsters_jeune_dragon_bleu.md
index c559e15c..2d3bc559 100644
--- a/Data/HD/hd_monsters_jeune_dragon_bleu.md
+++ b/Data/HD/hd_monsters_jeune_dragon_bleu.md
@@ -5,7 +5,7 @@
# Jeune dragon bleu
- Source: (CEO p)(SRD p)
-- SRD: [Young Blue Dragon](srd_monsters_young_blue_dragon.md)
+- Alias: [Young Blue Dragon](srd_monsters_young_blue_dragon.md)
- Dragon de taille G, Loyal Mauvais
- **Terrain** Désert chaud, Littoral
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_dairain.md b/Data/HD/hd_monsters_jeune_dragon_dairain.md
index 7a941954..148ad66b 100644
--- a/Data/HD/hd_monsters_jeune_dragon_dairain.md
+++ b/Data/HD/hd_monsters_jeune_dragon_dairain.md
@@ -5,7 +5,7 @@
# Jeune dragon d'airain
- Source: (CEO p)(SRD p)
-- SRD: [Young Brass Dragon](srd_monsters_young_brass_dragon.md)
+- Alias: [Young Brass Dragon](srd_monsters_young_brass_dragon.md)
- Dragon de taille G, Chaotique Bon
- **Terrain** Désert chaud, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_dargent.md b/Data/HD/hd_monsters_jeune_dragon_dargent.md
index b480189b..294a467f 100644
--- a/Data/HD/hd_monsters_jeune_dragon_dargent.md
+++ b/Data/HD/hd_monsters_jeune_dragon_dargent.md
@@ -5,7 +5,7 @@
# Jeune dragon d'argent
- Source: (CEO p)(SRD p)
-- SRD: [Young Silver Dragon](srd_monsters_young_silver_dragon.md)
+- Alias: [Young Silver Dragon](srd_monsters_young_silver_dragon.md)
- Dragon de taille G, Loyal Bon
- **Terrain** Montagnes
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_de_bronze.md b/Data/HD/hd_monsters_jeune_dragon_de_bronze.md
index bcce586f..1752308b 100644
--- a/Data/HD/hd_monsters_jeune_dragon_de_bronze.md
+++ b/Data/HD/hd_monsters_jeune_dragon_de_bronze.md
@@ -5,7 +5,7 @@
# Jeune dragon de bronze
- Source: (CEO p)(SRD p)
-- SRD: [Young Bronze Dragon](srd_monsters_young_bronze_dragon.md)
+- Alias: [Young Bronze Dragon](srd_monsters_young_bronze_dragon.md)
- Dragon de taille G, Loyal Bon
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_de_cuivre.md b/Data/HD/hd_monsters_jeune_dragon_de_cuivre.md
index e399aa6e..cfad18dd 100644
--- a/Data/HD/hd_monsters_jeune_dragon_de_cuivre.md
+++ b/Data/HD/hd_monsters_jeune_dragon_de_cuivre.md
@@ -5,7 +5,7 @@
# Jeune dragon de cuivre
- Source: (CEO p)(SRD p)
-- SRD: [Young Copper Dragon](srd_monsters_young_copper_dragon.md)
+- Alias: [Young Copper Dragon](srd_monsters_young_copper_dragon.md)
- Dragon de taille G, Chaotique Bon
- **Terrain** Collines / Vallées
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_dor.md b/Data/HD/hd_monsters_jeune_dragon_dor.md
index e61b1ffa..034a8e65 100644
--- a/Data/HD/hd_monsters_jeune_dragon_dor.md
+++ b/Data/HD/hd_monsters_jeune_dragon_dor.md
@@ -5,7 +5,7 @@
# Jeune dragon d'or
- Source: (CEO p)(SRD p)
-- SRD: [Young Gold Dragon](srd_monsters_young_gold_dragon.md)
+- Alias: [Young Gold Dragon](srd_monsters_young_gold_dragon.md)
- Dragon de taille G, Loyal Bon
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_noir.md b/Data/HD/hd_monsters_jeune_dragon_noir.md
index 728191d5..744e2592 100644
--- a/Data/HD/hd_monsters_jeune_dragon_noir.md
+++ b/Data/HD/hd_monsters_jeune_dragon_noir.md
@@ -5,7 +5,7 @@
# Jeune dragon noir
- Source: (CEO p)(SRD p)
-- SRD: [Young Black Dragon](srd_monsters_young_black_dragon.md)
+- Alias: [Young Black Dragon](srd_monsters_young_black_dragon.md)
- Dragon de taille G, Chaotique Mauvais
- **Terrain** Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_rouge.md b/Data/HD/hd_monsters_jeune_dragon_rouge.md
index fa070496..60184edc 100644
--- a/Data/HD/hd_monsters_jeune_dragon_rouge.md
+++ b/Data/HD/hd_monsters_jeune_dragon_rouge.md
@@ -5,7 +5,7 @@
# Jeune dragon rouge
- Source: (CEO p)(SRD p)
-- SRD: [Young Red Dragon](srd_monsters_young_red_dragon.md)
+- Alias: [Young Red Dragon](srd_monsters_young_red_dragon.md)
- Dragon de taille G, Chaotique Mauvais
- **Terrain** Montagnes, Ruines souterraines
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_jeune_dragon_vert.md b/Data/HD/hd_monsters_jeune_dragon_vert.md
index f4f88ba2..06886715 100644
--- a/Data/HD/hd_monsters_jeune_dragon_vert.md
+++ b/Data/HD/hd_monsters_jeune_dragon_vert.md
@@ -5,7 +5,7 @@
# Jeune dragon vert
- Source: (CEO p)(SRD p)
-- SRD: [Young Green Dragon](srd_monsters_young_green_dragon.md)
+- Alias: [Young Green Dragon](srd_monsters_young_green_dragon.md)
- Dragon de taille G, Loyal Mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_kobold.md b/Data/HD/hd_monsters_kobold.md
index 8478ee73..57212640 100644
--- a/Data/HD/hd_monsters_kobold.md
+++ b/Data/HD/hd_monsters_kobold.md
@@ -5,7 +5,7 @@
# Kobold
- Source: (CEO p)(SRD p)
-- SRD: [Kobold](srd_monsters_kobold.md)
+- Alias: [Kobold](srd_monsters_kobold.md)
- Humanoïde (kobold) de taille P, Loyal Mauvais
- **Terrain** Jungle, Mangrove / Marécage, Caverne aménagée
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_kraken.md b/Data/HD/hd_monsters_kraken.md
index 00edcab7..ac35ab20 100644
--- a/Data/HD/hd_monsters_kraken.md
+++ b/Data/HD/hd_monsters_kraken.md
@@ -5,7 +5,7 @@
# Kraken
- Source: (CEO p)(SRD p)
-- SRD: [Kraken](srd_monsters_kraken.md)
+- Alias: [Kraken](srd_monsters_kraken.md)
- Créature monstrueuse (titan) de taille Gig, Chaotique Mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_lamie.md b/Data/HD/hd_monsters_lamie.md
index 581e8cc0..7c84320e 100644
--- a/Data/HD/hd_monsters_lamie.md
+++ b/Data/HD/hd_monsters_lamie.md
@@ -5,7 +5,7 @@
# Lamie
- Source: (CEO p)(SRD p)
-- SRD: [Lamia](srd_monsters_lamia.md)
+- Alias: [Lamia](srd_monsters_lamia.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_lemure.md b/Data/HD/hd_monsters_lemure.md
index eb96c8dc..e9d778fa 100644
--- a/Data/HD/hd_monsters_lemure.md
+++ b/Data/HD/hd_monsters_lemure.md
@@ -5,7 +5,7 @@
# Lémure
- Source: (CEO p)(SRD p)
-- SRD: [Lemure](srd_monsters_lemure.md)
+- Alias: [Lemure](srd_monsters_lemure.md)
- Fiélon (diable) de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 7
diff --git a/Data/HD/hd_monsters_lezard.md b/Data/HD/hd_monsters_lezard.md
index 2aac6c82..845c4363 100644
--- a/Data/HD/hd_monsters_lezard.md
+++ b/Data/HD/hd_monsters_lezard.md
@@ -5,7 +5,7 @@
# Lézard
- Source: (CEO p)(SRD p)
-- SRD: [Lizard](srd_monsters_lizard.md)
+- Alias: [Lizard](srd_monsters_lizard.md)
- Bête de taille TP, non-alignée
- **Terrain** Désert chaud, Jungle, Caverne sous-marine
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_lezard_geant.md b/Data/HD/hd_monsters_lezard_geant.md
index d7c9bc59..6ef405e0 100644
--- a/Data/HD/hd_monsters_lezard_geant.md
+++ b/Data/HD/hd_monsters_lezard_geant.md
@@ -5,7 +5,7 @@
# Lézard géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Lizard](srd_monsters_giant_lizard.md)
+- Alias: [Giant Lizard](srd_monsters_giant_lizard.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud, Jungle, Caverne sous-marine
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_liche.md b/Data/HD/hd_monsters_liche.md
index 83777657..29a9b78b 100644
--- a/Data/HD/hd_monsters_liche.md
+++ b/Data/HD/hd_monsters_liche.md
@@ -5,7 +5,7 @@
# Liche
- Source: (CEO p)(SRD p)
-- SRD: [Lich](srd_monsters_lich.md)
+- Alias: [Lich](srd_monsters_lich.md)
- Mort-vivant de taille M, alignement Mauvais
- **Terrain** Donjon maçonné
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_licorne.md b/Data/HD/hd_monsters_licorne.md
index 6f84db64..78213491 100644
--- a/Data/HD/hd_monsters_licorne.md
+++ b/Data/HD/hd_monsters_licorne.md
@@ -5,7 +5,7 @@
# Licorne
- Source: (CEO p)(SRD p)
-- SRD: [Unicorn](srd_monsters_unicorn.md)
+- Alias: [Unicorn](srd_monsters_unicorn.md)
- Céleste de taille G, Loyal Bon
- **Terrain** Bois / Forêt
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_lion.md b/Data/HD/hd_monsters_lion.md
index 124b7ef0..ba5c6a64 100644
--- a/Data/HD/hd_monsters_lion.md
+++ b/Data/HD/hd_monsters_lion.md
@@ -5,7 +5,7 @@
# Lion
- Source: (CEO p)(SRD p)
-- SRD: [Lion](srd_monsters_lion.md)
+- Alias: [Lion](srd_monsters_lion.md)
- Bête de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_loup.md b/Data/HD/hd_monsters_loup.md
index d3135019..fb1b60a7 100644
--- a/Data/HD/hd_monsters_loup.md
+++ b/Data/HD/hd_monsters_loup.md
@@ -5,7 +5,7 @@
# Loup
- Source: (CEO p)(SRD p)
-- SRD: [Wolf](srd_monsters_wolf.md)
+- Alias: [Wolf](srd_monsters_wolf.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Montagnes
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_loup_arctique.md b/Data/HD/hd_monsters_loup_arctique.md
index ccbc38e2..e82b229b 100644
--- a/Data/HD/hd_monsters_loup_arctique.md
+++ b/Data/HD/hd_monsters_loup_arctique.md
@@ -5,7 +5,7 @@
# Loup arctique
- Source: (CEO p)(SRD p)
-- SRD: [Winter Wolf](srd_monsters_winter_wolf.md)
+- Alias: [Winter Wolf](srd_monsters_winter_wolf.md)
- Créature monstrueuse de taille G, Neutre Mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_loup_garou.md b/Data/HD/hd_monsters_loup_garou.md
index f1d6beaa..0962bc2e 100644
--- a/Data/HD/hd_monsters_loup_garou.md
+++ b/Data/HD/hd_monsters_loup_garou.md
@@ -5,7 +5,7 @@
# Loup-garou
- Source: (CEO p)(SRD p)
-- SRD: [Werewolf](srd_monsters_werewolf.md)
+- Alias: [Werewolf](srd_monsters_werewolf.md)
- Humanoïde (humain, métamorphe) de taille M, Chaotique Mauvais
- **Terrain** Bois / Forêt, Montagnes
- **Classe d'armure** 11 sous forme humanoïde, 12 (armure naturelle) sous forme hybride ou de loup
diff --git a/Data/HD/hd_monsters_loup_sanguinaire.md b/Data/HD/hd_monsters_loup_sanguinaire.md
index 68a4ab1b..e8bf9df4 100644
--- a/Data/HD/hd_monsters_loup_sanguinaire.md
+++ b/Data/HD/hd_monsters_loup_sanguinaire.md
@@ -5,7 +5,7 @@
# Loup sanguinaire
- Source: (CEO p)(SRD p)
-- SRD: [Dire Wolf](srd_monsters_dire_wolf.md)
+- Alias: [Dire Wolf](srd_monsters_dire_wolf.md)
- Bête de taille G, non-alignée
- **Terrain** Bois / Forêt, Montagnes
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_mage.md b/Data/HD/hd_monsters_mage.md
index fc627cac..af21b795 100644
--- a/Data/HD/hd_monsters_mage.md
+++ b/Data/HD/hd_monsters_mage.md
@@ -5,7 +5,7 @@
# Mage
- Source: (CEO p)(SRD p)
-- SRD: [Mage](srd_monsters_mage.md)
+- Alias: [Mage](srd_monsters_mage.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 12 (15 avec armure du mage)
diff --git a/Data/HD/hd_monsters_magmatique.md b/Data/HD/hd_monsters_magmatique.md
index a51ff620..41c129a1 100644
--- a/Data/HD/hd_monsters_magmatique.md
+++ b/Data/HD/hd_monsters_magmatique.md
@@ -5,7 +5,7 @@
# Magmatique
- Source: (CEO p)(SRD p)
-- SRD: [Magmin](srd_monsters_magmin.md)
+- Alias: [Magmin](srd_monsters_magmin.md)
- Élémentaire de taille P, Chaotique Neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_malfrat.md b/Data/HD/hd_monsters_malfrat.md
index 5a62adfc..c384768b 100644
--- a/Data/HD/hd_monsters_malfrat.md
+++ b/Data/HD/hd_monsters_malfrat.md
@@ -5,7 +5,7 @@
# Malfrat
- Source: (CEO p)(SRD p)
-- SRD: [Thug](srd_monsters_thug.md)
+- Alias: [Thug](srd_monsters_thug.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que bon
- **Terrain**
- **Classe d'armure** 11 (armure de cuir)
diff --git a/Data/HD/hd_monsters_mammouth.md b/Data/HD/hd_monsters_mammouth.md
index c8d76b4a..20b9d53f 100644
--- a/Data/HD/hd_monsters_mammouth.md
+++ b/Data/HD/hd_monsters_mammouth.md
@@ -5,7 +5,7 @@
# Mammouth
- Source: (CEO p)(SRD p)
-- SRD: [Mammoth](srd_monsters_mammoth.md)
+- Alias: [Mammoth](srd_monsters_mammoth.md)
- Bête de taille TG, non-alignée
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_mante_obscure.md b/Data/HD/hd_monsters_mante_obscure.md
index 42399f50..db696751 100644
--- a/Data/HD/hd_monsters_mante_obscure.md
+++ b/Data/HD/hd_monsters_mante_obscure.md
@@ -5,7 +5,7 @@
# Mante obscure
- Source: (CEO p)(SRD p)
-- SRD: [Darkmantle](srd_monsters_darkmantle.md)
+- Alias: [Darkmantle](srd_monsters_darkmantle.md)
- Créature monstrueuse de taille P, non-alignée
- **Terrain** Caverne naturelle
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_manteleur.md b/Data/HD/hd_monsters_manteleur.md
index 4a847468..384a3d37 100644
--- a/Data/HD/hd_monsters_manteleur.md
+++ b/Data/HD/hd_monsters_manteleur.md
@@ -5,7 +5,7 @@
# Manteleur
- Source: (CEO p)(SRD p)
-- SRD: [Cloaker](srd_monsters_cloaker.md)
+- Alias: [Cloaker](srd_monsters_cloaker.md)
- Aberration de taille G, Chaotique Neutre
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_manticore.md b/Data/HD/hd_monsters_manticore.md
index 4352c9d3..abb09aa6 100644
--- a/Data/HD/hd_monsters_manticore.md
+++ b/Data/HD/hd_monsters_manticore.md
@@ -5,7 +5,7 @@
# Manticore
- Source: (CEO p)(SRD p)
-- SRD: [Manticore](srd_monsters_manticore.md)
+- Alias: [Manticore](srd_monsters_manticore.md)
- Créature monstrueuse de taille G, Loyal Mauvais
- **Terrain** Désert chaud, Montagnes
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_marilith.md b/Data/HD/hd_monsters_marilith.md
index 1100d5dd..bffdf892 100644
--- a/Data/HD/hd_monsters_marilith.md
+++ b/Data/HD/hd_monsters_marilith.md
@@ -5,7 +5,7 @@
# Marilith
- Source: (CEO p)(SRD p)
-- SRD: [Marilith](srd_monsters_marilith.md)
+- Alias: [Marilith](srd_monsters_marilith.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_mastiff.md b/Data/HD/hd_monsters_mastiff.md
index 642235a7..c0e089bb 100644
--- a/Data/HD/hd_monsters_mastiff.md
+++ b/Data/HD/hd_monsters_mastiff.md
@@ -5,7 +5,7 @@
# Mastiff
- Source: (CEO p)(SRD p)
-- SRD: [Mastiff](srd_monsters_mastiff.md)
+- Alias: [Mastiff](srd_monsters_mastiff.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_meduse.md b/Data/HD/hd_monsters_meduse.md
index a92d4391..7693383d 100644
--- a/Data/HD/hd_monsters_meduse.md
+++ b/Data/HD/hd_monsters_meduse.md
@@ -5,7 +5,7 @@
# Méduse
- Source: (CEO p)(SRD p)
-- SRD: [Medusa](srd_monsters_medusa.md)
+- Alias: [Medusa](srd_monsters_medusa.md)
- Créature monstrueuse de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines extérieures, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_membre_de_secte.md b/Data/HD/hd_monsters_membre_de_secte.md
index 4e064aac..99701c12 100644
--- a/Data/HD/hd_monsters_membre_de_secte.md
+++ b/Data/HD/hd_monsters_membre_de_secte.md
@@ -5,7 +5,7 @@
# Membre de secte
- Source: (CEO p)(SRD p)
-- SRD: [Cultist](srd_monsters_cultist.md)
+- Alias: [Cultist](srd_monsters_cultist.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement autre que Bon
- **Terrain**
- **Classe d'armure** 12 (armure de cuir)
diff --git a/Data/HD/hd_monsters_mephite_de_glace.md b/Data/HD/hd_monsters_mephite_de_glace.md
index eefbd032..f7052d39 100644
--- a/Data/HD/hd_monsters_mephite_de_glace.md
+++ b/Data/HD/hd_monsters_mephite_de_glace.md
@@ -5,7 +5,7 @@
# Méphite de glace
- Source: (CEO p)(SRD p)
-- SRD: [Ice Mephit](srd_monsters_ice_mephit.md)
+- Alias: [Ice Mephit](srd_monsters_ice_mephit.md)
- Élémentaire de taille P, Neutre Mauvais
- **Terrain** Arctique / Subarctique, Montagnes, Plans élémentaires
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_mephite_de_magma.md b/Data/HD/hd_monsters_mephite_de_magma.md
index 1be02972..856e81b5 100644
--- a/Data/HD/hd_monsters_mephite_de_magma.md
+++ b/Data/HD/hd_monsters_mephite_de_magma.md
@@ -5,7 +5,7 @@
# Méphite de magma
- Source: (CEO p)(SRD p)
-- SRD: [Magma Mephit](srd_monsters_magma_mephit.md)
+- Alias: [Magma Mephit](srd_monsters_magma_mephit.md)
- Élémentaire de taille P, Neutre Mauvais
- **Terrain** Plans élémentaires
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_mephite_de_poussiere.md b/Data/HD/hd_monsters_mephite_de_poussiere.md
index 04e58794..1d7b52a8 100644
--- a/Data/HD/hd_monsters_mephite_de_poussiere.md
+++ b/Data/HD/hd_monsters_mephite_de_poussiere.md
@@ -5,7 +5,7 @@
# Méphite de poussière
- Source: (CEO p)(SRD p)
-- SRD: [Dust Mephit](srd_monsters_dust_mephit.md)
+- Alias: [Dust Mephit](srd_monsters_dust_mephit.md)
- Élémentaire de taille P, Neutre Mauvais
- **Terrain** Désert chaud, Plans élémentaires, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_mephite_de_vapeur.md b/Data/HD/hd_monsters_mephite_de_vapeur.md
index e834da2f..2b72e1d2 100644
--- a/Data/HD/hd_monsters_mephite_de_vapeur.md
+++ b/Data/HD/hd_monsters_mephite_de_vapeur.md
@@ -5,7 +5,7 @@
# Méphite de vapeur
- Source: (CEO p)(SRD p)
-- SRD: [Steam Mephit](srd_monsters_steam_mephit.md)
+- Alias: [Steam Mephit](srd_monsters_steam_mephit.md)
- Élémentaire de taille P, Neutre Mauvais
- **Terrain** Littoral, Plans élémentaires, Caverne sous-marine
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_merrow.md b/Data/HD/hd_monsters_merrow.md
index de12546b..f73f5c83 100644
--- a/Data/HD/hd_monsters_merrow.md
+++ b/Data/HD/hd_monsters_merrow.md
@@ -5,7 +5,7 @@
# Merrow
- Source: (CEO p)(SRD p)
-- SRD: [Merrow](srd_monsters_merrow.md)
+- Alias: [Merrow](srd_monsters_merrow.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Littoral, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_mille_pattes_geant.md b/Data/HD/hd_monsters_mille_pattes_geant.md
index 6b549a8e..149c3a61 100644
--- a/Data/HD/hd_monsters_mille_pattes_geant.md
+++ b/Data/HD/hd_monsters_mille_pattes_geant.md
@@ -5,7 +5,7 @@
# Mille-pattes géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Centipede](srd_monsters_giant_centipede.md)
+- Alias: [Giant Centipede](srd_monsters_giant_centipede.md)
- Bête de taille P, non-alignée
- **Terrain** Désert chaud, Jungle, Caverne naturelle
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_mimique.md b/Data/HD/hd_monsters_mimique.md
index a0bbcc1c..b7ec48b3 100644
--- a/Data/HD/hd_monsters_mimique.md
+++ b/Data/HD/hd_monsters_mimique.md
@@ -5,7 +5,7 @@
# Mimique
- Source: (CEO p)(SRD p)
-- SRD: [Mimic](srd_monsters_mimic.md)
+- Alias: [Mimic](srd_monsters_mimic.md)
- Créature monstrueuse (métamorphe) de taille M, Neutre
- **Terrain** Caverne aménagée, Donjon maçonné, Ruines souterraines
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_minotaure.md b/Data/HD/hd_monsters_minotaure.md
index 8a4e161e..095b9d3d 100644
--- a/Data/HD/hd_monsters_minotaure.md
+++ b/Data/HD/hd_monsters_minotaure.md
@@ -5,7 +5,7 @@
# Minotaure
- Source: (CEO p)(SRD p)
-- SRD: [Minotaur](srd_monsters_minotaur.md)
+- Alias: [Minotaur](srd_monsters_minotaur.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Caverne aménagée, Donjon maçonné, Ruines extérieures
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_moisissure_violette.md b/Data/HD/hd_monsters_moisissure_violette.md
index 1ef09886..6cf3753c 100644
--- a/Data/HD/hd_monsters_moisissure_violette.md
+++ b/Data/HD/hd_monsters_moisissure_violette.md
@@ -5,7 +5,7 @@
# Moisissure violette
- Source: (CEO p)(SRD p)
-- SRD: [Violet Fungus](srd_monsters_violet_fungus.md)
+- Alias: [Violet Fungus](srd_monsters_violet_fungus.md)
- Plante de taille M, non-alignée
- **Terrain** Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 5
diff --git a/Data/HD/hd_monsters_molosse_infernal.md b/Data/HD/hd_monsters_molosse_infernal.md
index 19433e0d..6e4c8dfd 100644
--- a/Data/HD/hd_monsters_molosse_infernal.md
+++ b/Data/HD/hd_monsters_molosse_infernal.md
@@ -5,7 +5,7 @@
# Molosse infernal
- Source: (CEO p)(SRD p)
-- SRD: [Hell Hound](srd_monsters_hell_hound.md)
+- Alias: [Hell Hound](srd_monsters_hell_hound.md)
- Fiélon de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_momie.md b/Data/HD/hd_monsters_momie.md
index 745775e3..bc8b2d1b 100644
--- a/Data/HD/hd_monsters_momie.md
+++ b/Data/HD/hd_monsters_momie.md
@@ -5,7 +5,7 @@
# Momie
- Source: (CEO p)(SRD p)
-- SRD: [Mummy](srd_monsters_mummy.md)
+- Alias: [Mummy](srd_monsters_mummy.md)
- Mort-vivant de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_momie_auguste.md b/Data/HD/hd_monsters_momie_auguste.md
index dfcd1617..b6c9ebf5 100644
--- a/Data/HD/hd_monsters_momie_auguste.md
+++ b/Data/HD/hd_monsters_momie_auguste.md
@@ -5,7 +5,7 @@
# Momie auguste
- Source: (CEO p)(SRD p)
-- SRD: [Mummy Lord](srd_monsters_mummy_lord.md)
+- Alias: [Mummy Lord](srd_monsters_mummy_lord.md)
- Mort-vivant de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/hd_monsters_mule.md b/Data/HD/hd_monsters_mule.md
index 2cbd90d3..611d04d8 100644
--- a/Data/HD/hd_monsters_mule.md
+++ b/Data/HD/hd_monsters_mule.md
@@ -5,7 +5,7 @@
# Mule
- Source: (CEO p)(SRD p)
-- SRD: [Mule](srd_monsters_mule.md)
+- Alias: [Mule](srd_monsters_mule.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_naga_corrupteur.md b/Data/HD/hd_monsters_naga_corrupteur.md
index aa94b27e..30025578 100644
--- a/Data/HD/hd_monsters_naga_corrupteur.md
+++ b/Data/HD/hd_monsters_naga_corrupteur.md
@@ -5,7 +5,7 @@
# Naga corrupteur
- Source: (CEO p)(SRD p)
-- SRD: [Spirit Naga](srd_monsters_spirit_naga.md)
+- Alias: [Spirit Naga](srd_monsters_spirit_naga.md)
- Créature monstrueuse de taille G, Chaotique Mauvais
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_naga_gardien.md b/Data/HD/hd_monsters_naga_gardien.md
index f0807c55..7bf4acff 100644
--- a/Data/HD/hd_monsters_naga_gardien.md
+++ b/Data/HD/hd_monsters_naga_gardien.md
@@ -5,7 +5,7 @@
# Naga gardien
- Source: (CEO p)(SRD p)
-- SRD: [Guardian Naga](srd_monsters_guardian_naga.md)
+- Alias: [Guardian Naga](srd_monsters_guardian_naga.md)
- Créature monstrueuse de taille G, Loyal Bon
- **Terrain** Ruines extérieures
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_nalfeshnie.md b/Data/HD/hd_monsters_nalfeshnie.md
index 427dcd0a..b5771b46 100644
--- a/Data/HD/hd_monsters_nalfeshnie.md
+++ b/Data/HD/hd_monsters_nalfeshnie.md
@@ -5,7 +5,7 @@
# Nalfeshnie
- Source: (CEO p)(SRD p)
-- SRD: [Nalfeshnee](srd_monsters_nalfeshnee.md)
+- Alias: [Nalfeshnee](srd_monsters_nalfeshnee.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_necrophage.md b/Data/HD/hd_monsters_necrophage.md
index d12ac6ea..21e03511 100644
--- a/Data/HD/hd_monsters_necrophage.md
+++ b/Data/HD/hd_monsters_necrophage.md
@@ -5,7 +5,7 @@
# Nécrophage
- Source: (CEO p)(SRD p)
-- SRD: [Wight](srd_monsters_wight.md)
+- Alias: [Wight](srd_monsters_wight.md)
- Mort-vivant de taille M, Neutre Mauvais
- **Terrain** Mangrove / Marécage, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 14 (armure de cuir clouté)
diff --git a/Data/HD/hd_monsters_noble.md b/Data/HD/hd_monsters_noble.md
index 610197d0..ffd5883a 100644
--- a/Data/HD/hd_monsters_noble.md
+++ b/Data/HD/hd_monsters_noble.md
@@ -5,7 +5,7 @@
# Noble
- Source: (CEO p)(SRD p)
-- SRD: [Noble](srd_monsters_noble.md)
+- Alias: [Noble](srd_monsters_noble.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 15 (cuirasse)
diff --git a/Data/HD/hd_monsters_nuee_de_chauve_souris.md b/Data/HD/hd_monsters_nuee_de_chauve_souris.md
index 506fc3dc..9fd9715f 100644
--- a/Data/HD/hd_monsters_nuee_de_chauve_souris.md
+++ b/Data/HD/hd_monsters_nuee_de_chauve_souris.md
@@ -5,7 +5,7 @@
# Nuée de chauve-souris
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Bats](srd_monsters_swarm_of_bats.md)
+- Alias: [Swarm of Bats](srd_monsters_swarm_of_bats.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_nuee_de_corbeaux.md b/Data/HD/hd_monsters_nuee_de_corbeaux.md
index ed00324a..93d54197 100644
--- a/Data/HD/hd_monsters_nuee_de_corbeaux.md
+++ b/Data/HD/hd_monsters_nuee_de_corbeaux.md
@@ -5,7 +5,7 @@
# Nuée de corbeaux
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Ravens](srd_monsters_swarm_of_ravens.md)
+- Alias: [Swarm of Ravens](srd_monsters_swarm_of_ravens.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_nuee_de_piranhas.md b/Data/HD/hd_monsters_nuee_de_piranhas.md
index e662dc39..6b954e84 100644
--- a/Data/HD/hd_monsters_nuee_de_piranhas.md
+++ b/Data/HD/hd_monsters_nuee_de_piranhas.md
@@ -5,7 +5,7 @@
# Nuée de piranhas
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Quippers](srd_monsters_swarm_of_quippers.md)
+- Alias: [Swarm of Quippers](srd_monsters_swarm_of_quippers.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Jungle, Mangrove / Marécage, Ruines sous-marines
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_nuee_de_rats.md b/Data/HD/hd_monsters_nuee_de_rats.md
index af3845fb..e38f34fc 100644
--- a/Data/HD/hd_monsters_nuee_de_rats.md
+++ b/Data/HD/hd_monsters_nuee_de_rats.md
@@ -5,7 +5,7 @@
# Nuée de rats
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Rats](srd_monsters_swarm_of_rats.md)
+- Alias: [Swarm of Rats](srd_monsters_swarm_of_rats.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Caverne aménagée
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_nuee_de_serpents_venimeux.md b/Data/HD/hd_monsters_nuee_de_serpents_venimeux.md
index 53ea7299..6bee3940 100644
--- a/Data/HD/hd_monsters_nuee_de_serpents_venimeux.md
+++ b/Data/HD/hd_monsters_nuee_de_serpents_venimeux.md
@@ -5,7 +5,7 @@
# Nuée de serpents venimeux
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Poisonous Snakes](srd_monsters_swarm_of_poisonous_snakes.md)
+- Alias: [Swarm of Poisonous Snakes](srd_monsters_swarm_of_poisonous_snakes.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Jungle, Mangrove / Marécage, Caverne sous-marine
- **Classe d'armure** 14
diff --git a/Data/HD/hd_monsters_nuee_dinsectes.md b/Data/HD/hd_monsters_nuee_dinsectes.md
index 4f78a327..b3b161ce 100644
--- a/Data/HD/hd_monsters_nuee_dinsectes.md
+++ b/Data/HD/hd_monsters_nuee_dinsectes.md
@@ -5,7 +5,7 @@
# Nuée d'insectes
- Source: (CEO p)(SRD p)
-- SRD: [Swarm of Insects](srd_monsters_swarm_of_insects.md)
+- Alias: [Swarm of Insects](srd_monsters_swarm_of_insects.md)
- Nuée de taille M composée de bêtes de taille TP, non-alignée
- **Terrain** Bois / Forêt, Jungle, Mangrove / Marécage
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_ogre.md b/Data/HD/hd_monsters_ogre.md
index e86d4ab0..10afa14a 100644
--- a/Data/HD/hd_monsters_ogre.md
+++ b/Data/HD/hd_monsters_ogre.md
@@ -5,7 +5,7 @@
# Ogre
- Source: (CEO p)(SRD p)
-- SRD: [Ogre](srd_monsters_ogre.md)
+- Alias: [Ogre](srd_monsters_ogre.md)
- Géant de taille G, Chaotique Mauvais
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane, Caverne naturelle, Ruines extérieures
- **Classe d'armure** 11 (armure de peau)
diff --git a/Data/HD/hd_monsters_ombre.md b/Data/HD/hd_monsters_ombre.md
index b79777a1..dd01e19d 100644
--- a/Data/HD/hd_monsters_ombre.md
+++ b/Data/HD/hd_monsters_ombre.md
@@ -5,7 +5,7 @@
# Ombre
- Source: (CEO p)(SRD p)
-- SRD: [Shadow](srd_monsters_shadow.md)
+- Alias: [Shadow](srd_monsters_shadow.md)
- Mort-vivant de taille M, Chaotique Mauvais
- **Terrain** Donjon maçonné, Ruines extérieures, Ruines souterraines
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_oni.md b/Data/HD/hd_monsters_oni.md
index d69b28a2..57359037 100644
--- a/Data/HD/hd_monsters_oni.md
+++ b/Data/HD/hd_monsters_oni.md
@@ -5,7 +5,7 @@
# Oni
- Source: (CEO p)(SRD p)
-- SRD: [Oni](srd_monsters_oni.md)
+- Alias: [Oni](srd_monsters_oni.md)
- Géant de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 16 (cotte de mailles)
diff --git a/Data/HD/hd_monsters_otyugh.md b/Data/HD/hd_monsters_otyugh.md
index 1bb1dad9..171d5a53 100644
--- a/Data/HD/hd_monsters_otyugh.md
+++ b/Data/HD/hd_monsters_otyugh.md
@@ -5,7 +5,7 @@
# Otyugh
- Source: (CEO p)(SRD p)
-- SRD: [Otyugh](srd_monsters_otyugh.md)
+- Alias: [Otyugh](srd_monsters_otyugh.md)
- Aberration de taille G, Neutre
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_ours_brun.md b/Data/HD/hd_monsters_ours_brun.md
index a777b76e..4e649f68 100644
--- a/Data/HD/hd_monsters_ours_brun.md
+++ b/Data/HD/hd_monsters_ours_brun.md
@@ -5,7 +5,7 @@
# Ours brun
- Source: (CEO p)(SRD p)
-- SRD: [Brown Bear](srd_monsters_brown_bear.md)
+- Alias: [Brown Bear](srd_monsters_brown_bear.md)
- Bête de taille G, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Littoral, Montagnes
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_ours_garou.md b/Data/HD/hd_monsters_ours_garou.md
index 16e99b25..6f512eba 100644
--- a/Data/HD/hd_monsters_ours_garou.md
+++ b/Data/HD/hd_monsters_ours_garou.md
@@ -5,7 +5,7 @@
# Ours-garou
- Source: (CEO p)(SRD p)
-- SRD: [Werebear](srd_monsters_werebear.md)
+- Alias: [Werebear](srd_monsters_werebear.md)
- Humanoïde (humain, métamorphe) de taille M, Neutre Bon
- **Terrain** Bois / Forêt
- **Classe d'armure** 10 sous forme humanoïde, 11 (armure naturelle) sous forme hybride ou d'ours
diff --git a/Data/HD/hd_monsters_ours_noir.md b/Data/HD/hd_monsters_ours_noir.md
index 7aca3b3f..fae72c11 100644
--- a/Data/HD/hd_monsters_ours_noir.md
+++ b/Data/HD/hd_monsters_ours_noir.md
@@ -5,7 +5,7 @@
# Ours noir
- Source: (CEO p)(SRD p)
-- SRD: [Black Bear](srd_monsters_black_bear.md)
+- Alias: [Black Bear](srd_monsters_black_bear.md)
- Bête de taille M, non-alignée
- **Terrain**
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_ours_polaire.md b/Data/HD/hd_monsters_ours_polaire.md
index 6db22287..86ba17d4 100644
--- a/Data/HD/hd_monsters_ours_polaire.md
+++ b/Data/HD/hd_monsters_ours_polaire.md
@@ -5,7 +5,7 @@
# Ours polaire
- Source: (CEO p)(SRD p)
-- SRD: [Polar Bear](srd_monsters_polar_bear.md)
+- Alias: [Polar Bear](srd_monsters_polar_bear.md)
- Bête de taille G, non-alignée
- **Terrain** Arctique / Subarctique, Bois / Forêt
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_oxydeur.md b/Data/HD/hd_monsters_oxydeur.md
index 9110b50b..b5a67668 100644
--- a/Data/HD/hd_monsters_oxydeur.md
+++ b/Data/HD/hd_monsters_oxydeur.md
@@ -5,7 +5,7 @@
# Oxydeur
- Source: (CEO p)(SRD p)
-- SRD: [Rust Monster](srd_monsters_rust_monster.md)
+- Alias: [Rust Monster](srd_monsters_rust_monster.md)
- Créature monstrueuse de taille M, non-alignée
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_panthere.md b/Data/HD/hd_monsters_panthere.md
index e501f6f1..df84b598 100644
--- a/Data/HD/hd_monsters_panthere.md
+++ b/Data/HD/hd_monsters_panthere.md
@@ -5,7 +5,7 @@
# Panthère
- Source: (CEO p)(SRD p)
-- SRD: [Panther](srd_monsters_panther.md)
+- Alias: [Panther](srd_monsters_panther.md)
- Bête de taille G, non-alignée
- **Terrain** Arctique / Subarctique, Jungle, Mangrove / Marécage
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_pegase.md b/Data/HD/hd_monsters_pegase.md
index 0804d7ba..61560b14 100644
--- a/Data/HD/hd_monsters_pegase.md
+++ b/Data/HD/hd_monsters_pegase.md
@@ -5,7 +5,7 @@
# Pégase
- Source: (CEO p)(SRD p)
-- SRD: [Pegasus](srd_monsters_pegasus.md)
+- Alias: [Pegasus](srd_monsters_pegasus.md)
- Céleste de taille G, Chaotique Bon
- **Terrain**
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_pieuvre.md b/Data/HD/hd_monsters_pieuvre.md
index 7c1093a4..1c6774a1 100644
--- a/Data/HD/hd_monsters_pieuvre.md
+++ b/Data/HD/hd_monsters_pieuvre.md
@@ -5,7 +5,7 @@
# Pieuvre
- Source: (CEO p)(SRD p)
-- SRD: [Octopus](srd_monsters_octopus.md)
+- Alias: [Octopus](srd_monsters_octopus.md)
- Bête de taille P, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_pieuvre_geante.md b/Data/HD/hd_monsters_pieuvre_geante.md
index 37d9952e..368dbdc3 100644
--- a/Data/HD/hd_monsters_pieuvre_geante.md
+++ b/Data/HD/hd_monsters_pieuvre_geante.md
@@ -5,7 +5,7 @@
# Pieuvre géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Octopus](srd_monsters_giant_octopus.md)
+- Alias: [Giant Octopus](srd_monsters_giant_octopus.md)
- Bête de taille G, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_piranha.md b/Data/HD/hd_monsters_piranha.md
index f993986b..238ab179 100644
--- a/Data/HD/hd_monsters_piranha.md
+++ b/Data/HD/hd_monsters_piranha.md
@@ -5,7 +5,7 @@
# Piranha
- Source: (CEO p)(SRD p)
-- SRD: [Quipper](srd_monsters_quipper.md)
+- Alias: [Quipper](srd_monsters_quipper.md)
- Bête de taille TP, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_planetar.md b/Data/HD/hd_monsters_planetar.md
index e6b82e6b..9cdfe135 100644
--- a/Data/HD/hd_monsters_planetar.md
+++ b/Data/HD/hd_monsters_planetar.md
@@ -5,7 +5,7 @@
# Planétar
- Source: (CEO p)(SRD p)
-- SRD: [Planetar](srd_monsters_planetar.md)
+- Alias: [Planetar](srd_monsters_planetar.md)
- Céleste de taille G, Loyal Bon
- **Terrain**
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_plesiosaure.md b/Data/HD/hd_monsters_plesiosaure.md
index ade7a2d4..5688127e 100644
--- a/Data/HD/hd_monsters_plesiosaure.md
+++ b/Data/HD/hd_monsters_plesiosaure.md
@@ -5,7 +5,7 @@
# Plésiosaure
- Source: (CEO p)(SRD p)
-- SRD: [Plesiosaurus](srd_monsters_plesiosaurus.md)
+- Alias: [Plesiosaurus](srd_monsters_plesiosaurus.md)
- Bête de taille G, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_poney.md b/Data/HD/hd_monsters_poney.md
index 2140f76c..34571be6 100644
--- a/Data/HD/hd_monsters_poney.md
+++ b/Data/HD/hd_monsters_poney.md
@@ -5,7 +5,7 @@
# Poney
- Source: (CEO p)(SRD p)
-- SRD: [Pony](srd_monsters_pony.md)
+- Alias: [Pony](srd_monsters_pony.md)
- Bête de taille M, non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_pouding_noir.md b/Data/HD/hd_monsters_pouding_noir.md
index d4f85d4c..bb847f9f 100644
--- a/Data/HD/hd_monsters_pouding_noir.md
+++ b/Data/HD/hd_monsters_pouding_noir.md
@@ -5,7 +5,7 @@
# Pouding noir
- Source: (CEO p)(SRD p)
-- SRD: [Black Pudding](srd_monsters_black_pudding.md)
+- Alias: [Black Pudding](srd_monsters_black_pudding.md)
- Vase de taille G, non-alignée
- **Terrain** Caverne aménagée, Caverne naturelle, Donjon maçonné
- **Classe d'armure** 7
diff --git a/Data/HD/hd_monsters_pseudodragon.md b/Data/HD/hd_monsters_pseudodragon.md
index b26c6e6a..02b93c56 100644
--- a/Data/HD/hd_monsters_pseudodragon.md
+++ b/Data/HD/hd_monsters_pseudodragon.md
@@ -5,7 +5,7 @@
# Pseudodragon
- Source: (CEO p)(SRD p)
-- SRD: [Pseudodragon](srd_monsters_pseudodragon.md)
+- Alias: [Pseudodragon](srd_monsters_pseudodragon.md)
- Dragon de taille TP, Neutre Bon
- **Terrain** Bois / Forêt, Jungle, Caverne naturelle
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_punaise_de_feu_geante.md b/Data/HD/hd_monsters_punaise_de_feu_geante.md
index 14096cbd..78f742cb 100644
--- a/Data/HD/hd_monsters_punaise_de_feu_geante.md
+++ b/Data/HD/hd_monsters_punaise_de_feu_geante.md
@@ -5,7 +5,7 @@
# Punaise de feu géante
- Source: (CEO p)(SRD p)
-- SRD: [Giant Fire Beetle](srd_monsters_giant_fire_beetle.md)
+- Alias: [Giant Fire Beetle](srd_monsters_giant_fire_beetle.md)
- Bête de taille P, non-alignée
- **Terrain** Bois / Forêt, Caverne aménagée, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_quasit.md b/Data/HD/hd_monsters_quasit.md
index c1c4033b..ab46db55 100644
--- a/Data/HD/hd_monsters_quasit.md
+++ b/Data/HD/hd_monsters_quasit.md
@@ -5,7 +5,7 @@
# Quasit
- Source: (CEO p)(SRD p)
-- SRD: [Quasit](srd_monsters_quasit.md)
+- Alias: [Quasit](srd_monsters_quasit.md)
- Fiélon (démon, métamorphe) de taille TP, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_rakshasa.md b/Data/HD/hd_monsters_rakshasa.md
index b1d1dbd6..47edc0eb 100644
--- a/Data/HD/hd_monsters_rakshasa.md
+++ b/Data/HD/hd_monsters_rakshasa.md
@@ -5,7 +5,7 @@
# Rakshasa
- Source: (CEO p)(SRD p)
-- SRD: [Rakshasa](srd_monsters_rakshasa.md)
+- Alias: [Rakshasa](srd_monsters_rakshasa.md)
- Fiélon de taille M, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/hd_monsters_rat.md b/Data/HD/hd_monsters_rat.md
index 044e291c..006247dd 100644
--- a/Data/HD/hd_monsters_rat.md
+++ b/Data/HD/hd_monsters_rat.md
@@ -5,7 +5,7 @@
# Rat
- Source: (CEO p)(SRD p)
-- SRD: [Rat](srd_monsters_rat.md)
+- Alias: [Rat](srd_monsters_rat.md)
- Bête de taille TP, non-alignée
- **Terrain** Caverne aménagée
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_rat_garou.md b/Data/HD/hd_monsters_rat_garou.md
index c2835fbf..e1dd4d77 100644
--- a/Data/HD/hd_monsters_rat_garou.md
+++ b/Data/HD/hd_monsters_rat_garou.md
@@ -5,7 +5,7 @@
# Rat-garou
- Source: (CEO p)(SRD p)
-- SRD: [Wererat](srd_monsters_wererat.md)
+- Alias: [Wererat](srd_monsters_wererat.md)
- Humanoïde (humain, métamorphe) de taille M, Loyal Mauvais
- **Terrain** Caverne naturelle
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_rat_geant.md b/Data/HD/hd_monsters_rat_geant.md
index ce2c1a00..8c892edf 100644
--- a/Data/HD/hd_monsters_rat_geant.md
+++ b/Data/HD/hd_monsters_rat_geant.md
@@ -5,7 +5,7 @@
# Rat géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Rat](srd_monsters_giant_rat.md)
+- Alias: [Giant Rat](srd_monsters_giant_rat.md)
- Bête de taille P, non-alignée
- **Terrain** Jungle, Mangrove / Marécage, Caverne aménagée
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_requin_chasseur.md b/Data/HD/hd_monsters_requin_chasseur.md
index 7aaa52fa..985e8977 100644
--- a/Data/HD/hd_monsters_requin_chasseur.md
+++ b/Data/HD/hd_monsters_requin_chasseur.md
@@ -5,7 +5,7 @@
# Requin chasseur
- Source: (CEO p)(SRD p)
-- SRD: [Hunter Shark](srd_monsters_hunter_shark.md)
+- Alias: [Hunter Shark](srd_monsters_hunter_shark.md)
- Bête de taille G, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_requin_de_recif.md b/Data/HD/hd_monsters_requin_de_recif.md
index 1528d45f..0144db86 100644
--- a/Data/HD/hd_monsters_requin_de_recif.md
+++ b/Data/HD/hd_monsters_requin_de_recif.md
@@ -5,7 +5,7 @@
# Requin de récif
- Source: (CEO p)(SRD p)
-- SRD: [Reef Shark](srd_monsters_reef_shark.md)
+- Alias: [Reef Shark](srd_monsters_reef_shark.md)
- Bête de taille M, non-alignée
- **Terrain** Littoral, Ruines sous-marines
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_requin_geant.md b/Data/HD/hd_monsters_requin_geant.md
index 2ada329b..f9675f4f 100644
--- a/Data/HD/hd_monsters_requin_geant.md
+++ b/Data/HD/hd_monsters_requin_geant.md
@@ -5,7 +5,7 @@
# Requin géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Shark](srd_monsters_giant_shark.md)
+- Alias: [Giant Shark](srd_monsters_giant_shark.md)
- Bête de taille TG, non-alignée
- **Terrain** Mer / Océan, Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_rhinoceros.md b/Data/HD/hd_monsters_rhinoceros.md
index 249addcc..6b0e6410 100644
--- a/Data/HD/hd_monsters_rhinoceros.md
+++ b/Data/HD/hd_monsters_rhinoceros.md
@@ -5,7 +5,7 @@
# Rhinocéros
- Source: (CEO p)(SRD p)
-- SRD: [Rhinoceros](srd_monsters_rhinoceros.md)
+- Alias: [Rhinoceros](srd_monsters_rhinoceros.md)
- Bête de taille G, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_roc.md b/Data/HD/hd_monsters_roc.md
index 54c02a49..7061d64e 100644
--- a/Data/HD/hd_monsters_roc.md
+++ b/Data/HD/hd_monsters_roc.md
@@ -5,7 +5,7 @@
# Roc
- Source: (CEO p)(SRD p)
-- SRD: [Roc](srd_monsters_roc.md)
+- Alias: [Roc](srd_monsters_roc.md)
- Créature monstrueuse de taille Gig, non-alignée
- **Terrain** Montagnes
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_roturier.md b/Data/HD/hd_monsters_roturier.md
index 0b9ea002..beaadea7 100644
--- a/Data/HD/hd_monsters_roturier.md
+++ b/Data/HD/hd_monsters_roturier.md
@@ -5,7 +5,7 @@
# Roturier
- Source: (CEO p)(SRD p)
-- SRD: [Commoner](srd_monsters_commoner.md)
+- Alias: [Commoner](srd_monsters_commoner.md)
- Humanoïde (n'importe quelle race) de taille M, n'importe quel alignement
- **Terrain**
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_sahuagin.md b/Data/HD/hd_monsters_sahuagin.md
index 6129f7fe..79d53999 100644
--- a/Data/HD/hd_monsters_sahuagin.md
+++ b/Data/HD/hd_monsters_sahuagin.md
@@ -5,7 +5,7 @@
# Sahuagin
- Source: (CEO p)(SRD p)
-- SRD: [Sahuagin](srd_monsters_sahuagin.md)
+- Alias: [Sahuagin](srd_monsters_sahuagin.md)
- Humanoïde (sahuagin) de taille M, Loyal Mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_salamandre.md b/Data/HD/hd_monsters_salamandre.md
index 08e8b139..da8fc880 100644
--- a/Data/HD/hd_monsters_salamandre.md
+++ b/Data/HD/hd_monsters_salamandre.md
@@ -5,7 +5,7 @@
# Salamandre
- Source: (CEO p)(SRD p)
-- SRD: [Salamander](srd_monsters_salamander.md)
+- Alias: [Salamander](srd_monsters_salamander.md)
- Élémentaire de taille G, Neutre Mauvais
- **Terrain** Plans élémentaires
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_sanglier.md b/Data/HD/hd_monsters_sanglier.md
index 6f61d0fd..75772841 100644
--- a/Data/HD/hd_monsters_sanglier.md
+++ b/Data/HD/hd_monsters_sanglier.md
@@ -5,7 +5,7 @@
# Sanglier
- Source: (CEO p)(SRD p)
-- SRD: [Boar](srd_monsters_boar.md)
+- Alias: [Boar](srd_monsters_boar.md)
- Bête de taille M, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Jungle
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_sanglier_garou.md b/Data/HD/hd_monsters_sanglier_garou.md
index 77ed67a5..b7446907 100644
--- a/Data/HD/hd_monsters_sanglier_garou.md
+++ b/Data/HD/hd_monsters_sanglier_garou.md
@@ -5,7 +5,7 @@
# Sanglier-garou
- Source: (CEO p)(SRD p)
-- SRD: [Wereboar](srd_monsters_wereboar.md)
+- Alias: [Wereboar](srd_monsters_wereboar.md)
- Humanoïde (humain, métamorphe) de taille M, Neutre Mauvais
- **Terrain** Bois / Forêt
- **Classe d'armure** 10 sous forme humanoïde, 11 (armure naturelle) sous forme hybride ou de sanglier
diff --git a/Data/HD/hd_monsters_sanglier_geant.md b/Data/HD/hd_monsters_sanglier_geant.md
index 7e69ce2c..31de99ff 100644
--- a/Data/HD/hd_monsters_sanglier_geant.md
+++ b/Data/HD/hd_monsters_sanglier_geant.md
@@ -5,7 +5,7 @@
# Sanglier géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Boar](srd_monsters_giant_boar.md)
+- Alias: [Giant Boar](srd_monsters_giant_boar.md)
- Bête de taille G, non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées, Jungle
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_satyre.md b/Data/HD/hd_monsters_satyre.md
index 0858bcae..efb3c806 100644
--- a/Data/HD/hd_monsters_satyre.md
+++ b/Data/HD/hd_monsters_satyre.md
@@ -5,7 +5,7 @@
# Satyre
- Source: (CEO p)(SRD p)
-- SRD: [Satyr](srd_monsters_satyr.md)
+- Alias: [Satyr](srd_monsters_satyr.md)
- Fée de taille M, Chaotique Neutre
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure de cuir)
diff --git a/Data/HD/hd_monsters_scorpion.md b/Data/HD/hd_monsters_scorpion.md
index 8d659dde..36c13537 100644
--- a/Data/HD/hd_monsters_scorpion.md
+++ b/Data/HD/hd_monsters_scorpion.md
@@ -5,7 +5,7 @@
# Scorpion
- Source: (CEO p)(SRD p)
-- SRD: [Scorpion](srd_monsters_scorpion.md)
+- Alias: [Scorpion](srd_monsters_scorpion.md)
- Bête de taille TP, non-alignée
- **Terrain** Désert chaud, Caverne naturelle
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/hd_monsters_scorpion_geant.md b/Data/HD/hd_monsters_scorpion_geant.md
index 52cec5d1..862250d6 100644
--- a/Data/HD/hd_monsters_scorpion_geant.md
+++ b/Data/HD/hd_monsters_scorpion_geant.md
@@ -5,7 +5,7 @@
# Scorpion géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Scorpion](srd_monsters_giant_scorpion.md)
+- Alias: [Giant Scorpion](srd_monsters_giant_scorpion.md)
- Bête de taille G, non-alignée
- **Terrain** Désert chaud, Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_serpent_constricteur.md b/Data/HD/hd_monsters_serpent_constricteur.md
index b574dbdf..cf06e20b 100644
--- a/Data/HD/hd_monsters_serpent_constricteur.md
+++ b/Data/HD/hd_monsters_serpent_constricteur.md
@@ -5,7 +5,7 @@
# Serpent constricteur
- Source: (CEO p)(SRD p)
-- SRD: [Constrictor Snake](srd_monsters_constrictor_snake.md)
+- Alias: [Constrictor Snake](srd_monsters_constrictor_snake.md)
- Bête de taille G, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_serpent_constricteur_geant.md b/Data/HD/hd_monsters_serpent_constricteur_geant.md
index 5360778b..b08f5514 100644
--- a/Data/HD/hd_monsters_serpent_constricteur_geant.md
+++ b/Data/HD/hd_monsters_serpent_constricteur_geant.md
@@ -5,7 +5,7 @@
# Serpent constricteur géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Constrictor Snake](srd_monsters_giant_constrictor_snake.md)
+- Alias: [Giant Constrictor Snake](srd_monsters_giant_constrictor_snake.md)
- Bête de taille TG, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_serpent_venimeux.md b/Data/HD/hd_monsters_serpent_venimeux.md
index 69ec07ec..36938cf0 100644
--- a/Data/HD/hd_monsters_serpent_venimeux.md
+++ b/Data/HD/hd_monsters_serpent_venimeux.md
@@ -5,7 +5,7 @@
# Serpent venimeux
- Source: (CEO p)(SRD p)
-- SRD: [Poisonous Snake](srd_monsters_poisonous_snake.md)
+- Alias: [Poisonous Snake](srd_monsters_poisonous_snake.md)
- Bête de taille TP, non-alignée
- **Terrain** Bois / Forêt, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/hd_monsters_serpent_venimeux_geant.md b/Data/HD/hd_monsters_serpent_venimeux_geant.md
index 3b253047..a3ec3ce2 100644
--- a/Data/HD/hd_monsters_serpent_venimeux_geant.md
+++ b/Data/HD/hd_monsters_serpent_venimeux_geant.md
@@ -5,7 +5,7 @@
# Serpent venimeux géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Poisonous Snake](srd_monsters_giant_poisonous_snake.md)
+- Alias: [Giant Poisonous Snake](srd_monsters_giant_poisonous_snake.md)
- Bête de taille M, non-alignée
- **Terrain** Désert chaud, Caverne sous-marine
- **Classe d'armure** 14
diff --git a/Data/HD/hd_monsters_serpent_volant.md b/Data/HD/hd_monsters_serpent_volant.md
index 98f9a80e..59041bae 100644
--- a/Data/HD/hd_monsters_serpent_volant.md
+++ b/Data/HD/hd_monsters_serpent_volant.md
@@ -5,7 +5,7 @@
# Serpent volant
- Source: (CEO p)(SRD p)
-- SRD: [Flying Snake](srd_monsters_flying_snake.md)
+- Alias: [Flying Snake](srd_monsters_flying_snake.md)
- Bête de taille TP, non-alignée
- **Terrain** Montagnes
- **Classe d'armure** 14
diff --git a/Data/HD/hd_monsters_singe_geant.md b/Data/HD/hd_monsters_singe_geant.md
index e09244c8..d75b0249 100644
--- a/Data/HD/hd_monsters_singe_geant.md
+++ b/Data/HD/hd_monsters_singe_geant.md
@@ -5,7 +5,7 @@
# Singe géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Ape](srd_monsters_giant_ape.md)
+- Alias: [Giant Ape](srd_monsters_giant_ape.md)
- Bête de taille TG, non-alignée
- **Terrain** Arctique / Subarctique, Jungle, Montagnes
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_solar.md b/Data/HD/hd_monsters_solar.md
index 79a34268..a8374ad7 100644
--- a/Data/HD/hd_monsters_solar.md
+++ b/Data/HD/hd_monsters_solar.md
@@ -5,7 +5,7 @@
# Solar
- Source: (CEO p)(SRD p)
-- SRD: [Solar](srd_monsters_solar.md)
+- Alias: [Solar](srd_monsters_solar.md)
- Céleste de taille G, Loyal Bon
- **Terrain**
- **Classe d'armure** 21 (armure naturelle)
diff --git a/Data/HD/hd_monsters_spectre.md b/Data/HD/hd_monsters_spectre.md
index 05e02845..d233f5ac 100644
--- a/Data/HD/hd_monsters_spectre.md
+++ b/Data/HD/hd_monsters_spectre.md
@@ -5,7 +5,7 @@
# Spectre
- Source: (CEO p)(SRD p)
-- SRD: [Specter](srd_monsters_specter.md)
+- Alias: [Specter](srd_monsters_specter.md)
- Mort-vivant de taille M, Chaotique Mauvais
- **Terrain** Ruines extérieures
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_squelette.md b/Data/HD/hd_monsters_squelette.md
index 4ce79c96..d76a560d 100644
--- a/Data/HD/hd_monsters_squelette.md
+++ b/Data/HD/hd_monsters_squelette.md
@@ -5,7 +5,7 @@
# Squelette
- Source: (CEO p)(SRD p)
-- SRD: [Skeleton](srd_monsters_skeleton.md)
+- Alias: [Skeleton](srd_monsters_skeleton.md)
- Mort-vivant de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines extérieures
- **Classe d'armure** 13 (débris d'armure)
diff --git a/Data/HD/hd_monsters_squelette_cheval_de_guerre.md b/Data/HD/hd_monsters_squelette_cheval_de_guerre.md
index 87019a9f..8402d800 100644
--- a/Data/HD/hd_monsters_squelette_cheval_de_guerre.md
+++ b/Data/HD/hd_monsters_squelette_cheval_de_guerre.md
@@ -5,7 +5,7 @@
# Squelette cheval de guerre
- Source: (CEO p)(SRD p)
-- SRD: [Warhorse Skeleton](srd_monsters_warhorse_skeleton.md)
+- Alias: [Warhorse Skeleton](srd_monsters_warhorse_skeleton.md)
- Mort-vivant de taille G, Loyal Mauvais
- **Terrain**
- **Classe d'armure** 13 (débris de barde)
diff --git a/Data/HD/hd_monsters_squelette_minotaure.md b/Data/HD/hd_monsters_squelette_minotaure.md
index ff765fc1..2b872e22 100644
--- a/Data/HD/hd_monsters_squelette_minotaure.md
+++ b/Data/HD/hd_monsters_squelette_minotaure.md
@@ -5,7 +5,7 @@
# Squelette minotaure
- Source: (CEO p)(SRD p)
-- SRD: [Minotaur Skeleton](srd_monsters_minotaur_skeleton.md)
+- Alias: [Minotaur Skeleton](srd_monsters_minotaur_skeleton.md)
- Mort-vivant de taille G, Loyal Mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 12 (armure naturelle)
diff --git a/Data/HD/hd_monsters_strige.md b/Data/HD/hd_monsters_strige.md
index d0d266c0..5b00a1d7 100644
--- a/Data/HD/hd_monsters_strige.md
+++ b/Data/HD/hd_monsters_strige.md
@@ -5,7 +5,7 @@
# Strige
- Source: (CEO p)(SRD p)
-- SRD: [Stirge](srd_monsters_stirge.md)
+- Alias: [Stirge](srd_monsters_stirge.md)
- Bête de taille TP, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/hd_monsters_succubeincube.md b/Data/HD/hd_monsters_succubeincube.md
index e1980ec9..a4646f26 100644
--- a/Data/HD/hd_monsters_succubeincube.md
+++ b/Data/HD/hd_monsters_succubeincube.md
@@ -5,7 +5,7 @@
# Succube/Incube
- Source: (CEO p)(SRD p)
-- SRD: [Succubus](srd_monsters_succubus.md)
+- Alias: [Succubus](srd_monsters_succubus.md)
- Fiélon (métamorphe) de taille M, Neutre Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_sylvanien.md b/Data/HD/hd_monsters_sylvanien.md
index da0e72cc..c3b75289 100644
--- a/Data/HD/hd_monsters_sylvanien.md
+++ b/Data/HD/hd_monsters_sylvanien.md
@@ -5,7 +5,7 @@
# Sylvanien
- Source: (CEO p)(SRD p)
-- SRD: [Treant](srd_monsters_treant.md)
+- Alias: [Treant](srd_monsters_treant.md)
- Plante de taille TG, Chaotique Bonne
- **Terrain** Bois / Forêt
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_tapis_etrangleur.md b/Data/HD/hd_monsters_tapis_etrangleur.md
index c4421bd8..de8f1e36 100644
--- a/Data/HD/hd_monsters_tapis_etrangleur.md
+++ b/Data/HD/hd_monsters_tapis_etrangleur.md
@@ -5,7 +5,7 @@
# Tapis étrangleur
- Source: (CEO p)(SRD p)
-- SRD: [Rug of Smothering](srd_monsters_rug_of_smothering.md)
+- Alias: [Rug of Smothering](srd_monsters_rug_of_smothering.md)
- Créature artificielle de taille G, non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_tarasque.md b/Data/HD/hd_monsters_tarasque.md
index f593e7a0..2bcae4e8 100644
--- a/Data/HD/hd_monsters_tarasque.md
+++ b/Data/HD/hd_monsters_tarasque.md
@@ -5,7 +5,7 @@
# Tarasque
- Source: (CEO p)(SRD p)
-- SRD: [Tarrasque](srd_monsters_tarrasque.md)
+- Alias: [Tarrasque](srd_monsters_tarrasque.md)
- Créature monstrueuse (titan) de taille Gig, non-alignée
- **Terrain**
- **Classe d'armure** 25 (armure naturelle)
diff --git a/Data/HD/hd_monsters_tertre_errant.md b/Data/HD/hd_monsters_tertre_errant.md
index 46cca69c..1cb6cb38 100644
--- a/Data/HD/hd_monsters_tertre_errant.md
+++ b/Data/HD/hd_monsters_tertre_errant.md
@@ -5,7 +5,7 @@
# Tertre errant
- Source: (CEO p)(SRD p)
-- SRD: [Shambling Mound](srd_monsters_shambling_mound.md)
+- Alias: [Shambling Mound](srd_monsters_shambling_mound.md)
- Plante de taille G, non-alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_tigre.md b/Data/HD/hd_monsters_tigre.md
index 1242c813..d797630f 100644
--- a/Data/HD/hd_monsters_tigre.md
+++ b/Data/HD/hd_monsters_tigre.md
@@ -5,7 +5,7 @@
# Tigre
- Source: (CEO p)(SRD p)
-- SRD: [Tiger](srd_monsters_tiger.md)
+- Alias: [Tiger](srd_monsters_tiger.md)
- Bête de taille G, non-alignée
- **Terrain** Arctique / Subarctique, Jungle, Mangrove / Marécage
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_tigre_a_dents_de_sabre.md b/Data/HD/hd_monsters_tigre_a_dents_de_sabre.md
index 4a6d0fd0..d69e932e 100644
--- a/Data/HD/hd_monsters_tigre_a_dents_de_sabre.md
+++ b/Data/HD/hd_monsters_tigre_a_dents_de_sabre.md
@@ -5,7 +5,7 @@
# Tigre à dents de sabre
- Source: (CEO p)(SRD p)
-- SRD: [Saber-Toothed Tiger](srd_monsters_saber_toothed_tiger.md)
+- Alias: [Saber-Toothed Tiger](srd_monsters_saber_toothed_tiger.md)
- Bête de taille G, non-alignée
- **Terrain** Collines / Vallées, Désert chaud, Montagnes
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_tigre_garou.md b/Data/HD/hd_monsters_tigre_garou.md
index 62de19bb..7ca23c1b 100644
--- a/Data/HD/hd_monsters_tigre_garou.md
+++ b/Data/HD/hd_monsters_tigre_garou.md
@@ -5,7 +5,7 @@
# Tigre-garou
- Source: (CEO p)(SRD p)
-- SRD: [Weretiger](srd_monsters_weretiger.md)
+- Alias: [Weretiger](srd_monsters_weretiger.md)
- Humanoïde (humain, métamorphe) de taille M, Neutre
- **Terrain** Jungle
- **Classe d'armure** 12
diff --git a/Data/HD/hd_monsters_torve.md b/Data/HD/hd_monsters_torve.md
index 8e58ddc8..6f2a7e08 100644
--- a/Data/HD/hd_monsters_torve.md
+++ b/Data/HD/hd_monsters_torve.md
@@ -5,7 +5,7 @@
# Torve
- Source: (CEO p)(SRD p)
-- SRD: [Grimlock](srd_monsters_grimlock.md)
+- Alias: [Grimlock](srd_monsters_grimlock.md)
- Humanoïde (torve) de taille M, Neutre Mauvais
- **Terrain** Caverne aménagée
- **Classe d'armure** 11
diff --git a/Data/HD/hd_monsters_traqueur_invisible.md b/Data/HD/hd_monsters_traqueur_invisible.md
index b86575a3..4d59a443 100644
--- a/Data/HD/hd_monsters_traqueur_invisible.md
+++ b/Data/HD/hd_monsters_traqueur_invisible.md
@@ -5,7 +5,7 @@
# Traqueur invisible
- Source: (CEO p)(SRD p)
-- SRD: [Invisible Stalker](srd_monsters_invisible_stalker.md)
+- Alias: [Invisible Stalker](srd_monsters_invisible_stalker.md)
- Élémentaire de taille M, neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 14
diff --git a/Data/HD/hd_monsters_triceratops.md b/Data/HD/hd_monsters_triceratops.md
index 71adc8cd..e3ac50b9 100644
--- a/Data/HD/hd_monsters_triceratops.md
+++ b/Data/HD/hd_monsters_triceratops.md
@@ -5,7 +5,7 @@
# Tricératops
- Source: (CEO p)(SRD p)
-- SRD: [Triceratops](srd_monsters_triceratops.md)
+- Alias: [Triceratops](srd_monsters_triceratops.md)
- Bête de taille TG, non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_troll.md b/Data/HD/hd_monsters_troll.md
index 1ddb23df..cb32d92d 100644
--- a/Data/HD/hd_monsters_troll.md
+++ b/Data/HD/hd_monsters_troll.md
@@ -5,7 +5,7 @@
# Troll
- Source: (CEO p)(SRD p)
-- SRD: [Troll](srd_monsters_troll.md)
+- Alias: [Troll](srd_monsters_troll.md)
- Géant de taille G, Chaotique Mauvais
- **Terrain** Arctique / Subarctique, Bois / Forêt, Mangrove / Marécage, Montagnes
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_tyrannosaure.md b/Data/HD/hd_monsters_tyrannosaure.md
index 907dba74..d94c90f2 100644
--- a/Data/HD/hd_monsters_tyrannosaure.md
+++ b/Data/HD/hd_monsters_tyrannosaure.md
@@ -5,7 +5,7 @@
# Tyrannosaure
- Source: (CEO p)(SRD p)
-- SRD: [Tyrannosaurus Rex](srd_monsters_tyrannosaurus_rex.md)
+- Alias: [Tyrannosaurus Rex](srd_monsters_tyrannosaurus_rex.md)
- Bête de taille TG, non-alignée
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_vampire.md b/Data/HD/hd_monsters_vampire.md
index 88ef0ebc..41991b4b 100644
--- a/Data/HD/hd_monsters_vampire.md
+++ b/Data/HD/hd_monsters_vampire.md
@@ -5,7 +5,7 @@
# Vampire
- Source: (CEO p)(SRD p)
-- SRD: [Vampire](srd_monsters_vampire.md)
+- Alias: [Vampire](srd_monsters_vampire.md)
- Mort-vivant (métamorphe) de taille M, Loyal Mauvais
- **Terrain** Donjon maçonné
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/hd_monsters_vampirien.md b/Data/HD/hd_monsters_vampirien.md
index c2989dbd..5cbacad4 100644
--- a/Data/HD/hd_monsters_vampirien.md
+++ b/Data/HD/hd_monsters_vampirien.md
@@ -5,7 +5,7 @@
# Vampirien
- Source: (CEO p)(SRD p)
-- SRD: [Vampire Spawn](srd_monsters_vampire_spawn.md)
+- Alias: [Vampire Spawn](srd_monsters_vampire_spawn.md)
- Mort-vivant de taille M, Neutre Mauvais
- **Terrain** Donjon maçonné
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_vase_grise.md b/Data/HD/hd_monsters_vase_grise.md
index 30ec09a3..2685ebe6 100644
--- a/Data/HD/hd_monsters_vase_grise.md
+++ b/Data/HD/hd_monsters_vase_grise.md
@@ -5,7 +5,7 @@
# Vase grise
- Source: (CEO p)(SRD p)
-- SRD: [Gray Ooze](srd_monsters_gray_ooze.md)
+- Alias: [Gray Ooze](srd_monsters_gray_ooze.md)
- Vase de taille M, non-alignée
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 8
diff --git a/Data/HD/hd_monsters_vautour.md b/Data/HD/hd_monsters_vautour.md
index 814b3374..ce939ee7 100644
--- a/Data/HD/hd_monsters_vautour.md
+++ b/Data/HD/hd_monsters_vautour.md
@@ -5,7 +5,7 @@
# Vautour
- Source: (CEO p)(SRD p)
-- SRD: [Vulture](srd_monsters_vulture.md)
+- Alias: [Vulture](srd_monsters_vulture.md)
- Bête de taille M, non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_vautour_geant.md b/Data/HD/hd_monsters_vautour_geant.md
index 334d34db..cea4b8a8 100644
--- a/Data/HD/hd_monsters_vautour_geant.md
+++ b/Data/HD/hd_monsters_vautour_geant.md
@@ -5,7 +5,7 @@
# Vautour géant
- Source: (CEO p)(SRD p)
-- SRD: [Giant Vulture](srd_monsters_giant_vulture.md)
+- Alias: [Giant Vulture](srd_monsters_giant_vulture.md)
- Bête de taille G, Neutre Mauvais
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 10
diff --git a/Data/HD/hd_monsters_ver_pourpre.md b/Data/HD/hd_monsters_ver_pourpre.md
index 0c290302..a84b7095 100644
--- a/Data/HD/hd_monsters_ver_pourpre.md
+++ b/Data/HD/hd_monsters_ver_pourpre.md
@@ -5,7 +5,7 @@
# Ver pourpre
- Source: (CEO p)(SRD p)
-- SRD: [Purple Worm](srd_monsters_purple_worm.md)
+- Alias: [Purple Worm](srd_monsters_purple_worm.md)
- Créature monstrueuse de taille Gig, non-alignée
- **Terrain** Montagnes, Caverne naturelle
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/hd_monsters_veteran.md b/Data/HD/hd_monsters_veteran.md
index 8f836d9a..34789333 100644
--- a/Data/HD/hd_monsters_veteran.md
+++ b/Data/HD/hd_monsters_veteran.md
@@ -5,7 +5,7 @@
# Vétéran
- Source: (CEO p)(SRD p)
-- SRD: [Veteran](srd_monsters_veteran.md)
+- Alias: [Veteran](srd_monsters_veteran.md)
- Humanoïde (n'importe quelle race) de taille M, alignement quelconque
- **Terrain**
- **Classe d'armure** 17 (clibanion)
diff --git a/Data/HD/hd_monsters_vouivre.md b/Data/HD/hd_monsters_vouivre.md
index 895f8f49..cb9c7709 100644
--- a/Data/HD/hd_monsters_vouivre.md
+++ b/Data/HD/hd_monsters_vouivre.md
@@ -5,7 +5,7 @@
# Vouivre
- Source: (CEO p)(SRD p)
-- SRD: [Wyvern](srd_monsters_wyvern.md)
+- Alias: [Wyvern](srd_monsters_wyvern.md)
- Dragon de taille G, non-alignée
- **Terrain** Littoral, Montagnes
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_vrock.md b/Data/HD/hd_monsters_vrock.md
index cc80bddb..f45d0855 100644
--- a/Data/HD/hd_monsters_vrock.md
+++ b/Data/HD/hd_monsters_vrock.md
@@ -5,7 +5,7 @@
# Vrock
- Source: (CEO p)(SRD p)
-- SRD: [Vrock](srd_monsters_vrock.md)
+- Alias: [Vrock](srd_monsters_vrock.md)
- Fiélon (démon) de taille G, Chaotique Mauvais
- **Terrain**
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/hd_monsters_worg.md b/Data/HD/hd_monsters_worg.md
index cd66fe06..18f5bada 100644
--- a/Data/HD/hd_monsters_worg.md
+++ b/Data/HD/hd_monsters_worg.md
@@ -5,7 +5,7 @@
# Worg
- Source: (CEO p)(SRD p)
-- SRD: [Worg](srd_monsters_worg.md)
+- Alias: [Worg](srd_monsters_worg.md)
- Créature monstrueuse de taille G, Neutre Mauvais
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/hd_monsters_xorn.md b/Data/HD/hd_monsters_xorn.md
index 5501754b..56ca4bab 100644
--- a/Data/HD/hd_monsters_xorn.md
+++ b/Data/HD/hd_monsters_xorn.md
@@ -5,7 +5,7 @@
# Xorn
- Source: (CEO p)(SRD p)
-- SRD: [Xorn](srd_monsters_xorn.md)
+- Alias: [Xorn](srd_monsters_xorn.md)
- Élémentaire de taille M, Neutre
- **Terrain** Montagnes, Plans élémentaires
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/hd_monsters_zombi.md b/Data/HD/hd_monsters_zombi.md
index f96d9575..c176f652 100644
--- a/Data/HD/hd_monsters_zombi.md
+++ b/Data/HD/hd_monsters_zombi.md
@@ -5,7 +5,7 @@
# Zombi
- Source: (CEO p)(SRD p)
-- SRD: [Zombie](srd_monsters_zombie.md)
+- Alias: [Zombie](srd_monsters_zombie.md)
- Mort-vivant de taille M, Neutre Mauvais
- **Terrain**
- **Classe d'armure** 8
diff --git a/Data/HD/hd_monsters_zombi_ogre.md b/Data/HD/hd_monsters_zombi_ogre.md
index 76e37267..d07c19c7 100644
--- a/Data/HD/hd_monsters_zombi_ogre.md
+++ b/Data/HD/hd_monsters_zombi_ogre.md
@@ -5,7 +5,7 @@
# Zombi ogre
- Source: (CEO p)(SRD p)
-- SRD: [Ogre Zombie](srd_monsters_ogre_zombie.md)
+- Alias: [Ogre Zombie](srd_monsters_ogre_zombie.md)
- Mort-vivant de taille G, Neutre Mauvais
- **Terrain**
- **Classe d'armure** 8
diff --git a/Data/HD/hd_movement.md b/Data/HD/hd_movement.md
index c83f42d5..667b7387 100644
--- a/Data/HD/hd_movement.md
+++ b/Data/HD/hd_movement.md
@@ -5,7 +5,7 @@
# Déplacement
-- AltName: Movement (SRD p84)
+- Alias: Movement (SRD p84)
- Source: (MDR p270)
Ramper dans l’ombre de la nuit, le long d’un campement ennemi, marcher à pas de loup dans la salle du trône après un banquet où les convives sont endormies sur la grande table, escalader la tour d’un château construite en pierres de taille… Les déplacements constituent un élément essentiel de l’aventure dans Héros & Dragons.
diff --git a/Data/HD/hd_multiclassing.md b/Data/HD/hd_multiclassing.md
index 36d41651..cd316828 100644
--- a/Data/HD/hd_multiclassing.md
+++ b/Data/HD/hd_multiclassing.md
@@ -5,7 +5,7 @@
# Multiclassage
-- AltName: Multiclassing (SRD p56)
+- Alias: Multiclassing (SRD p56)
- Source: (MDR p242)
Le multiclassage vous permet de gagner des niveaux dans différentes classes. Vous pouvez ainsi mélanger les aptitudes de plusieurs classes afin de créer un type de personnage qui n'existe pas parmi les archétypes proposés.
diff --git a/Data/HD/hd_objects.md b/Data/HD/hd_objects.md
index e7e59247..8b2fd976 100644
--- a/Data/HD/hd_objects.md
+++ b/Data/HD/hd_objects.md
@@ -5,7 +5,7 @@
## Les objets
-- AltName: Objects
+- Alias: Objects
- Source: (CEO p380)(SRD p203)
Quand un personnage a besoin de scier une corde, de briser une fenêtre ou de détruire le cercueil d'un vampire, voici la seule règle à suivre : avec assez de temps et des outils adaptés, un personnage peut détruire n'importe quel objet destructible. Faites appel à votre bon sens pour savoir si le personnage réussit à endommager l'objet. Est-ce qu'un guerrier peut faire une brèche dans un mur de pierre avec son épée ? Non, l'épée se cassera probablement avant le mur.
diff --git a/Data/HD/hd_paladin.md b/Data/HD/hd_paladin.md
index 6511f065..c426bdd9 100644
--- a/Data/HD/hd_paladin.md
+++ b/Data/HD/hd_paladin.md
@@ -5,7 +5,7 @@
# Paladin
-- AltName: Paladin (SRD p30)
+- Alias: Paladin (SRD p30)
- Source: (MDR p183)
En tant que paladin, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_paladin_devotion.md b/Data/HD/hd_paladin_devotion.md
index c7902893..e208d6aa 100644
--- a/Data/HD/hd_paladin_devotion.md
+++ b/Data/HD/hd_paladin_devotion.md
@@ -5,7 +5,7 @@
# Serment de dévotion
-- AltName: Oath of Devotion (SRD p32)
+- Alias: Oath of Devotion (SRD p32)
- Source: (MDR p186)
Le serment de dévotion engage un paladin à suivre les idéaux de justice, de vertu et d'ordre les plus élevés.
diff --git a/Data/HD/hd_pantheons.md b/Data/HD/hd_pantheons.md
index d5cb7012..0a914c02 100644
--- a/Data/HD/hd_pantheons.md
+++ b/Data/HD/hd_pantheons.md
@@ -5,7 +5,7 @@
# Panthéons historiques et fantastiques
-- AltName: Pantheons
+- Alias: Pantheons
- Source: (MDR p413)(SRD p360)
Les panthéons celtique, égyptien, grec et nordique sont des interprétations fantastiques des religions historiques de l’aube de la civilisation occidentale. Ils présentent des divinités parfaitement adaptées au jeu, séparées de leur contexte historique dans le monde réel et réunies dans des panthéons servant les besoins du jeu.
diff --git a/Data/HD/hd_pantheons_le_pantheon_celtique.md b/Data/HD/hd_pantheons_le_pantheon_celtique.md
index 0561ba4a..851cf1a8 100644
--- a/Data/HD/hd_pantheons_le_pantheon_celtique.md
+++ b/Data/HD/hd_pantheons_le_pantheon_celtique.md
@@ -4,7 +4,7 @@
### Le panthéon celtique
-- AltName: The Celtic Pantheon
+- Alias: The Celtic Pantheon
- Source: (MDR p413)(SRD p360)
On dit que chaque âme recèle une fibre sauvage, qui vibre à l’appel d’une chouette la nuit, à l’écoute du vent dans la pinède, à la vue du rouge inattendu d’une branche de houx dans un chêne. C’est là que résident les dieux celtiques. Ils sont nés de la source et du ruisseau, tirent leur puissance du chêne et de la beauté des bois et des landes. Ces dieux sont apparus lorsque le premier forestier a osé mettre un nom sur le visage deviné dans l’écorce d’un arbre et sur la voix perçue dans le babil d’un ruisseau.
diff --git a/Data/HD/hd_pantheons_le_pantheon_egyptien.md b/Data/HD/hd_pantheons_le_pantheon_egyptien.md
index 3ea8976f..32ef436b 100644
--- a/Data/HD/hd_pantheons_le_pantheon_egyptien.md
+++ b/Data/HD/hd_pantheons_le_pantheon_egyptien.md
@@ -4,7 +4,7 @@
### Le panthéon égyptien
-- AltName: Pantheons
+- Alias: Pantheons
- Source: (MDR p413)(SRD p360)
Ces dieux forment une jeune dynastie au sein d’une antique famille divine, héritiers chargés de régner sur le cosmos et de veiller au maintien du principe divin de Ma’at, l’ordre fondamental de la vérité, la justice, la loi et l’ordre, qui définit la place logique et méritée des dieux, des pharaons mortels et des hommes et femmes ordinaires au sein de l’univers.
diff --git a/Data/HD/hd_pantheons_le_pantheon_grec.md b/Data/HD/hd_pantheons_le_pantheon_grec.md
index fe7491f8..22b91a22 100644
--- a/Data/HD/hd_pantheons_le_pantheon_grec.md
+++ b/Data/HD/hd_pantheons_le_pantheon_grec.md
@@ -4,7 +4,7 @@
### Le panthéon grec
-- AltName: Pantheons
+- Alias: Pantheons
- Source: (MDR p413)(SRD p360)
Les dieux de l’Olympe font connaître leur présence dans le doux clapotis des vagues sur le rivage et le fracas du tonnerre sur les pics enveloppés de nuées d’orage. Les bois grouillants de gibier et les collines arides couvertes d’oliviers portent les traces de leur passage. Leur présence résonne dans chaque aspect de la nature et ils se sont aussi taillé une place dans le coeur des humains.
diff --git a/Data/HD/hd_pantheons_le_pantheon_nordique.md b/Data/HD/hd_pantheons_le_pantheon_nordique.md
index 8317c3d2..d3881777 100644
--- a/Data/HD/hd_pantheons_le_pantheon_nordique.md
+++ b/Data/HD/hd_pantheons_le_pantheon_nordique.md
@@ -4,7 +4,7 @@
### Le panthéon nordique
-- AltName: Pantheons
+- Alias: Pantheons
- Source: (MDR p413)(SRD p360)
Là où le paysage plonge depuis les collines enneigées vers des fjords glacés, là où les drakkars sont tirés sur la plage, là où les glaciers avancent à chaque automne et reculent à chaque printemps… Là se trouve la terre des vikings, le foyer du panthéon nordique. Il y règne un climat brutal qui engendre un mode de vie brutal. Pour survivre, les guerriers de ces contrées ont dû s’adapter aux rudes conditions climatiques, mais ils ne se sont pas laissé pervertir par les besoins de leur environnement. Étant donné qu’ils sont contraints de recourir au pillage pour se nourrir et s’enrichir, il est même étonnant qu’ils aient si bien tourné. Les pouvoirs de leurs dieux reflètent leur besoin d’un dirigeant fort et d’actions décisives et ils voient leurs divinités dans chaque méandre d’une rivière, les entendent dans le fracas du tonnerre et le grondement des glaciers, et les sentent dans la fumée d’une maison de bois en flammes.
diff --git a/Data/HD/hd_pantheons_les_divinites_celtiques.md b/Data/HD/hd_pantheons_les_divinites_celtiques.md
index 6071bf70..9c01ed13 100644
--- a/Data/HD/hd_pantheons_les_divinites_celtiques.md
+++ b/Data/HD/hd_pantheons_les_divinites_celtiques.md
@@ -4,7 +4,7 @@
#### Les divinités celtiques
-- AltName: Celtic Deities
+- Alias: Celtic Deities
- Source: (MDR p414)(SRD p360)
|Divinité|Alignement|Domaines suggérés|Symbole|
diff --git a/Data/HD/hd_pantheons_les_divinites_egyptiennes.md b/Data/HD/hd_pantheons_les_divinites_egyptiennes.md
index a9a2eb96..c64eec96 100644
--- a/Data/HD/hd_pantheons_les_divinites_egyptiennes.md
+++ b/Data/HD/hd_pantheons_les_divinites_egyptiennes.md
@@ -4,7 +4,7 @@
#### Les divinités égyptiennes
-- AltName: Egyptian Deities
+- Alias: Egyptian Deities
- Source: (MDR p415)(SRD p361)
|Divinité|Alignement|Domaines suggérés|Symbole|
diff --git a/Data/HD/hd_pantheons_les_divinites_grecques.md b/Data/HD/hd_pantheons_les_divinites_grecques.md
index e40a8cdf..158783a3 100644
--- a/Data/HD/hd_pantheons_les_divinites_grecques.md
+++ b/Data/HD/hd_pantheons_les_divinites_grecques.md
@@ -4,7 +4,7 @@
#### Les divinités grecques
-- AltName: Greek Deities
+- Alias: Greek Deities
- Source: (MDR p414)(SRD p361)
|Divinité|Alignement|Domaines suggérés|Symbole|
diff --git a/Data/HD/hd_pantheons_les_divinites_nordiques.md b/Data/HD/hd_pantheons_les_divinites_nordiques.md
index 57189709..254f26a0 100644
--- a/Data/HD/hd_pantheons_les_divinites_nordiques.md
+++ b/Data/HD/hd_pantheons_les_divinites_nordiques.md
@@ -4,7 +4,7 @@
#### Les divinités nordiques
-- AltName: Norse Deities
+- Alias: Norse Deities
- Source: (MDR p415)(SRD p361)
|Divinité|Alignement|Domaines suggérés|Symbole|
diff --git a/Data/HD/hd_planes.md b/Data/HD/hd_planes.md
index b764bec9..56c0f616 100644
--- a/Data/HD/hd_planes.md
+++ b/Data/HD/hd_planes.md
@@ -5,7 +5,7 @@
## Jouer dans un multivers
-- AltName: Planes
+- Alias: Planes
- Source: (CDC p120)(SRD p363)
Dans l’univers de Héros & Dragons, considérez que le cosmos recèle une multitude de mondes, ainsi qu’une myriade de dimensions alternatives : les plans d’existence. Ils englobent tous les mondes où un MJ peut diriger une aventure, le tout compris dans le royaume relativement ordinaire que l’on nomme le plan matériel. Au-delà de ce plan, on trouve des domaines faits de matière et d’énergie brutes, des royaumes de pensées et d’esprits purs, demeures des anges et des démons, domaine des dieux. À vous de choisir, d’intégrer à votre guise des ouvertures sur ces dimensions qui existent dans le jeu de rôle med-fan depuis la création du loisir.
diff --git a/Data/HD/hd_poisons.md b/Data/HD/hd_poisons.md
index f4ec981c..32ae0a25 100644
--- a/Data/HD/hd_poisons.md
+++ b/Data/HD/hd_poisons.md
@@ -5,7 +5,7 @@
## Les poisons
-- AltName: Poisons
+- Alias: Poisons
- Source (CEO p382)(SRD p204)
Étant donné leur nature mortelle et insidieuse, les poisons sont des produits illégaux dans la plupart des sociétés, mais ils font partie des outils favoris des assassins, des drows et autres créatures maléfiques. Les poisons se divisent en quatre catégories.
diff --git a/Data/HD/hd_races.md b/Data/HD/hd_races.md
index 3fb045c3..a6c20368 100644
--- a/Data/HD/hd_races.md
+++ b/Data/HD/hd_races.md
@@ -5,7 +5,7 @@
# Races
-- SRD: Races
+- Alias: Races
- Source: (MDR p36)(SRD p3)
diff --git a/Data/HD/hd_races_age.md b/Data/HD/hd_races_age.md
index ca66cd17..587223aa 100644
--- a/Data/HD/hd_races_age.md
+++ b/Data/HD/hd_races_age.md
@@ -4,7 +4,7 @@
#### Âge
-- SRD: Age
+- Alias: Age
- Source: (MDR p36)(SRD p3)
Cette entrée indique l’âge à partir duquel un individu est considéré comme un adulte ainsi que la longévité moyenne des représentants de cette race. Cette information peut vous aider à choisir l’âge de votre personnage au début du jeu. Vous êtes libre de lui donner l’âge de votre choix. Ce dernier peut expliquer la répartition de vos valeurs de caractéristiques. Par exemple, si vous jouez un personnage jeune ou très vieux, votre âge pourra expliquer des valeurs de Force et Constitution particulièrement basses, et un âge avancé pourra justifier de bonnes valeurs d’Intelligence et de Sagesse.
diff --git a/Data/HD/hd_races_alignement.md b/Data/HD/hd_races_alignement.md
index 19382928..cacabbf8 100644
--- a/Data/HD/hd_races_alignement.md
+++ b/Data/HD/hd_races_alignement.md
@@ -4,7 +4,7 @@
#### Alignement
-- SRD: Alignment
+- Alias: Alignment
- Source: (MDR p36)(SRD p3)
La plupart des races tendent naturellement vers un alignement donné, mentionné dans cette entrée. L’alignement est indiqué à titre informatif et les joueurs ne sont pas obligés de l’adopter, mais si vous vous demandez pourquoi votre nain est d’alignement Chaotique, en rébellion par rapport à une société naine plutôt Loyale, par exemple, cela peut vous aider à mieux déterminer son comportement.
diff --git a/Data/HD/hd_races_augmentation_de_caracteristiques.md b/Data/HD/hd_races_augmentation_de_caracteristiques.md
index 10527a04..82edb64b 100644
--- a/Data/HD/hd_races_augmentation_de_caracteristiques.md
+++ b/Data/HD/hd_races_augmentation_de_caracteristiques.md
@@ -4,7 +4,7 @@
#### Augmentation de caractéristiques
-- SRD: Ability Score Increase
+- Alias: Ability Score Increase
- Source: (MDR p36)(SRD p3)
Chaque race accorde un bonus à une ou plusieurs caractéristiques du personnage.
diff --git a/Data/HD/hd_races_langues.md b/Data/HD/hd_races_langues.md
index b5da79d3..10b65666 100644
--- a/Data/HD/hd_races_langues.md
+++ b/Data/HD/hd_races_langues.md
@@ -4,7 +4,7 @@
#### Langues
-- SRD: Languages
+- Alias: Languages
- Source: (MDR p37)(SRD p3)
Le fait d’appartenir à une race donnée vous permet de parler, lire et écrire certaines langues.
diff --git a/Data/HD/hd_races_peuples.md b/Data/HD/hd_races_peuples.md
index ef466cfc..beac99ea 100644
--- a/Data/HD/hd_races_peuples.md
+++ b/Data/HD/hd_races_peuples.md
@@ -4,7 +4,7 @@
#### Peuples
-- SRD: Subraces
+- Alias: Subraces
- Source: (MDR p37)(SRD p3)
Certaines races se divisent en plusieurs peuples avec des différences culturelles et parfois physiques. Les membres de chaque peuple possèdent les traits de la race dont ils sont issus, ainsi que ceux du peuple auquel ils appartiennent. Les relations entre les diverses populations d’une même race peuvent varier énormément d’une race ou d’un monde à l’autre.
diff --git a/Data/HD/hd_races_taille.md b/Data/HD/hd_races_taille.md
index cda0f44b..ab9c8169 100644
--- a/Data/HD/hd_races_taille.md
+++ b/Data/HD/hd_races_taille.md
@@ -4,7 +4,7 @@
#### Taille
-- SRD: Size
+- Alias: Size
- Source: (MDR p37)(SRD p3)
Les personnages de la plupart des races sont de taille moyenne, une catégorie qui regroupe les créatures qui se situent entre 1,20 mètre et 2,40 mètres. Les membres de certaines races sont de taille petite (60 centimètres à 1,20 mètre), ce qui signifie que certaines règles du jeu ne les affecteront pas de la même manière que les autres. La règle la plus importante pour les petites créatures est qu’elles ont des difficultés à manier les armes lourdes, comme cela est expliqué au chapitre 5, Équipement, page 227.
diff --git a/Data/HD/hd_races_traits_raciaux.md b/Data/HD/hd_races_traits_raciaux.md
index b29f425e..c3d36163 100644
--- a/Data/HD/hd_races_traits_raciaux.md
+++ b/Data/HD/hd_races_traits_raciaux.md
@@ -4,7 +4,7 @@
### Traits raciaux
-- SRD: Racial Traits
+- Alias: Racial Traits
- Source: (MDR p36)(SRD p3)
Chaque race possède des traits raciaux communs à tous ses membres. Vous pourrez trouver la terminologie suivante parmi les traits de la plupart des races.
diff --git a/Data/HD/hd_races_vitesse.md b/Data/HD/hd_races_vitesse.md
index 7b8d3523..de3ae2f3 100644
--- a/Data/HD/hd_races_vitesse.md
+++ b/Data/HD/hd_races_vitesse.md
@@ -4,7 +4,7 @@
#### Vitesse
-- SRD: Speed
+- Alias: Speed
- Source: (MDR p37)(SRD p3)
Votre vitesse correspond à la distance que vous pouvez parcourir quand vous voyagez (voir le chapitre 8, Partir à l’aventure, pages 269-281) ou quand vous combattez (voir le chapitre 9, Combattre, pages 282-295).
diff --git a/Data/HD/hd_ranger.md b/Data/HD/hd_ranger.md
index 7ab0aa58..bd6097d6 100644
--- a/Data/HD/hd_ranger.md
+++ b/Data/HD/hd_ranger.md
@@ -5,7 +5,7 @@
# Rôdeur
-- AltName: Ranger (SRD p35)
+- Alias: Ranger (SRD p35)
- Source: (MDR p194)
En tant que rôdeur, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_ranger_hunter.md b/Data/HD/hd_ranger_hunter.md
index a07df44b..a460773b 100644
--- a/Data/HD/hd_ranger_hunter.md
+++ b/Data/HD/hd_ranger_hunter.md
@@ -5,7 +5,7 @@
# Chasseur
-- AltName: Hunter (SRD p37)
+- Alias: Hunter (SRD p37)
- Source: (MDR p198)
Adopter l'archétype du chasseur signifie accepter votre place comme rempart entre la civilisation et les terreurs qui hantent la nature. En suivant la voie du chasseur, vous apprenez des techniques spécifiques vous permettant d'affronter diverses menaces, que ce soient des ogres déchaînés, des hordes d'orcs, d'immenses géants ou de terrifiants dragons.
diff --git a/Data/HD/hd_resting.md b/Data/HD/hd_resting.md
index b2c1fe41..2868f2cd 100644
--- a/Data/HD/hd_resting.md
+++ b/Data/HD/hd_resting.md
@@ -5,7 +5,7 @@
# Repos
-- AltName: Resting (SRD p87)
+- Alias: Resting (SRD p87)
- Source: (MDR p303)
Même si les aventuriers sont des héros, il est impossible de passer ses journées entières à explorer des cavernes, à interagir avec d’autres individus ou à se battre sans jamais se reposer. Vos personnages doivent dormir, manger, soigner leurs blessures, reposer leur esprit afin de lancer à nouveau des sorts, et se préparer à repartir à l’aventure.
diff --git a/Data/HD/hd_rogue.md b/Data/HD/hd_rogue.md
index 80397256..41a82cf6 100644
--- a/Data/HD/hd_rogue.md
+++ b/Data/HD/hd_rogue.md
@@ -5,7 +5,7 @@
# Roublard
-- AltName: Rogue (SRD p39)
+- Alias: Rogue (SRD p39)
- Source: (MDR p202)
En tant que roublard, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_rogue_thief.md b/Data/HD/hd_rogue_thief.md
index d29209b1..f30cb858 100644
--- a/Data/HD/hd_rogue_thief.md
+++ b/Data/HD/hd_rogue_thief.md
@@ -5,7 +5,7 @@
# Voleur
-- AltName: Thief (SRD p40)
+- Alias: Thief (SRD p40)
- Source: (MDR p204)
Vous affinez vos compétences dans l'art du larcin. Les cambrioleurs, bandits, voleurs à la tire et autres criminels choisissent généralement cet archétype. Mais il est également choisi par les roublards qui se voient comme des chercheurs de trésors professionnels, des explorateurs ou des enquêteurs. Vous améliorez non seulement votre agilité et votre discrétion, mais vous apprenez aussi des compétences qui vous seront utiles pour explorer des ruines anciennes, décrypter des langues inconnues et utiliser des objets magiques que vous ne pourriez normalement pas manier.
diff --git a/Data/HD/hd_sentient_magicitems.md b/Data/HD/hd_sentient_magicitems.md
index 205e9676..0517de3c 100644
--- a/Data/HD/hd_sentient_magicitems.md
+++ b/Data/HD/hd_sentient_magicitems.md
@@ -5,7 +5,7 @@
# Objets magiques intelligents
-- AltName: Sentient Magic Items (SRD p251)
+- Alias: Sentient Magic Items (SRD p251)
- Source: (CDC p189)
Certains objets magiques sont dotés d'une conscience et d'une personnalité. Un tel objet peut faire partie des possessions d'une créature, mais il peut aussi être hanté par l'esprit de l'un de ses précédents propriétaires ou complètement autonome grâce à la magie investie pour le créer. Quoi qu'il en soit, l'objet se comporte comme un personnage, avec ses particularités comportementales, ses idéaux, ses relations et parfois ses défauts. Un objet intelligent peut être l'allié fidèle de son utilisateur ou une perpétuelle épine dans son pied.
diff --git a/Data/HD/hd_sorcerer.md b/Data/HD/hd_sorcerer.md
index 86820553..22ad1482 100644
--- a/Data/HD/hd_sorcerer.md
+++ b/Data/HD/hd_sorcerer.md
@@ -5,7 +5,7 @@
# Ensorceleur
-- AltName: Sorcerer (SRD p41)
+- Alias: Sorcerer (SRD p41)
- Source: (MDR p152)
En tant qu'ensorceleur, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_sorcerer_draconic.md b/Data/HD/hd_sorcerer_draconic.md
index 34982483..9619a795 100644
--- a/Data/HD/hd_sorcerer_draconic.md
+++ b/Data/HD/hd_sorcerer_draconic.md
@@ -5,7 +5,7 @@
# Lignée draconique
-- AltName: Draconic Bloodline (SRD p44)
+- Alias: Draconic Bloodline (SRD p44)
- Source: (MDR p155)
Votre magie innée est une résurgence de la magie draconique mêlée à votre sang ou celui de vos ancêtres.
diff --git a/Data/HD/hd_spellcasting.md b/Data/HD/hd_spellcasting.md
index 8b88d7d2..3d57d4e1 100644
--- a/Data/HD/hd_spellcasting.md
+++ b/Data/HD/hd_spellcasting.md
@@ -5,7 +5,7 @@
# Lancer des sorts
-- AltName: Spellcasting (SRD p100)
+- Alias: Spellcasting (SRD p100)
- Source: (MDR p306)
La magie imprègne les mondes de Héros & Dragons et se présente souvent sous forme de sorts.
diff --git a/Data/HD/hd_spellcasting_action_bonus.md b/Data/HD/hd_spellcasting_action_bonus.md
index bade81d1..6cdbdbcc 100644
--- a/Data/HD/hd_spellcasting_action_bonus.md
+++ b/Data/HD/hd_spellcasting_action_bonus.md
@@ -4,7 +4,7 @@
#### Action bonus
-- AltName: Bonus Action (SRD p101)
+- Alias: Bonus Action (SRD p101)
- Source: (MDR p307)
Un sort qui se lance par une action bonus est particulièrement rapide. Pour le lancer, il faut dépenser une action bonus à son tour, à condition de ne pas avoir déjà effectué une telle action au cours de ce tour. Impossible de lancer un autre sort lors de ce tour, à moins qu'il ne s'agisse d'un tour de magie avec un temps d'incantation d'une action.
diff --git a/Data/HD/hd_spellcasting_cibles.md b/Data/HD/hd_spellcasting_cibles.md
index 540bd5fd..a464847a 100644
--- a/Data/HD/hd_spellcasting_cibles.md
+++ b/Data/HD/hd_spellcasting_cibles.md
@@ -4,7 +4,7 @@
### Cibles
-- AltName: Targets (SRD p102)
+- Alias: Targets (SRD p102)
- Source: (MDR p308)
Un sort exige généralement que son lanceur choisisse une ou plusieurs cibles qui seront affectées par sa magie. La description du sort précise si ce dernier vise les créatures, les objets ou le point d'origine de la zone d'effet (voir plus loin).
diff --git a/Data/HD/hd_spellcasting_combiner_les_effets_magiques.md b/Data/HD/hd_spellcasting_combiner_les_effets_magiques.md
index 44e4058c..2f0f0d0b 100644
--- a/Data/HD/hd_spellcasting_combiner_les_effets_magiques.md
+++ b/Data/HD/hd_spellcasting_combiner_les_effets_magiques.md
@@ -4,7 +4,7 @@
### Combiner les effets magiques
-- AltName: Combining Magical Effects (SRD p104)
+- Alias: Combining Magical Effects (SRD p104)
- Source: (MDR p310)
Les effets de différents sorts s'additionnent quand leurs durées se superposent. En revanche, les effets d'un même sort lancé à plusieurs reprises ne se cumulent pas. Dans ce cas, l'effet le plus puissant (par exemple, le bonus le plus élevé) s'applique tant que sa durée se superpose à celle des autres.
diff --git a/Data/HD/hd_spellcasting_composantes.md b/Data/HD/hd_spellcasting_composantes.md
index 1b62f77a..5d61d69c 100644
--- a/Data/HD/hd_spellcasting_composantes.md
+++ b/Data/HD/hd_spellcasting_composantes.md
@@ -4,7 +4,7 @@
### Composantes
-- AltName: Components (SRD p101)
+- Alias: Components (SRD p101)
- Source: (MDR p308)
Les composantes du sort représentent les éléments physiques indispensables à l'incantation. La description du sort indique s'il nécessite des composantes verbales (V), somatiques (S) ou matérielles (M). Si le lanceur de sorts est incapable de fournir une ou plusieurs de ces composantes, il ne peut pas lancer le sort.
diff --git a/Data/HD/hd_spellcasting_concentration.md b/Data/HD/hd_spellcasting_concentration.md
index 12b68244..e13f7b5d 100644
--- a/Data/HD/hd_spellcasting_concentration.md
+++ b/Data/HD/hd_spellcasting_concentration.md
@@ -4,7 +4,7 @@
#### Concentration
-- AltName: Concentration (SRD p102)
+- Alias: Concentration (SRD p102)
- Source: (MDR p308)
Le lanceur de sorts doit rester concentré pour maintenir la magie de certains sorts qui se terminent dès qu'il perd sa concentration.
diff --git a/Data/HD/hd_spellcasting_cone.md b/Data/HD/hd_spellcasting_cone.md
index 38e70927..aee3bd06 100644
--- a/Data/HD/hd_spellcasting_cone.md
+++ b/Data/HD/hd_spellcasting_cone.md
@@ -4,7 +4,7 @@
#### Cône
-- AltName: Cone (SRD p103)
+- Alias: Cone (SRD p103)
- Source: (MDR p309)
Un cône s'étend dans la direction de votre choix, à partir de son point d'origine. Sa largeur à un point donné de sa longueur est égale à la distance qui le sépare de son point d'origine. La longueur maximale du cône est notée dans sa zone d'effet.
diff --git a/Data/HD/hd_spellcasting_cube.md b/Data/HD/hd_spellcasting_cube.md
index 99c601e2..f24cf8a8 100644
--- a/Data/HD/hd_spellcasting_cube.md
+++ b/Data/HD/hd_spellcasting_cube.md
@@ -4,7 +4,7 @@
#### Cube
-- AltName: Cube (SRD p103)
+- Alias: Cube (SRD p103)
- Source: (MDR p309)
Le lanceur de sorts choisit le point d'origine du cube, qui se trouve n'importe où sur une face de l'effet cubique. La taille du cube représente la longueur de chaque arrête.
diff --git a/Data/HD/hd_spellcasting_cylindre.md b/Data/HD/hd_spellcasting_cylindre.md
index c2a88304..437b6e71 100644
--- a/Data/HD/hd_spellcasting_cylindre.md
+++ b/Data/HD/hd_spellcasting_cylindre.md
@@ -4,7 +4,7 @@
#### Cylindre
-- AltName: Cylinder (SRD p103)
+- Alias: Cylinder (SRD p103)
- Source: (MDR p309)
Le point d'origine d'un cylindre est le centre d'un cercle du rayon du cylindre, comme indiqué dans la description du sort. Ce cercle doit se trouver au sol ou au sommet du cylindre. L'énergie du cylindre se répand en lignes droites depuis le point d'origine jusqu'au périmètre du cercle, formant la base du cylindre. L'effet se propage ensuite vers le haut depuis la base ou vers le bas depuis le sommet, sur une distance égale à la hauteur du cylindre.
diff --git a/Data/HD/hd_spellcasting_duree.md b/Data/HD/hd_spellcasting_duree.md
index 22cc2c87..faff62a7 100644
--- a/Data/HD/hd_spellcasting_duree.md
+++ b/Data/HD/hd_spellcasting_duree.md
@@ -4,7 +4,7 @@
### Durée
-- AltName: Duration (SRD p102)
+- Alias: Duration (SRD p102)
- Source: (MDR p308)
La durée du sort correspond à la période pendant laquelle le sort fait effet. Elle s'exprime en rounds, minutes, heures ou même en années. Certains sorts précisent que leurs effets persistent jusqu'à ce que quelqu'un les dissipe ou les détruise.
diff --git a/Data/HD/hd_spellcasting_emplacements_de_sorts.md b/Data/HD/hd_spellcasting_emplacements_de_sorts.md
index 5204e7d7..7f38b542 100644
--- a/Data/HD/hd_spellcasting_emplacements_de_sorts.md
+++ b/Data/HD/hd_spellcasting_emplacements_de_sorts.md
@@ -4,7 +4,7 @@
### Emplacements de sorts
-- AltName: Spell Slots (SRD p100)
+- Alias: Spell Slots (SRD p100)
- Source: (MDR p306)
Quel que soit le nombre de sorts que le lanceur de sorts connaît ou qu'il a préparé, il ne peut en lancer qu'un nombre limité avant d'être contraint de se reposer. La manipulation du tissu magique et la canalisation de son énergie, même dans un sort simple, est un processus fatiguant aussi bien sur le plan mental que physique, et plus le niveau du sort est élevé, plus il est épuisant à lancer. C'est pourquoi la description de chaque classe de lanceur de sorts – à l'exception du sorcier – comprend une table indiquant le nombre de sorts de chaque niveau que le personnage est capable de lancer. Par exemple, Umare la magicienne de niveau 3 dispose de quatre emplacements de sorts de niveau 1 et de deux emplacements de sort de niveau 2.
diff --git a/Data/HD/hd_spellcasting_instantanee.md b/Data/HD/hd_spellcasting_instantanee.md
index 1516bc96..edeead39 100644
--- a/Data/HD/hd_spellcasting_instantanee.md
+++ b/Data/HD/hd_spellcasting_instantanee.md
@@ -4,7 +4,7 @@
#### Instantanée
-- AltName: Instantaneous (SRD p102)
+- Alias: Instantaneous (SRD p102)
- Source: (MDR p308)
De nombreux sorts sont instantanés, ils blessent, soignent, créent ou modifient une créature ou un objet sans qu'il soit possible de les dissiper car leur magie existe seulement l'espace d'un bref instant.
diff --git a/Data/HD/hd_spellcasting_jets_dattaque.md b/Data/HD/hd_spellcasting_jets_dattaque.md
index daeb8d6c..697922ac 100644
--- a/Data/HD/hd_spellcasting_jets_dattaque.md
+++ b/Data/HD/hd_spellcasting_jets_dattaque.md
@@ -4,7 +4,7 @@
### Jets d'attaque
-- AltName: Attack Rolls (SRD p103)
+- Alias: Attack Rolls (SRD p103)
- Source: (MDR p310)
Dans certains cas, le lanceur de sorts doit faire un jet d'attaque pour savoir si l'effet du sort touche la cible prévue. Lors d'une attaque de sort, son bonus d'attaque est égal à son modificateur de caractéristique d'incantation + son bonus de maîtrise.
diff --git a/Data/HD/hd_spellcasting_jets_de_sauvegarde.md b/Data/HD/hd_spellcasting_jets_de_sauvegarde.md
index f24576a0..4cde6848 100644
--- a/Data/HD/hd_spellcasting_jets_de_sauvegarde.md
+++ b/Data/HD/hd_spellcasting_jets_de_sauvegarde.md
@@ -4,7 +4,7 @@
### Jets de sauvegarde
-- AltName: Saving Throws (SRD p103)
+- Alias: Saving Throws (SRD p103)
- Source: (MDR p309)
De nombreux sorts précisent que la cible a droit à un jet de sauvegarde pour éviter un ou plusieurs de ses effets. Le sort indique quelle caractéristique utiliser pour le jet et explique ce qui se passe en cas d'échec et de réussite.
diff --git a/Data/HD/hd_spellcasting_lancer_un_sort.md b/Data/HD/hd_spellcasting_lancer_un_sort.md
index c0086e08..39820149 100644
--- a/Data/HD/hd_spellcasting_lancer_un_sort.md
+++ b/Data/HD/hd_spellcasting_lancer_un_sort.md
@@ -4,7 +4,7 @@
## Lancer un sort
-- AltName: Casting a Spell (SRD p101)
+- Alias: Casting a Spell (SRD p101)
- Source: (MDR p307)
Quand un personnage lance un sort, il suit toujours les mêmes règles de base, quelle que soit sa classe et quels que soient les effets du sort.
diff --git a/Data/HD/hd_spellcasting_lancer_un_sort_via_un_emplacement_de_niveau_superieur.md b/Data/HD/hd_spellcasting_lancer_un_sort_via_un_emplacement_de_niveau_superieur.md
index e65e092d..483509fe 100644
--- a/Data/HD/hd_spellcasting_lancer_un_sort_via_un_emplacement_de_niveau_superieur.md
+++ b/Data/HD/hd_spellcasting_lancer_un_sort_via_un_emplacement_de_niveau_superieur.md
@@ -4,7 +4,7 @@
#### Lancer un sort via un emplacement de niveau supérieur
-- AltName: Casting a Spell at a Higher Level (SRD p100)
+- Alias: Casting a Spell at a Higher Level (SRD p100)
- Source: (MDR p306)
Quand un lanceur de sorts utilise un emplacement d'un niveau supérieur à celui du sort, ce dernier adopte le niveau de l'emplacement lors de son incantation. Par exemple, si Umare lance projectile magique en dépensant un emplacement de niveau 2, ce projectile ma- gique devient un sort de niveau 2. En pratique, le sort se « dilate » pour occuper tout l'emplacement disponible.
diff --git a/Data/HD/hd_spellcasting_les_ecoles_de_magie.md b/Data/HD/hd_spellcasting_les_ecoles_de_magie.md
index fbf26725..9069945b 100644
--- a/Data/HD/hd_spellcasting_les_ecoles_de_magie.md
+++ b/Data/HD/hd_spellcasting_les_ecoles_de_magie.md
@@ -4,7 +4,7 @@
## Les écoles de magie
-- AltName: The Schools of Magic (SRD p103)
+- Alias: The Schools of Magic (SRD p103)
- Source: (MDR p310)
Les académies de magie regroupent les sorts en huit catégories appelées des écoles de magie. Les érudits, en particulier les magiciens, classent tous les sorts dans ces catégories, persuadés que la magie fonctionne toujours de la même manière, et ce qu'elle découle d'études rigoureuses ou qu'elle émane d'une divinité.
diff --git a/Data/HD/hd_spellcasting_les_incantations_en_armure.md b/Data/HD/hd_spellcasting_les_incantations_en_armure.md
index 197d28bc..3d2fa4fe 100644
--- a/Data/HD/hd_spellcasting_les_incantations_en_armure.md
+++ b/Data/HD/hd_spellcasting_les_incantations_en_armure.md
@@ -4,7 +4,7 @@
### Les incantations en armure
-- AltName: Casting in Armor (SRD p100)
+- Alias: Casting in Armor (SRD p100)
- Source: (MDR p307)
Pour incanter, il faut se concentrer intensément et exécuter des gestes précis, c'est pourquoi le personnage doit impérativement maîtriser le port de l'armure dont il est vêtu, sans quoi cette dernière le distrait et le gêne trop dans ses mouvements pour lui permettre de lancer un sort.
diff --git a/Data/HD/hd_spellcasting_les_rituels.md b/Data/HD/hd_spellcasting_les_rituels.md
index 41f2c588..be79aedf 100644
--- a/Data/HD/hd_spellcasting_les_rituels.md
+++ b/Data/HD/hd_spellcasting_les_rituels.md
@@ -4,7 +4,7 @@
### Les rituels
-- AltName: Rituals (SRD p101)
+- Alias: Rituals (SRD p101)
- Source: (MDR p307)
Certains sorts portent une mention spéciale : rituel. On peut les lancer en suivant les règles d'incantation ordinaires ou sous forme de rituel. Cette version du sort demande 10 minutes de plus et n'utilise pas d'emplacement de sort. Cela signifie qu'elle ne peut être lancée à plus haut niveau..
diff --git a/Data/HD/hd_spellcasting_les_sorts_connus_et_les_sorts_prepares.md b/Data/HD/hd_spellcasting_les_sorts_connus_et_les_sorts_prepares.md
index def13363..c8e7a923 100644
--- a/Data/HD/hd_spellcasting_les_sorts_connus_et_les_sorts_prepares.md
+++ b/Data/HD/hd_spellcasting_les_sorts_connus_et_les_sorts_prepares.md
@@ -4,7 +4,7 @@
### Les sorts connus et les sorts préparés
-- AltName: Known and Prepared Spells (SRD p100)
+- Alias: Known and Prepared Spells (SRD p100)
- Source: (MDR p306)
Avant de pouvoir incanter, le lanceur de sorts doit avoir fermement ancré le sort dans son esprit ou l'utiliser via un objet magique qui l'autorise. Les membres de quelques classes, comme les bardes et les ensorceleurs, connaissent une liste de sorts limitée mais les gardent toujours en tête. Il en va de même pour les monstres capables de recourir à la magie. Les autres lanceurs de sorts, comme les clerc et les magiciens, sont obligés de préparer leurs sorts. Ce processus se déroule différemment en fonction de leur classe, comme expliqué dans la description de chacune.
diff --git a/Data/HD/hd_spellcasting_les_tours_de_magie.md b/Data/HD/hd_spellcasting_les_tours_de_magie.md
index 2c8d9b77..f0b1e84f 100644
--- a/Data/HD/hd_spellcasting_les_tours_de_magie.md
+++ b/Data/HD/hd_spellcasting_les_tours_de_magie.md
@@ -4,7 +4,7 @@
### Les tours de magie
-- AltName: Cantrips (SRD p101)
+- Alias: Cantrips (SRD p101)
- Source: (MDR p307)
Un tour de magie est un sort que l'on peut lancer à volonté, sans le préparer à l'avance ni dépenser d'emplacement de sort. Des exercices répétés ont fini par fixer le sort dans l'esprit du lanceur de sorts et l'ont imprégné de la magie nécessaire pour générer ses effets, encore et encore. Un tour de magie est un sort de niveau 0.
diff --git a/Data/HD/hd_spellcasting_ligne.md b/Data/HD/hd_spellcasting_ligne.md
index 0aab83a8..17ecfc34 100644
--- a/Data/HD/hd_spellcasting_ligne.md
+++ b/Data/HD/hd_spellcasting_ligne.md
@@ -4,7 +4,7 @@
#### Ligne
-- AltName: Line (SRD p103)
+- Alias: Line (SRD p103)
- Source: (MDR p309)
Une ligne s'étend depuis son point d'origine en ligne droite sur toute sa longueur et couvre une zone définie par sa largeur.
diff --git a/Data/HD/hd_spellcasting_long_temps_dincantation.md b/Data/HD/hd_spellcasting_long_temps_dincantation.md
index 54f5f243..5e58945a 100644
--- a/Data/HD/hd_spellcasting_long_temps_dincantation.md
+++ b/Data/HD/hd_spellcasting_long_temps_dincantation.md
@@ -4,7 +4,7 @@
#### Long temps d'incantation
-- AltName: Longer Casting Times (SRD p101)
+- Alias: Longer Casting Times (SRD p101)
- Source: (MDR p307)
Certains sorts (dont les rituels) exigent une période d'incantation supérieure, allant de quelques minutes à quelques heures. Quand un sort avec un temps d'incantation supérieur à une seule action ou une réaction est lancé, il impose au lanceur de consacrer à chaque tour son action à l'incantation et, pendant tout ce temps, à maintenir sa concentration (voir Concentration, plus bas). Si elle vole en éclats, le sort échoue mais il ne perd pas l'emplacement de sort concerné. S'il veut recommencer l'incantation, il doit la reprendre à zéro.
diff --git a/Data/HD/hd_spellcasting_materielles_m.md b/Data/HD/hd_spellcasting_materielles_m.md
index f55abeca..260ea6b9 100644
--- a/Data/HD/hd_spellcasting_materielles_m.md
+++ b/Data/HD/hd_spellcasting_materielles_m.md
@@ -4,7 +4,7 @@
#### Matérielles (M)
-- AltName: Material (M) (SRD p102)
+- Alias: Material (M) (SRD p102)
- Source: (MDR p308)
L'incantation de certains sorts requiert des objets particuliers, indiqués entre parenthèses dans la ligne réservée aux composantes. Le personnage peut utiliser une sacoche à composantes ou un focaliseur d'incantation (voir le chapitre 5, Équipement, page 123) au lieu de la composante indiquée. En revanche, si la composante requise s'accompagne d'une valeur monétaire, le personnage doit obligatoirement utiliser la composante indiquée pour lancer le sort.
diff --git a/Data/HD/hd_spellcasting_niveau_de_sort.md b/Data/HD/hd_spellcasting_niveau_de_sort.md
index bb147c3c..13894622 100644
--- a/Data/HD/hd_spellcasting_niveau_de_sort.md
+++ b/Data/HD/hd_spellcasting_niveau_de_sort.md
@@ -4,7 +4,7 @@
### Niveau de sort
-- AltName: Spell Level (SRD p100)
+- Alias: Spell Level (SRD p100)
- Source: (MDR p306)
Tout sort s'accompagne d'un niveau, allant de 0 à 9. Ce niveau est une indication générale de la puissance du sort : l'humble (mais toujours efficace) projectile magique est de niveau 1 tandis que le souhait, capable de chambouler le monde, est de niveau 9. Les tours de magie (des sorts simples mais utiles qu'un personnage peut lancer à volonté) sont de niveau 0. Plus le niveau d'un sort est élevé, plus celui qui le lance doit avoir atteint un niveau élevé pour le jeter.
diff --git a/Data/HD/hd_spellcasting_portee.md b/Data/HD/hd_spellcasting_portee.md
index 5357ff96..96b2946b 100644
--- a/Data/HD/hd_spellcasting_portee.md
+++ b/Data/HD/hd_spellcasting_portee.md
@@ -4,7 +4,7 @@
### Portée
-- AltName: Range (SRD p101)
+- Alias: Range (SRD p101)
- Source: (MDR p307)
La cible d'un sort doit être à portée de ce sort. Pour un sort comme projectile magique, la cible est une créature, pour un sort comme boule de feu, c'est le point où la boule explose.
diff --git a/Data/HD/hd_spellcasting_quest_ce_quun_sort_.md b/Data/HD/hd_spellcasting_quest_ce_quun_sort_.md
index b994c806..32c573ad 100644
--- a/Data/HD/hd_spellcasting_quest_ce_quun_sort_.md
+++ b/Data/HD/hd_spellcasting_quest_ce_quun_sort_.md
@@ -4,7 +4,7 @@
## Qu'est-ce qu'un sort ?
-- AltName: What Is a Spell? (SRD p100)
+- Alias: What Is a Spell? (SRD p100)
- Source: (MDR p306)
Un sort est un effet magique perceptible, un remodelage unique des énergies magiques qui imprègnent le multivers et qui s'exprime de manière spécifique et limitée. Lorsqu'un personnage lance un sort, il prélève soigneusement quelques brins de la magie brute inhérente au monde, les fixe selon un motif choisi, les fait vibrer de manière spécifique et enfin les libère pour créer l'effet désiré. Le tout généralement en l'espace de quelques secondes.
diff --git a/Data/HD/hd_spellcasting_reaction.md b/Data/HD/hd_spellcasting_reaction.md
index d0692608..99f4c7f4 100644
--- a/Data/HD/hd_spellcasting_reaction.md
+++ b/Data/HD/hd_spellcasting_reaction.md
@@ -4,7 +4,7 @@
#### Réaction
-- AltName: Reactions (SRD p101)
+- Alias: Reactions (SRD p101)
- Source: (MDR p307)
Certains sorts se lancent sous forme de réaction. Il faut juste une fraction de seconde pour les faire naître et ils se lancent en réponse à un événement. Si un sort peut se lancer ainsi, sa description précise exactement dans quelles conditions.
diff --git a/Data/HD/hd_spellcasting_se_prendre_pour_cible.md b/Data/HD/hd_spellcasting_se_prendre_pour_cible.md
index c32b11a8..4aaab959 100644
--- a/Data/HD/hd_spellcasting_se_prendre_pour_cible.md
+++ b/Data/HD/hd_spellcasting_se_prendre_pour_cible.md
@@ -4,7 +4,7 @@
#### Se prendre pour cible
-- AltName: Targeting Yourself (SRD p102)
+- Alias: Targeting Yourself (SRD p102)
- Source: (MDR p309)
Si le sort vise une cible au choix du lanceur de sorts, ce dernier peut se prendre pour cible, sauf si la cible doit impérativement être hostile ou qu'il est spécifié que ce ne peut pas être le lanceur. S'il se trouve dans la zone d'effet d'un sort qu'il lance, il peut se prendre pour cible.
diff --git a/Data/HD/hd_spellcasting_somatiques_s.md b/Data/HD/hd_spellcasting_somatiques_s.md
index ac7499e1..6d8db492 100644
--- a/Data/HD/hd_spellcasting_somatiques_s.md
+++ b/Data/HD/hd_spellcasting_somatiques_s.md
@@ -4,7 +4,7 @@
#### Somatiques (S)
-- AltName: Somatic (S) (SRD p101)
+- Alias: Somatic (S) (SRD p101)
- Source: (MDR p308)
Les gestes à exécuter lors de l'incantation se traduisent par force gesticulations ou par un ensemble de mouvements complexes. Si un sort exige une composante somatique, le lanceur doit avoir au moins une main libre pour accomplir les mouvements nécessaires.
diff --git a/Data/HD/hd_spellcasting_sphere.md b/Data/HD/hd_spellcasting_sphere.md
index 5ae3a814..84731971 100644
--- a/Data/HD/hd_spellcasting_sphere.md
+++ b/Data/HD/hd_spellcasting_sphere.md
@@ -4,7 +4,7 @@
#### Sphère
-- AltName: Sphere (SRD p103)
+- Alias: Sphere (SRD p103)
- Source: (MDR p309)
Le lanceur de sorts choisit le point d'origine de la sphère qui s'étend depuis ce point. Sa taille est exprimée en mètres sous forme de rayon qui s'étend depuis ce point.
diff --git a/Data/HD/hd_spellcasting_temps_dincantation.md b/Data/HD/hd_spellcasting_temps_dincantation.md
index 14acc7f4..b1a78e35 100644
--- a/Data/HD/hd_spellcasting_temps_dincantation.md
+++ b/Data/HD/hd_spellcasting_temps_dincantation.md
@@ -4,7 +4,7 @@
### Temps d'incantation
-- AltName: Casting Time (SRD p101)
+- Alias: Casting Time (SRD p101)
- Source: (MDR p307)
Généralement, un sort se lance par une seule action, mais certains exigent une action bonus, une réaction ou encore plus de temps.
diff --git a/Data/HD/hd_spellcasting_un_chemin_degage_jusqua_la_cible.md b/Data/HD/hd_spellcasting_un_chemin_degage_jusqua_la_cible.md
index 4cc215aa..40781efc 100644
--- a/Data/HD/hd_spellcasting_un_chemin_degage_jusqua_la_cible.md
+++ b/Data/HD/hd_spellcasting_un_chemin_degage_jusqua_la_cible.md
@@ -4,7 +4,7 @@
#### Un chemin dégagé jusqu'à la cible
-- AltName: A Clear Path to the Target (SRD p102)
+- Alias: A Clear Path to the Target (SRD p102)
- Source: (MDR p309)
Pour viser quelque chose, le lanceur de sorts doit avoir un itinéraire dégagé jusqu'à sa cible, elle ne doit donc pas se trouver derrière un abri total.
diff --git a/Data/HD/hd_spellcasting_verbales_v.md b/Data/HD/hd_spellcasting_verbales_v.md
index 8dbe2144..e5f32803 100644
--- a/Data/HD/hd_spellcasting_verbales_v.md
+++ b/Data/HD/hd_spellcasting_verbales_v.md
@@ -4,7 +4,7 @@
#### Verbales (V)
-- AltName: Verbal (V) (SRD p101)
+- Alias: Verbal (V) (SRD p101)
- Source: (MDR p308)
Pour lancer la plupart des sorts, il faut entonner des paroles mystiques. Ces mots ne constituent pas la source de puissance du sort, ce sont plutôt des combinaisons de sons, prononcées avec un timbre et une résonance spécifiques, qui animent des filaments de magie. Ainsi, un personnage bâillonné ou englobé dans une zone de silence comme celle résultant du sort silence ne peut pas lancer de sort à composante verbale.
diff --git a/Data/HD/hd_spellcasting_zone_deffet.md b/Data/HD/hd_spellcasting_zone_deffet.md
index 1b1812a8..048f53cb 100644
--- a/Data/HD/hd_spellcasting_zone_deffet.md
+++ b/Data/HD/hd_spellcasting_zone_deffet.md
@@ -4,7 +4,7 @@
### Zone d'effet
-- AltName: Areas of Effect (SRD p102)
+- Alias: Areas of Effect (SRD p102)
- Source: (MDR p309)
Les sorts tels que mains brûlantes et cône de froid couvrent une zone, ce qui leur permet d'affecter plusieurs créatures à la fois.
diff --git a/Data/HD/hd_spells.md b/Data/HD/hd_spells.md
index a77aeb52..19984dc4 100644
--- a/Data/HD/hd_spells.md
+++ b/Data/HD/hd_spells.md
@@ -45,7 +45,7 @@ SubItems:
- - SRD: [Enlarge/Reduce](srd_spells_enlargereduce.md)
+ - Alias: [Enlarge/Reduce](srd_spells_enlargereduce.md)
@@ -213,7 +213,7 @@ SubItems:
- - SRD: [Aid](srd_spells_aid.md)
+ - Alias: [Aid](srd_spells_aid.md)
@@ -350,7 +350,7 @@ SubItems:
- - SRD: [Alarm](srd_spells_alarm.md)
+ - Alias: [Alarm](srd_spells_alarm.md)
@@ -502,7 +502,7 @@ SubItems:
- - SRD: [Planar Ally](srd_spells_planar_ally.md)
+ - Alias: [Planar Ally](srd_spells_planar_ally.md)
@@ -727,7 +727,7 @@ SubItems:
- - SRD: [Enhance Ability](srd_spells_enhance_ability.md)
+ - Alias: [Enhance Ability](srd_spells_enhance_ability.md)
@@ -955,7 +955,7 @@ SubItems:
- - SRD: [Animal Friendship](srd_spells_animal_friendship.md)
+ - Alias: [Animal Friendship](srd_spells_animal_friendship.md)
@@ -1091,7 +1091,7 @@ SubItems:
- - SRD: [Animate Dead](srd_spells_animate_dead.md)
+ - Alias: [Animate Dead](srd_spells_animate_dead.md)
@@ -1272,7 +1272,7 @@ SubItems:
- - SRD: [Animate Objects](srd_spells_animate_objects.md)
+ - Alias: [Animate Objects](srd_spells_animate_objects.md)
@@ -1558,7 +1558,7 @@ SubItems:
- - SRD: [Calm Emotions](srd_spells_calm_emotions.md)
+ - Alias: [Calm Emotions](srd_spells_calm_emotions.md)
@@ -1708,7 +1708,7 @@ SubItems:
- - SRD: [Seeming](srd_spells_seeming.md)
+ - Alias: [Seeming](srd_spells_seeming.md)
@@ -1903,7 +1903,7 @@ SubItems:
- - SRD: [Find Familiar](srd_spells_find_familiar.md)
+ - Alias: [Find Familiar](srd_spells_find_familiar.md)
@@ -2116,7 +2116,7 @@ SubItems:
- - SRD: [Call Lightning](srd_spells_call_lightning.md)
+ - Alias: [Call Lightning](srd_spells_call_lightning.md)
@@ -2412,7 +2412,7 @@ SubItems:
- - SRD: [Magic Weapon](srd_spells_magic_weapon.md)
+ - Alias: [Magic Weapon](srd_spells_magic_weapon.md)
@@ -2662,7 +2662,7 @@ SubItems:
- - SRD: [Spiritual Weapon](srd_spells_spiritual_weapon.md)
+ - Alias: [Spiritual Weapon](srd_spells_spiritual_weapon.md)
@@ -2841,7 +2841,7 @@ SubItems:
- - SRD: [Mage Armor](srd_spells_mage_armor.md)
+ - Alias: [Mage Armor](srd_spells_mage_armor.md)
@@ -2960,7 +2960,7 @@ SubItems:
- - SRD: [Time Stop](srd_spells_time_stop.md)
+ - Alias: [Time Stop](srd_spells_time_stop.md)
@@ -3091,7 +3091,7 @@ SubItems:
- - SRD: [Acid Splash](srd_spells_acid_splash.md)
+ - Alias: [Acid Splash](srd_spells_acid_splash.md)
@@ -3225,7 +3225,7 @@ SubItems:
- - SRD: [Phantasmal Killer](srd_spells_phantasmal_killer.md)
+ - Alias: [Phantasmal Killer](srd_spells_phantasmal_killer.md)
@@ -3391,7 +3391,7 @@ SubItems:
- - SRD: [Guidance](srd_spells_guidance.md)
+ - Alias: [Guidance](srd_spells_guidance.md)
@@ -3512,7 +3512,7 @@ SubItems:
- - SRD: [Augury](srd_spells_augury.md)
+ - Alias: [Augury](srd_spells_augury.md)
@@ -3935,7 +3935,7 @@ SubItems:
- - SRD: [Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)
+ - Alias: [Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)
@@ -4102,7 +4102,7 @@ SubItems:
- - SRD: [Holy Aura](srd_spells_holy_aura.md)
+ - Alias: [Holy Aura](srd_spells_holy_aura.md)
@@ -4238,7 +4238,7 @@ SubItems:
- - SRD: [Glibness](srd_spells_glibness.md)
+ - Alias: [Glibness](srd_spells_glibness.md)
@@ -4355,7 +4355,7 @@ SubItems:
- - SRD: [Goodberry](srd_spells_goodberry.md)
+ - Alias: [Goodberry](srd_spells_goodberry.md)
@@ -4505,7 +4505,7 @@ SubItems:
- - SRD: [Guiding Bolt](srd_spells_guiding_bolt.md)
+ - Alias: [Guiding Bolt](srd_spells_guiding_bolt.md)
@@ -4640,7 +4640,7 @@ SubItems:
- - SRD: [Banishment](srd_spells_banishment.md)
+ - Alias: [Banishment](srd_spells_banishment.md)
@@ -4838,7 +4838,7 @@ SubItems:
- - SRD: [Blade Barrier](srd_spells_blade_barrier.md)
+ - Alias: [Blade Barrier](srd_spells_blade_barrier.md)
@@ -4975,7 +4975,7 @@ SubItems:
- - SRD: [Bless](srd_spells_bless.md)
+ - Alias: [Bless](srd_spells_bless.md)
@@ -5209,7 +5209,7 @@ SubItems:
- - SRD: [Inflict Wounds](srd_spells_inflict_wounds.md)
+ - Alias: [Inflict Wounds](srd_spells_inflict_wounds.md)
@@ -5344,7 +5344,7 @@ SubItems:
- - SRD: [Magic Mouth](srd_spells_magic_mouth.md)
+ - Alias: [Magic Mouth](srd_spells_magic_mouth.md)
@@ -5511,7 +5511,7 @@ SubItems:
- - SRD: [Shield](srd_spells_shield.md)
+ - Alias: [Shield](srd_spells_shield.md)
@@ -5630,7 +5630,7 @@ SubItems:
- - SRD: [Fire Shield](srd_spells_fire_shield.md)
+ - Alias: [Fire Shield](srd_spells_fire_shield.md)
@@ -5782,7 +5782,7 @@ SubItems:
- - SRD: [Shield of Faith](srd_spells_shield_of_faith.md)
+ - Alias: [Shield of Faith](srd_spells_shield_of_faith.md)
@@ -5904,7 +5904,7 @@ SubItems:
- - SRD: [Poison Spray](srd_spells_poison_spray.md)
+ - Alias: [Poison Spray](srd_spells_poison_spray.md)
@@ -6038,7 +6038,7 @@ SubItems:
- - SRD: [Fireball](srd_spells_fireball.md)
+ - Alias: [Fireball](srd_spells_fireball.md)
@@ -6190,7 +6190,7 @@ SubItems:
- - SRD: [Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)
+ - Alias: [Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)
@@ -6389,7 +6389,7 @@ SubItems:
- - SRD: [Gust of Wind](srd_spells_gust_of_wind.md)
+ - Alias: [Gust of Wind](srd_spells_gust_of_wind.md)
@@ -6557,7 +6557,7 @@ SubItems:
- - SRD: [Shatter](srd_spells_shatter.md)
+ - Alias: [Shatter](srd_spells_shatter.md)
@@ -6880,7 +6880,7 @@ SubItems:
- - SRD: [Forcecage](srd_spells_forcecage.md)
+ - Alias: [Forcecage](srd_spells_forcecage.md)
@@ -7076,7 +7076,7 @@ SubItems:
- - SRD: [Vampiric Touch](srd_spells_vampiric_touch.md)
+ - Alias: [Vampiric Touch](srd_spells_vampiric_touch.md)
@@ -7370,7 +7370,7 @@ SubItems:
- - SRD: [Blindness/Deafness](srd_spells_blindnessdeafness.md)
+ - Alias: [Blindness/Deafness](srd_spells_blindnessdeafness.md)
@@ -7517,7 +7517,7 @@ SubItems:
- - SRD: [Circle of Death](srd_spells_circle_of_death.md)
+ - Alias: [Circle of Death](srd_spells_circle_of_death.md)
@@ -7652,7 +7652,7 @@ SubItems:
- - SRD: [Teleportation Circle](srd_spells_teleportation_circle.md)
+ - Alias: [Teleportation Circle](srd_spells_teleportation_circle.md)
@@ -7831,7 +7831,7 @@ SubItems:
- - SRD: [Magic Circle](srd_spells_magic_circle.md)
+ - Alias: [Magic Circle](srd_spells_magic_circle.md)
@@ -8057,7 +8057,7 @@ SubItems:
- - SRD: [Chain Lightning](srd_spells_chain_lightning.md)
+ - Alias: [Chain Lightning](srd_spells_chain_lightning.md)
@@ -8239,7 +8239,7 @@ SubItems:
- - SRD: [Antimagic Field](srd_spells_antimagic_field.md)
+ - Alias: [Antimagic Field](srd_spells_antimagic_field.md)
@@ -8498,7 +8498,7 @@ SubItems:
- - SRD: [Shapechange](srd_spells_shapechange.md)
+ - Alias: [Shapechange](srd_spells_shapechange.md)
@@ -8726,7 +8726,7 @@ SubItems:
- - SRD: [Plane Shift](srd_spells_plane_shift.md)
+ - Alias: [Plane Shift](srd_spells_plane_shift.md)
@@ -8891,7 +8891,7 @@ SubItems:
- - SRD: [Charm Person](srd_spells_charm_person.md)
+ - Alias: [Charm Person](srd_spells_charm_person.md)
@@ -9026,7 +9026,7 @@ SubItems:
- - SRD: [Heat Metal](srd_spells_heat_metal.md)
+ - Alias: [Heat Metal](srd_spells_heat_metal.md)
@@ -9209,7 +9209,7 @@ SubItems:
- - SRD: [Faithful Hound](srd_spells_faithful_hound.md)
+ - Alias: [Faithful Hound](srd_spells_faithful_hound.md)
@@ -9458,7 +9458,7 @@ SubItems:
- - SRD: [Clairvoyance](srd_spells_clairvoyance.md)
+ - Alias: [Clairvoyance](srd_spells_clairvoyance.md)
@@ -9625,7 +9625,7 @@ SubItems:
- - SRD: [Blink](srd_spells_blink.md)
+ - Alias: [Blink](srd_spells_blink.md)
@@ -9759,7 +9759,7 @@ SubItems:
- - SRD: [Clone](srd_spells_clone.md)
+ - Alias: [Clone](srd_spells_clone.md)
@@ -9893,7 +9893,7 @@ SubItems:
- - SRD: [Geas](srd_spells_geas.md)
+ - Alias: [Geas](srd_spells_geas.md)
@@ -10085,7 +10085,7 @@ SubItems:
- - SRD: [Secret Chest](srd_spells_secret_chest.md)
+ - Alias: [Secret Chest](srd_spells_secret_chest.md)
@@ -10514,7 +10514,7 @@ SubItems:
- - SRD: [Flame Strike](srd_spells_flame_strike.md)
+ - Alias: [Flame Strike](srd_spells_flame_strike.md)
@@ -10665,7 +10665,7 @@ SubItems:
- - SRD: [Speak with Animals](srd_spells_speak_with_animals.md)
+ - Alias: [Speak with Animals](srd_spells_speak_with_animals.md)
@@ -10786,7 +10786,7 @@ SubItems:
- - SRD: [Speak with Dead](srd_spells_speak_with_dead.md)
+ - Alias: [Speak with Dead](srd_spells_speak_with_dead.md)
@@ -10921,7 +10921,7 @@ SubItems:
- - SRD: [Speak with Plants](srd_spells_speak_with_plants.md)
+ - Alias: [Speak with Plants](srd_spells_speak_with_plants.md)
@@ -11101,7 +11101,7 @@ SubItems:
- - SRD: [Commune](srd_spells_commune.md)
+ - Alias: [Commune](srd_spells_commune.md)
@@ -11254,7 +11254,7 @@ SubItems:
- - SRD: [Commune with Nature](srd_spells_commune_with_nature.md)
+ - Alias: [Commune with Nature](srd_spells_commune_with_nature.md)
@@ -11776,7 +11776,7 @@ SubItems:
- - SRD: [Comprehend Languages](srd_spells_comprehend_languages.md)
+ - Alias: [Comprehend Languages](srd_spells_comprehend_languages.md)
@@ -11914,7 +11914,7 @@ SubItems:
- - SRD: [Compulsion](srd_spells_compulsion.md)
+ - Alias: [Compulsion](srd_spells_compulsion.md)
@@ -12050,7 +12050,7 @@ SubItems:
- - SRD: [Cone of Cold](srd_spells_cone_of_cold.md)
+ - Alias: [Cone of Cold](srd_spells_cone_of_cold.md)
@@ -12202,7 +12202,7 @@ SubItems:
- - SRD: [Confusion](srd_spells_confusion.md)
+ - Alias: [Confusion](srd_spells_confusion.md)
@@ -12449,7 +12449,7 @@ SubItems:
- - SRD: [Chill Touch](srd_spells_chill_touch.md)
+ - Alias: [Chill Touch](srd_spells_chill_touch.md)
@@ -12612,7 +12612,7 @@ SubItems:
- - SRD: [Contact Other Plane](srd_spells_contact_other_plane.md)
+ - Alias: [Contact Other Plane](srd_spells_contact_other_plane.md)
@@ -12760,7 +12760,7 @@ SubItems:
- - SRD: [Contagion](srd_spells_contagion.md)
+ - Alias: [Contagion](srd_spells_contagion.md)
@@ -13043,7 +13043,7 @@ SubItems:
- - SRD: [Harm](srd_spells_harm.md)
+ - Alias: [Harm](srd_spells_harm.md)
@@ -13162,7 +13162,7 @@ SubItems:
- - SRD: [Contingency](srd_spells_contingency.md)
+ - Alias: [Contingency](srd_spells_contingency.md)
@@ -13326,7 +13326,7 @@ SubItems:
- - SRD: [Counterspell](srd_spells_counterspell.md)
+ - Alias: [Counterspell](srd_spells_counterspell.md)
@@ -13474,7 +13474,7 @@ SubItems:
- - SRD: [Control Water](srd_spells_control_water.md)
+ - Alias: [Control Water](srd_spells_control_water.md)
@@ -13703,7 +13703,7 @@ SubItems:
- - SRD: [Control Weather](srd_spells_control_weather.md)
+ - Alias: [Control Weather](srd_spells_control_weather.md)
@@ -14152,7 +14152,7 @@ SubItems:
- - SRD: [Instant Summons](srd_spells_instant_summons.md)
+ - Alias: [Instant Summons](srd_spells_instant_summons.md)
@@ -14335,7 +14335,7 @@ SubItems:
- - SRD: [Antilife Shell](srd_spells_antilife_shell.md)
+ - Alias: [Antilife Shell](srd_spells_antilife_shell.md)
@@ -14486,7 +14486,7 @@ SubItems:
- - SRD: [Rope Trick](srd_spells_rope_trick.md)
+ - Alias: [Rope Trick](srd_spells_rope_trick.md)
@@ -14667,7 +14667,7 @@ SubItems:
- - SRD: [Color Spray](srd_spells_color_spray.md)
+ - Alias: [Color Spray](srd_spells_color_spray.md)
@@ -14818,7 +14818,7 @@ SubItems:
- - SRD: [Creation](srd_spells_creation.md)
+ - Alias: [Creation](srd_spells_creation.md)
@@ -15074,7 +15074,7 @@ SubItems:
- - SRD: [Create Undead](srd_spells_create_undead.md)
+ - Alias: [Create Undead](srd_spells_create_undead.md)
@@ -15284,7 +15284,7 @@ SubItems:
- - SRD: [Create Food and Water](srd_spells_create_food_and_water.md)
+ - Alias: [Create Food and Water](srd_spells_create_food_and_water.md)
@@ -15403,7 +15403,7 @@ SubItems:
- - SRD: [Create or Destroy Water](srd_spells_create_or_destroy_water.md)
+ - Alias: [Create or Destroy Water](srd_spells_create_or_destroy_water.md)
@@ -15585,7 +15585,7 @@ SubItems:
- - SRD: [Spike Growth](srd_spells_spike_growth.md)
+ - Alias: [Spike Growth](srd_spells_spike_growth.md)
@@ -15722,7 +15722,7 @@ SubItems:
- - SRD: [Plant Growth](srd_spells_plant_growth.md)
+ - Alias: [Plant Growth](srd_spells_plant_growth.md)
@@ -15900,7 +15900,7 @@ SubItems:
- - SRD: [Irresistible Dance](srd_spells_irresistible_dance.md)
+ - Alias: [Irresistible Dance](srd_spells_irresistible_dance.md)
@@ -16047,7 +16047,7 @@ SubItems:
- - SRD: [Knock](srd_spells_knock.md)
+ - Alias: [Knock](srd_spells_knock.md)
@@ -16193,7 +16193,7 @@ SubItems:
- - SRD: [Disguise Self](srd_spells_disguise_self.md)
+ - Alias: [Disguise Self](srd_spells_disguise_self.md)
@@ -16340,7 +16340,7 @@ SubItems:
- - SRD: [Demiplane](srd_spells_demiplane.md)
+ - Alias: [Demiplane](srd_spells_demiplane.md)
@@ -16473,7 +16473,7 @@ SubItems:
- - SRD: [Move Earth](srd_spells_move_earth.md)
+ - Alias: [Move Earth](srd_spells_move_earth.md)
@@ -16641,7 +16641,7 @@ SubItems:
- - SRD: [Disintegrate](srd_spells_disintegrate.md)
+ - Alias: [Disintegrate](srd_spells_disintegrate.md)
@@ -16956,7 +16956,7 @@ SubItems:
- - SRD: [Detect Magic](srd_spells_detect_magic.md)
+ - Alias: [Detect Magic](srd_spells_detect_magic.md)
@@ -17095,7 +17095,7 @@ SubItems:
- - SRD: [Detect Thoughts](srd_spells_detect_thoughts.md)
+ - Alias: [Detect Thoughts](srd_spells_detect_thoughts.md)
@@ -17338,7 +17338,7 @@ SubItems:
- - SRD: [Detect Evil and Good](srd_spells_detect_evil_and_good.md)
+ - Alias: [Detect Evil and Good](srd_spells_detect_evil_and_good.md)
@@ -17476,7 +17476,7 @@ SubItems:
- - SRD: [Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)
+ - Alias: [Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)
@@ -17617,7 +17617,7 @@ SubItems:
- - SRD: [Floating Disk](srd_spells_floating_disk.md)
+ - Alias: [Floating Disk](srd_spells_floating_disk.md)
@@ -17784,7 +17784,7 @@ SubItems:
- - SRD: [Dispel Magic](srd_spells_dispel_magic.md)
+ - Alias: [Dispel Magic](srd_spells_dispel_magic.md)
@@ -17919,7 +17919,7 @@ SubItems:
- - SRD: [Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)
+ - Alias: [Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)
@@ -18088,7 +18088,7 @@ SubItems:
- - SRD: [Divination](srd_spells_divination.md)
+ - Alias: [Divination](srd_spells_divination.md)
@@ -18240,7 +18240,7 @@ SubItems:
- - SRD: [Finger of Death](srd_spells_finger_of_death.md)
+ - Alias: [Finger of Death](srd_spells_finger_of_death.md)
@@ -18374,7 +18374,7 @@ SubItems:
- - SRD: [Dominate Person](srd_spells_dominate_person.md)
+ - Alias: [Dominate Person](srd_spells_dominate_person.md)
@@ -18600,7 +18600,7 @@ SubItems:
- - SRD: [Dominate Monster](srd_spells_dominate_monster.md)
+ - Alias: [Dominate Monster](srd_spells_dominate_monster.md)
@@ -18811,7 +18811,7 @@ SubItems:
- - SRD: [Dominate Beast](srd_spells_dominate_beast.md)
+ - Alias: [Dominate Beast](srd_spells_dominate_beast.md)
@@ -19023,7 +19023,7 @@ SubItems:
- - SRD: [Gentle Repose](srd_spells_gentle_repose.md)
+ - Alias: [Gentle Repose](srd_spells_gentle_repose.md)
@@ -19160,7 +19160,7 @@ SubItems:
- - SRD: [Druidcraft](srd_spells_druidcraft.md)
+ - Alias: [Druidcraft](srd_spells_druidcraft.md)
@@ -19339,7 +19339,7 @@ SubItems:
- - SRD: [Lightning Bolt](srd_spells_lightning_bolt.md)
+ - Alias: [Lightning Bolt](srd_spells_lightning_bolt.md)
@@ -19635,7 +19635,7 @@ SubItems:
- - SRD: [Sunburst](srd_spells_sunburst.md)
+ - Alias: [Sunburst](srd_spells_sunburst.md)
@@ -19800,7 +19800,7 @@ SubItems:
- - SRD: [Prismatic Spray](srd_spells_prismatic_spray.md)
+ - Alias: [Prismatic Spray](srd_spells_prismatic_spray.md)
@@ -20024,7 +20024,7 @@ SubItems:
- - SRD: [Imprisonment](srd_spells_imprisonment.md)
+ - Alias: [Imprisonment](srd_spells_imprisonment.md)
@@ -20325,7 +20325,7 @@ SubItems:
- - SRD: [Entangle](srd_spells_entangle.md)
+ - Alias: [Entangle](srd_spells_entangle.md)
@@ -20476,7 +20476,7 @@ SubItems:
- - SRD: [Planar Binding](srd_spells_planar_binding.md)
+ - Alias: [Planar Binding](srd_spells_planar_binding.md)
@@ -20627,7 +20627,7 @@ SubItems:
- - SRD: [Sending](srd_spells_sending.md)
+ - Alias: [Sending](srd_spells_sending.md)
@@ -20762,7 +20762,7 @@ SubItems:
- - SRD: [Enthrall](srd_spells_enthrall.md)
+ - Alias: [Enthrall](srd_spells_enthrall.md)
@@ -20880,7 +20880,7 @@ SubItems:
- - SRD: [Spare the Dying](srd_spells_spare_the_dying.md)
+ - Alias: [Spare the Dying](srd_spells_spare_the_dying.md)
@@ -21100,7 +21100,7 @@ SubItems:
- - SRD: [Arcane Sword](srd_spells_arcane_sword.md)
+ - Alias: [Arcane Sword](srd_spells_arcane_sword.md)
@@ -21238,7 +21238,7 @@ SubItems:
- - SRD: [Feeblemind](srd_spells_feeblemind.md)
+ - Alias: [Feeblemind](srd_spells_feeblemind.md)
@@ -21388,7 +21388,7 @@ SubItems:
- - SRD: [Mind Blank](srd_spells_mind_blank.md)
+ - Alias: [Mind Blank](srd_spells_mind_blank.md)
@@ -21508,7 +21508,7 @@ SubItems:
- - SRD: [Spirit Guardians](srd_spells_spirit_guardians.md)
+ - Alias: [Spirit Guardians](srd_spells_spirit_guardians.md)
@@ -21676,7 +21676,7 @@ SubItems:
- - SRD: [Weird](srd_spells_weird.md)
+ - Alias: [Weird](srd_spells_weird.md)
@@ -21797,7 +21797,7 @@ SubItems:
- - SRD: [Awaken](srd_spells_awaken.md)
+ - Alias: [Awaken](srd_spells_awaken.md)
@@ -22144,7 +22144,7 @@ SubItems:
- - SRD: [Eldritch Blast](srd_spells_eldritch_blast.md)
+ - Alias: [Eldritch Blast](srd_spells_eldritch_blast.md)
@@ -22277,7 +22277,7 @@ SubItems:
- - SRD: [Fabricate](srd_spells_fabricate.md)
+ - Alias: [Fabricate](srd_spells_fabricate.md)
@@ -22426,7 +22426,7 @@ SubItems:
- - SRD: [Stone Shape](srd_spells_stone_shape.md)
+ - Alias: [Stone Shape](srd_spells_stone_shape.md)
@@ -22547,7 +22547,7 @@ SubItems:
- - SRD: [Divine Favor](srd_spells_divine_favor.md)
+ - Alias: [Divine Favor](srd_spells_divine_favor.md)
@@ -22683,7 +22683,7 @@ SubItems:
- - SRD: [Heroes' Feast](srd_spells_heroes_feast.md)
+ - Alias: [Heroes' Feast](srd_spells_heroes_feast.md)
@@ -22964,7 +22964,7 @@ SubItems:
- - SRD: [Continual Flame](srd_spells_continual_flame.md)
+ - Alias: [Continual Flame](srd_spells_continual_flame.md)
@@ -23084,7 +23084,7 @@ SubItems:
- - SRD: [Sacred Flame](srd_spells_sacred_flame.md)
+ - Alias: [Sacred Flame](srd_spells_sacred_flame.md)
@@ -23234,7 +23234,7 @@ SubItems:
- - SRD: [Bane](srd_spells_bane.md)
+ - Alias: [Bane](srd_spells_bane.md)
@@ -23388,7 +23388,7 @@ SubItems:
- - SRD: [Insect Plague](srd_spells_insect_plague.md)
+ - Alias: [Insect Plague](srd_spells_insect_plague.md)
@@ -23556,7 +23556,7 @@ SubItems:
- - SRD: [Acid Arrow](srd_spells_acid_arrow.md)
+ - Alias: [Acid Arrow](srd_spells_acid_arrow.md)
@@ -23691,7 +23691,7 @@ SubItems:
- - SRD: [Blight](srd_spells_blight.md)
+ - Alias: [Blight](srd_spells_blight.md)
@@ -23839,7 +23839,7 @@ SubItems:
- - SRD: [Blur](srd_spells_blur.md)
+ - Alias: [Blur](srd_spells_blur.md)
@@ -23957,7 +23957,7 @@ SubItems:
- - SRD: [Etherealness](srd_spells_etherealness.md)
+ - Alias: [Etherealness](srd_spells_etherealness.md)
@@ -24152,7 +24152,7 @@ SubItems:
- - SRD: [Gaseous Form](srd_spells_gaseous_form.md)
+ - Alias: [Gaseous Form](srd_spells_gaseous_form.md)
@@ -24320,7 +24320,7 @@ SubItems:
- - SRD: [Animal Shapes](srd_spells_animal_shapes.md)
+ - Alias: [Animal Shapes](srd_spells_animal_shapes.md)
@@ -24472,7 +24472,7 @@ SubItems:
- - SRD: [Hideous Laughter](srd_spells_hideous_laughter.md)
+ - Alias: [Hideous Laughter](srd_spells_hideous_laughter.md)
@@ -24781,7 +24781,7 @@ SubItems:
- - SRD: [Branding Smite](srd_spells_branding_smite.md)
+ - Alias: [Branding Smite](srd_spells_branding_smite.md)
@@ -24915,7 +24915,7 @@ SubItems:
- - SRD: [Meld into Stone](srd_spells_meld_into_stone.md)
+ - Alias: [Meld into Stone](srd_spells_meld_into_stone.md)
@@ -25079,7 +25079,7 @@ SubItems:
- - SRD: [Guardian of Faith](srd_spells_guardian_of_faith.md)
+ - Alias: [Guardian of Faith](srd_spells_guardian_of_faith.md)
@@ -25342,7 +25342,7 @@ SubItems:
- - SRD: [Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)
+ - Alias: [Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)
@@ -25495,7 +25495,7 @@ SubItems:
- - SRD: [Glyph of Warding](srd_spells_glyph_of_warding.md)
+ - Alias: [Glyph of Warding](srd_spells_glyph_of_warding.md)
@@ -25736,7 +25736,7 @@ SubItems:
- - SRD: [Shillelagh](srd_spells_shillelagh.md)
+ - Alias: [Shillelagh](srd_spells_shillelagh.md)
@@ -25857,7 +25857,7 @@ SubItems:
- - SRD: [Grease](srd_spells_grease.md)
+ - Alias: [Grease](srd_spells_grease.md)
@@ -25993,7 +25993,7 @@ SubItems:
- - SRD: [Longstrider](srd_spells_longstrider.md)
+ - Alias: [Longstrider](srd_spells_longstrider.md)
@@ -26128,7 +26128,7 @@ SubItems:
- - SRD: [Heal](srd_spells_heal.md)
+ - Alias: [Heal](srd_spells_heal.md)
@@ -26261,7 +26261,7 @@ SubItems:
- - SRD: [Mass Heal](srd_spells_mass_heal.md)
+ - Alias: [Mass Heal](srd_spells_mass_heal.md)
@@ -26514,7 +26514,7 @@ SubItems:
- - SRD: [Haste](srd_spells_haste.md)
+ - Alias: [Haste](srd_spells_haste.md)
@@ -26652,7 +26652,7 @@ SubItems:
- - SRD: [Heroism](srd_spells_heroism.md)
+ - Alias: [Heroism](srd_spells_heroism.md)
@@ -26789,7 +26789,7 @@ SubItems:
- - SRD: [Identify](srd_spells_identify.md)
+ - Alias: [Identify](srd_spells_identify.md)
@@ -26926,7 +26926,7 @@ SubItems:
- - SRD: [Minor Illusion](srd_spells_minor_illusion.md)
+ - Alias: [Minor Illusion](srd_spells_minor_illusion.md)
@@ -27090,7 +27090,7 @@ SubItems:
- - SRD: [Programmed Illusion](srd_spells_programmed_illusion.md)
+ - Alias: [Programmed Illusion](srd_spells_programmed_illusion.md)
@@ -27257,7 +27257,7 @@ SubItems:
- - SRD: [Major Image](srd_spells_major_image.md)
+ - Alias: [Major Image](srd_spells_major_image.md)
@@ -27424,7 +27424,7 @@ SubItems:
- - SRD: [Mirror Image](srd_spells_mirror_image.md)
+ - Alias: [Mirror Image](srd_spells_mirror_image.md)
@@ -27634,7 +27634,7 @@ SubItems:
- - SRD: [Project Image](srd_spells_project_image.md)
+ - Alias: [Project Image](srd_spells_project_image.md)
@@ -27803,7 +27803,7 @@ SubItems:
- - SRD: [Silent Image](srd_spells_silent_image.md)
+ - Alias: [Silent Image](srd_spells_silent_image.md)
@@ -27957,7 +27957,7 @@ SubItems:
- - SRD: [Hold Person](srd_spells_hold_person.md)
+ - Alias: [Hold Person](srd_spells_hold_person.md)
@@ -28096,7 +28096,7 @@ SubItems:
- - SRD: [Hold Monster](srd_spells_hold_monster.md)
+ - Alias: [Hold Monster](srd_spells_hold_monster.md)
@@ -28247,7 +28247,7 @@ SubItems:
- - SRD: [Command](srd_spells_command.md)
+ - Alias: [Command](srd_spells_command.md)
@@ -28469,7 +28469,7 @@ SubItems:
- - SRD: [Giant Insect](srd_spells_giant_insect.md)
+ - Alias: [Giant Insect](srd_spells_giant_insect.md)
@@ -28784,7 +28784,7 @@ SubItems:
- - SRD: [Forbiddance](srd_spells_forbiddance.md)
+ - Alias: [Forbiddance](srd_spells_forbiddance.md)
@@ -28983,7 +28983,7 @@ SubItems:
- - SRD: [Reverse Gravity](srd_spells_reverse_gravity.md)
+ - Alias: [Reverse Gravity](srd_spells_reverse_gravity.md)
@@ -29137,7 +29137,7 @@ SubItems:
- - SRD: [Invisibility](srd_spells_invisibility.md)
+ - Alias: [Invisibility](srd_spells_invisibility.md)
@@ -29275,7 +29275,7 @@ SubItems:
- - SRD: [Greater Invisibility](srd_spells_greater_invisibility.md)
+ - Alias: [Greater Invisibility](srd_spells_greater_invisibility.md)
@@ -29396,7 +29396,7 @@ SubItems:
- - SRD: [Conjure Animals](srd_spells_conjure_animals.md)
+ - Alias: [Conjure Animals](srd_spells_conjure_animals.md)
@@ -29652,7 +29652,7 @@ SubItems:
- - SRD: [Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)
+ - Alias: [Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)
@@ -29894,7 +29894,7 @@ SubItems:
- - SRD: [Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)
+ - Alias: [Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)
@@ -30137,7 +30137,7 @@ SubItems:
- - SRD: [Conjure Celestial](srd_spells_conjure_celestial.md)
+ - Alias: [Conjure Celestial](srd_spells_conjure_celestial.md)
@@ -30334,7 +30334,7 @@ SubItems:
- - SRD: [Conjure Elemental](srd_spells_conjure_elemental.md)
+ - Alias: [Conjure Elemental](srd_spells_conjure_elemental.md)
@@ -30532,7 +30532,7 @@ SubItems:
- - SRD: [Conjure Fey](srd_spells_conjure_fey.md)
+ - Alias: [Conjure Fey](srd_spells_conjure_fey.md)
@@ -30713,7 +30713,7 @@ SubItems:
- - SRD: [Bestow curse](srd_spells_bestow_curse.md)
+ - Alias: [Bestow curse](srd_spells_bestow_curse.md)
@@ -31036,7 +31036,7 @@ SubItems:
- - SRD: [Maze](srd_spells_maze.md)
+ - Alias: [Maze](srd_spells_maze.md)
@@ -31218,7 +31218,7 @@ SubItems:
- - SRD: [Flame Blade](srd_spells_flame_blade.md)
+ - Alias: [Flame Blade](srd_spells_flame_blade.md)
@@ -31500,7 +31500,7 @@ SubItems:
- - SRD: [Tongues](srd_spells_tongues.md)
+ - Alias: [Tongues](srd_spells_tongues.md)
@@ -31634,7 +31634,7 @@ SubItems:
- - SRD: [Legend Lore](srd_spells_legend_lore.md)
+ - Alias: [Legend Lore](srd_spells_legend_lore.md)
@@ -31799,7 +31799,7 @@ SubItems:
- - SRD: [Feather Fall](srd_spells_feather_fall.md)
+ - Alias: [Feather Fall](srd_spells_feather_fall.md)
@@ -31919,7 +31919,7 @@ SubItems:
- - SRD: [Slow](srd_spells_slow.md)
+ - Alias: [Slow](srd_spells_slow.md)
@@ -32101,7 +32101,7 @@ SubItems:
- - SRD: [Remove Curse](srd_spells_remove_curse.md)
+ - Alias: [Remove Curse](srd_spells_remove_curse.md)
@@ -32221,7 +32221,7 @@ SubItems:
- - SRD: [Levitate](srd_spells_levitate.md)
+ - Alias: [Levitate](srd_spells_levitate.md)
@@ -32519,7 +32519,7 @@ SubItems:
- - SRD: [Freedom of Movement](srd_spells_freedom_of_movement.md)
+ - Alias: [Freedom of Movement](srd_spells_freedom_of_movement.md)
@@ -32655,7 +32655,7 @@ SubItems:
- - SRD: [Warding Bond](srd_spells_warding_bond.md)
+ - Alias: [Warding Bond](srd_spells_warding_bond.md)
@@ -32807,7 +32807,7 @@ SubItems:
- - SRD: [Telepathic Bond](srd_spells_telepathic_bond.md)
+ - Alias: [Telepathic Bond](srd_spells_telepathic_bond.md)
@@ -32961,7 +32961,7 @@ SubItems:
- - SRD: [Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)
+ - Alias: [Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)
@@ -33085,7 +33085,7 @@ SubItems:
- - SRD: [Locate Object](srd_spells_locate_object.md)
+ - Alias: [Locate Object](srd_spells_locate_object.md)
@@ -33254,7 +33254,7 @@ SubItems:
- - SRD: [Locate Creature](srd_spells_locate_creature.md)
+ - Alias: [Locate Creature](srd_spells_locate_creature.md)
@@ -33422,7 +33422,7 @@ SubItems:
- - SRD: [Beacon of Hope](srd_spells_beacon_of_hope.md)
+ - Alias: [Beacon of Hope](srd_spells_beacon_of_hope.md)
@@ -33557,7 +33557,7 @@ SubItems:
- - SRD: [Faerie Fire](srd_spells_faerie_fire.md)
+ - Alias: [Faerie Fire](srd_spells_faerie_fire.md)
@@ -33690,7 +33690,7 @@ SubItems:
- - SRD: [Light](srd_spells_light.md)
+ - Alias: [Light](srd_spells_light.md)
@@ -33853,7 +33853,7 @@ SubItems:
- - SRD: [Daylight](srd_spells_daylight.md)
+ - Alias: [Daylight](srd_spells_daylight.md)
@@ -34003,7 +34003,7 @@ SubItems:
- - SRD: [Dancing Lights](srd_spells_dancing_lights.md)
+ - Alias: [Dancing Lights](srd_spells_dancing_lights.md)
@@ -34185,7 +34185,7 @@ SubItems:
- - SRD: [Mage Hand](srd_spells_mage_hand.md)
+ - Alias: [Mage Hand](srd_spells_mage_hand.md)
@@ -34335,7 +34335,7 @@ SubItems:
- - SRD: [Arcane Hand](srd_spells_arcane_hand.md)
+ - Alias: [Arcane Hand](srd_spells_arcane_hand.md)
@@ -34592,7 +34592,7 @@ SubItems:
- - SRD: [Burning Hands](srd_spells_burning_hands.md)
+ - Alias: [Burning Hands](srd_spells_burning_hands.md)
@@ -34756,7 +34756,7 @@ SubItems:
- - SRD: [Magnificent Mansion](srd_spells_magnificent_mansion.md)
+ - Alias: [Magnificent Mansion](srd_spells_magnificent_mansion.md)
@@ -35083,7 +35083,7 @@ SubItems:
- - SRD: [Water Walk](srd_spells_water_walk.md)
+ - Alias: [Water Walk](srd_spells_water_walk.md)
@@ -35221,7 +35221,7 @@ SubItems:
- - SRD: [Wind Walk](srd_spells_wind_walk.md)
+ - Alias: [Wind Walk](srd_spells_wind_walk.md)
@@ -35356,7 +35356,7 @@ SubItems:
- - SRD: [Hunter's Mark](srd_spells_hunters_mark.md)
+ - Alias: [Hunter's Mark](srd_spells_hunters_mark.md)
@@ -35490,7 +35490,7 @@ SubItems:
- - SRD: [Eyebite](srd_spells_eyebite.md)
+ - Alias: [Eyebite](srd_spells_eyebite.md)
@@ -35656,7 +35656,7 @@ SubItems:
- - SRD: [Message](srd_spells_message.md)
+ - Alias: [Message](srd_spells_message.md)
@@ -35793,7 +35793,7 @@ SubItems:
- - SRD: [Animal Messenger](srd_spells_animal_messenger.md)
+ - Alias: [Animal Messenger](srd_spells_animal_messenger.md)
@@ -35977,7 +35977,7 @@ SubItems:
- - SRD: [Polymorph](srd_spells_polymorph.md)
+ - Alias: [Polymorph](srd_spells_polymorph.md)
@@ -36161,7 +36161,7 @@ SubItems:
- - SRD: [True Polymorph](srd_spells_true_polymorph.md)
+ - Alias: [True Polymorph](srd_spells_true_polymorph.md)
@@ -36478,7 +36478,7 @@ SubItems:
- - SRD: [Mirage Arcane](srd_spells_mirage_arcane.md)
+ - Alias: [Mirage Arcane](srd_spells_mirage_arcane.md)
@@ -36627,7 +36627,7 @@ SubItems:
- - SRD: [Modify Memory](srd_spells_modify_memory.md)
+ - Alias: [Modify Memory](srd_spells_modify_memory.md)
@@ -36823,7 +36823,7 @@ SubItems:
- - SRD: [Alter Self](srd_spells_alter_self.md)
+ - Alias: [Alter Self](srd_spells_alter_self.md)
@@ -36989,7 +36989,7 @@ SubItems:
- - SRD: [Phantom Steed](srd_spells_phantom_steed.md)
+ - Alias: [Phantom Steed](srd_spells_phantom_steed.md)
@@ -37138,7 +37138,7 @@ SubItems:
- - SRD: [Vicious Mockery](srd_spells_vicious_mockery.md)
+ - Alias: [Vicious Mockery](srd_spells_vicious_mockery.md)
@@ -37268,7 +37268,7 @@ SubItems:
- - SRD: [Healing Word](srd_spells_healing_word.md)
+ - Alias: [Healing Word](srd_spells_healing_word.md)
@@ -37398,7 +37398,7 @@ SubItems:
- - SRD: [Mass Healing Word](srd_spells_mass_healing_word.md)
+ - Alias: [Mass Healing Word](srd_spells_mass_healing_word.md)
@@ -37528,7 +37528,7 @@ SubItems:
- - SRD: [Power Word Stun](srd_spells_power_word_stun.md)
+ - Alias: [Power Word Stun](srd_spells_power_word_stun.md)
@@ -37658,7 +37658,7 @@ SubItems:
- - SRD: [Power Word Kill](srd_spells_power_word_kill.md)
+ - Alias: [Power Word Kill](srd_spells_power_word_kill.md)
@@ -37773,7 +37773,7 @@ SubItems:
- - SRD: [Word of Recall](srd_spells_word_of_recall.md)
+ - Alias: [Word of Recall](srd_spells_word_of_recall.md)
@@ -37905,7 +37905,7 @@ SubItems:
- - SRD: [Hypnotic Pattern](srd_spells_hypnotic_pattern.md)
+ - Alias: [Hypnotic Pattern](srd_spells_hypnotic_pattern.md)
@@ -38057,7 +38057,7 @@ SubItems:
- - SRD: [Wall of Thorns](srd_spells_wall_of_thorns.md)
+ - Alias: [Wall of Thorns](srd_spells_wall_of_thorns.md)
@@ -38241,7 +38241,7 @@ SubItems:
- - SRD: [Wall of Fire](srd_spells_wall_of_fire.md)
+ - Alias: [Wall of Fire](srd_spells_wall_of_fire.md)
@@ -38425,7 +38425,7 @@ SubItems:
- - SRD: [Wall of Force](srd_spells_wall_of_force.md)
+ - Alias: [Wall of Force](srd_spells_wall_of_force.md)
@@ -38564,7 +38564,7 @@ SubItems:
- - SRD: [Wall of Ice](srd_spells_wall_of_ice.md)
+ - Alias: [Wall of Ice](srd_spells_wall_of_ice.md)
@@ -38733,7 +38733,7 @@ SubItems:
- - SRD: [Wall of Stone](srd_spells_wall_of_stone.md)
+ - Alias: [Wall of Stone](srd_spells_wall_of_stone.md)
@@ -38932,7 +38932,7 @@ SubItems:
- - SRD: [Wind Wall](srd_spells_wind_wall.md)
+ - Alias: [Wind Wall](srd_spells_wind_wall.md)
@@ -39084,7 +39084,7 @@ SubItems:
- - SRD: [Prismatic Wall](srd_spells_prismatic_wall.md)
+ - Alias: [Prismatic Wall](srd_spells_prismatic_wall.md)
@@ -39398,7 +39398,7 @@ SubItems:
- - SRD: [Fog Cloud](srd_spells_fog_cloud.md)
+ - Alias: [Fog Cloud](srd_spells_fog_cloud.md)
@@ -39646,7 +39646,7 @@ SubItems:
- - SRD: [Nondetection](srd_spells_nondetection.md)
+ - Alias: [Nondetection](srd_spells_nondetection.md)
@@ -39782,7 +39782,7 @@ SubItems:
- - SRD: [Incendiary Cloud](srd_spells_incendiary_cloud.md)
+ - Alias: [Incendiary Cloud](srd_spells_incendiary_cloud.md)
@@ -39948,7 +39948,7 @@ SubItems:
- - SRD: [Cloudkill](srd_spells_cloudkill.md)
+ - Alias: [Cloudkill](srd_spells_cloudkill.md)
@@ -40130,7 +40130,7 @@ SubItems:
- - SRD: [Stinking Cloud](srd_spells_stinking_cloud.md)
+ - Alias: [Stinking Cloud](srd_spells_stinking_cloud.md)
@@ -40282,7 +40282,7 @@ SubItems:
- - SRD: [Meteor Swarm](srd_spells_meteor_swarm.md)
+ - Alias: [Meteor Swarm](srd_spells_meteor_swarm.md)
@@ -40532,7 +40532,7 @@ SubItems:
- - SRD: [Arcane Eye](srd_spells_arcane_eye.md)
+ - Alias: [Arcane Eye](srd_spells_arcane_eye.md)
@@ -40998,7 +40998,7 @@ SubItems:
- - SRD: [Divine Word](srd_spells_divine_word.md)
+ - Alias: [Divine Word](srd_spells_divine_word.md)
@@ -41203,7 +41203,7 @@ SubItems:
- - SRD: [Misty Step](srd_spells_misty_step.md)
+ - Alias: [Misty Step](srd_spells_misty_step.md)
@@ -41495,7 +41495,7 @@ SubItems:
- - SRD: [Tree Stride](srd_spells_tree_stride.md)
+ - Alias: [Tree Stride](srd_spells_tree_stride.md)
@@ -41632,7 +41632,7 @@ SubItems:
- - SRD: [Pass without Trace](srd_spells_pass_without_trace.md)
+ - Alias: [Pass without Trace](srd_spells_pass_without_trace.md)
@@ -41785,7 +41785,7 @@ SubItems:
- - SRD: [Passwall](srd_spells_passwall.md)
+ - Alias: [Passwall](srd_spells_passwall.md)
@@ -41922,7 +41922,7 @@ SubItems:
- - SRD: [Spider Climb](srd_spells_spider_climb.md)
+ - Alias: [Spider Climb](srd_spells_spider_climb.md)
@@ -42046,7 +42046,7 @@ SubItems:
- - SRD: [Barkskin](srd_spells_barkskin.md)
+ - Alias: [Barkskin](srd_spells_barkskin.md)
@@ -42170,7 +42170,7 @@ SubItems:
- - SRD: [Stoneskin](srd_spells_stoneskin.md)
+ - Alias: [Stoneskin](srd_spells_stoneskin.md)
@@ -42294,7 +42294,7 @@ SubItems:
- - SRD: [Tiny Hut](srd_spells_tiny_hut.md)
+ - Alias: [Tiny Hut](srd_spells_tiny_hut.md)
@@ -42448,7 +42448,7 @@ SubItems:
- - SRD: [Flesh to Stone](srd_spells_flesh_to_stone.md)
+ - Alias: [Flesh to Stone](srd_spells_flesh_to_stone.md)
@@ -42617,7 +42617,7 @@ SubItems:
- - SRD: [Fear](srd_spells_fear.md)
+ - Alias: [Fear](srd_spells_fear.md)
@@ -42869,7 +42869,7 @@ SubItems:
- - SRD: [Shocking Grasp](srd_spells_shocking_grasp.md)
+ - Alias: [Shocking Grasp](srd_spells_shocking_grasp.md)
@@ -43116,7 +43116,7 @@ SubItems:
- - SRD: [Gate](srd_spells_gate.md)
+ - Alias: [Gate](srd_spells_gate.md)
@@ -43282,7 +43282,7 @@ SubItems:
- - SRD: [Dimension Door](srd_spells_dimension_door.md)
+ - Alias: [Dimension Door](srd_spells_dimension_door.md)
@@ -43544,7 +43544,7 @@ SubItems:
- - SRD: [Magic Jar](srd_spells_magic_jar.md)
+ - Alias: [Magic Jar](srd_spells_magic_jar.md)
@@ -43845,7 +43845,7 @@ SubItems:
- - SRD: [Foresight](srd_spells_foresight.md)
+ - Alias: [Foresight](srd_spells_foresight.md)
@@ -43980,7 +43980,7 @@ SubItems:
- - SRD: [Prestidigitation](srd_spells_prestidigitation.md)
+ - Alias: [Prestidigitation](srd_spells_prestidigitation.md)
@@ -44202,7 +44202,7 @@ SubItems:
- - SRD: [Prayer of Healing](srd_spells_prayer_of_healing.md)
+ - Alias: [Prayer of Healing](srd_spells_prayer_of_healing.md)
@@ -44333,7 +44333,7 @@ SubItems:
- - SRD: [Produce Flame](srd_spells_produce_flame.md)
+ - Alias: [Produce Flame](srd_spells_produce_flame.md)
@@ -44496,7 +44496,7 @@ SubItems:
- - SRD: [Magic Missile](srd_spells_magic_missile.md)
+ - Alias: [Magic Missile](srd_spells_magic_missile.md)
@@ -44760,7 +44760,7 @@ SubItems:
- - SRD: [Astral Projection](srd_spells_astral_projection.md)
+ - Alias: [Astral Projection](srd_spells_astral_projection.md)
@@ -44955,7 +44955,7 @@ SubItems:
- - SRD: [Death Ward](srd_spells_death_ward.md)
+ - Alias: [Death Ward](srd_spells_death_ward.md)
@@ -45090,7 +45090,7 @@ SubItems:
- - SRD: [Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)
+ - Alias: [Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)
@@ -45242,7 +45242,7 @@ SubItems:
- - SRD: [Protection from Poison](srd_spells_protection_from_poison.md)
+ - Alias: [Protection from Poison](srd_spells_protection_from_poison.md)
@@ -45376,7 +45376,7 @@ SubItems:
- - SRD: [Protection from Energy](srd_spells_protection_from_energy.md)
+ - Alias: [Protection from Energy](srd_spells_protection_from_energy.md)
@@ -45497,7 +45497,7 @@ SubItems:
- - SRD: [Guards and Wards](srd_spells_guards_and_wards.md)
+ - Alias: [Guards and Wards](srd_spells_guards_and_wards.md)
@@ -45828,7 +45828,7 @@ SubItems:
- - SRD: [Purify Food and Drink](srd_spells_purify_food_and_drink.md)
+ - Alias: [Purify Food and Drink](srd_spells_purify_food_and_drink.md)
@@ -46097,7 +46097,7 @@ SubItems:
- - SRD: [Raise Dead](srd_spells_raise_dead.md)
+ - Alias: [Raise Dead](srd_spells_raise_dead.md)
@@ -46263,7 +46263,7 @@ SubItems:
- - SRD: [Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)
+ - Alias: [Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)
@@ -46398,7 +46398,7 @@ SubItems:
- - SRD: [Scorching Ray](srd_spells_scorching_ray.md)
+ - Alias: [Scorching Ray](srd_spells_scorching_ray.md)
@@ -46531,7 +46531,7 @@ SubItems:
- - SRD: [Ray of Frost](srd_spells_ray_of_frost.md)
+ - Alias: [Ray of Frost](srd_spells_ray_of_frost.md)
@@ -46666,7 +46666,7 @@ SubItems:
- - SRD: [Moonbeam](srd_spells_moonbeam.md)
+ - Alias: [Moonbeam](srd_spells_moonbeam.md)
@@ -46850,7 +46850,7 @@ SubItems:
- - SRD: [Sunbeam](srd_spells_sunbeam.md)
+ - Alias: [Sunbeam](srd_spells_sunbeam.md)
@@ -47018,7 +47018,7 @@ SubItems:
- - SRD: [Regenerate](srd_spells_regenerate.md)
+ - Alias: [Regenerate](srd_spells_regenerate.md)
@@ -47169,7 +47169,7 @@ SubItems:
- - SRD: [Reincarnate](srd_spells_reincarnate.md)
+ - Alias: [Reincarnate](srd_spells_reincarnate.md)
@@ -47535,7 +47535,7 @@ SubItems:
- - SRD: [Mending](srd_spells_mending.md)
+ - Alias: [Mending](srd_spells_mending.md)
@@ -47686,7 +47686,7 @@ SubItems:
- - SRD: [Expeditious Retreat](srd_spells_expeditious_retreat.md)
+ - Alias: [Expeditious Retreat](srd_spells_expeditious_retreat.md)
@@ -47806,7 +47806,7 @@ SubItems:
- - SRD: [Hellish Rebuke](srd_spells_hellish_rebuke.md)
+ - Alias: [Hellish Rebuke](srd_spells_hellish_rebuke.md)
@@ -47940,7 +47940,7 @@ SubItems:
- - SRD: [Antipathy/Sympathy](srd_spells_antipathysympathy.md)
+ - Alias: [Antipathy/Sympathy](srd_spells_antipathysympathy.md)
@@ -48167,7 +48167,7 @@ SubItems:
- - SRD: [Resistance](srd_spells_resistance.md)
+ - Alias: [Resistance](srd_spells_resistance.md)
@@ -48306,7 +48306,7 @@ SubItems:
- - SRD: [Water Breathing](srd_spells_water_breathing.md)
+ - Alias: [Water Breathing](srd_spells_water_breathing.md)
@@ -48428,7 +48428,7 @@ SubItems:
- - SRD: [Lesser Restoration](srd_spells_lesser_restoration.md)
+ - Alias: [Lesser Restoration](srd_spells_lesser_restoration.md)
@@ -48547,7 +48547,7 @@ SubItems:
- - SRD: [Greater Restoration](srd_spells_greater_restoration.md)
+ - Alias: [Greater Restoration](srd_spells_greater_restoration.md)
@@ -48728,7 +48728,7 @@ SubItems:
- - SRD: [Resurrection](srd_spells_resurrection.md)
+ - Alias: [Resurrection](srd_spells_resurrection.md)
@@ -48924,7 +48924,7 @@ SubItems:
- - SRD: [True Resurrection](srd_spells_true_resurrection.md)
+ - Alias: [True Resurrection](srd_spells_true_resurrection.md)
@@ -49075,7 +49075,7 @@ SubItems:
- - SRD: [Dream](srd_spells_dream.md)
+ - Alias: [Dream](srd_spells_dream.md)
@@ -49241,7 +49241,7 @@ SubItems:
- - SRD: [Revivify](srd_spells_revivify.md)
+ - Alias: [Revivify](srd_spells_revivify.md)
@@ -49362,7 +49362,7 @@ SubItems:
- - SRD: [Hallow](srd_spells_hallow.md)
+ - Alias: [Hallow](srd_spells_hallow.md)
@@ -49693,7 +49693,7 @@ SubItems:
- - SRD: [Sanctuary](srd_spells_sanctuary.md)
+ - Alias: [Sanctuary](srd_spells_sanctuary.md)
@@ -49844,7 +49844,7 @@ SubItems:
- - SRD: [Private Sanctum](srd_spells_private_sanctum.md)
+ - Alias: [Private Sanctum](srd_spells_private_sanctum.md)
@@ -50218,7 +50218,7 @@ SubItems:
- - SRD: [Jump](srd_spells_jump.md)
+ - Alias: [Jump](srd_spells_jump.md)
@@ -50340,7 +50340,7 @@ SubItems:
- - SRD: [Scrying](srd_spells_scrying.md)
+ - Alias: [Scrying](srd_spells_scrying.md)
@@ -50618,7 +50618,7 @@ SubItems:
- - SRD: [Sequester](srd_spells_sequester.md)
+ - Alias: [Sequester](srd_spells_sequester.md)
@@ -50770,7 +50770,7 @@ SubItems:
- - SRD: [Unseen Servant](srd_spells_unseen_servant.md)
+ - Alias: [Unseen Servant](srd_spells_unseen_servant.md)
@@ -50924,7 +50924,7 @@ SubItems:
- - SRD: [Silence](srd_spells_silence.md)
+ - Alias: [Silence](srd_spells_silence.md)
@@ -51062,7 +51062,7 @@ SubItems:
- - SRD: [Simulacrum](srd_spells_simulacrum.md)
+ - Alias: [Simulacrum](srd_spells_simulacrum.md)
@@ -51243,7 +51243,7 @@ SubItems:
- - SRD: [False Life](srd_spells_false_life.md)
+ - Alias: [False Life](srd_spells_false_life.md)
@@ -51378,7 +51378,7 @@ SubItems:
- - SRD: [Cure Wounds](srd_spells_cure_wounds.md)
+ - Alias: [Cure Wounds](srd_spells_cure_wounds.md)
@@ -51511,7 +51511,7 @@ SubItems:
- - SRD: [Mass Cure Wounds](srd_spells_mass_cure_wounds.md)
+ - Alias: [Mass Cure Wounds](srd_spells_mass_cure_wounds.md)
@@ -51645,7 +51645,7 @@ SubItems:
- - SRD: [Sleep](srd_spells_sleep.md)
+ - Alias: [Sleep](srd_spells_sleep.md)
@@ -51809,7 +51809,7 @@ SubItems:
- - SRD: [Wish](srd_spells_wish.md)
+ - Alias: [Wish](srd_spells_wish.md)
@@ -52092,7 +52092,7 @@ SubItems:
- - SRD: [Flaming Sphere](srd_spells_flaming_sphere.md)
+ - Alias: [Flaming Sphere](srd_spells_flaming_sphere.md)
@@ -52260,7 +52260,7 @@ SubItems:
- - SRD: [Freezing Sphere](srd_spells_freezing_sphere.md)
+ - Alias: [Freezing Sphere](srd_spells_freezing_sphere.md)
@@ -52472,7 +52472,7 @@ SubItems:
- - SRD: [Resilient Sphere](srd_spells_resilient_sphere.md)
+ - Alias: [Resilient Sphere](srd_spells_resilient_sphere.md)
@@ -52885,7 +52885,7 @@ SubItems:
- - SRD: [Suggestion](srd_spells_suggestion.md)
+ - Alias: [Suggestion](srd_spells_suggestion.md)
@@ -53080,7 +53080,7 @@ SubItems:
- - SRD: [Mass Suggestion](srd_spells_mass_suggestion.md)
+ - Alias: [Mass Suggestion](srd_spells_mass_suggestion.md)
@@ -53259,7 +53259,7 @@ SubItems:
- - SRD: [Symbol](srd_spells_symbol.md)
+ - Alias: [Symbol](srd_spells_symbol.md)
@@ -53590,7 +53590,7 @@ SubItems:
- - SRD: [Telekinesis](srd_spells_telekinesis.md)
+ - Alias: [Telekinesis](srd_spells_telekinesis.md)
@@ -53784,7 +53784,7 @@ SubItems:
- - SRD: [Teleport](srd_spells_teleport.md)
+ - Alias: [Teleport](srd_spells_teleport.md)
@@ -54130,7 +54130,7 @@ SubItems:
- - SRD: [Fire Storm](srd_spells_fire_storm.md)
+ - Alias: [Fire Storm](srd_spells_fire_storm.md)
@@ -54279,7 +54279,7 @@ SubItems:
- - SRD: [Ice Storm](srd_spells_ice_storm.md)
+ - Alias: [Ice Storm](srd_spells_ice_storm.md)
@@ -54446,7 +54446,7 @@ SubItems:
- - SRD: [Sleet Storm](srd_spells_sleet_storm.md)
+ - Alias: [Sleet Storm](srd_spells_sleet_storm.md)
@@ -54732,7 +54732,7 @@ SubItems:
- - SRD: [Storm of Vengeance](srd_spells_storm_of_vengeance.md)
+ - Alias: [Storm of Vengeance](srd_spells_storm_of_vengeance.md)
@@ -54943,7 +54943,7 @@ SubItems:
- - SRD: [Darkness](srd_spells_darkness.md)
+ - Alias: [Darkness](srd_spells_darkness.md)
@@ -55095,7 +55095,7 @@ SubItems:
- - SRD: [Black Tentacles](srd_spells_black_tentacles.md)
+ - Alias: [Black Tentacles](srd_spells_black_tentacles.md)
@@ -55248,7 +55248,7 @@ SubItems:
- - SRD: [Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)
+ - Alias: [Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)
@@ -55414,7 +55414,7 @@ SubItems:
- - SRD: [Illusory Script](srd_spells_illusory_script.md)
+ - Alias: [Illusory Script](srd_spells_illusory_script.md)
@@ -55563,7 +55563,7 @@ SubItems:
- - SRD: [Thaumaturgy](srd_spells_thaumaturgy.md)
+ - Alias: [Thaumaturgy](srd_spells_thaumaturgy.md)
@@ -55801,7 +55801,7 @@ SubItems:
- - SRD: [Web](srd_spells_web.md)
+ - Alias: [Web](srd_spells_web.md)
@@ -55998,7 +55998,7 @@ SubItems:
- - SRD: [Fire Bolt](srd_spells_fire_bolt.md)
+ - Alias: [Fire Bolt](srd_spells_fire_bolt.md)
@@ -56258,7 +56258,7 @@ SubItems:
- - SRD: [Transport via Plants](srd_spells_transport_via_plants.md)
+ - Alias: [Transport via Plants](srd_spells_transport_via_plants.md)
@@ -56378,7 +56378,7 @@ SubItems:
- - SRD: [Earthquake](srd_spells_earthquake.md)
+ - Alias: [Earthquake](srd_spells_earthquake.md)
@@ -56620,7 +56620,7 @@ SubItems:
- - SRD: [Mislead](srd_spells_mislead.md)
+ - Alias: [Mislead](srd_spells_mislead.md)
@@ -56783,7 +56783,7 @@ SubItems:
- - SRD: [Find Traps](srd_spells_find_traps.md)
+ - Alias: [Find Traps](srd_spells_find_traps.md)
@@ -56918,7 +56918,7 @@ SubItems:
- - SRD: [Find the Path](srd_spells_find_the_path.md)
+ - Alias: [Find the Path](srd_spells_find_the_path.md)
@@ -57055,7 +57055,7 @@ SubItems:
- - SRD: [Find Steed](srd_spells_find_steed.md)
+ - Alias: [Find Steed](srd_spells_find_steed.md)
@@ -57263,7 +57263,7 @@ SubItems:
- - SRD: [Thunderwave](srd_spells_thunderwave.md)
+ - Alias: [Thunderwave](srd_spells_thunderwave.md)
@@ -57442,7 +57442,7 @@ SubItems:
- - SRD: [Arcane Lock](srd_spells_arcane_lock.md)
+ - Alias: [Arcane Lock](srd_spells_arcane_lock.md)
@@ -57577,7 +57577,7 @@ SubItems:
- - SRD: [True Strike](srd_spells_true_strike.md)
+ - Alias: [True Strike](srd_spells_true_strike.md)
@@ -57696,7 +57696,7 @@ SubItems:
- - SRD: [Darkvision](srd_spells_darkvision.md)
+ - Alias: [Darkvision](srd_spells_darkvision.md)
@@ -57817,7 +57817,7 @@ SubItems:
- - SRD: [True Seeing](srd_spells_true_seeing.md)
+ - Alias: [True Seeing](srd_spells_true_seeing.md)
@@ -58065,7 +58065,7 @@ SubItems:
- - SRD: [See Invisibility](srd_spells_see_invisibility.md)
+ - Alias: [See Invisibility](srd_spells_see_invisibility.md)
@@ -58187,7 +58187,7 @@ SubItems:
- - SRD: [Fly](srd_spells_fly.md)
+ - Alias: [Fly](srd_spells_fly.md)
@@ -58324,7 +58324,7 @@ SubItems:
- - SRD: [Zone of Truth](srd_spells_zone_of_truth.md)
+ - Alias: [Zone of Truth](srd_spells_zone_of_truth.md)
@@ -58460,7 +58460,7 @@ AttributesDictionary: >+
- - SRD: [Spells](srd_spells.md)
+ - Alias: [Spells](srd_spells.md)
@@ -58475,7 +58475,7 @@ AttributesDictionary: >+
# Agrandir/rétrécir
-- SRD: [Enlarge/Reduce](srd_spells_enlargereduce.md)
+- Alias: [Enlarge/Reduce](srd_spells_enlargereduce.md)
- Transmutation de niveau 2
@@ -58507,7 +58507,7 @@ Si la cible est une créature, tout ce qu'elle porte et tout ce qu'elle transpor
# Aide
-- SRD: [Aid](srd_spells_aid.md)
+- Alias: [Aid](srd_spells_aid.md)
- Abjuration de niveau 2
@@ -58535,7 +58535,7 @@ Le sort renforce vos alliés, qui deviennent plus robustes et plus résolus. Cho
# Alarme
-- SRD: [Alarm](srd_spells_alarm.md)
+- Alias: [Alarm](srd_spells_alarm.md)
- Abjuration de niveau 1 (rituel)
@@ -58565,7 +58565,7 @@ Une alarme audible émet le même son qu'une cloche d'alerte pendant 10 secondes
# Allié planaire
-- SRD: [Planar Ally](srd_spells_planar_ally.md)
+- Alias: [Planar Ally](srd_spells_planar_ally.md)
- Invocation de niveau 6
@@ -58605,7 +58605,7 @@ Une telle créature enrôlée dans votre groupe compte comme un membre à part e
# Amélioration de caractéristique
-- SRD: [Enhance Ability](srd_spells_enhance_ability.md)
+- Alias: [Enhance Ability](srd_spells_enhance_ability.md)
- Transmutation de niveau 2
@@ -58645,7 +58645,7 @@ Vous touchez une créature pour lui accorder une amélioration magique. Choisiss
# Amitié avec les animaux
-- SRD: [Animal Friendship](srd_spells_animal_friendship.md)
+- Alias: [Animal Friendship](srd_spells_animal_friendship.md)
- Enchantement de niveau 1
@@ -58673,7 +58673,7 @@ Grâce à ce sort, vous convainquez une bête que vous ne lui voulez aucun mal.
# Animation des morts
-- SRD: [Animate Dead](srd_spells_animate_dead.md)
+- Alias: [Animate Dead](srd_spells_animate_dead.md)
- Nécromancie de niveau 3
@@ -58707,7 +58707,7 @@ La créature est placée sous votre contrôle pendant 24 heures, après quoi ell
# Animation des objets
-- SRD: [Animate Objects](srd_spells_animate_objects.md)
+- Alias: [Animate Objects](srd_spells_animate_objects.md)
- Transmutation de niveau 5
@@ -58753,7 +58753,7 @@ Si vous ordonnez à un objet animé d'attaquer, il a droit à une attaque au cor
# Apaisement des émotions
-- SRD: [Calm Emotions](srd_spells_calm_emotions.md)
+- Alias: [Calm Emotions](srd_spells_calm_emotions.md)
- Enchantement de niveau 2
@@ -58783,7 +58783,7 @@ Vous tentez de supprimer les émotions fortes au sein d'un groupe de gens. Chaqu
# Apparence trompeuse
-- SRD: [Seeming](srd_spells_seeming.md)
+- Alias: [Seeming](srd_spells_seeming.md)
- Illusion de niveau 5
@@ -58819,7 +58819,7 @@ Une créature peut utiliser son action pour examiner une cible et faire un test
# Appel de familier
-- SRD: [Find Familiar](srd_spells_find_familiar.md)
+- Alias: [Find Familiar](srd_spells_find_familiar.md)
- Invocation de niveau 1 (rituel)
@@ -58857,7 +58857,7 @@ Enfin, quand vous lancez un sort avec une portée de « contact », votre famili
# Appel de la foudre
-- SRD: [Call Lightning](srd_spells_call_lightning.md)
+- Alias: [Call Lightning](srd_spells_call_lightning.md)
- Invocation de niveau 3
@@ -58911,7 +58911,7 @@ Ces projectiles sont magiques et infligent 1d6 dégâts supplémentaires. De plu
# Arme magique
-- SRD: [Magic Weapon](srd_spells_magic_weapon.md)
+- Alias: [Magic Weapon](srd_spells_magic_weapon.md)
- Transmutation de niveau 2
@@ -58959,7 +58959,7 @@ Vous brandissez votre arme et l'investissez du pouvoir de combattre le mal. Jusq
# Arme spirituelle
-- SRD: [Spiritual Weapon](srd_spells_spiritual_weapon.md)
+- Alias: [Spiritual Weapon](srd_spells_spiritual_weapon.md)
- Évocation de niveau 2
@@ -58993,7 +58993,7 @@ L'arme peut revêtir la forme de votre choix. Les clercs des divinités associé
# Armure du mage
-- SRD: [Mage Armor](srd_spells_mage_armor.md)
+- Alias: [Mage Armor](srd_spells_mage_armor.md)
- Abjuration de niveau 1
@@ -59019,7 +59019,7 @@ Vous touchez une créature consentante qui ne porte pas d'armure et l'enveloppez
# Arrêt du temps
-- SRD: [Time Stop](srd_spells_time_stop.md)
+- Alias: [Time Stop](srd_spells_time_stop.md)
- Transmutation de niveau 9
@@ -59047,7 +59047,7 @@ Ce sort se termine si l'une des actions que vous effectuez lors de ce laps de te
# Aspersion acide
-- SRD: [Acid Splash](srd_spells_acid_splash.md)
+- Alias: [Acid Splash](srd_spells_acid_splash.md)
- Invocation , tour de magie
@@ -59075,7 +59075,7 @@ Les dégâts du sort augmentent de 1d6 quand vous atteignez le niveau 5 (2d6), 1
# Assassin imaginaire
-- SRD: [Phantasmal Killer](srd_spells_phantasmal_killer.md)
+- Alias: [Phantasmal Killer](srd_spells_phantasmal_killer.md)
- Illusion de niveau 4
@@ -59107,7 +59107,7 @@ Elle subit 4d10 dégâts psychiques à chaque échec. Le sort se termine dès qu
# Assistance
-- SRD: [Guidance](srd_spells_guidance.md)
+- Alias: [Guidance](srd_spells_guidance.md)
- Divination, tour de magie
@@ -59133,7 +59133,7 @@ Vous touchez une créature consentante. Une fois avant la fin du sort, la cible
# Augure
-- SRD: [Augury](srd_spells_augury.md)
+- Alias: [Augury](srd_spells_augury.md)
- Divination de niveau 2
@@ -59209,7 +59209,7 @@ Le rayon d'action de ce sort double lorsque vous atteignez le niveau 5 (3 mètre
# Aura magique de l'arcaniste
-- SRD: [Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)
+- Alias: [Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)
- Illusion de niveau 2
@@ -59241,7 +59241,7 @@ Lorsque vous lancez le sort, vous choisissez l'un des effets suivants, ou les de
# Aura sacrée
-- SRD: [Holy Aura](srd_spells_holy_aura.md)
+- Alias: [Holy Aura](srd_spells_holy_aura.md)
- Abjuration de niveau 8
@@ -59269,7 +59269,7 @@ Les créatures de votre choix qui se trouvent dans cette zone au moment où vous
# Bagou
-- SRD: [Glibness](srd_spells_glibness.md)
+- Alias: [Glibness](srd_spells_glibness.md)
- Transmutation de niveau 8
@@ -59295,7 +59295,7 @@ Jusqu'à la fin du sort, chaque fois que vous effectuez un test de [Charisme](hd
# Baies nourricières
-- SRD: [Goodberry](srd_spells_goodberry.md)
+- Alias: [Goodberry](srd_spells_goodberry.md)
- Transmutation de niveau 1
@@ -59325,7 +59325,7 @@ Les baies perdent leurs propriétés si personne ne les mange dans les 24 heures
# Balisage
-- SRD: [Guiding Bolt](srd_spells_guiding_bolt.md)
+- Alias: [Guiding Bolt](srd_spells_guiding_bolt.md)
- Évocation de niveau 1
@@ -59353,7 +59353,7 @@ Un rayon de lumière frappe une créature de votre choix située à portée. Fai
# Bannissement
-- SRD: [Banishment](srd_spells_banishment.md)
+- Alias: [Banishment](srd_spells_banishment.md)
- Abjuration de niveau 4
@@ -59389,7 +59389,7 @@ Si le sort se termine avant que 1 minute ne se soit écoulée, la cible réappar
# Barrière de lames
-- SRD: [Blade Barrier](srd_spells_blade_barrier.md)
+- Alias: [Blade Barrier](srd_spells_blade_barrier.md)
- Évocation de niveau 6
@@ -59417,7 +59417,7 @@ Quand une créature pénètre dans la zone du mur pour la première fois au cour
# Bénédiction
-- SRD: [Bless](srd_spells_bless.md)
+- Alias: [Bless](srd_spells_bless.md)
- Enchantement de niveau 1
@@ -59463,7 +59463,7 @@ Vous désignez jusqu'à 5 créatures à portée et que vous pouvez voir. Les cib
# Blessure
-- SRD: [Inflict Wounds](srd_spells_inflict_wounds.md)
+- Alias: [Inflict Wounds](srd_spells_inflict_wounds.md)
- Nécromancie de niveau 1
@@ -59491,7 +59491,7 @@ Faites une attaque de sort au corps-à-corps contre une créature située à une
# Bouche magique
-- SRD: [Magic Mouth](srd_spells_magic_mouth.md)
+- Alias: [Magic Mouth](srd_spells_magic_mouth.md)
- Illusion de niveau 2 (rituel)
@@ -59523,7 +59523,7 @@ Ces dernières peuvent être aussi génériques ou spécifiques que vous le dés
# Bouclier
-- SRD: [Shield](srd_spells_shield.md)
+- Alias: [Shield](srd_spells_shield.md)
- Abjuration de niveau 1
@@ -59549,7 +59549,7 @@ Une barrière [invisible](hd_conditions_invisible.md) faite de force magique app
# Bouclier de feu
-- SRD: [Fire Shield](srd_spells_fire_shield.md)
+- Alias: [Fire Shield](srd_spells_fire_shield.md)
- Évocation de niveau 4
@@ -59579,7 +59579,7 @@ De plus, quand une créature située dans un rayon de 1,50 mètre autour de vous
# Bouclier de la foi
-- SRD: [Shield of Faith](srd_spells_shield_of_faith.md)
+- Alias: [Shield of Faith](srd_spells_shield_of_faith.md)
- Abjuration de niveau 1
@@ -59605,7 +59605,7 @@ Un champ scintillant apparaît autour d'une créature de votre choix située à
# Bouffée de poison
-- SRD: [Poison Spray](srd_spells_poison_spray.md)
+- Alias: [Poison Spray](srd_spells_poison_spray.md)
- Invocation , tour de magie
@@ -59633,7 +59633,7 @@ Les dégâts du sort augmentent de 1d12 quand vous atteignez le niveau 5 (2d12),
# Boule de feu
-- SRD: [Fireball](srd_spells_fireball.md)
+- Alias: [Fireball](srd_spells_fireball.md)
- Évocation de niveau 3
@@ -59663,7 +59663,7 @@ Le feu s'étend en contournant les angles. Il embrase les objets inflammables de
# Boule de feu à explosion retardée
-- SRD: [Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)
+- Alias: [Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)
- Évocation de niveau 7
@@ -59699,7 +59699,7 @@ Les flammes endommagent les objets qui se trouvent dans la zone et embrasent les
# Bourrasque
-- SRD: [Gust of Wind](srd_spells_gust_of_wind.md)
+- Alias: [Gust of Wind](srd_spells_gust_of_wind.md)
- Évocation de niveau 2
@@ -59731,7 +59731,7 @@ Vous pouvez changer la direction dans laquelle souffle la bourrasque au moyen d'
# Briser
-- SRD: [Shatter](srd_spells_shatter.md)
+- Alias: [Shatter](srd_spells_shatter.md)
- Évocation de niveau 2
@@ -59789,7 +59789,7 @@ Les morts-vivants subissent 2d6 points de dégâts et la moitié seulement en ca
# Cage de force
-- SRD: [Forcecage](srd_spells_forcecage.md)
+- Alias: [Forcecage](srd_spells_forcecage.md)
- Évocation de niveau 7
@@ -59825,7 +59825,7 @@ La _[dissipation de la magie](hd_spells_dissipation_de_la_magie.md)_ est sans ef
# Caresse du vampire
-- SRD: [Vampiric Touch](srd_spells_vampiric_touch.md)
+- Alias: [Vampiric Touch](srd_spells_vampiric_touch.md)
- Nécromancie de niveau 3
@@ -59879,7 +59879,7 @@ Au niveau 9, la cible doit réussir un [jet de sauvegarde](hd_abilities_jets_de_
# Cécité/surdité
-- SRD: [Blindness/Deafness](srd_spells_blindnessdeafness.md)
+- Alias: [Blindness/Deafness](srd_spells_blindnessdeafness.md)
- Nécromancie de niveau 2
@@ -59909,7 +59909,7 @@ Choisissez une créature autre que vous qui se situe à portée et dans votre ch
# Cercle de mort
-- SRD: [Circle of Death](srd_spells_circle_of_death.md)
+- Alias: [Circle of Death](srd_spells_circle_of_death.md)
- Nécromancie de niveau 6
@@ -59937,7 +59937,7 @@ Une sphère d'énergie négative s'étend dans un rayon de 18 mètres à partir
# Cercle de téléportation
-- SRD: [Teleportation Circle](srd_spells_teleportation_circle.md)
+- Alias: [Teleportation Circle](srd_spells_teleportation_circle.md)
- Invocation de niveau 5
@@ -59971,7 +59971,7 @@ Vous pouvez créer un cercle de téléportation permanent en lançant ce sort au
# Cercle magique
-- SRD: [Magic Circle](srd_spells_magic_circle.md)
+- Alias: [Magic Circle](srd_spells_magic_circle.md)
- Abjuration de niveau 3
@@ -60011,7 +60011,7 @@ Quand vous lancez ce sort, vous pouvez décider que sa magie agira à l'envers,
# Chaîne d'éclairs
-- SRD: [Chain Lightning](srd_spells_chain_lightning.md)
+- Alias: [Chain Lightning](srd_spells_chain_lightning.md)
- Évocation de niveau 6
@@ -60045,7 +60045,7 @@ Chaque cible doit faire un [jet de sauvegarde](hd_abilities_jets_de_sauvegarde.m
# Champ antimagie
-- SRD: [Antimagic Field](srd_spells_antimagic_field.md)
+- Alias: [Antimagic Field](srd_spells_antimagic_field.md)
- Abjuration de niveau 8
@@ -60089,7 +60089,7 @@ Les propriétés et les pouvoirs d'une arme magique sont supprimés si son utili
# Changement de forme
-- SRD: [Shapechange](srd_spells_shapechange.md)
+- Alias: [Shapechange](srd_spells_shapechange.md)
- Transmutation de niveau 9
@@ -60129,7 +60129,7 @@ Pendant la durée du sort, vous pouvez utiliser votre action pour prendre une no
# Changement de plan
-- SRD: [Plane Shift](srd_spells_plane_shift.md)
+- Alias: [Plane Shift](srd_spells_plane_shift.md)
- Invocation de niveau 7
@@ -60161,7 +60161,7 @@ Vous pouvez aussi utiliser ce sort pour bannir une créature non consentante sur
# Charme-personne
-- SRD: [Charm Person](srd_spells_charm_person.md)
+- Alias: [Charm Person](srd_spells_charm_person.md)
- Enchantement de niveau 1
@@ -60189,7 +60189,7 @@ Vous tentez de charmer un humanoïde se trouvant à portée et dans votre champ
# Chauffer le métal
-- SRD: [Heat Metal](srd_spells_heat_metal.md)
+- Alias: [Heat Metal](srd_spells_heat_metal.md)
- Transmutation de niveau 2
@@ -60223,7 +60223,7 @@ Si une créature tient l'objet qui lui inflige des dégâts ou le porte sur elle
# Chien de garde
-- SRD: [Faithful Hound](srd_spells_faithful_hound.md)
+- Alias: [Faithful Hound](srd_spells_faithful_hound.md)
- Invocation de niveau 4
@@ -60271,7 +60271,7 @@ Vous défiez un adversaire à portée. Tant que vous n'attaquez que cet adversai
# Clairvoyance
-- SRD: [Clairvoyance](srd_spells_clairvoyance.md)
+- Alias: [Clairvoyance](srd_spells_clairvoyance.md)
- Divination de niveau 3
@@ -60303,7 +60303,7 @@ Une créature capable de voir l'organe sensoriel (en bénéficiant par exemple d
# Clignotement
-- SRD: [Blink](srd_spells_blink.md)
+- Alias: [Blink](srd_spells_blink.md)
- Transmutation de niveau 3
@@ -60331,7 +60331,7 @@ Tant que vous êtes sur le plan éthéré, vous voyez et entendez ce qui se pass
# Clone
-- SRD: [Clone](srd_spells_clone.md)
+- Alias: [Clone](srd_spells_clone.md)
- Nécromancie de niveau 8
@@ -60359,7 +60359,7 @@ Une fois que le clone est arrivé à maturité, si la créature originale meurt,
# Coercition mystique
-- SRD: [Geas](srd_spells_geas.md)
+- Alias: [Geas](srd_spells_geas.md)
- Enchantement de niveau 5
@@ -60395,7 +60395,7 @@ Avec un emplacement de sort de niveau 9, il persiste jusqu'à ce que quelqu'un l
# Coffre secret
-- SRD: [Secret Chest](srd_spells_secret_chest.md)
+- Alias: [Secret Chest](srd_spells_secret_chest.md)
- Invocation de niveau 4
@@ -60471,7 +60471,7 @@ Une créature [entravée](hd_conditions_entrave.md) peut utiliser son action à
# Colonne de flamme
-- SRD: [Flame Strike](srd_spells_flame_strike.md)
+- Alias: [Flame Strike](srd_spells_flame_strike.md)
- Évocation de niveau 5
@@ -60501,7 +60501,7 @@ Celles qui échouent subissent 4d6 dégâts de feu et 4d6 dégâts radiants, les
# Communication avec les animaux
-- SRD: [Speak with Animals](srd_spells_speak_with_animals.md)
+- Alias: [Speak with Animals](srd_spells_speak_with_animals.md)
- Divination de niveau 1 (rituel)
@@ -60527,7 +60527,7 @@ Vous devenez capable de comprendre les bêtes et de communiquer verbalement avec
# Communication avec les morts
-- SRD: [Speak with Dead](srd_spells_speak_with_dead.md)
+- Alias: [Speak with Dead](srd_spells_speak_with_dead.md)
- Nécromancie de niveau 3
@@ -60555,7 +60555,7 @@ Vous pouvez poser jusqu'à cinq questions avant la fin de la durée du sort. Les
# Communication avec les plantes
-- SRD: [Speak with Plants](srd_spells_speak_with_plants.md)
+- Alias: [Speak with Plants](srd_spells_speak_with_plants.md)
- Transmutation de niveau 3
@@ -60589,7 +60589,7 @@ Ce sort permet de libérer une créature [entravée](hd_conditions_entrave.md) p
# Communion
-- SRD: [Commune](srd_spells_commune.md)
+- Alias: [Commune](srd_spells_commune.md)
- Divination de niveau 5 (rituel)
@@ -60619,7 +60619,7 @@ Si vous lancez ce sort à deux reprises ou plus avant un long repos, il y a 25 %
# Communion avec la nature
-- SRD: [Commune with Nature](srd_spells_commune_with_nature.md)
+- Alias: [Commune with Nature](srd_spells_commune_with_nature.md)
- Divination de niveau 5 (rituel)
@@ -60703,7 +60703,7 @@ Lorsque vous choisissez d'autres effets, ce second compagnon en bénéficie auss
# Compréhension des langues
-- SRD: [Comprehend Languages](srd_spells_comprehend_languages.md)
+- Alias: [Comprehend Languages](srd_spells_comprehend_languages.md)
- Divination de niveau 1 (rituel)
@@ -60731,7 +60731,7 @@ Ce sort ne décode pas les messages secrets compris dans un texte ni les glyphes
# Compulsion
-- SRD: [Compulsion](srd_spells_compulsion.md)
+- Alias: [Compulsion](srd_spells_compulsion.md)
- Enchantement de niveau 4
@@ -60759,7 +60759,7 @@ Une cible n'est pas obligée de se rendre au sein d'une zone à l'évidence dang
# Cône de froid
-- SRD: [Cone of Cold](srd_spells_cone_of_cold.md)
+- Alias: [Cone of Cold](srd_spells_cone_of_cold.md)
- Évocation de niveau 5
@@ -60789,7 +60789,7 @@ Une créature qui succombe suite à ce sort se transforme en statue de glace jus
# Confusion
-- SRD: [Confusion](srd_spells_confusion.md)
+- Alias: [Confusion](srd_spells_confusion.md)
- Enchantement de niveau 4
@@ -60830,7 +60830,7 @@ Une créature affectée peut faire un [jet de sauvegarde](hd_abilities_jets_de_s
# Contact glacial
-- SRD: [Chill Touch](srd_spells_chill_touch.md)
+- Alias: [Chill Touch](srd_spells_chill_touch.md)
- Nécromancie, tour de magie
@@ -60862,7 +60862,7 @@ Les dégâts du sort augmentent de 1d8 quand vous atteignez les niveaux 5 (2d8),
# Contacter un autre plan
-- SRD: [Contact Other Plane](srd_spells_contact_other_plane.md)
+- Alias: [Contact Other Plane](srd_spells_contact_other_plane.md)
- Divination de niveau 5 (rituel)
@@ -60892,7 +60892,7 @@ Si vous réussissez votre [jet de sauvegarde](hd_abilities_jets_de_sauvegarde.md
# Contagion
-- SRD: [Contagion](srd_spells_contagion.md)
+- Alias: [Contagion](srd_spells_contagion.md)
- Nécromancie de niveau 5
@@ -60940,7 +60940,7 @@ Elle subit un désavantage lors des tests de [Charisme](hd_abilities_charisma.md
# Contamination
-- SRD: [Harm](srd_spells_harm.md)
+- Alias: [Harm](srd_spells_harm.md)
- Nécromancie de niveau 6
@@ -60966,7 +60966,7 @@ Vous transmettez une maladie virulente à une créature située à portée et da
# Contingence
-- SRD: [Contingency](srd_spells_contingency.md)
+- Alias: [Contingency](srd_spells_contingency.md)
- Évocation de niveau 6
@@ -60998,7 +60998,7 @@ Vous ne pouvez utiliser qu'un seul sort de contingence à la fois. Si vous en la
# Contresort
-- SRD: [Counterspell](srd_spells_counterspell.md)
+- Alias: [Counterspell](srd_spells_counterspell.md)
- Abjuration de niveau 3
@@ -61028,7 +61028,7 @@ Si elle essayait de lancer un sort de niveau 3 ou moins, il échoue et reste san
# Contrôle de l'eau
-- SRD: [Control Water](srd_spells_control_water.md)
+- Alias: [Control Water](srd_spells_control_water.md)
- Transmutation de niveau 4
@@ -61068,7 +61068,7 @@ Quand une créature entre dans le vortex pour la première fois de son tour ou q
# Contrôle du climat
-- SRD: [Control Weather](srd_spells_control_weather.md)
+- Alias: [Control Weather](srd_spells_control_weather.md)
- Transmutation de niveau 8
@@ -61131,7 +61131,7 @@ Vent
# Convocations instantanées
-- SRD: [Instant Summons](srd_spells_instant_summons.md)
+- Alias: [Instant Summons](srd_spells_instant_summons.md)
- Invocation de niveau 6 (rituel)
@@ -61165,7 +61165,7 @@ _[Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)_ ou un effet si
# Coquille antivie
-- SRD: [Antilife Shell](srd_spells_antilife_shell.md)
+- Alias: [Antilife Shell](srd_spells_antilife_shell.md)
- Abjuration de niveau 5
@@ -61195,7 +61195,7 @@ Si vous vous déplacez de telle manière qu'une créature affectée est contrain
# Corde enchantée
-- SRD: [Rope Trick](srd_spells_rope_trick.md)
+- Alias: [Rope Trick](srd_spells_rope_trick.md)
- Transmutation de niveau 2
@@ -61229,7 +61229,7 @@ Tout ce qui se trouve dans l'espace extradimensionnel tombe à l'extérieur quan
# Couleurs dansantes
-- SRD: [Color Spray](srd_spells_color_spray.md)
+- Alias: [Color Spray](srd_spells_color_spray.md)
- Illusion de niveau 1
@@ -61259,7 +61259,7 @@ Chaque créature affectée, en commençant par celle qui possède actuellement l
# Création
-- SRD: [Creation](srd_spells_creation.md)
+- Alias: [Creation](srd_spells_creation.md)
- Illusion de niveau 5
@@ -61301,7 +61301,7 @@ Si vous utilisez les matériaux créés via ce sort comme composantes matériell
# Création de mort-vivant
-- SRD: [Create Undead](srd_spells_create_undead.md)
+- Alias: [Create Undead](srd_spells_create_undead.md)
- Nécromancie de niveau 6
@@ -61339,7 +61339,7 @@ Quand vous le lancez à partir d'un emplacement de niveau 9, vous pouvez animer
# Création de nourriture et d'eau
-- SRD: [Create Food and Water](srd_spells_create_food_and_water.md)
+- Alias: [Create Food and Water](srd_spells_create_food_and_water.md)
- Invocation de niveau 3
@@ -61365,7 +61365,7 @@ Vous créez 25 kilogrammes de nourriture et 120 litres d'eau, soit par terre, so
# Création ou destruction d'eau
-- SRD: [Create or Destroy Water](srd_spells_create_or_destroy_water.md)
+- Alias: [Create or Destroy Water](srd_spells_create_or_destroy_water.md)
- Transmutation de niveau 1
@@ -61399,7 +61399,7 @@ Sinon, l'eau peut tomber en pluie dans un cube de 9 mètres d'arête à portée,
# Croissance d'épines
-- SRD: [Spike Growth](srd_spells_spike_growth.md)
+- Alias: [Spike Growth](srd_spells_spike_growth.md)
- Transmutation de niveau 2
@@ -61427,7 +61427,7 @@ La transformation du sol est camouflée, de manière à ce que le terrain ait l'
# Croissance végétale
-- SRD: [Plant Growth](srd_spells_plant_growth.md)
+- Alias: [Plant Growth](srd_spells_plant_growth.md)
- Transmutation de niveau 3
@@ -61461,7 +61461,7 @@ Vous pouvez exclure une ou plusieurs portions, de n'importe quelle taille, de la
# Danse irrésistible
-- SRD: [Irresistible Dance](srd_spells_irresistible_dance.md)
+- Alias: [Irresistible Dance](srd_spells_irresistible_dance.md)
- Enchantement de niveau 6
@@ -61491,7 +61491,7 @@ Tant que la cible est affectée par ce sort, les autres créatures bénéficient
# Déblocage
-- SRD: [Knock](srd_spells_knock.md)
+- Alias: [Knock](srd_spells_knock.md)
- Transmutation de niveau 2
@@ -61521,7 +61521,7 @@ Quand vous lancez le sort, un cliquetis émane de l'objet et retentit si fort qu
# Déguisement
-- SRD: [Disguise Self](srd_spells_disguise_self.md)
+- Alias: [Disguise Self](srd_spells_disguise_self.md)
- Illusion de niveau 1
@@ -61551,7 +61551,7 @@ Pour percer votre déguisement à jour, une créature peut dépenser une action
# Demi-plan
-- SRD: [Demiplane](srd_spells_demiplane.md)
+- Alias: [Demiplane](srd_spells_demiplane.md)
- Invocation de niveau 8
@@ -61579,7 +61579,7 @@ Vous pouvez créer un nouveau demi-plan pour chaque incantation du sort ou relie
# Déplacer la terre
-- SRD: [Move Earth](srd_spells_move_earth.md)
+- Alias: [Move Earth](srd_spells_move_earth.md)
- Transmutation de niveau 6
@@ -61611,7 +61611,7 @@ De même, le sort n'affecte pas directement la croissance des plantes. La terre
# Désintégration
-- SRD: [Disintegrate](srd_spells_disintegrate.md)
+- Alias: [Disintegrate](srd_spells_disintegrate.md)
- Transmutation de niveau 6
@@ -61667,7 +61667,7 @@ Les morts-vivants, les créatures artificielles et les élémentaires sont immun
# Détection de la magie
-- SRD: [Detect Magic](srd_spells_detect_magic.md)
+- Alias: [Detect Magic](srd_spells_detect_magic.md)
- Divination de niveau 1 (rituel)
@@ -61695,7 +61695,7 @@ Le sort ignore la plupart des obstacles, mais il ne peut pas franchir 30 centim
# Détection des pensées
-- SRD: [Detect Thoughts](srd_spells_detect_thoughts.md)
+- Alias: [Detect Thoughts](srd_spells_detect_thoughts.md)
- Divination de niveau 2
@@ -61737,7 +61737,7 @@ Une fois que vous avez ainsi détecté la présence d'une créature, vous pouvez
# Détection du mal et du bien
-- SRD: [Detect Evil and Good](srd_spells_detect_evil_and_good.md)
+- Alias: [Detect Evil and Good](srd_spells_detect_evil_and_good.md)
- Divination de niveau 1
@@ -61765,7 +61765,7 @@ Le sort ignore la plupart des obstacles, mais il ne peut pas franchir 30 centim
# Détection du poison et des maladies
-- SRD: [Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)
+- Alias: [Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)
- Divination de niveau 1 (rituel)
@@ -61793,7 +61793,7 @@ Le sort ignore la plupart des obstacles, mais il ne peut pas franchir 30 centim
# Disque flottant
-- SRD: [Floating Disk](srd_spells_floating_disk.md)
+- Alias: [Floating Disk](srd_spells_floating_disk.md)
- Invocation de niveau 1 (rituel)
@@ -61825,7 +61825,7 @@ Si vous vous éloignez à plus de 30 mètres du disque (typiquement parce qu'il
# Dissipation de la magie
-- SRD: [Dispel Magic](srd_spells_dispel_magic.md)
+- Alias: [Dispel Magic](srd_spells_dispel_magic.md)
- Abjuration de niveau 3
@@ -61853,7 +61853,7 @@ Choisissez une créature, un objet ou un effet magique à portée. Tout sort de
# Dissipation du mal et du bien
-- SRD: [Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)
+- Alias: [Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)
- Abjuration de niveau 5
@@ -61885,7 +61885,7 @@ Vous pouvez terminer le sort plus tôt en utilisant l'une des fonctions spécial
# Divination
-- SRD: [Divination](srd_spells_divination.md)
+- Alias: [Divination](srd_spells_divination.md)
- Divination de niveau 4 (rituel)
@@ -61915,7 +61915,7 @@ Si vous lancez ce sort à deux reprises ou plus avant un long repos, il y a 25 %
# Doigt de mort
-- SRD: [Finger of Death](srd_spells_finger_of_death.md)
+- Alias: [Finger of Death](srd_spells_finger_of_death.md)
- Nécromancie de niveau 7
@@ -61943,7 +61943,7 @@ Si ce sort achève un humanoïde, ce dernier se relève au début de votre proch
# Dominer un humanoïde
-- SRD: [Dominate Person](srd_spells_dominate_person.md)
+- Alias: [Dominate Person](srd_spells_dominate_person.md)
- Enchantement de niveau 5
@@ -61983,7 +61983,7 @@ Si vous lancez ce sort en utilisant un emplacement de niveau 8, la durée devien
# Dominer un monstre
-- SRD: [Dominate Monster](srd_spells_dominate_monster.md)
+- Alias: [Dominate Monster](srd_spells_dominate_monster.md)
- Enchantement de niveau 8
@@ -62021,7 +62021,7 @@ Si elle le réussit, le sort prend fin.
# Dominer une bête
-- SRD: [Dominate Beast](srd_spells_dominate_beast.md)
+- Alias: [Dominate Beast](srd_spells_dominate_beast.md)
- Enchantement de niveau 4
@@ -62059,7 +62059,7 @@ Si elle le réussit, le sort prend fin.
# Doux repos
-- SRD: [Gentle Repose](srd_spells_gentle_repose.md)
+- Alias: [Gentle Repose](srd_spells_gentle_repose.md)
- Nécromancie de niveau 2 (rituel)
@@ -62087,7 +62087,7 @@ Le sort rallonge aussi la période pendant laquelle on peut rappeler la cible d'
# Druidisme
-- SRD: [Druidcraft](srd_spells_druidcraft.md)
+- Alias: [Druidcraft](srd_spells_druidcraft.md)
- Transmutation, tour de magie
@@ -62121,7 +62121,7 @@ Vous créez l'un des effets suivants à portée après quelques murmures adress
# Éclair
-- SRD: [Lightning Bolt](srd_spells_lightning_bolt.md)
+- Alias: [Lightning Bolt](srd_spells_lightning_bolt.md)
- Évocation de niveau 3
@@ -62175,7 +62175,7 @@ Vous pouvez lancer un éclat de bois supplémentaire lorsque vous atteignez les
# Éclat du soleil
-- SRD: [Sunburst](srd_spells_sunburst.md)
+- Alias: [Sunburst](srd_spells_sunburst.md)
- Évocation de niveau 8
@@ -62207,7 +62207,7 @@ Ce sort dissipe toutes les ténèbres issues d'un sort présentes dans la zone.
# Embruns prismatiques
-- SRD: [Prismatic Spray](srd_spells_prismatic_spray.md)
+- Alias: [Prismatic Spray](srd_spells_prismatic_spray.md)
- Évocation de niveau 7
@@ -62247,7 +62247,7 @@ Huit rayons de lumière multicolores jaillissent de votre main. Chacun a une cou
# Emprisonnement
-- SRD: [Imprisonment](srd_spells_imprisonment.md)
+- Alias: [Imprisonment](srd_spells_imprisonment.md)
- Abjuration de niveau 9
@@ -62297,7 +62297,7 @@ Vous pouvez utiliser une composante spéciale pour créer une prison à la fois
# Enchevêtrement
-- SRD: [Entangle](srd_spells_entangle.md)
+- Alias: [Entangle](srd_spells_entangle.md)
- Invocation de niveau 1
@@ -62327,7 +62327,7 @@ Quand le sort se termine, les plantes invoquées flétrissent.
# Entrave planaire
-- SRD: [Planar Binding](srd_spells_planar_binding.md)
+- Alias: [Planar Binding](srd_spells_planar_binding.md)
- Abjuration de niveau 5
@@ -62357,7 +62357,7 @@ La créature liée doit suivre vos instructions au mieux de ses capacités. Vous
# Envoi de message
-- SRD: [Sending](srd_spells_sending.md)
+- Alias: [Sending](srd_spells_sending.md)
- Évocation de niveau 3
@@ -62385,7 +62385,7 @@ Vous pouvez envoyer votre message à n'importe quelle distance, et même sur un
# Envoûtement
-- SRD: [Enthrall](srd_spells_enthrall.md)
+- Alias: [Enthrall](srd_spells_enthrall.md)
- Enchantement de niveau 2
@@ -62411,7 +62411,7 @@ Vous entonnez une suite de paroles envoûtantes qui obligent les créatures de v
# Épargner les mourants
-- SRD: [Spare the Dying](srd_spells_spare_the_dying.md)
+- Alias: [Spare the Dying](srd_spells_spare_the_dying.md)
- Nécromancie, tour de magie
@@ -62455,7 +62455,7 @@ Votre épée devient une épée de justice pour toute la durée du sort. Elle b
# Épée magique
-- SRD: [Arcane Sword](srd_spells_arcane_sword.md)
+- Alias: [Arcane Sword](srd_spells_arcane_sword.md)
- Évocation de niveau 7
@@ -62483,7 +62483,7 @@ Dès que l'épée apparaît, vous faites une attaque de sort au corps-à-corps c
# Esprit faible
-- SRD: [Feeblemind](srd_spells_feeblemind.md)
+- Alias: [Feeblemind](srd_spells_feeblemind.md)
- Enchantement de niveau 8
@@ -62513,7 +62513,7 @@ La créature peut refaire un [jet de sauvegarde](hd_abilities_jets_de_sauvegarde
# Esprit impénétrable
-- SRD: [Mind Blank](srd_spells_mind_blank.md)
+- Alias: [Mind Blank](srd_spells_mind_blank.md)
- Abjuration de niveau 8
@@ -62539,7 +62539,7 @@ Vous touchez une créature consentante et, jusqu'à la fin du sort, vous l'immun
# Esprits gardiens
-- SRD: [Spirit Guardians](srd_spells_spirit_guardians.md)
+- Alias: [Spirit Guardians](srd_spells_spirit_guardians.md)
- Invocation de niveau 3
@@ -62571,7 +62571,7 @@ Si elle échoue, elle subit 3d8 dégâts radiants (si vous êtes Bon ou Neutre)
# Étrangeté
-- SRD: [Weird](srd_spells_weird.md)
+- Alias: [Weird](srd_spells_weird.md)
- Illusion de niveau 9
@@ -62597,7 +62597,7 @@ Vous puisez dans les peurs les plus profondes d'un groupe de créatures et crée
# Éveil
-- SRD: [Awaken](srd_spells_awaken.md)
+- Alias: [Awaken](srd_spells_awaken.md)
- Transmutation de niveau 5
@@ -62663,7 +62663,7 @@ La prochaine fois que vous réussissez une attaque de corps-à-corps pendant la
# Explosion occulte
-- SRD: [Eldritch Blast](srd_spells_eldritch_blast.md)
+- Alias: [Eldritch Blast](srd_spells_eldritch_blast.md)
- Évocation, tour de magie
@@ -62691,7 +62691,7 @@ Le sort crée des rayons supplémentaires quand vous atteignez certains niveaux
# Fabrication
-- SRD: [Fabricate](srd_spells_fabricate.md)
+- Alias: [Fabricate](srd_spells_fabricate.md)
- Transmutation de niveau 4
@@ -62721,7 +62721,7 @@ Il est impossible de créer ou de transmuter des créatures ou des objets magiqu
# Façonnage de la pierre
-- SRD: [Stone Shape](srd_spells_stone_shape.md)
+- Alias: [Stone Shape](srd_spells_stone_shape.md)
- Transmutation de niveau 4
@@ -62747,7 +62747,7 @@ Vous touchez un objet de pierre de taille M ou inférieure ou une section de pie
# Faveur divine
-- SRD: [Divine Favor](srd_spells_divine_favor.md)
+- Alias: [Divine Favor](srd_spells_divine_favor.md)
- Évocation de niveau 1
@@ -62775,7 +62775,7 @@ Jusqu'à la fin du sort, les attaques que vous portez avec une arme infligent 1d
# Festin des héros
-- SRD: [Heroes' Feast](srd_spells_heroes_feast.md)
+- Alias: [Heroes' Feast](srd_spells_heroes_feast.md)
- Invocation de niveau 6
@@ -62827,7 +62827,7 @@ Chaque créature dans la zone doit réussir un [jet de sauvegarde](hd_abilities_
# Flamme éternelle
-- SRD: [Continual Flame](srd_spells_continual_flame.md)
+- Alias: [Continual Flame](srd_spells_continual_flame.md)
- Évocation de niveau 2
@@ -62853,7 +62853,7 @@ Une flamme à la luminosité égale à celle d'une torche embrase soudain l'obje
# Flamme sacrée
-- SRD: [Sacred Flame](srd_spells_sacred_flame.md)
+- Alias: [Sacred Flame](srd_spells_sacred_flame.md)
- Évocation, tour de magie
@@ -62883,7 +62883,7 @@ Les dégâts du sort augmentent de 1d8 quand vous atteignez le niveau 5 (2d8), 1
# Fléau
-- SRD: [Bane](srd_spells_bane.md)
+- Alias: [Bane](srd_spells_bane.md)
- Enchantement de niveau 1
@@ -62913,7 +62913,7 @@ Dès qu'une cible qui a raté ce jet effectue un jet d'attaque ou de sauvegarde
# Fléau d'insectes
-- SRD: [Insect Plague](srd_spells_insect_plague.md)
+- Alias: [Insect Plague](srd_spells_insect_plague.md)
- Invocation de niveau 5
@@ -62945,7 +62945,7 @@ Une créature doit effectuer le même jet quand elle entre dans la sphère pour
# Flèche acide
-- SRD: [Acid Arrow](srd_spells_acid_arrow.md)
+- Alias: [Acid Arrow](srd_spells_acid_arrow.md)
- Évocation de niveau 2
@@ -62973,7 +62973,7 @@ Une flèche d'un vert chatoyant file vers une cible située à portée et explos
# Flétrissement
-- SRD: [Blight](srd_spells_blight.md)
+- Alias: [Blight](srd_spells_blight.md)
- Nécromancie de niveau 4
@@ -63003,7 +63003,7 @@ Si vous visez une créature végétale ou une plante magique, elle subit un dés
# Flou
-- SRD: [Blur](srd_spells_blur.md)
+- Alias: [Blur](srd_spells_blur.md)
- Illusion de niveau 2
@@ -63029,7 +63029,7 @@ Votre corps devient flou, il ondule et vacille comme une flamme aux yeux d'autru
# Forme éthérée
-- SRD: [Etherealness](srd_spells_etherealness.md)
+- Alias: [Etherealness](srd_spells_etherealness.md)
- Transmutation de niveau 7
@@ -63065,7 +63065,7 @@ Ce sort n'a aucun effet si vous le lancez alors que vous vous trouvez sur le pla
# Forme gazeuse
-- SRD: [Gaseous Form](srd_spells_gaseous_form.md)
+- Alias: [Gaseous Form](srd_spells_gaseous_form.md)
- Transmutation de niveau 3
@@ -63097,7 +63097,7 @@ Sous forme de nuage brumeux, la cible ne peut pas parler ni manipuler d'objet. I
# Formes animales
-- SRD: [Animal Shapes](srd_spells_animal_shapes.md)
+- Alias: [Animal Shapes](srd_spells_animal_shapes.md)
- Transmutation de niveau 8
@@ -63127,7 +63127,7 @@ L'équipement de la cible fusionne avec sa nouvelle forme, mais elle ne peut pas
# Fou rire
-- SRD: [Hideous Laughter](srd_spells_hideous_laughter.md)
+- Alias: [Hideous Laughter](srd_spells_hideous_laughter.md)
- Enchantement de niveau 1
@@ -63183,7 +63183,7 @@ Le type de dégâts supplémentaires infligés et la nature de l'effet dépenden
# Frappe lumineuse
-- SRD: [Branding Smite](srd_spells_branding_smite.md)
+- Alias: [Branding Smite](srd_spells_branding_smite.md)
- Évocation de niveau 2
@@ -63211,7 +63211,7 @@ La prochaine attaque avec une arme de corps-àcorps ou à distance qui vous perm
# Fusion dans la pierre
-- SRD: [Meld into Stone](srd_spells_meld_into_stone.md)
+- Alias: [Meld into Stone](srd_spells_meld_into_stone.md)
- Transmutation de niveau 3 (rituel)
@@ -63243,7 +63243,7 @@ Vous n'êtes pas blessé si la pierre subit des dégâts mineurs mais, si elle e
# Gardien de la foi
-- SRD: [Guardian of Faith](srd_spells_guardian_of_faith.md)
+- Alias: [Guardian of Faith](srd_spells_guardian_of_faith.md)
- Invocation de niveau 4
@@ -63293,7 +63293,7 @@ Si le jet est réussi, les dégâts sont réduits de moitié.
# Globe d'invulnérabilité
-- SRD: [Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)
+- Alias: [Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)
- Abjuration de niveau 6
@@ -63323,7 +63323,7 @@ Tout sort de niveau 5 ou inférieur lancé depuis l'extérieur de la barrière s
# Glyphe de protection
-- SRD: [Glyph of Warding](srd_spells_glyph_of_warding.md)
+- Alias: [Glyph of Warding](srd_spells_glyph_of_warding.md)
- Abjuration de niveau 3
@@ -63365,7 +63365,7 @@ Lorsque vous dessinez le glyphe, vous devez choisir entre des runes explosives o
# Gourdin magique
-- SRD: [Shillelagh](srd_spells_shillelagh.md)
+- Alias: [Shillelagh](srd_spells_shillelagh.md)
- Transmutation, tour de magie
@@ -63391,7 +63391,7 @@ La puissance du monde naturel imprègne le bois du bâton ou du gourdin que vous
# Graisse
-- SRD: [Grease](srd_spells_grease.md)
+- Alias: [Grease](srd_spells_grease.md)
- Invocation de niveau 1
@@ -63419,7 +63419,7 @@ Lorsque la graisse apparaît, chaque créature qui se trouve dans la zone affect
# Grande foulée
-- SRD: [Longstrider](srd_spells_longstrider.md)
+- Alias: [Longstrider](srd_spells_longstrider.md)
- Transmutation de niveau 1
@@ -63447,7 +63447,7 @@ Vous touchez une créature dont la vitesse augmente de 3 mètres jusqu'à la fin
# Guérison
-- SRD: [Heal](srd_spells_heal.md)
+- Alias: [Heal](srd_spells_heal.md)
- Évocation de niveau 6
@@ -63475,7 +63475,7 @@ Choisissez une créature située à portée et dans votre champ de vision. Une b
# Guérison de groupe
-- SRD: [Mass Heal](srd_spells_mass_heal.md)
+- Alias: [Mass Heal](srd_spells_mass_heal.md)
- Évocation de niveau 9
@@ -63523,7 +63523,7 @@ Enfin, le sort met un terme aux effets de réduction des points de vie maximum p
# Hâte
-- SRD: [Haste](srd_spells_haste.md)
+- Alias: [Haste](srd_spells_haste.md)
- Transmutation de niveau 3
@@ -63551,7 +63551,7 @@ Quand le sort se termine, la cible ne peut pas se déplacer ni effectuer une act
# Héroïsme
-- SRD: [Heroism](srd_spells_heroism.md)
+- Alias: [Heroism](srd_spells_heroism.md)
- Enchantement de niveau 1
@@ -63579,7 +63579,7 @@ Vous imprégnez de courage une créature consentante que vous touchez. Jusqu'à
# Identification
-- SRD: [Identify](srd_spells_identify.md)
+- Alias: [Identify](srd_spells_identify.md)
- Divination de niveau 1 (rituel)
@@ -63607,7 +63607,7 @@ Si, à la place, vous touchez une créature pendant toute l'incantation, vous d
# Illusion mineure
-- SRD: [Minor Illusion](srd_spells_minor_illusion.md)
+- Alias: [Minor Illusion](srd_spells_minor_illusion.md)
- Illusion, tour de magie
@@ -63639,7 +63639,7 @@ Si une créature utilise son action pour examiner le son ou l'image, elle compre
# Illusion programmée
-- SRD: [Programmed Illusion](srd_spells_programmed_illusion.md)
+- Alias: [Programmed Illusion](srd_spells_programmed_illusion.md)
- Illusion de niveau 6
@@ -63671,7 +63671,7 @@ Les interactions physiques révèlent que l'image n'est qu'une illusion, car les
# Image majeure
-- SRD: [Major Image](srd_spells_major_image.md)
+- Alias: [Major Image](srd_spells_major_image.md)
- Illusion de niveau 3
@@ -63703,7 +63703,7 @@ Les interactions physiques avec l'image révèlent qu'elle n'est qu'une illusion
# Image miroir
-- SRD: [Mirror Image](srd_spells_mirror_image.md)
+- Alias: [Mirror Image](srd_spells_mirror_image.md)
- Illusion de niveau 2
@@ -63741,7 +63741,7 @@ Une créature n'est pas affectée par ce sort si elle ne voit pas, si elle se se
# Image projetée
-- SRD: [Project Image](srd_spells_project_image.md)
+- Alias: [Project Image](srd_spells_project_image.md)
- Illusion de niveau 7
@@ -63773,7 +63773,7 @@ Les interactions physiques révèlent que l'image n'est qu'une illusion, car les
# Image silencieuse
-- SRD: [Silent Image](srd_spells_silent_image.md)
+- Alias: [Silent Image](srd_spells_silent_image.md)
- Illusion de niveau 1
@@ -63803,7 +63803,7 @@ Les interactions physiques révèlent que l'image n'est qu'une illusion, car les
# Immobiliser un humanoïde
-- SRD: [Hold Person](srd_spells_hold_person.md)
+- Alias: [Hold Person](srd_spells_hold_person.md)
- Enchantement de niveau 2
@@ -63831,7 +63831,7 @@ Choisissez un humanoïde situé à portée et dans votre champ de vision. Il doi
# Immobiliser un monstre
-- SRD: [Hold Monster](srd_spells_hold_monster.md)
+- Alias: [Hold Monster](srd_spells_hold_monster.md)
- Enchantement de niveau 5
@@ -63861,7 +63861,7 @@ Les créatures visées doivent se trouver à 9 mètres ou moins les unes des aut
# Injonction
-- SRD: [Command](srd_spells_command.md)
+- Alias: [Command](srd_spells_command.md)
- Enchantement de niveau 1
@@ -63901,7 +63901,7 @@ Voici quelques ordres typiques et leurs effets. Vous pouvez donner un ordre diff
# Insecte géant
-- SRD: [Giant Insect](srd_spells_giant_insect.md)
+- Alias: [Giant Insect](srd_spells_giant_insect.md)
- Transmutation de niveau 4
@@ -63957,7 +63957,7 @@ Au début de chacun de ses tours, la créature doit réussir un [jet de sauvegar
# Interdiction
-- SRD: [Forbiddance](srd_spells_forbiddance.md)
+- Alias: [Forbiddance](srd_spells_forbiddance.md)
- Abjuration de niveau 6 (rituel)
@@ -63993,7 +63993,7 @@ La zone d'effet de ce sort ne peut pas se superposer à celle d'un autre sort d'
# Inversion de la gravité
-- SRD: [Reverse Gravity](srd_spells_reverse_gravity.md)
+- Alias: [Reverse Gravity](srd_spells_reverse_gravity.md)
- Transmutation de niveau 7
@@ -64023,7 +64023,7 @@ Une fois la durée du sort écoulée, les objets et les créatures affectés ret
# Invisibilité
-- SRD: [Invisibility](srd_spells_invisibility.md)
+- Alias: [Invisibility](srd_spells_invisibility.md)
- Illusion de niveau 2
@@ -64051,7 +64051,7 @@ La créature que vous touchez devient [invisible](hd_conditions_invisible.md) ju
# Invisibilité supérieure
-- SRD: [Greater Invisibility](srd_spells_greater_invisibility.md)
+- Alias: [Greater Invisibility](srd_spells_greater_invisibility.md)
- Illusion de niveau 4
@@ -64077,7 +64077,7 @@ Vous devenez [invisible](hd_conditions_invisible.md) jusqu'à ce que le sort se
# Invoquer des animaux
-- SRD: [Conjure Animals](srd_spells_conjure_animals.md)
+- Alias: [Conjure Animals](srd_spells_conjure_animals.md)
- Invocation de niveau 3
@@ -64121,7 +64121,7 @@ C'est le MJ qui dispose du profil technique des créatures.
# Invoquer des élémentaires mineurs
-- SRD: [Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)
+- Alias: [Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)
- Invocation de niveau 4
@@ -64163,7 +64163,7 @@ C'est le MJ qui dispose du profil technique des créatures.
# Invoquer des êtres des bois
-- SRD: [Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)
+- Alias: [Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)
- Invocation de niveau 4
@@ -64205,7 +64205,7 @@ C'est le MJ qui dispose du profil technique des créatures.
# Invoquer un céleste
-- SRD: [Conjure Celestial](srd_spells_conjure_celestial.md)
+- Alias: [Conjure Celestial](srd_spells_conjure_celestial.md)
- Invocation de niveau 7
@@ -64241,7 +64241,7 @@ C'est le MJ qui dispose du profil technique du céleste.
# Invoquer un élémentaire
-- SRD: [Conjure Elemental](srd_spells_conjure_elemental.md)
+- Alias: [Conjure Elemental](srd_spells_conjure_elemental.md)
- Invocation de niveau 5
@@ -64277,7 +64277,7 @@ C'est le MJ qui dispose du profil technique de l'élémentaire.
# Invoquer une fée
-- SRD: [Conjure Fey](srd_spells_conjure_fey.md)
+- Alias: [Conjure Fey](srd_spells_conjure_fey.md)
- Invocation de niveau 6
@@ -64311,7 +64311,7 @@ C'est le MJ qui dispose du profil technique de la créature féerique.
# Jeter une malédiction
-- SRD: [Bestow curse](srd_spells_bestow_curse.md)
+- Alias: [Bestow curse](srd_spells_bestow_curse.md)
- Nécromancie de niveau 3
@@ -64369,7 +64369,7 @@ Vous créez une sphère de 9 mètres de rayon centrée sur un point visible de v
# Labyrinthe
-- SRD: [Maze](srd_spells_maze.md)
+- Alias: [Maze](srd_spells_maze.md)
- Invocation de niveau 8
@@ -64403,7 +64403,7 @@ Quand le sort se termine, la cible réapparaît à l'emplacement qu'elle a quitt
# Lame de feu
-- SRD: [Flame Blade](srd_spells_flame_blade.md)
+- Alias: [Flame Blade](srd_spells_flame_blade.md)
- Évocation de niveau 2
@@ -64455,7 +64455,7 @@ De plus, la créature touchée se retrouve [aveuglée](hd_conditions_aveugle.md)
# Langues
-- SRD: [Tongues](srd_spells_tongues.md)
+- Alias: [Tongues](srd_spells_tongues.md)
- Divination de niveau 3
@@ -64483,7 +64483,7 @@ De plus, quand elle parle, toute créature qui maîtrise au moins une langue et
# Légende
-- SRD: [Legend Lore](srd_spells_legend_lore.md)
+- Alias: [Legend Lore](srd_spells_legend_lore.md)
- Divination de niveau 5
@@ -64515,7 +64515,7 @@ Les informations obtenues sont exactes, mais susceptibles de se présenter dans
# Léger comme une plume
-- SRD: [Feather Fall](srd_spells_feather_fall.md)
+- Alias: [Feather Fall](srd_spells_feather_fall.md)
- Transmutation de niveau 1
@@ -64541,7 +64541,7 @@ Choisissez jusqu'à cinq créatures à portée en train de chuter. La vitesse de
# Lenteur
-- SRD: [Slow](srd_spells_slow.md)
+- Alias: [Slow](srd_spells_slow.md)
- Transmutation de niveau 3
@@ -64575,7 +64575,7 @@ Une créature affectée par ce sort fait un nouveau [jet de sauvegarde](hd_abili
# Lever une malédiction
-- SRD: [Remove Curse](srd_spells_remove_curse.md)
+- Alias: [Remove Curse](srd_spells_remove_curse.md)
- Abjuration de niveau 3
@@ -64601,7 +64601,7 @@ Une créature affectée par ce sort fait un nouveau [jet de sauvegarde](hd_abili
# Lévitation
-- SRD: [Levitate](srd_spells_levitate.md)
+- Alias: [Levitate](srd_spells_levitate.md)
- Transmutation de niveau 2
@@ -64655,7 +64655,7 @@ La liane a le profil suivant : CA 15, points de vie 30, [Force](hd_abilities_str
# Liberté de mouvement
-- SRD: [Freedom of Movement](srd_spells_freedom_of_movement.md)
+- Alias: [Freedom of Movement](srd_spells_freedom_of_movement.md)
- Abjuration de niveau 4
@@ -64683,7 +64683,7 @@ La cible peut également dépenser 1,50 mètre de déplacement pour échapper au
# Lien de protection
-- SRD: [Warding Bond](srd_spells_warding_bond.md)
+- Alias: [Warding Bond](srd_spells_warding_bond.md)
- Abjuration de niveau 2
@@ -64713,7 +64713,7 @@ Le sort se termine si vous tombez à 0 point de vie ou si votre cible et vous ê
# Lien télépathique
-- SRD: [Telepathic Bond](srd_spells_telepathic_bond.md)
+- Alias: [Telepathic Bond](srd_spells_telepathic_bond.md)
- Divination de niveau 5 (rituel)
@@ -64743,7 +64743,7 @@ Jusqu'à la fin du sort, les cibles peuvent communiquer entre elles par télépa
# Localiser des animaux ou des plantes
-- SRD: [Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)
+- Alias: [Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)
- Divination de niveau 2 (rituel)
@@ -64769,7 +64769,7 @@ Décrivez ou nommez un type spécifique de bêtes ou de plantes. Vous vous conce
# Localiser un objet
-- SRD: [Locate Object](srd_spells_locate_object.md)
+- Alias: [Locate Object](srd_spells_locate_object.md)
- Divination de niveau 2
@@ -64801,7 +64801,7 @@ Le sort ne parvient pas à localiser l'objet si une couche de plomb, aussi mince
# Localiser une créature
-- SRD: [Locate Creature](srd_spells_locate_creature.md)
+- Alias: [Locate Creature](srd_spells_locate_creature.md)
- Divination de niveau 4
@@ -64833,7 +64833,7 @@ Le sort ne parvient pas à localiser la créature si le chemin qui vous relie di
# Lueur d'espoir
-- SRD: [Beacon of Hope](srd_spells_beacon_of_hope.md)
+- Alias: [Beacon of Hope](srd_spells_beacon_of_hope.md)
- Abjuration de niveau 3
@@ -64861,7 +64861,7 @@ Pendant toute la durée du sort, elles bénéficient d'un avantage lors des [jet
# Lueurs féeriques
-- SRD: [Faerie Fire](srd_spells_faerie_fire.md)
+- Alias: [Faerie Fire](srd_spells_faerie_fire.md)
- Évocation de niveau 1
@@ -64889,7 +64889,7 @@ Un assaillant a l'avantage lors du jet d'attaque contre une cible affectée s'il
# Lumière
-- SRD: [Light](srd_spells_light.md)
+- Alias: [Light](srd_spells_light.md)
- Évocation, tour de magie
@@ -64921,7 +64921,7 @@ Si vous visez un objet porté ou transporté par une créature hostile, cette de
# Lumière du jour
-- SRD: [Daylight](srd_spells_daylight.md)
+- Alias: [Daylight](srd_spells_daylight.md)
- Évocation de niveau 3
@@ -64951,7 +64951,7 @@ Si une partie de la zone affectée par ce sort chevauche une zone de ténèbres
# Lumières dansantes
-- SRD: [Dancing Lights](srd_spells_dancing_lights.md)
+- Alias: [Dancing Lights](srd_spells_dancing_lights.md)
- Évocation, tour de magie
@@ -64985,7 +64985,7 @@ Elle s'éteint si elle passe hors de portée.
# Main du mage
-- SRD: [Mage Hand](srd_spells_mage_hand.md)
+- Alias: [Mage Hand](srd_spells_mage_hand.md)
- Invocation , tour de magie
@@ -65015,7 +65015,7 @@ La main ne peut pas attaquer, activer un objet magique, ni transporter plus de 5
# Main magique
-- SRD: [Arcane Hand](srd_spells_arcane_hand.md)
+- Alias: [Arcane Hand](srd_spells_arcane_hand.md)
- Évocation de niveau 5
@@ -65059,7 +65059,7 @@ Faites une attaque de sort de contact pour la main en utilisant vos propres bonu
# Mains brûlantes
-- SRD: [Burning Hands](srd_spells_burning_hands.md)
+- Alias: [Burning Hands](srd_spells_burning_hands.md)
- Évocation de niveau 1
@@ -65091,7 +65091,7 @@ Le feu embrase tous les objets inflammables de la zone, à moins que quelqu'un n
# Manoir somptueux
-- SRD: [Magnificent Mansion](srd_spells_magnificent_mansion.md)
+- Alias: [Magnificent Mansion](srd_spells_magnificent_mansion.md)
- Invocation de niveau 7
@@ -65149,7 +65149,7 @@ Vous vous recouvrez d'une enveloppe de givre. Vous bénéficiez d'une résistanc
# Marche sur l'eau
-- SRD: [Water Walk](srd_spells_water_walk.md)
+- Alias: [Water Walk](srd_spells_water_walk.md)
- Transmutation de niveau 3 (rituel)
@@ -65177,7 +65177,7 @@ Si vous prenez pour cible une créature immergée dans un liquide, le sort la ra
# Marche sur le vent
-- SRD: [Wind Walk](srd_spells_wind_walk.md)
+- Alias: [Wind Walk](srd_spells_wind_walk.md)
- Transmutation de niveau 6
@@ -65205,7 +65205,7 @@ Si une créature est sous forme de nuage et en plein vol quand le sort se termin
# Marque du chasseur
-- SRD: [Hunter's Mark](srd_spells_hunters_mark.md)
+- Alias: [Hunter's Mark](srd_spells_hunters_mark.md)
- Divination de niveau 1
@@ -65233,7 +65233,7 @@ Vous choisissez une créature située dans votre champ de vision et à portée e
# Mauvais oeil
-- SRD: [Eyebite](srd_spells_eyebite.md)
+- Alias: [Eyebite](srd_spells_eyebite.md)
- Nécromancie de niveau 6
@@ -65265,7 +65265,7 @@ Pendant la durée du sort, vos yeux deviennent deux trous noirs regorgeant d'un
# Message
-- SRD: [Message](srd_spells_message.md)
+- Alias: [Message](srd_spells_message.md)
- Transmutation, tour de magie
@@ -65293,7 +65293,7 @@ Vous pouvez lancer ce sort au travers d'un objet solide si vous connaissez bien
# Messager animal
-- SRD: [Animal Messenger](srd_spells_animal_messenger.md)
+- Alias: [Animal Messenger](srd_spells_animal_messenger.md)
- Enchantement de niveau 2 (rituel)
@@ -65327,7 +65327,7 @@ Quand elle arrive sur place, elle transmet votre message à la créature que vou
# Métamorphose
-- SRD: [Polymorph](srd_spells_polymorph.md)
+- Alias: [Polymorph](srd_spells_polymorph.md)
- Transmutation de niveau 4
@@ -65361,7 +65361,7 @@ L'équipement de la cible fusionne avec sa nouvelle forme, mais elle ne peut pas
# Métamorphose suprême
-- SRD: [True Polymorph](srd_spells_true_polymorph.md)
+- Alias: [True Polymorph](srd_spells_true_polymorph.md)
- Transmutation de niveau 9
@@ -65413,7 +65413,7 @@ Si le sort devient permanent, vous ne contrôlez plus la créature, mais elle pe
# Mirage
-- SRD: [Mirage Arcane](srd_spells_mirage_arcane.md)
+- Alias: [Mirage Arcane](srd_spells_mirage_arcane.md)
- Illusion de niveau 7
@@ -65443,7 +65443,7 @@ Les créatures dotées de vision parfaite distinguent le véritable terrain derr
# Modification de mémoire
-- SRD: [Modify Memory](srd_spells_modify_memory.md)
+- Alias: [Modify Memory](srd_spells_modify_memory.md)
- Enchantement de niveau 5
@@ -65479,7 +65479,7 @@ Un sort _[lever une malédiction](hd_spells_lever_une_malediction.md)_ ou _[rest
# Modifier son apparence
-- SRD: [Alter Self](srd_spells_alter_self.md)
+- Alias: [Alter Self](srd_spells_alter_self.md)
- Transmutation de niveau 2
@@ -65511,7 +65511,7 @@ Vous revêtez une forme différente. Quand vous lancez ce sort, choisissez l'une
# Monture fantôme
-- SRD: [Phantom Steed](srd_spells_phantom_steed.md)
+- Alias: [Phantom Steed](srd_spells_phantom_steed.md)
- Illusion de niveau 3 (rituel)
@@ -65541,7 +65541,7 @@ Pendant toute la durée du sort, vous et une créature de votre choix pouvez che
# Moquerie cruelle
-- SRD: [Vicious Mockery](srd_spells_vicious_mockery.md)
+- Alias: [Vicious Mockery](srd_spells_vicious_mockery.md)
- Enchantement, tour de magie
@@ -65569,7 +65569,7 @@ Les dégâts du sort augmentent de 1d4 quand vous atteignez le niveau 5 (2d4), l
# Mot de guérison
-- SRD: [Healing Word](srd_spells_healing_word.md)
+- Alias: [Healing Word](srd_spells_healing_word.md)
- Évocation de niveau 1
@@ -65597,7 +65597,7 @@ Une créature de votre choix située à portée et dans votre champ de vision r
# Mot de guérison de groupe
-- SRD: [Mass Healing Word](srd_spells_mass_healing_word.md)
+- Alias: [Mass Healing Word](srd_spells_mass_healing_word.md)
- Évocation de niveau 3
@@ -65625,7 +65625,7 @@ Vous prononcez des paroles curatives qui rendent un nombre de points de vie éga
# Mot de pouvoir étourdissant
-- SRD: [Power Word Stun](srd_spells_power_word_stun.md)
+- Alias: [Power Word Stun](srd_spells_power_word_stun.md)
- Enchantement de niveau 8
@@ -65653,7 +65653,7 @@ Une cible [étourdie](hd_conditions_etourdi.md) a droit à un [jet de sauvegarde
# Mot de pouvoir mortel
-- SRD: [Power Word Kill](srd_spells_power_word_kill.md)
+- Alias: [Power Word Kill](srd_spells_power_word_kill.md)
- Enchantement de niveau 9
@@ -65679,7 +65679,7 @@ Vous prononcez un mot de pouvoir capable d'obliger une créature située à port
# Mot de retour
-- SRD: [Word of Recall](srd_spells_word_of_recall.md)
+- Alias: [Word of Recall](srd_spells_word_of_recall.md)
- Invocation de niveau 6
@@ -65707,7 +65707,7 @@ Pour désigner un sanctuaire, vous devez lancer ce sort en un lieu dédié à vo
# Motif hypnotique
-- SRD: [Hypnotic Pattern](srd_spells_hypnotic_pattern.md)
+- Alias: [Hypnotic Pattern](srd_spells_hypnotic_pattern.md)
- Illusion de niveau 3
@@ -65737,7 +65737,7 @@ Le sort se termine pour une créature donnée si elle subit le moindre dégât o
# Mur d'épines
-- SRD: [Wall of Thorns](srd_spells_wall_of_thorns.md)
+- Alias: [Wall of Thorns](srd_spells_wall_of_thorns.md)
- Invocation de niveau 6
@@ -65771,7 +65771,7 @@ Une créature peut traverser le mur, mais lentement et dans la douleur. Elle doi
# Mur de feu
-- SRD: [Wall of Fire](srd_spells_wall_of_fire.md)
+- Alias: [Wall of Fire](srd_spells_wall_of_fire.md)
- Évocation de niveau 4
@@ -65805,7 +65805,7 @@ L'autre face du mur n'inflige pas de dégâts.
# Mur de force
-- SRD: [Wall of Force](srd_spells_wall_of_force.md)
+- Alias: [Wall of Force](srd_spells_wall_of_force.md)
- Évocation de niveau 5
@@ -65833,7 +65833,7 @@ Aucun élément ne peut franchir physiquement le mur, qui est immunisé contre t
# Mur de glace
-- SRD: [Wall of Ice](srd_spells_wall_of_ice.md)
+- Alias: [Wall of Ice](srd_spells_wall_of_ice.md)
- Évocation de niveau 6
@@ -65865,7 +65865,7 @@ Si elle échoue, elle subit 5d6 dégâts de froid, la moitié seulement si elle
# Mur de pierre
-- SRD: [Wall of Stone](srd_spells_wall_of_stone.md)
+- Alias: [Wall of Stone](srd_spells_wall_of_stone.md)
- Évocation de niveau 5
@@ -65901,7 +65901,7 @@ Si vous restez concentré sur le sort pendant toute sa durée, le mur devient un
# Mur de vent
-- SRD: [Wind Wall](srd_spells_wind_wall.md)
+- Alias: [Wind Wall](srd_spells_wind_wall.md)
- Évocation de niveau 3
@@ -65931,7 +65931,7 @@ Le vent fort maintient la brume, la fumée et les autres gaz à l'écart. Les cr
# Mur prismatique
-- SRD: [Prismatic Wall](srd_spells_prismatic_wall.md)
+- Alias: [Prismatic Wall](srd_spells_prismatic_wall.md)
- Abjuration de niveau 9
@@ -65983,7 +65983,7 @@ Tant que cette couche est en place, il est impossible de lancer un sort à trave
# Nappe de brouillard
-- SRD: [Fog Cloud](srd_spells_fog_cloud.md)
+- Alias: [Fog Cloud](srd_spells_fog_cloud.md)
- Invocation de niveau 1
@@ -66031,7 +66031,7 @@ Un nimbe blanc et scintillant d'énergie sacrée vous entoure pour la durée du
# Non-détection
-- SRD: [Nondetection](srd_spells_nondetection.md)
+- Alias: [Nondetection](srd_spells_nondetection.md)
- Abjuration de niveau 3
@@ -66059,7 +66059,7 @@ Vous pouvez prendre pour cible une créature consentante, un endroit ou un objet
# Nuage incendiaire
-- SRD: [Incendiary Cloud](srd_spells_incendiary_cloud.md)
+- Alias: [Incendiary Cloud](srd_spells_incendiary_cloud.md)
- Invocation de niveau 8
@@ -66091,7 +66091,7 @@ Le nuage s'éloigne de vous sur 3 mètres dans la direction de votre choix au d
# Nuage mortel
-- SRD: [Cloudkill](srd_spells_cloudkill.md)
+- Alias: [Cloudkill](srd_spells_cloudkill.md)
- Invocation de niveau 5
@@ -66125,7 +66125,7 @@ Le brouillard s'éloigne de vous sur une distance de 3 mètres au début de chac
# Nuage puant
-- SRD: [Stinking Cloud](srd_spells_stinking_cloud.md)
+- Alias: [Stinking Cloud](srd_spells_stinking_cloud.md)
- Invocation de niveau 3
@@ -66155,7 +66155,7 @@ Un vent modéré (au moins 15 km/h) disperse le nuage après 4 rounds. Un vent f
# Nuée de météores
-- SRD: [Meteor Swarm](srd_spells_meteor_swarm.md)
+- Alias: [Meteor Swarm](srd_spells_meteor_swarm.md)
- Évocation de niveau 9
@@ -66203,7 +66203,7 @@ Vous utilisez votre action pour lancer une arme ou tirer un projectile et une ac
# Oeil magique
-- SRD: [Arcane Eye](srd_spells_arcane_eye.md)
+- Alias: [Arcane Eye](srd_spells_arcane_eye.md)
- Divination de niveau 4
@@ -66289,7 +66289,7 @@ Vous libérez une vague d'énergie purificatrice qui met instantanément fin aux
# Parole divine
-- SRD: [Divine Word](srd_spells_divine_word.md)
+- Alias: [Divine Word](srd_spells_divine_word.md)
- Évocation de niveau 7
@@ -66327,7 +66327,7 @@ Quels que soient ses points de vie, si un céleste, un élémentaire, une fée o
# Pas brumeux
-- SRD: [Misty Step](srd_spells_misty_step.md)
+- Alias: [Misty Step](srd_spells_misty_step.md)
- Invocation de niveau 2
@@ -66381,7 +66381,7 @@ Les ouvertures ne laissent pas passer les matières liquides ou gazeuses sauf si
# Passage par les arbres
-- SRD: [Tree Stride](srd_spells_tree_stride.md)
+- Alias: [Tree Stride](srd_spells_tree_stride.md)
- Invocation de niveau 5
@@ -66409,7 +66409,7 @@ Vous pouvez utiliser cette capacité de transport une fois par round pendant tou
# Passage sans trace
-- SRD: [Pass without Trace](srd_spells_pass_without_trace.md)
+- Alias: [Pass without Trace](srd_spells_pass_without_trace.md)
- Abjuration de niveau 2
@@ -66439,7 +66439,7 @@ Une créature qui profite de ce bonus ne laisse derrière elle aucune trace ni a
# Passe-muraille
-- SRD: [Passwall](srd_spells_passwall.md)
+- Alias: [Passwall](srd_spells_passwall.md)
- Transmutation de niveau 5
@@ -66467,7 +66467,7 @@ Quand l'ouverture disparaît, les créatures et les objets qui s'y trouvaient en
# Pattes d'araignée
-- SRD: [Spider Climb](srd_spells_spider_climb.md)
+- Alias: [Spider Climb](srd_spells_spider_climb.md)
- Transmutation de niveau 2
@@ -66493,7 +66493,7 @@ Jusqu'à la fin du sort, une créature consentante que vous touchez devient capa
# Peau d'écorce
-- SRD: [Barkskin](srd_spells_barkskin.md)
+- Alias: [Barkskin](srd_spells_barkskin.md)
- Transmutation de niveau 2
@@ -66519,7 +66519,7 @@ Vous touchez une créature consentante. Pendant toute la durée du sort, sa peau
# Peau de pierre
-- SRD: [Stoneskin](srd_spells_stoneskin.md)
+- Alias: [Stoneskin](srd_spells_stoneskin.md)
- Abjuration de niveau 4
@@ -66545,7 +66545,7 @@ Ce sort modifie la chair d'une créature consentante pour la rendre aussi dure q
# Petite hutte
-- SRD: [Tiny Hut](srd_spells_tiny_hut.md)
+- Alias: [Tiny Hut](srd_spells_tiny_hut.md)
- Évocation de niveau 3 (rituel)
@@ -66575,7 +66575,7 @@ Tant que le sort n'est pas terminé, vous pouvez faire en sorte que l'intérieur
# Pétrification
-- SRD: [Flesh to Stone](srd_spells_flesh_to_stone.md)
+- Alias: [Flesh to Stone](srd_spells_flesh_to_stone.md)
- Transmutation de niveau 6
@@ -66607,7 +66607,7 @@ Si vous maintenez votre concentration sur ce sort jusqu'à la fin de la durée m
# Peur
-- SRD: [Fear](srd_spells_fear.md)
+- Alias: [Fear](srd_spells_fear.md)
- Illusion de niveau 3
@@ -66655,7 +66655,7 @@ Le projectile se dédouble de nombreuses fois et affecte toutes les créatures d
# Poigne électrique
-- SRD: [Shocking Grasp](srd_spells_shocking_grasp.md)
+- Alias: [Shocking Grasp](srd_spells_shocking_grasp.md)
- Évocation, tour de magie
@@ -66703,7 +66703,7 @@ Une arme de votre choix exsude une substance poisseuse et venimeuse. À la premi
# Portail
-- SRD: [Gate](srd_spells_gate.md)
+- Alias: [Gate](srd_spells_gate.md)
- Invocation de niveau 9
@@ -66735,7 +66735,7 @@ Quand vous lancez ce sort, vous pouvez prononcer le nom d'une créature spécifi
# Porte dimensionnelle
-- SRD: [Dimension Door](srd_spells_dimension_door.md)
+- Alias: [Dimension Door](srd_spells_dimension_door.md)
- Invocation de niveau 4
@@ -66785,7 +66785,7 @@ Vous agrippez votre objet porte-bonheur (gri-gri, talisman, amulette, etc.) et,
# Possession
-- SRD: [Magic Jar](srd_spells_magic_jar.md)
+- Alias: [Magic Jar](srd_spells_magic_jar.md)
- Nécromancie de niveau 6
@@ -66835,7 +66835,7 @@ Le réceptacle est détruit quand le sort se termine.
# Prémonition
-- SRD: [Foresight](srd_spells_foresight.md)
+- Alias: [Foresight](srd_spells_foresight.md)
- Divination de niveau 9
@@ -66863,7 +66863,7 @@ Le sort se termine immédiatement si vous le lancez de nouveau avant la fin de s
# Prestidigitation
-- SRD: [Prestidigitation](srd_spells_prestidigitation.md)
+- Alias: [Prestidigitation](srd_spells_prestidigitation.md)
- Transmutation, tour de magie
@@ -66903,7 +66903,7 @@ Si vous lancez le sort à plusieurs reprises, vous ne pouvez pas avoir plus de t
# Prière de soins
-- SRD: [Prayer of Healing](srd_spells_prayer_of_healing.md)
+- Alias: [Prayer of Healing](srd_spells_prayer_of_healing.md)
- Évocation de niveau 2
@@ -66931,7 +66931,7 @@ Un maximum de six créatures de votre choix, situées à portée et dans votre c
# Produire une flamme
-- SRD: [Produce Flame](srd_spells_produce_flame.md)
+- Alias: [Produce Flame](srd_spells_produce_flame.md)
- Invocation , tour de magie
@@ -66963,7 +66963,7 @@ Les dégâts de ce sort augmentent de 1d8 quand vous atteignez le niveau 5 (2d8)
# Projectile magique
-- SRD: [Magic Missile](srd_spells_magic_missile.md)
+- Alias: [Magic Missile](srd_spells_magic_missile.md)
- Évocation de niveau 1
@@ -67013,7 +67013,7 @@ Vous utilisez votre action pour lancer une arme ou tirer un projectile et une ac
# Projection astrale
-- SRD: [Astral Projection](srd_spells_astral_projection.md)
+- Alias: [Astral Projection](srd_spells_astral_projection.md)
- Nécromancie de niveau 9
@@ -67049,7 +67049,7 @@ Si vous êtes prématurément renvoyé dans votre corps physique, vos compagnons
# Protection contre la mort
-- SRD: [Death Ward](srd_spells_death_ward.md)
+- Alias: [Death Ward](srd_spells_death_ward.md)
- Abjuration de niveau 4
@@ -67077,7 +67077,7 @@ Si le sort est encore actif quand la cible est soumise à un effet qui devrait l
# Protection contre le mal et le bien
-- SRD: [Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)
+- Alias: [Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)
- Abjuration de niveau 1
@@ -67107,7 +67107,7 @@ Les créatures des types précédemment nommés subissent un désavantage lors d
# Protection contre le poison
-- SRD: [Protection from Poison](srd_spells_protection_from_poison.md)
+- Alias: [Protection from Poison](srd_spells_protection_from_poison.md)
- Abjuration de niveau 2
@@ -67135,7 +67135,7 @@ Pendant toute la durée du sort, la cible bénéficie d'un avantage lors des [je
# Protection contre les énergies
-- SRD: [Protection from Energy](srd_spells_protection_from_energy.md)
+- Alias: [Protection from Energy](srd_spells_protection_from_energy.md)
- Abjuration de niveau 3
@@ -67161,7 +67161,7 @@ Pendant toute la durée du sort, la créature consentante que vous touchez devie
# Protections et sceaux
-- SRD: [Guards and Wards](srd_spells_guards_and_wards.md)
+- Alias: [Guards and Wards](srd_spells_guards_and_wards.md)
- Abjuration de niveau 6
@@ -67215,7 +67215,7 @@ Vous pouvez protéger une structure en permanence si vous lancez ce sort tous le
# Purification de la nourriture et de l'eau
-- SRD: [Purify Food and Drink](srd_spells_purify_food_and_drink.md)
+- Alias: [Purify Food and Drink](srd_spells_purify_food_and_drink.md)
- Transmutation de niveau 1 (rituel)
@@ -67265,7 +67265,7 @@ Si la cible décède pendant qu'elle est sous l'effet du sort, son corps éclate
# Rappel à la vie
-- SRD: [Raise Dead](srd_spells_raise_dead.md)
+- Alias: [Raise Dead](srd_spells_raise_dead.md)
- Nécromancie de niveau 5
@@ -67297,7 +67297,7 @@ Le retour d'entre les morts est une rude épreuve qui se traduit par un malus de
# Rayon affaiblissant
-- SRD: [Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)
+- Alias: [Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)
- Nécromancie de niveau 2
@@ -67325,7 +67325,7 @@ La cible a droit à un [jet de sauvegarde](hd_abilities_jets_de_sauvegarde.md) d
# Rayon ardent
-- SRD: [Scorching Ray](srd_spells_scorching_ray.md)
+- Alias: [Scorching Ray](srd_spells_scorching_ray.md)
- Évocation de niveau 2
@@ -67353,7 +67353,7 @@ Vous créez trois rayons de feu et les projetez sur des cibles à portée. Vous
# Rayon de givre
-- SRD: [Ray of Frost](srd_spells_ray_of_frost.md)
+- Alias: [Ray of Frost](srd_spells_ray_of_frost.md)
- Évocation, tour de magie
@@ -67381,7 +67381,7 @@ Les dégâts du sort augmentent de 1d8 quand vous atteignez le niveau 5 (2d8),11
# Rayon de lune
-- SRD: [Moonbeam](srd_spells_moonbeam.md)
+- Alias: [Moonbeam](srd_spells_moonbeam.md)
- Évocation de niveau 2
@@ -67415,7 +67415,7 @@ Une fois que vous avez lancé ce sort, à chacun de vos tours, vous pouvez utili
# Rayon de soleil
-- SRD: [Sunbeam](srd_spells_sunbeam.md)
+- Alias: [Sunbeam](srd_spells_sunbeam.md)
- Évocation de niveau 6
@@ -67447,7 +67447,7 @@ Pendant toute la durée du sort, une boule de lumière brille dans votre main. E
# Régénération
-- SRD: [Regenerate](srd_spells_regenerate.md)
+- Alias: [Regenerate](srd_spells_regenerate.md)
- Transmutation de niveau 7
@@ -67477,7 +67477,7 @@ Si vous disposez de la partie amputée et la maintenez contre le moignon, le sor
# Réincarnation
-- SRD: [Reincarnate](srd_spells_reincarnate.md)
+- Alias: [Reincarnate](srd_spells_reincarnate.md)
- Transmutation de niveau 5
@@ -67529,7 +67529,7 @@ La créature réincarnée se souvient de son ancienne vie et de ses expériences
# Réparation
-- SRD: [Mending](srd_spells_mending.md)
+- Alias: [Mending](srd_spells_mending.md)
- Transmutation, tour de magie
@@ -67559,7 +67559,7 @@ Le sort permet de réparer un objet magique ou une créature artificielle, mais
# Repli expéditif
-- SRD: [Expeditious Retreat](srd_spells_expeditious_retreat.md)
+- Alias: [Expeditious Retreat](srd_spells_expeditious_retreat.md)
- Transmutation de niveau 1
@@ -67585,7 +67585,7 @@ Ce sort vous permet de vous déplacer à une vitesse incroyable. Vous pouvez uti
# Représailles infernales
-- SRD: [Hellish Rebuke](srd_spells_hellish_rebuke.md)
+- Alias: [Hellish Rebuke](srd_spells_hellish_rebuke.md)
- Évocation de niveau 1
@@ -67613,7 +67613,7 @@ Durée d'incantation : 1 réaction en réponse aux dégâts que vous inflige une
# Répulsion/attirance
-- SRD: [Antipathy/Sympathy](srd_spells_antipathysympathy.md)
+- Alias: [Antipathy/Sympathy](srd_spells_antipathysympathy.md)
- Enchantement de niveau 8
@@ -67653,7 +67653,7 @@ Une créature qui réussit son [jet de sauvegarde](hd_abilities_jets_de_sauvegar
# Résistance
-- SRD: [Resistance](srd_spells_resistance.md)
+- Alias: [Resistance](srd_spells_resistance.md)
- Abjuration, tour de magie
@@ -67681,7 +67681,7 @@ Le sort se termine alors.
# Respiration aquatique
-- SRD: [Water Breathing](srd_spells_water_breathing.md)
+- Alias: [Water Breathing](srd_spells_water_breathing.md)
- Transmutation de niveau 3 (rituel)
@@ -67707,7 +67707,7 @@ Grâce à ce sort, un maximum de dix créatures situées à portée et dans votr
# Restauration inférieure
-- SRD: [Lesser Restoration](srd_spells_lesser_restoration.md)
+- Alias: [Lesser Restoration](srd_spells_lesser_restoration.md)
- Abjuration de niveau 2
@@ -67733,7 +67733,7 @@ Vous touchez une créature et mettez fin à une maladie ou à un état spécial
# Restauration supérieure
-- SRD: [Greater Restoration](srd_spells_greater_restoration.md)
+- Alias: [Greater Restoration](srd_spells_greater_restoration.md)
- Abjuration de niveau 5
@@ -67767,7 +67767,7 @@ Vous imprégnez la créature que vous touchez d'énergie positive, afin de la d
# Résurrection
-- SRD: [Resurrection](srd_spells_resurrection.md)
+- Alias: [Resurrection](srd_spells_resurrection.md)
- Nécromancie de niveau 7
@@ -67803,7 +67803,7 @@ Après cela, vous ne pouvez plus lancer de sort et vous souffrez d'un désavanta
# Résurrection suprême
-- SRD: [True Resurrection](srd_spells_true_resurrection.md)
+- Alias: [True Resurrection](srd_spells_true_resurrection.md)
- Nécromancie de niveau 9
@@ -67833,7 +67833,7 @@ Le sort referme toutes les plaies, neutralise tous les poisons, guérit toutes l
# Rêve
-- SRD: [Dream](srd_spells_dream.md)
+- Alias: [Dream](srd_spells_dream.md)
- Illusion de niveau 5
@@ -67865,7 +67865,7 @@ Si vous êtes en possession d'un élément corporel de la cible, comme une mèch
# Revigorer
-- SRD: [Revivify](srd_spells_revivify.md)
+- Alias: [Revivify](srd_spells_revivify.md)
- Nécromancie de niveau 3
@@ -67891,7 +67891,7 @@ Vous touchez une créature morte au cours de la minute précédente. Elle revien
# Sanctification
-- SRD: [Hallow](srd_spells_hallow.md)
+- Alias: [Hallow](srd_spells_hallow.md)
- Évocation de niveau 5
@@ -67945,7 +67945,7 @@ Les ténèbres magiques issues d'un sort de niveau inférieur à celui de l'empl
# Sanctuaire
-- SRD: [Sanctuary](srd_spells_sanctuary.md)
+- Alias: [Sanctuary](srd_spells_sanctuary.md)
- Abjuration de niveau 1
@@ -67975,7 +67975,7 @@ Ce sort se termine si la créature protégée attaque ou lance un sort affectant
# Sanctuaire privé
-- SRD: [Private Sanctum](srd_spells_private_sanctum.md)
+- Alias: [Private Sanctum](srd_spells_private_sanctum.md)
- Abjuration de niveau 4
@@ -68039,7 +68039,7 @@ Vous contaminez le sang d'une créature vivante que vous touchez. Vous effectuez
# Saut
-- SRD: [Jump](srd_spells_jump.md)
+- Alias: [Jump](srd_spells_jump.md)
- Transmutation de niveau 1
@@ -68065,7 +68065,7 @@ Vous touchez une créature et triplez sa distance de saut jusqu'à ce que le sor
# Scrutation
-- SRD: [Scrying](srd_spells_scrying.md)
+- Alias: [Scrying](srd_spells_scrying.md)
- Divination de niveau 5
@@ -68109,7 +68109,7 @@ Au lieu de prendre une créature pour cible, vous pouvez choisir un lieu que vou
# Séquestration
-- SRD: [Sequester](srd_spells_sequester.md)
+- Alias: [Sequester](srd_spells_sequester.md)
- Transmutation de niveau 7
@@ -68139,7 +68139,7 @@ Vous pouvez décider d'une condition qui mettra un terme prématuré au sort. Ce
# Serviteur invisible
-- SRD: [Unseen Servant](srd_spells_unseen_servant.md)
+- Alias: [Unseen Servant](srd_spells_unseen_servant.md)
- Invocation de niveau 1 (rituel)
@@ -68169,7 +68169,7 @@ Si vous ordonnez à votre serviteur d'accomplir une tâche qui l'éloigne à plu
# Silence
-- SRD: [Silence](srd_spells_silence.md)
+- Alias: [Silence](srd_spells_silence.md)
- Illusion de niveau 2 (rituel)
@@ -68197,7 +68197,7 @@ Une créature ou un objet entièrement contenu dans la sphère sont immunisés c
# Simulacre
-- SRD: [Simulacrum](srd_spells_simulacrum.md)
+- Alias: [Simulacrum](srd_spells_simulacrum.md)
- Illusion de niveau 7
@@ -68231,7 +68231,7 @@ Si vous lancez de nouveau ce sort, l'éventuel double que vous maintenez déjà
# Simulacre de vie
-- SRD: [False Life](srd_spells_false_life.md)
+- Alias: [False Life](srd_spells_false_life.md)
- Nécromancie de niveau 1
@@ -68259,7 +68259,7 @@ Vous renforcez votre corps avec un ersatz de vie et gagnez 1d4+4 points de vie t
# Soin des blessures
-- SRD: [Cure Wounds](srd_spells_cure_wounds.md)
+- Alias: [Cure Wounds](srd_spells_cure_wounds.md)
- Évocation de niveau 1
@@ -68287,7 +68287,7 @@ La créature que vous touchez récupère un nombre de points de vie égal à 1d8
# Soin des blessures de groupe
-- SRD: [Mass Cure Wounds](srd_spells_mass_cure_wounds.md)
+- Alias: [Mass Cure Wounds](srd_spells_mass_cure_wounds.md)
- Évocation de niveau 5
@@ -68315,7 +68315,7 @@ Une vague d'énergie curative s'étend depuis un point de votre choix situé à
# Sommeil
-- SRD: [Sleep](srd_spells_sleep.md)
+- Alias: [Sleep](srd_spells_sleep.md)
- Enchantement de niveau 1
@@ -68347,7 +68347,7 @@ Ce sort reste sans effet sur les morts-vivants et les créatures qui ne peuvent
# Souhait
-- SRD: [Wish](srd_spells_wish.md)
+- Alias: [Wish](srd_spells_wish.md)
- Invocation de niveau 9
@@ -68395,7 +68395,7 @@ Le stress lié à l'incantation d'un souhait pour faire autre chose que répliqu
# Sphère de feu
-- SRD: [Flaming Sphere](srd_spells_flaming_sphere.md)
+- Alias: [Flaming Sphere](srd_spells_flaming_sphere.md)
- Invocation de niveau 2
@@ -68427,7 +68427,7 @@ Quand vous déplacez la sphère, vous pouvez lui faire franchir des obstacles de
# Sphère glacée
-- SRD: [Freezing Sphere](srd_spells_freezing_sphere.md)
+- Alias: [Freezing Sphere](srd_spells_freezing_sphere.md)
- Évocation de niveau 6
@@ -68465,7 +68465,7 @@ Il explose au bout de 1 minute s'il n'a pas été brisé auparavant.
# Sphère résiliente
-- SRD: [Resilient Sphere](srd_spells_resilient_sphere.md)
+- Alias: [Resilient Sphere](srd_spells_resilient_sphere.md)
- Évocation de niveau 4
@@ -68539,7 +68539,7 @@ Vous tendez le bras en direction de votre cible et, de votre main, vous mimez so
# Suggestion
-- SRD: [Suggestion](srd_spells_suggestion.md)
+- Alias: [Suggestion](srd_spells_suggestion.md)
- Enchantement de niveau 2
@@ -68575,7 +68575,7 @@ Si vous (ou l'un de vos compagnons) blessez une créature affectée par ce sort,
# Suggestion de groupe
-- SRD: [Mass Suggestion](srd_spells_mass_suggestion.md)
+- Alias: [Mass Suggestion](srd_spells_mass_suggestion.md)
- Enchantement de niveau 6
@@ -68609,7 +68609,7 @@ Si vous (ou l'un de vos compagnons) blessez une créature affectée par ce sort,
# Symbole
-- SRD: [Symbol](srd_spells_symbol.md)
+- Alias: [Symbol](srd_spells_symbol.md)
- Abjuration de niveau 7
@@ -68663,7 +68663,7 @@ Une telle créature se réveille si elle subit des dégâts ou si quelqu'un util
# Télékinésie
-- SRD: [Telekinesis](srd_spells_telekinesis.md)
+- Alias: [Telekinesis](srd_spells_telekinesis.md)
- Transmutation de niveau 5
@@ -68699,7 +68699,7 @@ Vous exercez un contrôle précis sur les objets pris dans votre étreinte tél
# Téléportation
-- SRD: [Teleport](srd_spells_teleport.md)
+- Alias: [Teleport](srd_spells_teleport.md)
- Invocation de niveau 7
@@ -68753,7 +68753,7 @@ La distance qui vous sépare de votre destination est de 1d10 × 1d10 % de la di
# Tempête de feu
-- SRD: [Fire Storm](srd_spells_fire_storm.md)
+- Alias: [Fire Storm](srd_spells_fire_storm.md)
- Évocation de niveau 7
@@ -68783,7 +68783,7 @@ Le feu endommage les objets présents dans la zone et embrase les objets inflamm
# Tempête de grêle
-- SRD: [Ice Storm](srd_spells_ice_storm.md)
+- Alias: [Ice Storm](srd_spells_ice_storm.md)
- Évocation de niveau 4
@@ -68815,7 +68815,7 @@ Les grêlons transforment la zone en terrain difficile jusqu'à la fin de votre
# Tempête de neige
-- SRD: [Sleet Storm](srd_spells_sleet_storm.md)
+- Alias: [Sleet Storm](srd_spells_sleet_storm.md)
- Invocation de niveau 3
@@ -68867,7 +68867,7 @@ Si ce sort est lancé dans un désert de sable ou de pierre, il inflige 4d6 dég
# Tempête vengeresse
-- SRD: [Storm of Vengeance](srd_spells_storm_of_vengeance.md)
+- Alias: [Storm of Vengeance](srd_spells_storm_of_vengeance.md)
- Invocation de niveau 9
@@ -68905,7 +68905,7 @@ Le vent et la pluie fonctionnent comme une distraction sévère quand il s'agit
# Ténèbres
-- SRD: [Darkness](srd_spells_darkness.md)
+- Alias: [Darkness](srd_spells_darkness.md)
- Évocation de niveau 2
@@ -68935,7 +68935,7 @@ Si une partie de la zone affectée par ce sort chevauche une zone de lumière is
# Tentacules noirs
-- SRD: [Black Tentacles](srd_spells_black_tentacles.md)
+- Alias: [Black Tentacles](srd_spells_black_tentacles.md)
- Invocation de niveau 4
@@ -68965,7 +68965,7 @@ Une créature [entravée](hd_conditions_entrave.md) par les tentacules peut util
# Terrain hallucinatoire
-- SRD: [Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)
+- Alias: [Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)
- Illusion de niveau 4
@@ -68997,7 +68997,7 @@ Une fois qu'une créature a compris l'illusion, elle la voit comme une image flo
# Texte illusoire
-- SRD: [Illusory Script](srd_spells_illusory_script.md)
+- Alias: [Illusory Script](srd_spells_illusory_script.md)
- Illusion de niveau 1 (rituel)
@@ -69027,7 +69027,7 @@ Si quelqu'un dissipe le sort, l'illusion disparaît, mais le message original au
# Thaumaturgie
-- SRD: [Thaumaturgy](srd_spells_thaumaturgy.md)
+- Alias: [Thaumaturgy](srd_spells_thaumaturgy.md)
- Transmutation, tour de magie
@@ -69069,7 +69069,7 @@ Vous pouvez révoquer un tel effet par une action.
# Toile d'araignée
-- SRD: [Web](srd_spells_web.md)
+- Alias: [Web](srd_spells_web.md)
- Invocation de niveau 2
@@ -69105,7 +69105,7 @@ Les toiles sont inflammables. Un cube de toiles de 1,50 mètre d'arête exposé
# Trait de feu
-- SRD: [Fire Bolt](srd_spells_fire_bolt.md)
+- Alias: [Fire Bolt](srd_spells_fire_bolt.md)
- Évocation, tour de magie
@@ -69155,7 +69155,7 @@ Retirer l'arme lui inflige 2d4 dégâts, ou la moitié si elle réussit un [jet
# Transport végétal
-- SRD: [Transport via Plants](srd_spells_transport_via_plants.md)
+- Alias: [Transport via Plants](srd_spells_transport_via_plants.md)
- Invocation de niveau 6
@@ -69181,7 +69181,7 @@ Ce sort crée un lien magique entre une plante inanimée de taille G ou supérie
# Tremblement de terre
-- SRD: [Earthquake](srd_spells_earthquake.md)
+- Alias: [Earthquake](srd_spells_earthquake.md)
- Évocation de niveau 8
@@ -69223,7 +69223,7 @@ Une créature qui se trouve près d'un bâtiment en train de s'effondrer, à une
# Tromperie
-- SRD: [Mislead](srd_spells_mislead.md)
+- Alias: [Mislead](srd_spells_mislead.md)
- Illusion de niveau 5
@@ -69255,7 +69255,7 @@ Tant que vous utilisez les sens de votre double, vous êtes sourd et aveugle à
# Trouver les pièges
-- SRD: [Find Traps](srd_spells_find_traps.md)
+- Alias: [Find Traps](srd_spells_find_traps.md)
- Divination de niveau 2
@@ -69283,7 +69283,7 @@ Le sort indique simplement qu'il y a un piège ; il ne précise pas où, mais vo
# Trouver un chemin
-- SRD: [Find the Path](srd_spells_find_the_path.md)
+- Alias: [Find the Path](srd_spells_find_the_path.md)
- Divination de niveau 6
@@ -69311,7 +69311,7 @@ Tant que le sort persiste et que vous êtes sur le même plan d'existence que vo
# Trouver une monture
-- SRD: [Find Steed](srd_spells_find_steed.md)
+- Alias: [Find Steed](srd_spells_find_steed.md)
- Invocation de niveau 2
@@ -69349,7 +69349,7 @@ Vous ne pouvez vous lier qu'à une seule monture issue de ce sort à la fois. Vo
# Vague tonnante
-- SRD: [Thunderwave](srd_spells_thunderwave.md)
+- Alias: [Thunderwave](srd_spells_thunderwave.md)
- Évocation de niveau 1
@@ -69383,7 +69383,7 @@ De plus, les objets qui ne sont pas arrimés et se trouvent entièrement englob
# Verrou magique
-- SRD: [Arcane Lock](srd_spells_arcane_lock.md)
+- Alias: [Arcane Lock](srd_spells_arcane_lock.md)
- Abjuration de niveau 2
@@ -69411,7 +69411,7 @@ Tant que l'objet est affecté par ce sort, il est bien plus difficile à briser
# Viser juste
-- SRD: [True Strike](srd_spells_true_strike.md)
+- Alias: [True Strike](srd_spells_true_strike.md)
- Divination, tour de magie
@@ -69437,7 +69437,7 @@ Vous tendez la main et pointez du doigt une cible à portée. Votre magie vous d
# Vision dans le noir
-- SRD: [Darkvision](srd_spells_darkvision.md)
+- Alias: [Darkvision](srd_spells_darkvision.md)
- Transmutation de niveau 2
@@ -69463,7 +69463,7 @@ Vous touchez une créature consentante pour lui permettre de voir dans le noir.
# Vision suprême
-- SRD: [True Seeing](srd_spells_true_seeing.md)
+- Alias: [True Seeing](srd_spells_true_seeing.md)
- Divination de niveau 6
@@ -69511,7 +69511,7 @@ Jusqu'à six créatures vivantes de votre choix, à portée et dans votre champ
# Voir l'invisible
-- SRD: [See Invisibility](srd_spells_see_invisibility.md)
+- Alias: [See Invisibility](srd_spells_see_invisibility.md)
- Divination de niveau 2
@@ -69537,7 +69537,7 @@ Pendant toute la durée du sort, vous voyez les créatures et les objets [invisi
# Vol
-- SRD: [Fly](srd_spells_fly.md)
+- Alias: [Fly](srd_spells_fly.md)
- Transmutation de niveau 3
@@ -69565,7 +69565,7 @@ Vous touchez une créature consentante et lui conférez la capacité de voler à
# Zone de vérité
-- SRD: [Zone of Truth](srd_spells_zone_of_truth.md)
+- Alias: [Zone of Truth](srd_spells_zone_of_truth.md)
- Enchantement de niveau 2
diff --git a/Data/HD/hd_spells_agrandirretrecir.md b/Data/HD/hd_spells_agrandirretrecir.md
index 6fc604cc..92b171b4 100644
--- a/Data/HD/hd_spells_agrandirretrecir.md
+++ b/Data/HD/hd_spells_agrandirretrecir.md
@@ -4,7 +4,7 @@
# Agrandir/rétrécir
-- SRD: [Enlarge/Reduce](srd_spells_enlargereduce.md)
+- Alias: [Enlarge/Reduce](srd_spells_enlargereduce.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_aide.md b/Data/HD/hd_spells_aide.md
index 5d88aecb..6d3e919b 100644
--- a/Data/HD/hd_spells_aide.md
+++ b/Data/HD/hd_spells_aide.md
@@ -4,7 +4,7 @@
# Aide
-- SRD: [Aid](srd_spells_aid.md)
+- Alias: [Aid](srd_spells_aid.md)
- Abjuration de niveau 2
diff --git a/Data/HD/hd_spells_alarme.md b/Data/HD/hd_spells_alarme.md
index ffaade53..93e1f0d2 100644
--- a/Data/HD/hd_spells_alarme.md
+++ b/Data/HD/hd_spells_alarme.md
@@ -4,7 +4,7 @@
# Alarme
-- SRD: [Alarm](srd_spells_alarm.md)
+- Alias: [Alarm](srd_spells_alarm.md)
- Abjuration de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_allie_planaire.md b/Data/HD/hd_spells_allie_planaire.md
index 1bdb36ff..81db81b4 100644
--- a/Data/HD/hd_spells_allie_planaire.md
+++ b/Data/HD/hd_spells_allie_planaire.md
@@ -4,7 +4,7 @@
# Allié planaire
-- SRD: [Planar Ally](srd_spells_planar_ally.md)
+- Alias: [Planar Ally](srd_spells_planar_ally.md)
- Invocation de niveau 6
diff --git a/Data/HD/hd_spells_amelioration_de_caracteristique.md b/Data/HD/hd_spells_amelioration_de_caracteristique.md
index 17e9877e..4f2514d5 100644
--- a/Data/HD/hd_spells_amelioration_de_caracteristique.md
+++ b/Data/HD/hd_spells_amelioration_de_caracteristique.md
@@ -4,7 +4,7 @@
# Amélioration de caractéristique
-- SRD: [Enhance Ability](srd_spells_enhance_ability.md)
+- Alias: [Enhance Ability](srd_spells_enhance_ability.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_amitie_avec_les_animaux.md b/Data/HD/hd_spells_amitie_avec_les_animaux.md
index d7c518dc..ed565619 100644
--- a/Data/HD/hd_spells_amitie_avec_les_animaux.md
+++ b/Data/HD/hd_spells_amitie_avec_les_animaux.md
@@ -4,7 +4,7 @@
# Amitié avec les animaux
-- SRD: [Animal Friendship](srd_spells_animal_friendship.md)
+- Alias: [Animal Friendship](srd_spells_animal_friendship.md)
- Enchantement de niveau 1
diff --git a/Data/HD/hd_spells_animation_des_morts.md b/Data/HD/hd_spells_animation_des_morts.md
index 6a3d40d9..22cd23b7 100644
--- a/Data/HD/hd_spells_animation_des_morts.md
+++ b/Data/HD/hd_spells_animation_des_morts.md
@@ -4,7 +4,7 @@
# Animation des morts
-- SRD: [Animate Dead](srd_spells_animate_dead.md)
+- Alias: [Animate Dead](srd_spells_animate_dead.md)
- Nécromancie de niveau 3
diff --git a/Data/HD/hd_spells_animation_des_objets.md b/Data/HD/hd_spells_animation_des_objets.md
index fd08a5c9..60d542aa 100644
--- a/Data/HD/hd_spells_animation_des_objets.md
+++ b/Data/HD/hd_spells_animation_des_objets.md
@@ -4,7 +4,7 @@
# Animation des objets
-- SRD: [Animate Objects](srd_spells_animate_objects.md)
+- Alias: [Animate Objects](srd_spells_animate_objects.md)
- Transmutation de niveau 5
diff --git a/Data/HD/hd_spells_apaisement_des_emotions.md b/Data/HD/hd_spells_apaisement_des_emotions.md
index 36327742..74c1e460 100644
--- a/Data/HD/hd_spells_apaisement_des_emotions.md
+++ b/Data/HD/hd_spells_apaisement_des_emotions.md
@@ -4,7 +4,7 @@
# Apaisement des émotions
-- SRD: [Calm Emotions](srd_spells_calm_emotions.md)
+- Alias: [Calm Emotions](srd_spells_calm_emotions.md)
- Enchantement de niveau 2
diff --git a/Data/HD/hd_spells_apparence_trompeuse.md b/Data/HD/hd_spells_apparence_trompeuse.md
index 09920f25..0a36ad18 100644
--- a/Data/HD/hd_spells_apparence_trompeuse.md
+++ b/Data/HD/hd_spells_apparence_trompeuse.md
@@ -4,7 +4,7 @@
# Apparence trompeuse
-- SRD: [Seeming](srd_spells_seeming.md)
+- Alias: [Seeming](srd_spells_seeming.md)
- Illusion de niveau 5
diff --git a/Data/HD/hd_spells_appel_de_familier.md b/Data/HD/hd_spells_appel_de_familier.md
index d175b0e0..37dd067a 100644
--- a/Data/HD/hd_spells_appel_de_familier.md
+++ b/Data/HD/hd_spells_appel_de_familier.md
@@ -4,7 +4,7 @@
# Appel de familier
-- SRD: [Find Familiar](srd_spells_find_familiar.md)
+- Alias: [Find Familiar](srd_spells_find_familiar.md)
- Invocation de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_appel_de_la_foudre.md b/Data/HD/hd_spells_appel_de_la_foudre.md
index 20d8c4a9..ac48f6d1 100644
--- a/Data/HD/hd_spells_appel_de_la_foudre.md
+++ b/Data/HD/hd_spells_appel_de_la_foudre.md
@@ -4,7 +4,7 @@
# Appel de la foudre
-- SRD: [Call Lightning](srd_spells_call_lightning.md)
+- Alias: [Call Lightning](srd_spells_call_lightning.md)
- Invocation de niveau 3
diff --git a/Data/HD/hd_spells_arme_magique.md b/Data/HD/hd_spells_arme_magique.md
index ff5088bc..f7e14f96 100644
--- a/Data/HD/hd_spells_arme_magique.md
+++ b/Data/HD/hd_spells_arme_magique.md
@@ -4,7 +4,7 @@
# Arme magique
-- SRD: [Magic Weapon](srd_spells_magic_weapon.md)
+- Alias: [Magic Weapon](srd_spells_magic_weapon.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_arme_spirituelle.md b/Data/HD/hd_spells_arme_spirituelle.md
index c7298bce..8a6792d3 100644
--- a/Data/HD/hd_spells_arme_spirituelle.md
+++ b/Data/HD/hd_spells_arme_spirituelle.md
@@ -4,7 +4,7 @@
# Arme spirituelle
-- SRD: [Spiritual Weapon](srd_spells_spiritual_weapon.md)
+- Alias: [Spiritual Weapon](srd_spells_spiritual_weapon.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_armure_du_mage.md b/Data/HD/hd_spells_armure_du_mage.md
index 52b363a4..5eb1da46 100644
--- a/Data/HD/hd_spells_armure_du_mage.md
+++ b/Data/HD/hd_spells_armure_du_mage.md
@@ -4,7 +4,7 @@
# Armure du mage
-- SRD: [Mage Armor](srd_spells_mage_armor.md)
+- Alias: [Mage Armor](srd_spells_mage_armor.md)
- Abjuration de niveau 1
diff --git a/Data/HD/hd_spells_arret_du_temps.md b/Data/HD/hd_spells_arret_du_temps.md
index badb0f52..9bd5fe1a 100644
--- a/Data/HD/hd_spells_arret_du_temps.md
+++ b/Data/HD/hd_spells_arret_du_temps.md
@@ -4,7 +4,7 @@
# Arrêt du temps
-- SRD: [Time Stop](srd_spells_time_stop.md)
+- Alias: [Time Stop](srd_spells_time_stop.md)
- Transmutation de niveau 9
diff --git a/Data/HD/hd_spells_aspersion_acide.md b/Data/HD/hd_spells_aspersion_acide.md
index d6a93d81..36414295 100644
--- a/Data/HD/hd_spells_aspersion_acide.md
+++ b/Data/HD/hd_spells_aspersion_acide.md
@@ -4,7 +4,7 @@
# Aspersion acide
-- SRD: [Acid Splash](srd_spells_acid_splash.md)
+- Alias: [Acid Splash](srd_spells_acid_splash.md)
- Invocation , tour de magie
diff --git a/Data/HD/hd_spells_assassin_imaginaire.md b/Data/HD/hd_spells_assassin_imaginaire.md
index f5a6501f..9dc1101c 100644
--- a/Data/HD/hd_spells_assassin_imaginaire.md
+++ b/Data/HD/hd_spells_assassin_imaginaire.md
@@ -4,7 +4,7 @@
# Assassin imaginaire
-- SRD: [Phantasmal Killer](srd_spells_phantasmal_killer.md)
+- Alias: [Phantasmal Killer](srd_spells_phantasmal_killer.md)
- Illusion de niveau 4
diff --git a/Data/HD/hd_spells_assistance.md b/Data/HD/hd_spells_assistance.md
index 66dd0a72..294e3871 100644
--- a/Data/HD/hd_spells_assistance.md
+++ b/Data/HD/hd_spells_assistance.md
@@ -4,7 +4,7 @@
# Assistance
-- SRD: [Guidance](srd_spells_guidance.md)
+- Alias: [Guidance](srd_spells_guidance.md)
- Divination, tour de magie
diff --git a/Data/HD/hd_spells_augure.md b/Data/HD/hd_spells_augure.md
index 2acc2881..c0fe0e6a 100644
--- a/Data/HD/hd_spells_augure.md
+++ b/Data/HD/hd_spells_augure.md
@@ -4,7 +4,7 @@
# Augure
-- SRD: [Augury](srd_spells_augury.md)
+- Alias: [Augury](srd_spells_augury.md)
- Divination de niveau 2
diff --git a/Data/HD/hd_spells_aura_magique_de_larcaniste.md b/Data/HD/hd_spells_aura_magique_de_larcaniste.md
index 5435d496..1cb7699b 100644
--- a/Data/HD/hd_spells_aura_magique_de_larcaniste.md
+++ b/Data/HD/hd_spells_aura_magique_de_larcaniste.md
@@ -4,7 +4,7 @@
# Aura magique de l'arcaniste
-- SRD: [Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)
+- Alias: [Arcanist's Magic Aura](srd_spells_arcanists_magic_aura.md)
- Illusion de niveau 2
diff --git a/Data/HD/hd_spells_aura_sacree.md b/Data/HD/hd_spells_aura_sacree.md
index 81e79d60..e5971a98 100644
--- a/Data/HD/hd_spells_aura_sacree.md
+++ b/Data/HD/hd_spells_aura_sacree.md
@@ -4,7 +4,7 @@
# Aura sacrée
-- SRD: [Holy Aura](srd_spells_holy_aura.md)
+- Alias: [Holy Aura](srd_spells_holy_aura.md)
- Abjuration de niveau 8
diff --git a/Data/HD/hd_spells_bagou.md b/Data/HD/hd_spells_bagou.md
index aeeca56e..a5feecc5 100644
--- a/Data/HD/hd_spells_bagou.md
+++ b/Data/HD/hd_spells_bagou.md
@@ -4,7 +4,7 @@
# Bagou
-- SRD: [Glibness](srd_spells_glibness.md)
+- Alias: [Glibness](srd_spells_glibness.md)
- Transmutation de niveau 8
diff --git a/Data/HD/hd_spells_baies_nourricieres.md b/Data/HD/hd_spells_baies_nourricieres.md
index 36e9787f..17321cae 100644
--- a/Data/HD/hd_spells_baies_nourricieres.md
+++ b/Data/HD/hd_spells_baies_nourricieres.md
@@ -4,7 +4,7 @@
# Baies nourricières
-- SRD: [Goodberry](srd_spells_goodberry.md)
+- Alias: [Goodberry](srd_spells_goodberry.md)
- Transmutation de niveau 1
diff --git a/Data/HD/hd_spells_balisage.md b/Data/HD/hd_spells_balisage.md
index 10bc33ed..45d9050b 100644
--- a/Data/HD/hd_spells_balisage.md
+++ b/Data/HD/hd_spells_balisage.md
@@ -4,7 +4,7 @@
# Balisage
-- SRD: [Guiding Bolt](srd_spells_guiding_bolt.md)
+- Alias: [Guiding Bolt](srd_spells_guiding_bolt.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_bannissement.md b/Data/HD/hd_spells_bannissement.md
index c624f393..0451539b 100644
--- a/Data/HD/hd_spells_bannissement.md
+++ b/Data/HD/hd_spells_bannissement.md
@@ -4,7 +4,7 @@
# Bannissement
-- SRD: [Banishment](srd_spells_banishment.md)
+- Alias: [Banishment](srd_spells_banishment.md)
- Abjuration de niveau 4
diff --git a/Data/HD/hd_spells_barriere_de_lames.md b/Data/HD/hd_spells_barriere_de_lames.md
index 6a353526..e5fbaae6 100644
--- a/Data/HD/hd_spells_barriere_de_lames.md
+++ b/Data/HD/hd_spells_barriere_de_lames.md
@@ -4,7 +4,7 @@
# Barrière de lames
-- SRD: [Blade Barrier](srd_spells_blade_barrier.md)
+- Alias: [Blade Barrier](srd_spells_blade_barrier.md)
- Évocation de niveau 6
diff --git a/Data/HD/hd_spells_benediction.md b/Data/HD/hd_spells_benediction.md
index 0e81b533..55e79511 100644
--- a/Data/HD/hd_spells_benediction.md
+++ b/Data/HD/hd_spells_benediction.md
@@ -4,7 +4,7 @@
# Bénédiction
-- SRD: [Bless](srd_spells_bless.md)
+- Alias: [Bless](srd_spells_bless.md)
- Enchantement de niveau 1
diff --git a/Data/HD/hd_spells_blessure.md b/Data/HD/hd_spells_blessure.md
index cffcacd7..4be7e641 100644
--- a/Data/HD/hd_spells_blessure.md
+++ b/Data/HD/hd_spells_blessure.md
@@ -4,7 +4,7 @@
# Blessure
-- SRD: [Inflict Wounds](srd_spells_inflict_wounds.md)
+- Alias: [Inflict Wounds](srd_spells_inflict_wounds.md)
- Nécromancie de niveau 1
diff --git a/Data/HD/hd_spells_bouche_magique.md b/Data/HD/hd_spells_bouche_magique.md
index 8c624ba4..530e4ca6 100644
--- a/Data/HD/hd_spells_bouche_magique.md
+++ b/Data/HD/hd_spells_bouche_magique.md
@@ -4,7 +4,7 @@
# Bouche magique
-- SRD: [Magic Mouth](srd_spells_magic_mouth.md)
+- Alias: [Magic Mouth](srd_spells_magic_mouth.md)
- Illusion de niveau 2 (rituel)
diff --git a/Data/HD/hd_spells_bouclier.md b/Data/HD/hd_spells_bouclier.md
index 00af1ea8..044852d5 100644
--- a/Data/HD/hd_spells_bouclier.md
+++ b/Data/HD/hd_spells_bouclier.md
@@ -4,7 +4,7 @@
# Bouclier
-- SRD: [Shield](srd_spells_shield.md)
+- Alias: [Shield](srd_spells_shield.md)
- Abjuration de niveau 1
diff --git a/Data/HD/hd_spells_bouclier_de_feu.md b/Data/HD/hd_spells_bouclier_de_feu.md
index 9c5d1206..29a45fdd 100644
--- a/Data/HD/hd_spells_bouclier_de_feu.md
+++ b/Data/HD/hd_spells_bouclier_de_feu.md
@@ -4,7 +4,7 @@
# Bouclier de feu
-- SRD: [Fire Shield](srd_spells_fire_shield.md)
+- Alias: [Fire Shield](srd_spells_fire_shield.md)
- Évocation de niveau 4
diff --git a/Data/HD/hd_spells_bouclier_de_la_foi.md b/Data/HD/hd_spells_bouclier_de_la_foi.md
index b6ff035e..231628df 100644
--- a/Data/HD/hd_spells_bouclier_de_la_foi.md
+++ b/Data/HD/hd_spells_bouclier_de_la_foi.md
@@ -4,7 +4,7 @@
# Bouclier de la foi
-- SRD: [Shield of Faith](srd_spells_shield_of_faith.md)
+- Alias: [Shield of Faith](srd_spells_shield_of_faith.md)
- Abjuration de niveau 1
diff --git a/Data/HD/hd_spells_bouffee_de_poison.md b/Data/HD/hd_spells_bouffee_de_poison.md
index 7c9adcb5..dd8d36dc 100644
--- a/Data/HD/hd_spells_bouffee_de_poison.md
+++ b/Data/HD/hd_spells_bouffee_de_poison.md
@@ -4,7 +4,7 @@
# Bouffée de poison
-- SRD: [Poison Spray](srd_spells_poison_spray.md)
+- Alias: [Poison Spray](srd_spells_poison_spray.md)
- Invocation , tour de magie
diff --git a/Data/HD/hd_spells_boule_de_feu.md b/Data/HD/hd_spells_boule_de_feu.md
index 8640df49..c9ad3000 100644
--- a/Data/HD/hd_spells_boule_de_feu.md
+++ b/Data/HD/hd_spells_boule_de_feu.md
@@ -4,7 +4,7 @@
# Boule de feu
-- SRD: [Fireball](srd_spells_fireball.md)
+- Alias: [Fireball](srd_spells_fireball.md)
- Évocation de niveau 3
diff --git a/Data/HD/hd_spells_boule_de_feu_a_explosion_retardee.md b/Data/HD/hd_spells_boule_de_feu_a_explosion_retardee.md
index 5ac9ffa3..3e0f5402 100644
--- a/Data/HD/hd_spells_boule_de_feu_a_explosion_retardee.md
+++ b/Data/HD/hd_spells_boule_de_feu_a_explosion_retardee.md
@@ -4,7 +4,7 @@
# Boule de feu à explosion retardée
-- SRD: [Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)
+- Alias: [Delayed Blast Fireball](srd_spells_delayed_blast_fireball.md)
- Évocation de niveau 7
diff --git a/Data/HD/hd_spells_bourrasque.md b/Data/HD/hd_spells_bourrasque.md
index 92e9bca8..e5ba4dd1 100644
--- a/Data/HD/hd_spells_bourrasque.md
+++ b/Data/HD/hd_spells_bourrasque.md
@@ -4,7 +4,7 @@
# Bourrasque
-- SRD: [Gust of Wind](srd_spells_gust_of_wind.md)
+- Alias: [Gust of Wind](srd_spells_gust_of_wind.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_briser.md b/Data/HD/hd_spells_briser.md
index 6d095897..2eb8895b 100644
--- a/Data/HD/hd_spells_briser.md
+++ b/Data/HD/hd_spells_briser.md
@@ -4,7 +4,7 @@
# Briser
-- SRD: [Shatter](srd_spells_shatter.md)
+- Alias: [Shatter](srd_spells_shatter.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_cage_de_force.md b/Data/HD/hd_spells_cage_de_force.md
index aaa36691..9c9c54ea 100644
--- a/Data/HD/hd_spells_cage_de_force.md
+++ b/Data/HD/hd_spells_cage_de_force.md
@@ -4,7 +4,7 @@
# Cage de force
-- SRD: [Forcecage](srd_spells_forcecage.md)
+- Alias: [Forcecage](srd_spells_forcecage.md)
- Évocation de niveau 7
diff --git a/Data/HD/hd_spells_caresse_du_vampire.md b/Data/HD/hd_spells_caresse_du_vampire.md
index f17c497e..413a284c 100644
--- a/Data/HD/hd_spells_caresse_du_vampire.md
+++ b/Data/HD/hd_spells_caresse_du_vampire.md
@@ -4,7 +4,7 @@
# Caresse du vampire
-- SRD: [Vampiric Touch](srd_spells_vampiric_touch.md)
+- Alias: [Vampiric Touch](srd_spells_vampiric_touch.md)
- Nécromancie de niveau 3
diff --git a/Data/HD/hd_spells_cecitesurdite.md b/Data/HD/hd_spells_cecitesurdite.md
index a2c59752..d2e44ef0 100644
--- a/Data/HD/hd_spells_cecitesurdite.md
+++ b/Data/HD/hd_spells_cecitesurdite.md
@@ -4,7 +4,7 @@
# Cécité/surdité
-- SRD: [Blindness/Deafness](srd_spells_blindnessdeafness.md)
+- Alias: [Blindness/Deafness](srd_spells_blindnessdeafness.md)
- Nécromancie de niveau 2
diff --git a/Data/HD/hd_spells_cercle_de_mort.md b/Data/HD/hd_spells_cercle_de_mort.md
index 47b6e46f..4094a075 100644
--- a/Data/HD/hd_spells_cercle_de_mort.md
+++ b/Data/HD/hd_spells_cercle_de_mort.md
@@ -4,7 +4,7 @@
# Cercle de mort
-- SRD: [Circle of Death](srd_spells_circle_of_death.md)
+- Alias: [Circle of Death](srd_spells_circle_of_death.md)
- Nécromancie de niveau 6
diff --git a/Data/HD/hd_spells_cercle_de_teleportation.md b/Data/HD/hd_spells_cercle_de_teleportation.md
index c7365d16..694da1d9 100644
--- a/Data/HD/hd_spells_cercle_de_teleportation.md
+++ b/Data/HD/hd_spells_cercle_de_teleportation.md
@@ -4,7 +4,7 @@
# Cercle de téléportation
-- SRD: [Teleportation Circle](srd_spells_teleportation_circle.md)
+- Alias: [Teleportation Circle](srd_spells_teleportation_circle.md)
- Invocation de niveau 5
diff --git a/Data/HD/hd_spells_cercle_magique.md b/Data/HD/hd_spells_cercle_magique.md
index 62a672e2..8caad304 100644
--- a/Data/HD/hd_spells_cercle_magique.md
+++ b/Data/HD/hd_spells_cercle_magique.md
@@ -4,7 +4,7 @@
# Cercle magique
-- SRD: [Magic Circle](srd_spells_magic_circle.md)
+- Alias: [Magic Circle](srd_spells_magic_circle.md)
- Abjuration de niveau 3
diff --git a/Data/HD/hd_spells_chaine_declairs.md b/Data/HD/hd_spells_chaine_declairs.md
index ec80fe47..f5b11781 100644
--- a/Data/HD/hd_spells_chaine_declairs.md
+++ b/Data/HD/hd_spells_chaine_declairs.md
@@ -4,7 +4,7 @@
# Chaîne d'éclairs
-- SRD: [Chain Lightning](srd_spells_chain_lightning.md)
+- Alias: [Chain Lightning](srd_spells_chain_lightning.md)
- Évocation de niveau 6
diff --git a/Data/HD/hd_spells_champ_antimagie.md b/Data/HD/hd_spells_champ_antimagie.md
index f4120679..fb079590 100644
--- a/Data/HD/hd_spells_champ_antimagie.md
+++ b/Data/HD/hd_spells_champ_antimagie.md
@@ -4,7 +4,7 @@
# Champ antimagie
-- SRD: [Antimagic Field](srd_spells_antimagic_field.md)
+- Alias: [Antimagic Field](srd_spells_antimagic_field.md)
- Abjuration de niveau 8
diff --git a/Data/HD/hd_spells_changement_de_forme.md b/Data/HD/hd_spells_changement_de_forme.md
index 32873d75..baef2973 100644
--- a/Data/HD/hd_spells_changement_de_forme.md
+++ b/Data/HD/hd_spells_changement_de_forme.md
@@ -4,7 +4,7 @@
# Changement de forme
-- SRD: [Shapechange](srd_spells_shapechange.md)
+- Alias: [Shapechange](srd_spells_shapechange.md)
- Transmutation de niveau 9
diff --git a/Data/HD/hd_spells_changement_de_plan.md b/Data/HD/hd_spells_changement_de_plan.md
index 66a4a9c2..55072deb 100644
--- a/Data/HD/hd_spells_changement_de_plan.md
+++ b/Data/HD/hd_spells_changement_de_plan.md
@@ -4,7 +4,7 @@
# Changement de plan
-- SRD: [Plane Shift](srd_spells_plane_shift.md)
+- Alias: [Plane Shift](srd_spells_plane_shift.md)
- Invocation de niveau 7
diff --git a/Data/HD/hd_spells_charme_personne.md b/Data/HD/hd_spells_charme_personne.md
index 0f236cfc..0b2518d6 100644
--- a/Data/HD/hd_spells_charme_personne.md
+++ b/Data/HD/hd_spells_charme_personne.md
@@ -4,7 +4,7 @@
# Charme-personne
-- SRD: [Charm Person](srd_spells_charm_person.md)
+- Alias: [Charm Person](srd_spells_charm_person.md)
- Enchantement de niveau 1
diff --git a/Data/HD/hd_spells_chauffer_le_metal.md b/Data/HD/hd_spells_chauffer_le_metal.md
index 3bad0d97..01ebe6fd 100644
--- a/Data/HD/hd_spells_chauffer_le_metal.md
+++ b/Data/HD/hd_spells_chauffer_le_metal.md
@@ -4,7 +4,7 @@
# Chauffer le métal
-- SRD: [Heat Metal](srd_spells_heat_metal.md)
+- Alias: [Heat Metal](srd_spells_heat_metal.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_chien_de_garde.md b/Data/HD/hd_spells_chien_de_garde.md
index 31bc9199..e9a0e59f 100644
--- a/Data/HD/hd_spells_chien_de_garde.md
+++ b/Data/HD/hd_spells_chien_de_garde.md
@@ -4,7 +4,7 @@
# Chien de garde
-- SRD: [Faithful Hound](srd_spells_faithful_hound.md)
+- Alias: [Faithful Hound](srd_spells_faithful_hound.md)
- Invocation de niveau 4
diff --git a/Data/HD/hd_spells_clairvoyance.md b/Data/HD/hd_spells_clairvoyance.md
index ff0091a0..efe1dd78 100644
--- a/Data/HD/hd_spells_clairvoyance.md
+++ b/Data/HD/hd_spells_clairvoyance.md
@@ -4,7 +4,7 @@
# Clairvoyance
-- SRD: [Clairvoyance](srd_spells_clairvoyance.md)
+- Alias: [Clairvoyance](srd_spells_clairvoyance.md)
- Divination de niveau 3
diff --git a/Data/HD/hd_spells_clignotement.md b/Data/HD/hd_spells_clignotement.md
index aee65b9b..bb694669 100644
--- a/Data/HD/hd_spells_clignotement.md
+++ b/Data/HD/hd_spells_clignotement.md
@@ -4,7 +4,7 @@
# Clignotement
-- SRD: [Blink](srd_spells_blink.md)
+- Alias: [Blink](srd_spells_blink.md)
- Transmutation de niveau 3
diff --git a/Data/HD/hd_spells_clone.md b/Data/HD/hd_spells_clone.md
index 1db9774b..143888aa 100644
--- a/Data/HD/hd_spells_clone.md
+++ b/Data/HD/hd_spells_clone.md
@@ -4,7 +4,7 @@
# Clone
-- SRD: [Clone](srd_spells_clone.md)
+- Alias: [Clone](srd_spells_clone.md)
- Nécromancie de niveau 8
diff --git a/Data/HD/hd_spells_coercition_mystique.md b/Data/HD/hd_spells_coercition_mystique.md
index f498b096..d963250e 100644
--- a/Data/HD/hd_spells_coercition_mystique.md
+++ b/Data/HD/hd_spells_coercition_mystique.md
@@ -4,7 +4,7 @@
# Coercition mystique
-- SRD: [Geas](srd_spells_geas.md)
+- Alias: [Geas](srd_spells_geas.md)
- Enchantement de niveau 5
diff --git a/Data/HD/hd_spells_coffre_secret.md b/Data/HD/hd_spells_coffre_secret.md
index b194c5bc..197bf62f 100644
--- a/Data/HD/hd_spells_coffre_secret.md
+++ b/Data/HD/hd_spells_coffre_secret.md
@@ -4,7 +4,7 @@
# Coffre secret
-- SRD: [Secret Chest](srd_spells_secret_chest.md)
+- Alias: [Secret Chest](srd_spells_secret_chest.md)
- Invocation de niveau 4
diff --git a/Data/HD/hd_spells_colonne_de_flamme.md b/Data/HD/hd_spells_colonne_de_flamme.md
index d135987f..6a032bb4 100644
--- a/Data/HD/hd_spells_colonne_de_flamme.md
+++ b/Data/HD/hd_spells_colonne_de_flamme.md
@@ -4,7 +4,7 @@
# Colonne de flamme
-- SRD: [Flame Strike](srd_spells_flame_strike.md)
+- Alias: [Flame Strike](srd_spells_flame_strike.md)
- Évocation de niveau 5
diff --git a/Data/HD/hd_spells_communication_avec_les_animaux.md b/Data/HD/hd_spells_communication_avec_les_animaux.md
index d21cbe3d..dd2d8a93 100644
--- a/Data/HD/hd_spells_communication_avec_les_animaux.md
+++ b/Data/HD/hd_spells_communication_avec_les_animaux.md
@@ -4,7 +4,7 @@
# Communication avec les animaux
-- SRD: [Speak with Animals](srd_spells_speak_with_animals.md)
+- Alias: [Speak with Animals](srd_spells_speak_with_animals.md)
- Divination de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_communication_avec_les_morts.md b/Data/HD/hd_spells_communication_avec_les_morts.md
index a3db65de..34163bfb 100644
--- a/Data/HD/hd_spells_communication_avec_les_morts.md
+++ b/Data/HD/hd_spells_communication_avec_les_morts.md
@@ -4,7 +4,7 @@
# Communication avec les morts
-- SRD: [Speak with Dead](srd_spells_speak_with_dead.md)
+- Alias: [Speak with Dead](srd_spells_speak_with_dead.md)
- Nécromancie de niveau 3
diff --git a/Data/HD/hd_spells_communication_avec_les_plantes.md b/Data/HD/hd_spells_communication_avec_les_plantes.md
index f16cf355..e62c2278 100644
--- a/Data/HD/hd_spells_communication_avec_les_plantes.md
+++ b/Data/HD/hd_spells_communication_avec_les_plantes.md
@@ -4,7 +4,7 @@
# Communication avec les plantes
-- SRD: [Speak with Plants](srd_spells_speak_with_plants.md)
+- Alias: [Speak with Plants](srd_spells_speak_with_plants.md)
- Transmutation de niveau 3
diff --git a/Data/HD/hd_spells_communion.md b/Data/HD/hd_spells_communion.md
index f950ab4a..18982c7d 100644
--- a/Data/HD/hd_spells_communion.md
+++ b/Data/HD/hd_spells_communion.md
@@ -4,7 +4,7 @@
# Communion
-- SRD: [Commune](srd_spells_commune.md)
+- Alias: [Commune](srd_spells_commune.md)
- Divination de niveau 5 (rituel)
diff --git a/Data/HD/hd_spells_communion_avec_la_nature.md b/Data/HD/hd_spells_communion_avec_la_nature.md
index 3d6b0255..5b75bbee 100644
--- a/Data/HD/hd_spells_communion_avec_la_nature.md
+++ b/Data/HD/hd_spells_communion_avec_la_nature.md
@@ -4,7 +4,7 @@
# Communion avec la nature
-- SRD: [Commune with Nature](srd_spells_commune_with_nature.md)
+- Alias: [Commune with Nature](srd_spells_commune_with_nature.md)
- Divination de niveau 5 (rituel)
diff --git a/Data/HD/hd_spells_comprehension_des_langues.md b/Data/HD/hd_spells_comprehension_des_langues.md
index a09aa33e..36bb9b10 100644
--- a/Data/HD/hd_spells_comprehension_des_langues.md
+++ b/Data/HD/hd_spells_comprehension_des_langues.md
@@ -4,7 +4,7 @@
# Compréhension des langues
-- SRD: [Comprehend Languages](srd_spells_comprehend_languages.md)
+- Alias: [Comprehend Languages](srd_spells_comprehend_languages.md)
- Divination de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_compulsion.md b/Data/HD/hd_spells_compulsion.md
index 2daf0934..cc108252 100644
--- a/Data/HD/hd_spells_compulsion.md
+++ b/Data/HD/hd_spells_compulsion.md
@@ -4,7 +4,7 @@
# Compulsion
-- SRD: [Compulsion](srd_spells_compulsion.md)
+- Alias: [Compulsion](srd_spells_compulsion.md)
- Enchantement de niveau 4
diff --git a/Data/HD/hd_spells_cone_de_froid.md b/Data/HD/hd_spells_cone_de_froid.md
index 4ca79724..7e1fbd44 100644
--- a/Data/HD/hd_spells_cone_de_froid.md
+++ b/Data/HD/hd_spells_cone_de_froid.md
@@ -4,7 +4,7 @@
# Cône de froid
-- SRD: [Cone of Cold](srd_spells_cone_of_cold.md)
+- Alias: [Cone of Cold](srd_spells_cone_of_cold.md)
- Évocation de niveau 5
diff --git a/Data/HD/hd_spells_confusion.md b/Data/HD/hd_spells_confusion.md
index 43fa43de..36f10a34 100644
--- a/Data/HD/hd_spells_confusion.md
+++ b/Data/HD/hd_spells_confusion.md
@@ -4,7 +4,7 @@
# Confusion
-- SRD: [Confusion](srd_spells_confusion.md)
+- Alias: [Confusion](srd_spells_confusion.md)
- Enchantement de niveau 4
diff --git a/Data/HD/hd_spells_contact_glacial.md b/Data/HD/hd_spells_contact_glacial.md
index 75261a46..c5b970d2 100644
--- a/Data/HD/hd_spells_contact_glacial.md
+++ b/Data/HD/hd_spells_contact_glacial.md
@@ -4,7 +4,7 @@
# Contact glacial
-- SRD: [Chill Touch](srd_spells_chill_touch.md)
+- Alias: [Chill Touch](srd_spells_chill_touch.md)
- Nécromancie, tour de magie
diff --git a/Data/HD/hd_spells_contacter_un_autre_plan.md b/Data/HD/hd_spells_contacter_un_autre_plan.md
index 19e155c2..1ec0915f 100644
--- a/Data/HD/hd_spells_contacter_un_autre_plan.md
+++ b/Data/HD/hd_spells_contacter_un_autre_plan.md
@@ -4,7 +4,7 @@
# Contacter un autre plan
-- SRD: [Contact Other Plane](srd_spells_contact_other_plane.md)
+- Alias: [Contact Other Plane](srd_spells_contact_other_plane.md)
- Divination de niveau 5 (rituel)
diff --git a/Data/HD/hd_spells_contagion.md b/Data/HD/hd_spells_contagion.md
index aa8f5af9..ffa53c0f 100644
--- a/Data/HD/hd_spells_contagion.md
+++ b/Data/HD/hd_spells_contagion.md
@@ -4,7 +4,7 @@
# Contagion
-- SRD: [Contagion](srd_spells_contagion.md)
+- Alias: [Contagion](srd_spells_contagion.md)
- Nécromancie de niveau 5
diff --git a/Data/HD/hd_spells_contamination.md b/Data/HD/hd_spells_contamination.md
index 2d9c222f..a145fc62 100644
--- a/Data/HD/hd_spells_contamination.md
+++ b/Data/HD/hd_spells_contamination.md
@@ -4,7 +4,7 @@
# Contamination
-- SRD: [Harm](srd_spells_harm.md)
+- Alias: [Harm](srd_spells_harm.md)
- Nécromancie de niveau 6
diff --git a/Data/HD/hd_spells_contingence.md b/Data/HD/hd_spells_contingence.md
index f56d140f..ae589423 100644
--- a/Data/HD/hd_spells_contingence.md
+++ b/Data/HD/hd_spells_contingence.md
@@ -4,7 +4,7 @@
# Contingence
-- SRD: [Contingency](srd_spells_contingency.md)
+- Alias: [Contingency](srd_spells_contingency.md)
- Évocation de niveau 6
diff --git a/Data/HD/hd_spells_contresort.md b/Data/HD/hd_spells_contresort.md
index 19358105..db3fecc0 100644
--- a/Data/HD/hd_spells_contresort.md
+++ b/Data/HD/hd_spells_contresort.md
@@ -4,7 +4,7 @@
# Contresort
-- SRD: [Counterspell](srd_spells_counterspell.md)
+- Alias: [Counterspell](srd_spells_counterspell.md)
- Abjuration de niveau 3
diff --git a/Data/HD/hd_spells_controle_de_leau.md b/Data/HD/hd_spells_controle_de_leau.md
index d8aa028b..6b279810 100644
--- a/Data/HD/hd_spells_controle_de_leau.md
+++ b/Data/HD/hd_spells_controle_de_leau.md
@@ -4,7 +4,7 @@
# Contrôle de l'eau
-- SRD: [Control Water](srd_spells_control_water.md)
+- Alias: [Control Water](srd_spells_control_water.md)
- Transmutation de niveau 4
diff --git a/Data/HD/hd_spells_controle_du_climat.md b/Data/HD/hd_spells_controle_du_climat.md
index e61c7433..f6219ce8 100644
--- a/Data/HD/hd_spells_controle_du_climat.md
+++ b/Data/HD/hd_spells_controle_du_climat.md
@@ -4,7 +4,7 @@
# Contrôle du climat
-- SRD: [Control Weather](srd_spells_control_weather.md)
+- Alias: [Control Weather](srd_spells_control_weather.md)
- Transmutation de niveau 8
diff --git a/Data/HD/hd_spells_convocations_instantanees.md b/Data/HD/hd_spells_convocations_instantanees.md
index 2385cefd..d68bf299 100644
--- a/Data/HD/hd_spells_convocations_instantanees.md
+++ b/Data/HD/hd_spells_convocations_instantanees.md
@@ -4,7 +4,7 @@
# Convocations instantanées
-- SRD: [Instant Summons](srd_spells_instant_summons.md)
+- Alias: [Instant Summons](srd_spells_instant_summons.md)
- Invocation de niveau 6 (rituel)
diff --git a/Data/HD/hd_spells_coquille_antivie.md b/Data/HD/hd_spells_coquille_antivie.md
index 39648797..006a1a82 100644
--- a/Data/HD/hd_spells_coquille_antivie.md
+++ b/Data/HD/hd_spells_coquille_antivie.md
@@ -4,7 +4,7 @@
# Coquille antivie
-- SRD: [Antilife Shell](srd_spells_antilife_shell.md)
+- Alias: [Antilife Shell](srd_spells_antilife_shell.md)
- Abjuration de niveau 5
diff --git a/Data/HD/hd_spells_corde_enchantee.md b/Data/HD/hd_spells_corde_enchantee.md
index 92c2b951..1f66aa60 100644
--- a/Data/HD/hd_spells_corde_enchantee.md
+++ b/Data/HD/hd_spells_corde_enchantee.md
@@ -4,7 +4,7 @@
# Corde enchantée
-- SRD: [Rope Trick](srd_spells_rope_trick.md)
+- Alias: [Rope Trick](srd_spells_rope_trick.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_couleurs_dansantes.md b/Data/HD/hd_spells_couleurs_dansantes.md
index 5eb17107..d36e867c 100644
--- a/Data/HD/hd_spells_couleurs_dansantes.md
+++ b/Data/HD/hd_spells_couleurs_dansantes.md
@@ -4,7 +4,7 @@
# Couleurs dansantes
-- SRD: [Color Spray](srd_spells_color_spray.md)
+- Alias: [Color Spray](srd_spells_color_spray.md)
- Illusion de niveau 1
diff --git a/Data/HD/hd_spells_creation.md b/Data/HD/hd_spells_creation.md
index 558c7076..318f7c19 100644
--- a/Data/HD/hd_spells_creation.md
+++ b/Data/HD/hd_spells_creation.md
@@ -4,7 +4,7 @@
# Création
-- SRD: [Creation](srd_spells_creation.md)
+- Alias: [Creation](srd_spells_creation.md)
- Illusion de niveau 5
diff --git a/Data/HD/hd_spells_creation_de_mort_vivant.md b/Data/HD/hd_spells_creation_de_mort_vivant.md
index 32a2e88a..7e57d462 100644
--- a/Data/HD/hd_spells_creation_de_mort_vivant.md
+++ b/Data/HD/hd_spells_creation_de_mort_vivant.md
@@ -4,7 +4,7 @@
# Création de mort-vivant
-- SRD: [Create Undead](srd_spells_create_undead.md)
+- Alias: [Create Undead](srd_spells_create_undead.md)
- Nécromancie de niveau 6
diff --git a/Data/HD/hd_spells_creation_de_nourriture_et_deau.md b/Data/HD/hd_spells_creation_de_nourriture_et_deau.md
index fd312287..4fe3ca21 100644
--- a/Data/HD/hd_spells_creation_de_nourriture_et_deau.md
+++ b/Data/HD/hd_spells_creation_de_nourriture_et_deau.md
@@ -4,7 +4,7 @@
# Création de nourriture et d'eau
-- SRD: [Create Food and Water](srd_spells_create_food_and_water.md)
+- Alias: [Create Food and Water](srd_spells_create_food_and_water.md)
- Invocation de niveau 3
diff --git a/Data/HD/hd_spells_creation_ou_destruction_deau.md b/Data/HD/hd_spells_creation_ou_destruction_deau.md
index 35414b44..6f855876 100644
--- a/Data/HD/hd_spells_creation_ou_destruction_deau.md
+++ b/Data/HD/hd_spells_creation_ou_destruction_deau.md
@@ -4,7 +4,7 @@
# Création ou destruction d'eau
-- SRD: [Create or Destroy Water](srd_spells_create_or_destroy_water.md)
+- Alias: [Create or Destroy Water](srd_spells_create_or_destroy_water.md)
- Transmutation de niveau 1
diff --git a/Data/HD/hd_spells_croissance_depines.md b/Data/HD/hd_spells_croissance_depines.md
index 77b242cb..d86034a5 100644
--- a/Data/HD/hd_spells_croissance_depines.md
+++ b/Data/HD/hd_spells_croissance_depines.md
@@ -4,7 +4,7 @@
# Croissance d'épines
-- SRD: [Spike Growth](srd_spells_spike_growth.md)
+- Alias: [Spike Growth](srd_spells_spike_growth.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_croissance_vegetale.md b/Data/HD/hd_spells_croissance_vegetale.md
index 514d0fc7..b045d75a 100644
--- a/Data/HD/hd_spells_croissance_vegetale.md
+++ b/Data/HD/hd_spells_croissance_vegetale.md
@@ -4,7 +4,7 @@
# Croissance végétale
-- SRD: [Plant Growth](srd_spells_plant_growth.md)
+- Alias: [Plant Growth](srd_spells_plant_growth.md)
- Transmutation de niveau 3
diff --git a/Data/HD/hd_spells_danse_irresistible.md b/Data/HD/hd_spells_danse_irresistible.md
index a1b96e2f..897d85e9 100644
--- a/Data/HD/hd_spells_danse_irresistible.md
+++ b/Data/HD/hd_spells_danse_irresistible.md
@@ -4,7 +4,7 @@
# Danse irrésistible
-- SRD: [Irresistible Dance](srd_spells_irresistible_dance.md)
+- Alias: [Irresistible Dance](srd_spells_irresistible_dance.md)
- Enchantement de niveau 6
diff --git a/Data/HD/hd_spells_deblocage.md b/Data/HD/hd_spells_deblocage.md
index 4696603f..25099c24 100644
--- a/Data/HD/hd_spells_deblocage.md
+++ b/Data/HD/hd_spells_deblocage.md
@@ -4,7 +4,7 @@
# Déblocage
-- SRD: [Knock](srd_spells_knock.md)
+- Alias: [Knock](srd_spells_knock.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_deguisement.md b/Data/HD/hd_spells_deguisement.md
index 593352a5..20b4f874 100644
--- a/Data/HD/hd_spells_deguisement.md
+++ b/Data/HD/hd_spells_deguisement.md
@@ -4,7 +4,7 @@
# Déguisement
-- SRD: [Disguise Self](srd_spells_disguise_self.md)
+- Alias: [Disguise Self](srd_spells_disguise_self.md)
- Illusion de niveau 1
diff --git a/Data/HD/hd_spells_demi_plan.md b/Data/HD/hd_spells_demi_plan.md
index 2d117473..fc7b9e15 100644
--- a/Data/HD/hd_spells_demi_plan.md
+++ b/Data/HD/hd_spells_demi_plan.md
@@ -4,7 +4,7 @@
# Demi-plan
-- SRD: [Demiplane](srd_spells_demiplane.md)
+- Alias: [Demiplane](srd_spells_demiplane.md)
- Invocation de niveau 8
diff --git a/Data/HD/hd_spells_deplacer_la_terre.md b/Data/HD/hd_spells_deplacer_la_terre.md
index 118239ef..ac24f67d 100644
--- a/Data/HD/hd_spells_deplacer_la_terre.md
+++ b/Data/HD/hd_spells_deplacer_la_terre.md
@@ -4,7 +4,7 @@
# Déplacer la terre
-- SRD: [Move Earth](srd_spells_move_earth.md)
+- Alias: [Move Earth](srd_spells_move_earth.md)
- Transmutation de niveau 6
diff --git a/Data/HD/hd_spells_desintegration.md b/Data/HD/hd_spells_desintegration.md
index 3af39f7e..5d5144ad 100644
--- a/Data/HD/hd_spells_desintegration.md
+++ b/Data/HD/hd_spells_desintegration.md
@@ -4,7 +4,7 @@
# Désintégration
-- SRD: [Disintegrate](srd_spells_disintegrate.md)
+- Alias: [Disintegrate](srd_spells_disintegrate.md)
- Transmutation de niveau 6
diff --git a/Data/HD/hd_spells_detection_de_la_magie.md b/Data/HD/hd_spells_detection_de_la_magie.md
index 898b8282..abb18684 100644
--- a/Data/HD/hd_spells_detection_de_la_magie.md
+++ b/Data/HD/hd_spells_detection_de_la_magie.md
@@ -4,7 +4,7 @@
# Détection de la magie
-- SRD: [Detect Magic](srd_spells_detect_magic.md)
+- Alias: [Detect Magic](srd_spells_detect_magic.md)
- Divination de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_detection_des_pensees.md b/Data/HD/hd_spells_detection_des_pensees.md
index 7d441935..367cb5ba 100644
--- a/Data/HD/hd_spells_detection_des_pensees.md
+++ b/Data/HD/hd_spells_detection_des_pensees.md
@@ -4,7 +4,7 @@
# Détection des pensées
-- SRD: [Detect Thoughts](srd_spells_detect_thoughts.md)
+- Alias: [Detect Thoughts](srd_spells_detect_thoughts.md)
- Divination de niveau 2
diff --git a/Data/HD/hd_spells_detection_du_mal_et_du_bien.md b/Data/HD/hd_spells_detection_du_mal_et_du_bien.md
index a04bb803..d3eb25d9 100644
--- a/Data/HD/hd_spells_detection_du_mal_et_du_bien.md
+++ b/Data/HD/hd_spells_detection_du_mal_et_du_bien.md
@@ -4,7 +4,7 @@
# Détection du mal et du bien
-- SRD: [Detect Evil and Good](srd_spells_detect_evil_and_good.md)
+- Alias: [Detect Evil and Good](srd_spells_detect_evil_and_good.md)
- Divination de niveau 1
diff --git a/Data/HD/hd_spells_detection_du_poison_et_des_maladies.md b/Data/HD/hd_spells_detection_du_poison_et_des_maladies.md
index b8bc5ca5..b15fe874 100644
--- a/Data/HD/hd_spells_detection_du_poison_et_des_maladies.md
+++ b/Data/HD/hd_spells_detection_du_poison_et_des_maladies.md
@@ -4,7 +4,7 @@
# Détection du poison et des maladies
-- SRD: [Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)
+- Alias: [Detect Poison and Disease](srd_spells_detect_poison_and_disease.md)
- Divination de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_disque_flottant.md b/Data/HD/hd_spells_disque_flottant.md
index d491f813..54ba5542 100644
--- a/Data/HD/hd_spells_disque_flottant.md
+++ b/Data/HD/hd_spells_disque_flottant.md
@@ -4,7 +4,7 @@
# Disque flottant
-- SRD: [Floating Disk](srd_spells_floating_disk.md)
+- Alias: [Floating Disk](srd_spells_floating_disk.md)
- Invocation de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_dissipation_de_la_magie.md b/Data/HD/hd_spells_dissipation_de_la_magie.md
index b4c8e3ac..08d898b5 100644
--- a/Data/HD/hd_spells_dissipation_de_la_magie.md
+++ b/Data/HD/hd_spells_dissipation_de_la_magie.md
@@ -4,7 +4,7 @@
# Dissipation de la magie
-- SRD: [Dispel Magic](srd_spells_dispel_magic.md)
+- Alias: [Dispel Magic](srd_spells_dispel_magic.md)
- Abjuration de niveau 3
diff --git a/Data/HD/hd_spells_dissipation_du_mal_et_du_bien.md b/Data/HD/hd_spells_dissipation_du_mal_et_du_bien.md
index 850a3f65..486ee669 100644
--- a/Data/HD/hd_spells_dissipation_du_mal_et_du_bien.md
+++ b/Data/HD/hd_spells_dissipation_du_mal_et_du_bien.md
@@ -4,7 +4,7 @@
# Dissipation du mal et du bien
-- SRD: [Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)
+- Alias: [Dispel Evil and Good](srd_spells_dispel_evil_and_good.md)
- Abjuration de niveau 5
diff --git a/Data/HD/hd_spells_divination.md b/Data/HD/hd_spells_divination.md
index f35fcb1d..9e4d2ab6 100644
--- a/Data/HD/hd_spells_divination.md
+++ b/Data/HD/hd_spells_divination.md
@@ -4,7 +4,7 @@
# Divination
-- SRD: [Divination](srd_spells_divination.md)
+- Alias: [Divination](srd_spells_divination.md)
- Divination de niveau 4 (rituel)
diff --git a/Data/HD/hd_spells_doigt_de_mort.md b/Data/HD/hd_spells_doigt_de_mort.md
index c25df5f3..65976827 100644
--- a/Data/HD/hd_spells_doigt_de_mort.md
+++ b/Data/HD/hd_spells_doigt_de_mort.md
@@ -4,7 +4,7 @@
# Doigt de mort
-- SRD: [Finger of Death](srd_spells_finger_of_death.md)
+- Alias: [Finger of Death](srd_spells_finger_of_death.md)
- Nécromancie de niveau 7
diff --git a/Data/HD/hd_spells_dominer_un_humanoide.md b/Data/HD/hd_spells_dominer_un_humanoide.md
index b864d58a..ae9b27b5 100644
--- a/Data/HD/hd_spells_dominer_un_humanoide.md
+++ b/Data/HD/hd_spells_dominer_un_humanoide.md
@@ -4,7 +4,7 @@
# Dominer un humanoïde
-- SRD: [Dominate Person](srd_spells_dominate_person.md)
+- Alias: [Dominate Person](srd_spells_dominate_person.md)
- Enchantement de niveau 5
diff --git a/Data/HD/hd_spells_dominer_un_monstre.md b/Data/HD/hd_spells_dominer_un_monstre.md
index 1452bcbe..76d9c0d4 100644
--- a/Data/HD/hd_spells_dominer_un_monstre.md
+++ b/Data/HD/hd_spells_dominer_un_monstre.md
@@ -4,7 +4,7 @@
# Dominer un monstre
-- SRD: [Dominate Monster](srd_spells_dominate_monster.md)
+- Alias: [Dominate Monster](srd_spells_dominate_monster.md)
- Enchantement de niveau 8
diff --git a/Data/HD/hd_spells_dominer_une_bete.md b/Data/HD/hd_spells_dominer_une_bete.md
index 428957e1..24b431b0 100644
--- a/Data/HD/hd_spells_dominer_une_bete.md
+++ b/Data/HD/hd_spells_dominer_une_bete.md
@@ -4,7 +4,7 @@
# Dominer une bête
-- SRD: [Dominate Beast](srd_spells_dominate_beast.md)
+- Alias: [Dominate Beast](srd_spells_dominate_beast.md)
- Enchantement de niveau 4
diff --git a/Data/HD/hd_spells_doux_repos.md b/Data/HD/hd_spells_doux_repos.md
index ca5ce2d3..ecf93419 100644
--- a/Data/HD/hd_spells_doux_repos.md
+++ b/Data/HD/hd_spells_doux_repos.md
@@ -4,7 +4,7 @@
# Doux repos
-- SRD: [Gentle Repose](srd_spells_gentle_repose.md)
+- Alias: [Gentle Repose](srd_spells_gentle_repose.md)
- Nécromancie de niveau 2 (rituel)
diff --git a/Data/HD/hd_spells_druidisme.md b/Data/HD/hd_spells_druidisme.md
index 58674f7e..6209d7e3 100644
--- a/Data/HD/hd_spells_druidisme.md
+++ b/Data/HD/hd_spells_druidisme.md
@@ -4,7 +4,7 @@
# Druidisme
-- SRD: [Druidcraft](srd_spells_druidcraft.md)
+- Alias: [Druidcraft](srd_spells_druidcraft.md)
- Transmutation, tour de magie
diff --git a/Data/HD/hd_spells_eclair.md b/Data/HD/hd_spells_eclair.md
index c2ad99de..9a7c2c27 100644
--- a/Data/HD/hd_spells_eclair.md
+++ b/Data/HD/hd_spells_eclair.md
@@ -4,7 +4,7 @@
# Éclair
-- SRD: [Lightning Bolt](srd_spells_lightning_bolt.md)
+- Alias: [Lightning Bolt](srd_spells_lightning_bolt.md)
- Évocation de niveau 3
diff --git a/Data/HD/hd_spells_eclat_du_soleil.md b/Data/HD/hd_spells_eclat_du_soleil.md
index 09fb8117..d0406e37 100644
--- a/Data/HD/hd_spells_eclat_du_soleil.md
+++ b/Data/HD/hd_spells_eclat_du_soleil.md
@@ -4,7 +4,7 @@
# Éclat du soleil
-- SRD: [Sunburst](srd_spells_sunburst.md)
+- Alias: [Sunburst](srd_spells_sunburst.md)
- Évocation de niveau 8
diff --git a/Data/HD/hd_spells_embruns_prismatiques.md b/Data/HD/hd_spells_embruns_prismatiques.md
index cfb289c8..1626867d 100644
--- a/Data/HD/hd_spells_embruns_prismatiques.md
+++ b/Data/HD/hd_spells_embruns_prismatiques.md
@@ -4,7 +4,7 @@
# Embruns prismatiques
-- SRD: [Prismatic Spray](srd_spells_prismatic_spray.md)
+- Alias: [Prismatic Spray](srd_spells_prismatic_spray.md)
- Évocation de niveau 7
diff --git a/Data/HD/hd_spells_emprisonnement.md b/Data/HD/hd_spells_emprisonnement.md
index 229d742e..1c496cd9 100644
--- a/Data/HD/hd_spells_emprisonnement.md
+++ b/Data/HD/hd_spells_emprisonnement.md
@@ -4,7 +4,7 @@
# Emprisonnement
-- SRD: [Imprisonment](srd_spells_imprisonment.md)
+- Alias: [Imprisonment](srd_spells_imprisonment.md)
- Abjuration de niveau 9
diff --git a/Data/HD/hd_spells_enchevetrement.md b/Data/HD/hd_spells_enchevetrement.md
index 6e450a90..a2bf5f69 100644
--- a/Data/HD/hd_spells_enchevetrement.md
+++ b/Data/HD/hd_spells_enchevetrement.md
@@ -4,7 +4,7 @@
# Enchevêtrement
-- SRD: [Entangle](srd_spells_entangle.md)
+- Alias: [Entangle](srd_spells_entangle.md)
- Invocation de niveau 1
diff --git a/Data/HD/hd_spells_entrave_planaire.md b/Data/HD/hd_spells_entrave_planaire.md
index 9360ec5e..181ffdb7 100644
--- a/Data/HD/hd_spells_entrave_planaire.md
+++ b/Data/HD/hd_spells_entrave_planaire.md
@@ -4,7 +4,7 @@
# Entrave planaire
-- SRD: [Planar Binding](srd_spells_planar_binding.md)
+- Alias: [Planar Binding](srd_spells_planar_binding.md)
- Abjuration de niveau 5
diff --git a/Data/HD/hd_spells_envoi_de_message.md b/Data/HD/hd_spells_envoi_de_message.md
index 7acec2fc..820a0457 100644
--- a/Data/HD/hd_spells_envoi_de_message.md
+++ b/Data/HD/hd_spells_envoi_de_message.md
@@ -4,7 +4,7 @@
# Envoi de message
-- SRD: [Sending](srd_spells_sending.md)
+- Alias: [Sending](srd_spells_sending.md)
- Évocation de niveau 3
diff --git a/Data/HD/hd_spells_envoutement.md b/Data/HD/hd_spells_envoutement.md
index 9fa9401c..ba3d0b2d 100644
--- a/Data/HD/hd_spells_envoutement.md
+++ b/Data/HD/hd_spells_envoutement.md
@@ -4,7 +4,7 @@
# Envoûtement
-- SRD: [Enthrall](srd_spells_enthrall.md)
+- Alias: [Enthrall](srd_spells_enthrall.md)
- Enchantement de niveau 2
diff --git a/Data/HD/hd_spells_epargner_les_mourants.md b/Data/HD/hd_spells_epargner_les_mourants.md
index 6e3c5971..f3c0c149 100644
--- a/Data/HD/hd_spells_epargner_les_mourants.md
+++ b/Data/HD/hd_spells_epargner_les_mourants.md
@@ -4,7 +4,7 @@
# Épargner les mourants
-- SRD: [Spare the Dying](srd_spells_spare_the_dying.md)
+- Alias: [Spare the Dying](srd_spells_spare_the_dying.md)
- Nécromancie, tour de magie
diff --git a/Data/HD/hd_spells_epee_magique.md b/Data/HD/hd_spells_epee_magique.md
index 7af7518b..de578f31 100644
--- a/Data/HD/hd_spells_epee_magique.md
+++ b/Data/HD/hd_spells_epee_magique.md
@@ -4,7 +4,7 @@
# Épée magique
-- SRD: [Arcane Sword](srd_spells_arcane_sword.md)
+- Alias: [Arcane Sword](srd_spells_arcane_sword.md)
- Évocation de niveau 7
diff --git a/Data/HD/hd_spells_esprit_faible.md b/Data/HD/hd_spells_esprit_faible.md
index c5c6ce4f..218f316e 100644
--- a/Data/HD/hd_spells_esprit_faible.md
+++ b/Data/HD/hd_spells_esprit_faible.md
@@ -4,7 +4,7 @@
# Esprit faible
-- SRD: [Feeblemind](srd_spells_feeblemind.md)
+- Alias: [Feeblemind](srd_spells_feeblemind.md)
- Enchantement de niveau 8
diff --git a/Data/HD/hd_spells_esprit_impenetrable.md b/Data/HD/hd_spells_esprit_impenetrable.md
index 015e2a85..eae45af8 100644
--- a/Data/HD/hd_spells_esprit_impenetrable.md
+++ b/Data/HD/hd_spells_esprit_impenetrable.md
@@ -4,7 +4,7 @@
# Esprit impénétrable
-- SRD: [Mind Blank](srd_spells_mind_blank.md)
+- Alias: [Mind Blank](srd_spells_mind_blank.md)
- Abjuration de niveau 8
diff --git a/Data/HD/hd_spells_esprits_gardiens.md b/Data/HD/hd_spells_esprits_gardiens.md
index 31e6209d..78ada764 100644
--- a/Data/HD/hd_spells_esprits_gardiens.md
+++ b/Data/HD/hd_spells_esprits_gardiens.md
@@ -4,7 +4,7 @@
# Esprits gardiens
-- SRD: [Spirit Guardians](srd_spells_spirit_guardians.md)
+- Alias: [Spirit Guardians](srd_spells_spirit_guardians.md)
- Invocation de niveau 3
diff --git a/Data/HD/hd_spells_etrangete.md b/Data/HD/hd_spells_etrangete.md
index 63d8c3eb..6ed2302f 100644
--- a/Data/HD/hd_spells_etrangete.md
+++ b/Data/HD/hd_spells_etrangete.md
@@ -4,7 +4,7 @@
# Étrangeté
-- SRD: [Weird](srd_spells_weird.md)
+- Alias: [Weird](srd_spells_weird.md)
- Illusion de niveau 9
diff --git a/Data/HD/hd_spells_eveil.md b/Data/HD/hd_spells_eveil.md
index 06ad76fd..3e952798 100644
--- a/Data/HD/hd_spells_eveil.md
+++ b/Data/HD/hd_spells_eveil.md
@@ -4,7 +4,7 @@
# Éveil
-- SRD: [Awaken](srd_spells_awaken.md)
+- Alias: [Awaken](srd_spells_awaken.md)
- Transmutation de niveau 5
diff --git a/Data/HD/hd_spells_explosion_occulte.md b/Data/HD/hd_spells_explosion_occulte.md
index 3d214186..3a7977f9 100644
--- a/Data/HD/hd_spells_explosion_occulte.md
+++ b/Data/HD/hd_spells_explosion_occulte.md
@@ -4,7 +4,7 @@
# Explosion occulte
-- SRD: [Eldritch Blast](srd_spells_eldritch_blast.md)
+- Alias: [Eldritch Blast](srd_spells_eldritch_blast.md)
- Évocation, tour de magie
diff --git a/Data/HD/hd_spells_fabrication.md b/Data/HD/hd_spells_fabrication.md
index 8e3ebb4c..680b1606 100644
--- a/Data/HD/hd_spells_fabrication.md
+++ b/Data/HD/hd_spells_fabrication.md
@@ -4,7 +4,7 @@
# Fabrication
-- SRD: [Fabricate](srd_spells_fabricate.md)
+- Alias: [Fabricate](srd_spells_fabricate.md)
- Transmutation de niveau 4
diff --git a/Data/HD/hd_spells_faconnage_de_la_pierre.md b/Data/HD/hd_spells_faconnage_de_la_pierre.md
index 39767319..6735a388 100644
--- a/Data/HD/hd_spells_faconnage_de_la_pierre.md
+++ b/Data/HD/hd_spells_faconnage_de_la_pierre.md
@@ -4,7 +4,7 @@
# Façonnage de la pierre
-- SRD: [Stone Shape](srd_spells_stone_shape.md)
+- Alias: [Stone Shape](srd_spells_stone_shape.md)
- Transmutation de niveau 4
diff --git a/Data/HD/hd_spells_faveur_divine.md b/Data/HD/hd_spells_faveur_divine.md
index 19c38348..893a2a80 100644
--- a/Data/HD/hd_spells_faveur_divine.md
+++ b/Data/HD/hd_spells_faveur_divine.md
@@ -4,7 +4,7 @@
# Faveur divine
-- SRD: [Divine Favor](srd_spells_divine_favor.md)
+- Alias: [Divine Favor](srd_spells_divine_favor.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_festin_des_heros.md b/Data/HD/hd_spells_festin_des_heros.md
index 1aba3737..36c78428 100644
--- a/Data/HD/hd_spells_festin_des_heros.md
+++ b/Data/HD/hd_spells_festin_des_heros.md
@@ -4,7 +4,7 @@
# Festin des héros
-- SRD: [Heroes' Feast](srd_spells_heroes_feast.md)
+- Alias: [Heroes' Feast](srd_spells_heroes_feast.md)
- Invocation de niveau 6
diff --git a/Data/HD/hd_spells_flamme_eternelle.md b/Data/HD/hd_spells_flamme_eternelle.md
index 32bb4024..91a96b56 100644
--- a/Data/HD/hd_spells_flamme_eternelle.md
+++ b/Data/HD/hd_spells_flamme_eternelle.md
@@ -4,7 +4,7 @@
# Flamme éternelle
-- SRD: [Continual Flame](srd_spells_continual_flame.md)
+- Alias: [Continual Flame](srd_spells_continual_flame.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_flamme_sacree.md b/Data/HD/hd_spells_flamme_sacree.md
index 88279e77..9868c384 100644
--- a/Data/HD/hd_spells_flamme_sacree.md
+++ b/Data/HD/hd_spells_flamme_sacree.md
@@ -4,7 +4,7 @@
# Flamme sacrée
-- SRD: [Sacred Flame](srd_spells_sacred_flame.md)
+- Alias: [Sacred Flame](srd_spells_sacred_flame.md)
- Évocation, tour de magie
diff --git a/Data/HD/hd_spells_fleau.md b/Data/HD/hd_spells_fleau.md
index b07f2ce2..f5a5470e 100644
--- a/Data/HD/hd_spells_fleau.md
+++ b/Data/HD/hd_spells_fleau.md
@@ -4,7 +4,7 @@
# Fléau
-- SRD: [Bane](srd_spells_bane.md)
+- Alias: [Bane](srd_spells_bane.md)
- Enchantement de niveau 1
diff --git a/Data/HD/hd_spells_fleau_dinsectes.md b/Data/HD/hd_spells_fleau_dinsectes.md
index bc6846e2..cb38f300 100644
--- a/Data/HD/hd_spells_fleau_dinsectes.md
+++ b/Data/HD/hd_spells_fleau_dinsectes.md
@@ -4,7 +4,7 @@
# Fléau d'insectes
-- SRD: [Insect Plague](srd_spells_insect_plague.md)
+- Alias: [Insect Plague](srd_spells_insect_plague.md)
- Invocation de niveau 5
diff --git a/Data/HD/hd_spells_fleche_acide.md b/Data/HD/hd_spells_fleche_acide.md
index 02a89bc7..d49c3a1e 100644
--- a/Data/HD/hd_spells_fleche_acide.md
+++ b/Data/HD/hd_spells_fleche_acide.md
@@ -4,7 +4,7 @@
# Flèche acide
-- SRD: [Acid Arrow](srd_spells_acid_arrow.md)
+- Alias: [Acid Arrow](srd_spells_acid_arrow.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_fletrissement.md b/Data/HD/hd_spells_fletrissement.md
index 39a15214..8b81a26e 100644
--- a/Data/HD/hd_spells_fletrissement.md
+++ b/Data/HD/hd_spells_fletrissement.md
@@ -4,7 +4,7 @@
# Flétrissement
-- SRD: [Blight](srd_spells_blight.md)
+- Alias: [Blight](srd_spells_blight.md)
- Nécromancie de niveau 4
diff --git a/Data/HD/hd_spells_flou.md b/Data/HD/hd_spells_flou.md
index bfdbf378..f6aab8aa 100644
--- a/Data/HD/hd_spells_flou.md
+++ b/Data/HD/hd_spells_flou.md
@@ -4,7 +4,7 @@
# Flou
-- SRD: [Blur](srd_spells_blur.md)
+- Alias: [Blur](srd_spells_blur.md)
- Illusion de niveau 2
diff --git a/Data/HD/hd_spells_forme_etheree.md b/Data/HD/hd_spells_forme_etheree.md
index 50b51061..054aaa7c 100644
--- a/Data/HD/hd_spells_forme_etheree.md
+++ b/Data/HD/hd_spells_forme_etheree.md
@@ -4,7 +4,7 @@
# Forme éthérée
-- SRD: [Etherealness](srd_spells_etherealness.md)
+- Alias: [Etherealness](srd_spells_etherealness.md)
- Transmutation de niveau 7
diff --git a/Data/HD/hd_spells_forme_gazeuse.md b/Data/HD/hd_spells_forme_gazeuse.md
index ec89c72e..200eb331 100644
--- a/Data/HD/hd_spells_forme_gazeuse.md
+++ b/Data/HD/hd_spells_forme_gazeuse.md
@@ -4,7 +4,7 @@
# Forme gazeuse
-- SRD: [Gaseous Form](srd_spells_gaseous_form.md)
+- Alias: [Gaseous Form](srd_spells_gaseous_form.md)
- Transmutation de niveau 3
diff --git a/Data/HD/hd_spells_formes_animales.md b/Data/HD/hd_spells_formes_animales.md
index fd61ab20..f18d9ac2 100644
--- a/Data/HD/hd_spells_formes_animales.md
+++ b/Data/HD/hd_spells_formes_animales.md
@@ -4,7 +4,7 @@
# Formes animales
-- SRD: [Animal Shapes](srd_spells_animal_shapes.md)
+- Alias: [Animal Shapes](srd_spells_animal_shapes.md)
- Transmutation de niveau 8
diff --git a/Data/HD/hd_spells_fou_rire.md b/Data/HD/hd_spells_fou_rire.md
index 5c8bf7b4..8dc63d3b 100644
--- a/Data/HD/hd_spells_fou_rire.md
+++ b/Data/HD/hd_spells_fou_rire.md
@@ -4,7 +4,7 @@
# Fou rire
-- SRD: [Hideous Laughter](srd_spells_hideous_laughter.md)
+- Alias: [Hideous Laughter](srd_spells_hideous_laughter.md)
- Enchantement de niveau 1
diff --git a/Data/HD/hd_spells_frappe_lumineuse.md b/Data/HD/hd_spells_frappe_lumineuse.md
index 7d82f215..fa8cc65c 100644
--- a/Data/HD/hd_spells_frappe_lumineuse.md
+++ b/Data/HD/hd_spells_frappe_lumineuse.md
@@ -4,7 +4,7 @@
# Frappe lumineuse
-- SRD: [Branding Smite](srd_spells_branding_smite.md)
+- Alias: [Branding Smite](srd_spells_branding_smite.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_fusion_dans_la_pierre.md b/Data/HD/hd_spells_fusion_dans_la_pierre.md
index 72ce828b..7f5e3f47 100644
--- a/Data/HD/hd_spells_fusion_dans_la_pierre.md
+++ b/Data/HD/hd_spells_fusion_dans_la_pierre.md
@@ -4,7 +4,7 @@
# Fusion dans la pierre
-- SRD: [Meld into Stone](srd_spells_meld_into_stone.md)
+- Alias: [Meld into Stone](srd_spells_meld_into_stone.md)
- Transmutation de niveau 3 (rituel)
diff --git a/Data/HD/hd_spells_gardien_de_la_foi.md b/Data/HD/hd_spells_gardien_de_la_foi.md
index 7756f915..bf4c598c 100644
--- a/Data/HD/hd_spells_gardien_de_la_foi.md
+++ b/Data/HD/hd_spells_gardien_de_la_foi.md
@@ -4,7 +4,7 @@
# Gardien de la foi
-- SRD: [Guardian of Faith](srd_spells_guardian_of_faith.md)
+- Alias: [Guardian of Faith](srd_spells_guardian_of_faith.md)
- Invocation de niveau 4
diff --git a/Data/HD/hd_spells_globe_dinvulnerabilite.md b/Data/HD/hd_spells_globe_dinvulnerabilite.md
index 67a4de69..6fb95637 100644
--- a/Data/HD/hd_spells_globe_dinvulnerabilite.md
+++ b/Data/HD/hd_spells_globe_dinvulnerabilite.md
@@ -4,7 +4,7 @@
# Globe d'invulnérabilité
-- SRD: [Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)
+- Alias: [Globe of Invulnerability](srd_spells_globe_of_invulnerability.md)
- Abjuration de niveau 6
diff --git a/Data/HD/hd_spells_glyphe_de_protection.md b/Data/HD/hd_spells_glyphe_de_protection.md
index 3d7e1a68..65463877 100644
--- a/Data/HD/hd_spells_glyphe_de_protection.md
+++ b/Data/HD/hd_spells_glyphe_de_protection.md
@@ -4,7 +4,7 @@
# Glyphe de protection
-- SRD: [Glyph of Warding](srd_spells_glyph_of_warding.md)
+- Alias: [Glyph of Warding](srd_spells_glyph_of_warding.md)
- Abjuration de niveau 3
diff --git a/Data/HD/hd_spells_gourdin_magique.md b/Data/HD/hd_spells_gourdin_magique.md
index 52131052..ca3f284b 100644
--- a/Data/HD/hd_spells_gourdin_magique.md
+++ b/Data/HD/hd_spells_gourdin_magique.md
@@ -4,7 +4,7 @@
# Gourdin magique
-- SRD: [Shillelagh](srd_spells_shillelagh.md)
+- Alias: [Shillelagh](srd_spells_shillelagh.md)
- Transmutation, tour de magie
diff --git a/Data/HD/hd_spells_graisse.md b/Data/HD/hd_spells_graisse.md
index 95dca536..c61c3853 100644
--- a/Data/HD/hd_spells_graisse.md
+++ b/Data/HD/hd_spells_graisse.md
@@ -4,7 +4,7 @@
# Graisse
-- SRD: [Grease](srd_spells_grease.md)
+- Alias: [Grease](srd_spells_grease.md)
- Invocation de niveau 1
diff --git a/Data/HD/hd_spells_grande_foulee.md b/Data/HD/hd_spells_grande_foulee.md
index 03ab3cc0..6a254d74 100644
--- a/Data/HD/hd_spells_grande_foulee.md
+++ b/Data/HD/hd_spells_grande_foulee.md
@@ -4,7 +4,7 @@
# Grande foulée
-- SRD: [Longstrider](srd_spells_longstrider.md)
+- Alias: [Longstrider](srd_spells_longstrider.md)
- Transmutation de niveau 1
diff --git a/Data/HD/hd_spells_guerison.md b/Data/HD/hd_spells_guerison.md
index bbece4bd..a4450b3d 100644
--- a/Data/HD/hd_spells_guerison.md
+++ b/Data/HD/hd_spells_guerison.md
@@ -4,7 +4,7 @@
# Guérison
-- SRD: [Heal](srd_spells_heal.md)
+- Alias: [Heal](srd_spells_heal.md)
- Évocation de niveau 6
diff --git a/Data/HD/hd_spells_guerison_de_groupe.md b/Data/HD/hd_spells_guerison_de_groupe.md
index b4fe9cc8..000f1172 100644
--- a/Data/HD/hd_spells_guerison_de_groupe.md
+++ b/Data/HD/hd_spells_guerison_de_groupe.md
@@ -4,7 +4,7 @@
# Guérison de groupe
-- SRD: [Mass Heal](srd_spells_mass_heal.md)
+- Alias: [Mass Heal](srd_spells_mass_heal.md)
- Évocation de niveau 9
diff --git a/Data/HD/hd_spells_hate.md b/Data/HD/hd_spells_hate.md
index b86c8487..3afc0983 100644
--- a/Data/HD/hd_spells_hate.md
+++ b/Data/HD/hd_spells_hate.md
@@ -4,7 +4,7 @@
# Hâte
-- SRD: [Haste](srd_spells_haste.md)
+- Alias: [Haste](srd_spells_haste.md)
- Transmutation de niveau 3
diff --git a/Data/HD/hd_spells_heroisme.md b/Data/HD/hd_spells_heroisme.md
index 9b50bca4..fee8b12f 100644
--- a/Data/HD/hd_spells_heroisme.md
+++ b/Data/HD/hd_spells_heroisme.md
@@ -4,7 +4,7 @@
# Héroïsme
-- SRD: [Heroism](srd_spells_heroism.md)
+- Alias: [Heroism](srd_spells_heroism.md)
- Enchantement de niveau 1
diff --git a/Data/HD/hd_spells_identification.md b/Data/HD/hd_spells_identification.md
index 55d6ab38..04943221 100644
--- a/Data/HD/hd_spells_identification.md
+++ b/Data/HD/hd_spells_identification.md
@@ -4,7 +4,7 @@
# Identification
-- SRD: [Identify](srd_spells_identify.md)
+- Alias: [Identify](srd_spells_identify.md)
- Divination de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_illusion_mineure.md b/Data/HD/hd_spells_illusion_mineure.md
index d69c7a46..123610fb 100644
--- a/Data/HD/hd_spells_illusion_mineure.md
+++ b/Data/HD/hd_spells_illusion_mineure.md
@@ -4,7 +4,7 @@
# Illusion mineure
-- SRD: [Minor Illusion](srd_spells_minor_illusion.md)
+- Alias: [Minor Illusion](srd_spells_minor_illusion.md)
- Illusion, tour de magie
diff --git a/Data/HD/hd_spells_illusion_programmee.md b/Data/HD/hd_spells_illusion_programmee.md
index 159812b4..533178a5 100644
--- a/Data/HD/hd_spells_illusion_programmee.md
+++ b/Data/HD/hd_spells_illusion_programmee.md
@@ -4,7 +4,7 @@
# Illusion programmée
-- SRD: [Programmed Illusion](srd_spells_programmed_illusion.md)
+- Alias: [Programmed Illusion](srd_spells_programmed_illusion.md)
- Illusion de niveau 6
diff --git a/Data/HD/hd_spells_image_majeure.md b/Data/HD/hd_spells_image_majeure.md
index 956dde1b..867794c0 100644
--- a/Data/HD/hd_spells_image_majeure.md
+++ b/Data/HD/hd_spells_image_majeure.md
@@ -4,7 +4,7 @@
# Image majeure
-- SRD: [Major Image](srd_spells_major_image.md)
+- Alias: [Major Image](srd_spells_major_image.md)
- Illusion de niveau 3
diff --git a/Data/HD/hd_spells_image_miroir.md b/Data/HD/hd_spells_image_miroir.md
index 9c663cae..70f8bb0a 100644
--- a/Data/HD/hd_spells_image_miroir.md
+++ b/Data/HD/hd_spells_image_miroir.md
@@ -4,7 +4,7 @@
# Image miroir
-- SRD: [Mirror Image](srd_spells_mirror_image.md)
+- Alias: [Mirror Image](srd_spells_mirror_image.md)
- Illusion de niveau 2
diff --git a/Data/HD/hd_spells_image_projetee.md b/Data/HD/hd_spells_image_projetee.md
index 97f7f531..d694d832 100644
--- a/Data/HD/hd_spells_image_projetee.md
+++ b/Data/HD/hd_spells_image_projetee.md
@@ -4,7 +4,7 @@
# Image projetée
-- SRD: [Project Image](srd_spells_project_image.md)
+- Alias: [Project Image](srd_spells_project_image.md)
- Illusion de niveau 7
diff --git a/Data/HD/hd_spells_image_silencieuse.md b/Data/HD/hd_spells_image_silencieuse.md
index f0435309..01a2295c 100644
--- a/Data/HD/hd_spells_image_silencieuse.md
+++ b/Data/HD/hd_spells_image_silencieuse.md
@@ -4,7 +4,7 @@
# Image silencieuse
-- SRD: [Silent Image](srd_spells_silent_image.md)
+- Alias: [Silent Image](srd_spells_silent_image.md)
- Illusion de niveau 1
diff --git a/Data/HD/hd_spells_immobiliser_un_humanoide.md b/Data/HD/hd_spells_immobiliser_un_humanoide.md
index 5d1512ed..44f1abc3 100644
--- a/Data/HD/hd_spells_immobiliser_un_humanoide.md
+++ b/Data/HD/hd_spells_immobiliser_un_humanoide.md
@@ -4,7 +4,7 @@
# Immobiliser un humanoïde
-- SRD: [Hold Person](srd_spells_hold_person.md)
+- Alias: [Hold Person](srd_spells_hold_person.md)
- Enchantement de niveau 2
diff --git a/Data/HD/hd_spells_immobiliser_un_monstre.md b/Data/HD/hd_spells_immobiliser_un_monstre.md
index 5668e5ef..511b9d62 100644
--- a/Data/HD/hd_spells_immobiliser_un_monstre.md
+++ b/Data/HD/hd_spells_immobiliser_un_monstre.md
@@ -4,7 +4,7 @@
# Immobiliser un monstre
-- SRD: [Hold Monster](srd_spells_hold_monster.md)
+- Alias: [Hold Monster](srd_spells_hold_monster.md)
- Enchantement de niveau 5
diff --git a/Data/HD/hd_spells_injonction.md b/Data/HD/hd_spells_injonction.md
index 539350c3..11a88f8d 100644
--- a/Data/HD/hd_spells_injonction.md
+++ b/Data/HD/hd_spells_injonction.md
@@ -4,7 +4,7 @@
# Injonction
-- SRD: [Command](srd_spells_command.md)
+- Alias: [Command](srd_spells_command.md)
- Enchantement de niveau 1
diff --git a/Data/HD/hd_spells_insecte_geant.md b/Data/HD/hd_spells_insecte_geant.md
index 68263f48..abfbfa54 100644
--- a/Data/HD/hd_spells_insecte_geant.md
+++ b/Data/HD/hd_spells_insecte_geant.md
@@ -4,7 +4,7 @@
# Insecte géant
-- SRD: [Giant Insect](srd_spells_giant_insect.md)
+- Alias: [Giant Insect](srd_spells_giant_insect.md)
- Transmutation de niveau 4
diff --git a/Data/HD/hd_spells_interdiction.md b/Data/HD/hd_spells_interdiction.md
index 998e4227..2d13c445 100644
--- a/Data/HD/hd_spells_interdiction.md
+++ b/Data/HD/hd_spells_interdiction.md
@@ -4,7 +4,7 @@
# Interdiction
-- SRD: [Forbiddance](srd_spells_forbiddance.md)
+- Alias: [Forbiddance](srd_spells_forbiddance.md)
- Abjuration de niveau 6 (rituel)
diff --git a/Data/HD/hd_spells_inversion_de_la_gravite.md b/Data/HD/hd_spells_inversion_de_la_gravite.md
index 0edb7506..aaa4e9ea 100644
--- a/Data/HD/hd_spells_inversion_de_la_gravite.md
+++ b/Data/HD/hd_spells_inversion_de_la_gravite.md
@@ -4,7 +4,7 @@
# Inversion de la gravité
-- SRD: [Reverse Gravity](srd_spells_reverse_gravity.md)
+- Alias: [Reverse Gravity](srd_spells_reverse_gravity.md)
- Transmutation de niveau 7
diff --git a/Data/HD/hd_spells_invisibilite.md b/Data/HD/hd_spells_invisibilite.md
index c08027f9..71dd1370 100644
--- a/Data/HD/hd_spells_invisibilite.md
+++ b/Data/HD/hd_spells_invisibilite.md
@@ -4,7 +4,7 @@
# Invisibilité
-- SRD: [Invisibility](srd_spells_invisibility.md)
+- Alias: [Invisibility](srd_spells_invisibility.md)
- Illusion de niveau 2
diff --git a/Data/HD/hd_spells_invisibilite_superieure.md b/Data/HD/hd_spells_invisibilite_superieure.md
index d501f843..09636d5a 100644
--- a/Data/HD/hd_spells_invisibilite_superieure.md
+++ b/Data/HD/hd_spells_invisibilite_superieure.md
@@ -4,7 +4,7 @@
# Invisibilité supérieure
-- SRD: [Greater Invisibility](srd_spells_greater_invisibility.md)
+- Alias: [Greater Invisibility](srd_spells_greater_invisibility.md)
- Illusion de niveau 4
diff --git a/Data/HD/hd_spells_invoquer_des_animaux.md b/Data/HD/hd_spells_invoquer_des_animaux.md
index 36ea60fd..ac8a3dcb 100644
--- a/Data/HD/hd_spells_invoquer_des_animaux.md
+++ b/Data/HD/hd_spells_invoquer_des_animaux.md
@@ -4,7 +4,7 @@
# Invoquer des animaux
-- SRD: [Conjure Animals](srd_spells_conjure_animals.md)
+- Alias: [Conjure Animals](srd_spells_conjure_animals.md)
- Invocation de niveau 3
diff --git a/Data/HD/hd_spells_invoquer_des_elementaires_mineurs.md b/Data/HD/hd_spells_invoquer_des_elementaires_mineurs.md
index af2983a6..9d6bbf78 100644
--- a/Data/HD/hd_spells_invoquer_des_elementaires_mineurs.md
+++ b/Data/HD/hd_spells_invoquer_des_elementaires_mineurs.md
@@ -4,7 +4,7 @@
# Invoquer des élémentaires mineurs
-- SRD: [Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)
+- Alias: [Conjure Minor Elementals](srd_spells_conjure_minor_elementals.md)
- Invocation de niveau 4
diff --git a/Data/HD/hd_spells_invoquer_des_etres_des_bois.md b/Data/HD/hd_spells_invoquer_des_etres_des_bois.md
index 9d9638df..bb6116de 100644
--- a/Data/HD/hd_spells_invoquer_des_etres_des_bois.md
+++ b/Data/HD/hd_spells_invoquer_des_etres_des_bois.md
@@ -4,7 +4,7 @@
# Invoquer des êtres des bois
-- SRD: [Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)
+- Alias: [Conjure Woodland Beings](srd_spells_conjure_woodland_beings.md)
- Invocation de niveau 4
diff --git a/Data/HD/hd_spells_invoquer_un_celeste.md b/Data/HD/hd_spells_invoquer_un_celeste.md
index 55b4fbf4..3ef38145 100644
--- a/Data/HD/hd_spells_invoquer_un_celeste.md
+++ b/Data/HD/hd_spells_invoquer_un_celeste.md
@@ -4,7 +4,7 @@
# Invoquer un céleste
-- SRD: [Conjure Celestial](srd_spells_conjure_celestial.md)
+- Alias: [Conjure Celestial](srd_spells_conjure_celestial.md)
- Invocation de niveau 7
diff --git a/Data/HD/hd_spells_invoquer_un_elementaire.md b/Data/HD/hd_spells_invoquer_un_elementaire.md
index 1c0d29a1..254b7017 100644
--- a/Data/HD/hd_spells_invoquer_un_elementaire.md
+++ b/Data/HD/hd_spells_invoquer_un_elementaire.md
@@ -4,7 +4,7 @@
# Invoquer un élémentaire
-- SRD: [Conjure Elemental](srd_spells_conjure_elemental.md)
+- Alias: [Conjure Elemental](srd_spells_conjure_elemental.md)
- Invocation de niveau 5
diff --git a/Data/HD/hd_spells_invoquer_une_fee.md b/Data/HD/hd_spells_invoquer_une_fee.md
index e7dffb2c..323a89b9 100644
--- a/Data/HD/hd_spells_invoquer_une_fee.md
+++ b/Data/HD/hd_spells_invoquer_une_fee.md
@@ -4,7 +4,7 @@
# Invoquer une fée
-- SRD: [Conjure Fey](srd_spells_conjure_fey.md)
+- Alias: [Conjure Fey](srd_spells_conjure_fey.md)
- Invocation de niveau 6
diff --git a/Data/HD/hd_spells_jeter_une_malediction.md b/Data/HD/hd_spells_jeter_une_malediction.md
index 078de4bd..1fff7e15 100644
--- a/Data/HD/hd_spells_jeter_une_malediction.md
+++ b/Data/HD/hd_spells_jeter_une_malediction.md
@@ -4,7 +4,7 @@
# Jeter une malédiction
-- SRD: [Bestow curse](srd_spells_bestow_curse.md)
+- Alias: [Bestow curse](srd_spells_bestow_curse.md)
- Nécromancie de niveau 3
diff --git a/Data/HD/hd_spells_labyrinthe.md b/Data/HD/hd_spells_labyrinthe.md
index 253cea07..16328158 100644
--- a/Data/HD/hd_spells_labyrinthe.md
+++ b/Data/HD/hd_spells_labyrinthe.md
@@ -4,7 +4,7 @@
# Labyrinthe
-- SRD: [Maze](srd_spells_maze.md)
+- Alias: [Maze](srd_spells_maze.md)
- Invocation de niveau 8
diff --git a/Data/HD/hd_spells_lame_de_feu.md b/Data/HD/hd_spells_lame_de_feu.md
index 8406e98f..5a87ddaf 100644
--- a/Data/HD/hd_spells_lame_de_feu.md
+++ b/Data/HD/hd_spells_lame_de_feu.md
@@ -4,7 +4,7 @@
# Lame de feu
-- SRD: [Flame Blade](srd_spells_flame_blade.md)
+- Alias: [Flame Blade](srd_spells_flame_blade.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_langues.md b/Data/HD/hd_spells_langues.md
index 639b0f38..e6913927 100644
--- a/Data/HD/hd_spells_langues.md
+++ b/Data/HD/hd_spells_langues.md
@@ -4,7 +4,7 @@
# Langues
-- SRD: [Tongues](srd_spells_tongues.md)
+- Alias: [Tongues](srd_spells_tongues.md)
- Divination de niveau 3
diff --git a/Data/HD/hd_spells_legende.md b/Data/HD/hd_spells_legende.md
index 7d3d6cbe..6e6cc72a 100644
--- a/Data/HD/hd_spells_legende.md
+++ b/Data/HD/hd_spells_legende.md
@@ -4,7 +4,7 @@
# Légende
-- SRD: [Legend Lore](srd_spells_legend_lore.md)
+- Alias: [Legend Lore](srd_spells_legend_lore.md)
- Divination de niveau 5
diff --git a/Data/HD/hd_spells_leger_comme_une_plume.md b/Data/HD/hd_spells_leger_comme_une_plume.md
index 57e7a5f8..ff3287bd 100644
--- a/Data/HD/hd_spells_leger_comme_une_plume.md
+++ b/Data/HD/hd_spells_leger_comme_une_plume.md
@@ -4,7 +4,7 @@
# Léger comme une plume
-- SRD: [Feather Fall](srd_spells_feather_fall.md)
+- Alias: [Feather Fall](srd_spells_feather_fall.md)
- Transmutation de niveau 1
diff --git a/Data/HD/hd_spells_lenteur.md b/Data/HD/hd_spells_lenteur.md
index 74e47663..2053d0a0 100644
--- a/Data/HD/hd_spells_lenteur.md
+++ b/Data/HD/hd_spells_lenteur.md
@@ -4,7 +4,7 @@
# Lenteur
-- SRD: [Slow](srd_spells_slow.md)
+- Alias: [Slow](srd_spells_slow.md)
- Transmutation de niveau 3
diff --git a/Data/HD/hd_spells_lever_une_malediction.md b/Data/HD/hd_spells_lever_une_malediction.md
index deba2a17..dadd677c 100644
--- a/Data/HD/hd_spells_lever_une_malediction.md
+++ b/Data/HD/hd_spells_lever_une_malediction.md
@@ -4,7 +4,7 @@
# Lever une malédiction
-- SRD: [Remove Curse](srd_spells_remove_curse.md)
+- Alias: [Remove Curse](srd_spells_remove_curse.md)
- Abjuration de niveau 3
diff --git a/Data/HD/hd_spells_levitation.md b/Data/HD/hd_spells_levitation.md
index 1c29c9e5..b8548920 100644
--- a/Data/HD/hd_spells_levitation.md
+++ b/Data/HD/hd_spells_levitation.md
@@ -4,7 +4,7 @@
# Lévitation
-- SRD: [Levitate](srd_spells_levitate.md)
+- Alias: [Levitate](srd_spells_levitate.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_liberte_de_mouvement.md b/Data/HD/hd_spells_liberte_de_mouvement.md
index d1dc7a1b..7ad06ede 100644
--- a/Data/HD/hd_spells_liberte_de_mouvement.md
+++ b/Data/HD/hd_spells_liberte_de_mouvement.md
@@ -4,7 +4,7 @@
# Liberté de mouvement
-- SRD: [Freedom of Movement](srd_spells_freedom_of_movement.md)
+- Alias: [Freedom of Movement](srd_spells_freedom_of_movement.md)
- Abjuration de niveau 4
diff --git a/Data/HD/hd_spells_lien_de_protection.md b/Data/HD/hd_spells_lien_de_protection.md
index b67a77b9..61f31823 100644
--- a/Data/HD/hd_spells_lien_de_protection.md
+++ b/Data/HD/hd_spells_lien_de_protection.md
@@ -4,7 +4,7 @@
# Lien de protection
-- SRD: [Warding Bond](srd_spells_warding_bond.md)
+- Alias: [Warding Bond](srd_spells_warding_bond.md)
- Abjuration de niveau 2
diff --git a/Data/HD/hd_spells_lien_telepathique.md b/Data/HD/hd_spells_lien_telepathique.md
index 160c6bf7..8f63ecf0 100644
--- a/Data/HD/hd_spells_lien_telepathique.md
+++ b/Data/HD/hd_spells_lien_telepathique.md
@@ -4,7 +4,7 @@
# Lien télépathique
-- SRD: [Telepathic Bond](srd_spells_telepathic_bond.md)
+- Alias: [Telepathic Bond](srd_spells_telepathic_bond.md)
- Divination de niveau 5 (rituel)
diff --git a/Data/HD/hd_spells_localiser_des_animaux_ou_des_plantes.md b/Data/HD/hd_spells_localiser_des_animaux_ou_des_plantes.md
index b402365f..290fa753 100644
--- a/Data/HD/hd_spells_localiser_des_animaux_ou_des_plantes.md
+++ b/Data/HD/hd_spells_localiser_des_animaux_ou_des_plantes.md
@@ -4,7 +4,7 @@
# Localiser des animaux ou des plantes
-- SRD: [Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)
+- Alias: [Locate Animals or Plants](srd_spells_locate_animals_or_plants.md)
- Divination de niveau 2 (rituel)
diff --git a/Data/HD/hd_spells_localiser_un_objet.md b/Data/HD/hd_spells_localiser_un_objet.md
index 3e2e9ebc..3b6781df 100644
--- a/Data/HD/hd_spells_localiser_un_objet.md
+++ b/Data/HD/hd_spells_localiser_un_objet.md
@@ -4,7 +4,7 @@
# Localiser un objet
-- SRD: [Locate Object](srd_spells_locate_object.md)
+- Alias: [Locate Object](srd_spells_locate_object.md)
- Divination de niveau 2
diff --git a/Data/HD/hd_spells_localiser_une_creature.md b/Data/HD/hd_spells_localiser_une_creature.md
index b40a404c..803fe38d 100644
--- a/Data/HD/hd_spells_localiser_une_creature.md
+++ b/Data/HD/hd_spells_localiser_une_creature.md
@@ -4,7 +4,7 @@
# Localiser une créature
-- SRD: [Locate Creature](srd_spells_locate_creature.md)
+- Alias: [Locate Creature](srd_spells_locate_creature.md)
- Divination de niveau 4
diff --git a/Data/HD/hd_spells_lueur_despoir.md b/Data/HD/hd_spells_lueur_despoir.md
index 6847aec1..655f45ff 100644
--- a/Data/HD/hd_spells_lueur_despoir.md
+++ b/Data/HD/hd_spells_lueur_despoir.md
@@ -4,7 +4,7 @@
# Lueur d'espoir
-- SRD: [Beacon of Hope](srd_spells_beacon_of_hope.md)
+- Alias: [Beacon of Hope](srd_spells_beacon_of_hope.md)
- Abjuration de niveau 3
diff --git a/Data/HD/hd_spells_lueurs_feeriques.md b/Data/HD/hd_spells_lueurs_feeriques.md
index 8d443838..fd79d6e8 100644
--- a/Data/HD/hd_spells_lueurs_feeriques.md
+++ b/Data/HD/hd_spells_lueurs_feeriques.md
@@ -4,7 +4,7 @@
# Lueurs féeriques
-- SRD: [Faerie Fire](srd_spells_faerie_fire.md)
+- Alias: [Faerie Fire](srd_spells_faerie_fire.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_lumiere.md b/Data/HD/hd_spells_lumiere.md
index ef29a54f..e22f3a8e 100644
--- a/Data/HD/hd_spells_lumiere.md
+++ b/Data/HD/hd_spells_lumiere.md
@@ -4,7 +4,7 @@
# Lumière
-- SRD: [Light](srd_spells_light.md)
+- Alias: [Light](srd_spells_light.md)
- Évocation, tour de magie
diff --git a/Data/HD/hd_spells_lumiere_du_jour.md b/Data/HD/hd_spells_lumiere_du_jour.md
index 61777237..ff7d71e1 100644
--- a/Data/HD/hd_spells_lumiere_du_jour.md
+++ b/Data/HD/hd_spells_lumiere_du_jour.md
@@ -4,7 +4,7 @@
# Lumière du jour
-- SRD: [Daylight](srd_spells_daylight.md)
+- Alias: [Daylight](srd_spells_daylight.md)
- Évocation de niveau 3
diff --git a/Data/HD/hd_spells_lumieres_dansantes.md b/Data/HD/hd_spells_lumieres_dansantes.md
index c684ab30..d5d22c9b 100644
--- a/Data/HD/hd_spells_lumieres_dansantes.md
+++ b/Data/HD/hd_spells_lumieres_dansantes.md
@@ -4,7 +4,7 @@
# Lumières dansantes
-- SRD: [Dancing Lights](srd_spells_dancing_lights.md)
+- Alias: [Dancing Lights](srd_spells_dancing_lights.md)
- Évocation, tour de magie
diff --git a/Data/HD/hd_spells_main_du_mage.md b/Data/HD/hd_spells_main_du_mage.md
index 7213026c..21faaaa0 100644
--- a/Data/HD/hd_spells_main_du_mage.md
+++ b/Data/HD/hd_spells_main_du_mage.md
@@ -4,7 +4,7 @@
# Main du mage
-- SRD: [Mage Hand](srd_spells_mage_hand.md)
+- Alias: [Mage Hand](srd_spells_mage_hand.md)
- Invocation , tour de magie
diff --git a/Data/HD/hd_spells_main_magique.md b/Data/HD/hd_spells_main_magique.md
index 7182ace2..cb8e1f3d 100644
--- a/Data/HD/hd_spells_main_magique.md
+++ b/Data/HD/hd_spells_main_magique.md
@@ -4,7 +4,7 @@
# Main magique
-- SRD: [Arcane Hand](srd_spells_arcane_hand.md)
+- Alias: [Arcane Hand](srd_spells_arcane_hand.md)
- Évocation de niveau 5
diff --git a/Data/HD/hd_spells_mains_brulantes.md b/Data/HD/hd_spells_mains_brulantes.md
index 7bd11b9e..21b7fdcd 100644
--- a/Data/HD/hd_spells_mains_brulantes.md
+++ b/Data/HD/hd_spells_mains_brulantes.md
@@ -4,7 +4,7 @@
# Mains brûlantes
-- SRD: [Burning Hands](srd_spells_burning_hands.md)
+- Alias: [Burning Hands](srd_spells_burning_hands.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_manoir_somptueux.md b/Data/HD/hd_spells_manoir_somptueux.md
index bb731866..b8392cf3 100644
--- a/Data/HD/hd_spells_manoir_somptueux.md
+++ b/Data/HD/hd_spells_manoir_somptueux.md
@@ -4,7 +4,7 @@
# Manoir somptueux
-- SRD: [Magnificent Mansion](srd_spells_magnificent_mansion.md)
+- Alias: [Magnificent Mansion](srd_spells_magnificent_mansion.md)
- Invocation de niveau 7
diff --git a/Data/HD/hd_spells_marche_sur_le_vent.md b/Data/HD/hd_spells_marche_sur_le_vent.md
index ea1d1a7b..83abee69 100644
--- a/Data/HD/hd_spells_marche_sur_le_vent.md
+++ b/Data/HD/hd_spells_marche_sur_le_vent.md
@@ -4,7 +4,7 @@
# Marche sur le vent
-- SRD: [Wind Walk](srd_spells_wind_walk.md)
+- Alias: [Wind Walk](srd_spells_wind_walk.md)
- Transmutation de niveau 6
diff --git a/Data/HD/hd_spells_marche_sur_leau.md b/Data/HD/hd_spells_marche_sur_leau.md
index 119bc56f..d3e36277 100644
--- a/Data/HD/hd_spells_marche_sur_leau.md
+++ b/Data/HD/hd_spells_marche_sur_leau.md
@@ -4,7 +4,7 @@
# Marche sur l'eau
-- SRD: [Water Walk](srd_spells_water_walk.md)
+- Alias: [Water Walk](srd_spells_water_walk.md)
- Transmutation de niveau 3 (rituel)
diff --git a/Data/HD/hd_spells_marque_du_chasseur.md b/Data/HD/hd_spells_marque_du_chasseur.md
index 0d47a520..b0958d2b 100644
--- a/Data/HD/hd_spells_marque_du_chasseur.md
+++ b/Data/HD/hd_spells_marque_du_chasseur.md
@@ -4,7 +4,7 @@
# Marque du chasseur
-- SRD: [Hunter's Mark](srd_spells_hunters_mark.md)
+- Alias: [Hunter's Mark](srd_spells_hunters_mark.md)
- Divination de niveau 1
diff --git a/Data/HD/hd_spells_mauvais_oeil.md b/Data/HD/hd_spells_mauvais_oeil.md
index 792682d6..2be4914a 100644
--- a/Data/HD/hd_spells_mauvais_oeil.md
+++ b/Data/HD/hd_spells_mauvais_oeil.md
@@ -4,7 +4,7 @@
# Mauvais oeil
-- SRD: [Eyebite](srd_spells_eyebite.md)
+- Alias: [Eyebite](srd_spells_eyebite.md)
- Nécromancie de niveau 6
diff --git a/Data/HD/hd_spells_message.md b/Data/HD/hd_spells_message.md
index 9849cd62..8e69a600 100644
--- a/Data/HD/hd_spells_message.md
+++ b/Data/HD/hd_spells_message.md
@@ -4,7 +4,7 @@
# Message
-- SRD: [Message](srd_spells_message.md)
+- Alias: [Message](srd_spells_message.md)
- Transmutation, tour de magie
diff --git a/Data/HD/hd_spells_messager_animal.md b/Data/HD/hd_spells_messager_animal.md
index 85b77191..6e382392 100644
--- a/Data/HD/hd_spells_messager_animal.md
+++ b/Data/HD/hd_spells_messager_animal.md
@@ -4,7 +4,7 @@
# Messager animal
-- SRD: [Animal Messenger](srd_spells_animal_messenger.md)
+- Alias: [Animal Messenger](srd_spells_animal_messenger.md)
- Enchantement de niveau 2 (rituel)
diff --git a/Data/HD/hd_spells_metamorphose.md b/Data/HD/hd_spells_metamorphose.md
index b99c9b7a..41692a4f 100644
--- a/Data/HD/hd_spells_metamorphose.md
+++ b/Data/HD/hd_spells_metamorphose.md
@@ -4,7 +4,7 @@
# Métamorphose
-- SRD: [Polymorph](srd_spells_polymorph.md)
+- Alias: [Polymorph](srd_spells_polymorph.md)
- Transmutation de niveau 4
diff --git a/Data/HD/hd_spells_metamorphose_supreme.md b/Data/HD/hd_spells_metamorphose_supreme.md
index be4390d0..f1c28ecd 100644
--- a/Data/HD/hd_spells_metamorphose_supreme.md
+++ b/Data/HD/hd_spells_metamorphose_supreme.md
@@ -4,7 +4,7 @@
# Métamorphose suprême
-- SRD: [True Polymorph](srd_spells_true_polymorph.md)
+- Alias: [True Polymorph](srd_spells_true_polymorph.md)
- Transmutation de niveau 9
diff --git a/Data/HD/hd_spells_mirage.md b/Data/HD/hd_spells_mirage.md
index 6af237dc..3685c0e9 100644
--- a/Data/HD/hd_spells_mirage.md
+++ b/Data/HD/hd_spells_mirage.md
@@ -4,7 +4,7 @@
# Mirage
-- SRD: [Mirage Arcane](srd_spells_mirage_arcane.md)
+- Alias: [Mirage Arcane](srd_spells_mirage_arcane.md)
- Illusion de niveau 7
diff --git a/Data/HD/hd_spells_modification_de_memoire.md b/Data/HD/hd_spells_modification_de_memoire.md
index 2bce96be..6c957aed 100644
--- a/Data/HD/hd_spells_modification_de_memoire.md
+++ b/Data/HD/hd_spells_modification_de_memoire.md
@@ -4,7 +4,7 @@
# Modification de mémoire
-- SRD: [Modify Memory](srd_spells_modify_memory.md)
+- Alias: [Modify Memory](srd_spells_modify_memory.md)
- Enchantement de niveau 5
diff --git a/Data/HD/hd_spells_modifier_son_apparence.md b/Data/HD/hd_spells_modifier_son_apparence.md
index 99f90dba..d8db7e97 100644
--- a/Data/HD/hd_spells_modifier_son_apparence.md
+++ b/Data/HD/hd_spells_modifier_son_apparence.md
@@ -4,7 +4,7 @@
# Modifier son apparence
-- SRD: [Alter Self](srd_spells_alter_self.md)
+- Alias: [Alter Self](srd_spells_alter_self.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_monture_fantome.md b/Data/HD/hd_spells_monture_fantome.md
index 8d858bd6..31c9213e 100644
--- a/Data/HD/hd_spells_monture_fantome.md
+++ b/Data/HD/hd_spells_monture_fantome.md
@@ -4,7 +4,7 @@
# Monture fantôme
-- SRD: [Phantom Steed](srd_spells_phantom_steed.md)
+- Alias: [Phantom Steed](srd_spells_phantom_steed.md)
- Illusion de niveau 3 (rituel)
diff --git a/Data/HD/hd_spells_moquerie_cruelle.md b/Data/HD/hd_spells_moquerie_cruelle.md
index 7dcf328b..436b0e0f 100644
--- a/Data/HD/hd_spells_moquerie_cruelle.md
+++ b/Data/HD/hd_spells_moquerie_cruelle.md
@@ -4,7 +4,7 @@
# Moquerie cruelle
-- SRD: [Vicious Mockery](srd_spells_vicious_mockery.md)
+- Alias: [Vicious Mockery](srd_spells_vicious_mockery.md)
- Enchantement, tour de magie
diff --git a/Data/HD/hd_spells_mot_de_guerison.md b/Data/HD/hd_spells_mot_de_guerison.md
index 3fd610f0..0b4eeb90 100644
--- a/Data/HD/hd_spells_mot_de_guerison.md
+++ b/Data/HD/hd_spells_mot_de_guerison.md
@@ -4,7 +4,7 @@
# Mot de guérison
-- SRD: [Healing Word](srd_spells_healing_word.md)
+- Alias: [Healing Word](srd_spells_healing_word.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_mot_de_guerison_de_groupe.md b/Data/HD/hd_spells_mot_de_guerison_de_groupe.md
index 3382d372..bb13ad54 100644
--- a/Data/HD/hd_spells_mot_de_guerison_de_groupe.md
+++ b/Data/HD/hd_spells_mot_de_guerison_de_groupe.md
@@ -4,7 +4,7 @@
# Mot de guérison de groupe
-- SRD: [Mass Healing Word](srd_spells_mass_healing_word.md)
+- Alias: [Mass Healing Word](srd_spells_mass_healing_word.md)
- Évocation de niveau 3
diff --git a/Data/HD/hd_spells_mot_de_pouvoir_etourdissant.md b/Data/HD/hd_spells_mot_de_pouvoir_etourdissant.md
index 237a70d3..bc360476 100644
--- a/Data/HD/hd_spells_mot_de_pouvoir_etourdissant.md
+++ b/Data/HD/hd_spells_mot_de_pouvoir_etourdissant.md
@@ -4,7 +4,7 @@
# Mot de pouvoir étourdissant
-- SRD: [Power Word Stun](srd_spells_power_word_stun.md)
+- Alias: [Power Word Stun](srd_spells_power_word_stun.md)
- Enchantement de niveau 8
diff --git a/Data/HD/hd_spells_mot_de_pouvoir_mortel.md b/Data/HD/hd_spells_mot_de_pouvoir_mortel.md
index bdfa242a..01b4a667 100644
--- a/Data/HD/hd_spells_mot_de_pouvoir_mortel.md
+++ b/Data/HD/hd_spells_mot_de_pouvoir_mortel.md
@@ -4,7 +4,7 @@
# Mot de pouvoir mortel
-- SRD: [Power Word Kill](srd_spells_power_word_kill.md)
+- Alias: [Power Word Kill](srd_spells_power_word_kill.md)
- Enchantement de niveau 9
diff --git a/Data/HD/hd_spells_mot_de_retour.md b/Data/HD/hd_spells_mot_de_retour.md
index ac83b27d..e9df2a14 100644
--- a/Data/HD/hd_spells_mot_de_retour.md
+++ b/Data/HD/hd_spells_mot_de_retour.md
@@ -4,7 +4,7 @@
# Mot de retour
-- SRD: [Word of Recall](srd_spells_word_of_recall.md)
+- Alias: [Word of Recall](srd_spells_word_of_recall.md)
- Invocation de niveau 6
diff --git a/Data/HD/hd_spells_motif_hypnotique.md b/Data/HD/hd_spells_motif_hypnotique.md
index c7b3cbdd..77c01fd0 100644
--- a/Data/HD/hd_spells_motif_hypnotique.md
+++ b/Data/HD/hd_spells_motif_hypnotique.md
@@ -4,7 +4,7 @@
# Motif hypnotique
-- SRD: [Hypnotic Pattern](srd_spells_hypnotic_pattern.md)
+- Alias: [Hypnotic Pattern](srd_spells_hypnotic_pattern.md)
- Illusion de niveau 3
diff --git a/Data/HD/hd_spells_mur_de_feu.md b/Data/HD/hd_spells_mur_de_feu.md
index a96227bd..bd83bfb5 100644
--- a/Data/HD/hd_spells_mur_de_feu.md
+++ b/Data/HD/hd_spells_mur_de_feu.md
@@ -4,7 +4,7 @@
# Mur de feu
-- SRD: [Wall of Fire](srd_spells_wall_of_fire.md)
+- Alias: [Wall of Fire](srd_spells_wall_of_fire.md)
- Évocation de niveau 4
diff --git a/Data/HD/hd_spells_mur_de_force.md b/Data/HD/hd_spells_mur_de_force.md
index 4f737004..7506ffcb 100644
--- a/Data/HD/hd_spells_mur_de_force.md
+++ b/Data/HD/hd_spells_mur_de_force.md
@@ -4,7 +4,7 @@
# Mur de force
-- SRD: [Wall of Force](srd_spells_wall_of_force.md)
+- Alias: [Wall of Force](srd_spells_wall_of_force.md)
- Évocation de niveau 5
diff --git a/Data/HD/hd_spells_mur_de_glace.md b/Data/HD/hd_spells_mur_de_glace.md
index 6a868b55..dd760499 100644
--- a/Data/HD/hd_spells_mur_de_glace.md
+++ b/Data/HD/hd_spells_mur_de_glace.md
@@ -4,7 +4,7 @@
# Mur de glace
-- SRD: [Wall of Ice](srd_spells_wall_of_ice.md)
+- Alias: [Wall of Ice](srd_spells_wall_of_ice.md)
- Évocation de niveau 6
diff --git a/Data/HD/hd_spells_mur_de_pierre.md b/Data/HD/hd_spells_mur_de_pierre.md
index cd300930..82f429b9 100644
--- a/Data/HD/hd_spells_mur_de_pierre.md
+++ b/Data/HD/hd_spells_mur_de_pierre.md
@@ -4,7 +4,7 @@
# Mur de pierre
-- SRD: [Wall of Stone](srd_spells_wall_of_stone.md)
+- Alias: [Wall of Stone](srd_spells_wall_of_stone.md)
- Évocation de niveau 5
diff --git a/Data/HD/hd_spells_mur_de_vent.md b/Data/HD/hd_spells_mur_de_vent.md
index 4ba17f22..0ab38466 100644
--- a/Data/HD/hd_spells_mur_de_vent.md
+++ b/Data/HD/hd_spells_mur_de_vent.md
@@ -4,7 +4,7 @@
# Mur de vent
-- SRD: [Wind Wall](srd_spells_wind_wall.md)
+- Alias: [Wind Wall](srd_spells_wind_wall.md)
- Évocation de niveau 3
diff --git a/Data/HD/hd_spells_mur_depines.md b/Data/HD/hd_spells_mur_depines.md
index 6f8af323..aaf7d1a1 100644
--- a/Data/HD/hd_spells_mur_depines.md
+++ b/Data/HD/hd_spells_mur_depines.md
@@ -4,7 +4,7 @@
# Mur d'épines
-- SRD: [Wall of Thorns](srd_spells_wall_of_thorns.md)
+- Alias: [Wall of Thorns](srd_spells_wall_of_thorns.md)
- Invocation de niveau 6
diff --git a/Data/HD/hd_spells_mur_prismatique.md b/Data/HD/hd_spells_mur_prismatique.md
index ce27610f..700760cd 100644
--- a/Data/HD/hd_spells_mur_prismatique.md
+++ b/Data/HD/hd_spells_mur_prismatique.md
@@ -4,7 +4,7 @@
# Mur prismatique
-- SRD: [Prismatic Wall](srd_spells_prismatic_wall.md)
+- Alias: [Prismatic Wall](srd_spells_prismatic_wall.md)
- Abjuration de niveau 9
diff --git a/Data/HD/hd_spells_nappe_de_brouillard.md b/Data/HD/hd_spells_nappe_de_brouillard.md
index f846a2ed..7c99c9bd 100644
--- a/Data/HD/hd_spells_nappe_de_brouillard.md
+++ b/Data/HD/hd_spells_nappe_de_brouillard.md
@@ -4,7 +4,7 @@
# Nappe de brouillard
-- SRD: [Fog Cloud](srd_spells_fog_cloud.md)
+- Alias: [Fog Cloud](srd_spells_fog_cloud.md)
- Invocation de niveau 1
diff --git a/Data/HD/hd_spells_non_detection.md b/Data/HD/hd_spells_non_detection.md
index 0d7b9f0e..8dcc2a9c 100644
--- a/Data/HD/hd_spells_non_detection.md
+++ b/Data/HD/hd_spells_non_detection.md
@@ -4,7 +4,7 @@
# Non-détection
-- SRD: [Nondetection](srd_spells_nondetection.md)
+- Alias: [Nondetection](srd_spells_nondetection.md)
- Abjuration de niveau 3
diff --git a/Data/HD/hd_spells_nuage_incendiaire.md b/Data/HD/hd_spells_nuage_incendiaire.md
index cb195871..3b243312 100644
--- a/Data/HD/hd_spells_nuage_incendiaire.md
+++ b/Data/HD/hd_spells_nuage_incendiaire.md
@@ -4,7 +4,7 @@
# Nuage incendiaire
-- SRD: [Incendiary Cloud](srd_spells_incendiary_cloud.md)
+- Alias: [Incendiary Cloud](srd_spells_incendiary_cloud.md)
- Invocation de niveau 8
diff --git a/Data/HD/hd_spells_nuage_mortel.md b/Data/HD/hd_spells_nuage_mortel.md
index fe7134c3..d4d23f7e 100644
--- a/Data/HD/hd_spells_nuage_mortel.md
+++ b/Data/HD/hd_spells_nuage_mortel.md
@@ -4,7 +4,7 @@
# Nuage mortel
-- SRD: [Cloudkill](srd_spells_cloudkill.md)
+- Alias: [Cloudkill](srd_spells_cloudkill.md)
- Invocation de niveau 5
diff --git a/Data/HD/hd_spells_nuage_puant.md b/Data/HD/hd_spells_nuage_puant.md
index e75bc339..24b2dfda 100644
--- a/Data/HD/hd_spells_nuage_puant.md
+++ b/Data/HD/hd_spells_nuage_puant.md
@@ -4,7 +4,7 @@
# Nuage puant
-- SRD: [Stinking Cloud](srd_spells_stinking_cloud.md)
+- Alias: [Stinking Cloud](srd_spells_stinking_cloud.md)
- Invocation de niveau 3
diff --git a/Data/HD/hd_spells_nuee_de_meteores.md b/Data/HD/hd_spells_nuee_de_meteores.md
index bf23a8bf..d6388b22 100644
--- a/Data/HD/hd_spells_nuee_de_meteores.md
+++ b/Data/HD/hd_spells_nuee_de_meteores.md
@@ -4,7 +4,7 @@
# Nuée de météores
-- SRD: [Meteor Swarm](srd_spells_meteor_swarm.md)
+- Alias: [Meteor Swarm](srd_spells_meteor_swarm.md)
- Évocation de niveau 9
diff --git a/Data/HD/hd_spells_oeil_magique.md b/Data/HD/hd_spells_oeil_magique.md
index be91c8cd..191bee62 100644
--- a/Data/HD/hd_spells_oeil_magique.md
+++ b/Data/HD/hd_spells_oeil_magique.md
@@ -4,7 +4,7 @@
# Oeil magique
-- SRD: [Arcane Eye](srd_spells_arcane_eye.md)
+- Alias: [Arcane Eye](srd_spells_arcane_eye.md)
- Divination de niveau 4
diff --git a/Data/HD/hd_spells_parole_divine.md b/Data/HD/hd_spells_parole_divine.md
index ccca8753..baac378d 100644
--- a/Data/HD/hd_spells_parole_divine.md
+++ b/Data/HD/hd_spells_parole_divine.md
@@ -4,7 +4,7 @@
# Parole divine
-- SRD: [Divine Word](srd_spells_divine_word.md)
+- Alias: [Divine Word](srd_spells_divine_word.md)
- Évocation de niveau 7
diff --git a/Data/HD/hd_spells_pas_brumeux.md b/Data/HD/hd_spells_pas_brumeux.md
index dbef3fa4..27f20919 100644
--- a/Data/HD/hd_spells_pas_brumeux.md
+++ b/Data/HD/hd_spells_pas_brumeux.md
@@ -4,7 +4,7 @@
# Pas brumeux
-- SRD: [Misty Step](srd_spells_misty_step.md)
+- Alias: [Misty Step](srd_spells_misty_step.md)
- Invocation de niveau 2
diff --git a/Data/HD/hd_spells_passage_par_les_arbres.md b/Data/HD/hd_spells_passage_par_les_arbres.md
index e145dc63..b45fad27 100644
--- a/Data/HD/hd_spells_passage_par_les_arbres.md
+++ b/Data/HD/hd_spells_passage_par_les_arbres.md
@@ -4,7 +4,7 @@
# Passage par les arbres
-- SRD: [Tree Stride](srd_spells_tree_stride.md)
+- Alias: [Tree Stride](srd_spells_tree_stride.md)
- Invocation de niveau 5
diff --git a/Data/HD/hd_spells_passage_sans_trace.md b/Data/HD/hd_spells_passage_sans_trace.md
index 8d9f4ca0..e10e3797 100644
--- a/Data/HD/hd_spells_passage_sans_trace.md
+++ b/Data/HD/hd_spells_passage_sans_trace.md
@@ -4,7 +4,7 @@
# Passage sans trace
-- SRD: [Pass without Trace](srd_spells_pass_without_trace.md)
+- Alias: [Pass without Trace](srd_spells_pass_without_trace.md)
- Abjuration de niveau 2
diff --git a/Data/HD/hd_spells_passe_muraille.md b/Data/HD/hd_spells_passe_muraille.md
index 0396df29..4af78b67 100644
--- a/Data/HD/hd_spells_passe_muraille.md
+++ b/Data/HD/hd_spells_passe_muraille.md
@@ -4,7 +4,7 @@
# Passe-muraille
-- SRD: [Passwall](srd_spells_passwall.md)
+- Alias: [Passwall](srd_spells_passwall.md)
- Transmutation de niveau 5
diff --git a/Data/HD/hd_spells_pattes_daraignee.md b/Data/HD/hd_spells_pattes_daraignee.md
index 7d086162..4c14c0f5 100644
--- a/Data/HD/hd_spells_pattes_daraignee.md
+++ b/Data/HD/hd_spells_pattes_daraignee.md
@@ -4,7 +4,7 @@
# Pattes d'araignée
-- SRD: [Spider Climb](srd_spells_spider_climb.md)
+- Alias: [Spider Climb](srd_spells_spider_climb.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_peau_de_pierre.md b/Data/HD/hd_spells_peau_de_pierre.md
index 71220f54..e8e6557b 100644
--- a/Data/HD/hd_spells_peau_de_pierre.md
+++ b/Data/HD/hd_spells_peau_de_pierre.md
@@ -4,7 +4,7 @@
# Peau de pierre
-- SRD: [Stoneskin](srd_spells_stoneskin.md)
+- Alias: [Stoneskin](srd_spells_stoneskin.md)
- Abjuration de niveau 4
diff --git a/Data/HD/hd_spells_peau_decorce.md b/Data/HD/hd_spells_peau_decorce.md
index 857d8094..5de97358 100644
--- a/Data/HD/hd_spells_peau_decorce.md
+++ b/Data/HD/hd_spells_peau_decorce.md
@@ -4,7 +4,7 @@
# Peau d'écorce
-- SRD: [Barkskin](srd_spells_barkskin.md)
+- Alias: [Barkskin](srd_spells_barkskin.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_petite_hutte.md b/Data/HD/hd_spells_petite_hutte.md
index f77e4b2f..dedde97d 100644
--- a/Data/HD/hd_spells_petite_hutte.md
+++ b/Data/HD/hd_spells_petite_hutte.md
@@ -4,7 +4,7 @@
# Petite hutte
-- SRD: [Tiny Hut](srd_spells_tiny_hut.md)
+- Alias: [Tiny Hut](srd_spells_tiny_hut.md)
- Évocation de niveau 3 (rituel)
diff --git a/Data/HD/hd_spells_petrification.md b/Data/HD/hd_spells_petrification.md
index e4621504..7b24e1fa 100644
--- a/Data/HD/hd_spells_petrification.md
+++ b/Data/HD/hd_spells_petrification.md
@@ -4,7 +4,7 @@
# Pétrification
-- SRD: [Flesh to Stone](srd_spells_flesh_to_stone.md)
+- Alias: [Flesh to Stone](srd_spells_flesh_to_stone.md)
- Transmutation de niveau 6
diff --git a/Data/HD/hd_spells_peur.md b/Data/HD/hd_spells_peur.md
index 3e7d60c1..796f27ba 100644
--- a/Data/HD/hd_spells_peur.md
+++ b/Data/HD/hd_spells_peur.md
@@ -4,7 +4,7 @@
# Peur
-- SRD: [Fear](srd_spells_fear.md)
+- Alias: [Fear](srd_spells_fear.md)
- Illusion de niveau 3
diff --git a/Data/HD/hd_spells_poigne_electrique.md b/Data/HD/hd_spells_poigne_electrique.md
index 11179d33..b3dd405d 100644
--- a/Data/HD/hd_spells_poigne_electrique.md
+++ b/Data/HD/hd_spells_poigne_electrique.md
@@ -4,7 +4,7 @@
# Poigne électrique
-- SRD: [Shocking Grasp](srd_spells_shocking_grasp.md)
+- Alias: [Shocking Grasp](srd_spells_shocking_grasp.md)
- Évocation, tour de magie
diff --git a/Data/HD/hd_spells_portail.md b/Data/HD/hd_spells_portail.md
index ef1461c5..c0d02b51 100644
--- a/Data/HD/hd_spells_portail.md
+++ b/Data/HD/hd_spells_portail.md
@@ -4,7 +4,7 @@
# Portail
-- SRD: [Gate](srd_spells_gate.md)
+- Alias: [Gate](srd_spells_gate.md)
- Invocation de niveau 9
diff --git a/Data/HD/hd_spells_porte_dimensionnelle.md b/Data/HD/hd_spells_porte_dimensionnelle.md
index 56f21546..207f81c5 100644
--- a/Data/HD/hd_spells_porte_dimensionnelle.md
+++ b/Data/HD/hd_spells_porte_dimensionnelle.md
@@ -4,7 +4,7 @@
# Porte dimensionnelle
-- SRD: [Dimension Door](srd_spells_dimension_door.md)
+- Alias: [Dimension Door](srd_spells_dimension_door.md)
- Invocation de niveau 4
diff --git a/Data/HD/hd_spells_possession.md b/Data/HD/hd_spells_possession.md
index 96feb69f..f77560af 100644
--- a/Data/HD/hd_spells_possession.md
+++ b/Data/HD/hd_spells_possession.md
@@ -4,7 +4,7 @@
# Possession
-- SRD: [Magic Jar](srd_spells_magic_jar.md)
+- Alias: [Magic Jar](srd_spells_magic_jar.md)
- Nécromancie de niveau 6
diff --git a/Data/HD/hd_spells_premonition.md b/Data/HD/hd_spells_premonition.md
index 9e729eff..369835f5 100644
--- a/Data/HD/hd_spells_premonition.md
+++ b/Data/HD/hd_spells_premonition.md
@@ -4,7 +4,7 @@
# Prémonition
-- SRD: [Foresight](srd_spells_foresight.md)
+- Alias: [Foresight](srd_spells_foresight.md)
- Divination de niveau 9
diff --git a/Data/HD/hd_spells_prestidigitation.md b/Data/HD/hd_spells_prestidigitation.md
index e4db6b10..ee8588f8 100644
--- a/Data/HD/hd_spells_prestidigitation.md
+++ b/Data/HD/hd_spells_prestidigitation.md
@@ -4,7 +4,7 @@
# Prestidigitation
-- SRD: [Prestidigitation](srd_spells_prestidigitation.md)
+- Alias: [Prestidigitation](srd_spells_prestidigitation.md)
- Transmutation, tour de magie
diff --git a/Data/HD/hd_spells_priere_de_soins.md b/Data/HD/hd_spells_priere_de_soins.md
index 70efe24d..5a0bad8d 100644
--- a/Data/HD/hd_spells_priere_de_soins.md
+++ b/Data/HD/hd_spells_priere_de_soins.md
@@ -4,7 +4,7 @@
# Prière de soins
-- SRD: [Prayer of Healing](srd_spells_prayer_of_healing.md)
+- Alias: [Prayer of Healing](srd_spells_prayer_of_healing.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_produire_une_flamme.md b/Data/HD/hd_spells_produire_une_flamme.md
index afc1fe36..0320df8d 100644
--- a/Data/HD/hd_spells_produire_une_flamme.md
+++ b/Data/HD/hd_spells_produire_une_flamme.md
@@ -4,7 +4,7 @@
# Produire une flamme
-- SRD: [Produce Flame](srd_spells_produce_flame.md)
+- Alias: [Produce Flame](srd_spells_produce_flame.md)
- Invocation , tour de magie
diff --git a/Data/HD/hd_spells_projectile_magique.md b/Data/HD/hd_spells_projectile_magique.md
index 694cc289..b99d82a8 100644
--- a/Data/HD/hd_spells_projectile_magique.md
+++ b/Data/HD/hd_spells_projectile_magique.md
@@ -4,7 +4,7 @@
# Projectile magique
-- SRD: [Magic Missile](srd_spells_magic_missile.md)
+- Alias: [Magic Missile](srd_spells_magic_missile.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_projection_astrale.md b/Data/HD/hd_spells_projection_astrale.md
index f29e3fbf..9ced3479 100644
--- a/Data/HD/hd_spells_projection_astrale.md
+++ b/Data/HD/hd_spells_projection_astrale.md
@@ -4,7 +4,7 @@
# Projection astrale
-- SRD: [Astral Projection](srd_spells_astral_projection.md)
+- Alias: [Astral Projection](srd_spells_astral_projection.md)
- Nécromancie de niveau 9
diff --git a/Data/HD/hd_spells_protection_contre_la_mort.md b/Data/HD/hd_spells_protection_contre_la_mort.md
index 805f47f9..8926a186 100644
--- a/Data/HD/hd_spells_protection_contre_la_mort.md
+++ b/Data/HD/hd_spells_protection_contre_la_mort.md
@@ -4,7 +4,7 @@
# Protection contre la mort
-- SRD: [Death Ward](srd_spells_death_ward.md)
+- Alias: [Death Ward](srd_spells_death_ward.md)
- Abjuration de niveau 4
diff --git a/Data/HD/hd_spells_protection_contre_le_mal_et_le_bien.md b/Data/HD/hd_spells_protection_contre_le_mal_et_le_bien.md
index 18ac16b2..4945f856 100644
--- a/Data/HD/hd_spells_protection_contre_le_mal_et_le_bien.md
+++ b/Data/HD/hd_spells_protection_contre_le_mal_et_le_bien.md
@@ -4,7 +4,7 @@
# Protection contre le mal et le bien
-- SRD: [Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)
+- Alias: [Protection from Evil and Good](srd_spells_protection_from_evil_and_good.md)
- Abjuration de niveau 1
diff --git a/Data/HD/hd_spells_protection_contre_le_poison.md b/Data/HD/hd_spells_protection_contre_le_poison.md
index ceaa8467..c174b89b 100644
--- a/Data/HD/hd_spells_protection_contre_le_poison.md
+++ b/Data/HD/hd_spells_protection_contre_le_poison.md
@@ -4,7 +4,7 @@
# Protection contre le poison
-- SRD: [Protection from Poison](srd_spells_protection_from_poison.md)
+- Alias: [Protection from Poison](srd_spells_protection_from_poison.md)
- Abjuration de niveau 2
diff --git a/Data/HD/hd_spells_protection_contre_les_energies.md b/Data/HD/hd_spells_protection_contre_les_energies.md
index c8c3bf6a..1a92a847 100644
--- a/Data/HD/hd_spells_protection_contre_les_energies.md
+++ b/Data/HD/hd_spells_protection_contre_les_energies.md
@@ -4,7 +4,7 @@
# Protection contre les énergies
-- SRD: [Protection from Energy](srd_spells_protection_from_energy.md)
+- Alias: [Protection from Energy](srd_spells_protection_from_energy.md)
- Abjuration de niveau 3
diff --git a/Data/HD/hd_spells_protections_et_sceaux.md b/Data/HD/hd_spells_protections_et_sceaux.md
index b40568fe..a00857fe 100644
--- a/Data/HD/hd_spells_protections_et_sceaux.md
+++ b/Data/HD/hd_spells_protections_et_sceaux.md
@@ -4,7 +4,7 @@
# Protections et sceaux
-- SRD: [Guards and Wards](srd_spells_guards_and_wards.md)
+- Alias: [Guards and Wards](srd_spells_guards_and_wards.md)
- Abjuration de niveau 6
diff --git a/Data/HD/hd_spells_purification_de_la_nourriture_et_de_leau.md b/Data/HD/hd_spells_purification_de_la_nourriture_et_de_leau.md
index 3dd20396..eed2d5d6 100644
--- a/Data/HD/hd_spells_purification_de_la_nourriture_et_de_leau.md
+++ b/Data/HD/hd_spells_purification_de_la_nourriture_et_de_leau.md
@@ -4,7 +4,7 @@
# Purification de la nourriture et de l'eau
-- SRD: [Purify Food and Drink](srd_spells_purify_food_and_drink.md)
+- Alias: [Purify Food and Drink](srd_spells_purify_food_and_drink.md)
- Transmutation de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_rappel_a_la_vie.md b/Data/HD/hd_spells_rappel_a_la_vie.md
index 7b52c0f3..d914c177 100644
--- a/Data/HD/hd_spells_rappel_a_la_vie.md
+++ b/Data/HD/hd_spells_rappel_a_la_vie.md
@@ -4,7 +4,7 @@
# Rappel à la vie
-- SRD: [Raise Dead](srd_spells_raise_dead.md)
+- Alias: [Raise Dead](srd_spells_raise_dead.md)
- Nécromancie de niveau 5
diff --git a/Data/HD/hd_spells_rayon_affaiblissant.md b/Data/HD/hd_spells_rayon_affaiblissant.md
index 498ceb72..2825f71a 100644
--- a/Data/HD/hd_spells_rayon_affaiblissant.md
+++ b/Data/HD/hd_spells_rayon_affaiblissant.md
@@ -4,7 +4,7 @@
# Rayon affaiblissant
-- SRD: [Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)
+- Alias: [Ray of Enfeeblement](srd_spells_ray_of_enfeeblement.md)
- Nécromancie de niveau 2
diff --git a/Data/HD/hd_spells_rayon_ardent.md b/Data/HD/hd_spells_rayon_ardent.md
index 8b9d5734..0a9ac498 100644
--- a/Data/HD/hd_spells_rayon_ardent.md
+++ b/Data/HD/hd_spells_rayon_ardent.md
@@ -4,7 +4,7 @@
# Rayon ardent
-- SRD: [Scorching Ray](srd_spells_scorching_ray.md)
+- Alias: [Scorching Ray](srd_spells_scorching_ray.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_rayon_de_givre.md b/Data/HD/hd_spells_rayon_de_givre.md
index c3a579f2..72dc97df 100644
--- a/Data/HD/hd_spells_rayon_de_givre.md
+++ b/Data/HD/hd_spells_rayon_de_givre.md
@@ -4,7 +4,7 @@
# Rayon de givre
-- SRD: [Ray of Frost](srd_spells_ray_of_frost.md)
+- Alias: [Ray of Frost](srd_spells_ray_of_frost.md)
- Évocation, tour de magie
diff --git a/Data/HD/hd_spells_rayon_de_lune.md b/Data/HD/hd_spells_rayon_de_lune.md
index b9144090..8a3eb98f 100644
--- a/Data/HD/hd_spells_rayon_de_lune.md
+++ b/Data/HD/hd_spells_rayon_de_lune.md
@@ -4,7 +4,7 @@
# Rayon de lune
-- SRD: [Moonbeam](srd_spells_moonbeam.md)
+- Alias: [Moonbeam](srd_spells_moonbeam.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_rayon_de_soleil.md b/Data/HD/hd_spells_rayon_de_soleil.md
index bcc31516..4ba194b7 100644
--- a/Data/HD/hd_spells_rayon_de_soleil.md
+++ b/Data/HD/hd_spells_rayon_de_soleil.md
@@ -4,7 +4,7 @@
# Rayon de soleil
-- SRD: [Sunbeam](srd_spells_sunbeam.md)
+- Alias: [Sunbeam](srd_spells_sunbeam.md)
- Évocation de niveau 6
diff --git a/Data/HD/hd_spells_regeneration.md b/Data/HD/hd_spells_regeneration.md
index 52c34d34..7587c4f4 100644
--- a/Data/HD/hd_spells_regeneration.md
+++ b/Data/HD/hd_spells_regeneration.md
@@ -4,7 +4,7 @@
# Régénération
-- SRD: [Regenerate](srd_spells_regenerate.md)
+- Alias: [Regenerate](srd_spells_regenerate.md)
- Transmutation de niveau 7
diff --git a/Data/HD/hd_spells_reincarnation.md b/Data/HD/hd_spells_reincarnation.md
index b43e225e..a8282cce 100644
--- a/Data/HD/hd_spells_reincarnation.md
+++ b/Data/HD/hd_spells_reincarnation.md
@@ -4,7 +4,7 @@
# Réincarnation
-- SRD: [Reincarnate](srd_spells_reincarnate.md)
+- Alias: [Reincarnate](srd_spells_reincarnate.md)
- Transmutation de niveau 5
diff --git a/Data/HD/hd_spells_reparation.md b/Data/HD/hd_spells_reparation.md
index 30b5af60..312ce57f 100644
--- a/Data/HD/hd_spells_reparation.md
+++ b/Data/HD/hd_spells_reparation.md
@@ -4,7 +4,7 @@
# Réparation
-- SRD: [Mending](srd_spells_mending.md)
+- Alias: [Mending](srd_spells_mending.md)
- Transmutation, tour de magie
diff --git a/Data/HD/hd_spells_repli_expeditif.md b/Data/HD/hd_spells_repli_expeditif.md
index f83a0d72..a9f7d12c 100644
--- a/Data/HD/hd_spells_repli_expeditif.md
+++ b/Data/HD/hd_spells_repli_expeditif.md
@@ -4,7 +4,7 @@
# Repli expéditif
-- SRD: [Expeditious Retreat](srd_spells_expeditious_retreat.md)
+- Alias: [Expeditious Retreat](srd_spells_expeditious_retreat.md)
- Transmutation de niveau 1
diff --git a/Data/HD/hd_spells_represailles_infernales.md b/Data/HD/hd_spells_represailles_infernales.md
index 460292aa..8c2666f2 100644
--- a/Data/HD/hd_spells_represailles_infernales.md
+++ b/Data/HD/hd_spells_represailles_infernales.md
@@ -4,7 +4,7 @@
# Représailles infernales
-- SRD: [Hellish Rebuke](srd_spells_hellish_rebuke.md)
+- Alias: [Hellish Rebuke](srd_spells_hellish_rebuke.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_repulsionattirance.md b/Data/HD/hd_spells_repulsionattirance.md
index da32d325..86ab868c 100644
--- a/Data/HD/hd_spells_repulsionattirance.md
+++ b/Data/HD/hd_spells_repulsionattirance.md
@@ -4,7 +4,7 @@
# Répulsion/attirance
-- SRD: [Antipathy/Sympathy](srd_spells_antipathysympathy.md)
+- Alias: [Antipathy/Sympathy](srd_spells_antipathysympathy.md)
- Enchantement de niveau 8
diff --git a/Data/HD/hd_spells_resistance.md b/Data/HD/hd_spells_resistance.md
index effd7c3c..20bfefab 100644
--- a/Data/HD/hd_spells_resistance.md
+++ b/Data/HD/hd_spells_resistance.md
@@ -4,7 +4,7 @@
# Résistance
-- SRD: [Resistance](srd_spells_resistance.md)
+- Alias: [Resistance](srd_spells_resistance.md)
- Abjuration, tour de magie
diff --git a/Data/HD/hd_spells_respiration_aquatique.md b/Data/HD/hd_spells_respiration_aquatique.md
index e291b772..fb65c85c 100644
--- a/Data/HD/hd_spells_respiration_aquatique.md
+++ b/Data/HD/hd_spells_respiration_aquatique.md
@@ -4,7 +4,7 @@
# Respiration aquatique
-- SRD: [Water Breathing](srd_spells_water_breathing.md)
+- Alias: [Water Breathing](srd_spells_water_breathing.md)
- Transmutation de niveau 3 (rituel)
diff --git a/Data/HD/hd_spells_restauration_inferieure.md b/Data/HD/hd_spells_restauration_inferieure.md
index c2af3190..64970bb0 100644
--- a/Data/HD/hd_spells_restauration_inferieure.md
+++ b/Data/HD/hd_spells_restauration_inferieure.md
@@ -4,7 +4,7 @@
# Restauration inférieure
-- SRD: [Lesser Restoration](srd_spells_lesser_restoration.md)
+- Alias: [Lesser Restoration](srd_spells_lesser_restoration.md)
- Abjuration de niveau 2
diff --git a/Data/HD/hd_spells_restauration_superieure.md b/Data/HD/hd_spells_restauration_superieure.md
index e9d8af26..a4704c89 100644
--- a/Data/HD/hd_spells_restauration_superieure.md
+++ b/Data/HD/hd_spells_restauration_superieure.md
@@ -4,7 +4,7 @@
# Restauration supérieure
-- SRD: [Greater Restoration](srd_spells_greater_restoration.md)
+- Alias: [Greater Restoration](srd_spells_greater_restoration.md)
- Abjuration de niveau 5
diff --git a/Data/HD/hd_spells_resurrection.md b/Data/HD/hd_spells_resurrection.md
index d81a5f30..0ea88025 100644
--- a/Data/HD/hd_spells_resurrection.md
+++ b/Data/HD/hd_spells_resurrection.md
@@ -4,7 +4,7 @@
# Résurrection
-- SRD: [Resurrection](srd_spells_resurrection.md)
+- Alias: [Resurrection](srd_spells_resurrection.md)
- Nécromancie de niveau 7
diff --git a/Data/HD/hd_spells_resurrection_supreme.md b/Data/HD/hd_spells_resurrection_supreme.md
index 396f495c..79a2329d 100644
--- a/Data/HD/hd_spells_resurrection_supreme.md
+++ b/Data/HD/hd_spells_resurrection_supreme.md
@@ -4,7 +4,7 @@
# Résurrection suprême
-- SRD: [True Resurrection](srd_spells_true_resurrection.md)
+- Alias: [True Resurrection](srd_spells_true_resurrection.md)
- Nécromancie de niveau 9
diff --git a/Data/HD/hd_spells_reve.md b/Data/HD/hd_spells_reve.md
index 9f1f0c27..6e23320d 100644
--- a/Data/HD/hd_spells_reve.md
+++ b/Data/HD/hd_spells_reve.md
@@ -4,7 +4,7 @@
# Rêve
-- SRD: [Dream](srd_spells_dream.md)
+- Alias: [Dream](srd_spells_dream.md)
- Illusion de niveau 5
diff --git a/Data/HD/hd_spells_revigorer.md b/Data/HD/hd_spells_revigorer.md
index 74382d6b..c60c9d54 100644
--- a/Data/HD/hd_spells_revigorer.md
+++ b/Data/HD/hd_spells_revigorer.md
@@ -4,7 +4,7 @@
# Revigorer
-- SRD: [Revivify](srd_spells_revivify.md)
+- Alias: [Revivify](srd_spells_revivify.md)
- Nécromancie de niveau 3
diff --git a/Data/HD/hd_spells_sanctification.md b/Data/HD/hd_spells_sanctification.md
index 0e1570a5..f97aaa57 100644
--- a/Data/HD/hd_spells_sanctification.md
+++ b/Data/HD/hd_spells_sanctification.md
@@ -4,7 +4,7 @@
# Sanctification
-- SRD: [Hallow](srd_spells_hallow.md)
+- Alias: [Hallow](srd_spells_hallow.md)
- Évocation de niveau 5
diff --git a/Data/HD/hd_spells_sanctuaire.md b/Data/HD/hd_spells_sanctuaire.md
index fb50a7d8..f8fdcc02 100644
--- a/Data/HD/hd_spells_sanctuaire.md
+++ b/Data/HD/hd_spells_sanctuaire.md
@@ -4,7 +4,7 @@
# Sanctuaire
-- SRD: [Sanctuary](srd_spells_sanctuary.md)
+- Alias: [Sanctuary](srd_spells_sanctuary.md)
- Abjuration de niveau 1
diff --git a/Data/HD/hd_spells_sanctuaire_prive.md b/Data/HD/hd_spells_sanctuaire_prive.md
index 80c8de3b..e3cc7efc 100644
--- a/Data/HD/hd_spells_sanctuaire_prive.md
+++ b/Data/HD/hd_spells_sanctuaire_prive.md
@@ -4,7 +4,7 @@
# Sanctuaire privé
-- SRD: [Private Sanctum](srd_spells_private_sanctum.md)
+- Alias: [Private Sanctum](srd_spells_private_sanctum.md)
- Abjuration de niveau 4
diff --git a/Data/HD/hd_spells_saut.md b/Data/HD/hd_spells_saut.md
index a5a4b4a6..9a6721ef 100644
--- a/Data/HD/hd_spells_saut.md
+++ b/Data/HD/hd_spells_saut.md
@@ -4,7 +4,7 @@
# Saut
-- SRD: [Jump](srd_spells_jump.md)
+- Alias: [Jump](srd_spells_jump.md)
- Transmutation de niveau 1
diff --git a/Data/HD/hd_spells_scrutation.md b/Data/HD/hd_spells_scrutation.md
index d99ff4bb..72172194 100644
--- a/Data/HD/hd_spells_scrutation.md
+++ b/Data/HD/hd_spells_scrutation.md
@@ -4,7 +4,7 @@
# Scrutation
-- SRD: [Scrying](srd_spells_scrying.md)
+- Alias: [Scrying](srd_spells_scrying.md)
- Divination de niveau 5
diff --git a/Data/HD/hd_spells_sequestration.md b/Data/HD/hd_spells_sequestration.md
index 027bf0ce..f7afc023 100644
--- a/Data/HD/hd_spells_sequestration.md
+++ b/Data/HD/hd_spells_sequestration.md
@@ -4,7 +4,7 @@
# Séquestration
-- SRD: [Sequester](srd_spells_sequester.md)
+- Alias: [Sequester](srd_spells_sequester.md)
- Transmutation de niveau 7
diff --git a/Data/HD/hd_spells_serviteur_invisible.md b/Data/HD/hd_spells_serviteur_invisible.md
index 38661860..f5eec2a2 100644
--- a/Data/HD/hd_spells_serviteur_invisible.md
+++ b/Data/HD/hd_spells_serviteur_invisible.md
@@ -4,7 +4,7 @@
# Serviteur invisible
-- SRD: [Unseen Servant](srd_spells_unseen_servant.md)
+- Alias: [Unseen Servant](srd_spells_unseen_servant.md)
- Invocation de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_silence.md b/Data/HD/hd_spells_silence.md
index a73078c5..145426ba 100644
--- a/Data/HD/hd_spells_silence.md
+++ b/Data/HD/hd_spells_silence.md
@@ -4,7 +4,7 @@
# Silence
-- SRD: [Silence](srd_spells_silence.md)
+- Alias: [Silence](srd_spells_silence.md)
- Illusion de niveau 2 (rituel)
diff --git a/Data/HD/hd_spells_simulacre.md b/Data/HD/hd_spells_simulacre.md
index 975002ab..e4706de7 100644
--- a/Data/HD/hd_spells_simulacre.md
+++ b/Data/HD/hd_spells_simulacre.md
@@ -4,7 +4,7 @@
# Simulacre
-- SRD: [Simulacrum](srd_spells_simulacrum.md)
+- Alias: [Simulacrum](srd_spells_simulacrum.md)
- Illusion de niveau 7
diff --git a/Data/HD/hd_spells_simulacre_de_vie.md b/Data/HD/hd_spells_simulacre_de_vie.md
index 40fe642f..9e3fd891 100644
--- a/Data/HD/hd_spells_simulacre_de_vie.md
+++ b/Data/HD/hd_spells_simulacre_de_vie.md
@@ -4,7 +4,7 @@
# Simulacre de vie
-- SRD: [False Life](srd_spells_false_life.md)
+- Alias: [False Life](srd_spells_false_life.md)
- Nécromancie de niveau 1
diff --git a/Data/HD/hd_spells_soin_des_blessures.md b/Data/HD/hd_spells_soin_des_blessures.md
index 2bf47cbf..8b3e7c38 100644
--- a/Data/HD/hd_spells_soin_des_blessures.md
+++ b/Data/HD/hd_spells_soin_des_blessures.md
@@ -4,7 +4,7 @@
# Soin des blessures
-- SRD: [Cure Wounds](srd_spells_cure_wounds.md)
+- Alias: [Cure Wounds](srd_spells_cure_wounds.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_soin_des_blessures_de_groupe.md b/Data/HD/hd_spells_soin_des_blessures_de_groupe.md
index 36110047..ad347abe 100644
--- a/Data/HD/hd_spells_soin_des_blessures_de_groupe.md
+++ b/Data/HD/hd_spells_soin_des_blessures_de_groupe.md
@@ -4,7 +4,7 @@
# Soin des blessures de groupe
-- SRD: [Mass Cure Wounds](srd_spells_mass_cure_wounds.md)
+- Alias: [Mass Cure Wounds](srd_spells_mass_cure_wounds.md)
- Évocation de niveau 5
diff --git a/Data/HD/hd_spells_sommeil.md b/Data/HD/hd_spells_sommeil.md
index 539da398..8d08bf32 100644
--- a/Data/HD/hd_spells_sommeil.md
+++ b/Data/HD/hd_spells_sommeil.md
@@ -4,7 +4,7 @@
# Sommeil
-- SRD: [Sleep](srd_spells_sleep.md)
+- Alias: [Sleep](srd_spells_sleep.md)
- Enchantement de niveau 1
diff --git a/Data/HD/hd_spells_souhait.md b/Data/HD/hd_spells_souhait.md
index dd766928..2abce3a2 100644
--- a/Data/HD/hd_spells_souhait.md
+++ b/Data/HD/hd_spells_souhait.md
@@ -4,7 +4,7 @@
# Souhait
-- SRD: [Wish](srd_spells_wish.md)
+- Alias: [Wish](srd_spells_wish.md)
- Invocation de niveau 9
diff --git a/Data/HD/hd_spells_sphere_de_feu.md b/Data/HD/hd_spells_sphere_de_feu.md
index 90d314a3..3d59d136 100644
--- a/Data/HD/hd_spells_sphere_de_feu.md
+++ b/Data/HD/hd_spells_sphere_de_feu.md
@@ -4,7 +4,7 @@
# Sphère de feu
-- SRD: [Flaming Sphere](srd_spells_flaming_sphere.md)
+- Alias: [Flaming Sphere](srd_spells_flaming_sphere.md)
- Invocation de niveau 2
diff --git a/Data/HD/hd_spells_sphere_glacee.md b/Data/HD/hd_spells_sphere_glacee.md
index 6def5762..09f28f0e 100644
--- a/Data/HD/hd_spells_sphere_glacee.md
+++ b/Data/HD/hd_spells_sphere_glacee.md
@@ -4,7 +4,7 @@
# Sphère glacée
-- SRD: [Freezing Sphere](srd_spells_freezing_sphere.md)
+- Alias: [Freezing Sphere](srd_spells_freezing_sphere.md)
- Évocation de niveau 6
diff --git a/Data/HD/hd_spells_sphere_resiliente.md b/Data/HD/hd_spells_sphere_resiliente.md
index ca9c63d7..5dc7e1eb 100644
--- a/Data/HD/hd_spells_sphere_resiliente.md
+++ b/Data/HD/hd_spells_sphere_resiliente.md
@@ -4,7 +4,7 @@
# Sphère résiliente
-- SRD: [Resilient Sphere](srd_spells_resilient_sphere.md)
+- Alias: [Resilient Sphere](srd_spells_resilient_sphere.md)
- Évocation de niveau 4
diff --git a/Data/HD/hd_spells_suggestion.md b/Data/HD/hd_spells_suggestion.md
index 0608b7dd..c86ed9ca 100644
--- a/Data/HD/hd_spells_suggestion.md
+++ b/Data/HD/hd_spells_suggestion.md
@@ -4,7 +4,7 @@
# Suggestion
-- SRD: [Suggestion](srd_spells_suggestion.md)
+- Alias: [Suggestion](srd_spells_suggestion.md)
- Enchantement de niveau 2
diff --git a/Data/HD/hd_spells_suggestion_de_groupe.md b/Data/HD/hd_spells_suggestion_de_groupe.md
index ab335f89..77e509ee 100644
--- a/Data/HD/hd_spells_suggestion_de_groupe.md
+++ b/Data/HD/hd_spells_suggestion_de_groupe.md
@@ -4,7 +4,7 @@
# Suggestion de groupe
-- SRD: [Mass Suggestion](srd_spells_mass_suggestion.md)
+- Alias: [Mass Suggestion](srd_spells_mass_suggestion.md)
- Enchantement de niveau 6
diff --git a/Data/HD/hd_spells_symbole.md b/Data/HD/hd_spells_symbole.md
index 46a09cfc..cc3f63c5 100644
--- a/Data/HD/hd_spells_symbole.md
+++ b/Data/HD/hd_spells_symbole.md
@@ -4,7 +4,7 @@
# Symbole
-- SRD: [Symbol](srd_spells_symbol.md)
+- Alias: [Symbol](srd_spells_symbol.md)
- Abjuration de niveau 7
diff --git a/Data/HD/hd_spells_telekinesie.md b/Data/HD/hd_spells_telekinesie.md
index d1deaddb..c63ead82 100644
--- a/Data/HD/hd_spells_telekinesie.md
+++ b/Data/HD/hd_spells_telekinesie.md
@@ -4,7 +4,7 @@
# Télékinésie
-- SRD: [Telekinesis](srd_spells_telekinesis.md)
+- Alias: [Telekinesis](srd_spells_telekinesis.md)
- Transmutation de niveau 5
diff --git a/Data/HD/hd_spells_teleportation.md b/Data/HD/hd_spells_teleportation.md
index a45626fb..35ae01ea 100644
--- a/Data/HD/hd_spells_teleportation.md
+++ b/Data/HD/hd_spells_teleportation.md
@@ -4,7 +4,7 @@
# Téléportation
-- SRD: [Teleport](srd_spells_teleport.md)
+- Alias: [Teleport](srd_spells_teleport.md)
- Invocation de niveau 7
diff --git a/Data/HD/hd_spells_tempete_de_feu.md b/Data/HD/hd_spells_tempete_de_feu.md
index f84e64e5..9644d6d4 100644
--- a/Data/HD/hd_spells_tempete_de_feu.md
+++ b/Data/HD/hd_spells_tempete_de_feu.md
@@ -4,7 +4,7 @@
# Tempête de feu
-- SRD: [Fire Storm](srd_spells_fire_storm.md)
+- Alias: [Fire Storm](srd_spells_fire_storm.md)
- Évocation de niveau 7
diff --git a/Data/HD/hd_spells_tempete_de_grele.md b/Data/HD/hd_spells_tempete_de_grele.md
index 46079da9..28f3c7aa 100644
--- a/Data/HD/hd_spells_tempete_de_grele.md
+++ b/Data/HD/hd_spells_tempete_de_grele.md
@@ -4,7 +4,7 @@
# Tempête de grêle
-- SRD: [Ice Storm](srd_spells_ice_storm.md)
+- Alias: [Ice Storm](srd_spells_ice_storm.md)
- Évocation de niveau 4
diff --git a/Data/HD/hd_spells_tempete_de_neige.md b/Data/HD/hd_spells_tempete_de_neige.md
index d76b09ee..084e6dd1 100644
--- a/Data/HD/hd_spells_tempete_de_neige.md
+++ b/Data/HD/hd_spells_tempete_de_neige.md
@@ -4,7 +4,7 @@
# Tempête de neige
-- SRD: [Sleet Storm](srd_spells_sleet_storm.md)
+- Alias: [Sleet Storm](srd_spells_sleet_storm.md)
- Invocation de niveau 3
diff --git a/Data/HD/hd_spells_tempete_vengeresse.md b/Data/HD/hd_spells_tempete_vengeresse.md
index 45a7f9f0..49964c6f 100644
--- a/Data/HD/hd_spells_tempete_vengeresse.md
+++ b/Data/HD/hd_spells_tempete_vengeresse.md
@@ -4,7 +4,7 @@
# Tempête vengeresse
-- SRD: [Storm of Vengeance](srd_spells_storm_of_vengeance.md)
+- Alias: [Storm of Vengeance](srd_spells_storm_of_vengeance.md)
- Invocation de niveau 9
diff --git a/Data/HD/hd_spells_tenebres.md b/Data/HD/hd_spells_tenebres.md
index 1cb91f63..aab117c7 100644
--- a/Data/HD/hd_spells_tenebres.md
+++ b/Data/HD/hd_spells_tenebres.md
@@ -4,7 +4,7 @@
# Ténèbres
-- SRD: [Darkness](srd_spells_darkness.md)
+- Alias: [Darkness](srd_spells_darkness.md)
- Évocation de niveau 2
diff --git a/Data/HD/hd_spells_tentacules_noirs.md b/Data/HD/hd_spells_tentacules_noirs.md
index 5781c86c..1272e16b 100644
--- a/Data/HD/hd_spells_tentacules_noirs.md
+++ b/Data/HD/hd_spells_tentacules_noirs.md
@@ -4,7 +4,7 @@
# Tentacules noirs
-- SRD: [Black Tentacles](srd_spells_black_tentacles.md)
+- Alias: [Black Tentacles](srd_spells_black_tentacles.md)
- Invocation de niveau 4
diff --git a/Data/HD/hd_spells_terrain_hallucinatoire.md b/Data/HD/hd_spells_terrain_hallucinatoire.md
index 45074ee8..c0de397b 100644
--- a/Data/HD/hd_spells_terrain_hallucinatoire.md
+++ b/Data/HD/hd_spells_terrain_hallucinatoire.md
@@ -4,7 +4,7 @@
# Terrain hallucinatoire
-- SRD: [Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)
+- Alias: [Hallucinatory Terrain](srd_spells_hallucinatory_terrain.md)
- Illusion de niveau 4
diff --git a/Data/HD/hd_spells_texte_illusoire.md b/Data/HD/hd_spells_texte_illusoire.md
index a2328de8..7a1e93b4 100644
--- a/Data/HD/hd_spells_texte_illusoire.md
+++ b/Data/HD/hd_spells_texte_illusoire.md
@@ -4,7 +4,7 @@
# Texte illusoire
-- SRD: [Illusory Script](srd_spells_illusory_script.md)
+- Alias: [Illusory Script](srd_spells_illusory_script.md)
- Illusion de niveau 1 (rituel)
diff --git a/Data/HD/hd_spells_thaumaturgie.md b/Data/HD/hd_spells_thaumaturgie.md
index 9d1d0961..d228113c 100644
--- a/Data/HD/hd_spells_thaumaturgie.md
+++ b/Data/HD/hd_spells_thaumaturgie.md
@@ -4,7 +4,7 @@
# Thaumaturgie
-- SRD: [Thaumaturgy](srd_spells_thaumaturgy.md)
+- Alias: [Thaumaturgy](srd_spells_thaumaturgy.md)
- Transmutation, tour de magie
diff --git a/Data/HD/hd_spells_toile_daraignee.md b/Data/HD/hd_spells_toile_daraignee.md
index eeb5ddf4..156cadc5 100644
--- a/Data/HD/hd_spells_toile_daraignee.md
+++ b/Data/HD/hd_spells_toile_daraignee.md
@@ -4,7 +4,7 @@
# Toile d'araignée
-- SRD: [Web](srd_spells_web.md)
+- Alias: [Web](srd_spells_web.md)
- Invocation de niveau 2
diff --git a/Data/HD/hd_spells_trait_de_feu.md b/Data/HD/hd_spells_trait_de_feu.md
index 0207e64f..d9889ec8 100644
--- a/Data/HD/hd_spells_trait_de_feu.md
+++ b/Data/HD/hd_spells_trait_de_feu.md
@@ -4,7 +4,7 @@
# Trait de feu
-- SRD: [Fire Bolt](srd_spells_fire_bolt.md)
+- Alias: [Fire Bolt](srd_spells_fire_bolt.md)
- Évocation, tour de magie
diff --git a/Data/HD/hd_spells_transport_vegetal.md b/Data/HD/hd_spells_transport_vegetal.md
index db536b41..1129a6a0 100644
--- a/Data/HD/hd_spells_transport_vegetal.md
+++ b/Data/HD/hd_spells_transport_vegetal.md
@@ -4,7 +4,7 @@
# Transport végétal
-- SRD: [Transport via Plants](srd_spells_transport_via_plants.md)
+- Alias: [Transport via Plants](srd_spells_transport_via_plants.md)
- Invocation de niveau 6
diff --git a/Data/HD/hd_spells_tremblement_de_terre.md b/Data/HD/hd_spells_tremblement_de_terre.md
index adf7a118..32248042 100644
--- a/Data/HD/hd_spells_tremblement_de_terre.md
+++ b/Data/HD/hd_spells_tremblement_de_terre.md
@@ -4,7 +4,7 @@
# Tremblement de terre
-- SRD: [Earthquake](srd_spells_earthquake.md)
+- Alias: [Earthquake](srd_spells_earthquake.md)
- Évocation de niveau 8
diff --git a/Data/HD/hd_spells_tromperie.md b/Data/HD/hd_spells_tromperie.md
index 0cdef291..a8afefa1 100644
--- a/Data/HD/hd_spells_tromperie.md
+++ b/Data/HD/hd_spells_tromperie.md
@@ -4,7 +4,7 @@
# Tromperie
-- SRD: [Mislead](srd_spells_mislead.md)
+- Alias: [Mislead](srd_spells_mislead.md)
- Illusion de niveau 5
diff --git a/Data/HD/hd_spells_trouver_les_pieges.md b/Data/HD/hd_spells_trouver_les_pieges.md
index 85bf0af6..5d8514ed 100644
--- a/Data/HD/hd_spells_trouver_les_pieges.md
+++ b/Data/HD/hd_spells_trouver_les_pieges.md
@@ -4,7 +4,7 @@
# Trouver les pièges
-- SRD: [Find Traps](srd_spells_find_traps.md)
+- Alias: [Find Traps](srd_spells_find_traps.md)
- Divination de niveau 2
diff --git a/Data/HD/hd_spells_trouver_un_chemin.md b/Data/HD/hd_spells_trouver_un_chemin.md
index 34663c1c..cd62df2c 100644
--- a/Data/HD/hd_spells_trouver_un_chemin.md
+++ b/Data/HD/hd_spells_trouver_un_chemin.md
@@ -4,7 +4,7 @@
# Trouver un chemin
-- SRD: [Find the Path](srd_spells_find_the_path.md)
+- Alias: [Find the Path](srd_spells_find_the_path.md)
- Divination de niveau 6
diff --git a/Data/HD/hd_spells_trouver_une_monture.md b/Data/HD/hd_spells_trouver_une_monture.md
index 07d76d7b..6933f18f 100644
--- a/Data/HD/hd_spells_trouver_une_monture.md
+++ b/Data/HD/hd_spells_trouver_une_monture.md
@@ -4,7 +4,7 @@
# Trouver une monture
-- SRD: [Find Steed](srd_spells_find_steed.md)
+- Alias: [Find Steed](srd_spells_find_steed.md)
- Invocation de niveau 2
diff --git a/Data/HD/hd_spells_vague_tonnante.md b/Data/HD/hd_spells_vague_tonnante.md
index 56adfa90..a5d12586 100644
--- a/Data/HD/hd_spells_vague_tonnante.md
+++ b/Data/HD/hd_spells_vague_tonnante.md
@@ -4,7 +4,7 @@
# Vague tonnante
-- SRD: [Thunderwave](srd_spells_thunderwave.md)
+- Alias: [Thunderwave](srd_spells_thunderwave.md)
- Évocation de niveau 1
diff --git a/Data/HD/hd_spells_verrou_magique.md b/Data/HD/hd_spells_verrou_magique.md
index 5b27464d..6faf1f4f 100644
--- a/Data/HD/hd_spells_verrou_magique.md
+++ b/Data/HD/hd_spells_verrou_magique.md
@@ -4,7 +4,7 @@
# Verrou magique
-- SRD: [Arcane Lock](srd_spells_arcane_lock.md)
+- Alias: [Arcane Lock](srd_spells_arcane_lock.md)
- Abjuration de niveau 2
diff --git a/Data/HD/hd_spells_viser_juste.md b/Data/HD/hd_spells_viser_juste.md
index dc49e124..4e36add0 100644
--- a/Data/HD/hd_spells_viser_juste.md
+++ b/Data/HD/hd_spells_viser_juste.md
@@ -4,7 +4,7 @@
# Viser juste
-- SRD: [True Strike](srd_spells_true_strike.md)
+- Alias: [True Strike](srd_spells_true_strike.md)
- Divination, tour de magie
diff --git a/Data/HD/hd_spells_vision_dans_le_noir.md b/Data/HD/hd_spells_vision_dans_le_noir.md
index 84068866..575e9bcb 100644
--- a/Data/HD/hd_spells_vision_dans_le_noir.md
+++ b/Data/HD/hd_spells_vision_dans_le_noir.md
@@ -4,7 +4,7 @@
# Vision dans le noir
-- SRD: [Darkvision](srd_spells_darkvision.md)
+- Alias: [Darkvision](srd_spells_darkvision.md)
- Transmutation de niveau 2
diff --git a/Data/HD/hd_spells_vision_supreme.md b/Data/HD/hd_spells_vision_supreme.md
index 817c71c1..e352b76b 100644
--- a/Data/HD/hd_spells_vision_supreme.md
+++ b/Data/HD/hd_spells_vision_supreme.md
@@ -4,7 +4,7 @@
# Vision suprême
-- SRD: [True Seeing](srd_spells_true_seeing.md)
+- Alias: [True Seeing](srd_spells_true_seeing.md)
- Divination de niveau 6
diff --git a/Data/HD/hd_spells_voir_linvisible.md b/Data/HD/hd_spells_voir_linvisible.md
index d2a9aede..3efaae23 100644
--- a/Data/HD/hd_spells_voir_linvisible.md
+++ b/Data/HD/hd_spells_voir_linvisible.md
@@ -4,7 +4,7 @@
# Voir l'invisible
-- SRD: [See Invisibility](srd_spells_see_invisibility.md)
+- Alias: [See Invisibility](srd_spells_see_invisibility.md)
- Divination de niveau 2
diff --git a/Data/HD/hd_spells_vol.md b/Data/HD/hd_spells_vol.md
index 5dd76b55..0e9632f8 100644
--- a/Data/HD/hd_spells_vol.md
+++ b/Data/HD/hd_spells_vol.md
@@ -4,7 +4,7 @@
# Vol
-- SRD: [Fly](srd_spells_fly.md)
+- Alias: [Fly](srd_spells_fly.md)
- Transmutation de niveau 3
diff --git a/Data/HD/hd_spells_zone_de_verite.md b/Data/HD/hd_spells_zone_de_verite.md
index e427c198..c1777405 100644
--- a/Data/HD/hd_spells_zone_de_verite.md
+++ b/Data/HD/hd_spells_zone_de_verite.md
@@ -4,7 +4,7 @@
# Zone de vérité
-- SRD: [Zone of Truth](srd_spells_zone_of_truth.md)
+- Alias: [Zone of Truth](srd_spells_zone_of_truth.md)
- Enchantement de niveau 2
diff --git a/Data/HD/hd_tiefling.md b/Data/HD/hd_tiefling.md
index ad77abe9..2189d2e8 100644
--- a/Data/HD/hd_tiefling.md
+++ b/Data/HD/hd_tiefling.md
@@ -5,7 +5,7 @@
# Tieffelin
-- AltName: Tiefling (SRD p7)
+- Alias: Tiefling (SRD p7)
- Source: (MDR p71)
## Traits des tieffelins
diff --git a/Data/HD/hd_time.md b/Data/HD/hd_time.md
index 9a73a780..ee4bfac5 100644
--- a/Data/HD/hd_time.md
+++ b/Data/HD/hd_time.md
@@ -5,7 +5,7 @@
# Écoulement du temps
-- AltName: Time (SRD p84)
+- Alias: Time (SRD p84)
- Source: (MDR p270)
Dans certaines situations, il est nécessaire de porter une attention spéciale à l’écoulement du temps. Dans ce cas, c’est au MJ de décider du temps que prend une tâche. Le MJ peut utiliser une échelle de temps différente en fonction des situations. Dans un environnement d’exploration de souterrains ou de complexes de salles – ce qu’on appelle un « donjon », les déplacements des PJ sont calculés sur une échelle de minutes. Il leur faut environ une minute pour traverser de façon discrète un long couloir, une autre minute pour s’assurer que la porte qu’ils comptent ouvrir n’est pas piégée et une bonne dizaine de minutes pour fouiller la salle dans laquelle ils ont pénétré et mettre la main sur ce qui pourrait être intéressant ou précieux.
diff --git a/Data/HD/hd_traps.md b/Data/HD/hd_traps.md
index aef86b59..5ed48802 100644
--- a/Data/HD/hd_traps.md
+++ b/Data/HD/hd_traps.md
@@ -5,7 +5,7 @@
## Les pièges
-- AltName: Traps
+- Alias: Traps
- Source: (CEO 374)(SRD p195)
Les pièges se trouvent partout ou presque. Il suffit d'un faux pas dans une tombe millénaire pour mettre en mouvement toute une série de lames affûtées qui tranchent les armures comme les os. Ces plantes qui pendent innocemment au-dessus de l'entrée d'une caverne et forment un rideau devant pourraient bien s'enrouler autour du cou du premier qui tente de les écarter. Un filet peut être caché dans les arbres et tomber sur les voyageurs qui passent dessous. Dans un monde fantastique, les aventuriers imprudents risquent fort de faire une chute mortelle, d'être brûlés vifs ou de se trouver victimes d'une volée de fléchettes empoisonnées.
diff --git a/Data/HD/hd_warlock.md b/Data/HD/hd_warlock.md
index ab22ff5b..9d8895cb 100644
--- a/Data/HD/hd_warlock.md
+++ b/Data/HD/hd_warlock.md
@@ -5,7 +5,7 @@
# Sorcier
-- AltName: Warlock (SRD p46)
+- Alias: Warlock (SRD p46)
- Source: (MDR p209)
En tant que sorcier, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_warlock_fiendish.md b/Data/HD/hd_warlock_fiendish.md
index c77e1d8c..af1a869e 100644
--- a/Data/HD/hd_warlock_fiendish.md
+++ b/Data/HD/hd_warlock_fiendish.md
@@ -5,7 +5,7 @@
# Le fiélon
-- AltName: The Fiend (SRD p50)
+- Alias: The Fiend (SRD p50)
- Source: (MDR p215)
Vous avez passé un pacte avec un fiélon des plans inférieurs, un être qui vit pour faire le mal, même si vous êtes opposé à ses ambitions. De tels êtres désirent la corruption ou la destruction de toutes choses, vous compris. Parmi les fiélons assez puissants pour forger un pacte, on trouve des seigneurs démons comme Orcus ou Baphomet, des archidiables comme Asmodée, Méphistophélès ou Bélial, des diantrefosses et des balors particulièrement puissants, ainsi que des ultroloths et autres seigneurs yugoloths.
diff --git a/Data/HD/hd_warlock_occultsummons.md b/Data/HD/hd_warlock_occultsummons.md
index f756d342..61717dbe 100644
--- a/Data/HD/hd_warlock_occultsummons.md
+++ b/Data/HD/hd_warlock_occultsummons.md
@@ -5,7 +5,7 @@
# Invocations occultes
-- AltName: Eldritch Invocations (SRD p48)
+- Alias: Eldritch Invocations (SRD p48)
- Source: (MDR p213)
Si une invocation occulte a des prérequis, vous ne pouvez pas apprendre cette invocation tant que vous ne remplissez pas les conditions adéquates. Dès que c'est le cas, vous êtes en mesure d'apprendre l'invocation en question. Si une des conditions est un niveau, il s'agit du niveau que vous possédez dans la classe de sorcier.
diff --git a/Data/HD/hd_warlock_pact.md b/Data/HD/hd_warlock_pact.md
index a31c57bd..ec8007c7 100644
--- a/Data/HD/hd_warlock_pact.md
+++ b/Data/HD/hd_warlock_pact.md
@@ -5,7 +5,7 @@
# Pacte
-- AltName: Pact Boon (SRD p47)
+- Alias: Pact Boon (SRD p47)
- Source: (MDR p211)
Au niveau 3, votre protecteur d'outre-monde vous accorde un cadeau en récompense de vos loyaux services.
diff --git a/Data/HD/hd_weapons.md b/Data/HD/hd_weapons.md
index be05a43e..a81b6d55 100644
--- a/Data/HD/hd_weapons.md
+++ b/Data/HD/hd_weapons.md
@@ -5,7 +5,7 @@
# Armes
-- AltName: Weapons (SRD p64)
+- Alias: Weapons (SRD p64)
- Source: (MDR p226)
Votre classe vous donne la maîtrise de certaines armes, qui sont représentatives de cette classe, et des outils que vous êtes susceptible d'utiliser. Que vous préfériez manier l'épée longue ou l'arc long, c'est finalement votre capacité à manier votre arme avec efficacité qui peut vous permettre de survivre à une aventure.
diff --git a/Data/HD/hd_weapons_a_deux_mains.md b/Data/HD/hd_weapons_a_deux_mains.md
index db45a976..efcc9f74 100644
--- a/Data/HD/hd_weapons_a_deux_mains.md
+++ b/Data/HD/hd_weapons_a_deux_mains.md
@@ -4,7 +4,7 @@
##### À deux mains
-- AltName: Two-Handed (SRD p65)
+- Alias: Two-Handed (SRD p65)
- Source: (MDR p226)
Vous devez manier cette arme à deux mains pour effectuer une attaque.
diff --git a/Data/HD/hd_weapons_allonge.md b/Data/HD/hd_weapons_allonge.md
index 4ac04f85..561a0833 100644
--- a/Data/HD/hd_weapons_allonge.md
+++ b/Data/HD/hd_weapons_allonge.md
@@ -4,7 +4,7 @@
##### Allonge
-- AltName: Reach (SRD p65)
+- Alias: Reach (SRD p65)
- Source: (MDR p226)
Ce type d'arme vous permet de gagner 1,50 mètre d'allonge supplémentaire quand vous l'utilisez et quand vous déterminez votre allonge pour effectuer une attaque d'opportunité.
diff --git a/Data/HD/hd_weapons_armes_en_argent.md b/Data/HD/hd_weapons_armes_en_argent.md
index 3a8a5972..ea8306bc 100644
--- a/Data/HD/hd_weapons_armes_en_argent.md
+++ b/Data/HD/hd_weapons_armes_en_argent.md
@@ -4,7 +4,7 @@
#### Armes en argent
-- AltName: Silvered Weapons (SRD p65)
+- Alias: Silvered Weapons (SRD p65)
- Source: (MDR p228)
Certains monstres qui possèdent une immunité ou une résistance aux armes non-magiques sont vulnérables aux armes en argent. Les aventuriers prudents n'hésitent donc pas à dépenser quelques pièces supplémentaires pour plaquer leurs armes avec de l'argent. Un personnage peut plaquer une arme unique ou dix munitions avec de l'argent pour 100 po. Ce tarif prend en compte non seulement le prix de l'argent, mais aussi celui de l'expertise nécessaire pour plaquer l'argent sur une arme sans lui faire perdre en efficacité.
diff --git a/Data/HD/hd_weapons_armes_improvisees.md b/Data/HD/hd_weapons_armes_improvisees.md
index 9d28872e..b9426aa3 100644
--- a/Data/HD/hd_weapons_armes_improvisees.md
+++ b/Data/HD/hd_weapons_armes_improvisees.md
@@ -4,7 +4,7 @@
#### Armes improvisées
-- AltName: Improvised Weapons (SRD p65)
+- Alias: Improvised Weapons (SRD p65)
- Source: (MDR p228)
Il peut arriver que les personnages n'aient pas leurs armes avec eux et doivent se contenter de ce qu'ils ont sous la main. Une arme improvisée peut être n'importe quel objet que vous pouvez tenir à une ou [deux mains](hd_weapons_a_deux_mains.md), comme un éclat de verre, un pied de table, une poêle, une roue de chariot ou un cadavre de gobelin.
diff --git a/Data/HD/hd_weapons_chargement.md b/Data/HD/hd_weapons_chargement.md
index 365e2bbc..d211cc1d 100644
--- a/Data/HD/hd_weapons_chargement.md
+++ b/Data/HD/hd_weapons_chargement.md
@@ -4,7 +4,7 @@
##### Chargement
-- AltName: Loading (SRD p65)
+- Alias: Loading (SRD p65)
- Source: (MDR p226)
Cette arme nécessite un temps de chargement long qui ne vous permet de tirer qu'une seule fois quand vous utilisez une action, une action bonus ou une réaction, peu importe le nombre d'attaques que vous pouvez normalement faire.
diff --git a/Data/HD/hd_weapons_finesse.md b/Data/HD/hd_weapons_finesse.md
index c84bbb21..62b95cf2 100644
--- a/Data/HD/hd_weapons_finesse.md
+++ b/Data/HD/hd_weapons_finesse.md
@@ -4,7 +4,7 @@
##### Finesse
-- AltName: Finesse (SRD p64)
+- Alias: Finesse (SRD p64)
- Source: (MDR p227)
Quand vous attaquez avec une arme dotée de la propriété finesse, vous pouvez choisir d'ajouter votre modificateur de Force ou de Dextérité aux jets d'attaques et de dégâts. Par contre, vous devez utiliser le même modificateur pour les deux jets.
diff --git a/Data/HD/hd_weapons_lancer.md b/Data/HD/hd_weapons_lancer.md
index 38788a46..3a32430c 100644
--- a/Data/HD/hd_weapons_lancer.md
+++ b/Data/HD/hd_weapons_lancer.md
@@ -4,7 +4,7 @@
##### Lancer
-- AltName: Thrown (SRD p65)
+- Alias: Thrown (SRD p65)
- Source: (MDR p227)
Si une arme possède la propriété lancer, vous pouvez la lancer pour faire une attaque à distance. S'il s'agit d'une arme de corps-à-corps, vous utilisez le même modificateur de caractéristique que pour le jet d'attaque et de dégâts d'une attaque de corps-à-corps avec cette arme. Par exemple, si vous lancez une hachette, vous utilisez votre Force ; si vous lancez une dague, vous avez le choix entre utiliser votre Force ou votre Dextérité, dans la mesure où la dague possède aussi la propriété finesse.
diff --git a/Data/HD/hd_weapons_legere.md b/Data/HD/hd_weapons_legere.md
index a2db5df3..07031f9a 100644
--- a/Data/HD/hd_weapons_legere.md
+++ b/Data/HD/hd_weapons_legere.md
@@ -4,7 +4,7 @@
##### Légère
-- AltName: Light (SRD p65)
+- Alias: Light (SRD p65)
- Source: (MDR p227)
Une arme légère est petite et facile à manier, ce qui la rend idéale pour le combat à deux armes.
diff --git a/Data/HD/hd_weapons_lourde.md b/Data/HD/hd_weapons_lourde.md
index ce3fec0f..00834d79 100644
--- a/Data/HD/hd_weapons_lourde.md
+++ b/Data/HD/hd_weapons_lourde.md
@@ -4,7 +4,7 @@
##### Lourde
-- AltName: Heavy (SRD p65)
+- Alias: Heavy (SRD p65)
- Source: (MDR p227)
Les créatures de petite taille subissent un désavantage sur les jets d'attaque quand elles manient des armes lourdes. La taille et le poids de celles-ci les leur rendent en effet difficiles à manier.
diff --git a/Data/HD/hd_weapons_maitrise_des_armes.md b/Data/HD/hd_weapons_maitrise_des_armes.md
index da264572..8197490b 100644
--- a/Data/HD/hd_weapons_maitrise_des_armes.md
+++ b/Data/HD/hd_weapons_maitrise_des_armes.md
@@ -4,7 +4,7 @@
### Maîtrise des armes
-- AltName: Weapon Proficiency (SRD p64)
+- Alias: Weapon Proficiency (SRD p64)
- Source: (MDR p226)
Votre race, votre classe et vos dons peuvent vous donner la maîtrise de certaines armes ou catégories d'armes. On trouve deux types d'armes : les armes courantes et les armes de guerre. La plupart des gens maîtrisent les armes courantes. On trouve parmi celles-ci les gourdins et les masses, ainsi que toutes les armes que l'on trouve couramment chez les gens du peuple. Les armes de guerre, notamment les épées, les haches et les armes d'hast, demandent d'avoir reçu un entraînement spécifique pour les manier efficacement. La plupart des guerriers utilisent des armes de guerre, car c'est avec ces armes qu'ils peuvent profiter pleinement de leur entraînement et de leur style de combat.
diff --git a/Data/HD/hd_weapons_munitions.md b/Data/HD/hd_weapons_munitions.md
index 76b1e6e7..aba358fe 100644
--- a/Data/HD/hd_weapons_munitions.md
+++ b/Data/HD/hd_weapons_munitions.md
@@ -4,7 +4,7 @@
##### Munitions
-- AltName: Ammunition (SRD p64)
+- Alias: Ammunition (SRD p64)
- Source: (MDR p227)
Vous ne pouvez utiliser une arme qui a la propriété munitions pour faire une attaque à distance que si vous avez les munitions nécessaires pour tirer avec cette arme. Chaque fois que vous attaquez avec cette arme, vous utilisez une munition. Sortir la munition en question d'un carquois, d'une boîte ou d'un quelconque étui fait partie de l'attaque (vous avez besoin d'une main libre pour charger une arme à une main). À la fin de la bataille, vous pouvez récupérer la moitié des munitions que vous avez utilisées en prenant 1 minute pour fouiller le champ de bataille.
diff --git a/Data/HD/hd_weapons_polyvalente.md b/Data/HD/hd_weapons_polyvalente.md
index 78c79ceb..757d4e4d 100644
--- a/Data/HD/hd_weapons_polyvalente.md
+++ b/Data/HD/hd_weapons_polyvalente.md
@@ -4,7 +4,7 @@
##### Polyvalente
-- AltName: Versatile (SRD p65)
+- Alias: Versatile (SRD p65)
- Source: (MDR p227)
Une telle arme peut être utilisée avec une ou deux mains. À côté de la propriété, une valeur est indiquée entre parenthèses : il s'agit des dégâts infligés quand l'arme est tenue à deux mains.
diff --git a/Data/HD/hd_weapons_portee.md b/Data/HD/hd_weapons_portee.md
index 0dd2f7c8..81fa36b3 100644
--- a/Data/HD/hd_weapons_portee.md
+++ b/Data/HD/hd_weapons_portee.md
@@ -4,7 +4,7 @@
##### Portée
-- AltName: Range (SRD p65)
+- Alias: Range (SRD p65)
- Source: (MDR p227)
Une arme qui peut être utilisée pour faire des attaques à distance affiche une portée indiquée entre parenthèses après la propriété munitions ou lancer. La portée consiste en deux nombres. Le premier indique la portée normale de l'arme en mètres et le second indique sa portée longue. Quand vous attaquez une cible qui se trouve hors de la portée normale de votre arme, vous subissez un désavantage sur le jet d'attaque. Vous ne pouvez pas attaquer une cible qui se trouve au-delà de la portée longue de votre arme.
diff --git a/Data/HD/hd_weapons_proprietes_des_armes.md b/Data/HD/hd_weapons_proprietes_des_armes.md
index 8ae7b679..e807abe4 100644
--- a/Data/HD/hd_weapons_proprietes_des_armes.md
+++ b/Data/HD/hd_weapons_proprietes_des_armes.md
@@ -4,7 +4,7 @@
### Propriétés des armes
-- AltName: Weapon Properties (SRD p64)
+- Alias: Weapon Properties (SRD p64)
- Source: (MDR p226)
De nombreuses armes ont des propriétés spéciales liées à leur utilisation, ainsi que vous pourrez le voir dans le tableau des armes.
diff --git a/Data/HD/hd_weapons_speciale.md b/Data/HD/hd_weapons_speciale.md
index 95d1e31b..22a79d5e 100644
--- a/Data/HD/hd_weapons_speciale.md
+++ b/Data/HD/hd_weapons_speciale.md
@@ -4,7 +4,7 @@
##### Spéciale
-- AltName: Special (SRD p65)
+- Alias: Special (SRD p65)
- Source: (MDR p228)
Une arme qui possède la propriété spéciale utilise des règles de fonctionnement spécifiques qui sont expliquées dans la description de l'arme (voir la section Armes spéciales plus loin dans ce chapitre).
diff --git a/Data/HD/hd_wizard.md b/Data/HD/hd_wizard.md
index ba58e5fe..c3fbb5b1 100644
--- a/Data/HD/hd_wizard.md
+++ b/Data/HD/hd_wizard.md
@@ -5,7 +5,7 @@
# Magicien
-- AltName: Wizard (SRD p52)
+- Alias: Wizard (SRD p52)
- Source: (MDR p166)
En tant que magicien, vous bénéficiez des aptitudes de classe suivantes.
diff --git a/Data/HD/hd_wizard_evocation.md b/Data/HD/hd_wizard_evocation.md
index ff64504f..1f8b2eed 100644
--- a/Data/HD/hd_wizard_evocation.md
+++ b/Data/HD/hd_wizard_evocation.md
@@ -5,7 +5,7 @@
# École d'évocation
-- AltName: School of Evocation (SRD p54)
+- Alias: School of Evocation (SRD p54)
- Source: (MDR p419)
Vous vous intéressez à la magie capable de créer des effets élémentaires puissants, comme un froid mordant, une flamme intense, un coup de tonnerre assourdissant, un éclair crépitant ou de l'acide brûlant.
diff --git a/Data/HD/index.md b/Data/HD/index.md
index ec1619ef..37a91e57 100644
--- a/Data/HD/index.md
+++ b/Data/HD/index.md
@@ -1,74 +1,16 @@
-# Manuel des règles
+# Bibliothèque
-## [Création du personnage](hd_beyond1stlevel.md)
+## [Manuel des règles](index_mdr.md)
-## [Races](hd_races.md)
+## [Cadre de campagne](index_cdc.md)
-## [Personnalité et Historique](hd_personnality_background.md)
+## [Créatures et oppositions](index_ceo.md)
-## [Classes](hd_classes.md)
+## [Les Cinq Royaumes](hd_l5r_index.md)
-## [Équipement](hd_equipment.md)
+## [Livre des monstres](tome_of_beasts.md)
-## [Options de personnalisation](hd_custom_options.md)
+## [Monstrueusement Mignons](baby_bestiary.md)
-## [Utiliser les Caractéristiques](hd_abilities.md)
-
-## [Partir à l'aventure](hd_adventure.md)
-
-## [Combattre](hd_combat.md)
-
-## [Gérer la santé](hd_manage_health.md)
-
-## [Lancer des sorts](hd_spellcasting.md)
-
-## [Description des Sorts](hd_spells.md)
-
-## [Panthéons](hd_pantheons.md)
-
-
-# Cadre de campagne
-
-## [Objets magiques](hd_magicitems.md)
-
-### [Objets magiques de A à Z](hd_magicitems_az.md)
-
-### [Objets magiques intelligents](hd_sentient_magicitems.md)
-
-### [Artefacts](hd_artifacts.md)
-
-## [Jouer dans un multivers](hd_planes.md)
-
-
-# Créatures et oppositions
-
-## [Créatures](hd_monsters.md)
-
-## [Pièges](hd_traps.md)
-
-## [Maladies](hd_diseases.md)
-
-## [Folie](hd_madness.md)
-
-## [Objets](hd_objects.md)
-
-## [Poisons](hd_poisons.md)
-
-
-# [Les Cinq Royaumes](hd_l5r_index.md)
-
-
-# [Livre des monstres](tome_of_beasts.md)
-
-
-# [Monstrueusement Mignons](baby_bestiary.md)
-
-
-# SRD
-
-## [Conditions](srd_conditions.md)
-
-## [Spells](srd_spells.md)
-
-## [Monsters, Animals and NPC](srd_monsters.md)
+## [SRD](index_srd.md)
diff --git a/Data/HD/sandbox.md b/Data/HD/sandbox.md
index a3957162..44227f8f 100644
--- a/Data/HD/sandbox.md
+++ b/Data/HD/sandbox.md
@@ -5,7 +5,7 @@
# Sandbox
-- SRD: Races
+- Alias: Races
- Book: (MDR p36)(SRD p3)
diff --git a/Data/HD/sandbox_agrandirretrecir.md b/Data/HD/sandbox_agrandirretrecir.md
index 018f987a..0b4a7717 100644
--- a/Data/HD/sandbox_agrandirretrecir.md
+++ b/Data/HD/sandbox_agrandirretrecir.md
@@ -4,7 +4,7 @@
# Agrandir/rétrécir
-- SRD: [Enlarge/Reduce](srd_spells_enlargereduce.md)
+- Alias: [Enlarge/Reduce](srd_spells_enlargereduce.md)
- Transmutation de niveau 2
diff --git a/Data/HD/srd_conditions.md b/Data/HD/srd_conditions.md
index 9d5917a4..d9770de7 100644
--- a/Data/HD/srd_conditions.md
+++ b/Data/HD/srd_conditions.md
@@ -5,7 +5,7 @@
# Conditions
-- AltName: [États spéciaux](hd_conditions.md)
+- Alias: [États spéciaux](hd_conditions.md)
- Source: (SRD p358)
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](srd_conditions_blinded.md), are impairments, but a few, such as invisible, can be advantageous.
diff --git a/Data/HD/srd_conditions_blinded.md b/Data/HD/srd_conditions_blinded.md
index 94b5eab4..8f371a9d 100644
--- a/Data/HD/srd_conditions_blinded.md
+++ b/Data/HD/srd_conditions_blinded.md
@@ -4,7 +4,7 @@
# Blinded
-- AltName: [Aveuglé](hd_conditions_aveugle.md)
+- Alias: [Aveuglé](hd_conditions_aveugle.md)
- Source: (SRD p358)
* A blinded creature can't see and automatically fails any ability check that requires sight.
diff --git a/Data/HD/srd_conditions_charmed.md b/Data/HD/srd_conditions_charmed.md
index 31631bd3..9408f33b 100644
--- a/Data/HD/srd_conditions_charmed.md
+++ b/Data/HD/srd_conditions_charmed.md
@@ -4,7 +4,7 @@
# Charmed
-- AltName: [Charmé](hd_conditions_charme.md)
+- Alias: [Charmé](hd_conditions_charme.md)
- Source: (SRD p358)
* A charmed creature can't attack the charmer or target the charmer with harmful abilities or magical effects.
diff --git a/Data/HD/srd_conditions_deafened.md b/Data/HD/srd_conditions_deafened.md
index 0e0e13f6..6cec87ad 100644
--- a/Data/HD/srd_conditions_deafened.md
+++ b/Data/HD/srd_conditions_deafened.md
@@ -4,7 +4,7 @@
# Deafened
-- AltName: [Assourdi](hd_conditions_assourdi.md)
+- Alias: [Assourdi](hd_conditions_assourdi.md)
- Source: (SRD p358)
* A deafened creature can't hear and automatically fails any ability check that requires hearing.
diff --git a/Data/HD/srd_conditions_exhaustion.md b/Data/HD/srd_conditions_exhaustion.md
index 42b72e71..012b0460 100644
--- a/Data/HD/srd_conditions_exhaustion.md
+++ b/Data/HD/srd_conditions_exhaustion.md
@@ -4,7 +4,7 @@
# Exhaustion
-- AltName: [Fatigue et épuisement](hd_conditions_fatigue_et_epuisement.md)
+- Alias: [Fatigue et épuisement](hd_conditions_fatigue_et_epuisement.md)
- Source: (SRD p358)
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/HD/srd_conditions_frightened.md b/Data/HD/srd_conditions_frightened.md
index 128d03b9..25601f65 100644
--- a/Data/HD/srd_conditions_frightened.md
+++ b/Data/HD/srd_conditions_frightened.md
@@ -4,7 +4,7 @@
# Frightened
-- AltName: [Terrorisé](hd_conditions_terrorise.md)
+- Alias: [Terrorisé](hd_conditions_terrorise.md)
- Source: (SRD p358)
* A frightened creature has disadvantage on ability checks and attack rolls while the source of its fear is within line of sight.
diff --git a/Data/HD/srd_conditions_grappled.md b/Data/HD/srd_conditions_grappled.md
index f2cd9315..d87068b0 100644
--- a/Data/HD/srd_conditions_grappled.md
+++ b/Data/HD/srd_conditions_grappled.md
@@ -4,7 +4,7 @@
# Grappled
-- AltName: [Empoigné](hd_conditions_empoigne.md)
+- Alias: [Empoigné](hd_conditions_empoigne.md)
- Source: (SRD p358)
* A grappled creature's speed becomes 0, and it can't benefit from any bonus to its speed.
diff --git a/Data/HD/srd_conditions_incapacitated.md b/Data/HD/srd_conditions_incapacitated.md
index 8d0f5e30..83936df1 100644
--- a/Data/HD/srd_conditions_incapacitated.md
+++ b/Data/HD/srd_conditions_incapacitated.md
@@ -4,7 +4,7 @@
# Incapacitated
-- AltName: [Neutralisé](hd_conditions_neutralise.md)
+- Alias: [Neutralisé](hd_conditions_neutralise.md)
- Source: (SRD p358)
* An incapacitated creature can't take actions or reactions.
diff --git a/Data/HD/srd_conditions_invisible.md b/Data/HD/srd_conditions_invisible.md
index 8ec54689..ff613d97 100644
--- a/Data/HD/srd_conditions_invisible.md
+++ b/Data/HD/srd_conditions_invisible.md
@@ -4,7 +4,7 @@
# Invisible
-- AltName: [Invisible](hd_conditions_invisible.md)
+- Alias: [Invisible](hd_conditions_invisible.md)
- Source: (SRD p358)
* 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.
diff --git a/Data/HD/srd_conditions_paralyzed.md b/Data/HD/srd_conditions_paralyzed.md
index d0b7f57d..a24cee40 100644
--- a/Data/HD/srd_conditions_paralyzed.md
+++ b/Data/HD/srd_conditions_paralyzed.md
@@ -4,7 +4,7 @@
# Paralyzed
-- AltName: [Paralysé](hd_conditions_paralyse.md)
+- Alias: [Paralysé](hd_conditions_paralyse.md)
- Source: (SRD p358)
* A paralyzed creature is [incapacitated](srd_conditions_incapacitated.md) (see the condition) and can't move or speak.
diff --git a/Data/HD/srd_conditions_petrified.md b/Data/HD/srd_conditions_petrified.md
index 265c580c..b4c6f289 100644
--- a/Data/HD/srd_conditions_petrified.md
+++ b/Data/HD/srd_conditions_petrified.md
@@ -4,7 +4,7 @@
# Petrified
-- AltName: [Pétrifié](hd_conditions_petrifie.md)
+- Alias: [Pétrifié](hd_conditions_petrifie.md)
- Source: (SRD p359)
* 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.
diff --git a/Data/HD/srd_conditions_poisoned.md b/Data/HD/srd_conditions_poisoned.md
index f4bf9437..93da2f55 100644
--- a/Data/HD/srd_conditions_poisoned.md
+++ b/Data/HD/srd_conditions_poisoned.md
@@ -4,7 +4,7 @@
# Poisoned
-- AltName: [Empoisonné](hd_conditions_empoisonne.md)
+- Alias: [Empoisonné](hd_conditions_empoisonne.md)
- Source: (SRD p359)
* A poisoned creature has disadvantage on attack rolls and ability checks.
diff --git a/Data/HD/srd_conditions_prone.md b/Data/HD/srd_conditions_prone.md
index e1ee2f5a..9097e6d5 100644
--- a/Data/HD/srd_conditions_prone.md
+++ b/Data/HD/srd_conditions_prone.md
@@ -4,7 +4,7 @@
# Prone
-- AltName: [À terre](hd_conditions_a_terre.md)
+- Alias: [À terre](hd_conditions_a_terre.md)
- Source: (SRD p359)
* A prone creature's only movement option is to crawl, unless it stands up and thereby ends the condition.
diff --git a/Data/HD/srd_conditions_restrained.md b/Data/HD/srd_conditions_restrained.md
index b2a7f2c5..a1b02fbc 100644
--- a/Data/HD/srd_conditions_restrained.md
+++ b/Data/HD/srd_conditions_restrained.md
@@ -4,7 +4,7 @@
# Restrained
-- AltName: [Entravé](hd_conditions_entrave.md)
+- Alias: [Entravé](hd_conditions_entrave.md)
- Source: (SRD p359)
* A restrained creature's speed becomes 0, and it can't benefit from any bonus to its speed.
diff --git a/Data/HD/srd_conditions_stunned.md b/Data/HD/srd_conditions_stunned.md
index d123b06d..b8d8f2f8 100644
--- a/Data/HD/srd_conditions_stunned.md
+++ b/Data/HD/srd_conditions_stunned.md
@@ -4,7 +4,7 @@
# Stunned
-- AltName: [Étourdi](hd_conditions_etourdi.md)
+- Alias: [Étourdi](hd_conditions_etourdi.md)
- Source: (SRD p359)
* A stunned creature is [incapacitated](srd_conditions_incapacitated.md) (see the condition), can't move, and can speak only falteringly.
diff --git a/Data/HD/srd_conditions_unconscious.md b/Data/HD/srd_conditions_unconscious.md
index 192c6004..15f17206 100644
--- a/Data/HD/srd_conditions_unconscious.md
+++ b/Data/HD/srd_conditions_unconscious.md
@@ -4,7 +4,7 @@
# Unconscious
-- AltName: [Inconscient](hd_conditions_inconscient.md)
+- Alias: [Inconscient](hd_conditions_inconscient.md)
- Source: (SRD p359)
* An unconscious creature is [incapacitated](srd_conditions_incapacitated.md) (see the condition), can't move or speak, and is unaware of its surroundings
diff --git a/Data/HD/srd_monsters.md b/Data/HD/srd_monsters.md
index 9e09ba74..04483407 100644
--- a/Data/HD/srd_monsters.md
+++ b/Data/HD/srd_monsters.md
@@ -45,7 +45,7 @@ SubItems:
- - CEO: [Aboleth](hd_monsters_aboleth.md)
+ - Alias: [Aboleth](hd_monsters_aboleth.md)
@@ -2080,7 +2080,7 @@ SubItems:
- - CEO: [Acolyte](hd_monsters_acolyte.md)
+ - Alias: [Acolyte](hd_monsters_acolyte.md)
@@ -2251,7 +2251,7 @@ SubItems:
- - CEO: [Aigle](hd_monsters_aigle.md)
+ - Alias: [Aigle](hd_monsters_aigle.md)
@@ -2410,7 +2410,7 @@ SubItems:
- - CEO: [Aigle géant](hd_monsters_aigle_geant.md)
+ - Alias: [Aigle géant](hd_monsters_aigle_geant.md)
@@ -2590,7 +2590,7 @@ SubItems:
- - CEO: [Androsphinx](hd_monsters_androsphinx.md)
+ - Alias: [Androsphinx](hd_monsters_androsphinx.md)
@@ -2880,7 +2880,7 @@ SubItems:
- - CEO: [Ankheg](hd_monsters_ankheg.md)
+ - Alias: [Ankheg](hd_monsters_ankheg.md)
@@ -3027,7 +3027,7 @@ SubItems:
- - CEO: [Araignée](hd_monsters_araignee.md)
+ - Alias: [Araignée](hd_monsters_araignee.md)
@@ -3198,7 +3198,7 @@ SubItems:
- - CEO: [Araignée de phase](hd_monsters_araignee_de_phase.md)
+ - Alias: [Araignée de phase](hd_monsters_araignee_de_phase.md)
@@ -3369,7 +3369,7 @@ SubItems:
- - CEO: [Araignée géante](hd_monsters_araignee_geante.md)
+ - Alias: [Araignée géante](hd_monsters_araignee_geante.md)
@@ -3552,7 +3552,7 @@ SubItems:
- - CEO: [Araignée-loup géante](hd_monsters_araignee_loup_geante.md)
+ - Alias: [Araignée-loup géante](hd_monsters_araignee_loup_geante.md)
@@ -3723,7 +3723,7 @@ SubItems:
- - CEO: [Arbre éveillé](hd_monsters_arbre_eveille.md)
+ - Alias: [Arbre éveillé](hd_monsters_arbre_eveille.md)
@@ -3886,7 +3886,7 @@ SubItems:
- - CEO: [Arbuste éveillé](hd_monsters_arbuste_eveille.md)
+ - Alias: [Arbuste éveillé](hd_monsters_arbuste_eveille.md)
@@ -4051,7 +4051,7 @@ SubItems:
- - CEO: [Archimage](hd_monsters_archimage.md)
+ - Alias: [Archimage](hd_monsters_archimage.md)
@@ -4295,7 +4295,7 @@ SubItems:
- - CEO: [Armure animée](hd_monsters_armure_animee.md)
+ - Alias: [Armure animée](hd_monsters_armure_animee.md)
@@ -4474,7 +4474,7 @@ SubItems:
- - CEO: [Assassin](hd_monsters_assassin.md)
+ - Alias: [Assassin](hd_monsters_assassin.md)
@@ -4677,7 +4677,7 @@ SubItems:
- - CEO: [Azer](hd_monsters_azer.md)
+ - Alias: [Azer](hd_monsters_azer.md)
@@ -4859,7 +4859,7 @@ SubItems:
- - CEO: [Babouin](hd_monsters_babouin.md)
+ - Alias: [Babouin](hd_monsters_babouin.md)
@@ -5012,7 +5012,7 @@ SubItems:
- - CEO: [Babélien](hd_monsters_babelien.md)
+ - Alias: [Babélien](hd_monsters_babelien.md)
@@ -5198,7 +5198,7 @@ SubItems:
- - CEO: [Balor](hd_monsters_balor.md)
+ - Alias: [Balor](hd_monsters_balor.md)
@@ -5416,7 +5416,7 @@ SubItems:
- - CEO: [Bandit](hd_monsters_bandit.md)
+ - Alias: [Bandit](hd_monsters_bandit.md)
@@ -5570,7 +5570,7 @@ SubItems:
- - CEO: [Capitaine Bandit](hd_monsters_capitaine_bandit.md)
+ - Alias: [Capitaine Bandit](hd_monsters_capitaine_bandit.md)
@@ -5752,7 +5752,7 @@ SubItems:
- - CEO: [Basilic](hd_monsters_basilic.md)
+ - Alias: [Basilic](hd_monsters_basilic.md)
@@ -5904,7 +5904,7 @@ SubItems:
- - CEO: [Bec de hache](hd_monsters_bec_de_hache.md)
+ - Alias: [Bec de hache](hd_monsters_bec_de_hache.md)
@@ -6045,7 +6045,7 @@ SubItems:
- - CEO: [Belette](hd_monsters_belette.md)
+ - Alias: [Belette](hd_monsters_belette.md)
@@ -6204,7 +6204,7 @@ SubItems:
- - CEO: [Belette géante](hd_monsters_belette_geante.md)
+ - Alias: [Belette géante](hd_monsters_belette_geante.md)
@@ -6362,7 +6362,7 @@ SubItems:
- - CEO: [Berserker](hd_monsters_berserker.md)
+ - Alias: [Berserker](hd_monsters_berserker.md)
@@ -6514,7 +6514,7 @@ SubItems:
- - CEO: [Blaireau](hd_monsters_blaireau.md)
+ - Alias: [Blaireau](hd_monsters_blaireau.md)
@@ -6666,7 +6666,7 @@ SubItems:
- - CEO: [Blaireau géant](hd_monsters_blaireau_geant.md)
+ - Alias: [Blaireau géant](hd_monsters_blaireau_geant.md)
@@ -6839,7 +6839,7 @@ SubItems:
- - CEO: [Blême](monsters_hd.md#blême)
+ - Alias: [Blême](monsters_hd.md#blême)
@@ -7028,7 +7028,7 @@ SubItems:
- - CEO: [Bulette](hd_monsters_bulette.md)
+ - Alias: [Bulette](hd_monsters_bulette.md)
@@ -7194,7 +7194,7 @@ SubItems:
- - CEO: [Béhir](hd_monsters_behir.md)
+ - Alias: [Béhir](hd_monsters_behir.md)
@@ -7376,7 +7376,7 @@ SubItems:
- - CEO: [Centaure](hd_monsters_centaure.md)
+ - Alias: [Centaure](hd_monsters_centaure.md)
@@ -7558,7 +7558,7 @@ SubItems:
- - CEO: [Chacal](hd_monsters_chacal.md)
+ - Alias: [Chacal](hd_monsters_chacal.md)
@@ -7715,7 +7715,7 @@ SubItems:
- - CEO: [Chameau](hd_monsters_chameau.md)
+ - Alias: [Chameau](hd_monsters_chameau.md)
@@ -7849,7 +7849,7 @@ SubItems:
- - CEO: [Chat](hd_monsters_chat.md)
+ - Alias: [Chat](hd_monsters_chat.md)
@@ -8000,7 +8000,7 @@ SubItems:
- - CEO: [Chauve-souris](hd_monsters_chauve_souris.md)
+ - Alias: [Chauve-souris](hd_monsters_chauve_souris.md)
@@ -8151,7 +8151,7 @@ SubItems:
- - CEO: [Chauve-souris géante](hd_monsters_chauve_souris_geante.md)
+ - Alias: [Chauve-souris géante](hd_monsters_chauve_souris_geante.md)
@@ -8302,7 +8302,7 @@ SubItems:
- - CEO: [Cheval de guerre](hd_monsters_cheval_de_guerre.md)
+ - Alias: [Cheval de guerre](hd_monsters_cheval_de_guerre.md)
@@ -8447,7 +8447,7 @@ SubItems:
- - CEO: [Cheval de selle](hd_monsters_cheval_de_selle.md)
+ - Alias: [Cheval de selle](hd_monsters_cheval_de_selle.md)
@@ -8580,7 +8580,7 @@ SubItems:
- - CEO: [Cheval de trait](hd_monsters_cheval_de_trait.md)
+ - Alias: [Cheval de trait](hd_monsters_cheval_de_trait.md)
@@ -8714,7 +8714,7 @@ SubItems:
- - CEO: [Chevalier](hd_monsters_chevalier.md)
+ - Alias: [Chevalier](hd_monsters_chevalier.md)
@@ -8901,7 +8901,7 @@ SubItems:
- - CEO: [Chevreuil](hd_monsters_chevreuil.md)
+ - Alias: [Chevreuil](hd_monsters_chevreuil.md)
@@ -9035,7 +9035,7 @@ SubItems:
- - CEO: [Chien du trépas](hd_monsters_chien_du_trepas.md)
+ - Alias: [Chien du trépas](hd_monsters_chien_du_trepas.md)
@@ -9193,7 +9193,7 @@ SubItems:
- - CEO: [Chien esquiveur](hd_monsters_chien_esquiveur.md)
+ - Alias: [Chien esquiveur](hd_monsters_chien_esquiveur.md)
@@ -9351,7 +9351,7 @@ SubItems:
- - CEO: [Chimère](hd_monsters_chimere.md)
+ - Alias: [Chimère](hd_monsters_chimere.md)
@@ -9527,7 +9527,7 @@ SubItems:
- - CEO: [Chouette](hd_monsters_chouette.md)
+ - Alias: [Chouette](hd_monsters_chouette.md)
@@ -9685,7 +9685,7 @@ SubItems:
- - CEO: [Chouette géante](hd_monsters_chouette_geante.md)
+ - Alias: [Chouette géante](hd_monsters_chouette_geante.md)
@@ -9845,7 +9845,7 @@ SubItems:
- - CEO: [Chuul](hd_monsters_chuul.md)
+ - Alias: [Chuul](hd_monsters_chuul.md)
@@ -10026,7 +10026,7 @@ SubItems:
- - CEO: [Chèvre](hd_monsters_chevre.md)
+ - Alias: [Chèvre](hd_monsters_chevre.md)
@@ -10177,7 +10177,7 @@ SubItems:
- - CEO: [Chèvre géante](hd_monsters_chevre_geante.md)
+ - Alias: [Chèvre géante](hd_monsters_chevre_geante.md)
@@ -10328,7 +10328,7 @@ SubItems:
- - CEO: [Cockatrice](hd_monsters_cockatrice.md)
+ - Alias: [Cockatrice](hd_monsters_cockatrice.md)
@@ -10462,7 +10462,7 @@ SubItems:
- - CEO: [Corbeau](hd_monsters_corbeau.md)
+ - Alias: [Corbeau](hd_monsters_corbeau.md)
@@ -10616,7 +10616,7 @@ SubItems:
- - CEO: [Couatl](hd_monsters_couatl.md)
+ - Alias: [Couatl](hd_monsters_couatl.md)
@@ -10828,7 +10828,7 @@ SubItems:
- - CEO: [Crabe](hd_monsters_crabe.md)
+ - Alias: [Crabe](hd_monsters_crabe.md)
@@ -10980,7 +10980,7 @@ SubItems:
- - CEO: [Crabe géant](hd_monsters_crabe_geant.md)
+ - Alias: [Crabe géant](hd_monsters_crabe_geant.md)
@@ -11131,7 +11131,7 @@ SubItems:
- - CEO: [Crapaud géant](hd_monsters_crapaud_geant.md)
+ - Alias: [Crapaud géant](hd_monsters_crapaud_geant.md)
@@ -11289,7 +11289,7 @@ SubItems:
- - CEO: [Criard](hd_monsters_criard.md)
+ - Alias: [Criard](hd_monsters_criard.md)
@@ -11435,7 +11435,7 @@ SubItems:
- - CEO: [Crocodile](hd_monsters_crocodile.md)
+ - Alias: [Crocodile](hd_monsters_crocodile.md)
@@ -11587,7 +11587,7 @@ SubItems:
- - CEO: [Crocodile géant](hd_monsters_crocodile_geant.md)
+ - Alias: [Crocodile géant](hd_monsters_crocodile_geant.md)
@@ -11757,7 +11757,7 @@ SubItems:
- - CEO: [Cube gélatineux](hd_monsters_cube_gelatineux.md)
+ - Alias: [Cube gélatineux](hd_monsters_cube_gelatineux.md)
@@ -11921,7 +11921,7 @@ SubItems:
- - CEO: [Destrier noir](hd_monsters_destrier_noir.md)
+ - Alias: [Destrier noir](hd_monsters_destrier_noir.md)
@@ -12089,7 +12089,7 @@ SubItems:
- - CEO: [Diable barbelé](hd_monsters_diable_barbele.md)
+ - Alias: [Diable barbelé](hd_monsters_diable_barbele.md)
@@ -12310,7 +12310,7 @@ SubItems:
- - CEO: [Diable barbu](hd_monsters_diable_barbu.md)
+ - Alias: [Diable barbu](hd_monsters_diable_barbu.md)
@@ -12513,7 +12513,7 @@ SubItems:
- - CEO: [Diable cornu](hd_monsters_diable_cornu.md)
+ - Alias: [Diable cornu](hd_monsters_diable_cornu.md)
@@ -12722,7 +12722,7 @@ SubItems:
- - CEO: [Diable des chaînes](hd_monsters_diable_des_chaines.md)
+ - Alias: [Diable des chaînes](hd_monsters_diable_des_chaines.md)
@@ -12925,7 +12925,7 @@ SubItems:
- - CEO: [Diable gelé](hd_monsters_diable_gele.md)
+ - Alias: [Diable gelé](hd_monsters_diable_gele.md)
@@ -13141,7 +13141,7 @@ SubItems:
- - CEO: [Diable osseux](hd_monsters_diable_osseux.md)
+ - Alias: [Diable osseux](hd_monsters_diable_osseux.md)
@@ -13344,7 +13344,7 @@ SubItems:
- - CEO: [Diablotin](hd_monsters_diablotin.md)
+ - Alias: [Diablotin](hd_monsters_diablotin.md)
@@ -13535,7 +13535,7 @@ SubItems:
- - CEO: [Diantrefosse](hd_monsters_diantrefosse.md)
+ - Alias: [Diantrefosse](hd_monsters_diantrefosse.md)
@@ -13778,7 +13778,7 @@ SubItems:
- - CEO: [Djinn](hd_monsters_djinn.md)
+ - Alias: [Djinn](hd_monsters_djinn.md)
@@ -13973,7 +13973,7 @@ SubItems:
- - CEO: [Doppleganger](hd_monsters_doppleganger.md)
+ - Alias: [Doppleganger](hd_monsters_doppleganger.md)
@@ -14157,7 +14157,7 @@ SubItems:
- - CEO: [Dragon blanc adulte](hd_monsters_dragon_blanc_adulte.md)
+ - Alias: [Dragon blanc adulte](hd_monsters_dragon_blanc_adulte.md)
@@ -14401,7 +14401,7 @@ SubItems:
- - CEO: [Dragon blanc vénérable](hd_monsters_dragon_blanc_venerable.md)
+ - Alias: [Dragon blanc vénérable](hd_monsters_dragon_blanc_venerable.md)
@@ -14645,7 +14645,7 @@ SubItems:
- - CEO: [Jeune dragon blanc](hd_monsters_jeune_dragon_blanc.md)
+ - Alias: [Jeune dragon blanc](hd_monsters_jeune_dragon_blanc.md)
@@ -14835,7 +14835,7 @@ SubItems:
- - CEO: [Dragonnet blanc](hd_monsters_dragonnet_blanc.md)
+ - Alias: [Dragonnet blanc](hd_monsters_dragonnet_blanc.md)
@@ -14995,7 +14995,7 @@ SubItems:
- - CEO: [Dragon bleu adulte](hd_monsters_dragon_bleu_adulte.md)
+ - Alias: [Dragon bleu adulte](hd_monsters_dragon_bleu_adulte.md)
@@ -15233,7 +15233,7 @@ SubItems:
- - CEO: [Dragon bleu vénérable](hd_monsters_dragon_bleu_venerable.md)
+ - Alias: [Dragon bleu vénérable](hd_monsters_dragon_bleu_venerable.md)
@@ -15471,7 +15471,7 @@ SubItems:
- - CEO: [Jeune dragon bleu](hd_monsters_jeune_dragon_bleu.md)
+ - Alias: [Jeune dragon bleu](hd_monsters_jeune_dragon_bleu.md)
@@ -15649,7 +15649,7 @@ SubItems:
- - CEO: [Dragonnet bleu](hd_monsters_dragonnet_bleu.md)
+ - Alias: [Dragonnet bleu](hd_monsters_dragonnet_bleu.md)
@@ -15809,7 +15809,7 @@ SubItems:
- - CEO: [Dragon d'airain adulte](hd_monsters_dragon_dairain_adulte.md)
+ - Alias: [Dragon d'airain adulte](hd_monsters_dragon_dairain_adulte.md)
@@ -16059,7 +16059,7 @@ SubItems:
- - CEO: [Dragon d'airain vénérable](hd_monsters_dragon_dairain_venerable.md)
+ - Alias: [Dragon d'airain vénérable](hd_monsters_dragon_dairain_venerable.md)
@@ -16315,7 +16315,7 @@ SubItems:
- - CEO: [Jeune dragon d'airain](hd_monsters_jeune_dragon_dairain.md)
+ - Alias: [Jeune dragon d'airain](hd_monsters_jeune_dragon_dairain.md)
@@ -16505,7 +16505,7 @@ SubItems:
- - CEO: [Dragonnet d'airain](hd_monsters_dragonnet_dairain.md)
+ - Alias: [Dragonnet d'airain](hd_monsters_dragonnet_dairain.md)
@@ -16677,7 +16677,7 @@ SubItems:
- - CEO: [Dragon d'argent adulte](hd_monsters_dragon_dargent_adulte.md)
+ - Alias: [Dragon d'argent adulte](hd_monsters_dragon_dargent_adulte.md)
@@ -16933,7 +16933,7 @@ SubItems:
- - CEO: [Dragon d'argent vénérable](hd_monsters_dragon_dargent_venerable.md)
+ - Alias: [Dragon d'argent vénérable](hd_monsters_dragon_dargent_venerable.md)
@@ -17189,7 +17189,7 @@ SubItems:
- - CEO: [Jeune dragon d'argent](hd_monsters_jeune_dragon_dargent.md)
+ - Alias: [Jeune dragon d'argent](hd_monsters_jeune_dragon_dargent.md)
@@ -17379,7 +17379,7 @@ SubItems:
- - CEO: [Dragonnet d'argent](hd_monsters_dragonnet_dargent.md)
+ - Alias: [Dragonnet d'argent](hd_monsters_dragonnet_dargent.md)
@@ -17551,7 +17551,7 @@ SubItems:
- - CEO: [Dragon d'or adulte](hd_monsters_dragon_dor_adulte.md)
+ - Alias: [Dragon d'or adulte](hd_monsters_dragon_dor_adulte.md)
@@ -17813,7 +17813,7 @@ SubItems:
- - CEO: [Dragon d'or vénérable](hd_monsters_dragon_dor_venerable.md)
+ - Alias: [Dragon d'or vénérable](hd_monsters_dragon_dor_venerable.md)
@@ -18075,7 +18075,7 @@ SubItems:
- - CEO: [Jeune dragon d'or](hd_monsters_jeune_dragon_dor.md)
+ - Alias: [Jeune dragon d'or](hd_monsters_jeune_dragon_dor.md)
@@ -18277,7 +18277,7 @@ SubItems:
- - CEO: [Dragonnet d'or](hd_monsters_dragonnet_dor.md)
+ - Alias: [Dragonnet d'or](hd_monsters_dragonnet_dor.md)
@@ -18461,7 +18461,7 @@ SubItems:
- - CEO: [Dragon de bronze adulte](hd_monsters_dragon_de_bronze_adulte.md)
+ - Alias: [Dragon de bronze adulte](hd_monsters_dragon_de_bronze_adulte.md)
@@ -18723,7 +18723,7 @@ SubItems:
- - CEO: [Dragon de bronze vénérable](hd_monsters_dragon_de_bronze_venerable.md)
+ - Alias: [Dragon de bronze vénérable](hd_monsters_dragon_de_bronze_venerable.md)
@@ -18985,7 +18985,7 @@ SubItems:
- - CEO: [Jeune dragon de bronze](hd_monsters_jeune_dragon_de_bronze.md)
+ - Alias: [Jeune dragon de bronze](hd_monsters_jeune_dragon_de_bronze.md)
@@ -19187,7 +19187,7 @@ SubItems:
- - CEO: [Dragonnet de bronze](hd_monsters_dragonnet_de_bronze.md)
+ - Alias: [Dragonnet de bronze](hd_monsters_dragonnet_de_bronze.md)
@@ -19371,7 +19371,7 @@ SubItems:
- - CEO: [Dragon de cuivre adulte](hd_monsters_dragon_de_cuivre_adulte.md)
+ - Alias: [Dragon de cuivre adulte](hd_monsters_dragon_de_cuivre_adulte.md)
@@ -19621,7 +19621,7 @@ SubItems:
- - CEO: [Dragon de cuivre vénérable](hd_monsters_dragon_de_cuivre_venerable.md)
+ - Alias: [Dragon de cuivre vénérable](hd_monsters_dragon_de_cuivre_venerable.md)
@@ -19877,7 +19877,7 @@ SubItems:
- - CEO: [Jeune dragon de cuivre](hd_monsters_jeune_dragon_de_cuivre.md)
+ - Alias: [Jeune dragon de cuivre](hd_monsters_jeune_dragon_de_cuivre.md)
@@ -20067,7 +20067,7 @@ SubItems:
- - CEO: [Dragonnet de cuivre](hd_monsters_dragonnet_de_cuivre.md)
+ - Alias: [Dragonnet de cuivre](hd_monsters_dragonnet_de_cuivre.md)
@@ -20239,7 +20239,7 @@ SubItems:
- - CEO: [Dragon noir adulte](hd_monsters_dragon_noir_adulte.md)
+ - Alias: [Dragon noir adulte](hd_monsters_dragon_noir_adulte.md)
@@ -20483,7 +20483,7 @@ SubItems:
- - CEO: [Dragon noir vénérable](hd_monsters_dragon_noir_venerable.md)
+ - Alias: [Dragon noir vénérable](hd_monsters_dragon_noir_venerable.md)
@@ -20727,7 +20727,7 @@ SubItems:
- - CEO: [Jeune dragon noir](hd_monsters_jeune_dragon_noir.md)
+ - Alias: [Jeune dragon noir](hd_monsters_jeune_dragon_noir.md)
@@ -20917,7 +20917,7 @@ SubItems:
- - CEO: [Dragonnet noir](hd_monsters_dragonnet_noir.md)
+ - Alias: [Dragonnet noir](hd_monsters_dragonnet_noir.md)
@@ -21089,7 +21089,7 @@ SubItems:
- - CEO: [Dragon rouge adulte](hd_monsters_dragon_rouge_adulte.md)
+ - Alias: [Dragon rouge adulte](hd_monsters_dragon_rouge_adulte.md)
@@ -21327,7 +21327,7 @@ SubItems:
- - CEO: [Dragon rouge vénérable](hd_monsters_dragon_rouge_venerable.md)
+ - Alias: [Dragon rouge vénérable](hd_monsters_dragon_rouge_venerable.md)
@@ -21565,7 +21565,7 @@ SubItems:
- - CEO: [Jeune dragon rouge](hd_monsters_jeune_dragon_rouge.md)
+ - Alias: [Jeune dragon rouge](hd_monsters_jeune_dragon_rouge.md)
@@ -21743,7 +21743,7 @@ SubItems:
- - CEO: [Dragonnet rouge](hd_monsters_dragonnet_rouge.md)
+ - Alias: [Dragonnet rouge](hd_monsters_dragonnet_rouge.md)
@@ -21904,7 +21904,7 @@ SubItems:
- - CEO: [Dragon vert adulte](hd_monsters_dragon_vert_adulte.md)
+ - Alias: [Dragon vert adulte](hd_monsters_dragon_vert_adulte.md)
@@ -22155,7 +22155,7 @@ SubItems:
- - CEO: [Dragon vert vénérable](hd_monsters_dragon_vert_venerable.md)
+ - Alias: [Dragon vert vénérable](hd_monsters_dragon_vert_venerable.md)
@@ -22406,7 +22406,7 @@ SubItems:
- - CEO: [Jeune dragon vert](hd_monsters_jeune_dragon_vert.md)
+ - Alias: [Jeune dragon vert](hd_monsters_jeune_dragon_vert.md)
@@ -22603,7 +22603,7 @@ SubItems:
- - CEO: [Dragonnet vert](hd_monsters_dragonnet_vert.md)
+ - Alias: [Dragonnet vert](hd_monsters_dragonnet_vert.md)
@@ -22780,7 +22780,7 @@ SubItems:
- - CEO: [Dragon-tortue](hd_monsters_dragon_tortue.md)
+ - Alias: [Dragon-tortue](hd_monsters_dragon_tortue.md)
@@ -22976,7 +22976,7 @@ SubItems:
- - CEO: [Dretch](hd_monsters_dretch.md)
+ - Alias: [Dretch](hd_monsters_dretch.md)
@@ -23152,7 +23152,7 @@ SubItems:
- - CEO: [Drider](hd_monsters_drider.md)
+ - Alias: [Drider](hd_monsters_drider.md)
@@ -23370,7 +23370,7 @@ SubItems:
- - CEO: [Drow](hd_monsters_drow.md)
+ - Alias: [Drow](hd_monsters_drow.md)
@@ -23558,7 +23558,7 @@ SubItems:
- - CEO: [Druide](hd_monsters_druide.md)
+ - Alias: [Druide](hd_monsters_druide.md)
@@ -23728,7 +23728,7 @@ SubItems:
- - CEO: [Dryade](hd_monsters_dryade.md)
+ - Alias: [Dryade](hd_monsters_dryade.md)
@@ -23922,7 +23922,7 @@ SubItems:
- - CEO: [Duergar](hd_monsters_duergar.md)
+ - Alias: [Duergar](hd_monsters_duergar.md)
@@ -24107,7 +24107,7 @@ SubItems:
- - CEO: [Déva](hd_monsters_deva.md)
+ - Alias: [Déva](hd_monsters_deva.md)
@@ -24319,7 +24319,7 @@ SubItems:
- - CEO: [Ecclésiastique](hd_monsters_ecclesiastique.md)
+ - Alias: [Ecclésiastique](hd_monsters_ecclesiastique.md)
@@ -24501,7 +24501,7 @@ SubItems:
- - CEO: [Enlaceur](hd_monsters_enlaceur.md)
+ - Alias: [Enlaceur](hd_monsters_enlaceur.md)
@@ -24689,7 +24689,7 @@ SubItems:
- - CEO: [Espion](hd_monsters_espion.md)
+ - Alias: [Espion](hd_monsters_espion.md)
@@ -24865,7 +24865,7 @@ SubItems:
- - CEO: [Esprit follet](hd_monsters_esprit_follet.md)
+ - Alias: [Esprit follet](hd_monsters_esprit_follet.md)
@@ -25029,7 +25029,7 @@ SubItems:
- - CEO: [Ettercap](hd_monsters_ettercap.md)
+ - Alias: [Ettercap](hd_monsters_ettercap.md)
@@ -25223,7 +25223,7 @@ SubItems:
- - CEO: [Ettin](hd_monsters_ettin.md)
+ - Alias: [Ettin](hd_monsters_ettin.md)
@@ -25399,7 +25399,7 @@ SubItems:
- - CEO: [Fanatique de secte](hd_monsters_fanatique_de_secte.md)
+ - Alias: [Fanatique de secte](hd_monsters_fanatique_de_secte.md)
@@ -25583,7 +25583,7 @@ SubItems:
- - CEO: [Fantôme](hd_monsters_fantome.md)
+ - Alias: [Fantôme](hd_monsters_fantome.md)
@@ -25771,7 +25771,7 @@ SubItems:
- - CEO: [Faucon](hd_monsters_faucon.md)
+ - Alias: [Faucon](hd_monsters_faucon.md)
@@ -25923,7 +25923,7 @@ SubItems:
- - CEO: [Faucon de sang](hd_monsters_faucon_de_sang.md)
+ - Alias: [Faucon de sang](hd_monsters_faucon_de_sang.md)
@@ -26083,7 +26083,7 @@ SubItems:
- - CEO: [Feu follet](hd_monsters_feu_follet.md)
+ - Alias: [Feu follet](hd_monsters_feu_follet.md)
@@ -26271,7 +26271,7 @@ SubItems:
- - CEO: [Garde](hd_monsters_garde.md)
+ - Alias: [Garde](hd_monsters_garde.md)
@@ -26412,7 +26412,7 @@ SubItems:
- - CEO: [Garde animé](hd_monsters_garde_anime.md)
+ - Alias: [Garde animé](hd_monsters_garde_anime.md)
@@ -26602,7 +26602,7 @@ SubItems:
- - CEO: [Gargouille](hd_monsters_gargouille.md)
+ - Alias: [Gargouille](hd_monsters_gargouille.md)
@@ -26786,7 +26786,7 @@ SubItems:
- - CEO: [Gelée ocre](hd_monsters_gelee_ocre.md)
+ - Alias: [Gelée ocre](hd_monsters_gelee_ocre.md)
@@ -26971,7 +26971,7 @@ SubItems:
- - CEO: [Glabrezu](hd_monsters_glabrezu.md)
+ - Alias: [Glabrezu](hd_monsters_glabrezu.md)
@@ -27178,7 +27178,7 @@ SubItems:
- - CEO: [Gladiateur](hd_monsters_gladiateur.md)
+ - Alias: [Gladiateur](hd_monsters_gladiateur.md)
@@ -27371,7 +27371,7 @@ SubItems:
- - CEO: [Gnoll](hd_monsters_gnoll.md)
+ - Alias: [Gnoll](hd_monsters_gnoll.md)
@@ -27541,7 +27541,7 @@ SubItems:
- - CEO: [Gnome des profondeurs (svirfneblin)](hd_monsters_gnome_des_profondeurs_svirfneblin.md)
+ - Alias: [Gnome des profondeurs (svirfneblin)](hd_monsters_gnome_des_profondeurs_svirfneblin.md)
@@ -27729,7 +27729,7 @@ SubItems:
- - CEO: [Gobelin](hd_monsters_gobelin.md)
+ - Alias: [Gobelin](hd_monsters_gobelin.md)
@@ -27893,7 +27893,7 @@ SubItems:
- - CEO: [Gobelours](hd_monsters_gobelours.md)
+ - Alias: [Gobelours](hd_monsters_gobelours.md)
@@ -28064,7 +28064,7 @@ SubItems:
- - CEO: [Golem d'argile](hd_monsters_golem_dargile.md)
+ - Alias: [Golem d'argile](hd_monsters_golem_dargile.md)
@@ -28259,7 +28259,7 @@ SubItems:
- - CEO: [Golem de chair](hd_monsters_golem_de_chair.md)
+ - Alias: [Golem de chair](hd_monsters_golem_de_chair.md)
@@ -28454,7 +28454,7 @@ SubItems:
- - CEO: [Golem de fer](hd_monsters_golem_de_fer.md)
+ - Alias: [Golem de fer](hd_monsters_golem_de_fer.md)
@@ -28655,7 +28655,7 @@ SubItems:
- - CEO: [Golem de pierre](hd_monsters_golem_de_pierre.md)
+ - Alias: [Golem de pierre](hd_monsters_golem_de_pierre.md)
@@ -28838,7 +28838,7 @@ SubItems:
- - CEO: [Gorgone](hd_monsters_gorgone.md)
+ - Alias: [Gorgone](hd_monsters_gorgone.md)
@@ -29015,7 +29015,7 @@ SubItems:
- - CEO: [Goule](hd_monsters_goule.md)
+ - Alias: [Goule](hd_monsters_goule.md)
@@ -29173,7 +29173,7 @@ SubItems:
- - CEO: [Grand singe](hd_monsters_grand_singe.md)
+ - Alias: [Grand singe](hd_monsters_grand_singe.md)
@@ -29330,7 +29330,7 @@ SubItems:
- - CEO: [Grenouille](hd_monsters_grenouille.md)
+ - Alias: [Grenouille](hd_monsters_grenouille.md)
@@ -29470,7 +29470,7 @@ SubItems:
- - CEO: [Grenouille géante](hd_monsters_grenouille_geante.md)
+ - Alias: [Grenouille géante](hd_monsters_grenouille_geante.md)
@@ -29634,7 +29634,7 @@ SubItems:
- - CEO: [Grick](hd_monsters_grick.md)
+ - Alias: [Grick](hd_monsters_grick.md)
@@ -29804,7 +29804,7 @@ SubItems:
- - CEO: [Griffon](hd_monsters_griffon.md)
+ - Alias: [Griffon](hd_monsters_griffon.md)
@@ -29973,7 +29973,7 @@ SubItems:
- - CEO: [Guenaude aquatique](hd_monsters_guenaude_aquatique.md)
+ - Alias: [Guenaude aquatique](hd_monsters_guenaude_aquatique.md)
@@ -30139,7 +30139,7 @@ SubItems:
- - CEO: [Guenaude nocturne](hd_monsters_guenaude_nocturne.md)
+ - Alias: [Guenaude nocturne](hd_monsters_guenaude_nocturne.md)
@@ -30339,7 +30339,7 @@ SubItems:
- - CEO: [Guenaude verte](hd_monsters_guenaude_verte.md)
+ - Alias: [Guenaude verte](hd_monsters_guenaude_verte.md)
@@ -30520,7 +30520,7 @@ SubItems:
- - CEO: [Guerrier tribal](hd_monsters_guerrier_tribal.md)
+ - Alias: [Guerrier tribal](hd_monsters_guerrier_tribal.md)
@@ -30665,7 +30665,7 @@ SubItems:
- - CEO: [Guêpe géante](hd_monsters_guepe_geante.md)
+ - Alias: [Guêpe géante](hd_monsters_guepe_geante.md)
@@ -30802,7 +30802,7 @@ SubItems:
- - CEO: [Gynosphinx](hd_monsters_gynosphinx.md)
+ - Alias: [Gynosphinx](hd_monsters_gynosphinx.md)
@@ -31056,7 +31056,7 @@ SubItems:
- - CEO: [Géant des collines](hd_monsters_geant_des_collines.md)
+ - Alias: [Géant des collines](hd_monsters_geant_des_collines.md)
@@ -31215,7 +31215,7 @@ SubItems:
- - CEO: [Géant des nuages](hd_monsters_geant_des_nuages.md)
+ - Alias: [Géant des nuages](hd_monsters_geant_des_nuages.md)
@@ -31416,7 +31416,7 @@ SubItems:
- - CEO: [Géant des pierres](hd_monsters_geant_des_pierres.md)
+ - Alias: [Géant des pierres](hd_monsters_geant_des_pierres.md)
@@ -31601,7 +31601,7 @@ SubItems:
- - CEO: [Géant des tempêtes](hd_monsters_geant_des_tempetes.md)
+ - Alias: [Géant des tempêtes](hd_monsters_geant_des_tempetes.md)
@@ -31815,7 +31815,7 @@ SubItems:
- - CEO: [Géant du feu](hd_monsters_geant_du_feu.md)
+ - Alias: [Géant du feu](hd_monsters_geant_du_feu.md)
@@ -31987,7 +31987,7 @@ SubItems:
- - CEO: [Géant du givre](hd_monsters_geant_du_givre.md)
+ - Alias: [Géant du givre](hd_monsters_geant_du_givre.md)
@@ -32156,7 +32156,7 @@ SubItems:
- - CEO: [Harpie](hd_monsters_harpie.md)
+ - Alias: [Harpie](hd_monsters_harpie.md)
@@ -32317,7 +32317,7 @@ SubItems:
- - CEO: [Hezrou](hd_monsters_hezrou.md)
+ - Alias: [Hezrou](hd_monsters_hezrou.md)
@@ -32511,7 +32511,7 @@ SubItems:
- - CEO: [Hibours](hd_monsters_hibours.md)
+ - Alias: [Hibours](hd_monsters_hibours.md)
@@ -32679,7 +32679,7 @@ SubItems:
- - CEO: [Hippocampe](hd_monsters_hippocampe.md)
+ - Alias: [Hippocampe](hd_monsters_hippocampe.md)
@@ -32806,7 +32806,7 @@ SubItems:
- - CEO: [Hippocampe géant](hd_monsters_hippocampe_geant.md)
+ - Alias: [Hippocampe géant](hd_monsters_hippocampe_geant.md)
@@ -32958,7 +32958,7 @@ SubItems:
- - CEO: [Hippogriffe](hd_monsters_hippogriffe.md)
+ - Alias: [Hippogriffe](hd_monsters_hippogriffe.md)
@@ -33127,7 +33127,7 @@ SubItems:
- - CEO: [Hobgobelin](hd_monsters_hobgobelin.md)
+ - Alias: [Hobgobelin](hd_monsters_hobgobelin.md)
@@ -33285,7 +33285,7 @@ SubItems:
- - CEO: [Homme-lézard](hd_monsters_homme_lezard.md)
+ - Alias: [Homme-lézard](hd_monsters_homme_lezard.md)
@@ -33479,7 +33479,7 @@ SubItems:
- - CEO: [Homme-poisson](hd_monsters_homme_poisson.md)
+ - Alias: [Homme-poisson](hd_monsters_homme_poisson.md)
@@ -33632,7 +33632,7 @@ SubItems:
- - CEO: [Homoncule](hd_monsters_homoncule.md)
+ - Alias: [Homoncule](hd_monsters_homoncule.md)
@@ -33790,7 +33790,7 @@ SubItems:
- - CEO: [Hydre](hd_monsters_hydre.md)
+ - Alias: [Hydre](hd_monsters_hydre.md)
@@ -33966,7 +33966,7 @@ SubItems:
- - CEO: [Hyène](hd_monsters_hyene.md)
+ - Alias: [Hyène](hd_monsters_hyene.md)
@@ -34118,7 +34118,7 @@ SubItems:
- - CEO: [Hyène géante](hd_monsters_hyene_geante.md)
+ - Alias: [Hyène géante](hd_monsters_hyene_geante.md)
@@ -34269,7 +34269,7 @@ SubItems:
- - CEO: [Kobold](hd_monsters_kobold.md)
+ - Alias: [Kobold](hd_monsters_kobold.md)
@@ -34435,7 +34435,7 @@ SubItems:
- - CEO: [Kraken](hd_monsters_kraken.md)
+ - Alias: [Kraken](hd_monsters_kraken.md)
@@ -34671,7 +34671,7 @@ SubItems:
- - CEO: [Lamie](hd_monsters_lamie.md)
+ - Alias: [Lamie](hd_monsters_lamie.md)
@@ -34875,7 +34875,7 @@ SubItems:
- - CEO: [Liche](hd_monsters_liche.md)
+ - Alias: [Liche](hd_monsters_liche.md)
@@ -35166,7 +35166,7 @@ SubItems:
- - CEO: [Licorne](hd_monsters_licorne.md)
+ - Alias: [Licorne](hd_monsters_licorne.md)
@@ -35414,7 +35414,7 @@ SubItems:
- - CEO: [Lion](hd_monsters_lion.md)
+ - Alias: [Lion](hd_monsters_lion.md)
@@ -35596,7 +35596,7 @@ SubItems:
- - CEO: [Loup](hd_monsters_loup.md)
+ - Alias: [Loup](hd_monsters_loup.md)
@@ -35755,7 +35755,7 @@ SubItems:
- - CEO: [Loup arctique](hd_monsters_loup_arctique.md)
+ - Alias: [Loup arctique](hd_monsters_loup_arctique.md)
@@ -35931,7 +35931,7 @@ SubItems:
- - CEO: [Loup sanguinaire](hd_monsters_loup_sanguinaire.md)
+ - Alias: [Loup sanguinaire](hd_monsters_loup_sanguinaire.md)
@@ -36090,7 +36090,7 @@ SubItems:
- - CEO: [Loup-garou](hd_monsters_loup_garou.md)
+ - Alias: [Loup-garou](hd_monsters_loup_garou.md)
@@ -36286,7 +36286,7 @@ SubItems:
- - CEO: [Lémure](hd_monsters_lemure.md)
+ - Alias: [Lémure](hd_monsters_lemure.md)
@@ -36455,7 +36455,7 @@ SubItems:
- - CEO: [Lézard](hd_monsters_lezard.md)
+ - Alias: [Lézard](hd_monsters_lezard.md)
@@ -36588,7 +36588,7 @@ SubItems:
- - CEO: [Lézard géant](hd_monsters_lezard_geant.md)
+ - Alias: [Lézard géant](hd_monsters_lezard_geant.md)
@@ -36723,7 +36723,7 @@ SubItems:
- - CEO: [Mage](hd_monsters_mage.md)
+ - Alias: [Mage](hd_monsters_mage.md)
@@ -36918,7 +36918,7 @@ SubItems:
- - CEO: [Magmatique](hd_monsters_magmatique.md)
+ - Alias: [Magmatique](hd_monsters_magmatique.md)
@@ -37082,7 +37082,7 @@ SubItems:
- - CEO: [Malfrat](hd_monsters_malfrat.md)
+ - Alias: [Malfrat](hd_monsters_malfrat.md)
@@ -37251,7 +37251,7 @@ SubItems:
- - CEO: [Mammouth](hd_monsters_mammouth.md)
+ - Alias: [Mammouth](hd_monsters_mammouth.md)
@@ -37409,7 +37409,7 @@ SubItems:
- - CEO: [Mante obscure](hd_monsters_mante_obscure.md)
+ - Alias: [Mante obscure](hd_monsters_mante_obscure.md)
@@ -37573,7 +37573,7 @@ SubItems:
- - CEO: [Manteleur](hd_monsters_manteleur.md)
+ - Alias: [Manteleur](hd_monsters_manteleur.md)
@@ -37766,7 +37766,7 @@ SubItems:
- - CEO: [Manticore](hd_monsters_manticore.md)
+ - Alias: [Manticore](hd_monsters_manticore.md)
@@ -37945,7 +37945,7 @@ SubItems:
- - CEO: [Marilith](hd_monsters_marilith.md)
+ - Alias: [Marilith](hd_monsters_marilith.md)
@@ -38163,7 +38163,7 @@ SubItems:
- - CEO: [Membre de secte](hd_monsters_membre_de_secte.md)
+ - Alias: [Membre de secte](hd_monsters_membre_de_secte.md)
@@ -38314,7 +38314,7 @@ SubItems:
- - CEO: [Merrow](hd_monsters_merrow.md)
+ - Alias: [Merrow](hd_monsters_merrow.md)
@@ -38489,7 +38489,7 @@ SubItems:
- - CEO: [Mille-pattes géant](hd_monsters_mille_pattes_geant.md)
+ - Alias: [Mille-pattes géant](hd_monsters_mille_pattes_geant.md)
@@ -38625,7 +38625,7 @@ SubItems:
- - CEO: [Mimique](hd_monsters_mimique.md)
+ - Alias: [Mimique](hd_monsters_mimique.md)
@@ -38819,7 +38819,7 @@ SubItems:
- - CEO: [Minotaure](hd_monsters_minotaure.md)
+ - Alias: [Minotaure](hd_monsters_minotaure.md)
@@ -38995,7 +38995,7 @@ SubItems:
- - CEO: [Moisissure violette](hd_monsters_moisissure_violette.md)
+ - Alias: [Moisissure violette](hd_monsters_moisissure_violette.md)
@@ -39153,7 +39153,7 @@ SubItems:
- - CEO: [Mastiff](hd_monsters_mastiff.md)
+ - Alias: [Mastiff](hd_monsters_mastiff.md)
@@ -39306,7 +39306,7 @@ SubItems:
- - CEO: [Molosse infernal](hd_monsters_molosse_infernal.md)
+ - Alias: [Molosse infernal](hd_monsters_molosse_infernal.md)
@@ -39485,7 +39485,7 @@ SubItems:
- - CEO: [Momie](hd_monsters_momie.md)
+ - Alias: [Momie](hd_monsters_momie.md)
@@ -39662,7 +39662,7 @@ SubItems:
- - CEO: [Momie auguste](hd_monsters_momie_auguste.md)
+ - Alias: [Momie auguste](hd_monsters_momie_auguste.md)
@@ -39943,7 +39943,7 @@ SubItems:
- - CEO: [Mule](hd_monsters_mule.md)
+ - Alias: [Mule](hd_monsters_mule.md)
@@ -40095,7 +40095,7 @@ SubItems:
- - CEO: [Méduse](hd_monsters_meduse.md)
+ - Alias: [Méduse](hd_monsters_meduse.md)
@@ -40279,7 +40279,7 @@ SubItems:
- - CEO: [Méphite de glace](hd_monsters_mephite_de_glace.md)
+ - Alias: [Méphite de glace](hd_monsters_mephite_de_glace.md)
@@ -40467,7 +40467,7 @@ SubItems:
- - CEO: [Méphite de magma](hd_monsters_mephite_de_magma.md)
+ - Alias: [Méphite de magma](hd_monsters_mephite_de_magma.md)
@@ -40655,7 +40655,7 @@ SubItems:
- - CEO: [Méphite de poussière](hd_monsters_mephite_de_poussiere.md)
+ - Alias: [Méphite de poussière](hd_monsters_mephite_de_poussiere.md)
@@ -40836,7 +40836,7 @@ SubItems:
- - CEO: [Méphite de vapeur](hd_monsters_mephite_de_vapeur.md)
+ - Alias: [Méphite de vapeur](hd_monsters_mephite_de_vapeur.md)
@@ -41008,7 +41008,7 @@ SubItems:
- - CEO: [Naga corrupteur](hd_monsters_naga_corrupteur.md)
+ - Alias: [Naga corrupteur](hd_monsters_naga_corrupteur.md)
@@ -41216,7 +41216,7 @@ SubItems:
- - CEO: [Naga gardien](hd_monsters_naga_gardien.md)
+ - Alias: [Naga gardien](hd_monsters_naga_gardien.md)
@@ -41443,7 +41443,7 @@ SubItems:
- - CEO: [Nalfeshnie](hd_monsters_nalfeshnie.md)
+ - Alias: [Nalfeshnie](hd_monsters_nalfeshnie.md)
@@ -41643,7 +41643,7 @@ SubItems:
- - CEO: [Noble](hd_monsters_noble.md)
+ - Alias: [Noble](hd_monsters_noble.md)
@@ -41796,7 +41796,7 @@ SubItems:
- - CEO: [Nuée d'insectes](hd_monsters_nuee_dinsectes.md)
+ - Alias: [Nuée d'insectes](hd_monsters_nuee_dinsectes.md)
@@ -41955,7 +41955,7 @@ SubItems:
- - CEO: [Nuée de chauve-souris](hd_monsters_nuee_de_chauve_souris.md)
+ - Alias: [Nuée de chauve-souris](hd_monsters_nuee_de_chauve_souris.md)
@@ -42127,7 +42127,7 @@ SubItems:
- - CEO: [Nuée de corbeaux](hd_monsters_nuee_de_corbeaux.md)
+ - Alias: [Nuée de corbeaux](hd_monsters_nuee_de_corbeaux.md)
@@ -42292,7 +42292,7 @@ SubItems:
- - CEO: [Nuée de piranhas](hd_monsters_nuee_de_piranhas.md)
+ - Alias: [Nuée de piranhas](hd_monsters_nuee_de_piranhas.md)
@@ -42463,7 +42463,7 @@ SubItems:
- - CEO: [Nuée de rats](hd_monsters_nuee_de_rats.md)
+ - Alias: [Nuée de rats](hd_monsters_nuee_de_rats.md)
@@ -42628,7 +42628,7 @@ SubItems:
- - CEO: [Nuée de serpents venimeux](hd_monsters_nuee_de_serpents_venimeux.md)
+ - Alias: [Nuée de serpents venimeux](hd_monsters_nuee_de_serpents_venimeux.md)
@@ -42789,7 +42789,7 @@ SubItems:
- - CEO: [Nécrophage](hd_monsters_necrophage.md)
+ - Alias: [Nécrophage](hd_monsters_necrophage.md)
@@ -42988,7 +42988,7 @@ SubItems:
- - CEO: [Ogre](hd_monsters_ogre.md)
+ - Alias: [Ogre](hd_monsters_ogre.md)
@@ -43137,7 +43137,7 @@ SubItems:
- - CEO: [Ombre](hd_monsters_ombre.md)
+ - Alias: [Ombre](hd_monsters_ombre.md)
@@ -43324,7 +43324,7 @@ SubItems:
- - CEO: [Oni](hd_monsters_oni.md)
+ - Alias: [Oni](hd_monsters_oni.md)
@@ -43530,7 +43530,7 @@ SubItems:
- - CEO: [Orc](hd_monsters_orc.md)
+ - Alias: [Orc](hd_monsters_orc.md)
@@ -43694,7 +43694,7 @@ SubItems:
- - CEO: [Otyugh](hd_monsters_otyugh.md)
+ - Alias: [Otyugh](hd_monsters_otyugh.md)
@@ -43870,7 +43870,7 @@ SubItems:
- - CEO: [Ours brun](hd_monsters_ours_brun.md)
+ - Alias: [Ours brun](hd_monsters_ours_brun.md)
@@ -44040,7 +44040,7 @@ SubItems:
- - CEO: [Ours noir](hd_monsters_ours_noir.md)
+ - Alias: [Ours noir](hd_monsters_ours_noir.md)
@@ -44210,7 +44210,7 @@ SubItems:
- - CEO: [Ours polaire](hd_monsters_ours_polaire.md)
+ - Alias: [Ours polaire](hd_monsters_ours_polaire.md)
@@ -44381,7 +44381,7 @@ SubItems:
- - CEO: [Ours-garou](hd_monsters_ours_garou.md)
+ - Alias: [Ours-garou](hd_monsters_ours_garou.md)
@@ -44574,7 +44574,7 @@ SubItems:
- - CEO: [Oxydeur](hd_monsters_oxydeur.md)
+ - Alias: [Oxydeur](hd_monsters_oxydeur.md)
@@ -44732,7 +44732,7 @@ SubItems:
- - CEO: [Panthère](hd_monsters_panthere.md)
+ - Alias: [Panthère](hd_monsters_panthere.md)
@@ -44902,7 +44902,7 @@ SubItems:
- - CEO: [Pieuvre](hd_monsters_pieuvre.md)
+ - Alias: [Pieuvre](hd_monsters_pieuvre.md)
@@ -45072,7 +45072,7 @@ SubItems:
- - CEO: [Pieuvre géante](hd_monsters_pieuvre_geante.md)
+ - Alias: [Pieuvre géante](hd_monsters_pieuvre_geante.md)
@@ -45241,7 +45241,7 @@ SubItems:
- - CEO: [Piranha](hd_monsters_piranha.md)
+ - Alias: [Piranha](hd_monsters_piranha.md)
@@ -45396,7 +45396,7 @@ SubItems:
- - CEO: [Planétar](hd_monsters_planetar.md)
+ - Alias: [Planétar](hd_monsters_planetar.md)
@@ -45614,7 +45614,7 @@ SubItems:
- - CEO: [Plésiosaure](hd_monsters_plesiosaure.md)
+ - Alias: [Plésiosaure](hd_monsters_plesiosaure.md)
@@ -45765,7 +45765,7 @@ SubItems:
- - CEO: [Poney](hd_monsters_poney.md)
+ - Alias: [Poney](hd_monsters_poney.md)
@@ -45900,7 +45900,7 @@ SubItems:
- - CEO: [Pouding noir](hd_monsters_pouding_noir.md)
+ - Alias: [Pouding noir](hd_monsters_pouding_noir.md)
@@ -46082,7 +46082,7 @@ SubItems:
- - CEO: [Pseudodragon](hd_monsters_pseudodragon.md)
+ - Alias: [Pseudodragon](hd_monsters_pseudodragon.md)
@@ -46257,7 +46257,7 @@ SubItems:
- - CEO: [Punaise de feu géante](hd_monsters_punaise_de_feu_geante.md)
+ - Alias: [Punaise de feu géante](hd_monsters_punaise_de_feu_geante.md)
@@ -46404,7 +46404,7 @@ SubItems:
- - CEO: [Pégase](hd_monsters_pegase.md)
+ - Alias: [Pégase](hd_monsters_pegase.md)
@@ -46553,7 +46553,7 @@ SubItems:
- - CEO: [Quasit](hd_monsters_quasit.md)
+ - Alias: [Quasit](hd_monsters_quasit.md)
@@ -46742,7 +46742,7 @@ SubItems:
- - CEO: [Rakshasa](hd_monsters_rakshasa.md)
+ - Alias: [Rakshasa](hd_monsters_rakshasa.md)
@@ -46933,7 +46933,7 @@ SubItems:
- - CEO: [Rat](hd_monsters_rat.md)
+ - Alias: [Rat](hd_monsters_rat.md)
@@ -47078,7 +47078,7 @@ SubItems:
- - CEO: [Rat géant](hd_monsters_rat_geant.md)
+ - Alias: [Rat géant](hd_monsters_rat_geant.md)
@@ -47231,7 +47231,7 @@ SubItems:
- - CEO: [Rat-garou](hd_monsters_rat_garou.md)
+ - Alias: [Rat-garou](hd_monsters_rat_garou.md)
@@ -47425,7 +47425,7 @@ SubItems:
- - CEO: [Requin de récif](hd_monsters_requin_de_recif.md)
+ - Alias: [Requin de récif](hd_monsters_requin_de_recif.md)
@@ -47583,7 +47583,7 @@ SubItems:
- - CEO: [Requin géant](hd_monsters_requin_geant.md)
+ - Alias: [Requin géant](hd_monsters_requin_geant.md)
@@ -47741,7 +47741,7 @@ SubItems:
- - CEO: [Requin chasseur](hd_monsters_requin_chasseur.md)
+ - Alias: [Requin chasseur](hd_monsters_requin_chasseur.md)
@@ -47898,7 +47898,7 @@ SubItems:
- - CEO: [Rhinocéros](hd_monsters_rhinoceros.md)
+ - Alias: [Rhinocéros](hd_monsters_rhinoceros.md)
@@ -48045,7 +48045,7 @@ SubItems:
- - CEO: [Roc](hd_monsters_roc.md)
+ - Alias: [Roc](hd_monsters_roc.md)
@@ -48220,7 +48220,7 @@ SubItems:
- - CEO: [Roturier](hd_monsters_roturier.md)
+ - Alias: [Roturier](hd_monsters_roturier.md)
@@ -48354,7 +48354,7 @@ SubItems:
- - CEO: [Remorhaz](hd_monsters_remorhaz.md)
+ - Alias: [Remorhaz](hd_monsters_remorhaz.md)
@@ -48512,7 +48512,7 @@ SubItems:
- - CEO: [Sahuagin](hd_monsters_sahuagin.md)
+ - Alias: [Sahuagin](hd_monsters_sahuagin.md)
@@ -48707,7 +48707,7 @@ SubItems:
- - CEO: [Salamandre](hd_monsters_salamandre.md)
+ - Alias: [Salamandre](hd_monsters_salamandre.md)
@@ -48892,7 +48892,7 @@ SubItems:
- - CEO: [Sanglier](hd_monsters_sanglier.md)
+ - Alias: [Sanglier](hd_monsters_sanglier.md)
@@ -49043,7 +49043,7 @@ SubItems:
- - CEO: [Sanglier géant](hd_monsters_sanglier_geant.md)
+ - Alias: [Sanglier géant](hd_monsters_sanglier_geant.md)
@@ -49196,7 +49196,7 @@ SubItems:
- - CEO: [Sanglier-garou](hd_monsters_sanglier_garou.md)
+ - Alias: [Sanglier-garou](hd_monsters_sanglier_garou.md)
@@ -49384,7 +49384,7 @@ SubItems:
- - CEO: [Satyre](hd_monsters_satyre.md)
+ - Alias: [Satyre](hd_monsters_satyre.md)
@@ -49559,7 +49559,7 @@ SubItems:
- - CEO: [Scorpion](hd_monsters_scorpion.md)
+ - Alias: [Scorpion](hd_monsters_scorpion.md)
@@ -49692,7 +49692,7 @@ SubItems:
- - CEO: [Scorpion géant](hd_monsters_scorpion_geant.md)
+ - Alias: [Scorpion géant](hd_monsters_scorpion_geant.md)
@@ -49843,7 +49843,7 @@ SubItems:
- - CEO: [Serpent constricteur](hd_monsters_serpent_constricteur.md)
+ - Alias: [Serpent constricteur](hd_monsters_serpent_constricteur.md)
@@ -49989,7 +49989,7 @@ SubItems:
- - CEO: [Serpent constricteur géant](hd_monsters_serpent_constricteur_geant.md)
+ - Alias: [Serpent constricteur géant](hd_monsters_serpent_constricteur_geant.md)
@@ -50140,7 +50140,7 @@ SubItems:
- - CEO: [Serpent venimeux](hd_monsters_serpent_venimeux.md)
+ - Alias: [Serpent venimeux](hd_monsters_serpent_venimeux.md)
@@ -50274,7 +50274,7 @@ SubItems:
- - CEO: [Serpent venimeux géant](hd_monsters_serpent_venimeux_geant.md)
+ - Alias: [Serpent venimeux géant](hd_monsters_serpent_venimeux_geant.md)
@@ -50413,7 +50413,7 @@ SubItems:
- - CEO: [Serpent volant](hd_monsters_serpent_volant.md)
+ - Alias: [Serpent volant](hd_monsters_serpent_volant.md)
@@ -50559,7 +50559,7 @@ SubItems:
- - CEO: [Singe géant](hd_monsters_singe_geant.md)
+ - Alias: [Singe géant](hd_monsters_singe_geant.md)
@@ -50721,7 +50721,7 @@ SubItems:
- - CEO: [Solar](hd_monsters_solar.md)
+ - Alias: [Solar](hd_monsters_solar.md)
@@ -50995,7 +50995,7 @@ SubItems:
- - CEO: [Spectre](hd_monsters_spectre.md)
+ - Alias: [Spectre](hd_monsters_spectre.md)
@@ -51166,7 +51166,7 @@ SubItems:
- - CEO: [Squelette](hd_monsters_squelette.md)
+ - Alias: [Squelette](hd_monsters_squelette.md)
@@ -51329,7 +51329,7 @@ SubItems:
- - CEO: [Squelette cheval de guerre](hd_monsters_squelette_cheval_de_guerre.md)
+ - Alias: [Squelette cheval de guerre](hd_monsters_squelette_cheval_de_guerre.md)
@@ -51480,7 +51480,7 @@ SubItems:
- - CEO: [Squelette minotaure](hd_monsters_squelette_minotaure.md)
+ - Alias: [Squelette minotaure](hd_monsters_squelette_minotaure.md)
@@ -51653,7 +51653,7 @@ SubItems:
- - CEO: [Strige](hd_monsters_strige.md)
+ - Alias: [Strige](hd_monsters_strige.md)
@@ -51788,7 +51788,7 @@ SubItems:
- - CEO: [Succube/Incube](hd_monsters_succubeincube.md)
+ - Alias: [Succube/Incube](hd_monsters_succubeincube.md)
@@ -51970,7 +51970,7 @@ SubItems:
- - CEO: [Sylvanien](hd_monsters_sylvanien.md)
+ - Alias: [Sylvanien](hd_monsters_sylvanien.md)
@@ -52157,7 +52157,7 @@ SubItems:
- - CEO: [Tapis étrangleur](hd_monsters_tapis_etrangleur.md)
+ - Alias: [Tapis étrangleur](hd_monsters_tapis_etrangleur.md)
@@ -52329,7 +52329,7 @@ SubItems:
- - CEO: [Tarasque](hd_monsters_tarasque.md)
+ - Alias: [Tarasque](hd_monsters_tarasque.md)
@@ -52598,7 +52598,7 @@ SubItems:
- - CEO: [Tertre errant](hd_monsters_tertre_errant.md)
+ - Alias: [Tertre errant](hd_monsters_tertre_errant.md)
@@ -52780,7 +52780,7 @@ SubItems:
- - CEO: [Tigre](hd_monsters_tigre.md)
+ - Alias: [Tigre](hd_monsters_tigre.md)
@@ -52950,7 +52950,7 @@ SubItems:
- - CEO: [Tigre à dents de sabre](hd_monsters_tigre_a_dents_de_sabre.md)
+ - Alias: [Tigre à dents de sabre](hd_monsters_tigre_a_dents_de_sabre.md)
@@ -53121,7 +53121,7 @@ SubItems:
- - CEO: [Tigre-garou](hd_monsters_tigre_garou.md)
+ - Alias: [Tigre-garou](hd_monsters_tigre_garou.md)
@@ -53334,7 +53334,7 @@ SubItems:
- - CEO: [Torve](hd_monsters_torve.md)
+ - Alias: [Torve](hd_monsters_torve.md)
@@ -53507,7 +53507,7 @@ SubItems:
- - CEO: [Traqueur invisible](hd_monsters_traqueur_invisible.md)
+ - Alias: [Traqueur invisible](hd_monsters_traqueur_invisible.md)
@@ -53688,7 +53688,7 @@ SubItems:
- - CEO: [Tricératops](hd_monsters_triceratops.md)
+ - Alias: [Tricératops](hd_monsters_triceratops.md)
@@ -53846,7 +53846,7 @@ SubItems:
- - CEO: [Troll](hd_monsters_troll.md)
+ - Alias: [Troll](hd_monsters_troll.md)
@@ -54022,7 +54022,7 @@ SubItems:
- - CEO: [Tyrannosaure](hd_monsters_tyrannosaure.md)
+ - Alias: [Tyrannosaure](hd_monsters_tyrannosaure.md)
@@ -54182,7 +54182,7 @@ SubItems:
- - CEO: [Vampire](hd_monsters_vampire.md)
+ - Alias: [Vampire](hd_monsters_vampire.md)
@@ -54462,7 +54462,7 @@ SubItems:
- - CEO: [Vampirien](hd_monsters_vampirien.md)
+ - Alias: [Vampirien](hd_monsters_vampirien.md)
@@ -54682,7 +54682,7 @@ SubItems:
- - CEO: [Vase grise](hd_monsters_vase_grise.md)
+ - Alias: [Vase grise](hd_monsters_vase_grise.md)
@@ -54864,7 +54864,7 @@ SubItems:
- - CEO: [Vautour](hd_monsters_vautour.md)
+ - Alias: [Vautour](hd_monsters_vautour.md)
@@ -55022,7 +55022,7 @@ SubItems:
- - CEO: [Vautour géant](hd_monsters_vautour_geant.md)
+ - Alias: [Vautour géant](hd_monsters_vautour_geant.md)
@@ -55198,7 +55198,7 @@ SubItems:
- - CEO: [Ver pourpre](hd_monsters_ver_pourpre.md)
+ - Alias: [Ver pourpre](hd_monsters_ver_pourpre.md)
@@ -55368,7 +55368,7 @@ SubItems:
- - CEO: [Vouivre](hd_monsters_vouivre.md)
+ - Alias: [Vouivre](hd_monsters_vouivre.md)
@@ -55541,7 +55541,7 @@ SubItems:
- - CEO: [Vrock](hd_monsters_vrock.md)
+ - Alias: [Vrock](hd_monsters_vrock.md)
@@ -55747,7 +55747,7 @@ SubItems:
- - CEO: [Vétéran](hd_monsters_veteran.md)
+ - Alias: [Vétéran](hd_monsters_veteran.md)
@@ -55917,7 +55917,7 @@ SubItems:
- - CEO: [Worg](hd_monsters_worg.md)
+ - Alias: [Worg](hd_monsters_worg.md)
@@ -56070,7 +56070,7 @@ SubItems:
- - CEO: [Xorn](hd_monsters_xorn.md)
+ - Alias: [Xorn](hd_monsters_xorn.md)
@@ -56260,7 +56260,7 @@ SubItems:
- - CEO: [Zombi](hd_monsters_zombi.md)
+ - Alias: [Zombi](hd_monsters_zombi.md)
@@ -56426,7 +56426,7 @@ SubItems:
- - CEO: [Zombi ogre](hd_monsters_zombi_ogre.md)
+ - Alias: [Zombi ogre](hd_monsters_zombi_ogre.md)
@@ -56592,7 +56592,7 @@ SubItems:
- - CEO: [Âme en peine](hd_monsters_ame_en_peine.md)
+ - Alias: [Âme en peine](hd_monsters_ame_en_peine.md)
@@ -56768,7 +56768,7 @@ SubItems:
- - CEO: [Éclaireur](hd_monsters_eclaireur.md)
+ - Alias: [Éclaireur](hd_monsters_eclaireur.md)
@@ -56939,7 +56939,7 @@ SubItems:
- - CEO: [Éfrit](hd_monsters_efrit.md)
+ - Alias: [Éfrit](hd_monsters_efrit.md)
@@ -57138,7 +57138,7 @@ SubItems:
- - CEO: [Élan](hd_monsters_elan.md)
+ - Alias: [Élan](hd_monsters_elan.md)
@@ -57296,7 +57296,7 @@ SubItems:
- - CEO: [Élan géant](hd_monsters_elan_geant.md)
+ - Alias: [Élan géant](hd_monsters_elan_geant.md)
@@ -57462,7 +57462,7 @@ SubItems:
- - CEO: [Élémentaire de l'air](hd_monsters_elementaire_de_lair.md)
+ - Alias: [Élémentaire de l'air](hd_monsters_elementaire_de_lair.md)
@@ -57640,7 +57640,7 @@ SubItems:
- - CEO: [Élémentaire de l'eau](hd_monsters_elementaire_de_leau.md)
+ - Alias: [Élémentaire de l'eau](hd_monsters_elementaire_de_leau.md)
@@ -57824,7 +57824,7 @@ SubItems:
- - CEO: [Élémentaire de la terre](hd_monsters_elementaire_de_la_terre.md)
+ - Alias: [Élémentaire de la terre](hd_monsters_elementaire_de_la_terre.md)
@@ -58006,7 +58006,7 @@ SubItems:
- - CEO: [Élémentaire du feu](hd_monsters_elementaire_du_feu.md)
+ - Alias: [Élémentaire du feu](hd_monsters_elementaire_du_feu.md)
@@ -58187,7 +58187,7 @@ SubItems:
- - CEO: [Éléphant](hd_monsters_elephant.md)
+ - Alias: [Éléphant](hd_monsters_elephant.md)
@@ -58345,7 +58345,7 @@ SubItems:
- - CEO: [Épaulard](hd_monsters_epaulard.md)
+ - Alias: [Épaulard](hd_monsters_epaulard.md)
@@ -58511,7 +58511,7 @@ SubItems:
- - CEO: [Épée volante](hd_monsters_epee_volante.md)
+ - Alias: [Épée volante](hd_monsters_epee_volante.md)
@@ -58684,7 +58684,7 @@ SubItems:
- - CEO: [Érinye](hd_monsters_erinye.md)
+ - Alias: [Érinye](hd_monsters_erinye.md)
@@ -58885,7 +58885,7 @@ AttributesDictionary: >+
- - CEO: [Créatures](hd_monsters.md)
+ - Alias: [Créatures](hd_monsters.md)
@@ -58900,7 +58900,7 @@ AttributesDictionary: >+
# Aboleth
-- CEO: [Aboleth](hd_monsters_aboleth.md)
+- Alias: [Aboleth](hd_monsters_aboleth.md)
- Source: (SRD p261)
- Large aberration, lawful evil
- **Armor Class** 17 (natural armor)
@@ -59406,7 +59406,7 @@ The aboleth can take 3 legendary actions, choosing from the options below. Only
# Acolyte
-- CEO: [Acolyte](hd_monsters_acolyte.md)
+- Alias: [Acolyte](hd_monsters_acolyte.md)
- Source: (SRD p395)
- Medium humanoid (any race), any alignment
- **Armor Class** 10
@@ -59442,7 +59442,7 @@ _Hit_: 2 (1d4) bludgeoning damage.
# Eagle
-- CEO: [Aigle](hd_monsters_aigle.md)
+- Alias: [Aigle](hd_monsters_aigle.md)
- Source: (SRD p371)
- Small beast, unaligned
- **Armor Class** 12
@@ -59474,7 +59474,7 @@ _Hit_: 4 (1d4 + 2) slashing damage.
# Giant Eagle
-- CEO: [Aigle géant](hd_monsters_aigle_geant.md)
+- Alias: [Aigle géant](hd_monsters_aigle_geant.md)
- Source: (SRD p375)
- Large beast, neutral good
- **Armor Class** 13
@@ -59512,7 +59512,7 @@ _Hit_: 10 (2d6 + 3) slashing damage.
# Androsphinx
-- CEO: [Androsphinx](hd_monsters_androsphinx.md)
+- Alias: [Androsphinx](hd_monsters_androsphinx.md)
- Source: (SRD p347)
- Large monstrosity, lawful neutral
- **Armor Class** 17 (natural armor)
@@ -59585,7 +59585,7 @@ The sphinx can take 3 legendary actions, choosing from the options below. Only o
# Ankheg
-- CEO: [Ankheg](hd_monsters_ankheg.md)
+- Alias: [Ankheg](hd_monsters_ankheg.md)
- Source: (SRD p264)
- Large monstrosity, unaligned
- **Armor Class** 14 (natural armor), 11 while prone
@@ -59614,7 +59614,7 @@ _Hit_: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a
# Spider
-- CEO: [Araignée](hd_monsters_araignee.md)
+- Alias: [Araignée](hd_monsters_araignee.md)
- Source: (SRD p389)
- Tiny beast, unaligned
- **Armor Class** 12
@@ -59650,7 +59650,7 @@ _Hit_: 1 piercing damage, and the target must succeed on a DC 9 Constitution sav
# Phase Spider
-- CEO: [Araignée de phase](hd_monsters_araignee_de_phase.md)
+- Alias: [Araignée de phase](hd_monsters_araignee_de_phase.md)
- Source: (SRD p385)
- Large monstrosity, unaligned
- **Armor Class** 13 (natural armor)
@@ -59686,7 +59686,7 @@ _Hit_: 7 (1d10 + 2) piercing damage, and the target must make a DC 11 Constituti
# Giant Spider
-- CEO: [Araignée géante](hd_monsters_araignee_geante.md)
+- Alias: [Araignée géante](hd_monsters_araignee_geante.md)
- Source: (SRD p379)
- Large beast, unaligned
- **Armor Class** 14 (natural armor)
@@ -59726,7 +59726,7 @@ _Hit_: The target is restrained by webbing. As an action, the restrained target
# Giant Wolf Spider
-- CEO: [Araignée-loup géante](hd_monsters_araignee_loup_geante.md)
+- Alias: [Araignée-loup géante](hd_monsters_araignee_loup_geante.md)
- Source: (SRD p381)
- Medium beast, unaligned
- **Armor Class** 13
@@ -59762,7 +59762,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, and the target must make a DC 11 Constitutio
# Awakened Tree
-- CEO: [Arbre éveillé](hd_monsters_arbre_eveille.md)
+- Alias: [Arbre éveillé](hd_monsters_arbre_eveille.md)
- Source: (SRD p366)
- Huge plant, unaligned
- **Armor Class** 13 (natural armor)
@@ -59795,7 +59795,7 @@ _Hit_: 14 (3d6 + 4) bludgeoning damage.
# Awakened Shrub
-- CEO: [Arbuste éveillé](hd_monsters_arbuste_eveille.md)
+- Alias: [Arbuste éveillé](hd_monsters_arbuste_eveille.md)
- Source: (SRD p366)
- Small plant, unaligned
- **Armor Class** 9
@@ -59828,7 +59828,7 @@ _Hit_: 1 (1d4 - 1) slashing damage.
# Archmage
-- CEO: [Archimage](hd_monsters_archimage.md)
+- Alias: [Archimage](hd_monsters_archimage.md)
- Source: (SRD p395)
- Medium humanoid (any race), any alignment
- **Armor Class** 12 (15 with
@@ -59886,7 +59886,7 @@ _Hit_: 4 (1d4 + 2) piercing damage.
# Animated Armor
-- CEO: [Armure animée](hd_monsters_armure_animee.md)
+- Alias: [Armure animée](hd_monsters_armure_animee.md)
- Source: (SRD p263)
- Medium construct, unaligned
- **Armor Class** 18 (natural armor)
@@ -59923,7 +59923,7 @@ _Hit_: 5 (1d6 + 2) bludgeoning damage.
# Assassin
-- CEO: [Assassin](hd_monsters_assassin.md)
+- Alias: [Assassin](hd_monsters_assassin.md)
- Source: (SRD p396)
- Medium humanoid (any race), any non-good alignment
- **Armor Class** 15 (studded leather)
@@ -59967,7 +59967,7 @@ _Hit_: 7 (1d8 + 3) piercing damage, and the target must make a DC 15 Constitutio
# Azer
-- CEO: [Azer](hd_monsters_azer.md)
+- Alias: [Azer](hd_monsters_azer.md)
- Source: (SRD p265)
- Medium elemental, lawful neutral
- **Armor Class** 17 (natural armor, shield)
@@ -60005,7 +60005,7 @@ _Hit_: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if use
# Baboon
-- CEO: [Babouin](hd_monsters_babouin.md)
+- Alias: [Babouin](hd_monsters_babouin.md)
- Source: (SRD p367)
- Small beast, unaligned
- **Armor Class** 12
@@ -60036,7 +60036,7 @@ _Hit_: 1 (1d4 - 1) piercing damage.
# Gibbering Mouther
-- CEO: [Babélien](hd_monsters_babelien.md)
+- Alias: [Babélien](hd_monsters_babelien.md)
- Source: (SRD p314)
- Medium aberration, neutral
- **Armor Class** 9
@@ -60076,7 +60076,7 @@ _Hit_: 17 (5d6) piercing damage. If the target is Medium or smaller, it must suc
# Balor
-- CEO: [Balor](hd_monsters_balor.md)
+- Alias: [Balor](hd_monsters_balor.md)
- Source: (SRD p270)
- Huge fiend (demon), chaotic evil
- **Armor Class** 19 (natural armor)
@@ -60125,7 +60125,7 @@ _Hit_: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target mu
# Bandit
-- CEO: [Bandit](hd_monsters_bandit.md)
+- Alias: [Bandit](hd_monsters_bandit.md)
- Source: (SRD p396)
- Medium humanoid (any race), any non-lawful alignment
- **Armor Class** 12 (leather armor)
@@ -60156,7 +60156,7 @@ _Hit_: 5 (1d8 + 1) piercing damage.
# Bandit Captain
-- CEO: [Capitaine Bandit](hd_monsters_capitaine_bandit.md)
+- Alias: [Capitaine Bandit](hd_monsters_capitaine_bandit.md)
- Source: (SRD p397)
- Medium humanoid (any race), any non-lawful alignment
- **Armor Class** 15 (studded leather)
@@ -60195,7 +60195,7 @@ _Hit_: 5 (1d4 + 3) piercing damage.
# Basilisk
-- CEO: [Basilic](hd_monsters_basilic.md)
+- Alias: [Basilic](hd_monsters_basilic.md)
- Source: (SRD p265)
- Medium monstrosity, unaligned
- **Armor Class** 15 (natural armor)
@@ -60226,7 +60226,7 @@ _Hit_: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.
# Axe Beak
-- CEO: [Bec de hache](hd_monsters_bec_de_hache.md)
+- Alias: [Bec de hache](hd_monsters_bec_de_hache.md)
- Source: (SRD p366)
- Large beast, unaligned
- **Armor Class** 11
@@ -60253,7 +60253,7 @@ _Hit_: 6 (1d8 + 2) slashing damage.
# Weasel
-- CEO: [Belette](hd_monsters_belette.md)
+- Alias: [Belette](hd_monsters_belette.md)
- Source: (SRD p392)
- Tiny beast, unaligned
- **Armor Class** 13
@@ -60285,7 +60285,7 @@ _Hit_: 1 piercing damage.
# Giant Weasel
-- CEO: [Belette géante](hd_monsters_belette_geante.md)
+- Alias: [Belette géante](hd_monsters_belette_geante.md)
- Source: (SRD p381)
- Medium beast, unaligned
- **Armor Class** 13
@@ -60317,7 +60317,7 @@ _Hit_: 5 (1d4 + 3) piercing damage.
# Berserker
-- CEO: [Berserker](hd_monsters_berserker.md)
+- Alias: [Berserker](hd_monsters_berserker.md)
- Source: (SRD p397)
- Medium humanoid (any race), any chaotic alignment
- **Armor Class** 13 (hide armor)
@@ -60348,7 +60348,7 @@ _Hit_: 9 (1d12 + 3) slashing damage.
# Badger
-- CEO: [Blaireau](hd_monsters_blaireau.md)
+- Alias: [Blaireau](hd_monsters_blaireau.md)
- Source: (SRD p367)
- Tiny beast, unaligned
- **Armor Class** 10
@@ -60379,7 +60379,7 @@ _Hit_: 1 piercing damage.
# Giant Badger
-- CEO: [Blaireau géant](hd_monsters_blaireau_geant.md)
+- Alias: [Blaireau géant](hd_monsters_blaireau_geant.md)
- Source: (SRD p373)
- Medium beast, unaligned
- **Armor Class** 10
@@ -60416,7 +60416,7 @@ _Hit_: 6 (2d4 + 1) slashing damage.
# Ghast
-- CEO: [Blême](monsters_hd.md#blême)
+- Alias: [Blême](monsters_hd.md#blême)
- Source: (SRD p311)
- Medium undead, chaotic evil
- **Armor Class** 13
@@ -60456,7 +60456,7 @@ _Hit_: 10 (2d6 + 3) slashing damage. If the target is a creature other than an u
# Bulette
-- CEO: [Bulette](hd_monsters_bulette.md)
+- Alias: [Bulette](hd_monsters_bulette.md)
- Source: (SRD p266)
- Large monstrosity, unaligned
- **Armor Class** 17 (natural armor)
@@ -60490,7 +60490,7 @@ _Hit_: 30 (4d12 + 4) piercing damage.
# Behir
-- CEO: [Béhir](hd_monsters_behir.md)
+- Alias: [Béhir](hd_monsters_behir.md)
- Source: (SRD p265)
- Huge monstrosity, neutral evil
- **Armor Class** 17 (natural armor)
@@ -60529,7 +60529,7 @@ _Hit_: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The
# Centaur
-- CEO: [Centaure](hd_monsters_centaure.md)
+- Alias: [Centaure](hd_monsters_centaure.md)
- Large monstrosity, neutral good
- **Armor Class** 12
- **Hit Points** 45 (6d10 + 12)
@@ -60570,7 +60570,7 @@ _Hit_: 6 (1d8 + 2) piercing damage.
# Jackal
-- CEO: [Chacal](hd_monsters_chacal.md)
+- Alias: [Chacal](hd_monsters_chacal.md)
- Small beast, unaligned
- **Armor Class** 12
- **Hit Points** 3 (1d6)
@@ -60603,7 +60603,7 @@ _Hit_: 1 (1d4 - 1) piercing damage.
# Camel
-- CEO: [Chameau](hd_monsters_chameau.md)
+- Alias: [Chameau](hd_monsters_chameau.md)
- Large beast, unaligned
- **Armor Class** 9
- **Hit Points** 15 (2d10 + 4)
@@ -60629,7 +60629,7 @@ _Hit_: 2 (1d4) bludgeoning damage.
# Cat
-- CEO: [Chat](hd_monsters_chat.md)
+- Alias: [Chat](hd_monsters_chat.md)
- Tiny beast, unaligned
- **Armor Class** 12
- **Hit Points** 2 (1d4)
@@ -60660,7 +60660,7 @@ _Hit_: 1 slashing damage.
# Bat
-- CEO: [Chauve-souris](hd_monsters_chauve_souris.md)
+- Alias: [Chauve-souris](hd_monsters_chauve_souris.md)
- Tiny beast, unaligned
- **Armor Class** 12
- **Hit Points** 1 (1d4 - 1)
@@ -60692,7 +60692,7 @@ _Hit_: 1 piercing damage.
# Giant Bat
-- CEO: [Chauve-souris géante](hd_monsters_chauve_souris_geante.md)
+- Alias: [Chauve-souris géante](hd_monsters_chauve_souris_geante.md)
- Large beast, unaligned
- **Armor Class** 13
- **Hit Points** 22 (4d10)
@@ -60724,7 +60724,7 @@ _Hit_: 5 (1d6 + 2) piercing damage.
# Warhorse
-- CEO: [Cheval de guerre](hd_monsters_cheval_de_guerre.md)
+- Alias: [Cheval de guerre](hd_monsters_cheval_de_guerre.md)
- Large beast, unaligned
- **Armor Class** 11
- **Hit Points** 19 (3d10 + 3)
@@ -60754,7 +60754,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage.
# Riding Horse
-- CEO: [Cheval de selle](hd_monsters_cheval_de_selle.md)
+- Alias: [Cheval de selle](hd_monsters_cheval_de_selle.md)
- Large beast, unaligned
- **Armor Class** 10
- **Hit Points** 13 (2d10 + 2)
@@ -60780,7 +60780,7 @@ _Hit_: 8 (2d4 + 3) bludgeoning damage.
# Draft Horse
-- CEO: [Cheval de trait](hd_monsters_cheval_de_trait.md)
+- Alias: [Cheval de trait](hd_monsters_cheval_de_trait.md)
- Large beast, unaligned
- **Armor Class** 10
- **Hit Points** 19 (3d10 + 3)
@@ -60806,7 +60806,7 @@ _Hit_: 9 (2d4 + 4) bludgeoning damage.
# Knight
-- CEO: [Chevalier](hd_monsters_chevalier.md)
+- Alias: [Chevalier](hd_monsters_chevalier.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 18 (plate)
- **Hit Points** 52 (8d8 + 16)
@@ -60849,7 +60849,7 @@ _Hit_: 5 (1d10) piercing damage.
# Deer
-- CEO: [Chevreuil](hd_monsters_chevreuil.md)
+- Alias: [Chevreuil](hd_monsters_chevreuil.md)
- Medium beast, unaligned
- **Armor Class** 13
- **Hit Points** 4 (1d8)
@@ -60875,7 +60875,7 @@ _Hit_: 2 (1d4) piercing damage.
# Death Dog
-- CEO: [Chien du trépas](hd_monsters_chien_du_trepas.md)
+- Alias: [Chien du trépas](hd_monsters_chien_du_trepas.md)
- Medium monstrosity, neutral evil
- **Armor Class** 12
- **Hit Points** 39 (6d8 + 12)
@@ -60908,7 +60908,7 @@ _Hit_: 5 (1d6 + 2) piercing damage. If the target is a creature, it must succeed
# Blink Dog
-- CEO: [Chien esquiveur](hd_monsters_chien_esquiveur.md)
+- Alias: [Chien esquiveur](hd_monsters_chien_esquiveur.md)
- Medium fey, lawful good
- **Armor Class** 13
- **Hit Points** 22 (4d8 + 4)
@@ -60941,7 +60941,7 @@ _Hit_: 4 (1d6 + 1) piercing damage.
# Chimera
-- CEO: [Chimère](hd_monsters_chimere.md)
+- Alias: [Chimère](hd_monsters_chimere.md)
- Large monstrosity, chaotic evil
- **Armor Class** 14 (natural armor)
- **Hit Points** 114 (12d10 + 48)
@@ -60980,7 +60980,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Owl
-- CEO: [Chouette](hd_monsters_chouette.md)
+- Alias: [Chouette](hd_monsters_chouette.md)
- Tiny beast, unaligned
- **Armor Class** 11
- **Hit Points** 1 (1d4 - 1)
@@ -61013,7 +61013,7 @@ _Hit_: 1 slashing damage.
# Giant Owl
-- CEO: [Chouette géante](hd_monsters_chouette_geante.md)
+- Alias: [Chouette géante](hd_monsters_chouette_geante.md)
- Large beast, neutral
- **Armor Class** 12
- **Hit Points** 19 (3d10 + 3)
@@ -61046,7 +61046,7 @@ _Hit_: 8 (2d6 + 1) slashing damage.
# Chuul
-- CEO: [Chuul](hd_monsters_chuul.md)
+- Alias: [Chuul](hd_monsters_chuul.md)
- Large aberration, chaotic evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 93 (11d10 + 33)
@@ -61085,7 +61085,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if
# Goat
-- CEO: [Chèvre](hd_monsters_chevre.md)
+- Alias: [Chèvre](hd_monsters_chevre.md)
- Medium beast, unaligned
- **Armor Class** 10
- **Hit Points** 4 (1d8)
@@ -61117,7 +61117,7 @@ _Hit_: 3 (1d4 + 1) bludgeoning damage.
# Giant Goat
-- CEO: [Chèvre géante](hd_monsters_chevre_geante.md)
+- Alias: [Chèvre géante](hd_monsters_chevre_geante.md)
- Large beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 19 (3d10 + 3)
@@ -61149,7 +61149,7 @@ _Hit_: 8 (2d4 + 3) bludgeoning damage.
# Cockatrice
-- CEO: [Cockatrice](hd_monsters_cockatrice.md)
+- Alias: [Cockatrice](hd_monsters_cockatrice.md)
- Small monstrosity, unaligned
- **Armor Class** 11
- **Hit Points** 27 (6d6 + 6)
@@ -61175,7 +61175,7 @@ _Hit_: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Const
# Raven
-- CEO: [Corbeau](hd_monsters_corbeau.md)
+- Alias: [Corbeau](hd_monsters_corbeau.md)
- Tiny beast, unaligned
- **Armor Class** 12
- **Hit Points** 1 (1d4 - 1)
@@ -61206,7 +61206,7 @@ _Hit_: 1 piercing damage.
# Couatl
-- CEO: [Couatl](hd_monsters_couatl.md)
+- Alias: [Couatl](hd_monsters_couatl.md)
- Medium celestial, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 97 (13d8 + 39)
@@ -61255,7 +61255,7 @@ _Hit_: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15
# Crab
-- CEO: [Crabe](hd_monsters_crabe.md)
+- Alias: [Crabe](hd_monsters_crabe.md)
- Tiny beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 2 (1d4)
@@ -61286,7 +61286,7 @@ _Hit_: 1 bludgeoning damage.
# Giant Crab
-- CEO: [Crabe géant](hd_monsters_crabe_geant.md)
+- Alias: [Crabe géant](hd_monsters_crabe_geant.md)
- Medium beast, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 13 (3d8)
@@ -61317,7 +61317,7 @@ _Hit_: 4 (1d6 + 1) bludgeoning damage, and the target is grappled (escape DC 11)
# Giant Toad
-- CEO: [Crapaud géant](hd_monsters_crapaud_geant.md)
+- Alias: [Crapaud géant](hd_monsters_crapaud_geant.md)
- Large beast, unaligned
- **Armor Class** 11
- **Hit Points** 39 (6d10 + 6)
@@ -61351,7 +61351,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 5 (1d10) poison damage, and the target
# Shrieker
-- CEO: [Criard](hd_monsters_criard.md)
+- Alias: [Criard](hd_monsters_criard.md)
- Medium plant, unaligned
- **Armor Class** 5
- **Hit Points** 13 (3d8)
@@ -61380,7 +61380,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 5 (1d10) poison damage, and the target
# Crocodile
-- CEO: [Crocodile](hd_monsters_crocodile.md)
+- Alias: [Crocodile](hd_monsters_crocodile.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 19 (3d10 + 3)
@@ -61411,7 +61411,7 @@ _Hit_: 7 (1d10 + 2) piercing damage, and the target is grappled (escape DC 12).
# Giant Crocodile
-- CEO: [Crocodile géant](hd_monsters_crocodile_geant.md)
+- Alias: [Crocodile géant](hd_monsters_crocodile_geant.md)
- Huge beast, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 85 (9d12 + 27)
@@ -61448,7 +61448,7 @@ _Hit_: 14 (2d8 + 5) bludgeoning damage. If the target is a creature, it must suc
# Gelatinous Cube
-- CEO: [Cube gélatineux](hd_monsters_cube_gelatineux.md)
+- Alias: [Cube gélatineux](hd_monsters_cube_gelatineux.md)
- Large ooze, unaligned
- **Armor Class** 6
- **Hit Points** 84 (8d10 + 40)
@@ -61483,7 +61483,7 @@ _Hit_: 10 (3d6) acid damage.
# Nightmare
-- CEO: [Destrier noir](hd_monsters_destrier_noir.md)
+- Alias: [Destrier noir](hd_monsters_destrier_noir.md)
- Large fiend, neutral evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 68 (8d10 + 24)
@@ -61518,7 +61518,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.
# Barbed Devil
-- CEO: [Diable barbelé](hd_monsters_diable_barbele.md)
+- Alias: [Diable barbelé](hd_monsters_diable_barbele.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 110 (13d8 + 52)
@@ -61567,7 +61567,7 @@ _Hit_: 10 (3d6) fire damage. If the target is a flammable object that isn't bein
# Bearded Devil
-- CEO: [Diable barbu](hd_monsters_diable_barbu.md)
+- Alias: [Diable barbu](hd_monsters_diable_barbu.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 52 (8d8 + 16)
@@ -61611,7 +61611,7 @@ _Hit_: 8 (1d10 + 3) slashing damage. If the target is a creature other than an u
# Horned Devil
-- CEO: [Diable cornu](hd_monsters_diable_cornu.md)
+- Alias: [Diable cornu](hd_monsters_diable_cornu.md)
- Large fiend (devil), lawful evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 178 (17d10 + 85)
@@ -61657,7 +61657,7 @@ _Hit_: 14 (4d6) fire damage. If the target is a flammable object that isn't bein
# Chain Devil
-- CEO: [Diable des chaînes](hd_monsters_diable_des_chaines.md)
+- Alias: [Diable des chaînes](hd_monsters_diable_des_chaines.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 85 (10d8 + 40)
@@ -61701,7 +61701,7 @@ _Hit_: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if th
# Ice Devil
-- CEO: [Diable gelé](hd_monsters_diable_gele.md)
+- Alias: [Diable gelé](hd_monsters_diable_gele.md)
- Large fiend (devil), lawful evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 180 (19d10 + 76)
@@ -61749,7 +61749,7 @@ _Hit_: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.
# Bone Devil
-- CEO: [Diable osseux](hd_monsters_diable_osseux.md)
+- Alias: [Diable osseux](hd_monsters_diable_osseux.md)
- Large fiend (devil), lawful evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 142 (15d10 + 60)
@@ -61792,7 +61792,7 @@ _Hit_: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target
# Imp
-- CEO: [Diablotin](hd_monsters_diablotin.md)
+- Alias: [Diablotin](hd_monsters_diablotin.md)
- Tiny fiend (devil, shapechanger), lawful evil
- **Armor Class** 13
- **Hit Points** 10 (3d4 + 3)
@@ -61832,7 +61832,7 @@ _Hit_: 5 (1d4 + 3) piercing damage, and the target must make on a DC 11 Constitu
# Pit Fiend
-- CEO: [Diantrefosse](hd_monsters_diantrefosse.md)
+- Alias: [Diantrefosse](hd_monsters_diantrefosse.md)
- Large fiend (devil), lawful evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 300 (24d10 + 168)
@@ -61890,7 +61890,7 @@ _Hit_: 24 (3d10 + 8) bludgeoning damage.
# Djinni
-- CEO: [Djinn](hd_monsters_djinn.md)
+- Alias: [Djinn](hd_monsters_djinn.md)
- Large elemental, chaotic good
- **Armor Class** 17 (natural armor)
- **Hit Points** 161 (14d10 + 84)
@@ -61934,7 +61934,7 @@ _Hit_: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (dj
# Doppelganger
-- CEO: [Doppleganger](hd_monsters_doppleganger.md)
+- Alias: [Doppleganger](hd_monsters_doppleganger.md)
- Medium monstrosity (shapechanger), neutral
- **Armor Class** 14
- **Hit Points** 52 (8d8 + 16)
@@ -61974,7 +61974,7 @@ _Hit_: 7 (1d6 + 4) bludgeoning damage.
# Adult White Dragon
-- CEO: [Dragon blanc adulte](hd_monsters_dragon_blanc_adulte.md)
+- Alias: [Dragon blanc adulte](hd_monsters_dragon_blanc_adulte.md)
- Huge dragon, chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 200 (16d12 + 96)
@@ -62033,7 +62033,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient White Dragon
-- CEO: [Dragon blanc vénérable](hd_monsters_dragon_blanc_venerable.md)
+- Alias: [Dragon blanc vénérable](hd_monsters_dragon_blanc_venerable.md)
- Gargantuan dragon, chaotic evil
- **Armor Class** 20 (natural armor)
- **Hit Points** 333 (18d20 + 144)
@@ -62092,7 +62092,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young White Dragon
-- CEO: [Jeune dragon blanc](hd_monsters_jeune_dragon_blanc.md)
+- Alias: [Jeune dragon blanc](hd_monsters_jeune_dragon_blanc.md)
- Large dragon, chaotic evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 133 (14d10 + 56)
@@ -62133,7 +62133,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# White Dragon Wyrmling
-- CEO: [Dragonnet blanc](hd_monsters_dragonnet_blanc.md)
+- Alias: [Dragonnet blanc](hd_monsters_dragonnet_blanc.md)
- Medium dragon, chaotic evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 32 (5d8 + 10)
@@ -62164,7 +62164,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.
# Adult Blue Dragon
-- CEO: [Dragon bleu adulte](hd_monsters_dragon_bleu_adulte.md)
+- Alias: [Dragon bleu adulte](hd_monsters_dragon_bleu_adulte.md)
- Huge dragon, lawful evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 225 (18d12 + 108)
@@ -62221,7 +62221,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Blue Dragon
-- CEO: [Dragon bleu vénérable](hd_monsters_dragon_bleu_venerable.md)
+- Alias: [Dragon bleu vénérable](hd_monsters_dragon_bleu_venerable.md)
- Gargantuan dragon, lawful evil
- **Armor Class** 22 (natural armor)
- **Hit Points** 481 (26d20 + 208)
@@ -62278,7 +62278,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Blue Dragon
-- CEO: [Jeune dragon bleu](hd_monsters_jeune_dragon_bleu.md)
+- Alias: [Jeune dragon bleu](hd_monsters_jeune_dragon_bleu.md)
- Large dragon, lawful evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 152 (16d10 + 64)
@@ -62315,7 +62315,7 @@ _Hit_: 12 (2d6 + 5) slashing damage.
# Blue Dragon Wyrmling
-- CEO: [Dragonnet bleu](hd_monsters_dragonnet_bleu.md)
+- Alias: [Dragonnet bleu](hd_monsters_dragonnet_bleu.md)
- Medium dragon, lawful evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 52 (8d8 + 16)
@@ -62346,7 +62346,7 @@ _Hit_: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.
# Adult Brass Dragon
-- CEO: [Dragon d'airain adulte](hd_monsters_dragon_dairain_adulte.md)
+- Alias: [Dragon d'airain adulte](hd_monsters_dragon_dairain_adulte.md)
- Huge dragon, chaotic good
- **Armor Class** 18 (natural armor)
- **Hit Points** 172 (15d12 + 75)
@@ -62407,7 +62407,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Brass Dragon
-- CEO: [Dragon d'airain vénérable](hd_monsters_dragon_dairain_venerable.md)
+- Alias: [Dragon d'airain vénérable](hd_monsters_dragon_dairain_venerable.md)
- Gargantuan dragon, chaotic good
- **Armor Class** 20 (natural armor)
- **Hit Points** 297 (17d20 + 119)
@@ -62470,7 +62470,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Brass Dragon
-- CEO: [Jeune dragon d'airain](hd_monsters_jeune_dragon_dairain.md)
+- Alias: [Jeune dragon d'airain](hd_monsters_jeune_dragon_dairain.md)
- Large dragon, chaotic good
- **Armor Class** 17 (natural armor)
- **Hit Points** 110 (13d10 + 39)
@@ -62511,7 +62511,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Brass Dragon Wyrmling
-- CEO: [Dragonnet d'airain](hd_monsters_dragonnet_dairain.md)
+- Alias: [Dragonnet d'airain](hd_monsters_dragonnet_dairain.md)
- Medium dragon, chaotic good
- **Armor Class** 16 (natural armor)
- **Hit Points** 16 (3d8 + 3)
@@ -62546,7 +62546,7 @@ _Hit_: 7 (1d10 + 2) piercing damage.
# Adult Silver Dragon
-- CEO: [Dragon d'argent adulte](hd_monsters_dragon_dargent_adulte.md)
+- Alias: [Dragon d'argent adulte](hd_monsters_dragon_dargent_adulte.md)
- Huge dragon, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 243 (18d12 + 126)
@@ -62609,7 +62609,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Silver Dragon
-- CEO: [Dragon d'argent vénérable](hd_monsters_dragon_dargent_venerable.md)
+- Alias: [Dragon d'argent vénérable](hd_monsters_dragon_dargent_venerable.md)
- Gargantuan dragon, lawful good
- **Armor Class** 22 (natural armor)
- **Hit Points** 487 (25d20 + 225)
@@ -62672,7 +62672,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Silver Dragon
-- CEO: [Jeune dragon d'argent](hd_monsters_jeune_dragon_dargent.md)
+- Alias: [Jeune dragon d'argent](hd_monsters_jeune_dragon_dargent.md)
- Large dragon, lawful good
- **Armor Class** 18 (natural armor)
- **Hit Points** 168 (16d10 + 80)
@@ -62713,7 +62713,7 @@ _Hit_: 13 (2d6 + 6) slashing damage.
# Silver Dragon Wyrmling
-- CEO: [Dragonnet d'argent](hd_monsters_dragonnet_dargent.md)
+- Alias: [Dragonnet d'argent](hd_monsters_dragonnet_dargent.md)
- Medium dragon, lawful good
- **Armor Class** 17 (natural armor)
- **Hit Points** 45 (6d8 + 18)
@@ -62748,7 +62748,7 @@ _Hit_: 9 (1d10 + 4) piercing damage.
# Adult Gold Dragon
-- CEO: [Dragon d'or adulte](hd_monsters_dragon_dor_adulte.md)
+- Alias: [Dragon d'or adulte](hd_monsters_dragon_dor_adulte.md)
- Huge dragon, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 256 (19d12 + 133)
@@ -62813,7 +62813,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Gold Dragon
-- CEO: [Dragon d'or vénérable](hd_monsters_dragon_dor_venerable.md)
+- Alias: [Dragon d'or vénérable](hd_monsters_dragon_dor_venerable.md)
- Gargantuan dragon, lawful good
- **Armor Class** 22 (natural armor)
- **Hit Points** 546 (28d20 + 252)
@@ -62878,7 +62878,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Gold Dragon
-- CEO: [Jeune dragon d'or](hd_monsters_jeune_dragon_dor.md)
+- Alias: [Jeune dragon d'or](hd_monsters_jeune_dragon_dor.md)
- Large dragon, lawful good
- **Armor Class** 18 (natural armor)
- **Hit Points** 178 (17d10 + 85)
@@ -62923,7 +62923,7 @@ _Hit_: 13 (2d6 + 6) slashing damage.
# Gold Dragon Wyrmling
-- CEO: [Dragonnet d'or](hd_monsters_dragonnet_dor.md)
+- Alias: [Dragonnet d'or](hd_monsters_dragonnet_dor.md)
- Medium dragon, lawful good
- **Armor Class** 17 (natural armor)
- **Hit Points** 60 (8d8 + 24)
@@ -62962,7 +62962,7 @@ _Hit_: 9 (1d10 + 4) piercing damage.
# Adult Bronze Dragon
-- CEO: [Dragon de bronze adulte](hd_monsters_dragon_de_bronze_adulte.md)
+- Alias: [Dragon de bronze adulte](hd_monsters_dragon_de_bronze_adulte.md)
- Huge dragon, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 212 (17d12 + 102)
@@ -63027,7 +63027,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Bronze Dragon
-- CEO: [Dragon de bronze vénérable](hd_monsters_dragon_de_bronze_venerable.md)
+- Alias: [Dragon de bronze vénérable](hd_monsters_dragon_de_bronze_venerable.md)
- Gargantuan dragon, lawful good
- **Armor Class** 22 (natural armor)
- **Hit Points** 444 (24d20 + 192)
@@ -63092,7 +63092,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Bronze Dragon
-- CEO: [Jeune dragon de bronze](hd_monsters_jeune_dragon_de_bronze.md)
+- Alias: [Jeune dragon de bronze](hd_monsters_jeune_dragon_de_bronze.md)
- Large dragon, lawful good
- **Armor Class** 18 (natural armor)
- **Hit Points** 142 (15d10 + 60)
@@ -63137,7 +63137,7 @@ _Hit_: 12 (2d6 + 5) slashing damage.
# Bronze Dragon Wyrmling
-- CEO: [Dragonnet de bronze](hd_monsters_dragonnet_de_bronze.md)
+- Alias: [Dragonnet de bronze](hd_monsters_dragonnet_de_bronze.md)
- Medium dragon, lawful good
- **Armor Class** 17 (natural armor)
- **Hit Points** 32 (5d8 + 10)
@@ -63176,7 +63176,7 @@ _Hit_: 8 (1d10 + 3) piercing damage.
# Adult Copper Dragon
-- CEO: [Dragon de cuivre adulte](hd_monsters_dragon_de_cuivre_adulte.md)
+- Alias: [Dragon de cuivre adulte](hd_monsters_dragon_de_cuivre_adulte.md)
- Huge dragon, chaotic good
- **Armor Class** 18 (natural armor)
- **Hit Points** 184 (16d12 + 80)
@@ -63237,7 +63237,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Copper Dragon
-- CEO: [Dragon de cuivre vénérable](hd_monsters_dragon_de_cuivre_venerable.md)
+- Alias: [Dragon de cuivre vénérable](hd_monsters_dragon_de_cuivre_venerable.md)
- Gargantuan dragon, chaotic good
- **Armor Class** 21 (natural armor)
- **Hit Points** 350 (20d20 + 140)
@@ -63300,7 +63300,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Copper Dragon
-- CEO: [Jeune dragon de cuivre](hd_monsters_jeune_dragon_de_cuivre.md)
+- Alias: [Jeune dragon de cuivre](hd_monsters_jeune_dragon_de_cuivre.md)
- Large dragon, chaotic good
- **Armor Class** 17 (natural armor)
- **Hit Points** 119 (14d10 + 42)
@@ -63341,7 +63341,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Copper Dragon Wyrmling
-- CEO: [Dragonnet de cuivre](hd_monsters_dragonnet_de_cuivre.md)
+- Alias: [Dragonnet de cuivre](hd_monsters_dragonnet_de_cuivre.md)
- Medium dragon, chaotic good
- **Armor Class** 16 (natural armor)
- **Hit Points** 22 (4d8 + 4)
@@ -63376,7 +63376,7 @@ _Hit_: 7 (1d10 + 2) piercing damage.
# Adult Black Dragon
-- CEO: [Dragon noir adulte](hd_monsters_dragon_noir_adulte.md)
+- Alias: [Dragon noir adulte](hd_monsters_dragon_noir_adulte.md)
- Huge dragon, chaotic evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 195 (17d12 + 85)
@@ -63435,7 +63435,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Black Dragon
-- CEO: [Dragon noir vénérable](hd_monsters_dragon_noir_venerable.md)
+- Alias: [Dragon noir vénérable](hd_monsters_dragon_noir_venerable.md)
- Gargantuan dragon, chaotic evil
- **Armor Class** 22 (natural armor)
- **Hit Points** 367 (21d20 + 147)
@@ -63494,7 +63494,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Black Dragon
-- CEO: [Jeune dragon noir](hd_monsters_jeune_dragon_noir.md)
+- Alias: [Jeune dragon noir](hd_monsters_jeune_dragon_noir.md)
- Large dragon, chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 127 (15d10 + 45)
@@ -63535,7 +63535,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Black Dragon Wyrmling
-- CEO: [Dragonnet noir](hd_monsters_dragonnet_noir.md)
+- Alias: [Dragonnet noir](hd_monsters_dragonnet_noir.md)
- Medium dragon, chaotic evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 33 (6d8 + 6)
@@ -63570,7 +63570,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.
# Adult Red Dragon
-- CEO: [Dragon rouge adulte](hd_monsters_dragon_rouge_adulte.md)
+- Alias: [Dragon rouge adulte](hd_monsters_dragon_rouge_adulte.md)
- Huge dragon, chaotic evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 256 (19d12 + 133)
@@ -63627,7 +63627,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Red Dragon
-- CEO: [Dragon rouge vénérable](hd_monsters_dragon_rouge_venerable.md)
+- Alias: [Dragon rouge vénérable](hd_monsters_dragon_rouge_venerable.md)
- Gargantuan dragon, chaotic evil
- **Armor Class** 22 (natural armor)
- **Hit Points** 546 (28d20 + 252)
@@ -63684,7 +63684,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Red Dragon
-- CEO: [Jeune dragon rouge](hd_monsters_jeune_dragon_rouge.md)
+- Alias: [Jeune dragon rouge](hd_monsters_jeune_dragon_rouge.md)
- Large dragon, chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 178 (17d10 + 85)
@@ -63721,7 +63721,7 @@ _Hit_: 13 (2d6 + 6) slashing damage.
# Red Dragon Wyrmling
-- CEO: [Dragonnet rouge](hd_monsters_dragonnet_rouge.md)
+- Alias: [Dragonnet rouge](hd_monsters_dragonnet_rouge.md)
- Medium dragon, chaotic evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 75 (10d8 + 30)
@@ -63752,7 +63752,7 @@ _Hit_: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.
# Adult Green Dragon
-- CEO: [Dragon vert adulte](hd_monsters_dragon_vert_adulte.md)
+- Alias: [Dragon vert adulte](hd_monsters_dragon_vert_adulte.md)
- Huge dragon, lawful evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 207 (18d12 + 90)
@@ -63812,7 +63812,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Ancient Green Dragon
-- CEO: [Dragon vert vénérable](hd_monsters_dragon_vert_venerable.md)
+- Alias: [Dragon vert vénérable](hd_monsters_dragon_vert_venerable.md)
- Gargantuan dragon, lawful evil
- **Armor Class** 21 (natural armor)
- **Hit Points** 385 (22d20 + 154)
@@ -63872,7 +63872,7 @@ The dragon can take 3 legendary actions, choosing from the options below. Only o
# Young Green Dragon
-- CEO: [Jeune dragon vert](hd_monsters_jeune_dragon_vert.md)
+- Alias: [Jeune dragon vert](hd_monsters_jeune_dragon_vert.md)
- Large dragon, lawful evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 136 (16d10 + 48)
@@ -63914,7 +63914,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Green Dragon Wyrmling
-- CEO: [Dragonnet vert](hd_monsters_dragonnet_vert.md)
+- Alias: [Dragonnet vert](hd_monsters_dragonnet_vert.md)
- Medium dragon, lawful evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 38 (7d8 + 7)
@@ -63950,7 +63950,7 @@ _Hit_: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.
# Dragon Turtle
-- CEO: [Dragon-tortue](hd_monsters_dragon_tortue.md)
+- Alias: [Dragon-tortue](hd_monsters_dragon_tortue.md)
- Gargantuan dragon, neutral
- **Armor Class** 20 (natural armor)
- **Hit Points** 341 (22d20 + 110)
@@ -63994,7 +63994,7 @@ _Hit_: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must su
# Dretch
-- CEO: [Dretch](hd_monsters_dretch.md)
+- Alias: [Dretch](hd_monsters_dretch.md)
- Small fiend (demon), chaotic evil
- **Armor Class** 11 (natural armor)
- **Hit Points** 18 (4d6 + 4)
@@ -64031,7 +64031,7 @@ _Hit_: 5 (2d4) slashing damage.
# Drider
-- CEO: [Drider](hd_monsters_drider.md)
+- Alias: [Drider](hd_monsters_drider.md)
- Large monstrosity, chaotic evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 123 (13d10 + 52)
@@ -64084,7 +64084,7 @@ _Hit_: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.
# Drow
-- CEO: [Drow](hd_monsters_drow.md)
+- Alias: [Drow](hd_monsters_drow.md)
- Medium humanoid (elf), neutral evil
- **Armor Class** 15 (chain shirt)
- **Hit Points** 13 (3d8)
@@ -64127,7 +64127,7 @@ _Hit_: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Const
# Druid
-- CEO: [Druide](hd_monsters_druide.md)
+- Alias: [Druide](hd_monsters_druide.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 11 (16 with
- **Hit Points** 27 (5d8 + 5)
@@ -64164,7 +64164,7 @@ _Hit_: 3 (1d6) bludgeoning damage, 4 (1d8) bludgeoning damage if wielded with tw
# Dryad
-- CEO: [Dryade](hd_monsters_dryade.md)
+- Alias: [Dryade](hd_monsters_dryade.md)
- Medium fey, neutral
- **Armor Class** 11 (16 with
- **Hit Points** 22 (5d8)
@@ -64209,7 +64209,7 @@ _Hit_: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with _[shil
# Duergar
-- CEO: [Duergar](hd_monsters_duergar.md)
+- Alias: [Duergar](hd_monsters_duergar.md)
- Medium humanoid (dwarf), lawful evil
- **Armor Class** 16 (scale mail, shield)
- **Hit Points** 26 (4d8 + 8)
@@ -64250,7 +64250,7 @@ _Hit_: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarge
# Deva
-- CEO: [Déva](hd_monsters_deva.md)
+- Alias: [Déva](hd_monsters_deva.md)
- Medium celestial, lawful good
- **Armor Class** 17 (natural armor)
- **Hit Points** 136 (16d8 + 64)
@@ -64298,7 +64298,7 @@ _Hit_: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.
# Priest
-- CEO: [Ecclésiastique](hd_monsters_ecclesiastique.md)
+- Alias: [Ecclésiastique](hd_monsters_ecclesiastique.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 13 (chain shirt)
- **Hit Points** 27 (5d8 + 5)
@@ -64339,7 +64339,7 @@ _Hit_: 3 (1d6) bludgeoning damage.
# Roper
-- CEO: [Enlaceur](hd_monsters_enlaceur.md)
+- Alias: [Enlaceur](hd_monsters_enlaceur.md)
- Large monstrosity, neutral evil
- **Armor Class** 20 (natural armor)
- **Hit Points** 93 (11d10 + 33)
@@ -64382,7 +64382,7 @@ _Hit_: The target is grappled (escape DC 15). Until the grapple ends, the target
# Spy
-- CEO: [Espion](hd_monsters_espion.md)
+- Alias: [Espion](hd_monsters_espion.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 12
- **Hit Points** 27 (6d8)
@@ -64421,7 +64421,7 @@ _Hit_: 5 (1d6 + 2) piercing damage.
# Sprite
-- CEO: [Esprit follet](hd_monsters_esprit_follet.md)
+- Alias: [Esprit follet](hd_monsters_esprit_follet.md)
- Tiny fey, neutral good
- **Armor Class** 15 (leather armor)
- **Hit Points** 2 (1d4)
@@ -64456,7 +64456,7 @@ _Hit_: 1 piercing damage, and the target must succeed on a DC 10 Constitution sa
# Ettercap
-- CEO: [Ettercap](hd_monsters_ettercap.md)
+- Alias: [Ettercap](hd_monsters_ettercap.md)
- Medium monstrosity, neutral evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 44 (8d8 + 8)
@@ -64501,7 +64501,7 @@ _Hit_: The creature is restrained by webbing. As an action, the restrained creat
# Ettin
-- CEO: [Ettin](hd_monsters_ettin.md)
+- Alias: [Ettin](hd_monsters_ettin.md)
- Large giant, chaotic evil
- **Armor Class** 12 (natural armor)
- **Hit Points** 85 (10d10 + 30)
@@ -64540,7 +64540,7 @@ _Hit_: 14 (2d8 + 5) piercing damage.
# Cult Fanatic
-- CEO: [Fanatique de secte](hd_monsters_fanatique_de_secte.md)
+- Alias: [Fanatique de secte](hd_monsters_fanatique_de_secte.md)
- Medium humanoid (any race), any non-good alignment
- **Armor Class** 13 (leather armor)
- **Hit Points** 33 (6d8 + 6)
@@ -64581,7 +64581,7 @@ _Hit_: 4 (1d4 + 2) piercing damage.
# Ghost
-- CEO: [Fantôme](hd_monsters_fantome.md)
+- Alias: [Fantôme](hd_monsters_fantome.md)
- Medium undead, any alignment
- **Armor Class** 11
- **Hit Points** 45 (10d8)
@@ -64622,7 +64622,7 @@ _Hit_: 17 (4d6 + 3) necrotic damage.
# Hawk
-- CEO: [Faucon](hd_monsters_faucon.md)
+- Alias: [Faucon](hd_monsters_faucon.md)
- Tiny beast, unaligned
- **Armor Class** 13
- **Hit Points** 1 (1d4 - 1)
@@ -64653,7 +64653,7 @@ _Hit_: 1 slashing damage.
# Blood Hawk
-- CEO: [Faucon de sang](hd_monsters_faucon_de_sang.md)
+- Alias: [Faucon de sang](hd_monsters_faucon_de_sang.md)
- Small beast, unaligned
- **Armor Class** 12
- **Hit Points** 7 (2d6)
@@ -64686,7 +64686,7 @@ _Hit_: 4 (1d4 + 2) piercing damage.
# Will-o'-Wisp
-- CEO: [Feu follet](hd_monsters_feu_follet.md)
+- Alias: [Feu follet](hd_monsters_feu_follet.md)
- Tiny undead, chaotic evil
- **Armor Class** 19
- **Hit Points** 22 (9d4)
@@ -64727,7 +64727,7 @@ _Hit_: 9 (2d8) lightning damage.
# Guard
-- CEO: [Garde](hd_monsters_garde.md)
+- Alias: [Garde](hd_monsters_garde.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 16 (chain shirt, shield)
- **Hit Points** 11 (2d8 + 2)
@@ -64754,7 +64754,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with
# Shield Guardian
-- CEO: [Garde animé](hd_monsters_garde_anime.md)
+- Alias: [Garde animé](hd_monsters_garde_anime.md)
- Large construct, unaligned
- **Armor Class** 17 (natural armor)
- **Hit Points** 142 (15d10 + 60)
@@ -64796,7 +64796,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage.
# Gargoyle
-- CEO: [Gargouille](hd_monsters_gargouille.md)
+- Alias: [Gargouille](hd_monsters_gargouille.md)
- Medium elemental, chaotic evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 52 (7d8 + 21)
@@ -64835,7 +64835,7 @@ _Hit_: 5 (1d6 + 2) slashing damage.
# Ochre Jelly
-- CEO: [Gelée ocre](hd_monsters_gelee_ocre.md)
+- Alias: [Gelée ocre](hd_monsters_gelee_ocre.md)
- Large ooze, unaligned
- **Armor Class** 8
- **Hit Points** 45 (6d10 + 12)
@@ -64874,7 +64874,7 @@ _Hit_: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.
# Glabrezu
-- CEO: [Glabrezu](hd_monsters_glabrezu.md)
+- Alias: [Glabrezu](hd_monsters_glabrezu.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 157 (15d10 + 75)
@@ -64920,7 +64920,7 @@ _Hit_: 7 (2d4 + 2) bludgeoning damage.
# Gladiator
-- CEO: [Gladiateur](hd_monsters_gladiateur.md)
+- Alias: [Gladiateur](hd_monsters_gladiateur.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 16 (studded leather, shield)
- **Hit Points** 112 (15d8 + 45)
@@ -64964,7 +64964,7 @@ _Hit_: 9 (2d4 + 4) bludgeoning damage. If the target is a Medium or smaller crea
# Gnoll
-- CEO: [Gnoll](hd_monsters_gnoll.md)
+- Alias: [Gnoll](hd_monsters_gnoll.md)
- Medium humanoid (gnoll), chaotic evil
- **Armor Class** 15 (hide armor, shield)
- **Hit Points** 22 (5d8)
@@ -65002,7 +65002,7 @@ _Hit_: 5 (1d8 + 1) piercing damage.
# Deep Gnome (Svirfneblin)
-- CEO: [Gnome des profondeurs (svirfneblin)](hd_monsters_gnome_des_profondeurs_svirfneblin.md)
+- Alias: [Gnome des profondeurs (svirfneblin)](hd_monsters_gnome_des_profondeurs_svirfneblin.md)
- Small humanoid (gnome), neutral good
- **Armor Class** 15 (chain shirt)
- **Hit Points** 16 (3d6 + 6)
@@ -65045,7 +65045,7 @@ _Hit_: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Const
# Goblin
-- CEO: [Gobelin](hd_monsters_gobelin.md)
+- Alias: [Gobelin](hd_monsters_gobelin.md)
- Small humanoid (goblinoid), neutral evil
- **Armor Class** 15 (leather armor, shield)
- **Hit Points** 7 (2d6)
@@ -65080,7 +65080,7 @@ _Hit_: 5 (1d6 + 2) piercing damage.
# Bugbear
-- CEO: [Gobelours](hd_monsters_gobelours.md)
+- Alias: [Gobelours](hd_monsters_gobelours.md)
- Medium humanoid (goblinoid), chaotic evil
- **Armor Class** 16 (hide armor, shield)
- **Hit Points** 27 (5d8 + 5)
@@ -65117,7 +65117,7 @@ _Hit_: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at ra
# Clay Golem
-- CEO: [Golem d'argile](hd_monsters_golem_dargile.md)
+- Alias: [Golem d'argile](hd_monsters_golem_dargile.md)
- Large construct, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 133 (14d10 + 56)
@@ -65161,7 +65161,7 @@ _Hit_: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must su
# Flesh Golem
-- CEO: [Golem de chair](hd_monsters_golem_de_chair.md)
+- Alias: [Golem de chair](hd_monsters_golem_de_chair.md)
- Medium construct, neutral
- **Armor Class** 9
- **Hit Points** 93 (11d8 + 44)
@@ -65205,7 +65205,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage.
# Iron Golem
-- CEO: [Golem de fer](hd_monsters_golem_de_fer.md)
+- Alias: [Golem de fer](hd_monsters_golem_de_fer.md)
- Large construct, unaligned
- **Armor Class** 20 (natural armor)
- **Hit Points** 210 (20d10 + 100)
@@ -65251,7 +65251,7 @@ _Hit_: 23 (3d10 + 7) slashing damage.
# Stone Golem
-- CEO: [Golem de pierre](hd_monsters_golem_de_pierre.md)
+- Alias: [Golem de pierre](hd_monsters_golem_de_pierre.md)
- Large construct, unaligned
- **Armor Class** 17 (natural armor)
- **Hit Points** 178 (17d10 + 85)
@@ -65291,7 +65291,7 @@ _Hit_: 19 (3d8 + 6) bludgeoning damage.
# Gorgon
-- CEO: [Gorgone](hd_monsters_gorgone.md)
+- Alias: [Gorgone](hd_monsters_gorgone.md)
- Large monstrosity, unaligned
- **Armor Class** 19 (natural armor)
- **Hit Points** 114 (12d10 + 48)
@@ -65329,7 +65329,7 @@ _Hit_: 16 (2d10 + 5) bludgeoning damage.
# Ghoul
-- CEO: [Goule](hd_monsters_goule.md)
+- Alias: [Goule](hd_monsters_goule.md)
- Medium undead, chaotic evil
- **Armor Class** 12
- **Hit Points** 22 (5d8)
@@ -65361,7 +65361,7 @@ _Hit_: 7 (2d4 + 2) slashing damage. If the target is a creature other than an el
# Ape
-- CEO: [Grand singe](hd_monsters_grand_singe.md)
+- Alias: [Grand singe](hd_monsters_grand_singe.md)
- Medium beast, unaligned
- **Armor Class** 12
- **Hit Points** 19 (3d8 + 6)
@@ -65394,7 +65394,7 @@ _Hit_: 6 (1d6 + 3) bludgeoning damage.
# Frog
-- CEO: [Grenouille](hd_monsters_grenouille.md)
+- Alias: [Grenouille](hd_monsters_grenouille.md)
- Tiny beast, unaligned
- **Armor Class** 11
- **Hit Points** 1 (1d4 - 1)
@@ -65421,7 +65421,7 @@ _Hit_: 6 (1d6 + 3) bludgeoning damage.
# Giant Frog
-- CEO: [Grenouille géante](hd_monsters_grenouille_geante.md)
+- Alias: [Grenouille géante](hd_monsters_grenouille_geante.md)
- Medium beast, unaligned
- **Armor Class** 11
- **Hit Points** 18 (4d8)
@@ -65456,7 +65456,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, and the target is grappled (escape DC 11). U
# Grick
-- CEO: [Grick](hd_monsters_grick.md)
+- Alias: [Grick](hd_monsters_grick.md)
- Medium monstrosity, neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 27 (6d8)
@@ -65493,7 +65493,7 @@ _Hit_: 5 (1d6 + 2) piercing damage.
# Griffon
-- CEO: [Griffon](hd_monsters_griffon.md)
+- Alias: [Griffon](hd_monsters_griffon.md)
- Large monstrosity, unaligned
- **Armor Class** 12
- **Hit Points** 59 (7d10 + 21)
@@ -65530,7 +65530,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Sea Hag
-- CEO: [Guenaude aquatique](hd_monsters_guenaude_aquatique.md)
+- Alias: [Guenaude aquatique](hd_monsters_guenaude_aquatique.md)
- Medium fey, chaotic evil
- **Armor Class** 14 (natural armor)
- **Hit Points** 52 (7d8 + 21)
@@ -65566,7 +65566,7 @@ _Hit_: 10 (2d6 + 3) slashing damage.
# Night Hag
-- CEO: [Guenaude nocturne](hd_monsters_guenaude_nocturne.md)
+- Alias: [Guenaude nocturne](hd_monsters_guenaude_nocturne.md)
- Medium fiend, neutral evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 112 (15d8 + 45)
@@ -65611,7 +65611,7 @@ _Hit_: 13 (2d8 + 4) slashing damage.
# Green Hag
-- CEO: [Guenaude verte](hd_monsters_guenaude_verte.md)
+- Alias: [Guenaude verte](hd_monsters_guenaude_verte.md)
- Medium fey, neutral evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 82 (11d8 + 33)
@@ -65652,7 +65652,7 @@ _Hit_: 13 (2d8 + 4) slashing damage.
# Tribal Warrior
-- CEO: [Guerrier tribal](hd_monsters_guerrier_tribal.md)
+- Alias: [Guerrier tribal](hd_monsters_guerrier_tribal.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 12 (hide armor)
- **Hit Points** 11 (2d8 + 2)
@@ -65682,7 +65682,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with
# Giant Wasp
-- CEO: [Guêpe géante](hd_monsters_guepe_geante.md)
+- Alias: [Guêpe géante](hd_monsters_guepe_geante.md)
- Medium beast, unaligned
- **Armor Class** 12
- **Hit Points** 13 (3d8)
@@ -65708,7 +65708,7 @@ _Hit_: 5 (1d6 + 2) piercing damage, and the target must make a DC 11 Constitutio
# Gynosphinx
-- CEO: [Gynosphinx](hd_monsters_gynosphinx.md)
+- Alias: [Gynosphinx](hd_monsters_gynosphinx.md)
- Large monstrosity, lawful neutral
- **Armor Class** 17 (natural armor)
- **Hit Points** 136 (16d10 + 48)
@@ -65770,7 +65770,7 @@ The sphinx can take 3 legendary actions, choosing from the options below. Only o
# Hill Giant
-- CEO: [Géant des collines](hd_monsters_geant_des_collines.md)
+- Alias: [Géant des collines](hd_monsters_geant_des_collines.md)
- Huge giant, chaotic evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 105 (10d12 + 40)
@@ -65803,7 +65803,7 @@ _Hit_: 21 (3d10 + 5) bludgeoning damage.
# Cloud Giant
-- CEO: [Géant des nuages](hd_monsters_geant_des_nuages.md)
+- Alias: [Géant des nuages](hd_monsters_geant_des_nuages.md)
- Huge giant, neutral good (50 %) or neutral evil (50 %)
- **Armor Class** 14 (natural armor)
- **Hit Points** 200 (16d12 + 96)
@@ -65849,7 +65849,7 @@ _Hit_: 30 (4d10 + 8) bludgeoning damage.
# Stone Giant
-- CEO: [Géant des pierres](hd_monsters_geant_des_pierres.md)
+- Alias: [Géant des pierres](hd_monsters_geant_des_pierres.md)
- Huge giant, neutral
- **Armor Class** 17 (natural armor)
- **Hit Points** 126 (11d12 + 55)
@@ -65889,7 +65889,7 @@ _Hit_: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must su
# Storm Giant
-- CEO: [Géant des tempêtes](hd_monsters_geant_des_tempetes.md)
+- Alias: [Géant des tempêtes](hd_monsters_geant_des_tempetes.md)
- Huge giant, chaotic good
- **Armor Class** 16 (scale mail)
- **Hit Points** 230 (20d12 + 100)
@@ -65937,7 +65937,7 @@ _Hit_: 35 (4d12 + 9) bludgeoning damage.
# Fire Giant
-- CEO: [Géant du feu](hd_monsters_geant_du_feu.md)
+- Alias: [Géant du feu](hd_monsters_geant_du_feu.md)
- Huge giant, lawful evil
- **Armor Class** 18 (plate)
- **Hit Points** 162 (13d12 + 78)
@@ -65972,7 +65972,7 @@ _Hit_: 29 (4d10 + 7) bludgeoning damage.
# Frost Giant
-- CEO: [Géant du givre](hd_monsters_geant_du_givre.md)
+- Alias: [Géant du givre](hd_monsters_geant_du_givre.md)
- Huge giant, neutral evil
- **Armor Class** 15 (patchwork armor)
- **Hit Points** 138 (12d12 + 60)
@@ -66007,7 +66007,7 @@ _Hit_: 28 (4d10 + 6) bludgeoning damage.
# Harpy
-- CEO: [Harpie](hd_monsters_harpie.md)
+- Alias: [Harpie](hd_monsters_harpie.md)
- Medium monstrosity, chaotic evil
- **Armor Class** 11
- **Hit Points** 38 (7d8 + 7)
@@ -66041,7 +66041,7 @@ _Hit_: 3 (1d4 + 1) bludgeoning damage.
# Hezrou
-- CEO: [Hezrou](hd_monsters_hezrou.md)
+- Alias: [Hezrou](hd_monsters_hezrou.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 136 (13d10 + 65)
@@ -66083,7 +66083,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Owlbear
-- CEO: [Hibours](hd_monsters_hibours.md)
+- Alias: [Hibours](hd_monsters_hibours.md)
- Large monstrosity, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 59 (7d10 + 21)
@@ -66120,7 +66120,7 @@ _Hit_: 14 (2d8 + 5) slashing damage.
# Sea Horse
-- CEO: [Hippocampe](hd_monsters_hippocampe.md)
+- Alias: [Hippocampe](hd_monsters_hippocampe.md)
- Tiny beast, unaligned
- **Armor Class** 11
- **Hit Points** 1 (1d4 - 1)
@@ -66144,7 +66144,7 @@ _Hit_: 14 (2d8 + 5) slashing damage.
# Giant Sea Horse
-- CEO: [Hippocampe géant](hd_monsters_hippocampe_geant.md)
+- Alias: [Hippocampe géant](hd_monsters_hippocampe_geant.md)
- Large beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 16 (3d10)
@@ -66176,7 +66176,7 @@ _Hit_: 4 (1d6 + 1) bludgeoning damage.
# Hippogriff
-- CEO: [Hippogriffe](hd_monsters_hippogriffe.md)
+- Alias: [Hippogriffe](hd_monsters_hippogriffe.md)
- Large monstrosity, unaligned
- **Armor Class** 11
- **Hit Points** 19 (3d10 + 3)
@@ -66213,7 +66213,7 @@ _Hit_: 10 (2d6 + 3) slashing damage.
# Hobgoblin
-- CEO: [Hobgobelin](hd_monsters_hobgobelin.md)
+- Alias: [Hobgobelin](hd_monsters_hobgobelin.md)
- Medium humanoid (goblinoid), lawful evil
- **Armor Class** 18 (chain mail, shield)
- **Hit Points** 11 (2d8 + 2)
@@ -66247,7 +66247,7 @@ _Hit_: 5 (1d8 + 1) piercing damage.
# Lizardfolk
-- CEO: [Homme-lézard](hd_monsters_homme_lezard.md)
+- Alias: [Homme-lézard](hd_monsters_homme_lezard.md)
- Medium humanoid (lizardfolk), neutral
- **Armor Class** 15 (natural armor, shield)
- **Hit Points** 22 (4d8 + 4)
@@ -66292,7 +66292,7 @@ _Hit_: 5 (1d6 + 2) piercing damage.
# Merfolk
-- CEO: [Homme-poisson](hd_monsters_homme_poisson.md)
+- Alias: [Homme-poisson](hd_monsters_homme_poisson.md)
- Medium humanoid (merfolk), neutral
- **Armor Class** 11
- **Hit Points** 11 (2d8 + 2)
@@ -66323,7 +66323,7 @@ _Hit_: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hand
# Homunculus
-- CEO: [Homoncule](hd_monsters_homoncule.md)
+- Alias: [Homoncule](hd_monsters_homoncule.md)
- Tiny construct, neutral
- **Armor Class** 13 (natural armor)
- **Hit Points** 5 (2d4)
@@ -66355,7 +66355,7 @@ _Hit_: 1 piercing damage, and the target must succeed on a DC 10 Constitution sa
# Hydra
-- CEO: [Hydre](hd_monsters_hydre.md)
+- Alias: [Hydre](hd_monsters_hydre.md)
- Huge monstrosity, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 172 (15d12 + 75)
@@ -66394,7 +66394,7 @@ _Hit_: 10 (1d10 + 5) piercing damage.
# Hyena
-- CEO: [Hyène](hd_monsters_hyene.md)
+- Alias: [Hyène](hd_monsters_hyene.md)
- Medium beast, unaligned
- **Armor Class** 11
- **Hit Points** 5 (1d8 + 1)
@@ -66425,7 +66425,7 @@ _Hit_: 3 (1d6) piercing damage.
# Giant Hyena
-- CEO: [Hyène géante](hd_monsters_hyene_geante.md)
+- Alias: [Hyène géante](hd_monsters_hyene_geante.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 45 (6d10 + 12)
@@ -66456,7 +66456,7 @@ _Hit_: 10 (2d6 + 3) piercing damage.
# Kobold
-- CEO: [Kobold](hd_monsters_kobold.md)
+- Alias: [Kobold](hd_monsters_kobold.md)
- Small humanoid (kobold), lawful evil
- **Armor Class** 12
- **Hit Points** 5 (2d6 - 2)
@@ -66492,7 +66492,7 @@ _Hit_: 4 (1d4 + 2) bludgeoning damage.
# Kraken
-- CEO: [Kraken](hd_monsters_kraken.md)
+- Alias: [Kraken](hd_monsters_kraken.md)
- Gargantuan monstrosity (titan), chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 472 (27d20 + 189)
@@ -66549,7 +66549,7 @@ The kraken can take 3 legendary actions, choosing from the options below. Only o
# Lamia
-- CEO: [Lamie](hd_monsters_lamie.md)
+- Alias: [Lamie](hd_monsters_lamie.md)
- Large monstrosity, chaotic evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 97 (13d10 + 26)
@@ -66596,7 +66596,7 @@ _Hit_: The target is magically cursed for 1 hour. Until the curse ends, the targ
# Lich
-- CEO: [Liche](hd_monsters_liche.md)
+- Alias: [Liche](hd_monsters_liche.md)
- Medium undead, any evil alignment
- **Armor Class** 17 (natural armor)
- **Hit Points** 135 (18d8 + 54)
@@ -66669,7 +66669,7 @@ The lich can take 3 legendary actions, choosing from the options below. Only one
# Unicorn
-- CEO: [Licorne](hd_monsters_licorne.md)
+- Alias: [Licorne](hd_monsters_licorne.md)
- Large celestial, lawful good
- **Armor Class** 12
- **Hit Points** 67 (9d10 + 18)
@@ -66731,7 +66731,7 @@ The unicorn can take 3 legendary actions, choosing from the options below. Only
# Lion
-- CEO: [Lion](hd_monsters_lion.md)
+- Alias: [Lion](hd_monsters_lion.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 26 (4d10 + 4)
@@ -66772,7 +66772,7 @@ _Hit_: 6 (1d6 + 3) slashing damage.
# Wolf
-- CEO: [Loup](hd_monsters_loup.md)
+- Alias: [Loup](hd_monsters_loup.md)
- Medium beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 11 (2d8 + 2)
@@ -66805,7 +66805,7 @@ _Hit_: 7 (2d4 + 2) piercing damage. If the target is a creature, it must succeed
# Winter Wolf
-- CEO: [Loup arctique](hd_monsters_loup_arctique.md)
+- Alias: [Loup arctique](hd_monsters_loup_arctique.md)
- Large monstrosity, neutral evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 75 (10d10 + 20)
@@ -66843,7 +66843,7 @@ _Hit_: 11 (2d6 + 4) piercing damage. If the target is a creature, it must succee
# Dire Wolf
-- CEO: [Loup sanguinaire](hd_monsters_loup_sanguinaire.md)
+- Alias: [Loup sanguinaire](hd_monsters_loup_sanguinaire.md)
- Large beast, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 37 (5d10 + 10)
@@ -66876,7 +66876,7 @@ _Hit_: 10 (2d6 + 3) piercing damage. If the target is a creature, it must succee
# Werewolf
-- CEO: [Loup-garou](hd_monsters_loup_garou.md)
+- Alias: [Loup-garou](hd_monsters_loup_garou.md)
- 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)
@@ -66920,7 +66920,7 @@ _Hit_: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with
# Lemure
-- CEO: [Lémure](hd_monsters_lemure.md)
+- Alias: [Lémure](hd_monsters_lemure.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 7
- **Hit Points** 13 (3d8)
@@ -66955,7 +66955,7 @@ _Hit_: 2 (1d4) bludgeoning damage.
# Lizard
-- CEO: [Lézard](hd_monsters_lezard.md)
+- Alias: [Lézard](hd_monsters_lezard.md)
- Tiny beast, unaligned
- **Armor Class** 10
- **Hit Points** 2 (1d4)
@@ -66981,7 +66981,7 @@ _Hit_: 1 piercing damage.
# Giant Lizard
-- CEO: [Lézard géant](hd_monsters_lezard_geant.md)
+- Alias: [Lézard géant](hd_monsters_lezard_geant.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 19 (3d10 + 3)
@@ -67007,7 +67007,7 @@ _Hit_: 6 (1d8 + 2) piercing damage.
# Mage
-- CEO: [Mage](hd_monsters_mage.md)
+- Alias: [Mage](hd_monsters_mage.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 12 (15 with
- **Hit Points** 40 (9d8)
@@ -67051,7 +67051,7 @@ _Hit_: 4 (1d4 + 2) piercing damage.
# Magmin
-- CEO: [Magmatique](hd_monsters_magmatique.md)
+- Alias: [Magmatique](hd_monsters_magmatique.md)
- Small elemental, chaotic neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 9 (2d6 + 2)
@@ -67085,7 +67085,7 @@ _Hit_: 7 (2d6) fire damage. If the target is a creature or a flammable object, i
# Thug
-- CEO: [Malfrat](hd_monsters_malfrat.md)
+- Alias: [Malfrat](hd_monsters_malfrat.md)
- Medium humanoid (any race), any non-good alignment
- **Armor Class** 11 (leather armor)
- **Hit Points** 32 (5d8 + 10)
@@ -67122,7 +67122,7 @@ _Hit_: 5 (1d10) piercing damage.
# Mammoth
-- CEO: [Mammouth](hd_monsters_mammouth.md)
+- Alias: [Mammouth](hd_monsters_mammouth.md)
- Huge beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 126 (11d12 + 55)
@@ -67156,7 +67156,7 @@ _Hit_: 29 (4d10 + 7) bludgeoning damage.
# Darkmantle
-- CEO: [Mante obscure](hd_monsters_mante_obscure.md)
+- Alias: [Mante obscure](hd_monsters_mante_obscure.md)
- Small monstrosity, unaligned
- **Armor Class** 11
- **Hit Points** 22 (5d6 + 5)
@@ -67191,7 +67191,7 @@ _Hit_: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target
# Cloaker
-- CEO: [Manteleur](hd_monsters_manteleur.md)
+- Alias: [Manteleur](hd_monsters_manteleur.md)
- Large aberration, chaotic neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 78 (12d10 + 12)
@@ -67236,7 +67236,7 @@ _Hit_: 7 (1d8 + 3) slashing damage.
# Manticore
-- CEO: [Manticore](hd_monsters_manticore.md)
+- Alias: [Manticore](hd_monsters_manticore.md)
- Large monstrosity, lawful evil
- **Armor Class** 14 (natural armor)
- **Hit Points** 68 (8d10 + 24)
@@ -67276,7 +67276,7 @@ _Hit_: 7 (1d8 + 3) piercing damage.
# Marilith
-- CEO: [Marilith](hd_monsters_marilith.md)
+- Alias: [Marilith](hd_monsters_marilith.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 189 (18d10 + 90)
@@ -67326,7 +67326,7 @@ _Hit_: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it
# Cultist
-- CEO: [Membre de secte](hd_monsters_membre_de_secte.md)
+- Alias: [Membre de secte](hd_monsters_membre_de_secte.md)
- Medium humanoid (any race), any non-good alignment
- **Armor Class** 12 (leather armor)
- **Hit Points** 9 (2d8)
@@ -67357,7 +67357,7 @@ _Hit_: 4 (1d6 + 1) slashing damage.
# Merrow
-- CEO: [Merrow](hd_monsters_merrow.md)
+- Alias: [Merrow](hd_monsters_merrow.md)
- Large monstrosity, chaotic evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 45 (6d10 + 12)
@@ -67397,7 +67397,7 @@ _Hit_: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature
# Giant Centipede
-- CEO: [Mille-pattes géant](hd_monsters_mille_pattes_geant.md)
+- Alias: [Mille-pattes géant](hd_monsters_mille_pattes_geant.md)
- Small beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 4 (1d6 + 1)
@@ -67423,7 +67423,7 @@ _Hit_: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Const
# Mimic
-- CEO: [Mimique](hd_monsters_mimique.md)
+- Alias: [Mimique](hd_monsters_mimique.md)
- Medium monstrosity (shapechanger), neutral
- **Armor Class** 12 (natural armor)
- **Hit Points** 58 (9d8 + 18)
@@ -67466,7 +67466,7 @@ _Hit_: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.
# Minotaur
-- CEO: [Minotaure](hd_monsters_minotaure.md)
+- Alias: [Minotaure](hd_monsters_minotaure.md)
- Large monstrosity, chaotic evil
- **Armor Class** 14 (natural armor)
- **Hit Points** 76 (9d10 + 27)
@@ -67505,7 +67505,7 @@ _Hit_: 13 (2d8 + 4) piercing damage.
# Violet Fungus
-- CEO: [Moisissure violette](hd_monsters_moisissure_violette.md)
+- Alias: [Moisissure violette](hd_monsters_moisissure_violette.md)
- Medium plant, unaligned
- **Armor Class** 5
- **Hit Points** 18 (4d8)
@@ -67538,7 +67538,7 @@ _Hit_: 4 (1d8) necrotic damage.
# Mastiff
-- CEO: [Mastiff](hd_monsters_mastiff.md)
+- Alias: [Mastiff](hd_monsters_mastiff.md)
- Medium beast, unaligned
- **Armor Class** 12
- **Hit Points** 5 (1d8 + 1)
@@ -67569,7 +67569,7 @@ _Hit_: 4 (1d6 + 1) piercing damage. If the target is a creature, it must succeed
# Hell Hound
-- CEO: [Molosse infernal](hd_monsters_molosse_infernal.md)
+- Alias: [Molosse infernal](hd_monsters_molosse_infernal.md)
- Medium fiend, lawful evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 45 (7d8 + 14)
@@ -67607,7 +67607,7 @@ Fire-breathing fiends that take the form of powerful dogs, hell hounds commonly
# Mummy
-- CEO: [Momie](hd_monsters_momie.md)
+- Alias: [Momie](hd_monsters_momie.md)
- Medium undead, lawful evil
- **Armor Class** 11 (natural armor)
- **Hit Points** 58 (9d8 + 18)
@@ -67642,7 +67642,7 @@ _Hit_: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the tar
# Mummy Lord
-- CEO: [Momie auguste](hd_monsters_momie_auguste.md)
+- Alias: [Momie auguste](hd_monsters_momie_auguste.md)
- Medium undead, lawful evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 97 (13d8 + 39)
@@ -67713,7 +67713,7 @@ The mummy lord can take 3 legendary actions, choosing from the options below. On
# Mule
-- CEO: [Mule](hd_monsters_mule.md)
+- Alias: [Mule](hd_monsters_mule.md)
- Medium beast, unaligned
- **Armor Class** 10
- **Hit Points** 11 (2d8 + 2)
@@ -67745,7 +67745,7 @@ _Hit_: 4 (1d4 + 2) bludgeoning damage.
# Medusa
-- CEO: [Méduse](hd_monsters_meduse.md)
+- Alias: [Méduse](hd_monsters_meduse.md)
- Medium monstrosity, lawful evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 127 (17d8 + 51)
@@ -67786,7 +67786,7 @@ _Hit_: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.
# Ice Mephit
-- CEO: [Méphite de glace](hd_monsters_mephite_de_glace.md)
+- Alias: [Méphite de glace](hd_monsters_mephite_de_glace.md)
- Small elemental, neutral evil
- **Armor Class** 11
- **Hit Points** 21 (6d6)
@@ -67826,7 +67826,7 @@ _Hit_: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.
# Magma Mephit
-- CEO: [Méphite de magma](hd_monsters_mephite_de_magma.md)
+- Alias: [Méphite de magma](hd_monsters_mephite_de_magma.md)
- Small elemental, neutral evil
- **Armor Class** 11
- **Hit Points** 22 (5d6 + 5)
@@ -67866,7 +67866,7 @@ _Hit_: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.
# Dust Mephit
-- CEO: [Méphite de poussière](hd_monsters_mephite_de_poussiere.md)
+- Alias: [Méphite de poussière](hd_monsters_mephite_de_poussiere.md)
- Small elemental, neutral evil
- **Armor Class** 12
- **Hit Points** 17 (5d6)
@@ -67904,7 +67904,7 @@ _Hit_: 4 (1d4 + 2) slashing damage.
# Steam Mephit
-- CEO: [Méphite de vapeur](hd_monsters_mephite_de_vapeur.md)
+- Alias: [Méphite de vapeur](hd_monsters_mephite_de_vapeur.md)
- Small elemental, neutral evil
- **Armor Class** 10
- **Hit Points** 21 (6d6)
@@ -67940,7 +67940,7 @@ _Hit_: 2 (1d4) slashing damage plus 2 (1d4) fire damage.
# Spirit Naga
-- CEO: [Naga corrupteur](hd_monsters_naga_corrupteur.md)
+- Alias: [Naga corrupteur](hd_monsters_naga_corrupteur.md)
- Large monstrosity, chaotic evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 75 (10d10 + 20)
@@ -67987,7 +67987,7 @@ _Hit_: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitutio
# Guardian Naga
-- CEO: [Naga gardien](hd_monsters_naga_gardien.md)
+- Alias: [Naga gardien](hd_monsters_naga_gardien.md)
- Large monstrosity, lawful good
- **Armor Class** 18 (natural armor)
- **Hit Points** 127 (15d10 + 45)
@@ -68040,7 +68040,7 @@ _Hit_: The target must make a DC 15 Constitution saving throw, taking 45 (10d8)
# Nalfeshnee
-- CEO: [Nalfeshnie](hd_monsters_nalfeshnie.md)
+- Alias: [Nalfeshnie](hd_monsters_nalfeshnie.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 184 (16d10 + 96)
@@ -68084,7 +68084,7 @@ _Hit_: 15 (3d6 + 5) slashing damage.
# Noble
-- CEO: [Noble](hd_monsters_noble.md)
+- Alias: [Noble](hd_monsters_noble.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 15 (breastplate)
- **Hit Points** 9 (2d8)
@@ -68115,7 +68115,7 @@ _Hit_: 5 (1d8 + 1) piercing damage.
# Swarm of Insects
-- CEO: [Nuée d'insectes](hd_monsters_nuee_dinsectes.md)
+- Alias: [Nuée d'insectes](hd_monsters_nuee_dinsectes.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 22 (5d8)
@@ -68147,7 +68147,7 @@ _Hit_: 10 (4d4) piercing damage, or 5 (2d4) piercing damage if the swarm has hal
# Swarm of Bats
-- CEO: [Nuée de chauve-souris](hd_monsters_nuee_de_chauve_souris.md)
+- Alias: [Nuée de chauve-souris](hd_monsters_nuee_de_chauve_souris.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 12
- **Hit Points** 22 (5d8)
@@ -68183,7 +68183,7 @@ _Hit_: 5 (2d4) piercing damage, or 2 (1d4) piercing damage if the swarm has half
# Swarm of Ravens
-- CEO: [Nuée de corbeaux](hd_monsters_nuee_de_corbeaux.md)
+- Alias: [Nuée de corbeaux](hd_monsters_nuee_de_corbeaux.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 12
- **Hit Points** 24 (7d8 - 7)
@@ -68216,7 +68216,7 @@ _Hit_: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half
# Swarm of Quippers
-- CEO: [Nuée de piranhas](hd_monsters_nuee_de_piranhas.md)
+- Alias: [Nuée de piranhas](hd_monsters_nuee_de_piranhas.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 13
- **Hit Points** 28 (8d8 - 8)
@@ -68252,7 +68252,7 @@ _Hit_: 14 (4d6) piercing damage, or 7 (2d6) piercing damage if the swarm has hal
# Swarm of Rats
-- CEO: [Nuée de rats](hd_monsters_nuee_de_rats.md)
+- Alias: [Nuée de rats](hd_monsters_nuee_de_rats.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 10
- **Hit Points** 24 (7d8 - 7)
@@ -68286,7 +68286,7 @@ _Hit_: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half
# Swarm of Poisonous Snakes
-- CEO: [Nuée de serpents venimeux](hd_monsters_nuee_de_serpents_venimeux.md)
+- Alias: [Nuée de serpents venimeux](hd_monsters_nuee_de_serpents_venimeux.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 14
- **Hit Points** 36 (8d8)
@@ -68318,7 +68318,7 @@ _Hit_: 7 (2d6) piercing damage, or 3 (1d6) piercing damage if the swarm has half
# Wight
-- CEO: [Nécrophage](hd_monsters_necrophage.md)
+- Alias: [Nécrophage](hd_monsters_necrophage.md)
- Medium undead, neutral evil
- **Armor Class** 14 (studded leather)
- **Hit Points** 45 (6d8 + 18)
@@ -68362,7 +68362,7 @@ _Hit_: 6 (1d8 + 2) piercing damage.
# Ogre
-- CEO: [Ogre](hd_monsters_ogre.md)
+- Alias: [Ogre](hd_monsters_ogre.md)
- Large giant, chaotic evil
- **Armor Class** 11 (hide armor)
- **Hit Points** 59 (7d10 + 21)
@@ -68392,7 +68392,7 @@ _Hit_: 11 (2d6 + 4) piercing damage.
# Shadow
-- CEO: [Ombre](hd_monsters_ombre.md)
+- Alias: [Ombre](hd_monsters_ombre.md)
- Medium undead, chaotic evil
- **Armor Class** 12
- **Hit Points** 16 (3d8 + 3)
@@ -68431,7 +68431,7 @@ _Hit_: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced b
# Oni
-- CEO: [Oni](hd_monsters_oni.md)
+- Alias: [Oni](hd_monsters_oni.md)
- Large giant, lawful evil
- **Armor Class** 16 (chain mail)
- **Hit Points** 110 (13d10 + 39)
@@ -68479,7 +68479,7 @@ _Hit_: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small o
# Orc
-- CEO: [Orc](hd_monsters_orc.md)
+- Alias: [Orc](hd_monsters_orc.md)
- Medium humanoid (orc), chaotic evil
- **Armor Class** 13 (hide armor)
- **Hit Points** 15 (2d8 + 6)
@@ -68514,7 +68514,7 @@ _Hit_: 6 (1d6 + 3) piercing damage.
# Otyugh
-- CEO: [Otyugh](hd_monsters_otyugh.md)
+- Alias: [Otyugh](hd_monsters_otyugh.md)
- Large aberration, neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 114 (12d10 + 48)
@@ -68553,7 +68553,7 @@ _Hit_: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the targe
# Brown Bear
-- CEO: [Ours brun](hd_monsters_ours_brun.md)
+- Alias: [Ours brun](hd_monsters_ours_brun.md)
- Large beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 34 (4d10 + 12)
@@ -68590,7 +68590,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Black Bear
-- CEO: [Ours noir](hd_monsters_ours_noir.md)
+- Alias: [Ours noir](hd_monsters_ours_noir.md)
- Medium beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 19 (3d8 + 6)
@@ -68627,7 +68627,7 @@ _Hit_: 7 (2d4 + 2) slashing damage.
# Polar Bear
-- CEO: [Ours polaire](hd_monsters_ours_polaire.md)
+- Alias: [Ours polaire](hd_monsters_ours_polaire.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 42 (5d10 + 15)
@@ -68664,7 +68664,7 @@ _Hit_: 12 (2d6 + 5) slashing damage.
# Werebear
-- CEO: [Ours-garou](hd_monsters_ours_garou.md)
+- Alias: [Ours-garou](hd_monsters_ours_garou.md)
- 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)
@@ -68708,7 +68708,7 @@ _Hit_: 10 (1d12 + 4) slashing damage.
# Rust Monster
-- CEO: [Oxydeur](hd_monsters_oxydeur.md)
+- Alias: [Oxydeur](hd_monsters_oxydeur.md)
- Medium monstrosity, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 27 (5d8 + 5)
@@ -68742,7 +68742,7 @@ _Hit_: 5 (1d8 + 1) piercing damage.
# Panther
-- CEO: [Panthère](hd_monsters_panthere.md)
+- Alias: [Panthère](hd_monsters_panthere.md)
- Medium beast, unaligned
- **Armor Class** 12
- **Hit Points** 13 (3d8)
@@ -68779,7 +68779,7 @@ _Hit_: 4 (1d4 + 2) slashing damage.
# Octopus
-- CEO: [Pieuvre](hd_monsters_pieuvre.md)
+- Alias: [Pieuvre](hd_monsters_pieuvre.md)
- Small beast, unaligned
- **Armor Class** 12
- **Hit Points** 3 (1d6)
@@ -68816,7 +68816,7 @@ _Hit_: 1 bludgeoning damage, and the target is grappled (escape DC 10). Until th
# Giant Octopus
-- CEO: [Pieuvre géante](hd_monsters_pieuvre_geante.md)
+- Alias: [Pieuvre géante](hd_monsters_pieuvre_geante.md)
- Large beast, unaligned
- **Armor Class** 11
- **Hit Points** 52 (8d10 + 8)
@@ -68853,7 +68853,7 @@ _Hit_: 10 (2d6 + 3) bludgeoning damage. If the target is a creature, it is grapp
# Quipper
-- CEO: [Piranha](hd_monsters_piranha.md)
+- Alias: [Piranha](hd_monsters_piranha.md)
- Tiny beast, unaligned
- **Armor Class** 13
- **Hit Points** 1 (1d4 - 1)
@@ -68885,7 +68885,7 @@ _Hit_: 1 piercing damage.
# Planetar
-- CEO: [Planétar](hd_monsters_planetar.md)
+- Alias: [Planétar](hd_monsters_planetar.md)
- Large celestial, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 200 (16d10 + 112)
@@ -68935,7 +68935,7 @@ _Hit_: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.
# Plesiosaurus
-- CEO: [Plésiosaure](hd_monsters_plesiosaure.md)
+- Alias: [Plésiosaure](hd_monsters_plesiosaure.md)
- Large beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 68 (8d10 + 24)
@@ -68966,7 +68966,7 @@ _Hit_: 14 (3d6 + 4) piercing damage.
# Pony
-- CEO: [Poney](hd_monsters_poney.md)
+- Alias: [Poney](hd_monsters_poney.md)
- Medium beast, unaligned
- **Armor Class** 10
- **Hit Points** 11 (2d8 + 2)
@@ -68992,7 +68992,7 @@ _Hit_: 7 (2d4 + 2) bludgeoning damage.
# Black Pudding
-- CEO: [Pouding noir](hd_monsters_pouding_noir.md)
+- Alias: [Pouding noir](hd_monsters_pouding_noir.md)
- Large ooze, unaligned
- **Armor Class** 7
- **Hit Points** 85 (10d10 + 30)
@@ -69032,7 +69032,7 @@ _Hit_: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, no
# Pseudodragon
-- CEO: [Pseudodragon](hd_monsters_pseudodragon.md)
+- Alias: [Pseudodragon](hd_monsters_pseudodragon.md)
- Tiny dragon, neutral good
- **Armor Class** 13 (natural armor)
- **Hit Points** 7 (2d4 + 2)
@@ -69071,7 +69071,7 @@ _Hit_: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Const
# Giant Fire Beetle
-- CEO: [Punaise de feu géante](hd_monsters_punaise_de_feu_geante.md)
+- Alias: [Punaise de feu géante](hd_monsters_punaise_de_feu_geante.md)
- Small beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 4 (1d6 + 1)
@@ -69101,7 +69101,7 @@ _Hit_: 2 (1d6 - 1) slashing damage.
# Pegasus
-- CEO: [Pégase](hd_monsters_pegase.md)
+- Alias: [Pégase](hd_monsters_pegase.md)
- Large celestial, chaotic good
- **Armor Class** 12
- **Hit Points** 59 (7d10 + 21)
@@ -69129,7 +69129,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage.
# Quasit
-- CEO: [Quasit](hd_monsters_quasit.md)
+- Alias: [Quasit](hd_monsters_quasit.md)
- Tiny fiend (demon, shapechanger), chaotic evil
- **Armor Class** 13
- **Hit Points** 7 (3d4)
@@ -69169,7 +69169,7 @@ _Hit_: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Const
# Rakshasa
-- CEO: [Rakshasa](hd_monsters_rakshasa.md)
+- Alias: [Rakshasa](hd_monsters_rakshasa.md)
- Medium fiend, lawful evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 110 (13d8 + 52)
@@ -69212,7 +69212,7 @@ _Hit_: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature
# Rat
-- CEO: [Rat](hd_monsters_rat.md)
+- Alias: [Rat](hd_monsters_rat.md)
- Tiny beast, unaligned
- **Armor Class** 10
- **Hit Points** 1 (1d4 - 1)
@@ -69242,7 +69242,7 @@ _Hit_: 1 piercing damage.
# Giant Rat
-- CEO: [Rat géant](hd_monsters_rat_geant.md)
+- Alias: [Rat géant](hd_monsters_rat_geant.md)
- Small beast, unaligned
- **Armor Class** 12
- **Hit Points** 7 (2d6)
@@ -69274,7 +69274,7 @@ _Hit_: 4 (1d4 + 2) piercing damage.
# Wererat
-- CEO: [Rat-garou](hd_monsters_rat_garou.md)
+- Alias: [Rat-garou](hd_monsters_rat_garou.md)
- Medium humanoid (human, shapechanger), lawful evil
- **Armor Class** 12
- **Hit Points** 33 (6d8 + 6)
@@ -69318,7 +69318,7 @@ _Hit_: 5 (1d6 + 2) piercing damage.
# Reef Shark
-- CEO: [Requin de récif](hd_monsters_requin_de_recif.md)
+- Alias: [Requin de récif](hd_monsters_requin_de_recif.md)
- Medium beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 22 (4d8 + 4)
@@ -69351,7 +69351,7 @@ _Hit_: 6 (1d8 + 2) piercing damage.
# Giant Shark
-- CEO: [Requin géant](hd_monsters_requin_geant.md)
+- Alias: [Requin géant](hd_monsters_requin_geant.md)
- Huge beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 126 (11d12 + 55)
@@ -69384,7 +69384,7 @@ _Hit_: 22 (3d10 + 6) piercing damage.
# Hunter Shark
-- CEO: [Requin chasseur](hd_monsters_requin_chasseur.md)
+- Alias: [Requin chasseur](hd_monsters_requin_chasseur.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 45 (6d10 + 12)
@@ -69417,7 +69417,7 @@ _Hit_: 13 (2d8 + 4) piercing damage.
# Rhinoceros
-- CEO: [Rhinocéros](hd_monsters_rhinoceros.md)
+- Alias: [Rhinocéros](hd_monsters_rhinoceros.md)
- Large beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 45 (6d10 + 12)
@@ -69447,7 +69447,7 @@ _Hit_: 14 (2d8 + 5) bludgeoning damage.
# Roc
-- CEO: [Roc](hd_monsters_roc.md)
+- Alias: [Roc](hd_monsters_roc.md)
- Gargantuan monstrosity, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 248 (16d20 + 80)
@@ -69485,7 +69485,7 @@ _Hit_: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19).
# Commoner
-- CEO: [Roturier](hd_monsters_roturier.md)
+- Alias: [Roturier](hd_monsters_roturier.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 10
- **Hit Points** 4 (1d8)
@@ -69511,7 +69511,7 @@ _Hit_: 2 (1d4) bludgeoning damage.
# Remorhaz
-- CEO: [Remorhaz](hd_monsters_remorhaz.md)
+- Alias: [Remorhaz](hd_monsters_remorhaz.md)
- Huge monstrosity, unaligned
- **Armor Class** 17 (natural armor)
- **Hit Points** 195 (17d12 + 85)
@@ -69544,7 +69544,7 @@ _Hit_: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is
# Sahuagin
-- CEO: [Sahuagin](hd_monsters_sahuagin.md)
+- Alias: [Sahuagin](hd_monsters_sahuagin.md)
- Medium humanoid (sahuagin), lawful evil
- **Armor Class** 12 (natural armor)
- **Hit Points** 22 (4d8 + 4)
@@ -69589,7 +69589,7 @@ _Hit_: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with
# Salamander
-- CEO: [Salamandre](hd_monsters_salamandre.md)
+- Alias: [Salamandre](hd_monsters_salamandre.md)
- Large elemental, neutral evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 90 (12d10 + 24)
@@ -69630,7 +69630,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target
# Boar
-- CEO: [Sanglier](hd_monsters_sanglier.md)
+- Alias: [Sanglier](hd_monsters_sanglier.md)
- Medium beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 11 (2d8 + 2)
@@ -69662,7 +69662,7 @@ _Hit_: 4 (1d6 + 1) slashing damage.
# Giant Boar
-- CEO: [Sanglier géant](hd_monsters_sanglier_geant.md)
+- Alias: [Sanglier géant](hd_monsters_sanglier_geant.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 42 (5d10 + 15)
@@ -69694,7 +69694,7 @@ _Hit_: 10 (2d6 + 3) slashing damage.
# Wereboar
-- CEO: [Sanglier-garou](hd_monsters_sanglier_garou.md)
+- Alias: [Sanglier-garou](hd_monsters_sanglier_garou.md)
- 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)
@@ -69736,7 +69736,7 @@ _Hit_: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succee
# Satyr
-- CEO: [Satyre](hd_monsters_satyre.md)
+- Alias: [Satyre](hd_monsters_satyre.md)
- Medium fey, chaotic neutral
- **Armor Class** 14 (leather armor)
- **Hit Points** 31 (7d8)
@@ -69775,7 +69775,7 @@ _Hit_: 6 (1d6 + 3) piercing damage.
# Scorpion
-- CEO: [Scorpion](hd_monsters_scorpion.md)
+- Alias: [Scorpion](hd_monsters_scorpion.md)
- Tiny beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 1 (1d4 - 1)
@@ -69801,7 +69801,7 @@ _Hit_: 1 piercing damage, and the target must make a DC 9 Constitution saving th
# Giant Scorpion
-- CEO: [Scorpion géant](hd_monsters_scorpion_geant.md)
+- Alias: [Scorpion géant](hd_monsters_scorpion_geant.md)
- Large beast, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 52 (7d10 + 14)
@@ -69833,7 +69833,7 @@ _Hit_: 7 (1d10 + 2) piercing damage, and the target must make a DC 12 Constituti
# Constrictor Snake
-- CEO: [Serpent constricteur](hd_monsters_serpent_constricteur.md)
+- Alias: [Serpent constricteur](hd_monsters_serpent_constricteur.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 13 (2d10 + 2)
@@ -69863,7 +69863,7 @@ _Hit_: 6 (1d8 + 2) bludgeoning damage, and the target is grappled (escape DC 14)
# Giant Constrictor Snake
-- CEO: [Serpent constricteur géant](hd_monsters_serpent_constricteur_geant.md)
+- Alias: [Serpent constricteur géant](hd_monsters_serpent_constricteur_geant.md)
- Huge beast, unaligned
- **Armor Class** 12
- **Hit Points** 60 (8d12 + 8)
@@ -69894,7 +69894,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage, and the target is grappled (escape DC 16
# Poisonous Snake
-- CEO: [Serpent venimeux](hd_monsters_serpent_venimeux.md)
+- Alias: [Serpent venimeux](hd_monsters_serpent_venimeux.md)
- Tiny beast, unaligned
- **Armor Class** 13
- **Hit Points** 2 (1d4)
@@ -69920,7 +69920,7 @@ _Hit_: 1 piercing damage, and the target must make a DC 10 Constitution saving t
# Giant Poisonous Snake
-- CEO: [Serpent venimeux géant](hd_monsters_serpent_venimeux_geant.md)
+- Alias: [Serpent venimeux géant](hd_monsters_serpent_venimeux_geant.md)
- Medium beast, unaligned
- **Armor Class** 14
- **Hit Points** 11 (2d8 + 2)
@@ -69947,7 +69947,7 @@ _Hit_: 6 (1d4 + 4) piercing damage, and the target must make a DC 11 Constitutio
# Flying Snake
-- CEO: [Serpent volant](hd_monsters_serpent_volant.md)
+- Alias: [Serpent volant](hd_monsters_serpent_volant.md)
- Tiny beast, unaligned
- **Armor Class** 14
- **Hit Points** 5 (2d4)
@@ -69977,7 +69977,7 @@ _Hit_: 1 piercing damage plus 7 (3d4) poison damage.
# Giant Ape
-- CEO: [Singe géant](hd_monsters_singe_geant.md)
+- Alias: [Singe géant](hd_monsters_singe_geant.md)
- Huge beast, unaligned
- **Armor Class** 12
- **Hit Points** 157 (15d12 + 60)
@@ -70010,7 +70010,7 @@ _Hit_: 30 (7d6 + 6) bludgeoning damage.
# Solar
-- CEO: [Solar](hd_monsters_solar.md)
+- Alias: [Solar](hd_monsters_solar.md)
- Large celestial, lawful good
- **Armor Class** 21 (natural armor)
- **Hit Points** 243 (18d10 + 144)
@@ -70077,7 +70077,7 @@ The solar can take 3 legendary actions, choosing from the options below. Only on
# Specter
-- CEO: [Spectre](hd_monsters_spectre.md)
+- Alias: [Spectre](hd_monsters_spectre.md)
- Medium undead, chaotic evil
- **Armor Class** 12
- **Hit Points** 22 (5d8)
@@ -70112,7 +70112,7 @@ _Hit_: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution
# Skeleton
-- CEO: [Squelette](hd_monsters_squelette.md)
+- Alias: [Squelette](hd_monsters_squelette.md)
- Medium undead, lawful evil
- **Armor Class** 13 (armor scraps)
- **Hit Points** 13 (2d8 + 4)
@@ -70145,7 +70145,7 @@ _Hit_: 5 (1d6 + 2) piercing damage.
# Warhorse Skeleton
-- CEO: [Squelette cheval de guerre](hd_monsters_squelette_cheval_de_guerre.md)
+- Alias: [Squelette cheval de guerre](hd_monsters_squelette_cheval_de_guerre.md)
- Large undead, lawful evil
- **Armor Class** 13 (barding scraps)
- **Hit Points** 22 (3d10 + 6)
@@ -70174,7 +70174,7 @@ _Hit_: 11 (2d6 + 4) bludgeoning damage.
# Minotaur Skeleton
-- CEO: [Squelette minotaure](hd_monsters_squelette_minotaure.md)
+- Alias: [Squelette minotaure](hd_monsters_squelette_minotaure.md)
- Large undead, lawful evil
- **Armor Class** 12 (natural armor)
- **Hit Points** 67 (9d10 + 18)
@@ -70211,7 +70211,7 @@ _Hit_: 13 (2d8 + 4) piercing damage.
# Stirge
-- CEO: [Strige](hd_monsters_strige.md)
+- Alias: [Strige](hd_monsters_strige.md)
- Tiny beast, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 2 (1d4)
@@ -70237,7 +70237,7 @@ _Hit_: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While
# Succubus
-- CEO: [Succube/Incube](hd_monsters_succubeincube.md)
+- Alias: [Succube/Incube](hd_monsters_succubeincube.md)
- Medium fiend (shapechanger), neutral evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 66 (12d8 + 12)
@@ -70277,7 +70277,7 @@ _Hit_: 6 (1d6 + 3) slashing damage.
# Treant
-- CEO: [Sylvanien](hd_monsters_sylvanien.md)
+- Alias: [Sylvanien](hd_monsters_sylvanien.md)
- Huge plant, chaotic good
- **Armor Class** 16 (natural armor)
- **Hit Points** 138 (12d12 + 60)
@@ -70319,7 +70319,7 @@ _Hit_: 28 (4d10 + 6) bludgeoning damage.
# Rug of Smothering
-- CEO: [Tapis étrangleur](hd_monsters_tapis_etrangleur.md)
+- Alias: [Tapis étrangleur](hd_monsters_tapis_etrangleur.md)
- Large construct, unaligned
- **Armor Class** 12
- **Hit Points** 33 (6d10)
@@ -70355,7 +70355,7 @@ _Hit_: The creature is grappled (escape DC 13). Until this grapple ends, the tar
# Tarrasque
-- CEO: [Tarasque](hd_monsters_tarasque.md)
+- Alias: [Tarasque](hd_monsters_tarasque.md)
- Gargantuan monstrosity (titan), unaligned
- **Armor Class** 25 (natural armor)
- **Hit Points** 676 (33d20 + 330)
@@ -70422,7 +70422,7 @@ The tarrasque can take 3 legendary actions, choosing from the options below. Onl
# Shambling Mound
-- CEO: [Tertre errant](hd_monsters_tertre_errant.md)
+- Alias: [Tertre errant](hd_monsters_tertre_errant.md)
- Large plant, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 136 (16d10 + 48)
@@ -70460,7 +70460,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage.
# Tiger
-- CEO: [Tigre](hd_monsters_tigre.md)
+- Alias: [Tigre](hd_monsters_tigre.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 37 (5d10 + 10)
@@ -70497,7 +70497,7 @@ _Hit_: 7 (1d8 + 3) slashing damage.
# Saber-Toothed Tiger
-- CEO: [Tigre à dents de sabre](hd_monsters_tigre_a_dents_de_sabre.md)
+- Alias: [Tigre à dents de sabre](hd_monsters_tigre_a_dents_de_sabre.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 52 (7d10 + 14)
@@ -70534,7 +70534,7 @@ _Hit_: 12 (2d6 + 5) slashing damage.
# Weretiger
-- CEO: [Tigre-garou](hd_monsters_tigre_garou.md)
+- Alias: [Tigre-garou](hd_monsters_tigre_garou.md)
- Medium humanoid (human, shapechanger), neutral
- **Armor Class** 12
- **Hit Points** 120 (16d8 + 48)
@@ -70584,7 +70584,7 @@ _Hit_: 6 (1d8 + 2) piercing damage.
# Grimlock
-- CEO: [Torve](hd_monsters_torve.md)
+- Alias: [Torve](hd_monsters_torve.md)
- Medium humanoid (grimlock), neutral evil
- **Armor Class** 11
- **Hit Points** 11 (2d8 + 2)
@@ -70620,7 +70620,7 @@ _Hit_: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.
# Invisible Stalker
-- CEO: [Traqueur invisible](hd_monsters_traqueur_invisible.md)
+- Alias: [Traqueur invisible](hd_monsters_traqueur_invisible.md)
- Medium elemental, neutral
- **Armor Class** 14
- **Hit Points** 104 (16d8 + 32)
@@ -70658,7 +70658,7 @@ _Hit_: 10 (2d6 + 3) bludgeoning damage.
# Triceratops
-- CEO: [Tricératops](hd_monsters_triceratops.md)
+- Alias: [Tricératops](hd_monsters_triceratops.md)
- Huge beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 95 (10d12 + 30)
@@ -70692,7 +70692,7 @@ _Hit_: 22 (3d10 + 6) bludgeoning damage
# Troll
-- CEO: [Troll](hd_monsters_troll.md)
+- Alias: [Troll](hd_monsters_troll.md)
- Large giant, chaotic evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 84 (8d10 + 40)
@@ -70731,7 +70731,7 @@ _Hit_: 11 (2d6 + 4) slashing damage.
# Tyrannosaurus Rex
-- CEO: [Tyrannosaure](hd_monsters_tyrannosaure.md)
+- Alias: [Tyrannosaure](hd_monsters_tyrannosaure.md)
- Huge beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 136 (13d12 + 52)
@@ -70764,7 +70764,7 @@ _Hit_: 20 (3d8 + 7) bludgeoning damage.
# Vampire
-- CEO: [Vampire](hd_monsters_vampire.md)
+- Alias: [Vampire](hd_monsters_vampire.md)
- Medium undead (shapechanger), lawful evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 144 (17d8 + 68)
@@ -70835,7 +70835,7 @@ The vampire can take 3 legendary actions, choosing from the options below. Only
# Vampire Spawn
-- CEO: [Vampirien](hd_monsters_vampirien.md)
+- Alias: [Vampirien](hd_monsters_vampirien.md)
- Medium undead, neutral evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 82 (11d8 + 33)
@@ -70886,7 +70886,7 @@ _Hit_: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hi
# Gray Ooze
-- CEO: [Vase grise](hd_monsters_vase_grise.md)
+- Alias: [Vase grise](hd_monsters_vase_grise.md)
- Medium ooze, unaligned
- **Armor Class** 8
- **Hit Points** 22 (3d8 + 9)
@@ -70925,7 +70925,7 @@ _Hit_: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the targe
# Vulture
-- CEO: [Vautour](hd_monsters_vautour.md)
+- Alias: [Vautour](hd_monsters_vautour.md)
- Medium beast, unaligned
- **Armor Class** 10
- **Hit Points** 5 (1d8 + 1)
@@ -70958,7 +70958,7 @@ _Hit_: 2 (1d4) piercing damage.
# Giant Vulture
-- CEO: [Vautour géant](hd_monsters_vautour_geant.md)
+- Alias: [Vautour géant](hd_monsters_vautour_geant.md)
- Large beast, neutral evil
- **Armor Class** 10
- **Hit Points** 22 (3d10 + 6)
@@ -70997,7 +70997,7 @@ _Hit_: 9 (2d6 + 2) slashing damage.
# Purple Worm
-- CEO: [Ver pourpre](hd_monsters_ver_pourpre.md)
+- Alias: [Ver pourpre](hd_monsters_ver_pourpre.md)
- Gargantuan monstrosity, unaligned
- **Armor Class** 18 (natural armor)
- **Hit Points** 247 (15d20 + 90)
@@ -71034,7 +71034,7 @@ _Hit_: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constituti
# Wyvern
-- CEO: [Vouivre](hd_monsters_vouivre.md)
+- Alias: [Vouivre](hd_monsters_vouivre.md)
- Large dragon, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 110 (13d10 + 39)
@@ -71071,7 +71071,7 @@ _Hit_: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution s
# Vrock
-- CEO: [Vrock](hd_monsters_vrock.md)
+- Alias: [Vrock](hd_monsters_vrock.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 104 (11d10 + 44)
@@ -71117,7 +71117,7 @@ _Hit_: 14 (2d10 + 3) slashing damage.
# Veteran
-- CEO: [Vétéran](hd_monsters_veteran.md)
+- Alias: [Vétéran](hd_monsters_veteran.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 17 (splint)
- **Hit Points** 58 (9d8 + 18)
@@ -71154,7 +71154,7 @@ _Hit_: 6 (1d10 + 1) piercing damage.
# Worg
-- CEO: [Worg](hd_monsters_worg.md)
+- Alias: [Worg](hd_monsters_worg.md)
- Large monstrosity, neutral evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 26 (4d10 + 4)
@@ -71185,7 +71185,7 @@ _Hit_: 10 (2d6 + 3) piercing damage. If the target is a creature, it must succee
# Xorn
-- CEO: [Xorn](hd_monsters_xorn.md)
+- Alias: [Xorn](hd_monsters_xorn.md)
- Medium elemental, neutral
- **Armor Class** 19 (natural armor)
- **Hit Points** 73 (7d8 + 42)
@@ -71227,7 +71227,7 @@ _Hit_: 13 (3d6 + 3) piercing damage.
# Zombie
-- CEO: [Zombi](hd_monsters_zombi.md)
+- Alias: [Zombi](hd_monsters_zombi.md)
- Medium undead, neutral evil
- **Armor Class** 8
- **Hit Points** 22 (3d8 + 9)
@@ -71260,7 +71260,7 @@ _Hit_: 4 (1d6 + 1) bludgeoning damage.
# Ogre Zombie
-- CEO: [Zombi ogre](hd_monsters_zombi_ogre.md)
+- Alias: [Zombi ogre](hd_monsters_zombi_ogre.md)
- Large undead, neutral evil
- **Armor Class** 8
- **Hit Points** 85 (9d10 + 36)
@@ -71293,7 +71293,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage.
# Wraith
-- CEO: [Âme en peine](hd_monsters_ame_en_peine.md)
+- Alias: [Âme en peine](hd_monsters_ame_en_peine.md)
- Medium undead, neutral evil
- **Armor Class** 13
- **Hit Points** 67 (9d8 + 27)
@@ -71330,7 +71330,7 @@ _Hit_: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitu
# Scout
-- CEO: [Éclaireur](hd_monsters_eclaireur.md)
+- Alias: [Éclaireur](hd_monsters_eclaireur.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 13 (leather armor)
- **Hit Points** 16 (3d8 + 3)
@@ -71367,7 +71367,7 @@ _Hit_: 6 (1d8 + 2) piercing damage.
# Efreeti
-- CEO: [Éfrit](hd_monsters_efrit.md)
+- Alias: [Éfrit](hd_monsters_efrit.md)
- Large elemental, lawful evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 200 (16d10 + 112)
@@ -71413,7 +71413,7 @@ _Hit_: 17 (5d6) fire damage.
# Elk
-- CEO: [Élan](hd_monsters_elan.md)
+- Alias: [Élan](hd_monsters_elan.md)
- Large beast, unaligned
- **Armor Class** 10
- **Hit Points** 13 (2d10 + 2)
@@ -71447,7 +71447,7 @@ _Hit_: 8 (2d4 + 3) bludgeoning damage.
# Giant Elk
-- CEO: [Élan géant](hd_monsters_elan_geant.md)
+- Alias: [Élan géant](hd_monsters_elan_geant.md)
- Huge beast, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 42 (5d12 + 10)
@@ -71482,7 +71482,7 @@ _Hit_: 22 (4d8 + 4) bludgeoning damage.
# Air Elemental
-- CEO: [Élémentaire de l'air](hd_monsters_elementaire_de_lair.md)
+- Alias: [Élémentaire de l'air](hd_monsters_elementaire_de_lair.md)
- Large elemental, neutral
- **Armor Class** 15
- **Hit Points** 90 (12d10 + 24)
@@ -71519,7 +71519,7 @@ _Hit_: 14 (2d8 + 5) bludgeoning damage.
# Water Elemental
-- CEO: [Élémentaire de l'eau](hd_monsters_elementaire_de_leau.md)
+- Alias: [Élémentaire de l'eau](hd_monsters_elementaire_de_leau.md)
- Large elemental, neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 114 (12d10 + 48)
@@ -71558,7 +71558,7 @@ _Hit_: 13 (2d8 + 4) bludgeoning damage.
# Earth Elemental
-- CEO: [Élémentaire de la terre](hd_monsters_elementaire_de_la_terre.md)
+- Alias: [Élémentaire de la terre](hd_monsters_elementaire_de_la_terre.md)
- Large elemental, neutral
- **Armor Class** 17 (natural armor)
- **Hit Points** 126 (12d10 + 60)
@@ -71596,7 +71596,7 @@ _Hit_: 14 (2d8 + 5) bludgeoning damage.
# Fire Elemental
-- CEO: [Élémentaire du feu](hd_monsters_elementaire_du_feu.md)
+- Alias: [Élémentaire du feu](hd_monsters_elementaire_du_feu.md)
- Large elemental, neutral
- **Armor Class** 13
- **Hit Points** 102 (12d10 + 36)
@@ -71635,7 +71635,7 @@ _Hit_: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable obje
# Elephant
-- CEO: [Éléphant](hd_monsters_elephant.md)
+- Alias: [Éléphant](hd_monsters_elephant.md)
- Huge beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 76 (8d12 + 24)
@@ -71669,7 +71669,7 @@ _Hit_: 22 (3d10 + 6) bludgeoning damage.
# Killer Whale
-- CEO: [Épaulard](hd_monsters_epaulard.md)
+- Alias: [Épaulard](hd_monsters_epaulard.md)
- Huge beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 90 (12d12 + 12)
@@ -71704,7 +71704,7 @@ _Hit_: 21 (5d6 + 4) piercing damage.
# Flying Sword
-- CEO: [Épée volante](hd_monsters_epee_volante.md)
+- Alias: [Épée volante](hd_monsters_epee_volante.md)
- Small construct, unaligned
- **Armor Class** 17 (natural armor)
- **Hit Points** 17 (5d6)
@@ -71739,7 +71739,7 @@ _Hit_: 5 (1d8 + 1) slashing damage.
# Erinyes
-- CEO: [Érinye](hd_monsters_erinye.md)
+- Alias: [Érinye](hd_monsters_erinye.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 18 (plate)
- **Hit Points** 153 (18d8 + 72)
diff --git a/Data/HD/srd_monsters_aboleth.md b/Data/HD/srd_monsters_aboleth.md
index 589c37dc..1b7e8f77 100644
--- a/Data/HD/srd_monsters_aboleth.md
+++ b/Data/HD/srd_monsters_aboleth.md
@@ -4,7 +4,7 @@
# Aboleth
-- CEO: [Aboleth](hd_monsters_aboleth.md)
+- Alias: [Aboleth](hd_monsters_aboleth.md)
- Source: (SRD p261)
- Large aberration, lawful evil
- **Armor Class** 17 (natural armor)
diff --git a/Data/HD/srd_monsters_acolyte.md b/Data/HD/srd_monsters_acolyte.md
index 85fe097c..1c1ca8ad 100644
--- a/Data/HD/srd_monsters_acolyte.md
+++ b/Data/HD/srd_monsters_acolyte.md
@@ -4,7 +4,7 @@
# Acolyte
-- CEO: [Acolyte](hd_monsters_acolyte.md)
+- Alias: [Acolyte](hd_monsters_acolyte.md)
- Source: (SRD p395)
- Medium humanoid (any race), any alignment
- **Armor Class** 10
diff --git a/Data/HD/srd_monsters_adult_black_dragon.md b/Data/HD/srd_monsters_adult_black_dragon.md
index 2a5aca29..079bcd58 100644
--- a/Data/HD/srd_monsters_adult_black_dragon.md
+++ b/Data/HD/srd_monsters_adult_black_dragon.md
@@ -4,7 +4,7 @@
# Adult Black Dragon
-- CEO: [Dragon noir adulte](hd_monsters_dragon_noir_adulte.md)
+- Alias: [Dragon noir adulte](hd_monsters_dragon_noir_adulte.md)
- Huge dragon, chaotic evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 195 (17d12 + 85)
diff --git a/Data/HD/srd_monsters_adult_blue_dragon.md b/Data/HD/srd_monsters_adult_blue_dragon.md
index 68ad3fe2..d9ea816a 100644
--- a/Data/HD/srd_monsters_adult_blue_dragon.md
+++ b/Data/HD/srd_monsters_adult_blue_dragon.md
@@ -4,7 +4,7 @@
# Adult Blue Dragon
-- CEO: [Dragon bleu adulte](hd_monsters_dragon_bleu_adulte.md)
+- Alias: [Dragon bleu adulte](hd_monsters_dragon_bleu_adulte.md)
- Huge dragon, lawful evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 225 (18d12 + 108)
diff --git a/Data/HD/srd_monsters_adult_brass_dragon.md b/Data/HD/srd_monsters_adult_brass_dragon.md
index 0a2224b8..1264d025 100644
--- a/Data/HD/srd_monsters_adult_brass_dragon.md
+++ b/Data/HD/srd_monsters_adult_brass_dragon.md
@@ -4,7 +4,7 @@
# Adult Brass Dragon
-- CEO: [Dragon d'airain adulte](hd_monsters_dragon_dairain_adulte.md)
+- Alias: [Dragon d'airain adulte](hd_monsters_dragon_dairain_adulte.md)
- Huge dragon, chaotic good
- **Armor Class** 18 (natural armor)
- **Hit Points** 172 (15d12 + 75)
diff --git a/Data/HD/srd_monsters_adult_bronze_dragon.md b/Data/HD/srd_monsters_adult_bronze_dragon.md
index cb667e7f..ff9dcdb9 100644
--- a/Data/HD/srd_monsters_adult_bronze_dragon.md
+++ b/Data/HD/srd_monsters_adult_bronze_dragon.md
@@ -4,7 +4,7 @@
# Adult Bronze Dragon
-- CEO: [Dragon de bronze adulte](hd_monsters_dragon_de_bronze_adulte.md)
+- Alias: [Dragon de bronze adulte](hd_monsters_dragon_de_bronze_adulte.md)
- Huge dragon, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 212 (17d12 + 102)
diff --git a/Data/HD/srd_monsters_adult_copper_dragon.md b/Data/HD/srd_monsters_adult_copper_dragon.md
index 82979848..7c3dcdca 100644
--- a/Data/HD/srd_monsters_adult_copper_dragon.md
+++ b/Data/HD/srd_monsters_adult_copper_dragon.md
@@ -4,7 +4,7 @@
# Adult Copper Dragon
-- CEO: [Dragon de cuivre adulte](hd_monsters_dragon_de_cuivre_adulte.md)
+- Alias: [Dragon de cuivre adulte](hd_monsters_dragon_de_cuivre_adulte.md)
- Huge dragon, chaotic good
- **Armor Class** 18 (natural armor)
- **Hit Points** 184 (16d12 + 80)
diff --git a/Data/HD/srd_monsters_adult_gold_dragon.md b/Data/HD/srd_monsters_adult_gold_dragon.md
index 4e5db47d..dafb7c4e 100644
--- a/Data/HD/srd_monsters_adult_gold_dragon.md
+++ b/Data/HD/srd_monsters_adult_gold_dragon.md
@@ -4,7 +4,7 @@
# Adult Gold Dragon
-- CEO: [Dragon d'or adulte](hd_monsters_dragon_dor_adulte.md)
+- Alias: [Dragon d'or adulte](hd_monsters_dragon_dor_adulte.md)
- Huge dragon, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 256 (19d12 + 133)
diff --git a/Data/HD/srd_monsters_adult_green_dragon.md b/Data/HD/srd_monsters_adult_green_dragon.md
index ded3fd03..1d7f03ae 100644
--- a/Data/HD/srd_monsters_adult_green_dragon.md
+++ b/Data/HD/srd_monsters_adult_green_dragon.md
@@ -4,7 +4,7 @@
# Adult Green Dragon
-- CEO: [Dragon vert adulte](hd_monsters_dragon_vert_adulte.md)
+- Alias: [Dragon vert adulte](hd_monsters_dragon_vert_adulte.md)
- Huge dragon, lawful evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 207 (18d12 + 90)
diff --git a/Data/HD/srd_monsters_adult_red_dragon.md b/Data/HD/srd_monsters_adult_red_dragon.md
index dd0659d9..55e70935 100644
--- a/Data/HD/srd_monsters_adult_red_dragon.md
+++ b/Data/HD/srd_monsters_adult_red_dragon.md
@@ -4,7 +4,7 @@
# Adult Red Dragon
-- CEO: [Dragon rouge adulte](hd_monsters_dragon_rouge_adulte.md)
+- Alias: [Dragon rouge adulte](hd_monsters_dragon_rouge_adulte.md)
- Huge dragon, chaotic evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 256 (19d12 + 133)
diff --git a/Data/HD/srd_monsters_adult_silver_dragon.md b/Data/HD/srd_monsters_adult_silver_dragon.md
index 4e0e1b87..7cac9a17 100644
--- a/Data/HD/srd_monsters_adult_silver_dragon.md
+++ b/Data/HD/srd_monsters_adult_silver_dragon.md
@@ -4,7 +4,7 @@
# Adult Silver Dragon
-- CEO: [Dragon d'argent adulte](hd_monsters_dragon_dargent_adulte.md)
+- Alias: [Dragon d'argent adulte](hd_monsters_dragon_dargent_adulte.md)
- Huge dragon, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 243 (18d12 + 126)
diff --git a/Data/HD/srd_monsters_adult_white_dragon.md b/Data/HD/srd_monsters_adult_white_dragon.md
index d649d279..a8b58464 100644
--- a/Data/HD/srd_monsters_adult_white_dragon.md
+++ b/Data/HD/srd_monsters_adult_white_dragon.md
@@ -4,7 +4,7 @@
# Adult White Dragon
-- CEO: [Dragon blanc adulte](hd_monsters_dragon_blanc_adulte.md)
+- Alias: [Dragon blanc adulte](hd_monsters_dragon_blanc_adulte.md)
- Huge dragon, chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 200 (16d12 + 96)
diff --git a/Data/HD/srd_monsters_air_elemental.md b/Data/HD/srd_monsters_air_elemental.md
index 4cb4b152..418f7faf 100644
--- a/Data/HD/srd_monsters_air_elemental.md
+++ b/Data/HD/srd_monsters_air_elemental.md
@@ -4,7 +4,7 @@
# Air Elemental
-- CEO: [Élémentaire de l'air](hd_monsters_elementaire_de_lair.md)
+- Alias: [Élémentaire de l'air](hd_monsters_elementaire_de_lair.md)
- Large elemental, neutral
- **Armor Class** 15
- **Hit Points** 90 (12d10 + 24)
diff --git a/Data/HD/srd_monsters_ancient_black_dragon.md b/Data/HD/srd_monsters_ancient_black_dragon.md
index a75c8053..77ae8e0d 100644
--- a/Data/HD/srd_monsters_ancient_black_dragon.md
+++ b/Data/HD/srd_monsters_ancient_black_dragon.md
@@ -4,7 +4,7 @@
# Ancient Black Dragon
-- CEO: [Dragon noir vénérable](hd_monsters_dragon_noir_venerable.md)
+- Alias: [Dragon noir vénérable](hd_monsters_dragon_noir_venerable.md)
- Gargantuan dragon, chaotic evil
- **Armor Class** 22 (natural armor)
- **Hit Points** 367 (21d20 + 147)
diff --git a/Data/HD/srd_monsters_ancient_blue_dragon.md b/Data/HD/srd_monsters_ancient_blue_dragon.md
index 4f0b588f..a583fc35 100644
--- a/Data/HD/srd_monsters_ancient_blue_dragon.md
+++ b/Data/HD/srd_monsters_ancient_blue_dragon.md
@@ -4,7 +4,7 @@
# Ancient Blue Dragon
-- CEO: [Dragon bleu vénérable](hd_monsters_dragon_bleu_venerable.md)
+- Alias: [Dragon bleu vénérable](hd_monsters_dragon_bleu_venerable.md)
- Gargantuan dragon, lawful evil
- **Armor Class** 22 (natural armor)
- **Hit Points** 481 (26d20 + 208)
diff --git a/Data/HD/srd_monsters_ancient_brass_dragon.md b/Data/HD/srd_monsters_ancient_brass_dragon.md
index 747ecd3f..8b0020b1 100644
--- a/Data/HD/srd_monsters_ancient_brass_dragon.md
+++ b/Data/HD/srd_monsters_ancient_brass_dragon.md
@@ -4,7 +4,7 @@
# Ancient Brass Dragon
-- CEO: [Dragon d'airain vénérable](hd_monsters_dragon_dairain_venerable.md)
+- Alias: [Dragon d'airain vénérable](hd_monsters_dragon_dairain_venerable.md)
- Gargantuan dragon, chaotic good
- **Armor Class** 20 (natural armor)
- **Hit Points** 297 (17d20 + 119)
diff --git a/Data/HD/srd_monsters_ancient_bronze_dragon.md b/Data/HD/srd_monsters_ancient_bronze_dragon.md
index 3da7e062..9e4fa624 100644
--- a/Data/HD/srd_monsters_ancient_bronze_dragon.md
+++ b/Data/HD/srd_monsters_ancient_bronze_dragon.md
@@ -4,7 +4,7 @@
# Ancient Bronze Dragon
-- CEO: [Dragon de bronze vénérable](hd_monsters_dragon_de_bronze_venerable.md)
+- Alias: [Dragon de bronze vénérable](hd_monsters_dragon_de_bronze_venerable.md)
- Gargantuan dragon, lawful good
- **Armor Class** 22 (natural armor)
- **Hit Points** 444 (24d20 + 192)
diff --git a/Data/HD/srd_monsters_ancient_copper_dragon.md b/Data/HD/srd_monsters_ancient_copper_dragon.md
index e6b6705a..99b40b85 100644
--- a/Data/HD/srd_monsters_ancient_copper_dragon.md
+++ b/Data/HD/srd_monsters_ancient_copper_dragon.md
@@ -4,7 +4,7 @@
# Ancient Copper Dragon
-- CEO: [Dragon de cuivre vénérable](hd_monsters_dragon_de_cuivre_venerable.md)
+- Alias: [Dragon de cuivre vénérable](hd_monsters_dragon_de_cuivre_venerable.md)
- Gargantuan dragon, chaotic good
- **Armor Class** 21 (natural armor)
- **Hit Points** 350 (20d20 + 140)
diff --git a/Data/HD/srd_monsters_ancient_gold_dragon.md b/Data/HD/srd_monsters_ancient_gold_dragon.md
index 8f43cc39..a6357ff7 100644
--- a/Data/HD/srd_monsters_ancient_gold_dragon.md
+++ b/Data/HD/srd_monsters_ancient_gold_dragon.md
@@ -4,7 +4,7 @@
# Ancient Gold Dragon
-- CEO: [Dragon d'or vénérable](hd_monsters_dragon_dor_venerable.md)
+- Alias: [Dragon d'or vénérable](hd_monsters_dragon_dor_venerable.md)
- Gargantuan dragon, lawful good
- **Armor Class** 22 (natural armor)
- **Hit Points** 546 (28d20 + 252)
diff --git a/Data/HD/srd_monsters_ancient_green_dragon.md b/Data/HD/srd_monsters_ancient_green_dragon.md
index 221f7dd6..91d91c44 100644
--- a/Data/HD/srd_monsters_ancient_green_dragon.md
+++ b/Data/HD/srd_monsters_ancient_green_dragon.md
@@ -4,7 +4,7 @@
# Ancient Green Dragon
-- CEO: [Dragon vert vénérable](hd_monsters_dragon_vert_venerable.md)
+- Alias: [Dragon vert vénérable](hd_monsters_dragon_vert_venerable.md)
- Gargantuan dragon, lawful evil
- **Armor Class** 21 (natural armor)
- **Hit Points** 385 (22d20 + 154)
diff --git a/Data/HD/srd_monsters_ancient_red_dragon.md b/Data/HD/srd_monsters_ancient_red_dragon.md
index fc5ab62e..b793adcc 100644
--- a/Data/HD/srd_monsters_ancient_red_dragon.md
+++ b/Data/HD/srd_monsters_ancient_red_dragon.md
@@ -4,7 +4,7 @@
# Ancient Red Dragon
-- CEO: [Dragon rouge vénérable](hd_monsters_dragon_rouge_venerable.md)
+- Alias: [Dragon rouge vénérable](hd_monsters_dragon_rouge_venerable.md)
- Gargantuan dragon, chaotic evil
- **Armor Class** 22 (natural armor)
- **Hit Points** 546 (28d20 + 252)
diff --git a/Data/HD/srd_monsters_ancient_silver_dragon.md b/Data/HD/srd_monsters_ancient_silver_dragon.md
index b7d7be7e..c1385c4e 100644
--- a/Data/HD/srd_monsters_ancient_silver_dragon.md
+++ b/Data/HD/srd_monsters_ancient_silver_dragon.md
@@ -4,7 +4,7 @@
# Ancient Silver Dragon
-- CEO: [Dragon d'argent vénérable](hd_monsters_dragon_dargent_venerable.md)
+- Alias: [Dragon d'argent vénérable](hd_monsters_dragon_dargent_venerable.md)
- Gargantuan dragon, lawful good
- **Armor Class** 22 (natural armor)
- **Hit Points** 487 (25d20 + 225)
diff --git a/Data/HD/srd_monsters_ancient_white_dragon.md b/Data/HD/srd_monsters_ancient_white_dragon.md
index 9415acb8..6672317b 100644
--- a/Data/HD/srd_monsters_ancient_white_dragon.md
+++ b/Data/HD/srd_monsters_ancient_white_dragon.md
@@ -4,7 +4,7 @@
# Ancient White Dragon
-- CEO: [Dragon blanc vénérable](hd_monsters_dragon_blanc_venerable.md)
+- Alias: [Dragon blanc vénérable](hd_monsters_dragon_blanc_venerable.md)
- Gargantuan dragon, chaotic evil
- **Armor Class** 20 (natural armor)
- **Hit Points** 333 (18d20 + 144)
diff --git a/Data/HD/srd_monsters_androsphinx.md b/Data/HD/srd_monsters_androsphinx.md
index 72b11deb..4956c9e7 100644
--- a/Data/HD/srd_monsters_androsphinx.md
+++ b/Data/HD/srd_monsters_androsphinx.md
@@ -4,7 +4,7 @@
# Androsphinx
-- CEO: [Androsphinx](hd_monsters_androsphinx.md)
+- Alias: [Androsphinx](hd_monsters_androsphinx.md)
- Source: (SRD p347)
- Large monstrosity, lawful neutral
- **Armor Class** 17 (natural armor)
diff --git a/Data/HD/srd_monsters_animated_armor.md b/Data/HD/srd_monsters_animated_armor.md
index b43245e8..c45fbe77 100644
--- a/Data/HD/srd_monsters_animated_armor.md
+++ b/Data/HD/srd_monsters_animated_armor.md
@@ -4,7 +4,7 @@
# Animated Armor
-- CEO: [Armure animée](hd_monsters_armure_animee.md)
+- Alias: [Armure animée](hd_monsters_armure_animee.md)
- Source: (SRD p263)
- Medium construct, unaligned
- **Armor Class** 18 (natural armor)
diff --git a/Data/HD/srd_monsters_ankheg.md b/Data/HD/srd_monsters_ankheg.md
index 16a0fa52..8da6604a 100644
--- a/Data/HD/srd_monsters_ankheg.md
+++ b/Data/HD/srd_monsters_ankheg.md
@@ -4,7 +4,7 @@
# Ankheg
-- CEO: [Ankheg](hd_monsters_ankheg.md)
+- Alias: [Ankheg](hd_monsters_ankheg.md)
- Source: (SRD p264)
- Large monstrosity, unaligned
- **Armor Class** 14 (natural armor), 11 while prone
diff --git a/Data/HD/srd_monsters_ape.md b/Data/HD/srd_monsters_ape.md
index 80c3612d..f9c5a038 100644
--- a/Data/HD/srd_monsters_ape.md
+++ b/Data/HD/srd_monsters_ape.md
@@ -4,7 +4,7 @@
# Ape
-- CEO: [Grand singe](hd_monsters_grand_singe.md)
+- Alias: [Grand singe](hd_monsters_grand_singe.md)
- Medium beast, unaligned
- **Armor Class** 12
- **Hit Points** 19 (3d8 + 6)
diff --git a/Data/HD/srd_monsters_archmage.md b/Data/HD/srd_monsters_archmage.md
index 26db1900..b2369b01 100644
--- a/Data/HD/srd_monsters_archmage.md
+++ b/Data/HD/srd_monsters_archmage.md
@@ -4,7 +4,7 @@
# Archmage
-- CEO: [Archimage](hd_monsters_archimage.md)
+- Alias: [Archimage](hd_monsters_archimage.md)
- Source: (SRD p395)
- Medium humanoid (any race), any alignment
- **Armor Class** 12 (15 with
diff --git a/Data/HD/srd_monsters_assassin.md b/Data/HD/srd_monsters_assassin.md
index ceb1a529..47b4f64a 100644
--- a/Data/HD/srd_monsters_assassin.md
+++ b/Data/HD/srd_monsters_assassin.md
@@ -4,7 +4,7 @@
# Assassin
-- CEO: [Assassin](hd_monsters_assassin.md)
+- Alias: [Assassin](hd_monsters_assassin.md)
- Source: (SRD p396)
- Medium humanoid (any race), any non-good alignment
- **Armor Class** 15 (studded leather)
diff --git a/Data/HD/srd_monsters_awakened_shrub.md b/Data/HD/srd_monsters_awakened_shrub.md
index 10d0f41e..86be7b85 100644
--- a/Data/HD/srd_monsters_awakened_shrub.md
+++ b/Data/HD/srd_monsters_awakened_shrub.md
@@ -4,7 +4,7 @@
# Awakened Shrub
-- CEO: [Arbuste éveillé](hd_monsters_arbuste_eveille.md)
+- Alias: [Arbuste éveillé](hd_monsters_arbuste_eveille.md)
- Source: (SRD p366)
- Small plant, unaligned
- **Armor Class** 9
diff --git a/Data/HD/srd_monsters_awakened_tree.md b/Data/HD/srd_monsters_awakened_tree.md
index e09c6925..1c002bf8 100644
--- a/Data/HD/srd_monsters_awakened_tree.md
+++ b/Data/HD/srd_monsters_awakened_tree.md
@@ -4,7 +4,7 @@
# Awakened Tree
-- CEO: [Arbre éveillé](hd_monsters_arbre_eveille.md)
+- Alias: [Arbre éveillé](hd_monsters_arbre_eveille.md)
- Source: (SRD p366)
- Huge plant, unaligned
- **Armor Class** 13 (natural armor)
diff --git a/Data/HD/srd_monsters_axe_beak.md b/Data/HD/srd_monsters_axe_beak.md
index e03f9a83..4f86ddcd 100644
--- a/Data/HD/srd_monsters_axe_beak.md
+++ b/Data/HD/srd_monsters_axe_beak.md
@@ -4,7 +4,7 @@
# Axe Beak
-- CEO: [Bec de hache](hd_monsters_bec_de_hache.md)
+- Alias: [Bec de hache](hd_monsters_bec_de_hache.md)
- Source: (SRD p366)
- Large beast, unaligned
- **Armor Class** 11
diff --git a/Data/HD/srd_monsters_azer.md b/Data/HD/srd_monsters_azer.md
index 574674a9..862775e9 100644
--- a/Data/HD/srd_monsters_azer.md
+++ b/Data/HD/srd_monsters_azer.md
@@ -4,7 +4,7 @@
# Azer
-- CEO: [Azer](hd_monsters_azer.md)
+- Alias: [Azer](hd_monsters_azer.md)
- Source: (SRD p265)
- Medium elemental, lawful neutral
- **Armor Class** 17 (natural armor, shield)
diff --git a/Data/HD/srd_monsters_baboon.md b/Data/HD/srd_monsters_baboon.md
index 68780f87..6fffa15c 100644
--- a/Data/HD/srd_monsters_baboon.md
+++ b/Data/HD/srd_monsters_baboon.md
@@ -4,7 +4,7 @@
# Baboon
-- CEO: [Babouin](hd_monsters_babouin.md)
+- Alias: [Babouin](hd_monsters_babouin.md)
- Source: (SRD p367)
- Small beast, unaligned
- **Armor Class** 12
diff --git a/Data/HD/srd_monsters_badger.md b/Data/HD/srd_monsters_badger.md
index 890553d6..f547280d 100644
--- a/Data/HD/srd_monsters_badger.md
+++ b/Data/HD/srd_monsters_badger.md
@@ -4,7 +4,7 @@
# Badger
-- CEO: [Blaireau](hd_monsters_blaireau.md)
+- Alias: [Blaireau](hd_monsters_blaireau.md)
- Source: (SRD p367)
- Tiny beast, unaligned
- **Armor Class** 10
diff --git a/Data/HD/srd_monsters_balor.md b/Data/HD/srd_monsters_balor.md
index dcafd782..745f5a2b 100644
--- a/Data/HD/srd_monsters_balor.md
+++ b/Data/HD/srd_monsters_balor.md
@@ -4,7 +4,7 @@
# Balor
-- CEO: [Balor](hd_monsters_balor.md)
+- Alias: [Balor](hd_monsters_balor.md)
- Source: (SRD p270)
- Huge fiend (demon), chaotic evil
- **Armor Class** 19 (natural armor)
diff --git a/Data/HD/srd_monsters_bandit.md b/Data/HD/srd_monsters_bandit.md
index 6c98cc4a..056148db 100644
--- a/Data/HD/srd_monsters_bandit.md
+++ b/Data/HD/srd_monsters_bandit.md
@@ -4,7 +4,7 @@
# Bandit
-- CEO: [Bandit](hd_monsters_bandit.md)
+- Alias: [Bandit](hd_monsters_bandit.md)
- Source: (SRD p396)
- Medium humanoid (any race), any non-lawful alignment
- **Armor Class** 12 (leather armor)
diff --git a/Data/HD/srd_monsters_bandit_captain.md b/Data/HD/srd_monsters_bandit_captain.md
index d9932cb7..00803d98 100644
--- a/Data/HD/srd_monsters_bandit_captain.md
+++ b/Data/HD/srd_monsters_bandit_captain.md
@@ -4,7 +4,7 @@
# Bandit Captain
-- CEO: [Capitaine Bandit](hd_monsters_capitaine_bandit.md)
+- Alias: [Capitaine Bandit](hd_monsters_capitaine_bandit.md)
- Source: (SRD p397)
- Medium humanoid (any race), any non-lawful alignment
- **Armor Class** 15 (studded leather)
diff --git a/Data/HD/srd_monsters_barbed_devil.md b/Data/HD/srd_monsters_barbed_devil.md
index 9c2f97f1..eed6cd27 100644
--- a/Data/HD/srd_monsters_barbed_devil.md
+++ b/Data/HD/srd_monsters_barbed_devil.md
@@ -4,7 +4,7 @@
# Barbed Devil
-- CEO: [Diable barbelé](hd_monsters_diable_barbele.md)
+- Alias: [Diable barbelé](hd_monsters_diable_barbele.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 110 (13d8 + 52)
diff --git a/Data/HD/srd_monsters_basilisk.md b/Data/HD/srd_monsters_basilisk.md
index 124c830d..ed8a8cd1 100644
--- a/Data/HD/srd_monsters_basilisk.md
+++ b/Data/HD/srd_monsters_basilisk.md
@@ -4,7 +4,7 @@
# Basilisk
-- CEO: [Basilic](hd_monsters_basilic.md)
+- Alias: [Basilic](hd_monsters_basilic.md)
- Source: (SRD p265)
- Medium monstrosity, unaligned
- **Armor Class** 15 (natural armor)
diff --git a/Data/HD/srd_monsters_bat.md b/Data/HD/srd_monsters_bat.md
index 13574a47..b8f24321 100644
--- a/Data/HD/srd_monsters_bat.md
+++ b/Data/HD/srd_monsters_bat.md
@@ -4,7 +4,7 @@
# Bat
-- CEO: [Chauve-souris](hd_monsters_chauve_souris.md)
+- Alias: [Chauve-souris](hd_monsters_chauve_souris.md)
- Tiny beast, unaligned
- **Armor Class** 12
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_bearded_devil.md b/Data/HD/srd_monsters_bearded_devil.md
index 061e9d24..b0c0dba4 100644
--- a/Data/HD/srd_monsters_bearded_devil.md
+++ b/Data/HD/srd_monsters_bearded_devil.md
@@ -4,7 +4,7 @@
# Bearded Devil
-- CEO: [Diable barbu](hd_monsters_diable_barbu.md)
+- Alias: [Diable barbu](hd_monsters_diable_barbu.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 52 (8d8 + 16)
diff --git a/Data/HD/srd_monsters_behir.md b/Data/HD/srd_monsters_behir.md
index 7513d819..3de1697c 100644
--- a/Data/HD/srd_monsters_behir.md
+++ b/Data/HD/srd_monsters_behir.md
@@ -4,7 +4,7 @@
# Behir
-- CEO: [Béhir](hd_monsters_behir.md)
+- Alias: [Béhir](hd_monsters_behir.md)
- Source: (SRD p265)
- Huge monstrosity, neutral evil
- **Armor Class** 17 (natural armor)
diff --git a/Data/HD/srd_monsters_berserker.md b/Data/HD/srd_monsters_berserker.md
index 8bfe1f20..e6403970 100644
--- a/Data/HD/srd_monsters_berserker.md
+++ b/Data/HD/srd_monsters_berserker.md
@@ -4,7 +4,7 @@
# Berserker
-- CEO: [Berserker](hd_monsters_berserker.md)
+- Alias: [Berserker](hd_monsters_berserker.md)
- Source: (SRD p397)
- Medium humanoid (any race), any chaotic alignment
- **Armor Class** 13 (hide armor)
diff --git a/Data/HD/srd_monsters_black_bear.md b/Data/HD/srd_monsters_black_bear.md
index 7b6f1061..b9a9de32 100644
--- a/Data/HD/srd_monsters_black_bear.md
+++ b/Data/HD/srd_monsters_black_bear.md
@@ -4,7 +4,7 @@
# Black Bear
-- CEO: [Ours noir](hd_monsters_ours_noir.md)
+- Alias: [Ours noir](hd_monsters_ours_noir.md)
- Medium beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 19 (3d8 + 6)
diff --git a/Data/HD/srd_monsters_black_dragon_wyrmling.md b/Data/HD/srd_monsters_black_dragon_wyrmling.md
index 535725c5..3ef67a19 100644
--- a/Data/HD/srd_monsters_black_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_black_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Black Dragon Wyrmling
-- CEO: [Dragonnet noir](hd_monsters_dragonnet_noir.md)
+- Alias: [Dragonnet noir](hd_monsters_dragonnet_noir.md)
- Medium dragon, chaotic evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 33 (6d8 + 6)
diff --git a/Data/HD/srd_monsters_black_pudding.md b/Data/HD/srd_monsters_black_pudding.md
index a34a4ea7..ad6ab55d 100644
--- a/Data/HD/srd_monsters_black_pudding.md
+++ b/Data/HD/srd_monsters_black_pudding.md
@@ -4,7 +4,7 @@
# Black Pudding
-- CEO: [Pouding noir](hd_monsters_pouding_noir.md)
+- Alias: [Pouding noir](hd_monsters_pouding_noir.md)
- Large ooze, unaligned
- **Armor Class** 7
- **Hit Points** 85 (10d10 + 30)
diff --git a/Data/HD/srd_monsters_blink_dog.md b/Data/HD/srd_monsters_blink_dog.md
index bb33bdc4..8c59bfc6 100644
--- a/Data/HD/srd_monsters_blink_dog.md
+++ b/Data/HD/srd_monsters_blink_dog.md
@@ -4,7 +4,7 @@
# Blink Dog
-- CEO: [Chien esquiveur](hd_monsters_chien_esquiveur.md)
+- Alias: [Chien esquiveur](hd_monsters_chien_esquiveur.md)
- Medium fey, lawful good
- **Armor Class** 13
- **Hit Points** 22 (4d8 + 4)
diff --git a/Data/HD/srd_monsters_blood_hawk.md b/Data/HD/srd_monsters_blood_hawk.md
index b52782a0..cca042c1 100644
--- a/Data/HD/srd_monsters_blood_hawk.md
+++ b/Data/HD/srd_monsters_blood_hawk.md
@@ -4,7 +4,7 @@
# Blood Hawk
-- CEO: [Faucon de sang](hd_monsters_faucon_de_sang.md)
+- Alias: [Faucon de sang](hd_monsters_faucon_de_sang.md)
- Small beast, unaligned
- **Armor Class** 12
- **Hit Points** 7 (2d6)
diff --git a/Data/HD/srd_monsters_blue_dragon_wyrmling.md b/Data/HD/srd_monsters_blue_dragon_wyrmling.md
index 87451fe1..170d7ec2 100644
--- a/Data/HD/srd_monsters_blue_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_blue_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Blue Dragon Wyrmling
-- CEO: [Dragonnet bleu](hd_monsters_dragonnet_bleu.md)
+- Alias: [Dragonnet bleu](hd_monsters_dragonnet_bleu.md)
- Medium dragon, lawful evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 52 (8d8 + 16)
diff --git a/Data/HD/srd_monsters_boar.md b/Data/HD/srd_monsters_boar.md
index a9a5e333..2329e9ac 100644
--- a/Data/HD/srd_monsters_boar.md
+++ b/Data/HD/srd_monsters_boar.md
@@ -4,7 +4,7 @@
# Boar
-- CEO: [Sanglier](hd_monsters_sanglier.md)
+- Alias: [Sanglier](hd_monsters_sanglier.md)
- Medium beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_bone_devil.md b/Data/HD/srd_monsters_bone_devil.md
index 3fd4e132..5afb93c5 100644
--- a/Data/HD/srd_monsters_bone_devil.md
+++ b/Data/HD/srd_monsters_bone_devil.md
@@ -4,7 +4,7 @@
# Bone Devil
-- CEO: [Diable osseux](hd_monsters_diable_osseux.md)
+- Alias: [Diable osseux](hd_monsters_diable_osseux.md)
- Large fiend (devil), lawful evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 142 (15d10 + 60)
diff --git a/Data/HD/srd_monsters_brass_dragon_wyrmling.md b/Data/HD/srd_monsters_brass_dragon_wyrmling.md
index 35d31f86..561c7919 100644
--- a/Data/HD/srd_monsters_brass_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_brass_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Brass Dragon Wyrmling
-- CEO: [Dragonnet d'airain](hd_monsters_dragonnet_dairain.md)
+- Alias: [Dragonnet d'airain](hd_monsters_dragonnet_dairain.md)
- Medium dragon, chaotic good
- **Armor Class** 16 (natural armor)
- **Hit Points** 16 (3d8 + 3)
diff --git a/Data/HD/srd_monsters_bronze_dragon_wyrmling.md b/Data/HD/srd_monsters_bronze_dragon_wyrmling.md
index 77409e76..9e339642 100644
--- a/Data/HD/srd_monsters_bronze_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_bronze_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Bronze Dragon Wyrmling
-- CEO: [Dragonnet de bronze](hd_monsters_dragonnet_de_bronze.md)
+- Alias: [Dragonnet de bronze](hd_monsters_dragonnet_de_bronze.md)
- Medium dragon, lawful good
- **Armor Class** 17 (natural armor)
- **Hit Points** 32 (5d8 + 10)
diff --git a/Data/HD/srd_monsters_brown_bear.md b/Data/HD/srd_monsters_brown_bear.md
index f58b2841..24439feb 100644
--- a/Data/HD/srd_monsters_brown_bear.md
+++ b/Data/HD/srd_monsters_brown_bear.md
@@ -4,7 +4,7 @@
# Brown Bear
-- CEO: [Ours brun](hd_monsters_ours_brun.md)
+- Alias: [Ours brun](hd_monsters_ours_brun.md)
- Large beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 34 (4d10 + 12)
diff --git a/Data/HD/srd_monsters_bugbear.md b/Data/HD/srd_monsters_bugbear.md
index 8a7ccf22..7fd3831c 100644
--- a/Data/HD/srd_monsters_bugbear.md
+++ b/Data/HD/srd_monsters_bugbear.md
@@ -4,7 +4,7 @@
# Bugbear
-- CEO: [Gobelours](hd_monsters_gobelours.md)
+- Alias: [Gobelours](hd_monsters_gobelours.md)
- Medium humanoid (goblinoid), chaotic evil
- **Armor Class** 16 (hide armor, shield)
- **Hit Points** 27 (5d8 + 5)
diff --git a/Data/HD/srd_monsters_bulette.md b/Data/HD/srd_monsters_bulette.md
index 6be421d5..defe6034 100644
--- a/Data/HD/srd_monsters_bulette.md
+++ b/Data/HD/srd_monsters_bulette.md
@@ -4,7 +4,7 @@
# Bulette
-- CEO: [Bulette](hd_monsters_bulette.md)
+- Alias: [Bulette](hd_monsters_bulette.md)
- Source: (SRD p266)
- Large monstrosity, unaligned
- **Armor Class** 17 (natural armor)
diff --git a/Data/HD/srd_monsters_camel.md b/Data/HD/srd_monsters_camel.md
index 2f874f0e..230d75d8 100644
--- a/Data/HD/srd_monsters_camel.md
+++ b/Data/HD/srd_monsters_camel.md
@@ -4,7 +4,7 @@
# Camel
-- CEO: [Chameau](hd_monsters_chameau.md)
+- Alias: [Chameau](hd_monsters_chameau.md)
- Large beast, unaligned
- **Armor Class** 9
- **Hit Points** 15 (2d10 + 4)
diff --git a/Data/HD/srd_monsters_cat.md b/Data/HD/srd_monsters_cat.md
index 48c3ef9b..652d2c12 100644
--- a/Data/HD/srd_monsters_cat.md
+++ b/Data/HD/srd_monsters_cat.md
@@ -4,7 +4,7 @@
# Cat
-- CEO: [Chat](hd_monsters_chat.md)
+- Alias: [Chat](hd_monsters_chat.md)
- Tiny beast, unaligned
- **Armor Class** 12
- **Hit Points** 2 (1d4)
diff --git a/Data/HD/srd_monsters_centaur.md b/Data/HD/srd_monsters_centaur.md
index 9c85c123..cb8935e8 100644
--- a/Data/HD/srd_monsters_centaur.md
+++ b/Data/HD/srd_monsters_centaur.md
@@ -4,7 +4,7 @@
# Centaur
-- CEO: [Centaure](hd_monsters_centaure.md)
+- Alias: [Centaure](hd_monsters_centaure.md)
- Large monstrosity, neutral good
- **Armor Class** 12
- **Hit Points** 45 (6d10 + 12)
diff --git a/Data/HD/srd_monsters_chain_devil.md b/Data/HD/srd_monsters_chain_devil.md
index b34e5a59..139893f4 100644
--- a/Data/HD/srd_monsters_chain_devil.md
+++ b/Data/HD/srd_monsters_chain_devil.md
@@ -4,7 +4,7 @@
# Chain Devil
-- CEO: [Diable des chaînes](hd_monsters_diable_des_chaines.md)
+- Alias: [Diable des chaînes](hd_monsters_diable_des_chaines.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 85 (10d8 + 40)
diff --git a/Data/HD/srd_monsters_chimera.md b/Data/HD/srd_monsters_chimera.md
index bfff759d..c20e4533 100644
--- a/Data/HD/srd_monsters_chimera.md
+++ b/Data/HD/srd_monsters_chimera.md
@@ -4,7 +4,7 @@
# Chimera
-- CEO: [Chimère](hd_monsters_chimere.md)
+- Alias: [Chimère](hd_monsters_chimere.md)
- Large monstrosity, chaotic evil
- **Armor Class** 14 (natural armor)
- **Hit Points** 114 (12d10 + 48)
diff --git a/Data/HD/srd_monsters_chuul.md b/Data/HD/srd_monsters_chuul.md
index 67ff4b3b..21e761d8 100644
--- a/Data/HD/srd_monsters_chuul.md
+++ b/Data/HD/srd_monsters_chuul.md
@@ -4,7 +4,7 @@
# Chuul
-- CEO: [Chuul](hd_monsters_chuul.md)
+- Alias: [Chuul](hd_monsters_chuul.md)
- Large aberration, chaotic evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 93 (11d10 + 33)
diff --git a/Data/HD/srd_monsters_clay_golem.md b/Data/HD/srd_monsters_clay_golem.md
index f1674ead..4c58baed 100644
--- a/Data/HD/srd_monsters_clay_golem.md
+++ b/Data/HD/srd_monsters_clay_golem.md
@@ -4,7 +4,7 @@
# Clay Golem
-- CEO: [Golem d'argile](hd_monsters_golem_dargile.md)
+- Alias: [Golem d'argile](hd_monsters_golem_dargile.md)
- Large construct, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 133 (14d10 + 56)
diff --git a/Data/HD/srd_monsters_cloaker.md b/Data/HD/srd_monsters_cloaker.md
index 5975f9a1..21342eef 100644
--- a/Data/HD/srd_monsters_cloaker.md
+++ b/Data/HD/srd_monsters_cloaker.md
@@ -4,7 +4,7 @@
# Cloaker
-- CEO: [Manteleur](hd_monsters_manteleur.md)
+- Alias: [Manteleur](hd_monsters_manteleur.md)
- Large aberration, chaotic neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 78 (12d10 + 12)
diff --git a/Data/HD/srd_monsters_cloud_giant.md b/Data/HD/srd_monsters_cloud_giant.md
index eb515a2e..5a57fad0 100644
--- a/Data/HD/srd_monsters_cloud_giant.md
+++ b/Data/HD/srd_monsters_cloud_giant.md
@@ -4,7 +4,7 @@
# Cloud Giant
-- CEO: [Géant des nuages](hd_monsters_geant_des_nuages.md)
+- Alias: [Géant des nuages](hd_monsters_geant_des_nuages.md)
- Huge giant, neutral good (50 %) or neutral evil (50 %)
- **Armor Class** 14 (natural armor)
- **Hit Points** 200 (16d12 + 96)
diff --git a/Data/HD/srd_monsters_cockatrice.md b/Data/HD/srd_monsters_cockatrice.md
index c9bb30fb..7b968f22 100644
--- a/Data/HD/srd_monsters_cockatrice.md
+++ b/Data/HD/srd_monsters_cockatrice.md
@@ -4,7 +4,7 @@
# Cockatrice
-- CEO: [Cockatrice](hd_monsters_cockatrice.md)
+- Alias: [Cockatrice](hd_monsters_cockatrice.md)
- Small monstrosity, unaligned
- **Armor Class** 11
- **Hit Points** 27 (6d6 + 6)
diff --git a/Data/HD/srd_monsters_commoner.md b/Data/HD/srd_monsters_commoner.md
index d6f47204..6096eed1 100644
--- a/Data/HD/srd_monsters_commoner.md
+++ b/Data/HD/srd_monsters_commoner.md
@@ -4,7 +4,7 @@
# Commoner
-- CEO: [Roturier](hd_monsters_roturier.md)
+- Alias: [Roturier](hd_monsters_roturier.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 10
- **Hit Points** 4 (1d8)
diff --git a/Data/HD/srd_monsters_constrictor_snake.md b/Data/HD/srd_monsters_constrictor_snake.md
index be9735f9..7c79778a 100644
--- a/Data/HD/srd_monsters_constrictor_snake.md
+++ b/Data/HD/srd_monsters_constrictor_snake.md
@@ -4,7 +4,7 @@
# Constrictor Snake
-- CEO: [Serpent constricteur](hd_monsters_serpent_constricteur.md)
+- Alias: [Serpent constricteur](hd_monsters_serpent_constricteur.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 13 (2d10 + 2)
diff --git a/Data/HD/srd_monsters_copper_dragon_wyrmling.md b/Data/HD/srd_monsters_copper_dragon_wyrmling.md
index 80b7a28c..d3a4fb95 100644
--- a/Data/HD/srd_monsters_copper_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_copper_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Copper Dragon Wyrmling
-- CEO: [Dragonnet de cuivre](hd_monsters_dragonnet_de_cuivre.md)
+- Alias: [Dragonnet de cuivre](hd_monsters_dragonnet_de_cuivre.md)
- Medium dragon, chaotic good
- **Armor Class** 16 (natural armor)
- **Hit Points** 22 (4d8 + 4)
diff --git a/Data/HD/srd_monsters_couatl.md b/Data/HD/srd_monsters_couatl.md
index 2303b7e2..e39eb57e 100644
--- a/Data/HD/srd_monsters_couatl.md
+++ b/Data/HD/srd_monsters_couatl.md
@@ -4,7 +4,7 @@
# Couatl
-- CEO: [Couatl](hd_monsters_couatl.md)
+- Alias: [Couatl](hd_monsters_couatl.md)
- Medium celestial, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 97 (13d8 + 39)
diff --git a/Data/HD/srd_monsters_crab.md b/Data/HD/srd_monsters_crab.md
index 7f930d9c..90064832 100644
--- a/Data/HD/srd_monsters_crab.md
+++ b/Data/HD/srd_monsters_crab.md
@@ -4,7 +4,7 @@
# Crab
-- CEO: [Crabe](hd_monsters_crabe.md)
+- Alias: [Crabe](hd_monsters_crabe.md)
- Tiny beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 2 (1d4)
diff --git a/Data/HD/srd_monsters_crocodile.md b/Data/HD/srd_monsters_crocodile.md
index c0576aa9..d90cb13b 100644
--- a/Data/HD/srd_monsters_crocodile.md
+++ b/Data/HD/srd_monsters_crocodile.md
@@ -4,7 +4,7 @@
# Crocodile
-- CEO: [Crocodile](hd_monsters_crocodile.md)
+- Alias: [Crocodile](hd_monsters_crocodile.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 19 (3d10 + 3)
diff --git a/Data/HD/srd_monsters_cult_fanatic.md b/Data/HD/srd_monsters_cult_fanatic.md
index ac99b81e..1bd39ca0 100644
--- a/Data/HD/srd_monsters_cult_fanatic.md
+++ b/Data/HD/srd_monsters_cult_fanatic.md
@@ -4,7 +4,7 @@
# Cult Fanatic
-- CEO: [Fanatique de secte](hd_monsters_fanatique_de_secte.md)
+- Alias: [Fanatique de secte](hd_monsters_fanatique_de_secte.md)
- Medium humanoid (any race), any non-good alignment
- **Armor Class** 13 (leather armor)
- **Hit Points** 33 (6d8 + 6)
diff --git a/Data/HD/srd_monsters_cultist.md b/Data/HD/srd_monsters_cultist.md
index 4717076b..ba5a19f4 100644
--- a/Data/HD/srd_monsters_cultist.md
+++ b/Data/HD/srd_monsters_cultist.md
@@ -4,7 +4,7 @@
# Cultist
-- CEO: [Membre de secte](hd_monsters_membre_de_secte.md)
+- Alias: [Membre de secte](hd_monsters_membre_de_secte.md)
- Medium humanoid (any race), any non-good alignment
- **Armor Class** 12 (leather armor)
- **Hit Points** 9 (2d8)
diff --git a/Data/HD/srd_monsters_darkmantle.md b/Data/HD/srd_monsters_darkmantle.md
index 09482a6a..cae4e758 100644
--- a/Data/HD/srd_monsters_darkmantle.md
+++ b/Data/HD/srd_monsters_darkmantle.md
@@ -4,7 +4,7 @@
# Darkmantle
-- CEO: [Mante obscure](hd_monsters_mante_obscure.md)
+- Alias: [Mante obscure](hd_monsters_mante_obscure.md)
- Small monstrosity, unaligned
- **Armor Class** 11
- **Hit Points** 22 (5d6 + 5)
diff --git a/Data/HD/srd_monsters_death_dog.md b/Data/HD/srd_monsters_death_dog.md
index 06955261..06637630 100644
--- a/Data/HD/srd_monsters_death_dog.md
+++ b/Data/HD/srd_monsters_death_dog.md
@@ -4,7 +4,7 @@
# Death Dog
-- CEO: [Chien du trépas](hd_monsters_chien_du_trepas.md)
+- Alias: [Chien du trépas](hd_monsters_chien_du_trepas.md)
- Medium monstrosity, neutral evil
- **Armor Class** 12
- **Hit Points** 39 (6d8 + 12)
diff --git a/Data/HD/srd_monsters_deep_gnome_svirfneblin.md b/Data/HD/srd_monsters_deep_gnome_svirfneblin.md
index fec15e04..00ab432f 100644
--- a/Data/HD/srd_monsters_deep_gnome_svirfneblin.md
+++ b/Data/HD/srd_monsters_deep_gnome_svirfneblin.md
@@ -4,7 +4,7 @@
# Deep Gnome (Svirfneblin)
-- CEO: [Gnome des profondeurs (svirfneblin)](hd_monsters_gnome_des_profondeurs_svirfneblin.md)
+- Alias: [Gnome des profondeurs (svirfneblin)](hd_monsters_gnome_des_profondeurs_svirfneblin.md)
- Small humanoid (gnome), neutral good
- **Armor Class** 15 (chain shirt)
- **Hit Points** 16 (3d6 + 6)
diff --git a/Data/HD/srd_monsters_deer.md b/Data/HD/srd_monsters_deer.md
index 0ac1a13e..d6704a94 100644
--- a/Data/HD/srd_monsters_deer.md
+++ b/Data/HD/srd_monsters_deer.md
@@ -4,7 +4,7 @@
# Deer
-- CEO: [Chevreuil](hd_monsters_chevreuil.md)
+- Alias: [Chevreuil](hd_monsters_chevreuil.md)
- Medium beast, unaligned
- **Armor Class** 13
- **Hit Points** 4 (1d8)
diff --git a/Data/HD/srd_monsters_deva.md b/Data/HD/srd_monsters_deva.md
index 8b333eae..4bc6ec8b 100644
--- a/Data/HD/srd_monsters_deva.md
+++ b/Data/HD/srd_monsters_deva.md
@@ -4,7 +4,7 @@
# Deva
-- CEO: [Déva](hd_monsters_deva.md)
+- Alias: [Déva](hd_monsters_deva.md)
- Medium celestial, lawful good
- **Armor Class** 17 (natural armor)
- **Hit Points** 136 (16d8 + 64)
diff --git a/Data/HD/srd_monsters_dire_wolf.md b/Data/HD/srd_monsters_dire_wolf.md
index d55d719f..fdf91b2d 100644
--- a/Data/HD/srd_monsters_dire_wolf.md
+++ b/Data/HD/srd_monsters_dire_wolf.md
@@ -4,7 +4,7 @@
# Dire Wolf
-- CEO: [Loup sanguinaire](hd_monsters_loup_sanguinaire.md)
+- Alias: [Loup sanguinaire](hd_monsters_loup_sanguinaire.md)
- Large beast, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 37 (5d10 + 10)
diff --git a/Data/HD/srd_monsters_djinni.md b/Data/HD/srd_monsters_djinni.md
index a205e1bf..956126f9 100644
--- a/Data/HD/srd_monsters_djinni.md
+++ b/Data/HD/srd_monsters_djinni.md
@@ -4,7 +4,7 @@
# Djinni
-- CEO: [Djinn](hd_monsters_djinn.md)
+- Alias: [Djinn](hd_monsters_djinn.md)
- Large elemental, chaotic good
- **Armor Class** 17 (natural armor)
- **Hit Points** 161 (14d10 + 84)
diff --git a/Data/HD/srd_monsters_doppelganger.md b/Data/HD/srd_monsters_doppelganger.md
index 15cfe4e5..6ed59e69 100644
--- a/Data/HD/srd_monsters_doppelganger.md
+++ b/Data/HD/srd_monsters_doppelganger.md
@@ -4,7 +4,7 @@
# Doppelganger
-- CEO: [Doppleganger](hd_monsters_doppleganger.md)
+- Alias: [Doppleganger](hd_monsters_doppleganger.md)
- Medium monstrosity (shapechanger), neutral
- **Armor Class** 14
- **Hit Points** 52 (8d8 + 16)
diff --git a/Data/HD/srd_monsters_draft_horse.md b/Data/HD/srd_monsters_draft_horse.md
index 07f5a814..36c4aab6 100644
--- a/Data/HD/srd_monsters_draft_horse.md
+++ b/Data/HD/srd_monsters_draft_horse.md
@@ -4,7 +4,7 @@
# Draft Horse
-- CEO: [Cheval de trait](hd_monsters_cheval_de_trait.md)
+- Alias: [Cheval de trait](hd_monsters_cheval_de_trait.md)
- Large beast, unaligned
- **Armor Class** 10
- **Hit Points** 19 (3d10 + 3)
diff --git a/Data/HD/srd_monsters_dragon_turtle.md b/Data/HD/srd_monsters_dragon_turtle.md
index da3742e1..411fea27 100644
--- a/Data/HD/srd_monsters_dragon_turtle.md
+++ b/Data/HD/srd_monsters_dragon_turtle.md
@@ -4,7 +4,7 @@
# Dragon Turtle
-- CEO: [Dragon-tortue](hd_monsters_dragon_tortue.md)
+- Alias: [Dragon-tortue](hd_monsters_dragon_tortue.md)
- Gargantuan dragon, neutral
- **Armor Class** 20 (natural armor)
- **Hit Points** 341 (22d20 + 110)
diff --git a/Data/HD/srd_monsters_dretch.md b/Data/HD/srd_monsters_dretch.md
index 80112481..d0a86509 100644
--- a/Data/HD/srd_monsters_dretch.md
+++ b/Data/HD/srd_monsters_dretch.md
@@ -4,7 +4,7 @@
# Dretch
-- CEO: [Dretch](hd_monsters_dretch.md)
+- Alias: [Dretch](hd_monsters_dretch.md)
- Small fiend (demon), chaotic evil
- **Armor Class** 11 (natural armor)
- **Hit Points** 18 (4d6 + 4)
diff --git a/Data/HD/srd_monsters_drider.md b/Data/HD/srd_monsters_drider.md
index 57140ddb..bfc88f26 100644
--- a/Data/HD/srd_monsters_drider.md
+++ b/Data/HD/srd_monsters_drider.md
@@ -4,7 +4,7 @@
# Drider
-- CEO: [Drider](hd_monsters_drider.md)
+- Alias: [Drider](hd_monsters_drider.md)
- Large monstrosity, chaotic evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 123 (13d10 + 52)
diff --git a/Data/HD/srd_monsters_drow.md b/Data/HD/srd_monsters_drow.md
index 1721b128..8cadd29c 100644
--- a/Data/HD/srd_monsters_drow.md
+++ b/Data/HD/srd_monsters_drow.md
@@ -4,7 +4,7 @@
# Drow
-- CEO: [Drow](hd_monsters_drow.md)
+- Alias: [Drow](hd_monsters_drow.md)
- Medium humanoid (elf), neutral evil
- **Armor Class** 15 (chain shirt)
- **Hit Points** 13 (3d8)
diff --git a/Data/HD/srd_monsters_druid.md b/Data/HD/srd_monsters_druid.md
index 71fd2b5a..45dc6633 100644
--- a/Data/HD/srd_monsters_druid.md
+++ b/Data/HD/srd_monsters_druid.md
@@ -4,7 +4,7 @@
# Druid
-- CEO: [Druide](hd_monsters_druide.md)
+- Alias: [Druide](hd_monsters_druide.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 11 (16 with
- **Hit Points** 27 (5d8 + 5)
diff --git a/Data/HD/srd_monsters_dryad.md b/Data/HD/srd_monsters_dryad.md
index c96a97a9..54f1ad20 100644
--- a/Data/HD/srd_monsters_dryad.md
+++ b/Data/HD/srd_monsters_dryad.md
@@ -4,7 +4,7 @@
# Dryad
-- CEO: [Dryade](hd_monsters_dryade.md)
+- Alias: [Dryade](hd_monsters_dryade.md)
- Medium fey, neutral
- **Armor Class** 11 (16 with
- **Hit Points** 22 (5d8)
diff --git a/Data/HD/srd_monsters_duergar.md b/Data/HD/srd_monsters_duergar.md
index ae229c5e..473a5768 100644
--- a/Data/HD/srd_monsters_duergar.md
+++ b/Data/HD/srd_monsters_duergar.md
@@ -4,7 +4,7 @@
# Duergar
-- CEO: [Duergar](hd_monsters_duergar.md)
+- Alias: [Duergar](hd_monsters_duergar.md)
- Medium humanoid (dwarf), lawful evil
- **Armor Class** 16 (scale mail, shield)
- **Hit Points** 26 (4d8 + 8)
diff --git a/Data/HD/srd_monsters_dust_mephit.md b/Data/HD/srd_monsters_dust_mephit.md
index f3c5aefd..aec6dd92 100644
--- a/Data/HD/srd_monsters_dust_mephit.md
+++ b/Data/HD/srd_monsters_dust_mephit.md
@@ -4,7 +4,7 @@
# Dust Mephit
-- CEO: [Méphite de poussière](hd_monsters_mephite_de_poussiere.md)
+- Alias: [Méphite de poussière](hd_monsters_mephite_de_poussiere.md)
- Small elemental, neutral evil
- **Armor Class** 12
- **Hit Points** 17 (5d6)
diff --git a/Data/HD/srd_monsters_eagle.md b/Data/HD/srd_monsters_eagle.md
index 8baf121f..77b27c8b 100644
--- a/Data/HD/srd_monsters_eagle.md
+++ b/Data/HD/srd_monsters_eagle.md
@@ -4,7 +4,7 @@
# Eagle
-- CEO: [Aigle](hd_monsters_aigle.md)
+- Alias: [Aigle](hd_monsters_aigle.md)
- Source: (SRD p371)
- Small beast, unaligned
- **Armor Class** 12
diff --git a/Data/HD/srd_monsters_earth_elemental.md b/Data/HD/srd_monsters_earth_elemental.md
index e3e44f34..b25c54e6 100644
--- a/Data/HD/srd_monsters_earth_elemental.md
+++ b/Data/HD/srd_monsters_earth_elemental.md
@@ -4,7 +4,7 @@
# Earth Elemental
-- CEO: [Élémentaire de la terre](hd_monsters_elementaire_de_la_terre.md)
+- Alias: [Élémentaire de la terre](hd_monsters_elementaire_de_la_terre.md)
- Large elemental, neutral
- **Armor Class** 17 (natural armor)
- **Hit Points** 126 (12d10 + 60)
diff --git a/Data/HD/srd_monsters_efreeti.md b/Data/HD/srd_monsters_efreeti.md
index 2b1e72d1..118cd526 100644
--- a/Data/HD/srd_monsters_efreeti.md
+++ b/Data/HD/srd_monsters_efreeti.md
@@ -4,7 +4,7 @@
# Efreeti
-- CEO: [Éfrit](hd_monsters_efrit.md)
+- Alias: [Éfrit](hd_monsters_efrit.md)
- Large elemental, lawful evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 200 (16d10 + 112)
diff --git a/Data/HD/srd_monsters_elephant.md b/Data/HD/srd_monsters_elephant.md
index 0b346c60..55a223c3 100644
--- a/Data/HD/srd_monsters_elephant.md
+++ b/Data/HD/srd_monsters_elephant.md
@@ -4,7 +4,7 @@
# Elephant
-- CEO: [Éléphant](hd_monsters_elephant.md)
+- Alias: [Éléphant](hd_monsters_elephant.md)
- Huge beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 76 (8d12 + 24)
diff --git a/Data/HD/srd_monsters_elk.md b/Data/HD/srd_monsters_elk.md
index c7e442ec..86c02f36 100644
--- a/Data/HD/srd_monsters_elk.md
+++ b/Data/HD/srd_monsters_elk.md
@@ -4,7 +4,7 @@
# Elk
-- CEO: [Élan](hd_monsters_elan.md)
+- Alias: [Élan](hd_monsters_elan.md)
- Large beast, unaligned
- **Armor Class** 10
- **Hit Points** 13 (2d10 + 2)
diff --git a/Data/HD/srd_monsters_erinyes.md b/Data/HD/srd_monsters_erinyes.md
index fc1adcb3..80025520 100644
--- a/Data/HD/srd_monsters_erinyes.md
+++ b/Data/HD/srd_monsters_erinyes.md
@@ -4,7 +4,7 @@
# Erinyes
-- CEO: [Érinye](hd_monsters_erinye.md)
+- Alias: [Érinye](hd_monsters_erinye.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 18 (plate)
- **Hit Points** 153 (18d8 + 72)
diff --git a/Data/HD/srd_monsters_ettercap.md b/Data/HD/srd_monsters_ettercap.md
index db1c0ef3..a1b1a96b 100644
--- a/Data/HD/srd_monsters_ettercap.md
+++ b/Data/HD/srd_monsters_ettercap.md
@@ -4,7 +4,7 @@
# Ettercap
-- CEO: [Ettercap](hd_monsters_ettercap.md)
+- Alias: [Ettercap](hd_monsters_ettercap.md)
- Medium monstrosity, neutral evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 44 (8d8 + 8)
diff --git a/Data/HD/srd_monsters_ettin.md b/Data/HD/srd_monsters_ettin.md
index caa58d3a..7a2d3ea0 100644
--- a/Data/HD/srd_monsters_ettin.md
+++ b/Data/HD/srd_monsters_ettin.md
@@ -4,7 +4,7 @@
# Ettin
-- CEO: [Ettin](hd_monsters_ettin.md)
+- Alias: [Ettin](hd_monsters_ettin.md)
- Large giant, chaotic evil
- **Armor Class** 12 (natural armor)
- **Hit Points** 85 (10d10 + 30)
diff --git a/Data/HD/srd_monsters_fire_elemental.md b/Data/HD/srd_monsters_fire_elemental.md
index 48ff0f8d..797af7f6 100644
--- a/Data/HD/srd_monsters_fire_elemental.md
+++ b/Data/HD/srd_monsters_fire_elemental.md
@@ -4,7 +4,7 @@
# Fire Elemental
-- CEO: [Élémentaire du feu](hd_monsters_elementaire_du_feu.md)
+- Alias: [Élémentaire du feu](hd_monsters_elementaire_du_feu.md)
- Large elemental, neutral
- **Armor Class** 13
- **Hit Points** 102 (12d10 + 36)
diff --git a/Data/HD/srd_monsters_fire_giant.md b/Data/HD/srd_monsters_fire_giant.md
index cfa1d23c..b8c97b3b 100644
--- a/Data/HD/srd_monsters_fire_giant.md
+++ b/Data/HD/srd_monsters_fire_giant.md
@@ -4,7 +4,7 @@
# Fire Giant
-- CEO: [Géant du feu](hd_monsters_geant_du_feu.md)
+- Alias: [Géant du feu](hd_monsters_geant_du_feu.md)
- Huge giant, lawful evil
- **Armor Class** 18 (plate)
- **Hit Points** 162 (13d12 + 78)
diff --git a/Data/HD/srd_monsters_flesh_golem.md b/Data/HD/srd_monsters_flesh_golem.md
index 40484f04..e92aa4b4 100644
--- a/Data/HD/srd_monsters_flesh_golem.md
+++ b/Data/HD/srd_monsters_flesh_golem.md
@@ -4,7 +4,7 @@
# Flesh Golem
-- CEO: [Golem de chair](hd_monsters_golem_de_chair.md)
+- Alias: [Golem de chair](hd_monsters_golem_de_chair.md)
- Medium construct, neutral
- **Armor Class** 9
- **Hit Points** 93 (11d8 + 44)
diff --git a/Data/HD/srd_monsters_flying_snake.md b/Data/HD/srd_monsters_flying_snake.md
index 0ed85355..ac97ff9c 100644
--- a/Data/HD/srd_monsters_flying_snake.md
+++ b/Data/HD/srd_monsters_flying_snake.md
@@ -4,7 +4,7 @@
# Flying Snake
-- CEO: [Serpent volant](hd_monsters_serpent_volant.md)
+- Alias: [Serpent volant](hd_monsters_serpent_volant.md)
- Tiny beast, unaligned
- **Armor Class** 14
- **Hit Points** 5 (2d4)
diff --git a/Data/HD/srd_monsters_flying_sword.md b/Data/HD/srd_monsters_flying_sword.md
index 6b1cd1a6..20fde4e4 100644
--- a/Data/HD/srd_monsters_flying_sword.md
+++ b/Data/HD/srd_monsters_flying_sword.md
@@ -4,7 +4,7 @@
# Flying Sword
-- CEO: [Épée volante](hd_monsters_epee_volante.md)
+- Alias: [Épée volante](hd_monsters_epee_volante.md)
- Small construct, unaligned
- **Armor Class** 17 (natural armor)
- **Hit Points** 17 (5d6)
diff --git a/Data/HD/srd_monsters_frog.md b/Data/HD/srd_monsters_frog.md
index 90bbb073..b81730df 100644
--- a/Data/HD/srd_monsters_frog.md
+++ b/Data/HD/srd_monsters_frog.md
@@ -4,7 +4,7 @@
# Frog
-- CEO: [Grenouille](hd_monsters_grenouille.md)
+- Alias: [Grenouille](hd_monsters_grenouille.md)
- Tiny beast, unaligned
- **Armor Class** 11
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_frost_giant.md b/Data/HD/srd_monsters_frost_giant.md
index f71f5b30..4c9653f4 100644
--- a/Data/HD/srd_monsters_frost_giant.md
+++ b/Data/HD/srd_monsters_frost_giant.md
@@ -4,7 +4,7 @@
# Frost Giant
-- CEO: [Géant du givre](hd_monsters_geant_du_givre.md)
+- Alias: [Géant du givre](hd_monsters_geant_du_givre.md)
- Huge giant, neutral evil
- **Armor Class** 15 (patchwork armor)
- **Hit Points** 138 (12d12 + 60)
diff --git a/Data/HD/srd_monsters_gargoyle.md b/Data/HD/srd_monsters_gargoyle.md
index e1f36b7c..29b9818e 100644
--- a/Data/HD/srd_monsters_gargoyle.md
+++ b/Data/HD/srd_monsters_gargoyle.md
@@ -4,7 +4,7 @@
# Gargoyle
-- CEO: [Gargouille](hd_monsters_gargouille.md)
+- Alias: [Gargouille](hd_monsters_gargouille.md)
- Medium elemental, chaotic evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 52 (7d8 + 21)
diff --git a/Data/HD/srd_monsters_gelatinous_cube.md b/Data/HD/srd_monsters_gelatinous_cube.md
index 8a303b46..149fc550 100644
--- a/Data/HD/srd_monsters_gelatinous_cube.md
+++ b/Data/HD/srd_monsters_gelatinous_cube.md
@@ -4,7 +4,7 @@
# Gelatinous Cube
-- CEO: [Cube gélatineux](hd_monsters_cube_gelatineux.md)
+- Alias: [Cube gélatineux](hd_monsters_cube_gelatineux.md)
- Large ooze, unaligned
- **Armor Class** 6
- **Hit Points** 84 (8d10 + 40)
diff --git a/Data/HD/srd_monsters_ghast.md b/Data/HD/srd_monsters_ghast.md
index 84673a0c..27db6521 100644
--- a/Data/HD/srd_monsters_ghast.md
+++ b/Data/HD/srd_monsters_ghast.md
@@ -4,7 +4,7 @@
# Ghast
-- CEO: [Blême](monsters_hd.md#blême)
+- Alias: [Blême](monsters_hd.md#blême)
- Source: (SRD p311)
- Medium undead, chaotic evil
- **Armor Class** 13
diff --git a/Data/HD/srd_monsters_ghost.md b/Data/HD/srd_monsters_ghost.md
index f4b79111..f6e3bc8e 100644
--- a/Data/HD/srd_monsters_ghost.md
+++ b/Data/HD/srd_monsters_ghost.md
@@ -4,7 +4,7 @@
# Ghost
-- CEO: [Fantôme](hd_monsters_fantome.md)
+- Alias: [Fantôme](hd_monsters_fantome.md)
- Medium undead, any alignment
- **Armor Class** 11
- **Hit Points** 45 (10d8)
diff --git a/Data/HD/srd_monsters_ghoul.md b/Data/HD/srd_monsters_ghoul.md
index 08ea73b2..b196ea6a 100644
--- a/Data/HD/srd_monsters_ghoul.md
+++ b/Data/HD/srd_monsters_ghoul.md
@@ -4,7 +4,7 @@
# Ghoul
-- CEO: [Goule](hd_monsters_goule.md)
+- Alias: [Goule](hd_monsters_goule.md)
- Medium undead, chaotic evil
- **Armor Class** 12
- **Hit Points** 22 (5d8)
diff --git a/Data/HD/srd_monsters_giant_ape.md b/Data/HD/srd_monsters_giant_ape.md
index a3d485a2..c89ae5de 100644
--- a/Data/HD/srd_monsters_giant_ape.md
+++ b/Data/HD/srd_monsters_giant_ape.md
@@ -4,7 +4,7 @@
# Giant Ape
-- CEO: [Singe géant](hd_monsters_singe_geant.md)
+- Alias: [Singe géant](hd_monsters_singe_geant.md)
- Huge beast, unaligned
- **Armor Class** 12
- **Hit Points** 157 (15d12 + 60)
diff --git a/Data/HD/srd_monsters_giant_badger.md b/Data/HD/srd_monsters_giant_badger.md
index e7ad0c6d..9f89eab1 100644
--- a/Data/HD/srd_monsters_giant_badger.md
+++ b/Data/HD/srd_monsters_giant_badger.md
@@ -4,7 +4,7 @@
# Giant Badger
-- CEO: [Blaireau géant](hd_monsters_blaireau_geant.md)
+- Alias: [Blaireau géant](hd_monsters_blaireau_geant.md)
- Source: (SRD p373)
- Medium beast, unaligned
- **Armor Class** 10
diff --git a/Data/HD/srd_monsters_giant_bat.md b/Data/HD/srd_monsters_giant_bat.md
index fda31283..c8819af5 100644
--- a/Data/HD/srd_monsters_giant_bat.md
+++ b/Data/HD/srd_monsters_giant_bat.md
@@ -4,7 +4,7 @@
# Giant Bat
-- CEO: [Chauve-souris géante](hd_monsters_chauve_souris_geante.md)
+- Alias: [Chauve-souris géante](hd_monsters_chauve_souris_geante.md)
- Large beast, unaligned
- **Armor Class** 13
- **Hit Points** 22 (4d10)
diff --git a/Data/HD/srd_monsters_giant_boar.md b/Data/HD/srd_monsters_giant_boar.md
index fdf566bf..caadffd2 100644
--- a/Data/HD/srd_monsters_giant_boar.md
+++ b/Data/HD/srd_monsters_giant_boar.md
@@ -4,7 +4,7 @@
# Giant Boar
-- CEO: [Sanglier géant](hd_monsters_sanglier_geant.md)
+- Alias: [Sanglier géant](hd_monsters_sanglier_geant.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 42 (5d10 + 15)
diff --git a/Data/HD/srd_monsters_giant_centipede.md b/Data/HD/srd_monsters_giant_centipede.md
index ffb3f969..b1bcc032 100644
--- a/Data/HD/srd_monsters_giant_centipede.md
+++ b/Data/HD/srd_monsters_giant_centipede.md
@@ -4,7 +4,7 @@
# Giant Centipede
-- CEO: [Mille-pattes géant](hd_monsters_mille_pattes_geant.md)
+- Alias: [Mille-pattes géant](hd_monsters_mille_pattes_geant.md)
- Small beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 4 (1d6 + 1)
diff --git a/Data/HD/srd_monsters_giant_constrictor_snake.md b/Data/HD/srd_monsters_giant_constrictor_snake.md
index f6496ef1..5d88e142 100644
--- a/Data/HD/srd_monsters_giant_constrictor_snake.md
+++ b/Data/HD/srd_monsters_giant_constrictor_snake.md
@@ -4,7 +4,7 @@
# Giant Constrictor Snake
-- CEO: [Serpent constricteur géant](hd_monsters_serpent_constricteur_geant.md)
+- Alias: [Serpent constricteur géant](hd_monsters_serpent_constricteur_geant.md)
- Huge beast, unaligned
- **Armor Class** 12
- **Hit Points** 60 (8d12 + 8)
diff --git a/Data/HD/srd_monsters_giant_crab.md b/Data/HD/srd_monsters_giant_crab.md
index 77e49457..32957753 100644
--- a/Data/HD/srd_monsters_giant_crab.md
+++ b/Data/HD/srd_monsters_giant_crab.md
@@ -4,7 +4,7 @@
# Giant Crab
-- CEO: [Crabe géant](hd_monsters_crabe_geant.md)
+- Alias: [Crabe géant](hd_monsters_crabe_geant.md)
- Medium beast, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 13 (3d8)
diff --git a/Data/HD/srd_monsters_giant_crocodile.md b/Data/HD/srd_monsters_giant_crocodile.md
index 2409c06f..6e413756 100644
--- a/Data/HD/srd_monsters_giant_crocodile.md
+++ b/Data/HD/srd_monsters_giant_crocodile.md
@@ -4,7 +4,7 @@
# Giant Crocodile
-- CEO: [Crocodile géant](hd_monsters_crocodile_geant.md)
+- Alias: [Crocodile géant](hd_monsters_crocodile_geant.md)
- Huge beast, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 85 (9d12 + 27)
diff --git a/Data/HD/srd_monsters_giant_eagle.md b/Data/HD/srd_monsters_giant_eagle.md
index 804f8b25..46025ad4 100644
--- a/Data/HD/srd_monsters_giant_eagle.md
+++ b/Data/HD/srd_monsters_giant_eagle.md
@@ -4,7 +4,7 @@
# Giant Eagle
-- CEO: [Aigle géant](hd_monsters_aigle_geant.md)
+- Alias: [Aigle géant](hd_monsters_aigle_geant.md)
- Source: (SRD p375)
- Large beast, neutral good
- **Armor Class** 13
diff --git a/Data/HD/srd_monsters_giant_elk.md b/Data/HD/srd_monsters_giant_elk.md
index 881fca72..57964b32 100644
--- a/Data/HD/srd_monsters_giant_elk.md
+++ b/Data/HD/srd_monsters_giant_elk.md
@@ -4,7 +4,7 @@
# Giant Elk
-- CEO: [Élan géant](hd_monsters_elan_geant.md)
+- Alias: [Élan géant](hd_monsters_elan_geant.md)
- Huge beast, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 42 (5d12 + 10)
diff --git a/Data/HD/srd_monsters_giant_fire_beetle.md b/Data/HD/srd_monsters_giant_fire_beetle.md
index 4c020753..ccdcf645 100644
--- a/Data/HD/srd_monsters_giant_fire_beetle.md
+++ b/Data/HD/srd_monsters_giant_fire_beetle.md
@@ -4,7 +4,7 @@
# Giant Fire Beetle
-- CEO: [Punaise de feu géante](hd_monsters_punaise_de_feu_geante.md)
+- Alias: [Punaise de feu géante](hd_monsters_punaise_de_feu_geante.md)
- Small beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 4 (1d6 + 1)
diff --git a/Data/HD/srd_monsters_giant_frog.md b/Data/HD/srd_monsters_giant_frog.md
index e484ee71..e33f8f85 100644
--- a/Data/HD/srd_monsters_giant_frog.md
+++ b/Data/HD/srd_monsters_giant_frog.md
@@ -4,7 +4,7 @@
# Giant Frog
-- CEO: [Grenouille géante](hd_monsters_grenouille_geante.md)
+- Alias: [Grenouille géante](hd_monsters_grenouille_geante.md)
- Medium beast, unaligned
- **Armor Class** 11
- **Hit Points** 18 (4d8)
diff --git a/Data/HD/srd_monsters_giant_goat.md b/Data/HD/srd_monsters_giant_goat.md
index bf0df552..4dd5492a 100644
--- a/Data/HD/srd_monsters_giant_goat.md
+++ b/Data/HD/srd_monsters_giant_goat.md
@@ -4,7 +4,7 @@
# Giant Goat
-- CEO: [Chèvre géante](hd_monsters_chevre_geante.md)
+- Alias: [Chèvre géante](hd_monsters_chevre_geante.md)
- Large beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 19 (3d10 + 3)
diff --git a/Data/HD/srd_monsters_giant_hyena.md b/Data/HD/srd_monsters_giant_hyena.md
index a809987e..f15ab4b0 100644
--- a/Data/HD/srd_monsters_giant_hyena.md
+++ b/Data/HD/srd_monsters_giant_hyena.md
@@ -4,7 +4,7 @@
# Giant Hyena
-- CEO: [Hyène géante](hd_monsters_hyene_geante.md)
+- Alias: [Hyène géante](hd_monsters_hyene_geante.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 45 (6d10 + 12)
diff --git a/Data/HD/srd_monsters_giant_lizard.md b/Data/HD/srd_monsters_giant_lizard.md
index 02682082..82d0e01b 100644
--- a/Data/HD/srd_monsters_giant_lizard.md
+++ b/Data/HD/srd_monsters_giant_lizard.md
@@ -4,7 +4,7 @@
# Giant Lizard
-- CEO: [Lézard géant](hd_monsters_lezard_geant.md)
+- Alias: [Lézard géant](hd_monsters_lezard_geant.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 19 (3d10 + 3)
diff --git a/Data/HD/srd_monsters_giant_octopus.md b/Data/HD/srd_monsters_giant_octopus.md
index e645c6f8..47169c66 100644
--- a/Data/HD/srd_monsters_giant_octopus.md
+++ b/Data/HD/srd_monsters_giant_octopus.md
@@ -4,7 +4,7 @@
# Giant Octopus
-- CEO: [Pieuvre géante](hd_monsters_pieuvre_geante.md)
+- Alias: [Pieuvre géante](hd_monsters_pieuvre_geante.md)
- Large beast, unaligned
- **Armor Class** 11
- **Hit Points** 52 (8d10 + 8)
diff --git a/Data/HD/srd_monsters_giant_owl.md b/Data/HD/srd_monsters_giant_owl.md
index 6c603624..c03e8e2b 100644
--- a/Data/HD/srd_monsters_giant_owl.md
+++ b/Data/HD/srd_monsters_giant_owl.md
@@ -4,7 +4,7 @@
# Giant Owl
-- CEO: [Chouette géante](hd_monsters_chouette_geante.md)
+- Alias: [Chouette géante](hd_monsters_chouette_geante.md)
- Large beast, neutral
- **Armor Class** 12
- **Hit Points** 19 (3d10 + 3)
diff --git a/Data/HD/srd_monsters_giant_poisonous_snake.md b/Data/HD/srd_monsters_giant_poisonous_snake.md
index 4bc09e59..36bd5fed 100644
--- a/Data/HD/srd_monsters_giant_poisonous_snake.md
+++ b/Data/HD/srd_monsters_giant_poisonous_snake.md
@@ -4,7 +4,7 @@
# Giant Poisonous Snake
-- CEO: [Serpent venimeux géant](hd_monsters_serpent_venimeux_geant.md)
+- Alias: [Serpent venimeux géant](hd_monsters_serpent_venimeux_geant.md)
- Medium beast, unaligned
- **Armor Class** 14
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_giant_rat.md b/Data/HD/srd_monsters_giant_rat.md
index ea20c25d..901e0a21 100644
--- a/Data/HD/srd_monsters_giant_rat.md
+++ b/Data/HD/srd_monsters_giant_rat.md
@@ -4,7 +4,7 @@
# Giant Rat
-- CEO: [Rat géant](hd_monsters_rat_geant.md)
+- Alias: [Rat géant](hd_monsters_rat_geant.md)
- Small beast, unaligned
- **Armor Class** 12
- **Hit Points** 7 (2d6)
diff --git a/Data/HD/srd_monsters_giant_scorpion.md b/Data/HD/srd_monsters_giant_scorpion.md
index 23c63348..03a8dd12 100644
--- a/Data/HD/srd_monsters_giant_scorpion.md
+++ b/Data/HD/srd_monsters_giant_scorpion.md
@@ -4,7 +4,7 @@
# Giant Scorpion
-- CEO: [Scorpion géant](hd_monsters_scorpion_geant.md)
+- Alias: [Scorpion géant](hd_monsters_scorpion_geant.md)
- Large beast, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 52 (7d10 + 14)
diff --git a/Data/HD/srd_monsters_giant_sea_horse.md b/Data/HD/srd_monsters_giant_sea_horse.md
index d0c4d17a..8006fd50 100644
--- a/Data/HD/srd_monsters_giant_sea_horse.md
+++ b/Data/HD/srd_monsters_giant_sea_horse.md
@@ -4,7 +4,7 @@
# Giant Sea Horse
-- CEO: [Hippocampe géant](hd_monsters_hippocampe_geant.md)
+- Alias: [Hippocampe géant](hd_monsters_hippocampe_geant.md)
- Large beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 16 (3d10)
diff --git a/Data/HD/srd_monsters_giant_shark.md b/Data/HD/srd_monsters_giant_shark.md
index b5e4d433..089ea445 100644
--- a/Data/HD/srd_monsters_giant_shark.md
+++ b/Data/HD/srd_monsters_giant_shark.md
@@ -4,7 +4,7 @@
# Giant Shark
-- CEO: [Requin géant](hd_monsters_requin_geant.md)
+- Alias: [Requin géant](hd_monsters_requin_geant.md)
- Huge beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 126 (11d12 + 55)
diff --git a/Data/HD/srd_monsters_giant_spider.md b/Data/HD/srd_monsters_giant_spider.md
index e6f0d858..c8b5f490 100644
--- a/Data/HD/srd_monsters_giant_spider.md
+++ b/Data/HD/srd_monsters_giant_spider.md
@@ -4,7 +4,7 @@
# Giant Spider
-- CEO: [Araignée géante](hd_monsters_araignee_geante.md)
+- Alias: [Araignée géante](hd_monsters_araignee_geante.md)
- Source: (SRD p379)
- Large beast, unaligned
- **Armor Class** 14 (natural armor)
diff --git a/Data/HD/srd_monsters_giant_toad.md b/Data/HD/srd_monsters_giant_toad.md
index 33156784..5f9ec541 100644
--- a/Data/HD/srd_monsters_giant_toad.md
+++ b/Data/HD/srd_monsters_giant_toad.md
@@ -4,7 +4,7 @@
# Giant Toad
-- CEO: [Crapaud géant](hd_monsters_crapaud_geant.md)
+- Alias: [Crapaud géant](hd_monsters_crapaud_geant.md)
- Large beast, unaligned
- **Armor Class** 11
- **Hit Points** 39 (6d10 + 6)
diff --git a/Data/HD/srd_monsters_giant_vulture.md b/Data/HD/srd_monsters_giant_vulture.md
index 8c62728a..3fd3bac9 100644
--- a/Data/HD/srd_monsters_giant_vulture.md
+++ b/Data/HD/srd_monsters_giant_vulture.md
@@ -4,7 +4,7 @@
# Giant Vulture
-- CEO: [Vautour géant](hd_monsters_vautour_geant.md)
+- Alias: [Vautour géant](hd_monsters_vautour_geant.md)
- Large beast, neutral evil
- **Armor Class** 10
- **Hit Points** 22 (3d10 + 6)
diff --git a/Data/HD/srd_monsters_giant_wasp.md b/Data/HD/srd_monsters_giant_wasp.md
index 3a8fe365..2b25428d 100644
--- a/Data/HD/srd_monsters_giant_wasp.md
+++ b/Data/HD/srd_monsters_giant_wasp.md
@@ -4,7 +4,7 @@
# Giant Wasp
-- CEO: [Guêpe géante](hd_monsters_guepe_geante.md)
+- Alias: [Guêpe géante](hd_monsters_guepe_geante.md)
- Medium beast, unaligned
- **Armor Class** 12
- **Hit Points** 13 (3d8)
diff --git a/Data/HD/srd_monsters_giant_weasel.md b/Data/HD/srd_monsters_giant_weasel.md
index 20ae82e7..107b35bf 100644
--- a/Data/HD/srd_monsters_giant_weasel.md
+++ b/Data/HD/srd_monsters_giant_weasel.md
@@ -4,7 +4,7 @@
# Giant Weasel
-- CEO: [Belette géante](hd_monsters_belette_geante.md)
+- Alias: [Belette géante](hd_monsters_belette_geante.md)
- Source: (SRD p381)
- Medium beast, unaligned
- **Armor Class** 13
diff --git a/Data/HD/srd_monsters_giant_wolf_spider.md b/Data/HD/srd_monsters_giant_wolf_spider.md
index 7430060f..d5b51ddc 100644
--- a/Data/HD/srd_monsters_giant_wolf_spider.md
+++ b/Data/HD/srd_monsters_giant_wolf_spider.md
@@ -4,7 +4,7 @@
# Giant Wolf Spider
-- CEO: [Araignée-loup géante](hd_monsters_araignee_loup_geante.md)
+- Alias: [Araignée-loup géante](hd_monsters_araignee_loup_geante.md)
- Source: (SRD p381)
- Medium beast, unaligned
- **Armor Class** 13
diff --git a/Data/HD/srd_monsters_gibbering_mouther.md b/Data/HD/srd_monsters_gibbering_mouther.md
index b530db8d..b6cc7ce3 100644
--- a/Data/HD/srd_monsters_gibbering_mouther.md
+++ b/Data/HD/srd_monsters_gibbering_mouther.md
@@ -4,7 +4,7 @@
# Gibbering Mouther
-- CEO: [Babélien](hd_monsters_babelien.md)
+- Alias: [Babélien](hd_monsters_babelien.md)
- Source: (SRD p314)
- Medium aberration, neutral
- **Armor Class** 9
diff --git a/Data/HD/srd_monsters_glabrezu.md b/Data/HD/srd_monsters_glabrezu.md
index cdec008f..bfdff2de 100644
--- a/Data/HD/srd_monsters_glabrezu.md
+++ b/Data/HD/srd_monsters_glabrezu.md
@@ -4,7 +4,7 @@
# Glabrezu
-- CEO: [Glabrezu](hd_monsters_glabrezu.md)
+- Alias: [Glabrezu](hd_monsters_glabrezu.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 157 (15d10 + 75)
diff --git a/Data/HD/srd_monsters_gladiator.md b/Data/HD/srd_monsters_gladiator.md
index e1763e25..1b66dfee 100644
--- a/Data/HD/srd_monsters_gladiator.md
+++ b/Data/HD/srd_monsters_gladiator.md
@@ -4,7 +4,7 @@
# Gladiator
-- CEO: [Gladiateur](hd_monsters_gladiateur.md)
+- Alias: [Gladiateur](hd_monsters_gladiateur.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 16 (studded leather, shield)
- **Hit Points** 112 (15d8 + 45)
diff --git a/Data/HD/srd_monsters_gnoll.md b/Data/HD/srd_monsters_gnoll.md
index d214f41d..9936aeb8 100644
--- a/Data/HD/srd_monsters_gnoll.md
+++ b/Data/HD/srd_monsters_gnoll.md
@@ -4,7 +4,7 @@
# Gnoll
-- CEO: [Gnoll](hd_monsters_gnoll.md)
+- Alias: [Gnoll](hd_monsters_gnoll.md)
- Medium humanoid (gnoll), chaotic evil
- **Armor Class** 15 (hide armor, shield)
- **Hit Points** 22 (5d8)
diff --git a/Data/HD/srd_monsters_goat.md b/Data/HD/srd_monsters_goat.md
index 2609973a..802d398e 100644
--- a/Data/HD/srd_monsters_goat.md
+++ b/Data/HD/srd_monsters_goat.md
@@ -4,7 +4,7 @@
# Goat
-- CEO: [Chèvre](hd_monsters_chevre.md)
+- Alias: [Chèvre](hd_monsters_chevre.md)
- Medium beast, unaligned
- **Armor Class** 10
- **Hit Points** 4 (1d8)
diff --git a/Data/HD/srd_monsters_goblin.md b/Data/HD/srd_monsters_goblin.md
index f0ed6cf6..af13ee1a 100644
--- a/Data/HD/srd_monsters_goblin.md
+++ b/Data/HD/srd_monsters_goblin.md
@@ -4,7 +4,7 @@
# Goblin
-- CEO: [Gobelin](hd_monsters_gobelin.md)
+- Alias: [Gobelin](hd_monsters_gobelin.md)
- Small humanoid (goblinoid), neutral evil
- **Armor Class** 15 (leather armor, shield)
- **Hit Points** 7 (2d6)
diff --git a/Data/HD/srd_monsters_gold_dragon_wyrmling.md b/Data/HD/srd_monsters_gold_dragon_wyrmling.md
index f66fa3b2..34f0b066 100644
--- a/Data/HD/srd_monsters_gold_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_gold_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Gold Dragon Wyrmling
-- CEO: [Dragonnet d'or](hd_monsters_dragonnet_dor.md)
+- Alias: [Dragonnet d'or](hd_monsters_dragonnet_dor.md)
- Medium dragon, lawful good
- **Armor Class** 17 (natural armor)
- **Hit Points** 60 (8d8 + 24)
diff --git a/Data/HD/srd_monsters_gorgon.md b/Data/HD/srd_monsters_gorgon.md
index 02ffdc81..5bacb427 100644
--- a/Data/HD/srd_monsters_gorgon.md
+++ b/Data/HD/srd_monsters_gorgon.md
@@ -4,7 +4,7 @@
# Gorgon
-- CEO: [Gorgone](hd_monsters_gorgone.md)
+- Alias: [Gorgone](hd_monsters_gorgone.md)
- Large monstrosity, unaligned
- **Armor Class** 19 (natural armor)
- **Hit Points** 114 (12d10 + 48)
diff --git a/Data/HD/srd_monsters_gray_ooze.md b/Data/HD/srd_monsters_gray_ooze.md
index 07b3e0b6..c54b38ee 100644
--- a/Data/HD/srd_monsters_gray_ooze.md
+++ b/Data/HD/srd_monsters_gray_ooze.md
@@ -4,7 +4,7 @@
# Gray Ooze
-- CEO: [Vase grise](hd_monsters_vase_grise.md)
+- Alias: [Vase grise](hd_monsters_vase_grise.md)
- Medium ooze, unaligned
- **Armor Class** 8
- **Hit Points** 22 (3d8 + 9)
diff --git a/Data/HD/srd_monsters_green_dragon_wyrmling.md b/Data/HD/srd_monsters_green_dragon_wyrmling.md
index a8f617a8..8c8f019a 100644
--- a/Data/HD/srd_monsters_green_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_green_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Green Dragon Wyrmling
-- CEO: [Dragonnet vert](hd_monsters_dragonnet_vert.md)
+- Alias: [Dragonnet vert](hd_monsters_dragonnet_vert.md)
- Medium dragon, lawful evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 38 (7d8 + 7)
diff --git a/Data/HD/srd_monsters_green_hag.md b/Data/HD/srd_monsters_green_hag.md
index afb52e79..43faaecd 100644
--- a/Data/HD/srd_monsters_green_hag.md
+++ b/Data/HD/srd_monsters_green_hag.md
@@ -4,7 +4,7 @@
# Green Hag
-- CEO: [Guenaude verte](hd_monsters_guenaude_verte.md)
+- Alias: [Guenaude verte](hd_monsters_guenaude_verte.md)
- Medium fey, neutral evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 82 (11d8 + 33)
diff --git a/Data/HD/srd_monsters_grick.md b/Data/HD/srd_monsters_grick.md
index fb3dfe6b..4aa95bcf 100644
--- a/Data/HD/srd_monsters_grick.md
+++ b/Data/HD/srd_monsters_grick.md
@@ -4,7 +4,7 @@
# Grick
-- CEO: [Grick](hd_monsters_grick.md)
+- Alias: [Grick](hd_monsters_grick.md)
- Medium monstrosity, neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 27 (6d8)
diff --git a/Data/HD/srd_monsters_griffon.md b/Data/HD/srd_monsters_griffon.md
index 42326df5..f620e473 100644
--- a/Data/HD/srd_monsters_griffon.md
+++ b/Data/HD/srd_monsters_griffon.md
@@ -4,7 +4,7 @@
# Griffon
-- CEO: [Griffon](hd_monsters_griffon.md)
+- Alias: [Griffon](hd_monsters_griffon.md)
- Large monstrosity, unaligned
- **Armor Class** 12
- **Hit Points** 59 (7d10 + 21)
diff --git a/Data/HD/srd_monsters_grimlock.md b/Data/HD/srd_monsters_grimlock.md
index fedcaadb..8c13cfc1 100644
--- a/Data/HD/srd_monsters_grimlock.md
+++ b/Data/HD/srd_monsters_grimlock.md
@@ -4,7 +4,7 @@
# Grimlock
-- CEO: [Torve](hd_monsters_torve.md)
+- Alias: [Torve](hd_monsters_torve.md)
- Medium humanoid (grimlock), neutral evil
- **Armor Class** 11
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_guard.md b/Data/HD/srd_monsters_guard.md
index 7998debe..a58b7647 100644
--- a/Data/HD/srd_monsters_guard.md
+++ b/Data/HD/srd_monsters_guard.md
@@ -4,7 +4,7 @@
# Guard
-- CEO: [Garde](hd_monsters_garde.md)
+- Alias: [Garde](hd_monsters_garde.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 16 (chain shirt, shield)
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_guardian_naga.md b/Data/HD/srd_monsters_guardian_naga.md
index 9837d6d8..187f67ea 100644
--- a/Data/HD/srd_monsters_guardian_naga.md
+++ b/Data/HD/srd_monsters_guardian_naga.md
@@ -4,7 +4,7 @@
# Guardian Naga
-- CEO: [Naga gardien](hd_monsters_naga_gardien.md)
+- Alias: [Naga gardien](hd_monsters_naga_gardien.md)
- Large monstrosity, lawful good
- **Armor Class** 18 (natural armor)
- **Hit Points** 127 (15d10 + 45)
diff --git a/Data/HD/srd_monsters_gynosphinx.md b/Data/HD/srd_monsters_gynosphinx.md
index 1d847054..22e627b8 100644
--- a/Data/HD/srd_monsters_gynosphinx.md
+++ b/Data/HD/srd_monsters_gynosphinx.md
@@ -4,7 +4,7 @@
# Gynosphinx
-- CEO: [Gynosphinx](hd_monsters_gynosphinx.md)
+- Alias: [Gynosphinx](hd_monsters_gynosphinx.md)
- Large monstrosity, lawful neutral
- **Armor Class** 17 (natural armor)
- **Hit Points** 136 (16d10 + 48)
diff --git a/Data/HD/srd_monsters_harpy.md b/Data/HD/srd_monsters_harpy.md
index dc4e7cce..0545020b 100644
--- a/Data/HD/srd_monsters_harpy.md
+++ b/Data/HD/srd_monsters_harpy.md
@@ -4,7 +4,7 @@
# Harpy
-- CEO: [Harpie](hd_monsters_harpie.md)
+- Alias: [Harpie](hd_monsters_harpie.md)
- Medium monstrosity, chaotic evil
- **Armor Class** 11
- **Hit Points** 38 (7d8 + 7)
diff --git a/Data/HD/srd_monsters_hawk.md b/Data/HD/srd_monsters_hawk.md
index 0c67d27e..ed2c8ccf 100644
--- a/Data/HD/srd_monsters_hawk.md
+++ b/Data/HD/srd_monsters_hawk.md
@@ -4,7 +4,7 @@
# Hawk
-- CEO: [Faucon](hd_monsters_faucon.md)
+- Alias: [Faucon](hd_monsters_faucon.md)
- Tiny beast, unaligned
- **Armor Class** 13
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_hell_hound.md b/Data/HD/srd_monsters_hell_hound.md
index 063f7dd4..9ac277eb 100644
--- a/Data/HD/srd_monsters_hell_hound.md
+++ b/Data/HD/srd_monsters_hell_hound.md
@@ -4,7 +4,7 @@
# Hell Hound
-- CEO: [Molosse infernal](hd_monsters_molosse_infernal.md)
+- Alias: [Molosse infernal](hd_monsters_molosse_infernal.md)
- Medium fiend, lawful evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 45 (7d8 + 14)
diff --git a/Data/HD/srd_monsters_hezrou.md b/Data/HD/srd_monsters_hezrou.md
index 6b6dc98b..e77717f0 100644
--- a/Data/HD/srd_monsters_hezrou.md
+++ b/Data/HD/srd_monsters_hezrou.md
@@ -4,7 +4,7 @@
# Hezrou
-- CEO: [Hezrou](hd_monsters_hezrou.md)
+- Alias: [Hezrou](hd_monsters_hezrou.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 136 (13d10 + 65)
diff --git a/Data/HD/srd_monsters_hill_giant.md b/Data/HD/srd_monsters_hill_giant.md
index 25181507..5139319e 100644
--- a/Data/HD/srd_monsters_hill_giant.md
+++ b/Data/HD/srd_monsters_hill_giant.md
@@ -4,7 +4,7 @@
# Hill Giant
-- CEO: [Géant des collines](hd_monsters_geant_des_collines.md)
+- Alias: [Géant des collines](hd_monsters_geant_des_collines.md)
- Huge giant, chaotic evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 105 (10d12 + 40)
diff --git a/Data/HD/srd_monsters_hippogriff.md b/Data/HD/srd_monsters_hippogriff.md
index ac1b86f2..d89c7067 100644
--- a/Data/HD/srd_monsters_hippogriff.md
+++ b/Data/HD/srd_monsters_hippogriff.md
@@ -4,7 +4,7 @@
# Hippogriff
-- CEO: [Hippogriffe](hd_monsters_hippogriffe.md)
+- Alias: [Hippogriffe](hd_monsters_hippogriffe.md)
- Large monstrosity, unaligned
- **Armor Class** 11
- **Hit Points** 19 (3d10 + 3)
diff --git a/Data/HD/srd_monsters_hobgoblin.md b/Data/HD/srd_monsters_hobgoblin.md
index e917a074..38af462e 100644
--- a/Data/HD/srd_monsters_hobgoblin.md
+++ b/Data/HD/srd_monsters_hobgoblin.md
@@ -4,7 +4,7 @@
# Hobgoblin
-- CEO: [Hobgobelin](hd_monsters_hobgobelin.md)
+- Alias: [Hobgobelin](hd_monsters_hobgobelin.md)
- Medium humanoid (goblinoid), lawful evil
- **Armor Class** 18 (chain mail, shield)
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_homunculus.md b/Data/HD/srd_monsters_homunculus.md
index 89f209c5..330c353e 100644
--- a/Data/HD/srd_monsters_homunculus.md
+++ b/Data/HD/srd_monsters_homunculus.md
@@ -4,7 +4,7 @@
# Homunculus
-- CEO: [Homoncule](hd_monsters_homoncule.md)
+- Alias: [Homoncule](hd_monsters_homoncule.md)
- Tiny construct, neutral
- **Armor Class** 13 (natural armor)
- **Hit Points** 5 (2d4)
diff --git a/Data/HD/srd_monsters_horned_devil.md b/Data/HD/srd_monsters_horned_devil.md
index ad53eec7..8bb0439d 100644
--- a/Data/HD/srd_monsters_horned_devil.md
+++ b/Data/HD/srd_monsters_horned_devil.md
@@ -4,7 +4,7 @@
# Horned Devil
-- CEO: [Diable cornu](hd_monsters_diable_cornu.md)
+- Alias: [Diable cornu](hd_monsters_diable_cornu.md)
- Large fiend (devil), lawful evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 178 (17d10 + 85)
diff --git a/Data/HD/srd_monsters_hunter_shark.md b/Data/HD/srd_monsters_hunter_shark.md
index 253a80c6..022009ff 100644
--- a/Data/HD/srd_monsters_hunter_shark.md
+++ b/Data/HD/srd_monsters_hunter_shark.md
@@ -4,7 +4,7 @@
# Hunter Shark
-- CEO: [Requin chasseur](hd_monsters_requin_chasseur.md)
+- Alias: [Requin chasseur](hd_monsters_requin_chasseur.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 45 (6d10 + 12)
diff --git a/Data/HD/srd_monsters_hydra.md b/Data/HD/srd_monsters_hydra.md
index 2676eecb..614db5f6 100644
--- a/Data/HD/srd_monsters_hydra.md
+++ b/Data/HD/srd_monsters_hydra.md
@@ -4,7 +4,7 @@
# Hydra
-- CEO: [Hydre](hd_monsters_hydre.md)
+- Alias: [Hydre](hd_monsters_hydre.md)
- Huge monstrosity, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 172 (15d12 + 75)
diff --git a/Data/HD/srd_monsters_hyena.md b/Data/HD/srd_monsters_hyena.md
index 2a8c18dd..8cb6ab1b 100644
--- a/Data/HD/srd_monsters_hyena.md
+++ b/Data/HD/srd_monsters_hyena.md
@@ -4,7 +4,7 @@
# Hyena
-- CEO: [Hyène](hd_monsters_hyene.md)
+- Alias: [Hyène](hd_monsters_hyene.md)
- Medium beast, unaligned
- **Armor Class** 11
- **Hit Points** 5 (1d8 + 1)
diff --git a/Data/HD/srd_monsters_ice_devil.md b/Data/HD/srd_monsters_ice_devil.md
index bf98a4c6..cc3d27b5 100644
--- a/Data/HD/srd_monsters_ice_devil.md
+++ b/Data/HD/srd_monsters_ice_devil.md
@@ -4,7 +4,7 @@
# Ice Devil
-- CEO: [Diable gelé](hd_monsters_diable_gele.md)
+- Alias: [Diable gelé](hd_monsters_diable_gele.md)
- Large fiend (devil), lawful evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 180 (19d10 + 76)
diff --git a/Data/HD/srd_monsters_ice_mephit.md b/Data/HD/srd_monsters_ice_mephit.md
index 5be88657..0ddb50e6 100644
--- a/Data/HD/srd_monsters_ice_mephit.md
+++ b/Data/HD/srd_monsters_ice_mephit.md
@@ -4,7 +4,7 @@
# Ice Mephit
-- CEO: [Méphite de glace](hd_monsters_mephite_de_glace.md)
+- Alias: [Méphite de glace](hd_monsters_mephite_de_glace.md)
- Small elemental, neutral evil
- **Armor Class** 11
- **Hit Points** 21 (6d6)
diff --git a/Data/HD/srd_monsters_imp.md b/Data/HD/srd_monsters_imp.md
index b28696f5..9ace8c60 100644
--- a/Data/HD/srd_monsters_imp.md
+++ b/Data/HD/srd_monsters_imp.md
@@ -4,7 +4,7 @@
# Imp
-- CEO: [Diablotin](hd_monsters_diablotin.md)
+- Alias: [Diablotin](hd_monsters_diablotin.md)
- Tiny fiend (devil, shapechanger), lawful evil
- **Armor Class** 13
- **Hit Points** 10 (3d4 + 3)
diff --git a/Data/HD/srd_monsters_invisible_stalker.md b/Data/HD/srd_monsters_invisible_stalker.md
index 11d049d2..c46eeb3e 100644
--- a/Data/HD/srd_monsters_invisible_stalker.md
+++ b/Data/HD/srd_monsters_invisible_stalker.md
@@ -4,7 +4,7 @@
# Invisible Stalker
-- CEO: [Traqueur invisible](hd_monsters_traqueur_invisible.md)
+- Alias: [Traqueur invisible](hd_monsters_traqueur_invisible.md)
- Medium elemental, neutral
- **Armor Class** 14
- **Hit Points** 104 (16d8 + 32)
diff --git a/Data/HD/srd_monsters_iron_golem.md b/Data/HD/srd_monsters_iron_golem.md
index 832a4b5a..2bea5cc2 100644
--- a/Data/HD/srd_monsters_iron_golem.md
+++ b/Data/HD/srd_monsters_iron_golem.md
@@ -4,7 +4,7 @@
# Iron Golem
-- CEO: [Golem de fer](hd_monsters_golem_de_fer.md)
+- Alias: [Golem de fer](hd_monsters_golem_de_fer.md)
- Large construct, unaligned
- **Armor Class** 20 (natural armor)
- **Hit Points** 210 (20d10 + 100)
diff --git a/Data/HD/srd_monsters_jackal.md b/Data/HD/srd_monsters_jackal.md
index 1d081fc9..71214120 100644
--- a/Data/HD/srd_monsters_jackal.md
+++ b/Data/HD/srd_monsters_jackal.md
@@ -4,7 +4,7 @@
# Jackal
-- CEO: [Chacal](hd_monsters_chacal.md)
+- Alias: [Chacal](hd_monsters_chacal.md)
- Small beast, unaligned
- **Armor Class** 12
- **Hit Points** 3 (1d6)
diff --git a/Data/HD/srd_monsters_killer_whale.md b/Data/HD/srd_monsters_killer_whale.md
index f175c2de..1e48dbbc 100644
--- a/Data/HD/srd_monsters_killer_whale.md
+++ b/Data/HD/srd_monsters_killer_whale.md
@@ -4,7 +4,7 @@
# Killer Whale
-- CEO: [Épaulard](hd_monsters_epaulard.md)
+- Alias: [Épaulard](hd_monsters_epaulard.md)
- Huge beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 90 (12d12 + 12)
diff --git a/Data/HD/srd_monsters_knight.md b/Data/HD/srd_monsters_knight.md
index 17f91ef4..5309454b 100644
--- a/Data/HD/srd_monsters_knight.md
+++ b/Data/HD/srd_monsters_knight.md
@@ -4,7 +4,7 @@
# Knight
-- CEO: [Chevalier](hd_monsters_chevalier.md)
+- Alias: [Chevalier](hd_monsters_chevalier.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 18 (plate)
- **Hit Points** 52 (8d8 + 16)
diff --git a/Data/HD/srd_monsters_kobold.md b/Data/HD/srd_monsters_kobold.md
index 5a6b5b2d..e77e2297 100644
--- a/Data/HD/srd_monsters_kobold.md
+++ b/Data/HD/srd_monsters_kobold.md
@@ -4,7 +4,7 @@
# Kobold
-- CEO: [Kobold](hd_monsters_kobold.md)
+- Alias: [Kobold](hd_monsters_kobold.md)
- Small humanoid (kobold), lawful evil
- **Armor Class** 12
- **Hit Points** 5 (2d6 - 2)
diff --git a/Data/HD/srd_monsters_kraken.md b/Data/HD/srd_monsters_kraken.md
index 3f224b1c..8fd40706 100644
--- a/Data/HD/srd_monsters_kraken.md
+++ b/Data/HD/srd_monsters_kraken.md
@@ -4,7 +4,7 @@
# Kraken
-- CEO: [Kraken](hd_monsters_kraken.md)
+- Alias: [Kraken](hd_monsters_kraken.md)
- Gargantuan monstrosity (titan), chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 472 (27d20 + 189)
diff --git a/Data/HD/srd_monsters_lamia.md b/Data/HD/srd_monsters_lamia.md
index a87f5960..8bca9980 100644
--- a/Data/HD/srd_monsters_lamia.md
+++ b/Data/HD/srd_monsters_lamia.md
@@ -4,7 +4,7 @@
# Lamia
-- CEO: [Lamie](hd_monsters_lamie.md)
+- Alias: [Lamie](hd_monsters_lamie.md)
- Large monstrosity, chaotic evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 97 (13d10 + 26)
diff --git a/Data/HD/srd_monsters_lemure.md b/Data/HD/srd_monsters_lemure.md
index 32d8188a..9c9f64bb 100644
--- a/Data/HD/srd_monsters_lemure.md
+++ b/Data/HD/srd_monsters_lemure.md
@@ -4,7 +4,7 @@
# Lemure
-- CEO: [Lémure](hd_monsters_lemure.md)
+- Alias: [Lémure](hd_monsters_lemure.md)
- Medium fiend (devil), lawful evil
- **Armor Class** 7
- **Hit Points** 13 (3d8)
diff --git a/Data/HD/srd_monsters_lich.md b/Data/HD/srd_monsters_lich.md
index 189a80b4..684f6dcc 100644
--- a/Data/HD/srd_monsters_lich.md
+++ b/Data/HD/srd_monsters_lich.md
@@ -4,7 +4,7 @@
# Lich
-- CEO: [Liche](hd_monsters_liche.md)
+- Alias: [Liche](hd_monsters_liche.md)
- Medium undead, any evil alignment
- **Armor Class** 17 (natural armor)
- **Hit Points** 135 (18d8 + 54)
diff --git a/Data/HD/srd_monsters_lion.md b/Data/HD/srd_monsters_lion.md
index 613ed7d6..ffc07687 100644
--- a/Data/HD/srd_monsters_lion.md
+++ b/Data/HD/srd_monsters_lion.md
@@ -4,7 +4,7 @@
# Lion
-- CEO: [Lion](hd_monsters_lion.md)
+- Alias: [Lion](hd_monsters_lion.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 26 (4d10 + 4)
diff --git a/Data/HD/srd_monsters_lizard.md b/Data/HD/srd_monsters_lizard.md
index c8cf08d6..a78c5f2c 100644
--- a/Data/HD/srd_monsters_lizard.md
+++ b/Data/HD/srd_monsters_lizard.md
@@ -4,7 +4,7 @@
# Lizard
-- CEO: [Lézard](hd_monsters_lezard.md)
+- Alias: [Lézard](hd_monsters_lezard.md)
- Tiny beast, unaligned
- **Armor Class** 10
- **Hit Points** 2 (1d4)
diff --git a/Data/HD/srd_monsters_lizardfolk.md b/Data/HD/srd_monsters_lizardfolk.md
index 0bad9b5b..b8853e38 100644
--- a/Data/HD/srd_monsters_lizardfolk.md
+++ b/Data/HD/srd_monsters_lizardfolk.md
@@ -4,7 +4,7 @@
# Lizardfolk
-- CEO: [Homme-lézard](hd_monsters_homme_lezard.md)
+- Alias: [Homme-lézard](hd_monsters_homme_lezard.md)
- Medium humanoid (lizardfolk), neutral
- **Armor Class** 15 (natural armor, shield)
- **Hit Points** 22 (4d8 + 4)
diff --git a/Data/HD/srd_monsters_mage.md b/Data/HD/srd_monsters_mage.md
index 55012256..132c9544 100644
--- a/Data/HD/srd_monsters_mage.md
+++ b/Data/HD/srd_monsters_mage.md
@@ -4,7 +4,7 @@
# Mage
-- CEO: [Mage](hd_monsters_mage.md)
+- Alias: [Mage](hd_monsters_mage.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 12 (15 with
- **Hit Points** 40 (9d8)
diff --git a/Data/HD/srd_monsters_magma_mephit.md b/Data/HD/srd_monsters_magma_mephit.md
index a1a255b3..c5a355f8 100644
--- a/Data/HD/srd_monsters_magma_mephit.md
+++ b/Data/HD/srd_monsters_magma_mephit.md
@@ -4,7 +4,7 @@
# Magma Mephit
-- CEO: [Méphite de magma](hd_monsters_mephite_de_magma.md)
+- Alias: [Méphite de magma](hd_monsters_mephite_de_magma.md)
- Small elemental, neutral evil
- **Armor Class** 11
- **Hit Points** 22 (5d6 + 5)
diff --git a/Data/HD/srd_monsters_magmin.md b/Data/HD/srd_monsters_magmin.md
index 53d9cda7..b266b122 100644
--- a/Data/HD/srd_monsters_magmin.md
+++ b/Data/HD/srd_monsters_magmin.md
@@ -4,7 +4,7 @@
# Magmin
-- CEO: [Magmatique](hd_monsters_magmatique.md)
+- Alias: [Magmatique](hd_monsters_magmatique.md)
- Small elemental, chaotic neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 9 (2d6 + 2)
diff --git a/Data/HD/srd_monsters_mammoth.md b/Data/HD/srd_monsters_mammoth.md
index b071240a..0194c42b 100644
--- a/Data/HD/srd_monsters_mammoth.md
+++ b/Data/HD/srd_monsters_mammoth.md
@@ -4,7 +4,7 @@
# Mammoth
-- CEO: [Mammouth](hd_monsters_mammouth.md)
+- Alias: [Mammouth](hd_monsters_mammouth.md)
- Huge beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 126 (11d12 + 55)
diff --git a/Data/HD/srd_monsters_manticore.md b/Data/HD/srd_monsters_manticore.md
index 9c7914b0..dfc7ac3d 100644
--- a/Data/HD/srd_monsters_manticore.md
+++ b/Data/HD/srd_monsters_manticore.md
@@ -4,7 +4,7 @@
# Manticore
-- CEO: [Manticore](hd_monsters_manticore.md)
+- Alias: [Manticore](hd_monsters_manticore.md)
- Large monstrosity, lawful evil
- **Armor Class** 14 (natural armor)
- **Hit Points** 68 (8d10 + 24)
diff --git a/Data/HD/srd_monsters_marilith.md b/Data/HD/srd_monsters_marilith.md
index 8724c0ec..48054f5b 100644
--- a/Data/HD/srd_monsters_marilith.md
+++ b/Data/HD/srd_monsters_marilith.md
@@ -4,7 +4,7 @@
# Marilith
-- CEO: [Marilith](hd_monsters_marilith.md)
+- Alias: [Marilith](hd_monsters_marilith.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 189 (18d10 + 90)
diff --git a/Data/HD/srd_monsters_mastiff.md b/Data/HD/srd_monsters_mastiff.md
index f8a3f603..9887f98b 100644
--- a/Data/HD/srd_monsters_mastiff.md
+++ b/Data/HD/srd_monsters_mastiff.md
@@ -4,7 +4,7 @@
# Mastiff
-- CEO: [Mastiff](hd_monsters_mastiff.md)
+- Alias: [Mastiff](hd_monsters_mastiff.md)
- Medium beast, unaligned
- **Armor Class** 12
- **Hit Points** 5 (1d8 + 1)
diff --git a/Data/HD/srd_monsters_medusa.md b/Data/HD/srd_monsters_medusa.md
index 9a41ff12..e9b83a7b 100644
--- a/Data/HD/srd_monsters_medusa.md
+++ b/Data/HD/srd_monsters_medusa.md
@@ -4,7 +4,7 @@
# Medusa
-- CEO: [Méduse](hd_monsters_meduse.md)
+- Alias: [Méduse](hd_monsters_meduse.md)
- Medium monstrosity, lawful evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 127 (17d8 + 51)
diff --git a/Data/HD/srd_monsters_merfolk.md b/Data/HD/srd_monsters_merfolk.md
index d95295bd..1b2f4636 100644
--- a/Data/HD/srd_monsters_merfolk.md
+++ b/Data/HD/srd_monsters_merfolk.md
@@ -4,7 +4,7 @@
# Merfolk
-- CEO: [Homme-poisson](hd_monsters_homme_poisson.md)
+- Alias: [Homme-poisson](hd_monsters_homme_poisson.md)
- Medium humanoid (merfolk), neutral
- **Armor Class** 11
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_merrow.md b/Data/HD/srd_monsters_merrow.md
index 36796b92..caba460b 100644
--- a/Data/HD/srd_monsters_merrow.md
+++ b/Data/HD/srd_monsters_merrow.md
@@ -4,7 +4,7 @@
# Merrow
-- CEO: [Merrow](hd_monsters_merrow.md)
+- Alias: [Merrow](hd_monsters_merrow.md)
- Large monstrosity, chaotic evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 45 (6d10 + 12)
diff --git a/Data/HD/srd_monsters_mimic.md b/Data/HD/srd_monsters_mimic.md
index ba5c0bf9..d37780d9 100644
--- a/Data/HD/srd_monsters_mimic.md
+++ b/Data/HD/srd_monsters_mimic.md
@@ -4,7 +4,7 @@
# Mimic
-- CEO: [Mimique](hd_monsters_mimique.md)
+- Alias: [Mimique](hd_monsters_mimique.md)
- Medium monstrosity (shapechanger), neutral
- **Armor Class** 12 (natural armor)
- **Hit Points** 58 (9d8 + 18)
diff --git a/Data/HD/srd_monsters_minotaur.md b/Data/HD/srd_monsters_minotaur.md
index 7526e16b..2e391b1a 100644
--- a/Data/HD/srd_monsters_minotaur.md
+++ b/Data/HD/srd_monsters_minotaur.md
@@ -4,7 +4,7 @@
# Minotaur
-- CEO: [Minotaure](hd_monsters_minotaure.md)
+- Alias: [Minotaure](hd_monsters_minotaure.md)
- Large monstrosity, chaotic evil
- **Armor Class** 14 (natural armor)
- **Hit Points** 76 (9d10 + 27)
diff --git a/Data/HD/srd_monsters_minotaur_skeleton.md b/Data/HD/srd_monsters_minotaur_skeleton.md
index fd52b2bb..03b0cd54 100644
--- a/Data/HD/srd_monsters_minotaur_skeleton.md
+++ b/Data/HD/srd_monsters_minotaur_skeleton.md
@@ -4,7 +4,7 @@
# Minotaur Skeleton
-- CEO: [Squelette minotaure](hd_monsters_squelette_minotaure.md)
+- Alias: [Squelette minotaure](hd_monsters_squelette_minotaure.md)
- Large undead, lawful evil
- **Armor Class** 12 (natural armor)
- **Hit Points** 67 (9d10 + 18)
diff --git a/Data/HD/srd_monsters_mule.md b/Data/HD/srd_monsters_mule.md
index bf9ec066..35478079 100644
--- a/Data/HD/srd_monsters_mule.md
+++ b/Data/HD/srd_monsters_mule.md
@@ -4,7 +4,7 @@
# Mule
-- CEO: [Mule](hd_monsters_mule.md)
+- Alias: [Mule](hd_monsters_mule.md)
- Medium beast, unaligned
- **Armor Class** 10
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_mummy.md b/Data/HD/srd_monsters_mummy.md
index 4b09f198..cdc9bd78 100644
--- a/Data/HD/srd_monsters_mummy.md
+++ b/Data/HD/srd_monsters_mummy.md
@@ -4,7 +4,7 @@
# Mummy
-- CEO: [Momie](hd_monsters_momie.md)
+- Alias: [Momie](hd_monsters_momie.md)
- Medium undead, lawful evil
- **Armor Class** 11 (natural armor)
- **Hit Points** 58 (9d8 + 18)
diff --git a/Data/HD/srd_monsters_mummy_lord.md b/Data/HD/srd_monsters_mummy_lord.md
index 105c5c86..f2f6096f 100644
--- a/Data/HD/srd_monsters_mummy_lord.md
+++ b/Data/HD/srd_monsters_mummy_lord.md
@@ -4,7 +4,7 @@
# Mummy Lord
-- CEO: [Momie auguste](hd_monsters_momie_auguste.md)
+- Alias: [Momie auguste](hd_monsters_momie_auguste.md)
- Medium undead, lawful evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 97 (13d8 + 39)
diff --git a/Data/HD/srd_monsters_nalfeshnee.md b/Data/HD/srd_monsters_nalfeshnee.md
index 8bc342ee..5128e7aa 100644
--- a/Data/HD/srd_monsters_nalfeshnee.md
+++ b/Data/HD/srd_monsters_nalfeshnee.md
@@ -4,7 +4,7 @@
# Nalfeshnee
-- CEO: [Nalfeshnie](hd_monsters_nalfeshnie.md)
+- Alias: [Nalfeshnie](hd_monsters_nalfeshnie.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 184 (16d10 + 96)
diff --git a/Data/HD/srd_monsters_night_hag.md b/Data/HD/srd_monsters_night_hag.md
index 5d022619..ce3d46d8 100644
--- a/Data/HD/srd_monsters_night_hag.md
+++ b/Data/HD/srd_monsters_night_hag.md
@@ -4,7 +4,7 @@
# Night Hag
-- CEO: [Guenaude nocturne](hd_monsters_guenaude_nocturne.md)
+- Alias: [Guenaude nocturne](hd_monsters_guenaude_nocturne.md)
- Medium fiend, neutral evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 112 (15d8 + 45)
diff --git a/Data/HD/srd_monsters_nightmare.md b/Data/HD/srd_monsters_nightmare.md
index ebff1a24..6ad7e2fe 100644
--- a/Data/HD/srd_monsters_nightmare.md
+++ b/Data/HD/srd_monsters_nightmare.md
@@ -4,7 +4,7 @@
# Nightmare
-- CEO: [Destrier noir](hd_monsters_destrier_noir.md)
+- Alias: [Destrier noir](hd_monsters_destrier_noir.md)
- Large fiend, neutral evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 68 (8d10 + 24)
diff --git a/Data/HD/srd_monsters_noble.md b/Data/HD/srd_monsters_noble.md
index 41c9ec69..2b7a1dee 100644
--- a/Data/HD/srd_monsters_noble.md
+++ b/Data/HD/srd_monsters_noble.md
@@ -4,7 +4,7 @@
# Noble
-- CEO: [Noble](hd_monsters_noble.md)
+- Alias: [Noble](hd_monsters_noble.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 15 (breastplate)
- **Hit Points** 9 (2d8)
diff --git a/Data/HD/srd_monsters_ochre_jelly.md b/Data/HD/srd_monsters_ochre_jelly.md
index 7a5bf2e5..2514e221 100644
--- a/Data/HD/srd_monsters_ochre_jelly.md
+++ b/Data/HD/srd_monsters_ochre_jelly.md
@@ -4,7 +4,7 @@
# Ochre Jelly
-- CEO: [Gelée ocre](hd_monsters_gelee_ocre.md)
+- Alias: [Gelée ocre](hd_monsters_gelee_ocre.md)
- Large ooze, unaligned
- **Armor Class** 8
- **Hit Points** 45 (6d10 + 12)
diff --git a/Data/HD/srd_monsters_octopus.md b/Data/HD/srd_monsters_octopus.md
index bc764d49..9b7201be 100644
--- a/Data/HD/srd_monsters_octopus.md
+++ b/Data/HD/srd_monsters_octopus.md
@@ -4,7 +4,7 @@
# Octopus
-- CEO: [Pieuvre](hd_monsters_pieuvre.md)
+- Alias: [Pieuvre](hd_monsters_pieuvre.md)
- Small beast, unaligned
- **Armor Class** 12
- **Hit Points** 3 (1d6)
diff --git a/Data/HD/srd_monsters_ogre.md b/Data/HD/srd_monsters_ogre.md
index 655d44e3..3e9b1c45 100644
--- a/Data/HD/srd_monsters_ogre.md
+++ b/Data/HD/srd_monsters_ogre.md
@@ -4,7 +4,7 @@
# Ogre
-- CEO: [Ogre](hd_monsters_ogre.md)
+- Alias: [Ogre](hd_monsters_ogre.md)
- Large giant, chaotic evil
- **Armor Class** 11 (hide armor)
- **Hit Points** 59 (7d10 + 21)
diff --git a/Data/HD/srd_monsters_ogre_zombie.md b/Data/HD/srd_monsters_ogre_zombie.md
index 41031219..690f8736 100644
--- a/Data/HD/srd_monsters_ogre_zombie.md
+++ b/Data/HD/srd_monsters_ogre_zombie.md
@@ -4,7 +4,7 @@
# Ogre Zombie
-- CEO: [Zombi ogre](hd_monsters_zombi_ogre.md)
+- Alias: [Zombi ogre](hd_monsters_zombi_ogre.md)
- Large undead, neutral evil
- **Armor Class** 8
- **Hit Points** 85 (9d10 + 36)
diff --git a/Data/HD/srd_monsters_oni.md b/Data/HD/srd_monsters_oni.md
index bfbdce47..adf6bf06 100644
--- a/Data/HD/srd_monsters_oni.md
+++ b/Data/HD/srd_monsters_oni.md
@@ -4,7 +4,7 @@
# Oni
-- CEO: [Oni](hd_monsters_oni.md)
+- Alias: [Oni](hd_monsters_oni.md)
- Large giant, lawful evil
- **Armor Class** 16 (chain mail)
- **Hit Points** 110 (13d10 + 39)
diff --git a/Data/HD/srd_monsters_orc.md b/Data/HD/srd_monsters_orc.md
index c3d1f223..c064b541 100644
--- a/Data/HD/srd_monsters_orc.md
+++ b/Data/HD/srd_monsters_orc.md
@@ -4,7 +4,7 @@
# Orc
-- CEO: [Orc](hd_monsters_orc.md)
+- Alias: [Orc](hd_monsters_orc.md)
- Medium humanoid (orc), chaotic evil
- **Armor Class** 13 (hide armor)
- **Hit Points** 15 (2d8 + 6)
diff --git a/Data/HD/srd_monsters_otyugh.md b/Data/HD/srd_monsters_otyugh.md
index bfe9560d..4c4b404b 100644
--- a/Data/HD/srd_monsters_otyugh.md
+++ b/Data/HD/srd_monsters_otyugh.md
@@ -4,7 +4,7 @@
# Otyugh
-- CEO: [Otyugh](hd_monsters_otyugh.md)
+- Alias: [Otyugh](hd_monsters_otyugh.md)
- Large aberration, neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 114 (12d10 + 48)
diff --git a/Data/HD/srd_monsters_owl.md b/Data/HD/srd_monsters_owl.md
index 2fc2b3b4..21160d7b 100644
--- a/Data/HD/srd_monsters_owl.md
+++ b/Data/HD/srd_monsters_owl.md
@@ -4,7 +4,7 @@
# Owl
-- CEO: [Chouette](hd_monsters_chouette.md)
+- Alias: [Chouette](hd_monsters_chouette.md)
- Tiny beast, unaligned
- **Armor Class** 11
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_owlbear.md b/Data/HD/srd_monsters_owlbear.md
index 98c3d984..239a0cdf 100644
--- a/Data/HD/srd_monsters_owlbear.md
+++ b/Data/HD/srd_monsters_owlbear.md
@@ -4,7 +4,7 @@
# Owlbear
-- CEO: [Hibours](hd_monsters_hibours.md)
+- Alias: [Hibours](hd_monsters_hibours.md)
- Large monstrosity, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 59 (7d10 + 21)
diff --git a/Data/HD/srd_monsters_panther.md b/Data/HD/srd_monsters_panther.md
index c4ac8240..330a11e0 100644
--- a/Data/HD/srd_monsters_panther.md
+++ b/Data/HD/srd_monsters_panther.md
@@ -4,7 +4,7 @@
# Panther
-- CEO: [Panthère](hd_monsters_panthere.md)
+- Alias: [Panthère](hd_monsters_panthere.md)
- Medium beast, unaligned
- **Armor Class** 12
- **Hit Points** 13 (3d8)
diff --git a/Data/HD/srd_monsters_pegasus.md b/Data/HD/srd_monsters_pegasus.md
index 9180b335..59b7598d 100644
--- a/Data/HD/srd_monsters_pegasus.md
+++ b/Data/HD/srd_monsters_pegasus.md
@@ -4,7 +4,7 @@
# Pegasus
-- CEO: [Pégase](hd_monsters_pegase.md)
+- Alias: [Pégase](hd_monsters_pegase.md)
- Large celestial, chaotic good
- **Armor Class** 12
- **Hit Points** 59 (7d10 + 21)
diff --git a/Data/HD/srd_monsters_phase_spider.md b/Data/HD/srd_monsters_phase_spider.md
index 07e4390e..3cc6a84c 100644
--- a/Data/HD/srd_monsters_phase_spider.md
+++ b/Data/HD/srd_monsters_phase_spider.md
@@ -4,7 +4,7 @@
# Phase Spider
-- CEO: [Araignée de phase](hd_monsters_araignee_de_phase.md)
+- Alias: [Araignée de phase](hd_monsters_araignee_de_phase.md)
- Source: (SRD p385)
- Large monstrosity, unaligned
- **Armor Class** 13 (natural armor)
diff --git a/Data/HD/srd_monsters_pit_fiend.md b/Data/HD/srd_monsters_pit_fiend.md
index 39efc645..5d53c40f 100644
--- a/Data/HD/srd_monsters_pit_fiend.md
+++ b/Data/HD/srd_monsters_pit_fiend.md
@@ -4,7 +4,7 @@
# Pit Fiend
-- CEO: [Diantrefosse](hd_monsters_diantrefosse.md)
+- Alias: [Diantrefosse](hd_monsters_diantrefosse.md)
- Large fiend (devil), lawful evil
- **Armor Class** 19 (natural armor)
- **Hit Points** 300 (24d10 + 168)
diff --git a/Data/HD/srd_monsters_planetar.md b/Data/HD/srd_monsters_planetar.md
index bff46c2a..bb588853 100644
--- a/Data/HD/srd_monsters_planetar.md
+++ b/Data/HD/srd_monsters_planetar.md
@@ -4,7 +4,7 @@
# Planetar
-- CEO: [Planétar](hd_monsters_planetar.md)
+- Alias: [Planétar](hd_monsters_planetar.md)
- Large celestial, lawful good
- **Armor Class** 19 (natural armor)
- **Hit Points** 200 (16d10 + 112)
diff --git a/Data/HD/srd_monsters_plesiosaurus.md b/Data/HD/srd_monsters_plesiosaurus.md
index be87f864..52a31026 100644
--- a/Data/HD/srd_monsters_plesiosaurus.md
+++ b/Data/HD/srd_monsters_plesiosaurus.md
@@ -4,7 +4,7 @@
# Plesiosaurus
-- CEO: [Plésiosaure](hd_monsters_plesiosaure.md)
+- Alias: [Plésiosaure](hd_monsters_plesiosaure.md)
- Large beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 68 (8d10 + 24)
diff --git a/Data/HD/srd_monsters_poisonous_snake.md b/Data/HD/srd_monsters_poisonous_snake.md
index c49f2f05..4c976cb2 100644
--- a/Data/HD/srd_monsters_poisonous_snake.md
+++ b/Data/HD/srd_monsters_poisonous_snake.md
@@ -4,7 +4,7 @@
# Poisonous Snake
-- CEO: [Serpent venimeux](hd_monsters_serpent_venimeux.md)
+- Alias: [Serpent venimeux](hd_monsters_serpent_venimeux.md)
- Tiny beast, unaligned
- **Armor Class** 13
- **Hit Points** 2 (1d4)
diff --git a/Data/HD/srd_monsters_polar_bear.md b/Data/HD/srd_monsters_polar_bear.md
index 267a3577..80a38174 100644
--- a/Data/HD/srd_monsters_polar_bear.md
+++ b/Data/HD/srd_monsters_polar_bear.md
@@ -4,7 +4,7 @@
# Polar Bear
-- CEO: [Ours polaire](hd_monsters_ours_polaire.md)
+- Alias: [Ours polaire](hd_monsters_ours_polaire.md)
- Large beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 42 (5d10 + 15)
diff --git a/Data/HD/srd_monsters_pony.md b/Data/HD/srd_monsters_pony.md
index 111faf16..b70217e6 100644
--- a/Data/HD/srd_monsters_pony.md
+++ b/Data/HD/srd_monsters_pony.md
@@ -4,7 +4,7 @@
# Pony
-- CEO: [Poney](hd_monsters_poney.md)
+- Alias: [Poney](hd_monsters_poney.md)
- Medium beast, unaligned
- **Armor Class** 10
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_priest.md b/Data/HD/srd_monsters_priest.md
index d7dc556c..42d31fbf 100644
--- a/Data/HD/srd_monsters_priest.md
+++ b/Data/HD/srd_monsters_priest.md
@@ -4,7 +4,7 @@
# Priest
-- CEO: [Ecclésiastique](hd_monsters_ecclesiastique.md)
+- Alias: [Ecclésiastique](hd_monsters_ecclesiastique.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 13 (chain shirt)
- **Hit Points** 27 (5d8 + 5)
diff --git a/Data/HD/srd_monsters_pseudodragon.md b/Data/HD/srd_monsters_pseudodragon.md
index ee2a1645..662add5d 100644
--- a/Data/HD/srd_monsters_pseudodragon.md
+++ b/Data/HD/srd_monsters_pseudodragon.md
@@ -4,7 +4,7 @@
# Pseudodragon
-- CEO: [Pseudodragon](hd_monsters_pseudodragon.md)
+- Alias: [Pseudodragon](hd_monsters_pseudodragon.md)
- Tiny dragon, neutral good
- **Armor Class** 13 (natural armor)
- **Hit Points** 7 (2d4 + 2)
diff --git a/Data/HD/srd_monsters_purple_worm.md b/Data/HD/srd_monsters_purple_worm.md
index 697614c1..8c349409 100644
--- a/Data/HD/srd_monsters_purple_worm.md
+++ b/Data/HD/srd_monsters_purple_worm.md
@@ -4,7 +4,7 @@
# Purple Worm
-- CEO: [Ver pourpre](hd_monsters_ver_pourpre.md)
+- Alias: [Ver pourpre](hd_monsters_ver_pourpre.md)
- Gargantuan monstrosity, unaligned
- **Armor Class** 18 (natural armor)
- **Hit Points** 247 (15d20 + 90)
diff --git a/Data/HD/srd_monsters_quasit.md b/Data/HD/srd_monsters_quasit.md
index 41b2c22e..45ee5da6 100644
--- a/Data/HD/srd_monsters_quasit.md
+++ b/Data/HD/srd_monsters_quasit.md
@@ -4,7 +4,7 @@
# Quasit
-- CEO: [Quasit](hd_monsters_quasit.md)
+- Alias: [Quasit](hd_monsters_quasit.md)
- Tiny fiend (demon, shapechanger), chaotic evil
- **Armor Class** 13
- **Hit Points** 7 (3d4)
diff --git a/Data/HD/srd_monsters_quipper.md b/Data/HD/srd_monsters_quipper.md
index f99b3c87..0f410cc2 100644
--- a/Data/HD/srd_monsters_quipper.md
+++ b/Data/HD/srd_monsters_quipper.md
@@ -4,7 +4,7 @@
# Quipper
-- CEO: [Piranha](hd_monsters_piranha.md)
+- Alias: [Piranha](hd_monsters_piranha.md)
- Tiny beast, unaligned
- **Armor Class** 13
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_rakshasa.md b/Data/HD/srd_monsters_rakshasa.md
index 001cc9fb..c1496b21 100644
--- a/Data/HD/srd_monsters_rakshasa.md
+++ b/Data/HD/srd_monsters_rakshasa.md
@@ -4,7 +4,7 @@
# Rakshasa
-- CEO: [Rakshasa](hd_monsters_rakshasa.md)
+- Alias: [Rakshasa](hd_monsters_rakshasa.md)
- Medium fiend, lawful evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 110 (13d8 + 52)
diff --git a/Data/HD/srd_monsters_rat.md b/Data/HD/srd_monsters_rat.md
index 5113a711..e0dc5486 100644
--- a/Data/HD/srd_monsters_rat.md
+++ b/Data/HD/srd_monsters_rat.md
@@ -4,7 +4,7 @@
# Rat
-- CEO: [Rat](hd_monsters_rat.md)
+- Alias: [Rat](hd_monsters_rat.md)
- Tiny beast, unaligned
- **Armor Class** 10
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_raven.md b/Data/HD/srd_monsters_raven.md
index 5bd40a0d..17163a07 100644
--- a/Data/HD/srd_monsters_raven.md
+++ b/Data/HD/srd_monsters_raven.md
@@ -4,7 +4,7 @@
# Raven
-- CEO: [Corbeau](hd_monsters_corbeau.md)
+- Alias: [Corbeau](hd_monsters_corbeau.md)
- Tiny beast, unaligned
- **Armor Class** 12
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_red_dragon_wyrmling.md b/Data/HD/srd_monsters_red_dragon_wyrmling.md
index e1deb35a..756ebc5f 100644
--- a/Data/HD/srd_monsters_red_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_red_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Red Dragon Wyrmling
-- CEO: [Dragonnet rouge](hd_monsters_dragonnet_rouge.md)
+- Alias: [Dragonnet rouge](hd_monsters_dragonnet_rouge.md)
- Medium dragon, chaotic evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 75 (10d8 + 30)
diff --git a/Data/HD/srd_monsters_reef_shark.md b/Data/HD/srd_monsters_reef_shark.md
index 08e5b8fe..a5e2c233 100644
--- a/Data/HD/srd_monsters_reef_shark.md
+++ b/Data/HD/srd_monsters_reef_shark.md
@@ -4,7 +4,7 @@
# Reef Shark
-- CEO: [Requin de récif](hd_monsters_requin_de_recif.md)
+- Alias: [Requin de récif](hd_monsters_requin_de_recif.md)
- Medium beast, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 22 (4d8 + 4)
diff --git a/Data/HD/srd_monsters_remorhaz.md b/Data/HD/srd_monsters_remorhaz.md
index b8a170b7..4714d116 100644
--- a/Data/HD/srd_monsters_remorhaz.md
+++ b/Data/HD/srd_monsters_remorhaz.md
@@ -4,7 +4,7 @@
# Remorhaz
-- CEO: [Remorhaz](hd_monsters_remorhaz.md)
+- Alias: [Remorhaz](hd_monsters_remorhaz.md)
- Huge monstrosity, unaligned
- **Armor Class** 17 (natural armor)
- **Hit Points** 195 (17d12 + 85)
diff --git a/Data/HD/srd_monsters_rhinoceros.md b/Data/HD/srd_monsters_rhinoceros.md
index d4e07ea1..563a842c 100644
--- a/Data/HD/srd_monsters_rhinoceros.md
+++ b/Data/HD/srd_monsters_rhinoceros.md
@@ -4,7 +4,7 @@
# Rhinoceros
-- CEO: [Rhinocéros](hd_monsters_rhinoceros.md)
+- Alias: [Rhinocéros](hd_monsters_rhinoceros.md)
- Large beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 45 (6d10 + 12)
diff --git a/Data/HD/srd_monsters_riding_horse.md b/Data/HD/srd_monsters_riding_horse.md
index c2b15911..3e33cc1f 100644
--- a/Data/HD/srd_monsters_riding_horse.md
+++ b/Data/HD/srd_monsters_riding_horse.md
@@ -4,7 +4,7 @@
# Riding Horse
-- CEO: [Cheval de selle](hd_monsters_cheval_de_selle.md)
+- Alias: [Cheval de selle](hd_monsters_cheval_de_selle.md)
- Large beast, unaligned
- **Armor Class** 10
- **Hit Points** 13 (2d10 + 2)
diff --git a/Data/HD/srd_monsters_roc.md b/Data/HD/srd_monsters_roc.md
index edf43b57..48207d43 100644
--- a/Data/HD/srd_monsters_roc.md
+++ b/Data/HD/srd_monsters_roc.md
@@ -4,7 +4,7 @@
# Roc
-- CEO: [Roc](hd_monsters_roc.md)
+- Alias: [Roc](hd_monsters_roc.md)
- Gargantuan monstrosity, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 248 (16d20 + 80)
diff --git a/Data/HD/srd_monsters_roper.md b/Data/HD/srd_monsters_roper.md
index 29cc2ebd..2e8a7489 100644
--- a/Data/HD/srd_monsters_roper.md
+++ b/Data/HD/srd_monsters_roper.md
@@ -4,7 +4,7 @@
# Roper
-- CEO: [Enlaceur](hd_monsters_enlaceur.md)
+- Alias: [Enlaceur](hd_monsters_enlaceur.md)
- Large monstrosity, neutral evil
- **Armor Class** 20 (natural armor)
- **Hit Points** 93 (11d10 + 33)
diff --git a/Data/HD/srd_monsters_rug_of_smothering.md b/Data/HD/srd_monsters_rug_of_smothering.md
index febf61ef..c1cdd7fd 100644
--- a/Data/HD/srd_monsters_rug_of_smothering.md
+++ b/Data/HD/srd_monsters_rug_of_smothering.md
@@ -4,7 +4,7 @@
# Rug of Smothering
-- CEO: [Tapis étrangleur](hd_monsters_tapis_etrangleur.md)
+- Alias: [Tapis étrangleur](hd_monsters_tapis_etrangleur.md)
- Large construct, unaligned
- **Armor Class** 12
- **Hit Points** 33 (6d10)
diff --git a/Data/HD/srd_monsters_rust_monster.md b/Data/HD/srd_monsters_rust_monster.md
index c782e3ba..2ba6716e 100644
--- a/Data/HD/srd_monsters_rust_monster.md
+++ b/Data/HD/srd_monsters_rust_monster.md
@@ -4,7 +4,7 @@
# Rust Monster
-- CEO: [Oxydeur](hd_monsters_oxydeur.md)
+- Alias: [Oxydeur](hd_monsters_oxydeur.md)
- Medium monstrosity, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 27 (5d8 + 5)
diff --git a/Data/HD/srd_monsters_saber_toothed_tiger.md b/Data/HD/srd_monsters_saber_toothed_tiger.md
index 8a3280fc..8e237212 100644
--- a/Data/HD/srd_monsters_saber_toothed_tiger.md
+++ b/Data/HD/srd_monsters_saber_toothed_tiger.md
@@ -4,7 +4,7 @@
# Saber-Toothed Tiger
-- CEO: [Tigre à dents de sabre](hd_monsters_tigre_a_dents_de_sabre.md)
+- Alias: [Tigre à dents de sabre](hd_monsters_tigre_a_dents_de_sabre.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 52 (7d10 + 14)
diff --git a/Data/HD/srd_monsters_sahuagin.md b/Data/HD/srd_monsters_sahuagin.md
index ec386420..f71d7558 100644
--- a/Data/HD/srd_monsters_sahuagin.md
+++ b/Data/HD/srd_monsters_sahuagin.md
@@ -4,7 +4,7 @@
# Sahuagin
-- CEO: [Sahuagin](hd_monsters_sahuagin.md)
+- Alias: [Sahuagin](hd_monsters_sahuagin.md)
- Medium humanoid (sahuagin), lawful evil
- **Armor Class** 12 (natural armor)
- **Hit Points** 22 (4d8 + 4)
diff --git a/Data/HD/srd_monsters_salamander.md b/Data/HD/srd_monsters_salamander.md
index 80002e89..7caabba6 100644
--- a/Data/HD/srd_monsters_salamander.md
+++ b/Data/HD/srd_monsters_salamander.md
@@ -4,7 +4,7 @@
# Salamander
-- CEO: [Salamandre](hd_monsters_salamandre.md)
+- Alias: [Salamandre](hd_monsters_salamandre.md)
- Large elemental, neutral evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 90 (12d10 + 24)
diff --git a/Data/HD/srd_monsters_satyr.md b/Data/HD/srd_monsters_satyr.md
index e30aedd4..e357cdd0 100644
--- a/Data/HD/srd_monsters_satyr.md
+++ b/Data/HD/srd_monsters_satyr.md
@@ -4,7 +4,7 @@
# Satyr
-- CEO: [Satyre](hd_monsters_satyre.md)
+- Alias: [Satyre](hd_monsters_satyre.md)
- Medium fey, chaotic neutral
- **Armor Class** 14 (leather armor)
- **Hit Points** 31 (7d8)
diff --git a/Data/HD/srd_monsters_scorpion.md b/Data/HD/srd_monsters_scorpion.md
index 2d981e01..491d75c9 100644
--- a/Data/HD/srd_monsters_scorpion.md
+++ b/Data/HD/srd_monsters_scorpion.md
@@ -4,7 +4,7 @@
# Scorpion
-- CEO: [Scorpion](hd_monsters_scorpion.md)
+- Alias: [Scorpion](hd_monsters_scorpion.md)
- Tiny beast, unaligned
- **Armor Class** 11 (natural armor)
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_scout.md b/Data/HD/srd_monsters_scout.md
index 94851e45..be73f1f2 100644
--- a/Data/HD/srd_monsters_scout.md
+++ b/Data/HD/srd_monsters_scout.md
@@ -4,7 +4,7 @@
# Scout
-- CEO: [Éclaireur](hd_monsters_eclaireur.md)
+- Alias: [Éclaireur](hd_monsters_eclaireur.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 13 (leather armor)
- **Hit Points** 16 (3d8 + 3)
diff --git a/Data/HD/srd_monsters_sea_hag.md b/Data/HD/srd_monsters_sea_hag.md
index d116eeb5..d63f0b81 100644
--- a/Data/HD/srd_monsters_sea_hag.md
+++ b/Data/HD/srd_monsters_sea_hag.md
@@ -4,7 +4,7 @@
# Sea Hag
-- CEO: [Guenaude aquatique](hd_monsters_guenaude_aquatique.md)
+- Alias: [Guenaude aquatique](hd_monsters_guenaude_aquatique.md)
- Medium fey, chaotic evil
- **Armor Class** 14 (natural armor)
- **Hit Points** 52 (7d8 + 21)
diff --git a/Data/HD/srd_monsters_sea_horse.md b/Data/HD/srd_monsters_sea_horse.md
index 0be71c6b..a4342dfe 100644
--- a/Data/HD/srd_monsters_sea_horse.md
+++ b/Data/HD/srd_monsters_sea_horse.md
@@ -4,7 +4,7 @@
# Sea Horse
-- CEO: [Hippocampe](hd_monsters_hippocampe.md)
+- Alias: [Hippocampe](hd_monsters_hippocampe.md)
- Tiny beast, unaligned
- **Armor Class** 11
- **Hit Points** 1 (1d4 - 1)
diff --git a/Data/HD/srd_monsters_shadow.md b/Data/HD/srd_monsters_shadow.md
index e8553cce..57b76e17 100644
--- a/Data/HD/srd_monsters_shadow.md
+++ b/Data/HD/srd_monsters_shadow.md
@@ -4,7 +4,7 @@
# Shadow
-- CEO: [Ombre](hd_monsters_ombre.md)
+- Alias: [Ombre](hd_monsters_ombre.md)
- Medium undead, chaotic evil
- **Armor Class** 12
- **Hit Points** 16 (3d8 + 3)
diff --git a/Data/HD/srd_monsters_shambling_mound.md b/Data/HD/srd_monsters_shambling_mound.md
index 3280ef94..80eb51c8 100644
--- a/Data/HD/srd_monsters_shambling_mound.md
+++ b/Data/HD/srd_monsters_shambling_mound.md
@@ -4,7 +4,7 @@
# Shambling Mound
-- CEO: [Tertre errant](hd_monsters_tertre_errant.md)
+- Alias: [Tertre errant](hd_monsters_tertre_errant.md)
- Large plant, unaligned
- **Armor Class** 15 (natural armor)
- **Hit Points** 136 (16d10 + 48)
diff --git a/Data/HD/srd_monsters_shield_guardian.md b/Data/HD/srd_monsters_shield_guardian.md
index 0294d55c..fbae37ec 100644
--- a/Data/HD/srd_monsters_shield_guardian.md
+++ b/Data/HD/srd_monsters_shield_guardian.md
@@ -4,7 +4,7 @@
# Shield Guardian
-- CEO: [Garde animé](hd_monsters_garde_anime.md)
+- Alias: [Garde animé](hd_monsters_garde_anime.md)
- Large construct, unaligned
- **Armor Class** 17 (natural armor)
- **Hit Points** 142 (15d10 + 60)
diff --git a/Data/HD/srd_monsters_shrieker.md b/Data/HD/srd_monsters_shrieker.md
index 4be3b95f..4310a400 100644
--- a/Data/HD/srd_monsters_shrieker.md
+++ b/Data/HD/srd_monsters_shrieker.md
@@ -4,7 +4,7 @@
# Shrieker
-- CEO: [Criard](hd_monsters_criard.md)
+- Alias: [Criard](hd_monsters_criard.md)
- Medium plant, unaligned
- **Armor Class** 5
- **Hit Points** 13 (3d8)
diff --git a/Data/HD/srd_monsters_silver_dragon_wyrmling.md b/Data/HD/srd_monsters_silver_dragon_wyrmling.md
index 6fa03ace..aec7b841 100644
--- a/Data/HD/srd_monsters_silver_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_silver_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# Silver Dragon Wyrmling
-- CEO: [Dragonnet d'argent](hd_monsters_dragonnet_dargent.md)
+- Alias: [Dragonnet d'argent](hd_monsters_dragonnet_dargent.md)
- Medium dragon, lawful good
- **Armor Class** 17 (natural armor)
- **Hit Points** 45 (6d8 + 18)
diff --git a/Data/HD/srd_monsters_skeleton.md b/Data/HD/srd_monsters_skeleton.md
index 3271cfb5..9645dfc9 100644
--- a/Data/HD/srd_monsters_skeleton.md
+++ b/Data/HD/srd_monsters_skeleton.md
@@ -4,7 +4,7 @@
# Skeleton
-- CEO: [Squelette](hd_monsters_squelette.md)
+- Alias: [Squelette](hd_monsters_squelette.md)
- Medium undead, lawful evil
- **Armor Class** 13 (armor scraps)
- **Hit Points** 13 (2d8 + 4)
diff --git a/Data/HD/srd_monsters_solar.md b/Data/HD/srd_monsters_solar.md
index 8e73f759..0bfc7aa8 100644
--- a/Data/HD/srd_monsters_solar.md
+++ b/Data/HD/srd_monsters_solar.md
@@ -4,7 +4,7 @@
# Solar
-- CEO: [Solar](hd_monsters_solar.md)
+- Alias: [Solar](hd_monsters_solar.md)
- Large celestial, lawful good
- **Armor Class** 21 (natural armor)
- **Hit Points** 243 (18d10 + 144)
diff --git a/Data/HD/srd_monsters_specter.md b/Data/HD/srd_monsters_specter.md
index 4b74a10c..a9ce63c3 100644
--- a/Data/HD/srd_monsters_specter.md
+++ b/Data/HD/srd_monsters_specter.md
@@ -4,7 +4,7 @@
# Specter
-- CEO: [Spectre](hd_monsters_spectre.md)
+- Alias: [Spectre](hd_monsters_spectre.md)
- Medium undead, chaotic evil
- **Armor Class** 12
- **Hit Points** 22 (5d8)
diff --git a/Data/HD/srd_monsters_spider.md b/Data/HD/srd_monsters_spider.md
index 2e4a117f..72f30949 100644
--- a/Data/HD/srd_monsters_spider.md
+++ b/Data/HD/srd_monsters_spider.md
@@ -4,7 +4,7 @@
# Spider
-- CEO: [Araignée](hd_monsters_araignee.md)
+- Alias: [Araignée](hd_monsters_araignee.md)
- Source: (SRD p389)
- Tiny beast, unaligned
- **Armor Class** 12
diff --git a/Data/HD/srd_monsters_spirit_naga.md b/Data/HD/srd_monsters_spirit_naga.md
index 9c9b18b6..07fd3095 100644
--- a/Data/HD/srd_monsters_spirit_naga.md
+++ b/Data/HD/srd_monsters_spirit_naga.md
@@ -4,7 +4,7 @@
# Spirit Naga
-- CEO: [Naga corrupteur](hd_monsters_naga_corrupteur.md)
+- Alias: [Naga corrupteur](hd_monsters_naga_corrupteur.md)
- Large monstrosity, chaotic evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 75 (10d10 + 20)
diff --git a/Data/HD/srd_monsters_sprite.md b/Data/HD/srd_monsters_sprite.md
index 4087dd9d..a4d68d03 100644
--- a/Data/HD/srd_monsters_sprite.md
+++ b/Data/HD/srd_monsters_sprite.md
@@ -4,7 +4,7 @@
# Sprite
-- CEO: [Esprit follet](hd_monsters_esprit_follet.md)
+- Alias: [Esprit follet](hd_monsters_esprit_follet.md)
- Tiny fey, neutral good
- **Armor Class** 15 (leather armor)
- **Hit Points** 2 (1d4)
diff --git a/Data/HD/srd_monsters_spy.md b/Data/HD/srd_monsters_spy.md
index 6f57ffd9..4baf4edb 100644
--- a/Data/HD/srd_monsters_spy.md
+++ b/Data/HD/srd_monsters_spy.md
@@ -4,7 +4,7 @@
# Spy
-- CEO: [Espion](hd_monsters_espion.md)
+- Alias: [Espion](hd_monsters_espion.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 12
- **Hit Points** 27 (6d8)
diff --git a/Data/HD/srd_monsters_steam_mephit.md b/Data/HD/srd_monsters_steam_mephit.md
index da450185..ece8ca73 100644
--- a/Data/HD/srd_monsters_steam_mephit.md
+++ b/Data/HD/srd_monsters_steam_mephit.md
@@ -4,7 +4,7 @@
# Steam Mephit
-- CEO: [Méphite de vapeur](hd_monsters_mephite_de_vapeur.md)
+- Alias: [Méphite de vapeur](hd_monsters_mephite_de_vapeur.md)
- Small elemental, neutral evil
- **Armor Class** 10
- **Hit Points** 21 (6d6)
diff --git a/Data/HD/srd_monsters_stirge.md b/Data/HD/srd_monsters_stirge.md
index 8c92afba..882cdeba 100644
--- a/Data/HD/srd_monsters_stirge.md
+++ b/Data/HD/srd_monsters_stirge.md
@@ -4,7 +4,7 @@
# Stirge
-- CEO: [Strige](hd_monsters_strige.md)
+- Alias: [Strige](hd_monsters_strige.md)
- Tiny beast, unaligned
- **Armor Class** 14 (natural armor)
- **Hit Points** 2 (1d4)
diff --git a/Data/HD/srd_monsters_stone_giant.md b/Data/HD/srd_monsters_stone_giant.md
index c1e72fb0..070cc9f0 100644
--- a/Data/HD/srd_monsters_stone_giant.md
+++ b/Data/HD/srd_monsters_stone_giant.md
@@ -4,7 +4,7 @@
# Stone Giant
-- CEO: [Géant des pierres](hd_monsters_geant_des_pierres.md)
+- Alias: [Géant des pierres](hd_monsters_geant_des_pierres.md)
- Huge giant, neutral
- **Armor Class** 17 (natural armor)
- **Hit Points** 126 (11d12 + 55)
diff --git a/Data/HD/srd_monsters_stone_golem.md b/Data/HD/srd_monsters_stone_golem.md
index fa8790a9..6a2e05a2 100644
--- a/Data/HD/srd_monsters_stone_golem.md
+++ b/Data/HD/srd_monsters_stone_golem.md
@@ -4,7 +4,7 @@
# Stone Golem
-- CEO: [Golem de pierre](hd_monsters_golem_de_pierre.md)
+- Alias: [Golem de pierre](hd_monsters_golem_de_pierre.md)
- Large construct, unaligned
- **Armor Class** 17 (natural armor)
- **Hit Points** 178 (17d10 + 85)
diff --git a/Data/HD/srd_monsters_storm_giant.md b/Data/HD/srd_monsters_storm_giant.md
index 5fce2dae..63d557ad 100644
--- a/Data/HD/srd_monsters_storm_giant.md
+++ b/Data/HD/srd_monsters_storm_giant.md
@@ -4,7 +4,7 @@
# Storm Giant
-- CEO: [Géant des tempêtes](hd_monsters_geant_des_tempetes.md)
+- Alias: [Géant des tempêtes](hd_monsters_geant_des_tempetes.md)
- Huge giant, chaotic good
- **Armor Class** 16 (scale mail)
- **Hit Points** 230 (20d12 + 100)
diff --git a/Data/HD/srd_monsters_succubus.md b/Data/HD/srd_monsters_succubus.md
index 4b13cf52..8fb7f70c 100644
--- a/Data/HD/srd_monsters_succubus.md
+++ b/Data/HD/srd_monsters_succubus.md
@@ -4,7 +4,7 @@
# Succubus
-- CEO: [Succube/Incube](hd_monsters_succubeincube.md)
+- Alias: [Succube/Incube](hd_monsters_succubeincube.md)
- Medium fiend (shapechanger), neutral evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 66 (12d8 + 12)
diff --git a/Data/HD/srd_monsters_swarm_of_bats.md b/Data/HD/srd_monsters_swarm_of_bats.md
index 036221b2..0aaa50da 100644
--- a/Data/HD/srd_monsters_swarm_of_bats.md
+++ b/Data/HD/srd_monsters_swarm_of_bats.md
@@ -4,7 +4,7 @@
# Swarm of Bats
-- CEO: [Nuée de chauve-souris](hd_monsters_nuee_de_chauve_souris.md)
+- Alias: [Nuée de chauve-souris](hd_monsters_nuee_de_chauve_souris.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 12
- **Hit Points** 22 (5d8)
diff --git a/Data/HD/srd_monsters_swarm_of_insects.md b/Data/HD/srd_monsters_swarm_of_insects.md
index 2af41905..6ef53992 100644
--- a/Data/HD/srd_monsters_swarm_of_insects.md
+++ b/Data/HD/srd_monsters_swarm_of_insects.md
@@ -4,7 +4,7 @@
# Swarm of Insects
-- CEO: [Nuée d'insectes](hd_monsters_nuee_dinsectes.md)
+- Alias: [Nuée d'insectes](hd_monsters_nuee_dinsectes.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 12 (natural armor)
- **Hit Points** 22 (5d8)
diff --git a/Data/HD/srd_monsters_swarm_of_poisonous_snakes.md b/Data/HD/srd_monsters_swarm_of_poisonous_snakes.md
index 411aa760..0adb3c93 100644
--- a/Data/HD/srd_monsters_swarm_of_poisonous_snakes.md
+++ b/Data/HD/srd_monsters_swarm_of_poisonous_snakes.md
@@ -4,7 +4,7 @@
# Swarm of Poisonous Snakes
-- CEO: [Nuée de serpents venimeux](hd_monsters_nuee_de_serpents_venimeux.md)
+- Alias: [Nuée de serpents venimeux](hd_monsters_nuee_de_serpents_venimeux.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 14
- **Hit Points** 36 (8d8)
diff --git a/Data/HD/srd_monsters_swarm_of_quippers.md b/Data/HD/srd_monsters_swarm_of_quippers.md
index 4704a5eb..3c003e6f 100644
--- a/Data/HD/srd_monsters_swarm_of_quippers.md
+++ b/Data/HD/srd_monsters_swarm_of_quippers.md
@@ -4,7 +4,7 @@
# Swarm of Quippers
-- CEO: [Nuée de piranhas](hd_monsters_nuee_de_piranhas.md)
+- Alias: [Nuée de piranhas](hd_monsters_nuee_de_piranhas.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 13
- **Hit Points** 28 (8d8 - 8)
diff --git a/Data/HD/srd_monsters_swarm_of_rats.md b/Data/HD/srd_monsters_swarm_of_rats.md
index 990f5727..21ccf252 100644
--- a/Data/HD/srd_monsters_swarm_of_rats.md
+++ b/Data/HD/srd_monsters_swarm_of_rats.md
@@ -4,7 +4,7 @@
# Swarm of Rats
-- CEO: [Nuée de rats](hd_monsters_nuee_de_rats.md)
+- Alias: [Nuée de rats](hd_monsters_nuee_de_rats.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 10
- **Hit Points** 24 (7d8 - 7)
diff --git a/Data/HD/srd_monsters_swarm_of_ravens.md b/Data/HD/srd_monsters_swarm_of_ravens.md
index 22029889..3b4e763b 100644
--- a/Data/HD/srd_monsters_swarm_of_ravens.md
+++ b/Data/HD/srd_monsters_swarm_of_ravens.md
@@ -4,7 +4,7 @@
# Swarm of Ravens
-- CEO: [Nuée de corbeaux](hd_monsters_nuee_de_corbeaux.md)
+- Alias: [Nuée de corbeaux](hd_monsters_nuee_de_corbeaux.md)
- Medium swarm of Tiny beasts, unaligned
- **Armor Class** 12
- **Hit Points** 24 (7d8 - 7)
diff --git a/Data/HD/srd_monsters_tarrasque.md b/Data/HD/srd_monsters_tarrasque.md
index f7096a16..ded4d500 100644
--- a/Data/HD/srd_monsters_tarrasque.md
+++ b/Data/HD/srd_monsters_tarrasque.md
@@ -4,7 +4,7 @@
# Tarrasque
-- CEO: [Tarasque](hd_monsters_tarasque.md)
+- Alias: [Tarasque](hd_monsters_tarasque.md)
- Gargantuan monstrosity (titan), unaligned
- **Armor Class** 25 (natural armor)
- **Hit Points** 676 (33d20 + 330)
diff --git a/Data/HD/srd_monsters_thug.md b/Data/HD/srd_monsters_thug.md
index e740eb30..049b370a 100644
--- a/Data/HD/srd_monsters_thug.md
+++ b/Data/HD/srd_monsters_thug.md
@@ -4,7 +4,7 @@
# Thug
-- CEO: [Malfrat](hd_monsters_malfrat.md)
+- Alias: [Malfrat](hd_monsters_malfrat.md)
- Medium humanoid (any race), any non-good alignment
- **Armor Class** 11 (leather armor)
- **Hit Points** 32 (5d8 + 10)
diff --git a/Data/HD/srd_monsters_tiger.md b/Data/HD/srd_monsters_tiger.md
index ebd0308a..e11ea3c7 100644
--- a/Data/HD/srd_monsters_tiger.md
+++ b/Data/HD/srd_monsters_tiger.md
@@ -4,7 +4,7 @@
# Tiger
-- CEO: [Tigre](hd_monsters_tigre.md)
+- Alias: [Tigre](hd_monsters_tigre.md)
- Large beast, unaligned
- **Armor Class** 12
- **Hit Points** 37 (5d10 + 10)
diff --git a/Data/HD/srd_monsters_treant.md b/Data/HD/srd_monsters_treant.md
index bfeca654..a59da1bd 100644
--- a/Data/HD/srd_monsters_treant.md
+++ b/Data/HD/srd_monsters_treant.md
@@ -4,7 +4,7 @@
# Treant
-- CEO: [Sylvanien](hd_monsters_sylvanien.md)
+- Alias: [Sylvanien](hd_monsters_sylvanien.md)
- Huge plant, chaotic good
- **Armor Class** 16 (natural armor)
- **Hit Points** 138 (12d12 + 60)
diff --git a/Data/HD/srd_monsters_tribal_warrior.md b/Data/HD/srd_monsters_tribal_warrior.md
index 6bc047d9..24a736c2 100644
--- a/Data/HD/srd_monsters_tribal_warrior.md
+++ b/Data/HD/srd_monsters_tribal_warrior.md
@@ -4,7 +4,7 @@
# Tribal Warrior
-- CEO: [Guerrier tribal](hd_monsters_guerrier_tribal.md)
+- Alias: [Guerrier tribal](hd_monsters_guerrier_tribal.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 12 (hide armor)
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_triceratops.md b/Data/HD/srd_monsters_triceratops.md
index dee1069d..df8b2114 100644
--- a/Data/HD/srd_monsters_triceratops.md
+++ b/Data/HD/srd_monsters_triceratops.md
@@ -4,7 +4,7 @@
# Triceratops
-- CEO: [Tricératops](hd_monsters_triceratops.md)
+- Alias: [Tricératops](hd_monsters_triceratops.md)
- Huge beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 95 (10d12 + 30)
diff --git a/Data/HD/srd_monsters_troll.md b/Data/HD/srd_monsters_troll.md
index 6f01a1d9..3877c1f1 100644
--- a/Data/HD/srd_monsters_troll.md
+++ b/Data/HD/srd_monsters_troll.md
@@ -4,7 +4,7 @@
# Troll
-- CEO: [Troll](hd_monsters_troll.md)
+- Alias: [Troll](hd_monsters_troll.md)
- Large giant, chaotic evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 84 (8d10 + 40)
diff --git a/Data/HD/srd_monsters_tyrannosaurus_rex.md b/Data/HD/srd_monsters_tyrannosaurus_rex.md
index 7aceed0a..155e06f4 100644
--- a/Data/HD/srd_monsters_tyrannosaurus_rex.md
+++ b/Data/HD/srd_monsters_tyrannosaurus_rex.md
@@ -4,7 +4,7 @@
# Tyrannosaurus Rex
-- CEO: [Tyrannosaure](hd_monsters_tyrannosaure.md)
+- Alias: [Tyrannosaure](hd_monsters_tyrannosaure.md)
- Huge beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 136 (13d12 + 52)
diff --git a/Data/HD/srd_monsters_unicorn.md b/Data/HD/srd_monsters_unicorn.md
index cd947ead..dafb5a63 100644
--- a/Data/HD/srd_monsters_unicorn.md
+++ b/Data/HD/srd_monsters_unicorn.md
@@ -4,7 +4,7 @@
# Unicorn
-- CEO: [Licorne](hd_monsters_licorne.md)
+- Alias: [Licorne](hd_monsters_licorne.md)
- Large celestial, lawful good
- **Armor Class** 12
- **Hit Points** 67 (9d10 + 18)
diff --git a/Data/HD/srd_monsters_vampire.md b/Data/HD/srd_monsters_vampire.md
index 1259f1ff..92cc16b1 100644
--- a/Data/HD/srd_monsters_vampire.md
+++ b/Data/HD/srd_monsters_vampire.md
@@ -4,7 +4,7 @@
# Vampire
-- CEO: [Vampire](hd_monsters_vampire.md)
+- Alias: [Vampire](hd_monsters_vampire.md)
- Medium undead (shapechanger), lawful evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 144 (17d8 + 68)
diff --git a/Data/HD/srd_monsters_vampire_spawn.md b/Data/HD/srd_monsters_vampire_spawn.md
index 73c0a4c0..e3d40d3b 100644
--- a/Data/HD/srd_monsters_vampire_spawn.md
+++ b/Data/HD/srd_monsters_vampire_spawn.md
@@ -4,7 +4,7 @@
# Vampire Spawn
-- CEO: [Vampirien](hd_monsters_vampirien.md)
+- Alias: [Vampirien](hd_monsters_vampirien.md)
- Medium undead, neutral evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 82 (11d8 + 33)
diff --git a/Data/HD/srd_monsters_veteran.md b/Data/HD/srd_monsters_veteran.md
index 65321ff7..71737887 100644
--- a/Data/HD/srd_monsters_veteran.md
+++ b/Data/HD/srd_monsters_veteran.md
@@ -4,7 +4,7 @@
# Veteran
-- CEO: [Vétéran](hd_monsters_veteran.md)
+- Alias: [Vétéran](hd_monsters_veteran.md)
- Medium humanoid (any race), any alignment
- **Armor Class** 17 (splint)
- **Hit Points** 58 (9d8 + 18)
diff --git a/Data/HD/srd_monsters_violet_fungus.md b/Data/HD/srd_monsters_violet_fungus.md
index 050a42db..4b9a7990 100644
--- a/Data/HD/srd_monsters_violet_fungus.md
+++ b/Data/HD/srd_monsters_violet_fungus.md
@@ -4,7 +4,7 @@
# Violet Fungus
-- CEO: [Moisissure violette](hd_monsters_moisissure_violette.md)
+- Alias: [Moisissure violette](hd_monsters_moisissure_violette.md)
- Medium plant, unaligned
- **Armor Class** 5
- **Hit Points** 18 (4d8)
diff --git a/Data/HD/srd_monsters_vrock.md b/Data/HD/srd_monsters_vrock.md
index 01d3ba10..fac27ffa 100644
--- a/Data/HD/srd_monsters_vrock.md
+++ b/Data/HD/srd_monsters_vrock.md
@@ -4,7 +4,7 @@
# Vrock
-- CEO: [Vrock](hd_monsters_vrock.md)
+- Alias: [Vrock](hd_monsters_vrock.md)
- Large fiend (demon), chaotic evil
- **Armor Class** 15 (natural armor)
- **Hit Points** 104 (11d10 + 44)
diff --git a/Data/HD/srd_monsters_vulture.md b/Data/HD/srd_monsters_vulture.md
index 395c903a..c39e9421 100644
--- a/Data/HD/srd_monsters_vulture.md
+++ b/Data/HD/srd_monsters_vulture.md
@@ -4,7 +4,7 @@
# Vulture
-- CEO: [Vautour](hd_monsters_vautour.md)
+- Alias: [Vautour](hd_monsters_vautour.md)
- Medium beast, unaligned
- **Armor Class** 10
- **Hit Points** 5 (1d8 + 1)
diff --git a/Data/HD/srd_monsters_warhorse.md b/Data/HD/srd_monsters_warhorse.md
index 4360e80e..31124b12 100644
--- a/Data/HD/srd_monsters_warhorse.md
+++ b/Data/HD/srd_monsters_warhorse.md
@@ -4,7 +4,7 @@
# Warhorse
-- CEO: [Cheval de guerre](hd_monsters_cheval_de_guerre.md)
+- Alias: [Cheval de guerre](hd_monsters_cheval_de_guerre.md)
- Large beast, unaligned
- **Armor Class** 11
- **Hit Points** 19 (3d10 + 3)
diff --git a/Data/HD/srd_monsters_warhorse_skeleton.md b/Data/HD/srd_monsters_warhorse_skeleton.md
index 4c8e2787..47936f14 100644
--- a/Data/HD/srd_monsters_warhorse_skeleton.md
+++ b/Data/HD/srd_monsters_warhorse_skeleton.md
@@ -4,7 +4,7 @@
# Warhorse Skeleton
-- CEO: [Squelette cheval de guerre](hd_monsters_squelette_cheval_de_guerre.md)
+- Alias: [Squelette cheval de guerre](hd_monsters_squelette_cheval_de_guerre.md)
- Large undead, lawful evil
- **Armor Class** 13 (barding scraps)
- **Hit Points** 22 (3d10 + 6)
diff --git a/Data/HD/srd_monsters_water_elemental.md b/Data/HD/srd_monsters_water_elemental.md
index 7e4a0140..be0e19ad 100644
--- a/Data/HD/srd_monsters_water_elemental.md
+++ b/Data/HD/srd_monsters_water_elemental.md
@@ -4,7 +4,7 @@
# Water Elemental
-- CEO: [Élémentaire de l'eau](hd_monsters_elementaire_de_leau.md)
+- Alias: [Élémentaire de l'eau](hd_monsters_elementaire_de_leau.md)
- Large elemental, neutral
- **Armor Class** 14 (natural armor)
- **Hit Points** 114 (12d10 + 48)
diff --git a/Data/HD/srd_monsters_weasel.md b/Data/HD/srd_monsters_weasel.md
index f2ccea4f..c4d80722 100644
--- a/Data/HD/srd_monsters_weasel.md
+++ b/Data/HD/srd_monsters_weasel.md
@@ -4,7 +4,7 @@
# Weasel
-- CEO: [Belette](hd_monsters_belette.md)
+- Alias: [Belette](hd_monsters_belette.md)
- Source: (SRD p392)
- Tiny beast, unaligned
- **Armor Class** 13
diff --git a/Data/HD/srd_monsters_werebear.md b/Data/HD/srd_monsters_werebear.md
index 5d5d7e45..cc80fcc1 100644
--- a/Data/HD/srd_monsters_werebear.md
+++ b/Data/HD/srd_monsters_werebear.md
@@ -4,7 +4,7 @@
# Werebear
-- CEO: [Ours-garou](hd_monsters_ours_garou.md)
+- Alias: [Ours-garou](hd_monsters_ours_garou.md)
- 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)
diff --git a/Data/HD/srd_monsters_wereboar.md b/Data/HD/srd_monsters_wereboar.md
index cc602eba..9ee2c975 100644
--- a/Data/HD/srd_monsters_wereboar.md
+++ b/Data/HD/srd_monsters_wereboar.md
@@ -4,7 +4,7 @@
# Wereboar
-- CEO: [Sanglier-garou](hd_monsters_sanglier_garou.md)
+- Alias: [Sanglier-garou](hd_monsters_sanglier_garou.md)
- 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)
diff --git a/Data/HD/srd_monsters_wererat.md b/Data/HD/srd_monsters_wererat.md
index 978e9f27..505d36d9 100644
--- a/Data/HD/srd_monsters_wererat.md
+++ b/Data/HD/srd_monsters_wererat.md
@@ -4,7 +4,7 @@
# Wererat
-- CEO: [Rat-garou](hd_monsters_rat_garou.md)
+- Alias: [Rat-garou](hd_monsters_rat_garou.md)
- Medium humanoid (human, shapechanger), lawful evil
- **Armor Class** 12
- **Hit Points** 33 (6d8 + 6)
diff --git a/Data/HD/srd_monsters_weretiger.md b/Data/HD/srd_monsters_weretiger.md
index 03b4d444..61228788 100644
--- a/Data/HD/srd_monsters_weretiger.md
+++ b/Data/HD/srd_monsters_weretiger.md
@@ -4,7 +4,7 @@
# Weretiger
-- CEO: [Tigre-garou](hd_monsters_tigre_garou.md)
+- Alias: [Tigre-garou](hd_monsters_tigre_garou.md)
- Medium humanoid (human, shapechanger), neutral
- **Armor Class** 12
- **Hit Points** 120 (16d8 + 48)
diff --git a/Data/HD/srd_monsters_werewolf.md b/Data/HD/srd_monsters_werewolf.md
index d3eb1056..ea2faaf8 100644
--- a/Data/HD/srd_monsters_werewolf.md
+++ b/Data/HD/srd_monsters_werewolf.md
@@ -4,7 +4,7 @@
# Werewolf
-- CEO: [Loup-garou](hd_monsters_loup_garou.md)
+- Alias: [Loup-garou](hd_monsters_loup_garou.md)
- 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)
diff --git a/Data/HD/srd_monsters_white_dragon_wyrmling.md b/Data/HD/srd_monsters_white_dragon_wyrmling.md
index affaabf6..d9f42638 100644
--- a/Data/HD/srd_monsters_white_dragon_wyrmling.md
+++ b/Data/HD/srd_monsters_white_dragon_wyrmling.md
@@ -4,7 +4,7 @@
# White Dragon Wyrmling
-- CEO: [Dragonnet blanc](hd_monsters_dragonnet_blanc.md)
+- Alias: [Dragonnet blanc](hd_monsters_dragonnet_blanc.md)
- Medium dragon, chaotic evil
- **Armor Class** 16 (natural armor)
- **Hit Points** 32 (5d8 + 10)
diff --git a/Data/HD/srd_monsters_wight.md b/Data/HD/srd_monsters_wight.md
index cd787ff0..1b0c7ed3 100644
--- a/Data/HD/srd_monsters_wight.md
+++ b/Data/HD/srd_monsters_wight.md
@@ -4,7 +4,7 @@
# Wight
-- CEO: [Nécrophage](hd_monsters_necrophage.md)
+- Alias: [Nécrophage](hd_monsters_necrophage.md)
- Medium undead, neutral evil
- **Armor Class** 14 (studded leather)
- **Hit Points** 45 (6d8 + 18)
diff --git a/Data/HD/srd_monsters_will_o_wisp.md b/Data/HD/srd_monsters_will_o_wisp.md
index fb87e9d5..be7983b4 100644
--- a/Data/HD/srd_monsters_will_o_wisp.md
+++ b/Data/HD/srd_monsters_will_o_wisp.md
@@ -4,7 +4,7 @@
# Will-o'-Wisp
-- CEO: [Feu follet](hd_monsters_feu_follet.md)
+- Alias: [Feu follet](hd_monsters_feu_follet.md)
- Tiny undead, chaotic evil
- **Armor Class** 19
- **Hit Points** 22 (9d4)
diff --git a/Data/HD/srd_monsters_winter_wolf.md b/Data/HD/srd_monsters_winter_wolf.md
index bc96cb10..b6290034 100644
--- a/Data/HD/srd_monsters_winter_wolf.md
+++ b/Data/HD/srd_monsters_winter_wolf.md
@@ -4,7 +4,7 @@
# Winter Wolf
-- CEO: [Loup arctique](hd_monsters_loup_arctique.md)
+- Alias: [Loup arctique](hd_monsters_loup_arctique.md)
- Large monstrosity, neutral evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 75 (10d10 + 20)
diff --git a/Data/HD/srd_monsters_wolf.md b/Data/HD/srd_monsters_wolf.md
index 999440d1..f0d2d6b3 100644
--- a/Data/HD/srd_monsters_wolf.md
+++ b/Data/HD/srd_monsters_wolf.md
@@ -4,7 +4,7 @@
# Wolf
-- CEO: [Loup](hd_monsters_loup.md)
+- Alias: [Loup](hd_monsters_loup.md)
- Medium beast, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 11 (2d8 + 2)
diff --git a/Data/HD/srd_monsters_worg.md b/Data/HD/srd_monsters_worg.md
index 60b9e4c1..42603af8 100644
--- a/Data/HD/srd_monsters_worg.md
+++ b/Data/HD/srd_monsters_worg.md
@@ -4,7 +4,7 @@
# Worg
-- CEO: [Worg](hd_monsters_worg.md)
+- Alias: [Worg](hd_monsters_worg.md)
- Large monstrosity, neutral evil
- **Armor Class** 13 (natural armor)
- **Hit Points** 26 (4d10 + 4)
diff --git a/Data/HD/srd_monsters_wraith.md b/Data/HD/srd_monsters_wraith.md
index 29a3582d..64dddb64 100644
--- a/Data/HD/srd_monsters_wraith.md
+++ b/Data/HD/srd_monsters_wraith.md
@@ -4,7 +4,7 @@
# Wraith
-- CEO: [Âme en peine](hd_monsters_ame_en_peine.md)
+- Alias: [Âme en peine](hd_monsters_ame_en_peine.md)
- Medium undead, neutral evil
- **Armor Class** 13
- **Hit Points** 67 (9d8 + 27)
diff --git a/Data/HD/srd_monsters_wyvern.md b/Data/HD/srd_monsters_wyvern.md
index 5a0ca7cc..e0d5eb58 100644
--- a/Data/HD/srd_monsters_wyvern.md
+++ b/Data/HD/srd_monsters_wyvern.md
@@ -4,7 +4,7 @@
# Wyvern
-- CEO: [Vouivre](hd_monsters_vouivre.md)
+- Alias: [Vouivre](hd_monsters_vouivre.md)
- Large dragon, unaligned
- **Armor Class** 13 (natural armor)
- **Hit Points** 110 (13d10 + 39)
diff --git a/Data/HD/srd_monsters_xorn.md b/Data/HD/srd_monsters_xorn.md
index 78a01447..5eae506a 100644
--- a/Data/HD/srd_monsters_xorn.md
+++ b/Data/HD/srd_monsters_xorn.md
@@ -4,7 +4,7 @@
# Xorn
-- CEO: [Xorn](hd_monsters_xorn.md)
+- Alias: [Xorn](hd_monsters_xorn.md)
- Medium elemental, neutral
- **Armor Class** 19 (natural armor)
- **Hit Points** 73 (7d8 + 42)
diff --git a/Data/HD/srd_monsters_young_black_dragon.md b/Data/HD/srd_monsters_young_black_dragon.md
index 612cc1e6..9866b70c 100644
--- a/Data/HD/srd_monsters_young_black_dragon.md
+++ b/Data/HD/srd_monsters_young_black_dragon.md
@@ -4,7 +4,7 @@
# Young Black Dragon
-- CEO: [Jeune dragon noir](hd_monsters_jeune_dragon_noir.md)
+- Alias: [Jeune dragon noir](hd_monsters_jeune_dragon_noir.md)
- Large dragon, chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 127 (15d10 + 45)
diff --git a/Data/HD/srd_monsters_young_blue_dragon.md b/Data/HD/srd_monsters_young_blue_dragon.md
index ae75a82e..dfa227d6 100644
--- a/Data/HD/srd_monsters_young_blue_dragon.md
+++ b/Data/HD/srd_monsters_young_blue_dragon.md
@@ -4,7 +4,7 @@
# Young Blue Dragon
-- CEO: [Jeune dragon bleu](hd_monsters_jeune_dragon_bleu.md)
+- Alias: [Jeune dragon bleu](hd_monsters_jeune_dragon_bleu.md)
- Large dragon, lawful evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 152 (16d10 + 64)
diff --git a/Data/HD/srd_monsters_young_brass_dragon.md b/Data/HD/srd_monsters_young_brass_dragon.md
index b065b8a3..214c6c3e 100644
--- a/Data/HD/srd_monsters_young_brass_dragon.md
+++ b/Data/HD/srd_monsters_young_brass_dragon.md
@@ -4,7 +4,7 @@
# Young Brass Dragon
-- CEO: [Jeune dragon d'airain](hd_monsters_jeune_dragon_dairain.md)
+- Alias: [Jeune dragon d'airain](hd_monsters_jeune_dragon_dairain.md)
- Large dragon, chaotic good
- **Armor Class** 17 (natural armor)
- **Hit Points** 110 (13d10 + 39)
diff --git a/Data/HD/srd_monsters_young_bronze_dragon.md b/Data/HD/srd_monsters_young_bronze_dragon.md
index 75f52761..3e125ee9 100644
--- a/Data/HD/srd_monsters_young_bronze_dragon.md
+++ b/Data/HD/srd_monsters_young_bronze_dragon.md
@@ -4,7 +4,7 @@
# Young Bronze Dragon
-- CEO: [Jeune dragon de bronze](hd_monsters_jeune_dragon_de_bronze.md)
+- Alias: [Jeune dragon de bronze](hd_monsters_jeune_dragon_de_bronze.md)
- Large dragon, lawful good
- **Armor Class** 18 (natural armor)
- **Hit Points** 142 (15d10 + 60)
diff --git a/Data/HD/srd_monsters_young_copper_dragon.md b/Data/HD/srd_monsters_young_copper_dragon.md
index fe260700..2c8fa350 100644
--- a/Data/HD/srd_monsters_young_copper_dragon.md
+++ b/Data/HD/srd_monsters_young_copper_dragon.md
@@ -4,7 +4,7 @@
# Young Copper Dragon
-- CEO: [Jeune dragon de cuivre](hd_monsters_jeune_dragon_de_cuivre.md)
+- Alias: [Jeune dragon de cuivre](hd_monsters_jeune_dragon_de_cuivre.md)
- Large dragon, chaotic good
- **Armor Class** 17 (natural armor)
- **Hit Points** 119 (14d10 + 42)
diff --git a/Data/HD/srd_monsters_young_gold_dragon.md b/Data/HD/srd_monsters_young_gold_dragon.md
index c0fdb742..50773bf3 100644
--- a/Data/HD/srd_monsters_young_gold_dragon.md
+++ b/Data/HD/srd_monsters_young_gold_dragon.md
@@ -4,7 +4,7 @@
# Young Gold Dragon
-- CEO: [Jeune dragon d'or](hd_monsters_jeune_dragon_dor.md)
+- Alias: [Jeune dragon d'or](hd_monsters_jeune_dragon_dor.md)
- Large dragon, lawful good
- **Armor Class** 18 (natural armor)
- **Hit Points** 178 (17d10 + 85)
diff --git a/Data/HD/srd_monsters_young_green_dragon.md b/Data/HD/srd_monsters_young_green_dragon.md
index 5b84aa8a..e93d9a05 100644
--- a/Data/HD/srd_monsters_young_green_dragon.md
+++ b/Data/HD/srd_monsters_young_green_dragon.md
@@ -4,7 +4,7 @@
# Young Green Dragon
-- CEO: [Jeune dragon vert](hd_monsters_jeune_dragon_vert.md)
+- Alias: [Jeune dragon vert](hd_monsters_jeune_dragon_vert.md)
- Large dragon, lawful evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 136 (16d10 + 48)
diff --git a/Data/HD/srd_monsters_young_red_dragon.md b/Data/HD/srd_monsters_young_red_dragon.md
index 3ef02351..d9b4c4e3 100644
--- a/Data/HD/srd_monsters_young_red_dragon.md
+++ b/Data/HD/srd_monsters_young_red_dragon.md
@@ -4,7 +4,7 @@
# Young Red Dragon
-- CEO: [Jeune dragon rouge](hd_monsters_jeune_dragon_rouge.md)
+- Alias: [Jeune dragon rouge](hd_monsters_jeune_dragon_rouge.md)
- Large dragon, chaotic evil
- **Armor Class** 18 (natural armor)
- **Hit Points** 178 (17d10 + 85)
diff --git a/Data/HD/srd_monsters_young_silver_dragon.md b/Data/HD/srd_monsters_young_silver_dragon.md
index 83d04a8c..15993795 100644
--- a/Data/HD/srd_monsters_young_silver_dragon.md
+++ b/Data/HD/srd_monsters_young_silver_dragon.md
@@ -4,7 +4,7 @@
# Young Silver Dragon
-- CEO: [Jeune dragon d'argent](hd_monsters_jeune_dragon_dargent.md)
+- Alias: [Jeune dragon d'argent](hd_monsters_jeune_dragon_dargent.md)
- Large dragon, lawful good
- **Armor Class** 18 (natural armor)
- **Hit Points** 168 (16d10 + 80)
diff --git a/Data/HD/srd_monsters_young_white_dragon.md b/Data/HD/srd_monsters_young_white_dragon.md
index 17690c70..60cb1b18 100644
--- a/Data/HD/srd_monsters_young_white_dragon.md
+++ b/Data/HD/srd_monsters_young_white_dragon.md
@@ -4,7 +4,7 @@
# Young White Dragon
-- CEO: [Jeune dragon blanc](hd_monsters_jeune_dragon_blanc.md)
+- Alias: [Jeune dragon blanc](hd_monsters_jeune_dragon_blanc.md)
- Large dragon, chaotic evil
- **Armor Class** 17 (natural armor)
- **Hit Points** 133 (14d10 + 56)
diff --git a/Data/HD/srd_monsters_zombie.md b/Data/HD/srd_monsters_zombie.md
index cd6c71b8..bc09dc9a 100644
--- a/Data/HD/srd_monsters_zombie.md
+++ b/Data/HD/srd_monsters_zombie.md
@@ -4,7 +4,7 @@
# Zombie
-- CEO: [Zombi](hd_monsters_zombi.md)
+- Alias: [Zombi](hd_monsters_zombi.md)
- Medium undead, neutral evil
- **Armor Class** 8
- **Hit Points** 22 (3d8 + 9)
diff --git a/Data/HD/srd_spells.md b/Data/HD/srd_spells.md
index 98da93fa..afec422b 100644
--- a/Data/HD/srd_spells.md
+++ b/Data/HD/srd_spells.md
@@ -34,7 +34,7 @@ SubItems:
- - MDR: [Aspersion acide](hd_spells_aspersion_acide.md)
+ - Alias: [Aspersion acide](hd_spells_aspersion_acide.md)
@@ -1521,7 +1521,7 @@ SubItems:
- - MDR: [Aide](hd_spells_aide.md)
+ - Alias: [Aide](hd_spells_aide.md)
@@ -1617,7 +1617,7 @@ SubItems:
- - MDR: [Alarme](hd_spells_alarme.md)
+ - Alias: [Alarme](hd_spells_alarme.md)
@@ -1714,7 +1714,7 @@ SubItems:
- - MDR: [Modifier son apparence](hd_spells_modifier_son_apparence.md)
+ - Alias: [Modifier son apparence](hd_spells_modifier_son_apparence.md)
@@ -1821,7 +1821,7 @@ SubItems:
- - MDR: [Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)
+ - Alias: [Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)
@@ -1917,7 +1917,7 @@ SubItems:
- - MDR: [Messager animal](hd_spells_messager_animal.md)
+ - Alias: [Messager animal](hd_spells_messager_animal.md)
@@ -2020,7 +2020,7 @@ SubItems:
- - MDR: [Formes animales](hd_spells_formes_animales.md)
+ - Alias: [Formes animales](hd_spells_formes_animales.md)
@@ -2121,7 +2121,7 @@ SubItems:
- - MDR: [Animation des morts](hd_spells_animation_des_morts.md)
+ - Alias: [Animation des morts](hd_spells_animation_des_morts.md)
@@ -2228,7 +2228,7 @@ SubItems:
- - MDR: [Animation des objets](hd_spells_animation_des_objets.md)
+ - Alias: [Animation des objets](hd_spells_animation_des_objets.md)
@@ -2371,7 +2371,7 @@ SubItems:
- - MDR: [Coquille antivie](hd_spells_coquille_antivie.md)
+ - Alias: [Coquille antivie](hd_spells_coquille_antivie.md)
@@ -2472,7 +2472,7 @@ SubItems:
- - MDR: [Champ antimagie](hd_spells_champ_antimagie.md)
+ - Alias: [Champ antimagie](hd_spells_champ_antimagie.md)
@@ -2615,7 +2615,7 @@ SubItems:
- - MDR: [Répulsion/attirance](hd_spells_repulsionattirance.md)
+ - Alias: [Répulsion/attirance](hd_spells_repulsionattirance.md)
@@ -2734,7 +2734,7 @@ SubItems:
- - MDR: [Oeil magique](hd_spells_oeil_magique.md)
+ - Alias: [Oeil magique](hd_spells_oeil_magique.md)
@@ -2835,7 +2835,7 @@ SubItems:
- - MDR: [Verrou magique](hd_spells_verrou_magique.md)
+ - Alias: [Verrou magique](hd_spells_verrou_magique.md)
@@ -2930,7 +2930,7 @@ SubItems:
- - MDR: [Projection astrale](hd_spells_projection_astrale.md)
+ - Alias: [Projection astrale](hd_spells_projection_astrale.md)
@@ -3050,7 +3050,7 @@ SubItems:
- - MDR: [Augure](hd_spells_augure.md)
+ - Alias: [Augure](hd_spells_augure.md)
@@ -3177,7 +3177,7 @@ SubItems:
- - MDR: [Éveil](hd_spells_eveil.md)
+ - Alias: [Éveil](hd_spells_eveil.md)
@@ -3272,7 +3272,7 @@ SubItems:
- - MDR: [Fléau](hd_spells_fleau.md)
+ - Alias: [Fléau](hd_spells_fleau.md)
@@ -3367,7 +3367,7 @@ SubItems:
- - MDR: [Bannissement](hd_spells_bannissement.md)
+ - Alias: [Bannissement](hd_spells_bannissement.md)
@@ -3474,7 +3474,7 @@ SubItems:
- - MDR: [Peau d'écorce](hd_spells_peau_decorce.md)
+ - Alias: [Peau d'écorce](hd_spells_peau_decorce.md)
@@ -3563,7 +3563,7 @@ SubItems:
- - MDR: [Lueur d'espoir](hd_spells_lueur_despoir.md)
+ - Alias: [Lueur d'espoir](hd_spells_lueur_despoir.md)
@@ -3652,7 +3652,7 @@ SubItems:
- - MDR: [Jeter une malédiction](hd_spells_jeter_une_malediction.md)
+ - Alias: [Jeter une malédiction](hd_spells_jeter_une_malediction.md)
@@ -3777,7 +3777,7 @@ SubItems:
- - MDR: [Main magique](hd_spells_main_magique.md)
+ - Alias: [Main magique](hd_spells_main_magique.md)
@@ -3908,7 +3908,7 @@ SubItems:
- - MDR: [Barrière de lames](hd_spells_barriere_de_lames.md)
+ - Alias: [Barrière de lames](hd_spells_barriere_de_lames.md)
@@ -4003,7 +4003,7 @@ SubItems:
- - MDR: [Bénédiction](hd_spells_benediction.md)
+ - Alias: [Bénédiction](hd_spells_benediction.md)
@@ -4098,7 +4098,7 @@ SubItems:
- - MDR: [Flétrissement](hd_spells_fletrissement.md)
+ - Alias: [Flétrissement](hd_spells_fletrissement.md)
@@ -4199,7 +4199,7 @@ SubItems:
- - MDR: [Cécité/Surdité](hd_spells_cecitesurdite.md)
+ - Alias: [Cécité/Surdité](hd_spells_cecitesurdite.md)
@@ -4294,7 +4294,7 @@ SubItems:
- - MDR: [Clignotement](hd_spells_clignotement.md)
+ - Alias: [Clignotement](hd_spells_clignotement.md)
@@ -4389,7 +4389,7 @@ SubItems:
- - MDR: [Flou](hd_spells_flou.md)
+ - Alias: [Flou](hd_spells_flou.md)
@@ -4478,7 +4478,7 @@ SubItems:
- - MDR: [Frappe lumineuse](hd_spells_frappe_lumineuse.md)
+ - Alias: [Frappe lumineuse](hd_spells_frappe_lumineuse.md)
@@ -4573,7 +4573,7 @@ SubItems:
- - MDR: [Mains brûlantes](hd_spells_mains_brulantes.md)
+ - Alias: [Mains brûlantes](hd_spells_mains_brulantes.md)
@@ -4674,7 +4674,7 @@ SubItems:
- - MDR: [Appel de la foudre](hd_spells_appel_de_la_foudre.md)
+ - Alias: [Appel de la foudre](hd_spells_appel_de_la_foudre.md)
@@ -4781,7 +4781,7 @@ SubItems:
- - MDR: [Apaisement des émotions](hd_spells_apaisement_des_emotions.md)
+ - Alias: [Apaisement des émotions](hd_spells_apaisement_des_emotions.md)
@@ -4882,7 +4882,7 @@ SubItems:
- - MDR: [Chaîne d'éclairs](hd_spells_chaine_declairs.md)
+ - Alias: [Chaîne d'éclairs](hd_spells_chaine_declairs.md)
@@ -4983,7 +4983,7 @@ SubItems:
- - MDR: [Charme-personne](hd_spells_charme_personne.md)
+ - Alias: [Charme-personne](hd_spells_charme_personne.md)
@@ -5078,7 +5078,7 @@ SubItems:
- - MDR: [Contact glacial](hd_spells_contact_glacial.md)
+ - Alias: [Contact glacial](hd_spells_contact_glacial.md)
@@ -5173,7 +5173,7 @@ SubItems:
- - MDR: [Cercle de mort](hd_spells_cercle_de_mort.md)
+ - Alias: [Cercle de mort](hd_spells_cercle_de_mort.md)
@@ -5268,7 +5268,7 @@ SubItems:
- - MDR: [Clairvoyance](hd_spells_clairvoyance.md)
+ - Alias: [Clairvoyance](hd_spells_clairvoyance.md)
@@ -5369,7 +5369,7 @@ SubItems:
- - MDR: [Clone](hd_spells_clone.md)
+ - Alias: [Clone](hd_spells_clone.md)
@@ -5470,7 +5470,7 @@ SubItems:
- - MDR: [Nuage mortel](hd_spells_nuage_mortel.md)
+ - Alias: [Nuage mortel](hd_spells_nuage_mortel.md)
@@ -5577,7 +5577,7 @@ SubItems:
- - MDR: [Couleurs dansantes](hd_spells_couleurs_dansantes.md)
+ - Alias: [Couleurs dansantes](hd_spells_couleurs_dansantes.md)
@@ -5678,7 +5678,7 @@ SubItems:
- - MDR: [Injonction](hd_spells_injonction.md)
+ - Alias: [Injonction](hd_spells_injonction.md)
@@ -5810,7 +5810,7 @@ SubItems:
- - MDR: [Communion](hd_spells_communion.md)
+ - Alias: [Communion](hd_spells_communion.md)
@@ -5914,7 +5914,7 @@ SubItems:
- - MDR: [Communion avec la nature](hd_spells_communion_avec_la_nature.md)
+ - Alias: [Communion avec la nature](hd_spells_communion_avec_la_nature.md)
@@ -6048,7 +6048,7 @@ SubItems:
- - MDR: [Compréhension des langues](hd_spells_comprehension_des_langues.md)
+ - Alias: [Compréhension des langues](hd_spells_comprehension_des_langues.md)
@@ -6145,7 +6145,7 @@ SubItems:
- - MDR: [Compulsion](hd_spells_compulsion.md)
+ - Alias: [Compulsion](hd_spells_compulsion.md)
@@ -6240,7 +6240,7 @@ SubItems:
- - MDR: [Cône de froid](hd_spells_cone_de_froid.md)
+ - Alias: [Cône de froid](hd_spells_cone_de_froid.md)
@@ -6341,7 +6341,7 @@ SubItems:
- - MDR: [Confusion](hd_spells_confusion.md)
+ - Alias: [Confusion](hd_spells_confusion.md)
@@ -6474,7 +6474,7 @@ SubItems:
- - MDR: [Invoquer des animaux](hd_spells_invoquer_des_animaux.md)
+ - Alias: [Invoquer des animaux](hd_spells_invoquer_des_animaux.md)
@@ -6599,7 +6599,7 @@ SubItems:
- - MDR: [Invoquer un céleste](hd_spells_invoquer_un_celeste.md)
+ - Alias: [Invoquer un céleste](hd_spells_invoquer_un_celeste.md)
@@ -6706,7 +6706,7 @@ SubItems:
- - MDR: [Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)
+ - Alias: [Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)
@@ -6807,7 +6807,7 @@ SubItems:
- - MDR: [Invoquer une fée](hd_spells_invoquer_une_fee.md)
+ - Alias: [Invoquer une fée](hd_spells_invoquer_une_fee.md)
@@ -6920,7 +6920,7 @@ SubItems:
- - MDR: [Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)
+ - Alias: [Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)
@@ -7057,7 +7057,7 @@ SubItems:
- - MDR: [Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)
+ - Alias: [Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)
@@ -7195,7 +7195,7 @@ SubItems:
- - MDR: [Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)
+ - Alias: [Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)
@@ -7291,7 +7291,7 @@ SubItems:
- - MDR: [Contagion](hd_spells_contagion.md)
+ - Alias: [Contagion](hd_spells_contagion.md)
@@ -7432,7 +7432,7 @@ SubItems:
- - MDR: [Contingence](hd_spells_contingence.md)
+ - Alias: [Contingence](hd_spells_contingence.md)
@@ -7533,7 +7533,7 @@ SubItems:
- - MDR: [Flamme éternelle](hd_spells_flamme_eternelle.md)
+ - Alias: [Flamme éternelle](hd_spells_flamme_eternelle.md)
@@ -7622,7 +7622,7 @@ SubItems:
- - MDR: [Contrôle de l'eau](hd_spells_controle_de_leau.md)
+ - Alias: [Contrôle de l'eau](hd_spells_controle_de_leau.md)
@@ -7747,7 +7747,7 @@ SubItems:
- - MDR: [Contrôle du climat](hd_spells_controle_du_climat.md)
+ - Alias: [Contrôle du climat](hd_spells_controle_du_climat.md)
@@ -7954,7 +7954,7 @@ SubItems:
- - MDR: [Contresort](hd_spells_contresort.md)
+ - Alias: [Contresort](hd_spells_contresort.md)
@@ -8049,7 +8049,7 @@ SubItems:
- - MDR: [Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)
+ - Alias: [Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)
@@ -8138,7 +8138,7 @@ SubItems:
- - MDR: [Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)
+ - Alias: [Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)
@@ -8245,7 +8245,7 @@ SubItems:
- - MDR: [Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)
+ - Alias: [Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)
@@ -8352,7 +8352,7 @@ SubItems:
- - MDR: [Création](hd_spells_creation.md)
+ - Alias: [Création](hd_spells_creation.md)
@@ -8489,7 +8489,7 @@ SubItems:
- - MDR: [Soin des blessures](hd_spells_soin_des_blessures.md)
+ - Alias: [Soin des blessures](hd_spells_soin_des_blessures.md)
@@ -8584,7 +8584,7 @@ SubItems:
- - MDR: [Lumières dansantes](hd_spells_lumieres_dansantes.md)
+ - Alias: [Lumières dansantes](hd_spells_lumieres_dansantes.md)
@@ -8679,7 +8679,7 @@ SubItems:
- - MDR: [Ténèbres](hd_spells_tenebres.md)
+ - Alias: [Ténèbres](hd_spells_tenebres.md)
@@ -8780,7 +8780,7 @@ SubItems:
- - MDR: [Vision dans le noir](hd_spells_vision_dans_le_noir.md)
+ - Alias: [Vision dans le noir](hd_spells_vision_dans_le_noir.md)
@@ -8869,7 +8869,7 @@ SubItems:
- - MDR: [Lumière du jour](hd_spells_lumiere_du_jour.md)
+ - Alias: [Lumière du jour](hd_spells_lumiere_du_jour.md)
@@ -8970,7 +8970,7 @@ SubItems:
- - MDR: [Protection contre la mort](hd_spells_protection_contre_la_mort.md)
+ - Alias: [Protection contre la mort](hd_spells_protection_contre_la_mort.md)
@@ -9071,7 +9071,7 @@ SubItems:
- - MDR: [Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)
+ - Alias: [Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)
@@ -9184,7 +9184,7 @@ SubItems:
- - MDR: [Demi-plan](hd_spells_demi_plan.md)
+ - Alias: [Demi-plan](hd_spells_demi_plan.md)
@@ -9279,7 +9279,7 @@ SubItems:
- - MDR: [Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)
+ - Alias: [Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)
@@ -9375,7 +9375,7 @@ SubItems:
- - MDR: [Détection de la magie](hd_spells_detection_de_la_magie.md)
+ - Alias: [Détection de la magie](hd_spells_detection_de_la_magie.md)
@@ -9473,7 +9473,7 @@ SubItems:
- - MDR: [Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)
+ - Alias: [Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)
@@ -9570,7 +9570,7 @@ SubItems:
- - MDR: [Détection des pensées](hd_spells_detection_des_pensees.md)
+ - Alias: [Détection des pensées](hd_spells_detection_des_pensees.md)
@@ -9683,7 +9683,7 @@ SubItems:
- - MDR: [Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)
+ - Alias: [Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)
@@ -9784,7 +9784,7 @@ SubItems:
- - MDR: [Déguisement](hd_spells_deguisement.md)
+ - Alias: [Déguisement](hd_spells_deguisement.md)
@@ -9885,7 +9885,7 @@ SubItems:
- - MDR: [Désintégration](hd_spells_desintegration.md)
+ - Alias: [Désintégration](hd_spells_desintegration.md)
@@ -9998,7 +9998,7 @@ SubItems:
- - MDR: [Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)
+ - Alias: [Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)
@@ -10105,7 +10105,7 @@ SubItems:
- - MDR: [Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)
+ - Alias: [Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)
@@ -10201,7 +10201,7 @@ SubItems:
- - MDR: [Divination](hd_spells_divination.md)
+ - Alias: [Divination](hd_spells_divination.md)
@@ -10304,7 +10304,7 @@ SubItems:
- - MDR: [Faveur divine](hd_spells_faveur_divine.md)
+ - Alias: [Faveur divine](hd_spells_faveur_divine.md)
@@ -10393,7 +10393,7 @@ SubItems:
- - MDR: [Parole divine](hd_spells_parole_divine.md)
+ - Alias: [Parole divine](hd_spells_parole_divine.md)
@@ -10512,7 +10512,7 @@ SubItems:
- - MDR: [Dominer une bête](hd_spells_dominer_une_bete.md)
+ - Alias: [Dominer une bête](hd_spells_dominer_une_bete.md)
@@ -10619,7 +10619,7 @@ SubItems:
- - MDR: [Dominer un monstre](hd_spells_dominer_un_monstre.md)
+ - Alias: [Dominer un monstre](hd_spells_dominer_un_monstre.md)
@@ -10732,7 +10732,7 @@ SubItems:
- - MDR: [Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)
+ - Alias: [Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)
@@ -10852,7 +10852,7 @@ SubItems:
- - MDR: [Convocations instantanées](hd_spells_convocations_instantanees.md)
+ - Alias: [Convocations instantanées](hd_spells_convocations_instantanees.md)
@@ -10961,7 +10961,7 @@ SubItems:
- - MDR: [Rêve](hd_spells_reve.md)
+ - Alias: [Rêve](hd_spells_reve.md)
@@ -11068,7 +11068,7 @@ SubItems:
- - MDR: [Druidisme](hd_spells_druidisme.md)
+ - Alias: [Druidisme](hd_spells_druidisme.md)
@@ -11181,7 +11181,7 @@ SubItems:
- - MDR: [Tremblement de terre](hd_spells_tremblement_de_terre.md)
+ - Alias: [Tremblement de terre](hd_spells_tremblement_de_terre.md)
@@ -11306,7 +11306,7 @@ SubItems:
- - MDR: [Explosion occulte](hd_spells_explosion_occulte.md)
+ - Alias: [Explosion occulte](hd_spells_explosion_occulte.md)
@@ -11401,7 +11401,7 @@ SubItems:
- - MDR: [Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)
+ - Alias: [Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)
@@ -11532,7 +11532,7 @@ SubItems:
- - MDR: [Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)
+ - Alias: [Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)
@@ -11639,7 +11639,7 @@ SubItems:
- - MDR: [Enchevêtrement](hd_spells_enchevetrement.md)
+ - Alias: [Enchevêtrement](hd_spells_enchevetrement.md)
@@ -11740,7 +11740,7 @@ SubItems:
- - MDR: [Envoûtement](hd_spells_envoutement.md)
+ - Alias: [Envoûtement](hd_spells_envoutement.md)
@@ -11829,7 +11829,7 @@ SubItems:
- - MDR: [Forme éthérée](hd_spells_forme_etheree.md)
+ - Alias: [Forme éthérée](hd_spells_forme_etheree.md)
@@ -11948,7 +11948,7 @@ SubItems:
- - MDR: [Tentacules noirs](hd_spells_tentacules_noirs.md)
+ - Alias: [Tentacules noirs](hd_spells_tentacules_noirs.md)
@@ -12049,7 +12049,7 @@ SubItems:
- - MDR: [Repli expéditif](hd_spells_repli_expeditif.md)
+ - Alias: [Repli expéditif](hd_spells_repli_expeditif.md)
@@ -12138,7 +12138,7 @@ SubItems:
- - MDR: [Mauvais oeil](hd_spells_mauvais_oeil.md)
+ - Alias: [Mauvais oeil](hd_spells_mauvais_oeil.md)
@@ -12245,7 +12245,7 @@ SubItems:
- - MDR: [Fabrication](hd_spells_fabrication.md)
+ - Alias: [Fabrication](hd_spells_fabrication.md)
@@ -12346,7 +12346,7 @@ SubItems:
- - MDR: [Lueurs féeriques](hd_spells_lueurs_feeriques.md)
+ - Alias: [Lueurs féeriques](hd_spells_lueurs_feeriques.md)
@@ -12441,7 +12441,7 @@ SubItems:
- - MDR: [Simulacre de vie](hd_spells_simulacre_de_vie.md)
+ - Alias: [Simulacre de vie](hd_spells_simulacre_de_vie.md)
@@ -12536,7 +12536,7 @@ SubItems:
- - MDR: [Peur](hd_spells_peur.md)
+ - Alias: [Peur](hd_spells_peur.md)
@@ -12625,7 +12625,7 @@ SubItems:
- - MDR: [Léger comme une plume](hd_spells_leger_comme_une_plume.md)
+ - Alias: [Léger comme une plume](hd_spells_leger_comme_une_plume.md)
@@ -12714,7 +12714,7 @@ SubItems:
- - MDR: [Esprit faible](hd_spells_esprit_faible.md)
+ - Alias: [Esprit faible](hd_spells_esprit_faible.md)
@@ -12822,7 +12822,7 @@ SubItems:
- - MDR: [Appel de familier](hd_spells_appel_de_familier.md)
+ - Alias: [Appel de familier](hd_spells_appel_de_familier.md)
@@ -12949,7 +12949,7 @@ SubItems:
- - MDR: [Trouver une monture](hd_spells_trouver_une_monture.md)
+ - Alias: [Trouver une monture](hd_spells_trouver_une_monture.md)
@@ -13062,7 +13062,7 @@ SubItems:
- - MDR: [Trouver un chemin](hd_spells_trouver_un_chemin.md)
+ - Alias: [Trouver un chemin](hd_spells_trouver_un_chemin.md)
@@ -13157,7 +13157,7 @@ SubItems:
- - MDR: [Trouver les pièges](hd_spells_trouver_les_pieges.md)
+ - Alias: [Trouver les pièges](hd_spells_trouver_les_pieges.md)
@@ -13252,7 +13252,7 @@ SubItems:
- - MDR: [Doigt de mort](hd_spells_doigt_de_mort.md)
+ - Alias: [Doigt de mort](hd_spells_doigt_de_mort.md)
@@ -13347,7 +13347,7 @@ SubItems:
- - MDR: [Trait de feu](hd_spells_trait_de_feu.md)
+ - Alias: [Trait de feu](hd_spells_trait_de_feu.md)
@@ -13442,7 +13442,7 @@ SubItems:
- - MDR: [Bouclier de feu](hd_spells_bouclier_de_feu.md)
+ - Alias: [Bouclier de feu](hd_spells_bouclier_de_feu.md)
@@ -13543,7 +13543,7 @@ SubItems:
- - MDR: [Tempête de feu](hd_spells_tempete_de_feu.md)
+ - Alias: [Tempête de feu](hd_spells_tempete_de_feu.md)
@@ -13638,7 +13638,7 @@ SubItems:
- - MDR: [Boule de feu](hd_spells_boule_de_feu.md)
+ - Alias: [Boule de feu](hd_spells_boule_de_feu.md)
@@ -13739,7 +13739,7 @@ SubItems:
- - MDR: [Lame de feu](hd_spells_lame_de_feu.md)
+ - Alias: [Lame de feu](hd_spells_lame_de_feu.md)
@@ -13846,7 +13846,7 @@ SubItems:
- - MDR: [Colonne de flamme](hd_spells_colonne_de_flamme.md)
+ - Alias: [Colonne de flamme](hd_spells_colonne_de_flamme.md)
@@ -13941,7 +13941,7 @@ SubItems:
- - MDR: [Sphère de feu](hd_spells_sphere_de_feu.md)
+ - Alias: [Sphère de feu](hd_spells_sphere_de_feu.md)
@@ -14048,7 +14048,7 @@ SubItems:
- - MDR: [Pétrification](hd_spells_petrification.md)
+ - Alias: [Pétrification](hd_spells_petrification.md)
@@ -14155,7 +14155,7 @@ SubItems:
- - MDR: [Vol](hd_spells_vol.md)
+ - Alias: [Vol](hd_spells_vol.md)
@@ -14250,7 +14250,7 @@ SubItems:
- - MDR: [Nappe de brouillard](hd_spells_nappe_de_brouillard.md)
+ - Alias: [Nappe de brouillard](hd_spells_nappe_de_brouillard.md)
@@ -14346,7 +14346,7 @@ SubItems:
- - MDR: [Interdiction](hd_spells_interdiction.md)
+ - Alias: [Interdiction](hd_spells_interdiction.md)
@@ -14455,7 +14455,7 @@ SubItems:
- - MDR: [Cage de force](hd_spells_cage_de_force.md)
+ - Alias: [Cage de force](hd_spells_cage_de_force.md)
@@ -14574,7 +14574,7 @@ SubItems:
- - MDR: [Prémonition](hd_spells_premonition.md)
+ - Alias: [Prémonition](hd_spells_premonition.md)
@@ -14669,7 +14669,7 @@ SubItems:
- - MDR: [Liberté de mouvement](hd_spells_liberte_de_mouvement.md)
+ - Alias: [Liberté de mouvement](hd_spells_liberte_de_mouvement.md)
@@ -14764,7 +14764,7 @@ SubItems:
- - MDR: [Forme gazeuse](hd_spells_forme_gazeuse.md)
+ - Alias: [Forme gazeuse](hd_spells_forme_gazeuse.md)
@@ -14865,7 +14865,7 @@ SubItems:
- - MDR: [Portail](hd_spells_portail.md)
+ - Alias: [Portail](hd_spells_portail.md)
@@ -14972,7 +14972,7 @@ SubItems:
- - MDR: [Coercition mystique](hd_spells_coercition_mystique.md)
+ - Alias: [Coercition mystique](hd_spells_coercition_mystique.md)
@@ -15080,7 +15080,7 @@ SubItems:
- - MDR: [Doux repos](hd_spells_doux_repos.md)
+ - Alias: [Doux repos](hd_spells_doux_repos.md)
@@ -15177,7 +15177,7 @@ SubItems:
- - MDR: [Insecte géant](hd_spells_insecte_geant.md)
+ - Alias: [Insecte géant](hd_spells_insecte_geant.md)
@@ -15284,7 +15284,7 @@ SubItems:
- - MDR: [Bagou](hd_spells_bagou.md)
+ - Alias: [Bagou](hd_spells_bagou.md)
@@ -15373,7 +15373,7 @@ SubItems:
- - MDR: [Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)
+ - Alias: [Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)
@@ -15474,7 +15474,7 @@ SubItems:
- - MDR: [Glyphe de protection](hd_spells_glyphe_de_protection.md)
+ - Alias: [Glyphe de protection](hd_spells_glyphe_de_protection.md)
@@ -15605,7 +15605,7 @@ SubItems:
- - MDR: [Baies nourricières](hd_spells_baies_nourricieres.md)
+ - Alias: [Baies nourricières](hd_spells_baies_nourricieres.md)
@@ -15700,7 +15700,7 @@ SubItems:
- - MDR: [Graisse](hd_spells_graisse.md)
+ - Alias: [Graisse](hd_spells_graisse.md)
@@ -15795,7 +15795,7 @@ SubItems:
- - MDR: [Invisibilité supérieure](hd_spells_invisibilite_superieure.md)
+ - Alias: [Invisibilité supérieure](hd_spells_invisibilite_superieure.md)
@@ -15884,7 +15884,7 @@ SubItems:
- - MDR: [Restauration supérieure](hd_spells_restauration_superieure.md)
+ - Alias: [Restauration supérieure](hd_spells_restauration_superieure.md)
@@ -15997,7 +15997,7 @@ SubItems:
- - MDR: [Gardien de la foi](hd_spells_gardien_de_la_foi.md)
+ - Alias: [Gardien de la foi](hd_spells_gardien_de_la_foi.md)
@@ -16092,7 +16092,7 @@ SubItems:
- - MDR: [Protections et sceaux](hd_spells_protections_et_sceaux.md)
+ - Alias: [Protections et sceaux](hd_spells_protections_et_sceaux.md)
@@ -16259,7 +16259,7 @@ SubItems:
- - MDR: [Assistance](hd_spells_assistance.md)
+ - Alias: [Assistance](hd_spells_assistance.md)
@@ -16348,7 +16348,7 @@ SubItems:
- - MDR: [Balisage](hd_spells_balisage.md)
+ - Alias: [Balisage](hd_spells_balisage.md)
@@ -16443,7 +16443,7 @@ SubItems:
- - MDR: [Bourrasque](hd_spells_bourrasque.md)
+ - Alias: [Bourrasque](hd_spells_bourrasque.md)
@@ -16550,7 +16550,7 @@ SubItems:
- - MDR: [Sanctification](hd_spells_sanctification.md)
+ - Alias: [Sanctification](hd_spells_sanctification.md)
@@ -16711,7 +16711,7 @@ SubItems:
- - MDR: [Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)
+ - Alias: [Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)
@@ -16806,7 +16806,7 @@ SubItems:
- - MDR: [Contamination](hd_spells_contamination.md)
+ - Alias: [Contamination](hd_spells_contamination.md)
@@ -16895,7 +16895,7 @@ SubItems:
- - MDR: [Hâte](hd_spells_hate.md)
+ - Alias: [Hâte](hd_spells_hate.md)
@@ -16990,7 +16990,7 @@ SubItems:
- - MDR: [Guérison](hd_spells_guerison.md)
+ - Alias: [Guérison](hd_spells_guerison.md)
@@ -17085,7 +17085,7 @@ SubItems:
- - MDR: [Mot de guérison](hd_spells_mot_de_guerison.md)
+ - Alias: [Mot de guérison](hd_spells_mot_de_guerison.md)
@@ -17180,7 +17180,7 @@ SubItems:
- - MDR: [Chauffer le métal](hd_spells_chauffer_le_metal.md)
+ - Alias: [Chauffer le métal](hd_spells_chauffer_le_metal.md)
@@ -17281,7 +17281,7 @@ SubItems:
- - MDR: [Représailles infernales](hd_spells_represailles_infernales.md)
+ - Alias: [Représailles infernales](hd_spells_represailles_infernales.md)
@@ -17376,7 +17376,7 @@ SubItems:
- - MDR: [Festin des héros](hd_spells_festin_des_heros.md)
+ - Alias: [Festin des héros](hd_spells_festin_des_heros.md)
@@ -17471,7 +17471,7 @@ SubItems:
- - MDR: [Héroïsme](hd_spells_heroisme.md)
+ - Alias: [Héroïsme](hd_spells_heroisme.md)
@@ -17566,7 +17566,7 @@ SubItems:
- - MDR: [Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)
+ - Alias: [Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)
@@ -17661,7 +17661,7 @@ SubItems:
- - MDR: [Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)
+ - Alias: [Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)
@@ -17756,7 +17756,7 @@ SubItems:
- - MDR: [Aura sacrée](hd_spells_aura_sacree.md)
+ - Alias: [Aura sacrée](hd_spells_aura_sacree.md)
@@ -17845,7 +17845,7 @@ SubItems:
- - MDR: [Marque du chasseur](hd_spells_marque_du_chasseur.md)
+ - Alias: [Marque du chasseur](hd_spells_marque_du_chasseur.md)
@@ -17940,7 +17940,7 @@ SubItems:
- - MDR: [Motif hypnotique](hd_spells_motif_hypnotique.md)
+ - Alias: [Motif hypnotique](hd_spells_motif_hypnotique.md)
@@ -18029,7 +18029,7 @@ SubItems:
- - MDR: [Tempête de grêle](hd_spells_tempete_de_grele.md)
+ - Alias: [Tempête de grêle](hd_spells_tempete_de_grele.md)
@@ -18131,7 +18131,7 @@ SubItems:
- - MDR: [Identification](hd_spells_identification.md)
+ - Alias: [Identification](hd_spells_identification.md)
@@ -18229,7 +18229,7 @@ SubItems:
- - MDR: [Texte illusoire](hd_spells_texte_illusoire.md)
+ - Alias: [Texte illusoire](hd_spells_texte_illusoire.md)
@@ -18338,7 +18338,7 @@ SubItems:
- - MDR: [Emprisonnement](hd_spells_emprisonnement.md)
+ - Alias: [Emprisonnement](hd_spells_emprisonnement.md)
@@ -18511,7 +18511,7 @@ SubItems:
- - MDR: [Nuage incendiaire](hd_spells_nuage_incendiaire.md)
+ - Alias: [Nuage incendiaire](hd_spells_nuage_incendiaire.md)
@@ -18612,7 +18612,7 @@ SubItems:
- - MDR: [Blessure](hd_spells_blessure.md)
+ - Alias: [Blessure](hd_spells_blessure.md)
@@ -18707,7 +18707,7 @@ SubItems:
- - MDR: [Fléau d'insectes](hd_spells_fleau_dinsectes.md)
+ - Alias: [Fléau d'insectes](hd_spells_fleau_dinsectes.md)
@@ -18808,7 +18808,7 @@ SubItems:
- - MDR: [Invisibilité](hd_spells_invisibilite.md)
+ - Alias: [Invisibilité](hd_spells_invisibilite.md)
@@ -18903,7 +18903,7 @@ SubItems:
- - MDR: [Saut](hd_spells_saut.md)
+ - Alias: [Saut](hd_spells_saut.md)
@@ -18992,7 +18992,7 @@ SubItems:
- - MDR: [Déblocage](hd_spells_deblocage.md)
+ - Alias: [Déblocage](hd_spells_deblocage.md)
@@ -19099,7 +19099,7 @@ SubItems:
- - MDR: [Légende](hd_spells_legende.md)
+ - Alias: [Légende](hd_spells_legende.md)
@@ -19194,7 +19194,7 @@ SubItems:
- - MDR: [Coffre secret](hd_spells_coffre_secret.md)
+ - Alias: [Coffre secret](hd_spells_coffre_secret.md)
@@ -19296,7 +19296,7 @@ SubItems:
- - MDR: [Petite hutte](hd_spells_petite_hutte.md)
+ - Alias: [Petite hutte](hd_spells_petite_hutte.md)
@@ -19399,7 +19399,7 @@ SubItems:
- - MDR: [Restauration inférieure](hd_spells_restauration_inferieure.md)
+ - Alias: [Restauration inférieure](hd_spells_restauration_inferieure.md)
@@ -19488,7 +19488,7 @@ SubItems:
- - MDR: [Lévitation](hd_spells_levitation.md)
+ - Alias: [Lévitation](hd_spells_levitation.md)
@@ -19589,7 +19589,7 @@ SubItems:
- - MDR: [Lumière](hd_spells_lumiere.md)
+ - Alias: [Lumière](hd_spells_lumiere.md)
@@ -19684,7 +19684,7 @@ SubItems:
- - MDR: [Éclair](hd_spells_eclair.md)
+ - Alias: [Éclair](hd_spells_eclair.md)
@@ -19786,7 +19786,7 @@ SubItems:
- - MDR: [Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)
+ - Alias: [Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)
@@ -19877,7 +19877,7 @@ SubItems:
- - MDR: [Localiser une créature](hd_spells_localiser_une_creature.md)
+ - Alias: [Localiser une créature](hd_spells_localiser_une_creature.md)
@@ -19978,7 +19978,7 @@ SubItems:
- - MDR: [Localiser un objet](hd_spells_localiser_un_objet.md)
+ - Alias: [Localiser un objet](hd_spells_localiser_un_objet.md)
@@ -20079,7 +20079,7 @@ SubItems:
- - MDR: [Grande foulée](hd_spells_grande_foulee.md)
+ - Alias: [Grande foulée](hd_spells_grande_foulee.md)
@@ -20174,7 +20174,7 @@ SubItems:
- - MDR: [Armure du mage](hd_spells_armure_du_mage.md)
+ - Alias: [Armure du mage](hd_spells_armure_du_mage.md)
@@ -20263,7 +20263,7 @@ SubItems:
- - MDR: [Main du mage](hd_spells_main_du_mage.md)
+ - Alias: [Main du mage](hd_spells_main_du_mage.md)
@@ -20364,7 +20364,7 @@ SubItems:
- - MDR: [Cercle magique](hd_spells_cercle_magique.md)
+ - Alias: [Cercle magique](hd_spells_cercle_magique.md)
@@ -20489,7 +20489,7 @@ SubItems:
- - MDR: [Possession](hd_spells_possession.md)
+ - Alias: [Possession](hd_spells_possession.md)
@@ -20614,7 +20614,7 @@ SubItems:
- - MDR: [Projectile magique](hd_spells_projectile_magique.md)
+ - Alias: [Projectile magique](hd_spells_projectile_magique.md)
@@ -20710,7 +20710,7 @@ SubItems:
- - MDR: [Bouche magique](hd_spells_bouche_magique.md)
+ - Alias: [Bouche magique](hd_spells_bouche_magique.md)
@@ -20813,7 +20813,7 @@ SubItems:
- - MDR: [Arme magique](hd_spells_arme_magique.md)
+ - Alias: [Arme magique](hd_spells_arme_magique.md)
@@ -20908,7 +20908,7 @@ SubItems:
- - MDR: [Image majeure](hd_spells_image_majeure.md)
+ - Alias: [Image majeure](hd_spells_image_majeure.md)
@@ -21015,7 +21015,7 @@ SubItems:
- - MDR: [Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)
+ - Alias: [Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)
@@ -21110,7 +21110,7 @@ SubItems:
- - MDR: [Guérison de groupe](hd_spells_guerison_de_groupe.md)
+ - Alias: [Guérison de groupe](hd_spells_guerison_de_groupe.md)
@@ -21199,7 +21199,7 @@ SubItems:
- - MDR: [Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)
+ - Alias: [Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)
@@ -21294,7 +21294,7 @@ SubItems:
- - MDR: [Suggestion de groupe](hd_spells_suggestion_de_groupe.md)
+ - Alias: [Suggestion de groupe](hd_spells_suggestion_de_groupe.md)
@@ -21407,7 +21407,7 @@ SubItems:
- - MDR: [Labyrinthe](hd_spells_labyrinthe.md)
+ - Alias: [Labyrinthe](hd_spells_labyrinthe.md)
@@ -21509,7 +21509,7 @@ SubItems:
- - MDR: [Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)
+ - Alias: [Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)
@@ -21612,7 +21612,7 @@ SubItems:
- - MDR: [Flèche acide](hd_spells_fleche_acide.md)
+ - Alias: [Flèche acide](hd_spells_fleche_acide.md)
@@ -21707,7 +21707,7 @@ SubItems:
- - MDR: [Réparation](hd_spells_reparation.md)
+ - Alias: [Réparation](hd_spells_reparation.md)
@@ -21796,7 +21796,7 @@ SubItems:
- - MDR: [Message](hd_spells_message.md)
+ - Alias: [Message](hd_spells_message.md)
@@ -21891,7 +21891,7 @@ SubItems:
- - MDR: [Nuée de météores](hd_spells_nuee_de_meteores.md)
+ - Alias: [Nuée de météores](hd_spells_nuee_de_meteores.md)
@@ -21986,7 +21986,7 @@ SubItems:
- - MDR: [Esprit impénétrable](hd_spells_esprit_impenetrable.md)
+ - Alias: [Esprit impénétrable](hd_spells_esprit_impenetrable.md)
@@ -22075,7 +22075,7 @@ SubItems:
- - MDR: [Illusion mineure](hd_spells_illusion_mineure.md)
+ - Alias: [Illusion mineure](hd_spells_illusion_mineure.md)
@@ -22182,7 +22182,7 @@ SubItems:
- - MDR: [Mirage](hd_spells_mirage.md)
+ - Alias: [Mirage](hd_spells_mirage.md)
@@ -22289,7 +22289,7 @@ SubItems:
- - MDR: [Image miroir](hd_spells_image_miroir.md)
+ - Alias: [Image miroir](hd_spells_image_miroir.md)
@@ -22402,7 +22402,7 @@ SubItems:
- - MDR: [Tromperie](hd_spells_tromperie.md)
+ - Alias: [Tromperie](hd_spells_tromperie.md)
@@ -22503,7 +22503,7 @@ SubItems:
- - MDR: [Pas brumeux](hd_spells_pas_brumeux.md)
+ - Alias: [Pas brumeux](hd_spells_pas_brumeux.md)
@@ -22592,7 +22592,7 @@ SubItems:
- - MDR: [Modification de mémoire](hd_spells_modification_de_memoire.md)
+ - Alias: [Modification de mémoire](hd_spells_modification_de_memoire.md)
@@ -22711,7 +22711,7 @@ SubItems:
- - MDR: [Rayon de lune](hd_spells_rayon_de_lune.md)
+ - Alias: [Rayon de lune](hd_spells_rayon_de_lune.md)
@@ -22824,7 +22824,7 @@ SubItems:
- - MDR: [Chien de garde](hd_spells_chien_de_garde.md)
+ - Alias: [Chien de garde](hd_spells_chien_de_garde.md)
@@ -22925,7 +22925,7 @@ SubItems:
- - MDR: [Manoir somptueux](hd_spells_manoir_somptueux.md)
+ - Alias: [Manoir somptueux](hd_spells_manoir_somptueux.md)
@@ -23026,7 +23026,7 @@ SubItems:
- - MDR: [Sanctuaire privé](hd_spells_sanctuaire_prive.md)
+ - Alias: [Sanctuaire privé](hd_spells_sanctuaire_prive.md)
@@ -23169,7 +23169,7 @@ SubItems:
- - MDR: [Épée magique](hd_spells_epee_magique.md)
+ - Alias: [Épée magique](hd_spells_epee_magique.md)
@@ -23264,7 +23264,7 @@ SubItems:
- - MDR: [Déplacer la terre](hd_spells_deplacer_la_terre.md)
+ - Alias: [Déplacer la terre](hd_spells_deplacer_la_terre.md)
@@ -23377,7 +23377,7 @@ SubItems:
- - MDR: [Non-détection](hd_spells_non_detection.md)
+ - Alias: [Non-détection](hd_spells_non_detection.md)
@@ -23466,7 +23466,7 @@ SubItems:
- - MDR: [Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)
+ - Alias: [Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)
@@ -23573,7 +23573,7 @@ SubItems:
- - MDR: [Sphère glacée](hd_spells_sphere_glacee.md)
+ - Alias: [Sphère glacée](hd_spells_sphere_glacee.md)
@@ -23680,7 +23680,7 @@ SubItems:
- - MDR: [Sphère résiliente](hd_spells_sphere_resiliente.md)
+ - Alias: [Sphère résiliente](hd_spells_sphere_resiliente.md)
@@ -23787,7 +23787,7 @@ SubItems:
- - MDR: [Danse irrésistible](hd_spells_danse_irresistible.md)
+ - Alias: [Danse irrésistible](hd_spells_danse_irresistible.md)
@@ -23882,7 +23882,7 @@ SubItems:
- - MDR: [Passage sans trace](hd_spells_passage_sans_trace.md)
+ - Alias: [Passage sans trace](hd_spells_passage_sans_trace.md)
@@ -23971,7 +23971,7 @@ SubItems:
- - MDR: [Passe-muraille](hd_spells_passe_muraille.md)
+ - Alias: [Passe-muraille](hd_spells_passe_muraille.md)
@@ -24066,7 +24066,7 @@ SubItems:
- - MDR: [Assassin imaginaire](hd_spells_assassin_imaginaire.md)
+ - Alias: [Assassin imaginaire](hd_spells_assassin_imaginaire.md)
@@ -24162,7 +24162,7 @@ SubItems:
- - MDR: [Monture fantôme](hd_spells_monture_fantome.md)
+ - Alias: [Monture fantôme](hd_spells_monture_fantome.md)
@@ -24259,7 +24259,7 @@ SubItems:
- - MDR: [Allié planaire](hd_spells_allie_planaire.md)
+ - Alias: [Allié planaire](hd_spells_allie_planaire.md)
@@ -24384,7 +24384,7 @@ SubItems:
- - MDR: [Entrave planaire](hd_spells_entrave_planaire.md)
+ - Alias: [Entrave planaire](hd_spells_entrave_planaire.md)
@@ -24485,7 +24485,7 @@ SubItems:
- - MDR: [Changement de plan](hd_spells_changement_de_plan.md)
+ - Alias: [Changement de plan](hd_spells_changement_de_plan.md)
@@ -24586,7 +24586,7 @@ SubItems:
- - MDR: [Croissance végétale](hd_spells_croissance_vegetale.md)
+ - Alias: [Croissance végétale](hd_spells_croissance_vegetale.md)
@@ -24693,7 +24693,7 @@ SubItems:
- - MDR: [Bouffée de poison](hd_spells_bouffee_de_poison.md)
+ - Alias: [Bouffée de poison](hd_spells_bouffee_de_poison.md)
@@ -24788,7 +24788,7 @@ SubItems:
- - MDR: [Métamorphose](hd_spells_metamorphose.md)
+ - Alias: [Métamorphose](hd_spells_metamorphose.md)
@@ -24901,7 +24901,7 @@ SubItems:
- - MDR: [Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)
+ - Alias: [Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)
@@ -24990,7 +24990,7 @@ SubItems:
- - MDR: [Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)
+ - Alias: [Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)
@@ -25085,7 +25085,7 @@ SubItems:
- - MDR: [Prière de soins](hd_spells_priere_de_soins.md)
+ - Alias: [Prière de soins](hd_spells_priere_de_soins.md)
@@ -25180,7 +25180,7 @@ SubItems:
- - MDR: [Prestidigitation](hd_spells_prestidigitation.md)
+ - Alias: [Prestidigitation](hd_spells_prestidigitation.md)
@@ -25311,7 +25311,7 @@ SubItems:
- - MDR: [Embruns prismatiques](hd_spells_embruns_prismatiques.md)
+ - Alias: [Embruns prismatiques](hd_spells_embruns_prismatiques.md)
@@ -25448,7 +25448,7 @@ SubItems:
- - MDR: [Mur prismatique](hd_spells_mur_prismatique.md)
+ - Alias: [Mur prismatique](hd_spells_mur_prismatique.md)
@@ -25603,7 +25603,7 @@ SubItems:
- - MDR: [Produire une flamme](hd_spells_produire_une_flamme.md)
+ - Alias: [Produire une flamme](hd_spells_produire_une_flamme.md)
@@ -25704,7 +25704,7 @@ SubItems:
- - MDR: [Illusion programmée](hd_spells_illusion_programmee.md)
+ - Alias: [Illusion programmée](hd_spells_illusion_programmee.md)
@@ -25811,7 +25811,7 @@ SubItems:
- - MDR: [Image projetée](hd_spells_image_projetee.md)
+ - Alias: [Image projetée](hd_spells_image_projetee.md)
@@ -25918,7 +25918,7 @@ SubItems:
- - MDR: [Protection contre les énergies](hd_spells_protection_contre_les_energies.md)
+ - Alias: [Protection contre les énergies](hd_spells_protection_contre_les_energies.md)
@@ -26007,7 +26007,7 @@ SubItems:
- - MDR: [Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)
+ - Alias: [Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)
@@ -26102,7 +26102,7 @@ SubItems:
- - MDR: [Protection contre le poison](hd_spells_protection_contre_le_poison.md)
+ - Alias: [Protection contre le poison](hd_spells_protection_contre_le_poison.md)
@@ -26198,7 +26198,7 @@ SubItems:
- - MDR: [Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)
+ - Alias: [Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)
@@ -26289,7 +26289,7 @@ SubItems:
- - MDR: [Rappel à la vie](hd_spells_rappel_a_la_vie.md)
+ - Alias: [Rappel à la vie](hd_spells_rappel_a_la_vie.md)
@@ -26397,7 +26397,7 @@ SubItems:
- - MDR: [Lien télépathique](hd_spells_lien_telepathique.md)
+ - Alias: [Lien télépathique](hd_spells_lien_telepathique.md)
@@ -26494,7 +26494,7 @@ SubItems:
- - MDR: [Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)
+ - Alias: [Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)
@@ -26589,7 +26589,7 @@ SubItems:
- - MDR: [Rayon de givre](hd_spells_rayon_de_givre.md)
+ - Alias: [Rayon de givre](hd_spells_rayon_de_givre.md)
@@ -26684,7 +26684,7 @@ SubItems:
- - MDR: [Régénération](hd_spells_regeneration.md)
+ - Alias: [Régénération](hd_spells_regeneration.md)
@@ -26779,7 +26779,7 @@ SubItems:
- - MDR: [Réincarnation](hd_spells_reincarnation.md)
+ - Alias: [Réincarnation](hd_spells_reincarnation.md)
@@ -26952,7 +26952,7 @@ SubItems:
- - MDR: [Lever une malédiction](hd_spells_lever_une_malediction.md)
+ - Alias: [Lever une malédiction](hd_spells_lever_une_malediction.md)
@@ -27041,7 +27041,7 @@ SubItems:
- - MDR: [Résistance](hd_spells_resistance.md)
+ - Alias: [Résistance](hd_spells_resistance.md)
@@ -27130,7 +27130,7 @@ SubItems:
- - MDR: [Résurrection](hd_spells_resurrection.md)
+ - Alias: [Résurrection](hd_spells_resurrection.md)
@@ -27243,7 +27243,7 @@ SubItems:
- - MDR: [Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)
+ - Alias: [Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)
@@ -27344,7 +27344,7 @@ SubItems:
- - MDR: [Revigorer](hd_spells_revigorer.md)
+ - Alias: [Revigorer](hd_spells_revigorer.md)
@@ -27433,7 +27433,7 @@ SubItems:
- - MDR: [Corde enchantée](hd_spells_corde_enchantee.md)
+ - Alias: [Corde enchantée](hd_spells_corde_enchantee.md)
@@ -27540,7 +27540,7 @@ SubItems:
- - MDR: [Flamme sacrée](hd_spells_flamme_sacree.md)
+ - Alias: [Flamme sacrée](hd_spells_flamme_sacree.md)
@@ -27635,7 +27635,7 @@ SubItems:
- - MDR: [Sanctuaire](hd_spells_sanctuaire.md)
+ - Alias: [Sanctuaire](hd_spells_sanctuaire.md)
@@ -27730,7 +27730,7 @@ SubItems:
- - MDR: [Rayon ardent](hd_spells_rayon_ardent.md)
+ - Alias: [Rayon ardent](hd_spells_rayon_ardent.md)
@@ -27831,7 +27831,7 @@ SubItems:
- - MDR: [Scrutation](hd_spells_scrutation.md)
+ - Alias: [Scrutation](hd_spells_scrutation.md)
@@ -27970,7 +27970,7 @@ SubItems:
- - MDR: [Voir l'invisible](hd_spells_voir_linvisible.md)
+ - Alias: [Voir l'invisible](hd_spells_voir_linvisible.md)
@@ -28059,7 +28059,7 @@ SubItems:
- - MDR: [Apparence trompeuse](hd_spells_apparence_trompeuse.md)
+ - Alias: [Apparence trompeuse](hd_spells_apparence_trompeuse.md)
@@ -28166,7 +28166,7 @@ SubItems:
- - MDR: [Envoi de message](hd_spells_envoi_de_message.md)
+ - Alias: [Envoi de message](hd_spells_envoi_de_message.md)
@@ -28261,7 +28261,7 @@ SubItems:
- - MDR: [Séquestration](hd_spells_sequestration.md)
+ - Alias: [Séquestration](hd_spells_sequestration.md)
@@ -28362,7 +28362,7 @@ SubItems:
- - MDR: [Changement de forme](hd_spells_changement_de_forme.md)
+ - Alias: [Changement de forme](hd_spells_changement_de_forme.md)
@@ -28481,7 +28481,7 @@ SubItems:
- - MDR: [Briser](hd_spells_briser.md)
+ - Alias: [Briser](hd_spells_briser.md)
@@ -28582,7 +28582,7 @@ SubItems:
- - MDR: [Bouclier](hd_spells_bouclier.md)
+ - Alias: [Bouclier](hd_spells_bouclier.md)
@@ -28671,7 +28671,7 @@ SubItems:
- - MDR: [Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)
+ - Alias: [Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)
@@ -28760,7 +28760,7 @@ SubItems:
- - MDR: [Gourdin magique](hd_spells_gourdin_magique.md)
+ - Alias: [Gourdin magique](hd_spells_gourdin_magique.md)
@@ -28849,7 +28849,7 @@ SubItems:
- - MDR: [Poigne électrique](hd_spells_poigne_electrique.md)
+ - Alias: [Poigne électrique](hd_spells_poigne_electrique.md)
@@ -28945,7 +28945,7 @@ SubItems:
- - MDR: [Silence](hd_spells_silence.md)
+ - Alias: [Silence](hd_spells_silence.md)
@@ -29042,7 +29042,7 @@ SubItems:
- - MDR: [Image silencieuse](hd_spells_image_silencieuse.md)
+ - Alias: [Image silencieuse](hd_spells_image_silencieuse.md)
@@ -29143,7 +29143,7 @@ SubItems:
- - MDR: [Simulacre](hd_spells_simulacre.md)
+ - Alias: [Simulacre](hd_spells_simulacre.md)
@@ -29250,7 +29250,7 @@ SubItems:
- - MDR: [Sommeil](hd_spells_sommeil.md)
+ - Alias: [Sommeil](hd_spells_sommeil.md)
@@ -29357,7 +29357,7 @@ SubItems:
- - MDR: [Tempête de neige](hd_spells_tempete_de_neige.md)
+ - Alias: [Tempête de neige](hd_spells_tempete_de_neige.md)
@@ -29458,7 +29458,7 @@ SubItems:
- - MDR: [Lenteur](hd_spells_lenteur.md)
+ - Alias: [Lenteur](hd_spells_lenteur.md)
@@ -29565,7 +29565,7 @@ SubItems:
- - MDR: [Épargner les mourants](hd_spells_epargner_les_mourants.md)
+ - Alias: [Épargner les mourants](hd_spells_epargner_les_mourants.md)
@@ -29655,7 +29655,7 @@ SubItems:
- - MDR: [Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)
+ - Alias: [Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)
@@ -29746,7 +29746,7 @@ SubItems:
- - MDR: [Communication avec les morts](hd_spells_communication_avec_les_morts.md)
+ - Alias: [Communication avec les morts](hd_spells_communication_avec_les_morts.md)
@@ -29841,7 +29841,7 @@ SubItems:
- - MDR: [Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)
+ - Alias: [Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)
@@ -29954,7 +29954,7 @@ SubItems:
- - MDR: [Pattes d'araignée](hd_spells_pattes_daraignee.md)
+ - Alias: [Pattes d'araignée](hd_spells_pattes_daraignee.md)
@@ -30043,7 +30043,7 @@ SubItems:
- - MDR: [Croissance d'épines](hd_spells_croissance_depines.md)
+ - Alias: [Croissance d'épines](hd_spells_croissance_depines.md)
@@ -30138,7 +30138,7 @@ SubItems:
- - MDR: [Esprits gardiens](hd_spells_esprits_gardiens.md)
+ - Alias: [Esprits gardiens](hd_spells_esprits_gardiens.md)
@@ -30239,7 +30239,7 @@ SubItems:
- - MDR: [Arme spirituelle](hd_spells_arme_spirituelle.md)
+ - Alias: [Arme spirituelle](hd_spells_arme_spirituelle.md)
@@ -30346,7 +30346,7 @@ SubItems:
- - MDR: [Nuage puant](hd_spells_nuage_puant.md)
+ - Alias: [Nuage puant](hd_spells_nuage_puant.md)
@@ -30447,7 +30447,7 @@ SubItems:
- - MDR: [Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)
+ - Alias: [Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)
@@ -30536,7 +30536,7 @@ SubItems:
- - MDR: [Peau de pierre](hd_spells_peau_de_pierre.md)
+ - Alias: [Peau de pierre](hd_spells_peau_de_pierre.md)
@@ -30625,7 +30625,7 @@ SubItems:
- - MDR: [Tempête vengeresse](hd_spells_tempete_vengeresse.md)
+ - Alias: [Tempête vengeresse](hd_spells_tempete_vengeresse.md)
@@ -30744,7 +30744,7 @@ SubItems:
- - MDR: [Suggestion](hd_spells_suggestion.md)
+ - Alias: [Suggestion](hd_spells_suggestion.md)
@@ -30851,7 +30851,7 @@ SubItems:
- - MDR: [Rayon de soleil](hd_spells_rayon_de_soleil.md)
+ - Alias: [Rayon de soleil](hd_spells_rayon_de_soleil.md)
@@ -30952,7 +30952,7 @@ SubItems:
- - MDR: [Éclat du soleil](hd_spells_eclat_du_soleil.md)
+ - Alias: [Éclat du soleil](hd_spells_eclat_du_soleil.md)
@@ -31053,7 +31053,7 @@ SubItems:
- - MDR: [Symbole](hd_spells_symbole.md)
+ - Alias: [Symbole](hd_spells_symbole.md)
@@ -31214,7 +31214,7 @@ SubItems:
- - MDR: [Fou rire](hd_spells_fou_rire.md)
+ - Alias: [Fou rire](hd_spells_fou_rire.md)
@@ -31309,7 +31309,7 @@ SubItems:
- - MDR: [Télékinésie](hd_spells_telekinesie.md)
+ - Alias: [Télékinésie](hd_spells_telekinesie.md)
@@ -31416,7 +31416,7 @@ SubItems:
- - MDR: [Téléportation](hd_spells_teleportation.md)
+ - Alias: [Téléportation](hd_spells_teleportation.md)
@@ -31615,7 +31615,7 @@ SubItems:
- - MDR: [Cercle de téléportation](hd_spells_cercle_de_teleportation.md)
+ - Alias: [Cercle de téléportation](hd_spells_cercle_de_teleportation.md)
@@ -31717,7 +31717,7 @@ SubItems:
- - MDR: [Disque flottant](hd_spells_disque_flottant.md)
+ - Alias: [Disque flottant](hd_spells_disque_flottant.md)
@@ -31820,7 +31820,7 @@ SubItems:
- - MDR: [Thaumaturgie](hd_spells_thaumaturgie.md)
+ - Alias: [Thaumaturgie](hd_spells_thaumaturgie.md)
@@ -31951,7 +31951,7 @@ SubItems:
- - MDR: [Vague tonnante](hd_spells_vague_tonnante.md)
+ - Alias: [Vague tonnante](hd_spells_vague_tonnante.md)
@@ -32052,7 +32052,7 @@ SubItems:
- - MDR: [Arrêt du temps](hd_spells_arret_du_temps.md)
+ - Alias: [Arrêt du temps](hd_spells_arret_du_temps.md)
@@ -32147,7 +32147,7 @@ SubItems:
- - MDR: [Langues](hd_spells_langues.md)
+ - Alias: [Langues](hd_spells_langues.md)
@@ -32236,7 +32236,7 @@ SubItems:
- - MDR: [Transport végétal](hd_spells_transport_vegetal.md)
+ - Alias: [Transport végétal](hd_spells_transport_vegetal.md)
@@ -32325,7 +32325,7 @@ SubItems:
- - MDR: [Passage par les arbres](hd_spells_passage_par_les_arbres.md)
+ - Alias: [Passage par les arbres](hd_spells_passage_par_les_arbres.md)
@@ -32420,7 +32420,7 @@ SubItems:
- - MDR: [Métamorphose suprême](hd_spells_metamorphose_supreme.md)
+ - Alias: [Métamorphose suprême](hd_spells_metamorphose_supreme.md)
@@ -32557,7 +32557,7 @@ SubItems:
- - MDR: [Résurrection suprême](hd_spells_resurrection_supreme.md)
+ - Alias: [Résurrection suprême](hd_spells_resurrection_supreme.md)
@@ -32658,7 +32658,7 @@ SubItems:
- - MDR: [Vision suprême](hd_spells_vision_supreme.md)
+ - Alias: [Vision suprême](hd_spells_vision_supreme.md)
@@ -32747,7 +32747,7 @@ SubItems:
- - MDR: [Viser juste](hd_spells_viser_juste.md)
+ - Alias: [Viser juste](hd_spells_viser_juste.md)
@@ -32837,7 +32837,7 @@ SubItems:
- - MDR: [Serviteur invisible](hd_spells_serviteur_invisible.md)
+ - Alias: [Serviteur invisible](hd_spells_serviteur_invisible.md)
@@ -32940,7 +32940,7 @@ SubItems:
- - MDR: [Caresse du vampire](hd_spells_caresse_du_vampire.md)
+ - Alias: [Caresse du vampire](hd_spells_caresse_du_vampire.md)
@@ -33035,7 +33035,7 @@ SubItems:
- - MDR: [Moquerie cruelle](hd_spells_moquerie_cruelle.md)
+ - Alias: [Moquerie cruelle](hd_spells_moquerie_cruelle.md)
@@ -33130,7 +33130,7 @@ SubItems:
- - MDR: [Mur de feu](hd_spells_mur_de_feu.md)
+ - Alias: [Mur de feu](hd_spells_mur_de_feu.md)
@@ -33243,7 +33243,7 @@ SubItems:
- - MDR: [Mur de force](hd_spells_mur_de_force.md)
+ - Alias: [Mur de force](hd_spells_mur_de_force.md)
@@ -33338,7 +33338,7 @@ SubItems:
- - MDR: [Mur de glace](hd_spells_mur_de_glace.md)
+ - Alias: [Mur de glace](hd_spells_mur_de_glace.md)
@@ -33445,7 +33445,7 @@ SubItems:
- - MDR: [Mur de pierre](hd_spells_mur_de_pierre.md)
+ - Alias: [Mur de pierre](hd_spells_mur_de_pierre.md)
@@ -33564,7 +33564,7 @@ SubItems:
- - MDR: [Mur d'épines](hd_spells_mur_depines.md)
+ - Alias: [Mur d'épines](hd_spells_mur_depines.md)
@@ -33671,7 +33671,7 @@ SubItems:
- - MDR: [Lien de protection](hd_spells_lien_de_protection.md)
+ - Alias: [Lien de protection](hd_spells_lien_de_protection.md)
@@ -33767,7 +33767,7 @@ SubItems:
- - MDR: [Respiration aquatique](hd_spells_respiration_aquatique.md)
+ - Alias: [Respiration aquatique](hd_spells_respiration_aquatique.md)
@@ -33859,7 +33859,7 @@ SubItems:
- - MDR: [Marche sur l'eau](hd_spells_marche_sur_leau.md)
+ - Alias: [Marche sur l'eau](hd_spells_marche_sur_leau.md)
@@ -33956,7 +33956,7 @@ SubItems:
- - MDR: [Toile d'araignée](hd_spells_toile_daraignee.md)
+ - Alias: [Toile d'araignée](hd_spells_toile_daraignee.md)
@@ -34069,7 +34069,7 @@ SubItems:
- - MDR: [Étrangeté](hd_spells_etrangete.md)
+ - Alias: [Étrangeté](hd_spells_etrangete.md)
@@ -34158,7 +34158,7 @@ SubItems:
- - MDR: [Marche sur le vent](hd_spells_marche_sur_le_vent.md)
+ - Alias: [Marche sur le vent](hd_spells_marche_sur_le_vent.md)
@@ -34253,7 +34253,7 @@ SubItems:
- - MDR: [Mur de vent](hd_spells_mur_de_vent.md)
+ - Alias: [Mur de vent](hd_spells_mur_de_vent.md)
@@ -34354,7 +34354,7 @@ SubItems:
- - MDR: [Souhait](hd_spells_souhait.md)
+ - Alias: [Souhait](hd_spells_souhait.md)
@@ -34497,7 +34497,7 @@ SubItems:
- - MDR: [Mot de retour](hd_spells_mot_de_retour.md)
+ - Alias: [Mot de retour](hd_spells_mot_de_retour.md)
@@ -34592,7 +34592,7 @@ SubItems:
- - MDR: [Zone de vérité](hd_spells_zone_de_verite.md)
+ - Alias: [Zone de vérité](hd_spells_zone_de_verite.md)
@@ -34692,7 +34692,7 @@ AttributesDictionary: >+
- - MDR: [Sorts](hd_spells.md)
+ - Alias: [Sorts](hd_spells.md)
@@ -34707,7 +34707,7 @@ AttributesDictionary: >+
# Acid Splash
-- MDR: [Aspersion acide](hd_spells_aspersion_acide.md)
+- Alias: [Aspersion acide](hd_spells_aspersion_acide.md)
- Source: (SRD p114)
- Conjuration cantrip
- **Casting Time :** 1 action
@@ -35076,7 +35076,7 @@ This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level
# Aid
-- MDR: [Aide](hd_spells_aide.md)
+- Alias: [Aide](hd_spells_aide.md)
- Source: (SRD p114)
- 2nd-level abjuration
- **Casting Time :** 1 action
@@ -35097,7 +35097,7 @@ Your spell bolsters your allies with toughness and resolve. Choose up to three c
# Alarm
-- MDR: [Alarme](hd_spells_alarme.md)
+- Alias: [Alarme](hd_spells_alarme.md)
- Source: (SRD p114)
- 1st-level abjuration (ritual)
- **Casting Time :** 1 minute
@@ -35118,7 +35118,7 @@ A mental alarm alerts you with a ping in your mind if you are within 1 mile of t
# Alter Self
-- MDR: [Modifier son apparence](hd_spells_modifier_son_apparence.md)
+- Alias: [Modifier son apparence](hd_spells_modifier_son_apparence.md)
- Source: (SRD p114)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -35143,7 +35143,7 @@ You assume a different form. When you cast the spell, choose one of the followin
# Animal Friendship
-- MDR: [Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)
+- Alias: [Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)
- Source: (SRD p115)
- 1st-level enchantment
- **Casting Time :** 1 action
@@ -35164,7 +35164,7 @@ This spell lets you convince a beast that you mean it no harm. Choose a beast th
# Animal Messenger
-- MDR: [Messager animal](hd_spells_messager_animal.md)
+- Alias: [Messager animal](hd_spells_messager_animal.md)
- Source: (SRD p115)
- 2nd-level enchantment (ritual)
- **Casting Time :** 1 action
@@ -35187,7 +35187,7 @@ When the messenger arrives, it delivers your message to the creature that you de
# Animal Shapes
-- MDR: [Formes animales](hd_spells_formes_animales.md)
+- Alias: [Formes animales](hd_spells_formes_animales.md)
- Source: (SRD p115)
- 8th-level transmutation
- **Casting Time :** 1 action
@@ -35210,7 +35210,7 @@ The target's gear melds into the new form. The target can't activate, wield, or
# Animate Dead
-- MDR: [Animation des morts](hd_spells_animation_des_morts.md)
+- Alias: [Animation des morts](hd_spells_animation_des_morts.md)
- Source: (SRD p115)
- 3th-level necromancy
- **Casting Time :** 1 minute
@@ -35235,7 +35235,7 @@ The creature is under your control for 24 hours, after which it stops obeying an
# Animate Objects
-- MDR: [Animation des objets](hd_spells_animation_des_objets.md)
+- Alias: [Animation des objets](hd_spells_animation_des_objets.md)
- Source: (SRD p116)
- 5th-level transmutation
- **Casting Time :** 1 action
@@ -35270,7 +35270,7 @@ If you command an object to attack, it can make a single melee attack against a
# Antilife Shell
-- MDR: [Coquille antivie](hd_spells_coquille_antivie.md)
+- Alias: [Coquille antivie](hd_spells_coquille_antivie.md)
- Source: (SRD p116)
- 5th-level abjuration
- **Casting Time :** 1 action
@@ -35293,7 +35293,7 @@ If you move so that an affected creature is forced to pass through the barrier,
# Antimagic Field
-- MDR: [Champ antimagie](hd_spells_champ_antimagie.md)
+- Alias: [Champ antimagie](hd_spells_champ_antimagie.md)
- Source: (SRD p117)
- 8th-level abjuration
- **Casting Time :** 1 action
@@ -35330,7 +35330,7 @@ A magic weapon's properties and powers are suppressed if it is used against a ta
# Antipathy/Sympathy
-- MDR: [Répulsion/attirance](hd_spells_repulsionattirance.md)
+- Alias: [Répulsion/attirance](hd_spells_repulsionattirance.md)
- Source: (SRD p117)
- 8th-level enchantment
- **Casting Time :** 1 hour
@@ -35359,7 +35359,7 @@ A creature that successfully saves against this effect is immune to it for 1 min
# Arcane Eye
-- MDR: [Oeil magique](hd_spells_oeil_magique.md)
+- Alias: [Oeil magique](hd_spells_oeil_magique.md)
- Source: (SRD p118)
- 4th-level divination
- **Casting Time :** 1 action
@@ -35382,7 +35382,7 @@ As an action, you can move the eye up to 30 feet in any direction. There is no l
# Arcane Lock
-- MDR: [Verrou magique](hd_spells_verrou_magique.md)
+- Alias: [Verrou magique](hd_spells_verrou_magique.md)
- Source: (SRD p118)
- 2nd-level abjuration
- **Casting Time :** 1 action
@@ -35403,7 +35403,7 @@ While affected by this spell, the object is more difficult to break or force ope
# Astral Projection
-- MDR: [Projection astrale](hd_spells_projection_astrale.md)
+- Alias: [Projection astrale](hd_spells_projection_astrale.md)
- Source: (SRD p119)
- 9th-level necromancy
- **Casting Time :** 1 hour
@@ -35432,7 +35432,7 @@ If you are returned to your body prematurely, your companions remain in their as
# Augury
-- MDR: [Augure](hd_spells_augure.md)
+- Alias: [Augure](hd_spells_augure.md)
- Source: (SRD p120)
- 2nd-level divination (ritual)
- **Casting Time :** 1 minute
@@ -35463,7 +35463,7 @@ If you cast the spell two or more times before completing your next long rest, t
# Awaken
-- MDR: [Éveil](hd_spells_eveil.md)
+- Alias: [Éveil](hd_spells_eveil.md)
- Source: (SRD p120)
- 5th-level transmutation
- **Casting Time :** 8 hours
@@ -35484,7 +35484,7 @@ The awakened beast or plant is charmed by you for 30 days or until you or your c
# Bane
-- MDR: [Fléau](hd_spells_fleau.md)
+- Alias: [Fléau](hd_spells_fleau.md)
- Source: (SRD p120)
- 1st-level enchantment
- **Casting Time :** 1 action
@@ -35505,7 +35505,7 @@ Up to three creatures of your choice that you can see within range must make Cha
# Banishment
-- MDR: [Bannissement](hd_spells_bannissement.md)
+- Alias: [Bannissement](hd_spells_bannissement.md)
- Source: (SRD p120)
- 4th-level abjuration
- **Casting Time :** 1 action
@@ -35530,7 +35530,7 @@ If the target is native to a different plane of existence than the one you're on
# Barkskin
-- MDR: [Peau d'écorce](hd_spells_peau_decorce.md)
+- Alias: [Peau d'écorce](hd_spells_peau_decorce.md)
- Source: (SRD p121)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -35549,7 +35549,7 @@ You touch a willing creature. Until the spell ends, the target's skin has a roug
# Beacon of Hope
-- MDR: [Lueur d'espoir](hd_spells_lueur_despoir.md)
+- Alias: [Lueur d'espoir](hd_spells_lueur_despoir.md)
- Source: (SRD p121)
- 3th-level abjuration
- **Casting Time :** 1 action
@@ -35568,7 +35568,7 @@ This spell bestows hope and vitality. Choose any number of creatures within rang
# Bestow curse
-- MDR: [Jeter une malédiction](hd_spells_jeter_une_malediction.md)
+- Alias: [Jeter une malédiction](hd_spells_jeter_une_malediction.md)
- Source: (SRD p121)
- 3th-level necromancy
- **Casting Time :** 1 action
@@ -35599,7 +35599,7 @@ A _[remove curse](spells_vo.hd#remove-curse)_ spell ends this effect. At the DM'
# Arcane Hand
-- MDR: [Main magique](hd_spells_main_magique.md)
+- Alias: [Main magique](hd_spells_main_magique.md)
- Source: (SRD p118)
- 5th-level evocation
- **Casting Time :** 1 action
@@ -35632,7 +35632,7 @@ When you cast the spell and as a bonus action on your subsequent turns, you can
# Blade Barrier
-- MDR: [Barrière de lames](hd_spells_barriere_de_lames.md)
+- Alias: [Barrière de lames](hd_spells_barriere_de_lames.md)
- Source: (SRD p122)
- 6th-level evocation
- **Casting Time :** 1 action
@@ -35653,7 +35653,7 @@ When a creature enters the wall's area for the first time on a turn or starts it
# Bless
-- MDR: [Bénédiction](hd_spells_benediction.md)
+- Alias: [Bénédiction](hd_spells_benediction.md)
- Source: (SRD p122)
- 1st-level enchantment
- **Casting Time :** 1 action
@@ -35674,7 +35674,7 @@ You bless up to three creatures of your choice within range. Whenever a target m
# Blight
-- MDR: [Flétrissement](hd_spells_fletrissement.md)
+- Alias: [Flétrissement](hd_spells_fletrissement.md)
- Source: (SRD p122)
- 4th-level necromancy
- **Casting Time :** 1 action
@@ -35697,7 +35697,7 @@ If you target a nonmagical plant that isn't a creature, such as a tree or shrub,
# Blindness/Deafness
-- MDR: [Cécité/Surdité](hd_spells_cecitesurdite.md)
+- Alias: [Cécité/Surdité](hd_spells_cecitesurdite.md)
- Source: (SRD p122)
- 2nd-level necromancy
- **Casting Time :** 1 action
@@ -35718,7 +35718,7 @@ You can blind or deafen a foe. Choose one creature that you can see within range
# Blink
-- MDR: [Clignotement](hd_spells_clignotement.md)
+- Alias: [Clignotement](hd_spells_clignotement.md)
- Source: (SRD p122)
- 3th-level transmutation
- **Casting Time :** 1 action
@@ -35739,7 +35739,7 @@ While on the Ethereal Plane, you can see and hear the plane you originated from,
# Blur
-- MDR: [Flou](hd_spells_flou.md)
+- Alias: [Flou](hd_spells_flou.md)
- Source: (SRD p123)
- 2nd-level illusion
- **Casting Time :** 1 action
@@ -35758,7 +35758,7 @@ Your body becomes blurred, shifting and wavering to all who can see you. For the
# Branding Smite
-- MDR: [Frappe lumineuse](hd_spells_frappe_lumineuse.md)
+- Alias: [Frappe lumineuse](hd_spells_frappe_lumineuse.md)
- Source: (SRD p123)
- 2nd-level evocation
- **Casting Time :** 1 bonus action
@@ -35779,7 +35779,7 @@ The next time you hit a creature with a weapon attack before this spell ends, th
# Burning Hands
-- MDR: [Mains brûlantes](hd_spells_mains_brulantes.md)
+- Alias: [Mains brûlantes](hd_spells_mains_brulantes.md)
- Source: (SRD p123)
- 1st-level evocation
- **Casting Time :** 1 action
@@ -35802,7 +35802,7 @@ The fire ignites any flammable objects in the area that aren't being worn or car
# Call Lightning
-- MDR: [Appel de la foudre](hd_spells_appel_de_la_foudre.md)
+- Alias: [Appel de la foudre](hd_spells_appel_de_la_foudre.md)
- Source: (SRD p123)
- 3th-level conjuration
- **Casting Time :** 1 action
@@ -35827,7 +35827,7 @@ If you are outdoors in stormy conditions when you cast this spell, the spell giv
# Calm Emotions
-- MDR: [Apaisement des émotions](hd_spells_apaisement_des_emotions.md)
+- Alias: [Apaisement des émotions](hd_spells_apaisement_des_emotions.md)
- Source: (SRD p123)
- 2nd-level enchantment
- **Casting Time :** 1 action
@@ -35850,7 +35850,7 @@ You attempt to suppress strong emotions in a group of people. Each humanoid in a
# Chain Lightning
-- MDR: [Chaîne d'éclairs](hd_spells_chaine_declairs.md)
+- Alias: [Chaîne d'éclairs](hd_spells_chaine_declairs.md)
- Source: (SRD p124)
- 6th-level evocation
- **Casting Time :** 1 action
@@ -35873,7 +35873,7 @@ A target must make a Dexterity saving throw. The target takes 10d8 lightning dam
# Charm Person
-- MDR: [Charme-personne](hd_spells_charme_personne.md)
+- Alias: [Charme-personne](hd_spells_charme_personne.md)
- Source: (SRD p124)
- 1st-level enchantment
- **Casting Time :** 1 action
@@ -35894,7 +35894,7 @@ You attempt to charm a humanoid you can see within range. It must make a Wisdom
# Chill Touch
-- MDR: [Contact glacial](hd_spells_contact_glacial.md)
+- Alias: [Contact glacial](hd_spells_contact_glacial.md)
- Source: (SRD p124)
- Necromancy cantrip
- **Casting Time :** 1 action
@@ -35915,7 +35915,7 @@ This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level
# Circle of Death
-- MDR: [Cercle de mort](hd_spells_cercle_de_mort.md)
+- Alias: [Cercle de mort](hd_spells_cercle_de_mort.md)
- Source: (SRD p124)
- 6th-level necromancy
- **Casting Time :** 1 action
@@ -35936,7 +35936,7 @@ A sphere of negative energy ripples out in a 60-foot-radius sphere from a point
# Clairvoyance
-- MDR: [Clairvoyance](hd_spells_clairvoyance.md)
+- Alias: [Clairvoyance](hd_spells_clairvoyance.md)
- Source: (SRD p124)
- 3th-level divination
- **Casting Time :** 10 minutes
@@ -35959,7 +35959,7 @@ A creature that can see the sensor (such as a creature benefiting from _see invi
# Clone
-- MDR: [Clone](hd_spells_clone.md)
+- Alias: [Clone](hd_spells_clone.md)
- Source: (SRD p125)
- 8th-level necromancy
- **Casting Time :** 1 hour
@@ -35982,7 +35982,7 @@ The clone is physically identical to the original and has the same personality,
# Cloudkill
-- MDR: [Nuage mortel](hd_spells_nuage_mortel.md)
+- Alias: [Nuage mortel](hd_spells_nuage_mortel.md)
- Source: (SRD p125)
- 5th-level conjuration
- **Casting Time :** 1 action
@@ -36007,7 +36007,7 @@ The fog moves 10 feet away from you at the start of each of your turns, rolling
# Color Spray
-- MDR: [Couleurs dansantes](hd_spells_couleurs_dansantes.md)
+- Alias: [Couleurs dansantes](hd_spells_couleurs_dansantes.md)
- Source: (SRD p125)
- 1st-level illusion
- **Casting Time :** 1 action
@@ -36030,7 +36030,7 @@ Starting with the creature that has the lowest current hit points, each creature
# Command
-- MDR: [Injonction](hd_spells_injonction.md)
+- Alias: [Injonction](hd_spells_injonction.md)
- Source: (SRD p125)
- 1st-level enchantment
- **Casting Time :** 1 action
@@ -36063,7 +36063,7 @@ Some typical commands and their effects follow. You might issue a command other
# Commune
-- MDR: [Communion](hd_spells_communion.md)
+- Alias: [Communion](hd_spells_communion.md)
- Source: (SRD p126)
- 5th-level divination (ritual)
- **Casting Time :** 1 minute
@@ -36086,7 +36086,7 @@ If you cast the spell two or more times before finishing your next long rest, th
# Commune with Nature
-- MDR: [Communion avec la nature](hd_spells_communion_avec_la_nature.md)
+- Alias: [Communion avec la nature](hd_spells_communion_avec_la_nature.md)
- Source: (SRD p126)
- 5th-level divination (ritual)
- **Casting Time :** 1 minute
@@ -36119,7 +36119,7 @@ For example, you could determine the location of powerful undead in the area, th
# Comprehend Languages
-- MDR: [Compréhension des langues](hd_spells_comprehension_des_langues.md)
+- Alias: [Compréhension des langues](hd_spells_comprehension_des_langues.md)
- Source: (SRD p126)
- 1st-level divination (ritual)
- **Casting Time :** 1 action
@@ -36140,7 +36140,7 @@ This spell doesn't decode secret messages in a text or a glyph, such as an arcan
# Compulsion
-- MDR: [Compulsion](hd_spells_compulsion.md)
+- Alias: [Compulsion](hd_spells_compulsion.md)
- Source: (SRD p126)
- 4th-level enchantment
- **Casting Time :** 1 action
@@ -36161,7 +36161,7 @@ A target isn't compelled to move into an obviously deadly hazard, such as a fire
# Cone of Cold
-- MDR: [Cône de froid](hd_spells_cone_de_froid.md)
+- Alias: [Cône de froid](hd_spells_cone_de_froid.md)
- Source: (SRD p127)
- 5th-level evocation
- **Casting Time :** 1 action
@@ -36184,7 +36184,7 @@ A creature killed by this spell becomes a frozen statue until it thaws.
# Confusion
-- MDR: [Confusion](hd_spells_confusion.md)
+- Alias: [Confusion](hd_spells_confusion.md)
- Source: (SRD p127)
- 4th-level enchantment
- **Casting Time :** 1 action
@@ -36216,7 +36216,7 @@ At the end of each of its turns, an affected target can make a Wisdom saving thr
# Conjure Animals
-- MDR: [Invoquer des animaux](hd_spells_invoquer_des_animaux.md)
+- Alias: [Invoquer des animaux](hd_spells_invoquer_des_animaux.md)
- Source: (SRD p127)
- 3th-level conjuration
- **Casting Time :** 1 action
@@ -36247,7 +36247,7 @@ Each beast is also considered fey, and it disappears when it drops to 0 hit poin
# Conjure Celestial
-- MDR: [Invoquer un céleste](hd_spells_invoquer_un_celeste.md)
+- Alias: [Invoquer un céleste](hd_spells_invoquer_un_celeste.md)
- Source: (SRD p127)
- 7th-level conjuration
- **Casting Time :** 1 minute
@@ -36272,7 +36272,7 @@ The DM has the celestial's statistics.
# Conjure Elemental
-- MDR: [Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)
+- Alias: [Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)
- Source: (SRD p128)
- 5th-level conjuration
- **Casting Time :** 1 minute
@@ -36295,7 +36295,7 @@ If your concentration is broken, the elemental doesn't disappear. Instead, you l
# Conjure Fey
-- MDR: [Invoquer une fée](hd_spells_invoquer_une_fee.md)
+- Alias: [Invoquer une fée](hd_spells_invoquer_une_fee.md)
- Source: (SRD p128)
- 6th-level conjuration
- **Casting Time :** 1 minute
@@ -36322,7 +36322,7 @@ The DM has the fey creature's statistics.
# Conjure Minor Elementals
-- MDR: [Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)
+- Alias: [Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)
- Source: (SRD p128)
- 4th-level conjuration
- **Casting Time :** 1 minute
@@ -36357,7 +36357,7 @@ The DM has the creatures' statistics.
# Conjure Woodland Beings
-- MDR: [Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)
+- Alias: [Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)
- Source: (SRD p129)
- 4th-level conjuration
- **Casting Time :** 1 action
@@ -36392,7 +36392,7 @@ The DM has the creatures' statistics.
# Contact Other Plane
-- MDR: [Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)
+- Alias: [Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)
- Source: (SRD p129)
- 5th-level divination (ritual)
- **Casting Time :** 1 minute
@@ -36413,7 +36413,7 @@ On a successful save, you can ask the entity up to five questions. You must ask
# Contagion
-- MDR: [Contagion](hd_spells_contagion.md)
+- Alias: [Contagion](hd_spells_contagion.md)
- Source: (SRD p129)
- 5th-level necromancy
- **Casting Time :** 1 action
@@ -36450,7 +36450,7 @@ Since this spell induces a natural disease in its target, any effect that remove
# Contingency
-- MDR: [Contingence](hd_spells_contingence.md)
+- Alias: [Contingence](hd_spells_contingence.md)
- Source: (SRD p130)
- 6th-level evocation
- **Casting Time :** 10 minutes
@@ -36473,7 +36473,7 @@ The contingent spell takes effect only on you, even if it can normally target ot
# Continual Flame
-- MDR: [Flamme éternelle](hd_spells_flamme_eternelle.md)
+- Alias: [Flamme éternelle](hd_spells_flamme_eternelle.md)
- Source: (SRD p130)
- 2nd-level evocation
- **Casting Time :** 1 action
@@ -36492,7 +36492,7 @@ A flame, equivalent in brightness to a torch, springs forth from an object that
# Control Water
-- MDR: [Contrôle de l'eau](hd_spells_controle_de_leau.md)
+- Alias: [Contrôle de l'eau](hd_spells_controle_de_leau.md)
- Source: (SRD p130)
- 4th-level transmutation
- **Casting Time :** 1 action
@@ -36523,7 +36523,7 @@ The first time each turn that an object enters the vortex, the object takes 2d8
# Control Weather
-- MDR: [Contrôle du climat](hd_spells_controle_du_climat.md)
+- Alias: [Contrôle du climat](hd_spells_controle_du_climat.md)
- Source: (SRD p131)
- 8th-level transmutation
- **Casting Time :** 10 minutes
@@ -36575,7 +36575,7 @@ Wind
# Counterspell
-- MDR: [Contresort](hd_spells_contresort.md)
+- Alias: [Contresort](hd_spells_contresort.md)
- Source: (SRD p131)
- 3th-level abjuration
- **Casting Time :** 1 reaction, which you take when you see a creature within 60 feet of you casting a spell
@@ -36596,7 +36596,7 @@ You attempt to interrupt a creature in the process of casting a spell. If the cr
# Create Food and Water
-- MDR: [Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)
+- Alias: [Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)
- Source: (SRD p131)
- 3th-level conjuration
- **Casting Time :** 1 action
@@ -36615,7 +36615,7 @@ You create 45 pounds of food and 30 gallons of water on the ground or in contain
# Create or Destroy Water
-- MDR: [Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)
+- Alias: [Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)
- Source: (SRD p132)
- 1st-level transmutation
- **Casting Time :** 1 action
@@ -36640,7 +36640,7 @@ You either create or destroy water.
# Create Undead
-- MDR: [Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)
+- Alias: [Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)
- Source: (SRD p132)
- 6th-level necromancy
- **Casting Time :** 1 minute
@@ -36665,7 +36665,7 @@ The creature is under your control for 24 hours, after which it stops obeying an
# Creation
-- MDR: [Création](hd_spells_creation.md)
+- Alias: [Création](hd_spells_creation.md)
- Source: (SRD p132)
- 5th-level illusion
- **Casting Time :** 1 minute
@@ -36698,7 +36698,7 @@ Using any material created by this spell as another spell's material component c
# Cure Wounds
-- MDR: [Soin des blessures](hd_spells_soin_des_blessures.md)
+- Alias: [Soin des blessures](hd_spells_soin_des_blessures.md)
- Source: (SRD p132)
- 1st-level evocation
- **Casting Time :** 1 action
@@ -36719,7 +36719,7 @@ A creature you touch regains a number of hit points equal to 1d8 + your spellcas
# Dancing Lights
-- MDR: [Lumières dansantes](hd_spells_lumieres_dansantes.md)
+- Alias: [Lumières dansantes](hd_spells_lumieres_dansantes.md)
- Source: (SRD p133)
- Evocation cantrip
- **Casting Time :** 1 action
@@ -36740,7 +36740,7 @@ As a bonus action on your turn, you can move the lights up to 60 feet to a new s
# Darkness
-- MDR: [Ténèbres](hd_spells_tenebres.md)
+- Alias: [Ténèbres](hd_spells_tenebres.md)
- Source: (SRD p133)
- 2nd-level evocation
- **Casting Time :** 1 action
@@ -36763,7 +36763,7 @@ If any of this spell's area overlaps with an area of light created by a spell of
# Darkvision
-- MDR: [Vision dans le noir](hd_spells_vision_dans_le_noir.md)
+- Alias: [Vision dans le noir](hd_spells_vision_dans_le_noir.md)
- Source: (SRD p133)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -36782,7 +36782,7 @@ You touch a willing creature to grant it the ability to see in the dark. For the
# Daylight
-- MDR: [Lumière du jour](hd_spells_lumiere_du_jour.md)
+- Alias: [Lumière du jour](hd_spells_lumiere_du_jour.md)
- Source: (SRD p133)
- 3th-level evocation
- **Casting Time :** 1 action
@@ -36805,7 +36805,7 @@ If any of this spell's area overlaps with an area of darkness created by a spell
# Death Ward
-- MDR: [Protection contre la mort](hd_spells_protection_contre_la_mort.md)
+- Alias: [Protection contre la mort](hd_spells_protection_contre_la_mort.md)
- Source: (SRD p133)
- 4th-level abjuration
- **Casting Time :** 1 action
@@ -36828,7 +36828,7 @@ If the spell is still in effect when the target is subjected to an effect that w
# Delayed Blast Fireball
-- MDR: [Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)
+- Alias: [Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)
- Source: (SRD p133)
- 7th-level evocation
- **Casting Time :** 1 action
@@ -36855,7 +36855,7 @@ The fire damages objects in the area and ignites flammable objects that aren't b
# Demiplane
-- MDR: [Demi-plan](hd_spells_demi_plan.md)
+- Alias: [Demi-plan](hd_spells_demi_plan.md)
- Source: (SRD p134)
- 8th-level conjuration
- **Casting Time :** 1 action
@@ -36876,7 +36876,7 @@ Each time you cast this spell, you can create a new demiplane, or have the shado
# Detect Evil and Good
-- MDR: [Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)
+- Alias: [Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)
- Source: (SRD p134)
- 1st-level divination
- **Casting Time :** 1 action
@@ -36897,7 +36897,7 @@ The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 i
# Detect Magic
-- MDR: [Détection de la magie](hd_spells_detection_de_la_magie.md)
+- Alias: [Détection de la magie](hd_spells_detection_de_la_magie.md)
- Source: (SRD p134)
- 1st-level divination (ritual)
- **Casting Time :** 1 action
@@ -36918,7 +36918,7 @@ The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 i
# Detect Poison and Disease
-- MDR: [Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)
+- Alias: [Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)
- Source: (SRD p134)
- 1st-level divination (ritual)
- **Casting Time :** 1 action
@@ -36939,7 +36939,7 @@ The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 i
# Detect Thoughts
-- MDR: [Détection des pensées](hd_spells_detection_des_pensees.md)
+- Alias: [Détection des pensées](hd_spells_detection_des_pensees.md)
- Source: (SRD p135)
- 2nd-level divination
- **Casting Time :** 1 action
@@ -36966,7 +36966,7 @@ Once you detect the presence of a creature in this way, you can read its thought
# Dimension Door
-- MDR: [Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)
+- Alias: [Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)
- Source: (SRD p135)
- 4th-level conjuration
- **Casting Time :** 1 action
@@ -36989,7 +36989,7 @@ If you would arrive in a place already occupied by an object or a creature, you
# Disguise Self
-- MDR: [Déguisement](hd_spells_deguisement.md)
+- Alias: [Déguisement](hd_spells_deguisement.md)
- Source: (SRD p135)
- 1st-level illusion
- **Casting Time :** 1 action
@@ -37012,7 +37012,7 @@ To discern that you are disguised, a creature can use its action to inspect your
# Disintegrate
-- MDR: [Désintégration](hd_spells_desintegration.md)
+- Alias: [Désintégration](hd_spells_desintegration.md)
- Source: (SRD p135)
- 6th-level transmutation
- **Casting Time :** 1 action
@@ -37039,7 +37039,7 @@ This spell automatically disintegrates a Large or smaller nonmagical object or a
# Dispel Evil and Good
-- MDR: [Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)
+- Alias: [Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)
- Source: (SRD p136)
- 5th-level abjuration
- **Casting Time :** 1 action
@@ -37064,7 +37064,7 @@ You can end the spell early by using either of the following special functions.
# Dispel Magic
-- MDR: [Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)
+- Alias: [Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)
- Source: (SRD p136)
- 3th-level abjuration
- **Casting Time :** 1 action
@@ -37085,7 +37085,7 @@ Choose one creature, object, or magical effect within range. Any spell of 3rd le
# Divination
-- MDR: [Divination](hd_spells_divination.md)
+- Alias: [Divination](hd_spells_divination.md)
- Source: (SRD p136)
- 4th-level divination (ritual)
- **Casting Time :** 1 action
@@ -37108,7 +37108,7 @@ If you cast the spell two or more times before finishing your next long rest, th
# Divine Favor
-- MDR: [Faveur divine](hd_spells_faveur_divine.md)
+- Alias: [Faveur divine](hd_spells_faveur_divine.md)
- Source: (SRD p136)
- 1st-level evocation
- **Casting Time :** 1 bonus action
@@ -37127,7 +37127,7 @@ Your prayer empowers you with divine radiance. Until the spell ends, your weapon
# Divine Word
-- MDR: [Parole divine](hd_spells_parole_divine.md)
+- Alias: [Parole divine](hd_spells_parole_divine.md)
- Source: (SRD p137)
- 7th-level evocation
- **Casting Time :** 1 bonus action
@@ -37156,7 +37156,7 @@ Regardless of its current hit points, a celestial, an elemental, a fey, or a fie
# Dominate Beast
-- MDR: [Dominer une bête](hd_spells_dominer_une_bete.md)
+- Alias: [Dominer une bête](hd_spells_dominer_une_bete.md)
- Source: (SRD p137)
- 4th-level enchantment
- **Casting Time :** 1 action
@@ -37181,7 +37181,7 @@ You can use your action to take total and precise control of the target. Until t
# Dominate Monster
-- MDR: [Dominer un monstre](hd_spells_dominer_un_monstre.md)
+- Alias: [Dominer un monstre](hd_spells_dominer_un_monstre.md)
- Source: (SRD p137)
- 8th-level enchantment
- **Casting Time :** 1 action
@@ -37208,7 +37208,7 @@ Each time the target takes damage, it makes a new Wisdom saving throw against th
# Dominate Person
-- MDR: [Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)
+- Alias: [Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)
- Source: (SRD p138)
- 5th-level enchantment
- **Casting Time :** 1 action
@@ -37237,7 +37237,7 @@ Wisdom saving throw against the spell. If the saving throw succeeds, the spell e
# Instant Summons
-- MDR: [Convocations instantanées](hd_spells_convocations_instantanees.md)
+- Alias: [Convocations instantanées](hd_spells_convocations_instantanees.md)
- Source: (SRD p157)
- 6th-level conjuration (ritual)
- **Casting Time :** 1 minute
@@ -37262,7 +37262,7 @@ _[dispel magic](spells_vo.hd#dispel-magic)_ or a similar effect successfully app
# Dream
-- MDR: [Rêve](hd_spells_reve.md)
+- Alias: [Rêve](hd_spells_reve.md)
- Source: (SRD p138)
- 5th-level illusion
- **Casting Time :** 1 minute
@@ -37287,7 +37287,7 @@ If you have a body part, lock of hair, clipping from a nail, or similar portion
# Druidcraft
-- MDR: [Druidisme](hd_spells_druidisme.md)
+- Alias: [Druidisme](hd_spells_druidisme.md)
- Source: (SRD p138)
- Transmutation cantrip
- **Casting Time :** 1 action
@@ -37314,7 +37314,7 @@ Whispering to the spirits of nature, you create one of the following effects wit
# Earthquake
-- MDR: [Tremblement de terre](hd_spells_tremblement_de_terre.md)
+- Alias: [Tremblement de terre](hd_spells_tremblement_de_terre.md)
- Source: (SRD p139)
- 8th-level evocation
- **Casting Time :** 1 action
@@ -37345,7 +37345,7 @@ A fissure that opens beneath a structure causes it to automatically collapse (se
# Eldritch Blast
-- MDR: [Explosion occulte](hd_spells_explosion_occulte.md)
+- Alias: [Explosion occulte](hd_spells_explosion_occulte.md)
- Source: (SRD p139)
- Evocation cantrip
- **Casting Time :** 1 action
@@ -37366,7 +37366,7 @@ The spell creates more than one beam when you reach higher levels: two beams at
# Enhance Ability
-- MDR: [Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)
+- Alias: [Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)
- Source: (SRD p139)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -37399,7 +37399,7 @@ You touch a creature and bestow upon it a magical enhancement. Choose one of the
# Enlarge/Reduce
-- MDR: [Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)
+- Alias: [Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)
- Source: (SRD p140)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -37424,7 +37424,7 @@ If the target is a creature, everything it is wearing and carrying changes size
# Entangle
-- MDR: [Enchevêtrement](hd_spells_enchevetrement.md)
+- Alias: [Enchevêtrement](hd_spells_enchevetrement.md)
- Source: (SRD p140)
- 1st-level conjuration
- **Casting Time :** 1 action
@@ -37447,7 +37447,7 @@ When the spell ends, the conjured plants wilt away.
# Enthrall
-- MDR: [Envoûtement](hd_spells_envoutement.md)
+- Alias: [Envoûtement](hd_spells_envoutement.md)
- Source: (SRD p140)
- 2nd-level enchantment
- **Casting Time :** 1 action
@@ -37466,7 +37466,7 @@ You weave a distracting string of words, causing creatures of your choice that y
# Etherealness
-- MDR: [Forme éthérée](hd_spells_forme_etheree.md)
+- Alias: [Forme éthérée](hd_spells_forme_etheree.md)
- Source: (SRD p140)
- 7th-level transmutation
- **Casting Time :** 1 action
@@ -37495,7 +37495,7 @@ This spell has no effect if you cast it while you are on the Ethereal Plane or a
# Black Tentacles
-- MDR: [Tentacules noirs](hd_spells_tentacules_noirs.md)
+- Alias: [Tentacules noirs](hd_spells_tentacules_noirs.md)
- Source: (SRD p121)
- 4th-level conjuration
- **Casting Time :** 1 action
@@ -37518,7 +37518,7 @@ A creature restrained by the tentacles can use its action to make a Strength or
# Expeditious Retreat
-- MDR: [Repli expéditif](hd_spells_repli_expeditif.md)
+- Alias: [Repli expéditif](hd_spells_repli_expeditif.md)
- Source: (SRD p141)
- 1st-level transmutation
- **Casting Time :** 1 bonus action
@@ -37537,7 +37537,7 @@ This spell allows you to move at an incredible pace. When you cast this spell, a
# Eyebite
-- MDR: [Mauvais oeil](hd_spells_mauvais_oeil.md)
+- Alias: [Mauvais oeil](hd_spells_mauvais_oeil.md)
- Source: (SRD p141)
- 6th-level necromancy
- **Casting Time :** 1 action
@@ -37562,7 +37562,7 @@ For the spell's duration, your eyes become an inky void imbued with dread power.
# Fabricate
-- MDR: [Fabrication](hd_spells_fabrication.md)
+- Alias: [Fabrication](hd_spells_fabrication.md)
- Source: (SRD p141)
- 4th-level transmutation
- **Casting Time :** 10 minutes
@@ -37585,7 +37585,7 @@ Creatures or magic items can't be created or transmuted by this spell. You also
# Faerie Fire
-- MDR: [Lueurs féeriques](hd_spells_lueurs_feeriques.md)
+- Alias: [Lueurs féeriques](hd_spells_lueurs_feeriques.md)
- Source: (SRD p141)
- 1st-level evocation
- **Casting Time :** 1 action
@@ -37606,7 +37606,7 @@ Any attack roll against an affected creature or object has advantage if the atta
# False Life
-- MDR: [Simulacre de vie](hd_spells_simulacre_de_vie.md)
+- Alias: [Simulacre de vie](hd_spells_simulacre_de_vie.md)
- Source: (SRD p142)
- 1st-level necromancy
- **Casting Time :** 1 action
@@ -37627,7 +37627,7 @@ Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 tempo
# Fear
-- MDR: [Peur](hd_spells_peur.md)
+- Alias: [Peur](hd_spells_peur.md)
- Source: (SRD p142)
- 3th-level illusion
- **Casting Time :** 1 action
@@ -37646,7 +37646,7 @@ You project a phantasmal image of a creature's worst fears. Each creature in a 3
# Feather Fall
-- MDR: [Léger comme une plume](hd_spells_leger_comme_une_plume.md)
+- Alias: [Léger comme une plume](hd_spells_leger_comme_une_plume.md)
- Source: (SRD p142)
- 1st-level transmutation
- **Casting Time :** 1 reaction, which you take when you or a creature within 60 feet of you falls
@@ -37665,7 +37665,7 @@ Choose up to five falling creatures within range. A falling creature's rate of d
# Feeblemind
-- MDR: [Esprit faible](hd_spells_esprit_faible.md)
+- Alias: [Esprit faible](hd_spells_esprit_faible.md)
- Source: (SRD p142)
- 8th-level enchantment
- **Casting Time :** 1 action
@@ -37690,7 +37690,7 @@ The spell can also be ended by _[greater restoration](spells_vo.hd#greater-resto
# Find Familiar
-- MDR: [Appel de familier](hd_spells_appel_de_familier.md)
+- Alias: [Appel de familier](hd_spells_appel_de_familier.md)
- Source: (SRD p143)
- 1st-level conjuration (ritual)
- **Casting Time :** 1 hour
@@ -37721,7 +37721,7 @@ Finally, when you cast a spell with a range of touch, your familiar can deliver
# Find Steed
-- MDR: [Trouver une monture](hd_spells_trouver_une_monture.md)
+- Alias: [Trouver une monture](hd_spells_trouver_une_monture.md)
- Source: (SRD p143)
- 2nd-level conjuration
- **Casting Time :** 10 minutes
@@ -37748,7 +37748,7 @@ You can't have more than one steed bonded by this spell at a time. As an action,
# Find the Path
-- MDR: [Trouver un chemin](hd_spells_trouver_un_chemin.md)
+- Alias: [Trouver un chemin](hd_spells_trouver_un_chemin.md)
- Source: (SRD p143)
- 6th-level divination
- **Casting Time :** 1 minute
@@ -37769,7 +37769,7 @@ For the duration, as long as you are on the same plane of existence as the desti
# Find Traps
-- MDR: [Trouver les pièges](hd_spells_trouver_les_pieges.md)
+- Alias: [Trouver les pièges](hd_spells_trouver_les_pieges.md)
- Source: (SRD p144)
- 2nd-level divination
- **Casting Time :** 1 action
@@ -37790,7 +37790,7 @@ This spell merely reveals that a trap is present. You don't learn the location o
# Finger of Death
-- MDR: [Doigt de mort](hd_spells_doigt_de_mort.md)
+- Alias: [Doigt de mort](hd_spells_doigt_de_mort.md)
- Source: (SRD p144)
- 7th-level necromancy
- **Casting Time :** 1 action
@@ -37811,7 +37811,7 @@ A humanoid killed by this spell rises at the start of your next turn as a zombie
# Fire Bolt
-- MDR: [Trait de feu](hd_spells_trait_de_feu.md)
+- Alias: [Trait de feu](hd_spells_trait_de_feu.md)
- Source: (SRD p144)
- Evocation cantrip
- **Casting Time :** 1 action
@@ -37832,7 +37832,7 @@ This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th leve
# Fire Shield
-- MDR: [Bouclier de feu](hd_spells_bouclier_de_feu.md)
+- Alias: [Bouclier de feu](hd_spells_bouclier_de_feu.md)
- Source: (SRD p144)
- 4th-level evocation
- **Casting Time :** 1 action
@@ -37855,7 +37855,7 @@ In addition, whenever a creature within 5 feet of you hits you with a melee atta
# Fire Storm
-- MDR: [Tempête de feu](hd_spells_tempete_de_feu.md)
+- Alias: [Tempête de feu](hd_spells_tempete_de_feu.md)
- Source: (SRD p145)
- 7th-level evocation
- **Casting Time :** 1 action
@@ -37876,7 +37876,7 @@ The fire damages objects in the area and ignites flammable objects that aren't b
# Fireball
-- MDR: [Boule de feu](hd_spells_boule_de_feu.md)
+- Alias: [Boule de feu](hd_spells_boule_de_feu.md)
- Source: (SRD p144)
- 3th-level evocation
- **Casting Time :** 1 action
@@ -37899,7 +37899,7 @@ The fire spreads around corners. It ignites flammable objects in the area that a
# Flame Blade
-- MDR: [Lame de feu](hd_spells_lame_de_feu.md)
+- Alias: [Lame de feu](hd_spells_lame_de_feu.md)
- Source: (SRD p145)
- 2nd-level evocation
- **Casting Time :** 1 bonus action
@@ -37924,7 +37924,7 @@ The flaming blade sheds bright light in a 10-foot radius and dim light for an ad
# Flame Strike
-- MDR: [Colonne de flamme](hd_spells_colonne_de_flamme.md)
+- Alias: [Colonne de flamme](hd_spells_colonne_de_flamme.md)
- Source: (SRD p145)
- 5th-level evocation
- **Casting Time :** 1 action
@@ -37945,7 +37945,7 @@ A vertical column of divine fire roars down from the heavens in a location you s
# Flaming Sphere
-- MDR: [Sphère de feu](hd_spells_sphere_de_feu.md)
+- Alias: [Sphère de feu](hd_spells_sphere_de_feu.md)
- Source: (SRD p145)
- 2nd-level conjuration
- **Casting Time :** 1 action
@@ -37970,7 +37970,7 @@ When you move the sphere, you can direct it over barriers up to 5 feet tall and
# Flesh to Stone
-- MDR: [Pétrification](hd_spells_petrification.md)
+- Alias: [Pétrification](hd_spells_petrification.md)
- Source: (SRD p145)
- 6th-level transmutation
- **Casting Time :** 1 action
@@ -37995,7 +37995,7 @@ If you maintain your concentration on this spell for the entire possible duratio
# Fly
-- MDR: [Vol](hd_spells_vol.md)
+- Alias: [Vol](hd_spells_vol.md)
- Source: (SRD p146)
- 3th-level transmutation
- **Casting Time :** 1 action
@@ -38016,7 +38016,7 @@ You touch a willing creature. The target gains a flying speed of 60 feet for the
# Fog Cloud
-- MDR: [Nappe de brouillard](hd_spells_nappe_de_brouillard.md)
+- Alias: [Nappe de brouillard](hd_spells_nappe_de_brouillard.md)
- Source: (SRD p146)
- 1st-level conjuration
- **Casting Time :** 1 action
@@ -38037,7 +38037,7 @@ You create a 20-foot-radius sphere of fog centered on a point within range. The
# Forbiddance
-- MDR: [Interdiction](hd_spells_interdiction.md)
+- Alias: [Interdiction](hd_spells_interdiction.md)
- Source: (SRD p146)
- 6th-level abjuration (ritual)
- **Casting Time :** 10 minutes
@@ -38062,7 +38062,7 @@ The spell's area can't overlap with the area of another forbiddance spell. If yo
# Forcecage
-- MDR: [Cage de force](hd_spells_cage_de_force.md)
+- Alias: [Cage de force](hd_spells_cage_de_force.md)
- Source: (SRD p147)
- 7th-level evocation
- **Casting Time :** 1 action
@@ -38091,7 +38091,7 @@ This spell can't be dispelled by _[dispel magic](spells_vo.hd#dispel-magic)_.
# Foresight
-- MDR: [Prémonition](hd_spells_premonition.md)
+- Alias: [Prémonition](hd_spells_premonition.md)
- Source: (SRD p147)
- 9th-level divination
- **Casting Time :** 1 minute
@@ -38112,7 +38112,7 @@ This spell immediately ends if you cast it again before its duration ends.
# Freedom of Movement
-- MDR: [Liberté de mouvement](hd_spells_liberte_de_mouvement.md)
+- Alias: [Liberté de mouvement](hd_spells_liberte_de_mouvement.md)
- Source: (SRD p147)
- 4th-level abjuration
- **Casting Time :** 1 action
@@ -38133,7 +38133,7 @@ The target can also spend 5 feet of movement to automatically escape from nonmag
# Gaseous Form
-- MDR: [Forme gazeuse](hd_spells_forme_gazeuse.md)
+- Alias: [Forme gazeuse](hd_spells_forme_gazeuse.md)
- Source: (SRD p148)
- 3th-level transmutation
- **Casting Time :** 1 action
@@ -38156,7 +38156,7 @@ While in the form of a misty cloud, the target can't talk or manipulate objects,
# Gate
-- MDR: [Portail](hd_spells_portail.md)
+- Alias: [Portail](hd_spells_portail.md)
- Source: (SRD p148)
- 9th-level conjuration
- **Casting Time :** 1 action
@@ -38181,7 +38181,7 @@ When you cast this spell, you can speak the name of a specific creature (a pseud
# Geas
-- MDR: [Coercition mystique](hd_spells_coercition_mystique.md)
+- Alias: [Coercition mystique](hd_spells_coercition_mystique.md)
- Source: (SRD p148)
- 5th-level enchantment
- **Casting Time :** 1 minute
@@ -38206,7 +38206,7 @@ You can end the spell early by using an action to dismiss it. A _[remove curse](
# Gentle Repose
-- MDR: [Doux repos](hd_spells_doux_repos.md)
+- Alias: [Doux repos](hd_spells_doux_repos.md)
- Source: (SRD p148)
- 2nd-level necromancy (ritual)
- **Casting Time :** 1 action
@@ -38227,7 +38227,7 @@ The spell also effectively extends the time limit on raising the target from the
# Giant Insect
-- MDR: [Insecte géant](hd_spells_insecte_geant.md)
+- Alias: [Insecte géant](hd_spells_insecte_geant.md)
- Source: (SRD p149)
- 4th-level transmutation
- **Casting Time :** 1 action
@@ -38252,7 +38252,7 @@ The DM might allow you to choose different targets. For example, if you transfor
# Glibness
-- MDR: [Bagou](hd_spells_bagou.md)
+- Alias: [Bagou](hd_spells_bagou.md)
- Source: (SRD p149)
- 8th-level transmutation
- **Casting Time :** 1 action
@@ -38271,7 +38271,7 @@ Until the spell ends, when you make a Charisma check, you can replace the number
# Globe of Invulnerability
-- MDR: [Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)
+- Alias: [Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)
- Source: (SRD p149)
- 6th-level abjuration
- **Casting Time :** 1 action
@@ -38294,7 +38294,7 @@ Any spell of 5th level or lower cast from outside the barrier can't affect creat
# Glyph of Warding
-- MDR: [Glyphe de protection](hd_spells_glyphe_de_protection.md)
+- Alias: [Glyphe de protection](hd_spells_glyphe_de_protection.md)
- Source: (SRD p149)
- 3th-level abjuration
- **Casting Time :** 1 hour
@@ -38327,7 +38327,7 @@ When you inscribe the glyph, choose _explosive runes_ or a _spell glyph_.
# Goodberry
-- MDR: [Baies nourricières](hd_spells_baies_nourricieres.md)
+- Alias: [Baies nourricières](hd_spells_baies_nourricieres.md)
- Source: (SRD p150)
- 1st-level transmutation
- **Casting Time :** 1 action
@@ -38348,7 +38348,7 @@ The berries lose their potency if they have not been consumed within 24 hours of
# Grease
-- MDR: [Graisse](hd_spells_graisse.md)
+- Alias: [Graisse](hd_spells_graisse.md)
- Source: (SRD p150)
- 1st-level conjuration
- **Casting Time :** 1 action
@@ -38369,7 +38369,7 @@ When the grease appears, each creature standing in its area must succeed on a De
# Greater Invisibility
-- MDR: [Invisibilité supérieure](hd_spells_invisibilite_superieure.md)
+- Alias: [Invisibilité supérieure](hd_spells_invisibilite_superieure.md)
- Source: (SRD p150)
- 4th-level illusion
- **Casting Time :** 1 action
@@ -38388,7 +38388,7 @@ You or a creature you touch becomes invisible until the spell ends. Anything the
# Greater Restoration
-- MDR: [Restauration supérieure](hd_spells_restauration_superieure.md)
+- Alias: [Restauration supérieure](hd_spells_restauration_superieure.md)
- Source: (SRD p150)
- 5th-level abjuration
- **Casting Time :** 1 action
@@ -38415,7 +38415,7 @@ You imbue a creature you touch with positive energy to undo a debilitating effec
# Guardian of Faith
-- MDR: [Gardien de la foi](hd_spells_gardien_de_la_foi.md)
+- Alias: [Gardien de la foi](hd_spells_gardien_de_la_foi.md)
- Source: (SRD p150)
- 4th-level conjuration
- **Casting Time :** 1 action
@@ -38436,7 +38436,7 @@ Any creature hostile to you that moves to a space within 10 feet of the guardian
# Guards and Wards
-- MDR: [Protections et sceaux](hd_spells_protections_et_sceaux.md)
+- Alias: [Protections et sceaux](hd_spells_protections_et_sceaux.md)
- Source: (SRD p151)
- 6th-level abjuration
- **Casting Time :** 10 minutes
@@ -38481,7 +38481,7 @@ You can create a permanently guarded and warded structure by casting this spell
# Guidance
-- MDR: [Assistance](hd_spells_assistance.md)
+- Alias: [Assistance](hd_spells_assistance.md)
- Source: (SRD p151)
- Divination cantrip
- **Casting Time :** 1 action
@@ -38500,7 +38500,7 @@ You touch one willing creature. Once before the spell ends, the target can roll
# Guiding Bolt
-- MDR: [Balisage](hd_spells_balisage.md)
+- Alias: [Balisage](hd_spells_balisage.md)
- Source: (SRD p151)
- 1st-level evocation
- **Casting Time :** 1 action
@@ -38521,7 +38521,7 @@ A flash of light streaks toward a creature of your choice within range. Make a r
# Gust of Wind
-- MDR: [Bourrasque](hd_spells_bourrasque.md)
+- Alias: [Bourrasque](hd_spells_bourrasque.md)
- Source: (SRD p152)
- 2nd-level evocation
- **Casting Time :** 1 action
@@ -38546,7 +38546,7 @@ As a bonus action on each of your turns before the spell ends, you can change th
# Hallow
-- MDR: [Sanctification](hd_spells_sanctification.md)
+- Alias: [Sanctification](hd_spells_sanctification.md)
- Source: (SRD p152)
- 5th-level evocation
- **Casting Time :** 24 hours
@@ -38589,7 +38589,7 @@ Second, you can bind an extra effect to the area. Choose the effect from the fol
# Hallucinatory Terrain
-- MDR: [Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)
+- Alias: [Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)
- Source: (SRD p152)
- 4th-level illusion
- **Casting Time :** 10 minutes
@@ -38610,7 +38610,7 @@ The tactile characteristics of the terrain are unchanged, so creatures entering
# Harm
-- MDR: [Contamination](hd_spells_contamination.md)
+- Alias: [Contamination](hd_spells_contamination.md)
- Source: (SRD p153)
- 6th-level necromancy
- **Casting Time :** 1 action
@@ -38629,7 +38629,7 @@ You unleash a virulent disease on a creature that you can see within range. The
# Haste
-- MDR: [Hâte](hd_spells_hate.md)
+- Alias: [Hâte](hd_spells_hate.md)
- Source: (SRD p153)
- 3th-level transmutation
- **Casting Time :** 1 action
@@ -38650,7 +38650,7 @@ When the spell ends, the target can't move or take actions until after its next
# Heal
-- MDR: [Guérison](hd_spells_guerison.md)
+- Alias: [Guérison](hd_spells_guerison.md)
- Source: (SRD p153)
- 6th-level evocation
- **Casting Time :** 1 action
@@ -38671,7 +38671,7 @@ Choose a creature that you can see within range. A surge of positive energy wash
# Healing Word
-- MDR: [Mot de guérison](hd_spells_mot_de_guerison.md)
+- Alias: [Mot de guérison](hd_spells_mot_de_guerison.md)
- Source: (SRD p153)
- 1st-level evocation
- **Casting Time :** 1 bonus action
@@ -38692,7 +38692,7 @@ A creature of your choice that you can see within range regains hit points equal
# Heat Metal
-- MDR: [Chauffer le métal](hd_spells_chauffer_le_metal.md)
+- Alias: [Chauffer le métal](hd_spells_chauffer_le_metal.md)
- Source: (SRD p153)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -38715,7 +38715,7 @@ If a creature is holding or wearing the object and takes the damage from it, the
# Hellish Rebuke
-- MDR: [Représailles infernales](hd_spells_represailles_infernales.md)
+- Alias: [Représailles infernales](hd_spells_represailles_infernales.md)
- Source: (SRD p154)
- 1st-level evocation
- **Casting Time :** 1 reaction, which you take in response to being damaged by a creature within 60 feet of you that you can see
@@ -38736,7 +38736,7 @@ You point your finger, and the creature that damaged you is momentarily surround
# Heroes' Feast
-- MDR: [Festin des héros](hd_spells_festin_des_heros.md)
+- Alias: [Festin des héros](hd_spells_festin_des_heros.md)
- Source: (SRD p154)
- 6th-level conjuration
- **Casting Time :** 10 minutes
@@ -38757,7 +38757,7 @@ A creature that partakes of the feast gains several benefits. The creature is cu
# Heroism
-- MDR: [Héroïsme](hd_spells_heroisme.md)
+- Alias: [Héroïsme](hd_spells_heroisme.md)
- Source: (SRD p154)
- 1st-level enchantment
- **Casting Time :** 1 action
@@ -38778,7 +38778,7 @@ A willing creature you touch is imbued with bravery. Until the spell ends, the c
# Hold Monster
-- MDR: [Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)
+- Alias: [Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)
- Source: (SRD p154)
- 5th-level enchantment
- **Casting Time :** 1 action
@@ -38799,7 +38799,7 @@ Choose a creature that you can see within range. The target must succeed on a Wi
# Hold Person
-- MDR: [Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)
+- Alias: [Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)
- Source: (SRD p154)
- 2nd-level enchantment
- **Casting Time :** 1 action
@@ -38820,7 +38820,7 @@ Choose a humanoid that you can see within range. The target must succeed on a Wi
# Holy Aura
-- MDR: [Aura sacrée](hd_spells_aura_sacree.md)
+- Alias: [Aura sacrée](hd_spells_aura_sacree.md)
- Source: (SRD p155)
- 8th-level abjuration
- **Casting Time :** 1 action
@@ -38839,7 +38839,7 @@ Divine light washes out from you and coalesces in a soft radiance in a 30-foot r
# Hunter's Mark
-- MDR: [Marque du chasseur](hd_spells_marque_du_chasseur.md)
+- Alias: [Marque du chasseur](hd_spells_marque_du_chasseur.md)
- Source: (SRD p155)
- 1st-level divination
- **Casting Time :** 1 bonus action
@@ -38860,7 +38860,7 @@ You choose a creature you can see within range and mystically mark it as your qu
# Hypnotic Pattern
-- MDR: [Motif hypnotique](hd_spells_motif_hypnotique.md)
+- Alias: [Motif hypnotique](hd_spells_motif_hypnotique.md)
- Source: (SRD p155)
- 3th-level illusion
- **Casting Time :** 1 action
@@ -38879,7 +38879,7 @@ You create a twisting pattern of colors that weaves through the air inside a 30-
# Ice Storm
-- MDR: [Tempête de grêle](hd_spells_tempete_de_grele.md)
+- Alias: [Tempête de grêle](hd_spells_tempete_de_grele.md)
- Source: (SRD p155)
- 4th-level evocation
- **Casting Time :** 1 action
@@ -38902,7 +38902,7 @@ Hailstones turn the storm's area of effect into difficult terrain until the end
# Identify
-- MDR: [Identification](hd_spells_identification.md)
+- Alias: [Identification](hd_spells_identification.md)
- Source: (SRD p155)
- 1st-level divination (ritual)
- **Casting Time :** 1 minute
@@ -38923,7 +38923,7 @@ If you instead touch a creature throughout the casting, you learn what spells, i
# Illusory Script
-- MDR: [Texte illusoire](hd_spells_texte_illusoire.md)
+- Alias: [Texte illusoire](hd_spells_texte_illusoire.md)
- Source: (SRD p156)
- 1st-level illusion (ritual)
- **Casting Time :** 1 minute
@@ -38948,7 +38948,7 @@ A creature with truesight can read the hidden message.
# Imprisonment
-- MDR: [Emprisonnement](hd_spells_emprisonnement.md)
+- Alias: [Emprisonnement](hd_spells_emprisonnement.md)
- Source: (SRD p156)
- 9th-level abjuration
- **Casting Time :** 1 minute
@@ -38995,7 +38995,7 @@ You can use a particular special component to create only one prison at a time.
# Incendiary Cloud
-- MDR: [Nuage incendiaire](hd_spells_nuage_incendiaire.md)
+- Alias: [Nuage incendiaire](hd_spells_nuage_incendiaire.md)
- Source: (SRD p157)
- 8th-level conjuration
- **Casting Time :** 1 action
@@ -39018,7 +39018,7 @@ The cloud moves 10 feet directly away from you in a direction that you choose at
# Inflict Wounds
-- MDR: [Blessure](hd_spells_blessure.md)
+- Alias: [Blessure](hd_spells_blessure.md)
- Source: (SRD p157)
- 1st-level necromancy
- **Casting Time :** 1 action
@@ -39039,7 +39039,7 @@ Make a melee spell attack against a creature you can reach. On a hit, the target
# Insect Plague
-- MDR: [Fléau d'insectes](hd_spells_fleau_dinsectes.md)
+- Alias: [Fléau d'insectes](hd_spells_fleau_dinsectes.md)
- Source: (SRD p157)
- 5th-level conjuration
- **Casting Time :** 1 action
@@ -39062,7 +39062,7 @@ When the area appears, each creature in it must make a Constitution saving throw
# Invisibility
-- MDR: [Invisibilité](hd_spells_invisibilite.md)
+- Alias: [Invisibilité](hd_spells_invisibilite.md)
- Source: (SRD p157)
- 2nd-level illusion
- **Casting Time :** 1 action
@@ -39083,7 +39083,7 @@ A creature you touch becomes invisible until the spell ends. Anything the target
# Jump
-- MDR: [Saut](hd_spells_saut.md)
+- Alias: [Saut](hd_spells_saut.md)
- Source: (SRD p158)
- 1st-level transmutation
- **Casting Time :** 1 action
@@ -39102,7 +39102,7 @@ You touch a creature. The creature's jump distance is tripled until the spell en
# Knock
-- MDR: [Déblocage](hd_spells_deblocage.md)
+- Alias: [Déblocage](hd_spells_deblocage.md)
- Source: (SRD p158)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -39127,7 +39127,7 @@ When you cast the spell, a loud knock, audible from as far away as 300 feet, ema
# Legend Lore
-- MDR: [Légende](hd_spells_legende.md)
+- Alias: [Légende](hd_spells_legende.md)
- Source: (SRD p158)
- 5th-level divination
- **Casting Time :** 10 minutes
@@ -39148,7 +39148,7 @@ The information you learn is accurate but might be couched in figurative languag
# Secret Chest
-- MDR: [Coffre secret](hd_spells_coffre_secret.md)
+- Alias: [Coffre secret](hd_spells_coffre_secret.md)
- Source: (SRD p177)
- 4th-level conjuration
- **Casting Time :** 1 action
@@ -39171,7 +39171,7 @@ After 60 days, there is a cumulative 5 percent chance per day that the spell's e
# Tiny Hut
-- MDR: [Petite hutte](hd_spells_petite_hutte.md)
+- Alias: [Petite hutte](hd_spells_petite_hutte.md)
- Source: (SRD p187)
- 3th-level evocation (ritual)
- **Casting Time :** 1 minute
@@ -39194,7 +39194,7 @@ Until the spell ends, you can command the interior to become dimly lit or dark.
# Lesser Restoration
-- MDR: [Restauration inférieure](hd_spells_restauration_inferieure.md)
+- Alias: [Restauration inférieure](hd_spells_restauration_inferieure.md)
- Source: (SRD p158)
- 2nd-level abjuration
- **Casting Time :** 1 action
@@ -39213,7 +39213,7 @@ You touch a creature and can end either one disease or one condition afflicting
# Levitate
-- MDR: [Lévitation](hd_spells_levitation.md)
+- Alias: [Lévitation](hd_spells_levitation.md)
- Source: (SRD p158)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -39236,7 +39236,7 @@ When the spell ends, the target floats gently to the ground if it is still aloft
# Light
-- MDR: [Lumière](hd_spells_lumiere.md)
+- Alias: [Lumière](hd_spells_lumiere.md)
- Source: (SRD p159)
- Evocation cantrip
- **Casting Time :** 1 action
@@ -39257,7 +39257,7 @@ If you target an object held or worn by a hostile creature, that creature must s
# Lightning Bolt
-- MDR: [Éclair](hd_spells_eclair.md)
+- Alias: [Éclair](hd_spells_eclair.md)
- Source: (SRD p159)
- 3th-level evocation
- **Casting Time :** 1 action
@@ -39280,7 +39280,7 @@ The lightning ignites flammable objects in the area that aren't being worn or ca
# Locate Animals or Plants
-- MDR: [Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)
+- Alias: [Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)
- Source: (SRD p159)
- 2nd-level divination (ritual)
- **Casting Time :** 1 action
@@ -39299,7 +39299,7 @@ Describe or name a specific kind of beast or plant. Concentrating on the voice o
# Locate Creature
-- MDR: [Localiser une créature](hd_spells_localiser_une_creature.md)
+- Alias: [Localiser une créature](hd_spells_localiser_une_creature.md)
- Source: (SRD p159)
- 4th-level divination
- **Casting Time :** 1 action
@@ -39322,7 +39322,7 @@ This spell can't locate a creature if running water at least 10 feet wide blocks
# Locate Object
-- MDR: [Localiser un objet](hd_spells_localiser_un_objet.md)
+- Alias: [Localiser un objet](hd_spells_localiser_un_objet.md)
- Source: (SRD p159)
- 2nd-level divination
- **Casting Time :** 1 action
@@ -39345,7 +39345,7 @@ This spell can't locate an object if any thickness of lead, even a thin sheet, b
# Longstrider
-- MDR: [Grande foulée](hd_spells_grande_foulee.md)
+- Alias: [Grande foulée](hd_spells_grande_foulee.md)
- Source: (SRD p160)
- 1st-level transmutation
- **Casting Time :** 1 action
@@ -39366,7 +39366,7 @@ You touch a creature. The target's speed increases by 10 feet until the spell en
# Mage Armor
-- MDR: [Armure du mage](hd_spells_armure_du_mage.md)
+- Alias: [Armure du mage](hd_spells_armure_du_mage.md)
- Source: (SRD p160)
- 1st-level abjuration
- **Casting Time :** 1 action
@@ -39385,7 +39385,7 @@ You touch a willing creature who isn't wearing armor, and a protective magical f
# Mage Hand
-- MDR: [Main du mage](hd_spells_main_du_mage.md)
+- Alias: [Main du mage](hd_spells_main_du_mage.md)
- Source: (SRD p160)
- Conjuration cantrip
- **Casting Time :** 1 action
@@ -39408,7 +39408,7 @@ The hand can't attack, activate magic items, or carry more than 10 pounds.
# Magic Circle
-- MDR: [Cercle magique](hd_spells_cercle_magique.md)
+- Alias: [Cercle magique](hd_spells_cercle_magique.md)
- Source: (SRD p160)
- 3th-level abjuration
- **Casting Time :** 1 minute
@@ -39439,7 +39439,7 @@ When you cast this spell, you can elect to cause its magic to operate in the rev
# Magic Jar
-- MDR: [Possession](hd_spells_possession.md)
+- Alias: [Possession](hd_spells_possession.md)
- Source: (SRD p160)
- 6th-level necromancy
- **Casting Time :** 1 minute
@@ -39470,7 +39470,7 @@ When the spell ends, the container is destroyed.
# Magic Missile
-- MDR: [Projectile magique](hd_spells_projectile_magique.md)
+- Alias: [Projectile magique](hd_spells_projectile_magique.md)
- Source: (SRD p161)
- 1st-level evocation
- **Casting Time :** 1 action
@@ -39491,7 +39491,7 @@ You create three glowing darts of magical force. Each dart hits a creature of yo
# Magic Mouth
-- MDR: [Bouche magique](hd_spells_bouche_magique.md)
+- Alias: [Bouche magique](hd_spells_bouche_magique.md)
- Source: (SRD p161)
- 2nd-level illusion (ritual)
- **Casting Time :** 1 minute
@@ -39514,7 +39514,7 @@ The triggering circumstance can be as general or as detailed as you like, though
# Magic Weapon
-- MDR: [Arme magique](hd_spells_arme_magique.md)
+- Alias: [Arme magique](hd_spells_arme_magique.md)
- Source: (SRD p161)
- 2nd-level transmutation
- **Casting Time :** 1 bonus action
@@ -39535,7 +39535,7 @@ You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic
# Major Image
-- MDR: [Image majeure](hd_spells_image_majeure.md)
+- Alias: [Image majeure](hd_spells_image_majeure.md)
- Source: (SRD p162)
- 3th-level illusion
- **Casting Time :** 1 action
@@ -39560,7 +39560,7 @@ Physical interaction with the image reveals it to be an illusion, because things
# Mass Cure Wounds
-- MDR: [Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)
+- Alias: [Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)
- Source: (SRD p162)
- 5th-level evocation
- **Casting Time :** 1 action
@@ -39581,7 +39581,7 @@ A wave of healing energy washes out from a point of your choice within range. Ch
# Mass Heal
-- MDR: [Guérison de groupe](hd_spells_guerison_de_groupe.md)
+- Alias: [Guérison de groupe](hd_spells_guerison_de_groupe.md)
- Source: (SRD p163)
- 9th-level evocation
- **Casting Time :** 1 action
@@ -39600,7 +39600,7 @@ A flood of healing energy flows from you into injured creatures around you. You
# Mass Healing Word
-- MDR: [Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)
+- Alias: [Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)
- Source: (SRD p163)
- 3th-level evocation
- **Casting Time :** 1 bonus action
@@ -39621,7 +39621,7 @@ As you call out words of restoration, up to six creatures of your choice that yo
# Mass Suggestion
-- MDR: [Suggestion de groupe](hd_spells_suggestion_de_groupe.md)
+- Alias: [Suggestion de groupe](hd_spells_suggestion_de_groupe.md)
- Source: (SRD p163)
- 6th-level enchantment
- **Casting Time :** 1 action
@@ -39648,7 +39648,7 @@ If you or any of your companions damage a creature affected by this spell, the s
# Maze
-- MDR: [Labyrinthe](hd_spells_labyrinthe.md)
+- Alias: [Labyrinthe](hd_spells_labyrinthe.md)
- Source: (SRD p163)
- 8th-level conjuration
- **Casting Time :** 1 action
@@ -39671,7 +39671,7 @@ When the spell ends, the target reappears in the space it left or, if that space
# Meld into Stone
-- MDR: [Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)
+- Alias: [Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)
- Source: (SRD p163)
- 3th-level transmutation (ritual)
- **Casting Time :** 1 action
@@ -39694,7 +39694,7 @@ Minor physical damage to the stone doesn't harm you, but its partial destruction
# Acid Arrow
-- MDR: [Flèche acide](hd_spells_fleche_acide.md)
+- Alias: [Flèche acide](hd_spells_fleche_acide.md)
- Source: (SRD p114)
- 2nd-level evocation
- **Casting Time :** 1 action
@@ -39715,7 +39715,7 @@ A shimmering green arrow streaks toward a target within range and bursts in a sp
# Mending
-- MDR: [Réparation](hd_spells_reparation.md)
+- Alias: [Réparation](hd_spells_reparation.md)
- Source: (SRD p164)
- Transmutation cantrip
- **Casting Time :** 1 minute
@@ -39734,7 +39734,7 @@ This spell repairs a single break or tear in an object you touch, such as a brok
# Message
-- MDR: [Message](hd_spells_message.md)
+- Alias: [Message](hd_spells_message.md)
- Source: (SRD p164)
- Transmutation cantrip
- **Casting Time :** 1 action
@@ -39755,7 +39755,7 @@ You can cast this spell through solid objects if you re familiar with the target
# Meteor Swarm
-- MDR: [Nuée de météores](hd_spells_nuee_de_meteores.md)
+- Alias: [Nuée de météores](hd_spells_nuee_de_meteores.md)
- Source: (SRD p164)
- 9th-level evocation
- **Casting Time :** 1 action
@@ -39776,7 +39776,7 @@ The spell damages objects in the area and ignites flammable objects that aren't
# Mind Blank
-- MDR: [Esprit impénétrable](hd_spells_esprit_impenetrable.md)
+- Alias: [Esprit impénétrable](hd_spells_esprit_impenetrable.md)
- Source: (SRD p164)
- 8th-level abjuration
- **Casting Time :** 1 action
@@ -39795,7 +39795,7 @@ Until the spell ends, one willing creature you touch is immune to psychic damage
# Minor Illusion
-- MDR: [Illusion mineure](hd_spells_illusion_mineure.md)
+- Alias: [Illusion mineure](hd_spells_illusion_mineure.md)
- Source: (SRD p164)
- Illusion cantrip
- **Casting Time :** 1 action
@@ -39820,7 +39820,7 @@ If a creature uses its action to examine the sound or image, the creature can de
# Mirage Arcane
-- MDR: [Mirage](hd_spells_mirage.md)
+- Alias: [Mirage](hd_spells_mirage.md)
- Source: (SRD p165)
- 7th-level illusion
- **Casting Time :** 10 minutes
@@ -39845,7 +39845,7 @@ Creatures with truesight can see through the illusion to the terrain's true form
# Mirror Image
-- MDR: [Image miroir](hd_spells_image_miroir.md)
+- Alias: [Image miroir](hd_spells_image_miroir.md)
- Source: (SRD p165)
- 2nd-level illusion
- **Casting Time :** 1 action
@@ -39872,7 +39872,7 @@ A creature is unaffected by this spell if it can't see, if it relies on senses o
# Mislead
-- MDR: [Tromperie](hd_spells_tromperie.md)
+- Alias: [Tromperie](hd_spells_tromperie.md)
- Source: (SRD p165)
- 5th-level illusion
- **Casting Time :** 1 action
@@ -39895,7 +39895,7 @@ You can see through its eyes and hear through its ears as if you were located wh
# Misty Step
-- MDR: [Pas brumeux](hd_spells_pas_brumeux.md)
+- Alias: [Pas brumeux](hd_spells_pas_brumeux.md)
- Source: (SRD p165)
- 2nd-level conjuration
- **Casting Time :** 1 bonus action
@@ -39914,7 +39914,7 @@ Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied
# Modify Memory
-- MDR: [Modification de mémoire](hd_spells_modification_de_memoire.md)
+- Alias: [Modification de mémoire](hd_spells_modification_de_memoire.md)
- Source: (SRD p166)
- 5th-level enchantment
- **Casting Time :** 1 action
@@ -39943,7 +39943,7 @@ A _[remove curse](spells_vo.hd#remove-curse)_ or _[greater restoration](spells_v
# Moonbeam
-- MDR: [Rayon de lune](hd_spells_rayon_de_lune.md)
+- Alias: [Rayon de lune](hd_spells_rayon_de_lune.md)
- Source: (SRD p166)
- 2nd-level evocation
- **Casting Time :** 1 action
@@ -39970,7 +39970,7 @@ On each of your turns after you cast this spell, you can use an action to move t
# Faithful Hound
-- MDR: [Chien de garde](hd_spells_chien_de_garde.md)
+- Alias: [Chien de garde](hd_spells_chien_de_garde.md)
- Source: (SRD p142)
- 4th-level conjuration
- **Casting Time :** 1 action
@@ -39993,7 +39993,7 @@ At the start of each of your turns, the hound attempts to bite one creature with
# Magnificent Mansion
-- MDR: [Manoir somptueux](hd_spells_manoir_somptueux.md)
+- Alias: [Manoir somptueux](hd_spells_manoir_somptueux.md)
- Source: (SRD p162)
- 7th-level conjuration
- **Casting Time :** 1 minute
@@ -40016,7 +40016,7 @@ You can create any floor plan you like, but the space can't exceed 50 cubes, eac
# Private Sanctum
-- MDR: [Sanctuaire privé](hd_spells_sanctuaire_prive.md)
+- Alias: [Sanctuaire privé](hd_spells_sanctuaire_prive.md)
- Source: (SRD p171)
- 4th-level abjuration
- **Casting Time :** 10 minutes
@@ -40053,7 +40053,7 @@ Casting this spell on the same spot every day for a year makes this effect perma
# Arcane Sword
-- MDR: [Épée magique](hd_spells_epee_magique.md)
+- Alias: [Épée magique](hd_spells_epee_magique.md)
- Source: (SRD p119)
- 7th-level evocation
- **Casting Time :** 1 action
@@ -40074,7 +40074,7 @@ When the sword appears, you make a melee spell attack against a target of your c
# Move Earth
-- MDR: [Déplacer la terre](hd_spells_deplacer_la_terre.md)
+- Alias: [Déplacer la terre](hd_spells_deplacer_la_terre.md)
- Source: (SRD p166)
- 6th-level transmutation
- **Casting Time :** 1 action
@@ -40101,7 +40101,7 @@ Similarly, this spell doesn't directly affect plant growth. The moved earth carr
# Nondetection
-- MDR: [Non-détection](hd_spells_non_detection.md)
+- Alias: [Non-détection](hd_spells_non_detection.md)
- Source: (SRD p167)
- 3th-level abjuration
- **Casting Time :** 1 action
@@ -40120,7 +40120,7 @@ For the duration, you hide a target that you touch from divination magic. The ta
# Arcanist's Magic Aura
-- MDR: [Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)
+- Alias: [Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)
- Source: (SRD p119)
- 2nd-level illusion
- **Casting Time :** 1 action
@@ -40145,7 +40145,7 @@ When you cast the spell, choose one or both of the following effects. The effect
# Freezing Sphere
-- MDR: [Sphère glacée](hd_spells_sphere_glacee.md)
+- Alias: [Sphère glacée](hd_spells_sphere_glacee.md)
- Source: (SRD p147)
- 6th-level evocation
- **Casting Time :** 1 action
@@ -40170,7 +40170,7 @@ You can refrain from firing the globe after completing the spell, if you wish. A
# Resilient Sphere
-- MDR: [Sphère résiliente](hd_spells_sphere_resiliente.md)
+- Alias: [Sphère résiliente](hd_spells_sphere_resiliente.md)
- Source: (SRD p175)
- 4th-level evocation
- **Casting Time :** 1 action
@@ -40195,7 +40195,7 @@ A _[disintegrate](spells_vo.hd#disintegrate)_ spell targeting the globe destroys
# Irresistible Dance
-- MDR: [Danse irrésistible](hd_spells_danse_irresistible.md)
+- Alias: [Danse irrésistible](hd_spells_danse_irresistible.md)
- Source: (SRD p158)
- 6th-level enchantment
- **Casting Time :** 1 action
@@ -40216,7 +40216,7 @@ A dancing creature must use all its movement to dance without leaving its space
# Pass without Trace
-- MDR: [Passage sans trace](hd_spells_passage_sans_trace.md)
+- Alias: [Passage sans trace](hd_spells_passage_sans_trace.md)
- Source: (SRD p167)
- 2nd-level abjuration
- **Casting Time :** 1 action
@@ -40235,7 +40235,7 @@ A veil of shadows and silence radiates from you, masking you and your companions
# Passwall
-- MDR: [Passe-muraille](hd_spells_passe_muraille.md)
+- Alias: [Passe-muraille](hd_spells_passe_muraille.md)
- Source: (SRD p167)
- 5th-level transmutation
- **Casting Time :** 1 action
@@ -40256,7 +40256,7 @@ When the opening disappears, any creatures or objects still in the passage creat
# Phantasmal Killer
-- MDR: [Assassin imaginaire](hd_spells_assassin_imaginaire.md)
+- Alias: [Assassin imaginaire](hd_spells_assassin_imaginaire.md)
- Source: (SRD p167)
- 4th-level illusion
- **Casting Time :** 1 action
@@ -40277,7 +40277,7 @@ You tap into the nightmares of a creature you can see within range and create an
# Phantom Steed
-- MDR: [Monture fantôme](hd_spells_monture_fantome.md)
+- Alias: [Monture fantôme](hd_spells_monture_fantome.md)
- Source: (SRD p167)
- 3th-level illusion (ritual)
- **Casting Time :** 1 minute
@@ -40298,7 +40298,7 @@ For the duration, you or a creature you choose can ride the steed. The creature
# Planar Ally
-- MDR: [Allié planaire](hd_spells_allie_planaire.md)
+- Alias: [Allié planaire](hd_spells_allie_planaire.md)
- Source: (SRD p168)
- 6th-level conjuration
- **Casting Time :** 10 minutes
@@ -40329,7 +40329,7 @@ A creature enlisted to join your group counts as a member of it, receiving a ful
# Planar Binding
-- MDR: [Entrave planaire](hd_spells_entrave_planaire.md)
+- Alias: [Entrave planaire](hd_spells_entrave_planaire.md)
- Source: (SRD p168)
- 5th-level abjuration
- **Casting Time :** 1 hour
@@ -40352,7 +40352,7 @@ A bound creature must follow your instructions to the best of its ability. You m
# Plane Shift
-- MDR: [Changement de plan](hd_spells_changement_de_plan.md)
+- Alias: [Changement de plan](hd_spells_changement_de_plan.md)
- Source: (SRD p168)
- 7th-level conjuration
- **Casting Time :** 1 action
@@ -40375,7 +40375,7 @@ You can use this spell to banish an unwilling creature to another plane. Choose
# Plant Growth
-- MDR: [Croissance végétale](hd_spells_croissance_vegetale.md)
+- Alias: [Croissance végétale](hd_spells_croissance_vegetale.md)
- Source: (SRD p169)
- 3th-level transmutation
- **Casting Time :** 1 action or 8 hours
@@ -40400,7 +40400,7 @@ If you cast this spell over 8 hours, you enrich the land. All plants in a half-m
# Poison Spray
-- MDR: [Bouffée de poison](hd_spells_bouffee_de_poison.md)
+- Alias: [Bouffée de poison](hd_spells_bouffee_de_poison.md)
- Source: (SRD p169)
- Conjuration cantrip
- **Casting Time :** 1 action
@@ -40421,7 +40421,7 @@ This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th leve
# Polymorph
-- MDR: [Métamorphose](hd_spells_metamorphose.md)
+- Alias: [Métamorphose](hd_spells_metamorphose.md)
- Source: (SRD p169)
- 4th-level transmutation
- **Casting Time :** 1 action
@@ -40448,7 +40448,7 @@ The target's gear melds into the new form. The creature can't activate, use, wie
# Power Word Kill
-- MDR: [Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)
+- Alias: [Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)
- Source: (SRD p170)
- 9th-level enchantment
- **Casting Time :** 1 action
@@ -40467,7 +40467,7 @@ You utter a word of power that can compel one creature you can see within range
# Power Word Stun
-- MDR: [Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)
+- Alias: [Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)
- Source: (SRD p170)
- 8th-level enchantment
- **Casting Time :** 1 action
@@ -40488,7 +40488,7 @@ The stunned target must make a Constitution saving throw at the end of each of i
# Prayer of Healing
-- MDR: [Prière de soins](hd_spells_priere_de_soins.md)
+- Alias: [Prière de soins](hd_spells_priere_de_soins.md)
- Source: (SRD p170)
- 2nd-level evocation
- **Casting Time :** 10 minutes
@@ -40509,7 +40509,7 @@ Up to six creatures of your choice that you can see within range each regain hit
# Prestidigitation
-- MDR: [Prestidigitation](hd_spells_prestidigitation.md)
+- Alias: [Prestidigitation](hd_spells_prestidigitation.md)
- Source: (SRD p170)
- Transmutation cantrip
- **Casting Time :** 1 action
@@ -40542,7 +40542,7 @@ If you cast this spell multiple times, you can have up to three of its non-insta
# Prismatic Spray
-- MDR: [Embruns prismatiques](hd_spells_embruns_prismatiques.md)
+- Alias: [Embruns prismatiques](hd_spells_embruns_prismatiques.md)
- Source: (SRD p170)
- 7th-level evocation
- **Casting Time :** 1 action
@@ -40577,7 +40577,7 @@ Eight multicolored rays of light flash from your hand. Each ray is a different c
# Prismatic Wall
-- MDR: [Mur prismatique](hd_spells_mur_prismatique.md)
+- Alias: [Mur prismatique](hd_spells_mur_prismatique.md)
- Source: (SRD p171)
- 9th-level abjuration
- **Casting Time :** 1 action
@@ -40618,7 +40618,7 @@ While this layer is in place, spells can't be cast through the wall. The layer i
# Produce Flame
-- MDR: [Produire une flamme](hd_spells_produire_une_flamme.md)
+- Alias: [Produire une flamme](hd_spells_produire_une_flamme.md)
- Source: (SRD p172)
- Conjuration cantrip
- **Casting Time :** 1 action
@@ -40641,7 +40641,7 @@ This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level
# Programmed Illusion
-- MDR: [Illusion programmée](hd_spells_illusion_programmee.md)
+- Alias: [Illusion programmée](hd_spells_illusion_programmee.md)
- Source: (SRD p172)
- 6th-level illusion
- **Casting Time :** 1 action
@@ -40666,7 +40666,7 @@ Physical interaction with the image reveals it to be an illusion, because things
# Project Image
-- MDR: [Image projetée](hd_spells_image_projetee.md)
+- Alias: [Image projetée](hd_spells_image_projetee.md)
- Source: (SRD p172)
- 7th-level illusion
- **Casting Time :** 1 action
@@ -40691,7 +40691,7 @@ Physical interaction with the image reveals it to be an illusion, because things
# Protection from Energy
-- MDR: [Protection contre les énergies](hd_spells_protection_contre_les_energies.md)
+- Alias: [Protection contre les énergies](hd_spells_protection_contre_les_energies.md)
- Source: (SRD p173)
- 3th-level abjuration
- **Casting Time :** 1 action
@@ -40710,7 +40710,7 @@ For the duration, the willing creature you touch has resistance to one damage ty
# Protection from Evil and Good
-- MDR: [Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)
+- Alias: [Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)
- Source: (SRD p173)
- 1st-level abjuration
- **Casting Time :** 1 action
@@ -40731,7 +40731,7 @@ The protection grants several benefits. Creatures of those types have disadvanta
# Protection from Poison
-- MDR: [Protection contre le poison](hd_spells_protection_contre_le_poison.md)
+- Alias: [Protection contre le poison](hd_spells_protection_contre_le_poison.md)
- Source: (SRD p173)
- 2nd-level abjuration
- **Casting Time :** 1 action
@@ -40752,7 +40752,7 @@ For the duration, the target has advantage on saving throws against being poison
# Purify Food and Drink
-- MDR: [Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)
+- Alias: [Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)
- Source: (SRD p173)
- 1st-level transmutation (ritual)
- **Casting Time :** 1 action
@@ -40771,7 +40771,7 @@ All nonmagical food and drink within a 5-foot-radius sphere centered on a point
# Raise Dead
-- MDR: [Rappel à la vie](hd_spells_rappel_a_la_vie.md)
+- Alias: [Rappel à la vie](hd_spells_rappel_a_la_vie.md)
- Source: (SRD p173)
- 5th-level necromancy
- **Casting Time :** 1 hour
@@ -40796,7 +40796,7 @@ Coming back from the dead is an ordeal. The target takes a -4 penalty to all att
# Telepathic Bond
-- MDR: [Lien télépathique](hd_spells_lien_telepathique.md)
+- Alias: [Lien télépathique](hd_spells_lien_telepathique.md)
- Source: (SRD p185)
- 5th-level divination (ritual)
- **Casting Time :** 1 action
@@ -40817,7 +40817,7 @@ Until the spell ends, the targets can communicate telepathically through the bon
# Ray of Enfeeblement
-- MDR: [Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)
+- Alias: [Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)
- Source: (SRD p174)
- 2nd-level necromancy
- **Casting Time :** 1 action
@@ -40838,7 +40838,7 @@ At the end of each of the target's turns, it can make a Constitution saving thro
# Ray of Frost
-- MDR: [Rayon de givre](hd_spells_rayon_de_givre.md)
+- Alias: [Rayon de givre](hd_spells_rayon_de_givre.md)
- Source: (SRD p174)
- Evocation cantrip
- **Casting Time :** 1 action
@@ -40859,7 +40859,7 @@ The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (
# Regenerate
-- MDR: [Régénération](hd_spells_regeneration.md)
+- Alias: [Régénération](hd_spells_regeneration.md)
- Source: (SRD p174)
- 7th-level transmutation
- **Casting Time :** 1 minute
@@ -40880,7 +40880,7 @@ The target's severed body members (fingers, legs, tails, and so on), if any, are
# Reincarnate
-- MDR: [Réincarnation](hd_spells_reincarnation.md)
+- Alias: [Réincarnation](hd_spells_reincarnation.md)
- Source: (SRD p174)
- 5th-level transmutation
- **Casting Time :** 1 hour
@@ -40922,7 +40922,7 @@ The reincarnated creature recalls its former life and experiences. It retains th
# Remove Curse
-- MDR: [Lever une malédiction](hd_spells_lever_une_malediction.md)
+- Alias: [Lever une malédiction](hd_spells_lever_une_malediction.md)
- Source: (SRD p174)
- 3th-level abjuration
- **Casting Time :** 1 action
@@ -40941,7 +40941,7 @@ At your touch, all curses affecting one creature or object end. If the object is
# Resistance
-- MDR: [Résistance](hd_spells_resistance.md)
+- Alias: [Résistance](hd_spells_resistance.md)
- Source: (SRD p175)
- Abjuration cantrip
- **Casting Time :** 1 action
@@ -40960,7 +40960,7 @@ You touch one willing creature. Once before the spell ends, the target can roll
# Resurrection
-- MDR: [Résurrection](hd_spells_resurrection.md)
+- Alias: [Résurrection](hd_spells_resurrection.md)
- Source: (SRD p175)
- 7th-level necromancy
- **Casting Time :** 1 hour
@@ -40987,7 +40987,7 @@ Casting this spell to restore life to a creature that has been dead for one year
# Reverse Gravity
-- MDR: [Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)
+- Alias: [Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)
- Source: (SRD p175)
- 7th-level transmutation
- **Casting Time :** 1 action
@@ -41010,7 +41010,7 @@ At the end of the duration, affected objects and creatures fall back down.
# Revivify
-- MDR: [Revigorer](hd_spells_revigorer.md)
+- Alias: [Revigorer](hd_spells_revigorer.md)
- Source: (SRD p175)
- 3th-level necromancy
- **Casting Time :** 1 action
@@ -41029,7 +41029,7 @@ You touch a creature that has died within the last minute. That creature returns
# Rope Trick
-- MDR: [Corde enchantée](hd_spells_corde_enchantee.md)
+- Alias: [Corde enchantée](hd_spells_corde_enchantee.md)
- Source: (SRD p176)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -41054,7 +41054,7 @@ Anything inside the extradimensional space drops out when the spell ends.
# Sacred Flame
-- MDR: [Flamme sacrée](hd_spells_flamme_sacree.md)
+- Alias: [Flamme sacrée](hd_spells_flamme_sacree.md)
- Source: (SRD p176)
- Evocation cantrip
- **Casting Time :** 1 action
@@ -41075,7 +41075,7 @@ The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (
# Sanctuary
-- MDR: [Sanctuaire](hd_spells_sanctuaire.md)
+- Alias: [Sanctuaire](hd_spells_sanctuaire.md)
- Source: (SRD p176)
- 1st-level abjuration
- **Casting Time :** 1 bonus action
@@ -41096,7 +41096,7 @@ If the warded creature makes an attack or casts a spell that affects an enemy cr
# Scorching Ray
-- MDR: [Rayon ardent](hd_spells_rayon_ardent.md)
+- Alias: [Rayon ardent](hd_spells_rayon_ardent.md)
- Source: (SRD p176)
- 2nd-level evocation
- **Casting Time :** 1 action
@@ -41119,7 +41119,7 @@ Make a ranged spell attack for each ray. On a hit, the target takes 2d6 fire dam
# Scrying
-- MDR: [Scrutation](hd_spells_scrutation.md)
+- Alias: [Scrutation](hd_spells_scrutation.md)
- Source: (SRD p176)
- 5th-level divination
- **Casting Time :** 10 minutes
@@ -41152,7 +41152,7 @@ On a successful save, the target isn't affected, and you can't use this spell ag
# See Invisibility
-- MDR: [Voir l'invisible](hd_spells_voir_linvisible.md)
+- Alias: [Voir l'invisible](hd_spells_voir_linvisible.md)
- Source: (SRD p177)
- 2nd-level divination
- **Casting Time :** 1 action
@@ -41171,7 +41171,7 @@ For the duration, you see invisible creatures and objects as if they were visibl
# Seeming
-- MDR: [Apparence trompeuse](hd_spells_apparence_trompeuse.md)
+- Alias: [Apparence trompeuse](hd_spells_apparence_trompeuse.md)
- Source: (SRD p177)
- 5th-level illusion
- **Casting Time :** 1 action
@@ -41196,7 +41196,7 @@ A creature can use its action to inspect a target and make an Intelligence (Inve
# Sending
-- MDR: [Envoi de message](hd_spells_envoi_de_message.md)
+- Alias: [Envoi de message](hd_spells_envoi_de_message.md)
- Source: (SRD p177)
- 3th-level evocation
- **Casting Time :** 1 action
@@ -41217,7 +41217,7 @@ You can send the message across any distance and even to other planes of existen
# Sequester
-- MDR: [Séquestration](hd_spells_sequestration.md)
+- Alias: [Séquestration](hd_spells_sequestration.md)
- Source: (SRD p178)
- 7th-level transmutation
- **Casting Time :** 1 action
@@ -41240,7 +41240,7 @@ You can set a condition for the spell to end early. The condition can be anythin
# Shapechange
-- MDR: [Changement de forme](hd_spells_changement_de_forme.md)
+- Alias: [Changement de forme](hd_spells_changement_de_forme.md)
- Source: (SRD p178)
- 9th-level transmutation
- **Casting Time :** 1 action
@@ -41269,7 +41269,7 @@ During this spell's duration, you can use your action to assume a different form
# Shatter
-- MDR: [Briser](hd_spells_briser.md)
+- Alias: [Briser](hd_spells_briser.md)
- Source: (SRD p178)
- 2nd-level evocation
- **Casting Time :** 1 action
@@ -41292,7 +41292,7 @@ A nonmagical object that isn't being worn or carried also takes the damage if it
# Shield
-- MDR: [Bouclier](hd_spells_bouclier.md)
+- Alias: [Bouclier](hd_spells_bouclier.md)
- Source: (SRD p179)
- 1st-level abjuration
- **Casting Time :** 1 reaction, which you take when you are hit by an attack or targeted by the magic missile spell
@@ -41311,7 +41311,7 @@ An invisible barrier of magical force appears and protects you. Until the start
# Shield of Faith
-- MDR: [Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)
+- Alias: [Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)
- Source: (SRD p179)
- 1st-level abjuration
- **Casting Time :** 1 bonus action
@@ -41330,7 +41330,7 @@ A shimmering field appears and surrounds a creature of your choice within range,
# Shillelagh
-- MDR: [Gourdin magique](hd_spells_gourdin_magique.md)
+- Alias: [Gourdin magique](hd_spells_gourdin_magique.md)
- Source: (SRD p179)
- Transmutation cantrip
- **Casting Time :** 1 bonus action
@@ -41349,7 +41349,7 @@ The wood of a club or quarterstaff you are holding is imbued with nature's power
# Shocking Grasp
-- MDR: [Poigne électrique](hd_spells_poigne_electrique.md)
+- Alias: [Poigne électrique](hd_spells_poigne_electrique.md)
- Source: (SRD p179)
- Evocation cantrip
- **Casting Time :** 1 action
@@ -41370,7 +41370,7 @@ The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (
# Silence
-- MDR: [Silence](hd_spells_silence.md)
+- Alias: [Silence](hd_spells_silence.md)
- Source: (SRD p179)
- 2nd-level illusion (ritual)
- **Casting Time :** 1 action
@@ -41391,7 +41391,7 @@ Casting a spell that includes a verbal component is impossible there.
# Silent Image
-- MDR: [Image silencieuse](hd_spells_image_silencieuse.md)
+- Alias: [Image silencieuse](hd_spells_image_silencieuse.md)
- Source: (SRD p179)
- 1st-level illusion
- **Casting Time :** 1 action
@@ -41414,7 +41414,7 @@ Physical interaction with the image reveals it to be an illusion, because things
# Simulacrum
-- MDR: [Simulacre](hd_spells_simulacre.md)
+- Alias: [Simulacre](hd_spells_simulacre.md)
- Source: (SRD p180)
- 7th-level illusion
- **Casting Time :** 12 hours
@@ -41439,7 +41439,7 @@ If you cast this spell again, any currently active duplicates you created with t
# Sleep
-- MDR: [Sommeil](hd_spells_sommeil.md)
+- Alias: [Sommeil](hd_spells_sommeil.md)
- Source: (SRD p180)
- 1st-level enchantment
- **Casting Time :** 1 action
@@ -41464,7 +41464,7 @@ Undead and creatures immune to being charmed aren't affected by this spell.
# Sleet Storm
-- MDR: [Tempête de neige](hd_spells_tempete_de_neige.md)
+- Alias: [Tempête de neige](hd_spells_tempete_de_neige.md)
- Source: (SRD p180)
- 3th-level conjuration
- **Casting Time :** 1 action
@@ -41487,7 +41487,7 @@ If a creature is concentrating in the spell's area, the creature must make a suc
# Slow
-- MDR: [Lenteur](hd_spells_lenteur.md)
+- Alias: [Lenteur](hd_spells_lenteur.md)
- Source: (SRD p180)
- 3th-level transmutation
- **Casting Time :** 1 action
@@ -41512,7 +41512,7 @@ A creature affected by this spell makes another Wisdom saving throw at the end o
# Spare the Dying
-- MDR: [Épargner les mourants](hd_spells_epargner_les_mourants.md)
+- Alias: [Épargner les mourants](hd_spells_epargner_les_mourants.md)
- Source: (SRD p181)
- Necromancy cantrip
- **Casting Time :** 1 action
@@ -41531,7 +41531,7 @@ You touch a living creature that has 0 hit points. The creature becomes stable.
# Speak with Animals
-- MDR: [Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)
+- Alias: [Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)
- Source: (SRD p181)
- 1st-level divination (ritual)
- **Casting Time :** 1 action
@@ -41550,7 +41550,7 @@ You gain the ability to comprehend and verbally communicate with beasts for the
# Speak with Dead
-- MDR: [Communication avec les morts](hd_spells_communication_avec_les_morts.md)
+- Alias: [Communication avec les morts](hd_spells_communication_avec_les_morts.md)
- Source: (SRD p181)
- 3th-level necromancy
- **Casting Time :** 1 action
@@ -41571,7 +41571,7 @@ Until the spell ends, you can ask the corpse up to five questions. The corpse kn
# Speak with Plants
-- MDR: [Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)
+- Alias: [Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)
- Source: (SRD p181)
- 3th-level transmutation
- **Casting Time :** 1 action
@@ -41598,7 +41598,7 @@ This spell can cause the plants created by the _[entangle](spells_vo.hd#entangle
# Spider Climb
-- MDR: [Pattes d'araignée](hd_spells_pattes_daraignee.md)
+- Alias: [Pattes d'araignée](hd_spells_pattes_daraignee.md)
- Source: (SRD p182)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -41617,7 +41617,7 @@ Until the spell ends, one willing creature you touch gains the ability to move u
# Spike Growth
-- MDR: [Croissance d'épines](hd_spells_croissance_depines.md)
+- Alias: [Croissance d'épines](hd_spells_croissance_depines.md)
- Source: (SRD p182)
- 2nd-level transmutation
- **Casting Time :** 1 action
@@ -41638,7 +41638,7 @@ The transformation of the ground is camouflaged to look natural. Any creature th
# Spirit Guardians
-- MDR: [Esprits gardiens](hd_spells_esprits_gardiens.md)
+- Alias: [Esprits gardiens](hd_spells_esprits_gardiens.md)
- Source: (SRD p182)
- 3th-level conjuration
- **Casting Time :** 1 action
@@ -41661,7 +41661,7 @@ When you cast this spell, you can designate any number of creatures you can see
# Spiritual Weapon
-- MDR: [Arme spirituelle](hd_spells_arme_spirituelle.md)
+- Alias: [Arme spirituelle](hd_spells_arme_spirituelle.md)
- Source: (SRD p182)
- 2nd-level evocation
- **Casting Time :** 1 bonus action
@@ -41686,7 +41686,7 @@ The weapon can take whatever form you choose. Clerics of deities who are associa
# Stinking Cloud
-- MDR: [Nuage puant](hd_spells_nuage_puant.md)
+- Alias: [Nuage puant](hd_spells_nuage_puant.md)
- Source: (SRD p182)
- 3th-level conjuration
- **Casting Time :** 1 action
@@ -41709,7 +41709,7 @@ A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds.
# Stone Shape
-- MDR: [Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)
+- Alias: [Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)
- Source: (SRD p183)
- 4th-level transmutation
- **Casting Time :** 1 action
@@ -41728,7 +41728,7 @@ You touch a stone object of Medium size or smaller or a section of stone no more
# Stoneskin
-- MDR: [Peau de pierre](hd_spells_peau_de_pierre.md)
+- Alias: [Peau de pierre](hd_spells_peau_de_pierre.md)
- Source: (SRD p183)
- 4th-level abjuration
- **Casting Time :** 1 action
@@ -41747,7 +41747,7 @@ This spell turns the flesh of a willing creature you touch as hard as stone. Unt
# Storm of Vengeance
-- MDR: [Tempête vengeresse](hd_spells_tempete_vengeresse.md)
+- Alias: [Tempête vengeresse](hd_spells_tempete_vengeresse.md)
- Source: (SRD p183)
- 9th-level conjuration
- **Casting Time :** 1 action
@@ -41776,7 +41776,7 @@ Each round you maintain concentration on this spell, the storm produces addition
# Suggestion
-- MDR: [Suggestion](hd_spells_suggestion.md)
+- Alias: [Suggestion](hd_spells_suggestion.md)
- Source: (SRD p183)
- 2nd-level enchantment
- **Casting Time :** 1 action
@@ -41801,7 +41801,7 @@ If you or any of your companions damage the target, the spell ends.
# Sunbeam
-- MDR: [Rayon de soleil](hd_spells_rayon_de_soleil.md)
+- Alias: [Rayon de soleil](hd_spells_rayon_de_soleil.md)
- Source: (SRD p184)
- 6th-level evocation
- **Casting Time :** 1 action
@@ -41824,7 +41824,7 @@ For the duration, a mote of brilliant radiance shines in your hand. It sheds bri
# Sunburst
-- MDR: [Éclat du soleil](hd_spells_eclat_du_soleil.md)
+- Alias: [Éclat du soleil](hd_spells_eclat_du_soleil.md)
- Source: (SRD p184)
- 8th-level evocation
- **Casting Time :** 1 action
@@ -41847,7 +41847,7 @@ This spell dispels any darkness in its area that was created by a spell.
# Symbol
-- MDR: [Symbole](hd_spells_symbole.md)
+- Alias: [Symbole](hd_spells_symbole.md)
- Source: (SRD p184)
- 7th-level abjuration
- **Casting Time :** 1 minute
@@ -41890,7 +41890,7 @@ When you inscribe the glyph, choose one of the options below for its effect. Onc
# Hideous Laughter
-- MDR: [Fou rire](hd_spells_fou_rire.md)
+- Alias: [Fou rire](hd_spells_fou_rire.md)
- Source: (SRD p154)
- 1st-level enchantment
- **Casting Time :** 1 action
@@ -41911,7 +41911,7 @@ At the end of each of its turns, and each time it takes damage, the target can m
# Telekinesis
-- MDR: [Télékinésie](hd_spells_telekinesie.md)
+- Alias: [Télékinésie](hd_spells_telekinesie.md)
- Source: (SRD p185)
- 5th-level transmutation
- **Casting Time :** 1 action
@@ -41936,7 +41936,7 @@ You can exert fine control on objects with your telekinetic grip, such as manipu
# Teleport
-- MDR: [Téléportation](hd_spells_teleportation.md)
+- Alias: [Téléportation](hd_spells_teleportation.md)
- Source: (SRD p185)
- 7th-level conjuration
- **Casting Time :** 1 action
@@ -41989,7 +41989,7 @@ The destination you choose must be known to you, and it must be on the same plan
# Teleportation Circle
-- MDR: [Cercle de téléportation](hd_spells_cercle_de_teleportation.md)
+- Alias: [Cercle de téléportation](hd_spells_cercle_de_teleportation.md)
- Source: (SRD p186)
- 5th-level conjuration
- **Casting Time :** 1 minute
@@ -42012,7 +42012,7 @@ You can create a permanent teleportation circle by casting this spell in the sam
# Floating Disk
-- MDR: [Disque flottant](hd_spells_disque_flottant.md)
+- Alias: [Disque flottant](hd_spells_disque_flottant.md)
- Source: (SRD p146)
- 1st-level conjuration (ritual)
- **Casting Time :** 1 action
@@ -42035,7 +42035,7 @@ If you move more than 100 feet from the disk (typically because it can't move ar
# Thaumaturgy
-- MDR: [Thaumaturgie](hd_spells_thaumaturgie.md)
+- Alias: [Thaumaturgie](hd_spells_thaumaturgie.md)
- Source: (SRD p187)
- Transmutation cantrip
- **Casting Time :** 1 action
@@ -42068,7 +42068,7 @@ If you cast this spell multiple times, you can have up to three of its 1-minute
# Thunderwave
-- MDR: [Vague tonnante](hd_spells_vague_tonnante.md)
+- Alias: [Vague tonnante](hd_spells_vague_tonnante.md)
- Source: (SRD p187)
- 1st-level evocation
- **Casting Time :** 1 action
@@ -42091,7 +42091,7 @@ In addition, unsecured objects that are completely within the area of effect are
# Time Stop
-- MDR: [Arrêt du temps](hd_spells_arret_du_temps.md)
+- Alias: [Arrêt du temps](hd_spells_arret_du_temps.md)
- Source: (SRD p187)
- 9th-level transmutation
- **Casting Time :** 1 action
@@ -42112,7 +42112,7 @@ This spell ends if one of the actions you use during this period, or any effects
# Tongues
-- MDR: [Langues](hd_spells_langues.md)
+- Alias: [Langues](hd_spells_langues.md)
- Source: (SRD p187)
- 3th-level divination
- **Casting Time :** 1 action
@@ -42131,7 +42131,7 @@ This spell grants the creature you touch the ability to understand any spoken la
# Transport via Plants
-- MDR: [Transport végétal](hd_spells_transport_vegetal.md)
+- Alias: [Transport végétal](hd_spells_transport_vegetal.md)
- Source: (SRD p188)
- 6th-level conjuration
- **Casting Time :** 1 action
@@ -42150,7 +42150,7 @@ This spell creates a magical link between a Large or larger inanimate plant with
# Tree Stride
-- MDR: [Passage par les arbres](hd_spells_passage_par_les_arbres.md)
+- Alias: [Passage par les arbres](hd_spells_passage_par_les_arbres.md)
- Source: (SRD p188)
- 5th-level conjuration
- **Casting Time :** 1 action
@@ -42171,7 +42171,7 @@ You can use this transportation ability once per round for the duration. You mus
# True Polymorph
-- MDR: [Métamorphose suprême](hd_spells_metamorphose_supreme.md)
+- Alias: [Métamorphose suprême](hd_spells_metamorphose_supreme.md)
- Source: (SRD p188)
- 9th-level transmutation
- **Casting Time :** 1 action
@@ -42206,7 +42206,7 @@ If the spell becomes permanent, you no longer control the creature. It might rem
# True Resurrection
-- MDR: [Résurrection suprême](hd_spells_resurrection_supreme.md)
+- Alias: [Résurrection suprême](hd_spells_resurrection_supreme.md)
- Source: (SRD p189)
- 9th-level necromancy
- **Casting Time :** 1 hour
@@ -42229,7 +42229,7 @@ The spell can even provide a new body if the original no longer exists, in which
# True Seeing
-- MDR: [Vision suprême](hd_spells_vision_supreme.md)
+- Alias: [Vision suprême](hd_spells_vision_supreme.md)
- Source: (SRD p189)
- 6th-level divination
- **Casting Time :** 1 action
@@ -42248,7 +42248,7 @@ This spell gives the willing creature you touch the ability to see things as the
# True Strike
-- MDR: [Viser juste](hd_spells_viser_juste.md)
+- Alias: [Viser juste](hd_spells_viser_juste.md)
- Source: (SRD p189)
- Divination cantrip
- **Casting Time :** 1 action
@@ -42267,7 +42267,7 @@ You extend your hand and point a finger at a target in range. Your magic grants
# Unseen Servant
-- MDR: [Serviteur invisible](hd_spells_serviteur_invisible.md)
+- Alias: [Serviteur invisible](hd_spells_serviteur_invisible.md)
- Source: (SRD p189)
- 1st-level conjuration (ritual)
- **Casting Time :** 1 action
@@ -42290,7 +42290,7 @@ If you command the servant to perform a task that would move it more than 60 fee
# Vampiric Touch
-- MDR: [Caresse du vampire](hd_spells_caresse_du_vampire.md)
+- Alias: [Caresse du vampire](hd_spells_caresse_du_vampire.md)
- Source: (SRD p189)
- 3th-level necromancy
- **Casting Time :** 1 action
@@ -42311,7 +42311,7 @@ The touch of your shadow-wreathed hand can siphon life force from others to heal
# Vicious Mockery
-- MDR: [Moquerie cruelle](hd_spells_moquerie_cruelle.md)
+- Alias: [Moquerie cruelle](hd_spells_moquerie_cruelle.md)
- Source: (SRD p189)
- Enchantment cantrip
- **Casting Time :** 1 action
@@ -42332,7 +42332,7 @@ This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level
# Wall of Fire
-- MDR: [Mur de feu](hd_spells_mur_de_feu.md)
+- Alias: [Mur de feu](hd_spells_mur_de_feu.md)
- Source: (SRD p190)
- 4th-level evocation
- **Casting Time :** 1 action
@@ -42359,7 +42359,7 @@ The other side of the wall deals no damage.
# Wall of Force
-- MDR: [Mur de force](hd_spells_mur_de_force.md)
+- Alias: [Mur de force](hd_spells_mur_de_force.md)
- Source: (SRD p190)
- 5th-level evocation
- **Casting Time :** 1 action
@@ -42380,7 +42380,7 @@ Nothing can physically pass through the wall. It is immune to all damage and can
# Wall of Ice
-- MDR: [Mur de glace](hd_spells_mur_de_glace.md)
+- Alias: [Mur de glace](hd_spells_mur_de_glace.md)
- Source: (SRD p190)
- 6th-level evocation
- **Casting Time :** 1 action
@@ -42405,7 +42405,7 @@ The wall is an object that can be damaged and thus breached. It has AC 12 and 30
# Wall of Stone
-- MDR: [Mur de pierre](hd_spells_mur_de_pierre.md)
+- Alias: [Mur de pierre](hd_spells_mur_de_pierre.md)
- Source: (SRD p190)
- 5th-level evocation
- **Casting Time :** 1 action
@@ -42434,7 +42434,7 @@ If you maintain your concentration on this spell for its whole duration, the wal
# Wall of Thorns
-- MDR: [Mur d'épines](hd_spells_mur_depines.md)
+- Alias: [Mur d'épines](hd_spells_mur_depines.md)
- Source: (SRD p191)
- 6th-level conjuration
- **Casting Time :** 1 action
@@ -42459,7 +42459,7 @@ A creature can move through the wall, albeit slowly and painfully. For every 1 f
# Warding Bond
-- MDR: [Lien de protection](hd_spells_lien_de_protection.md)
+- Alias: [Lien de protection](hd_spells_lien_de_protection.md)
- Source: (SRD p191)
- 2nd-level abjuration
- **Casting Time :** 1 action
@@ -42480,7 +42480,7 @@ The spell ends if you drop to 0 hit points or if you and the target become separ
# Water Breathing
-- MDR: [Respiration aquatique](hd_spells_respiration_aquatique.md)
+- Alias: [Respiration aquatique](hd_spells_respiration_aquatique.md)
- Source: (SRD p191)
- 3th-level transmutation (ritual)
- **Casting Time :** 1 action
@@ -42499,7 +42499,7 @@ This spell grants up to ten willing creatures you can see within range the abili
# Water Walk
-- MDR: [Marche sur l'eau](hd_spells_marche_sur_leau.md)
+- Alias: [Marche sur l'eau](hd_spells_marche_sur_leau.md)
- Source: (SRD p191)
- 3th-level transmutation (ritual)
- **Casting Time :** 1 action
@@ -42520,7 +42520,7 @@ If you target a creature submerged in a liquid, the spell carries the target to
# Web
-- MDR: [Toile d'araignée](hd_spells_toile_daraignee.md)
+- Alias: [Toile d'araignée](hd_spells_toile_daraignee.md)
- Source: (SRD p192)
- 2nd-level conjuration
- **Casting Time :** 1 action
@@ -42547,7 +42547,7 @@ The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1
# Weird
-- MDR: [Étrangeté](hd_spells_etrangete.md)
+- Alias: [Étrangeté](hd_spells_etrangete.md)
- Source: (SRD p192)
- 9th-level illusion
- **Casting Time :** 1 action
@@ -42566,7 +42566,7 @@ Drawing on the deepest fears of a group of creatures, you create illusory creatu
# Wind Walk
-- MDR: [Marche sur le vent](hd_spells_marche_sur_le_vent.md)
+- Alias: [Marche sur le vent](hd_spells_marche_sur_le_vent.md)
- Source: (SRD p192)
- 6th-level transmutation
- **Casting Time :** 1 minute
@@ -42587,7 +42587,7 @@ If a creature is in cloud form and flying when the effect ends, the creature des
# Wind Wall
-- MDR: [Mur de vent](hd_spells_mur_de_vent.md)
+- Alias: [Mur de vent](hd_spells_mur_de_vent.md)
- Source: (SRD p192)
- 3th-level evocation
- **Casting Time :** 1 action
@@ -42610,7 +42610,7 @@ The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flyin
# Wish
-- MDR: [Souhait](hd_spells_souhait.md)
+- Alias: [Souhait](hd_spells_souhait.md)
- Source: (SRD p193)
- 9th-level conjuration
- **Casting Time :** 1 action
@@ -42647,7 +42647,7 @@ The stress of casting this spell to produce any effect other than duplicating an
# Word of Recall
-- MDR: [Mot de retour](hd_spells_mot_de_retour.md)
+- Alias: [Mot de retour](hd_spells_mot_de_retour.md)
- Source: (SRD p193)
- 6th-level conjuration
- **Casting Time :** 1 action
@@ -42668,7 +42668,7 @@ You must designate a sanctuary by casting this spell within a location, such as
# Zone of Truth
-- MDR: [Zone de vérité](hd_spells_zone_de_verite.md)
+- Alias: [Zone de vérité](hd_spells_zone_de_verite.md)
- Source: (SRD p193)
- 2nd-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_acid_arrow.md b/Data/HD/srd_spells_acid_arrow.md
index 91539608..1748b831 100644
--- a/Data/HD/srd_spells_acid_arrow.md
+++ b/Data/HD/srd_spells_acid_arrow.md
@@ -4,7 +4,7 @@
# Acid Arrow
-- MDR: [Flèche acide](hd_spells_fleche_acide.md)
+- Alias: [Flèche acide](hd_spells_fleche_acide.md)
- Source: (SRD p114)
- 2nd-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_acid_splash.md b/Data/HD/srd_spells_acid_splash.md
index c9817d5c..3310c812 100644
--- a/Data/HD/srd_spells_acid_splash.md
+++ b/Data/HD/srd_spells_acid_splash.md
@@ -4,7 +4,7 @@
# Acid Splash
-- MDR: [Aspersion acide](hd_spells_aspersion_acide.md)
+- Alias: [Aspersion acide](hd_spells_aspersion_acide.md)
- Source: (SRD p114)
- Conjuration cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_aid.md b/Data/HD/srd_spells_aid.md
index e42e8cba..9a0a490c 100644
--- a/Data/HD/srd_spells_aid.md
+++ b/Data/HD/srd_spells_aid.md
@@ -4,7 +4,7 @@
# Aid
-- MDR: [Aide](hd_spells_aide.md)
+- Alias: [Aide](hd_spells_aide.md)
- Source: (SRD p114)
- 2nd-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_alarm.md b/Data/HD/srd_spells_alarm.md
index f90de546..58599c53 100644
--- a/Data/HD/srd_spells_alarm.md
+++ b/Data/HD/srd_spells_alarm.md
@@ -4,7 +4,7 @@
# Alarm
-- MDR: [Alarme](hd_spells_alarme.md)
+- Alias: [Alarme](hd_spells_alarme.md)
- Source: (SRD p114)
- 1st-level abjuration (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_alter_self.md b/Data/HD/srd_spells_alter_self.md
index 41a89995..1fa400d8 100644
--- a/Data/HD/srd_spells_alter_self.md
+++ b/Data/HD/srd_spells_alter_self.md
@@ -4,7 +4,7 @@
# Alter Self
-- MDR: [Modifier son apparence](hd_spells_modifier_son_apparence.md)
+- Alias: [Modifier son apparence](hd_spells_modifier_son_apparence.md)
- Source: (SRD p114)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_animal_friendship.md b/Data/HD/srd_spells_animal_friendship.md
index f6a6220b..7b14aa4c 100644
--- a/Data/HD/srd_spells_animal_friendship.md
+++ b/Data/HD/srd_spells_animal_friendship.md
@@ -4,7 +4,7 @@
# Animal Friendship
-- MDR: [Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)
+- Alias: [Amitié avec les animaux](hd_spells_amitie_avec_les_animaux.md)
- Source: (SRD p115)
- 1st-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_animal_messenger.md b/Data/HD/srd_spells_animal_messenger.md
index 95a7028c..5bb61488 100644
--- a/Data/HD/srd_spells_animal_messenger.md
+++ b/Data/HD/srd_spells_animal_messenger.md
@@ -4,7 +4,7 @@
# Animal Messenger
-- MDR: [Messager animal](hd_spells_messager_animal.md)
+- Alias: [Messager animal](hd_spells_messager_animal.md)
- Source: (SRD p115)
- 2nd-level enchantment (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_animal_shapes.md b/Data/HD/srd_spells_animal_shapes.md
index 6eb7ab32..c3b2aa3a 100644
--- a/Data/HD/srd_spells_animal_shapes.md
+++ b/Data/HD/srd_spells_animal_shapes.md
@@ -4,7 +4,7 @@
# Animal Shapes
-- MDR: [Formes animales](hd_spells_formes_animales.md)
+- Alias: [Formes animales](hd_spells_formes_animales.md)
- Source: (SRD p115)
- 8th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_animate_dead.md b/Data/HD/srd_spells_animate_dead.md
index c8226593..838e8343 100644
--- a/Data/HD/srd_spells_animate_dead.md
+++ b/Data/HD/srd_spells_animate_dead.md
@@ -4,7 +4,7 @@
# Animate Dead
-- MDR: [Animation des morts](hd_spells_animation_des_morts.md)
+- Alias: [Animation des morts](hd_spells_animation_des_morts.md)
- Source: (SRD p115)
- 3th-level necromancy
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_animate_objects.md b/Data/HD/srd_spells_animate_objects.md
index 90a34f19..4115ea77 100644
--- a/Data/HD/srd_spells_animate_objects.md
+++ b/Data/HD/srd_spells_animate_objects.md
@@ -4,7 +4,7 @@
# Animate Objects
-- MDR: [Animation des objets](hd_spells_animation_des_objets.md)
+- Alias: [Animation des objets](hd_spells_animation_des_objets.md)
- Source: (SRD p116)
- 5th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_antilife_shell.md b/Data/HD/srd_spells_antilife_shell.md
index 9c09e020..69ef4edd 100644
--- a/Data/HD/srd_spells_antilife_shell.md
+++ b/Data/HD/srd_spells_antilife_shell.md
@@ -4,7 +4,7 @@
# Antilife Shell
-- MDR: [Coquille antivie](hd_spells_coquille_antivie.md)
+- Alias: [Coquille antivie](hd_spells_coquille_antivie.md)
- Source: (SRD p116)
- 5th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_antimagic_field.md b/Data/HD/srd_spells_antimagic_field.md
index de47c10b..e42e3828 100644
--- a/Data/HD/srd_spells_antimagic_field.md
+++ b/Data/HD/srd_spells_antimagic_field.md
@@ -4,7 +4,7 @@
# Antimagic Field
-- MDR: [Champ antimagie](hd_spells_champ_antimagie.md)
+- Alias: [Champ antimagie](hd_spells_champ_antimagie.md)
- Source: (SRD p117)
- 8th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_antipathysympathy.md b/Data/HD/srd_spells_antipathysympathy.md
index 25c30b14..b24dcaca 100644
--- a/Data/HD/srd_spells_antipathysympathy.md
+++ b/Data/HD/srd_spells_antipathysympathy.md
@@ -4,7 +4,7 @@
# Antipathy/Sympathy
-- MDR: [Répulsion/attirance](hd_spells_repulsionattirance.md)
+- Alias: [Répulsion/attirance](hd_spells_repulsionattirance.md)
- Source: (SRD p117)
- 8th-level enchantment
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_arcane_eye.md b/Data/HD/srd_spells_arcane_eye.md
index c8820ba8..e6c86127 100644
--- a/Data/HD/srd_spells_arcane_eye.md
+++ b/Data/HD/srd_spells_arcane_eye.md
@@ -4,7 +4,7 @@
# Arcane Eye
-- MDR: [Oeil magique](hd_spells_oeil_magique.md)
+- Alias: [Oeil magique](hd_spells_oeil_magique.md)
- Source: (SRD p118)
- 4th-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_arcane_hand.md b/Data/HD/srd_spells_arcane_hand.md
index 5370bfa9..219b005a 100644
--- a/Data/HD/srd_spells_arcane_hand.md
+++ b/Data/HD/srd_spells_arcane_hand.md
@@ -4,7 +4,7 @@
# Arcane Hand
-- MDR: [Main magique](hd_spells_main_magique.md)
+- Alias: [Main magique](hd_spells_main_magique.md)
- Source: (SRD p118)
- 5th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_arcane_lock.md b/Data/HD/srd_spells_arcane_lock.md
index 1a61fa87..a486495b 100644
--- a/Data/HD/srd_spells_arcane_lock.md
+++ b/Data/HD/srd_spells_arcane_lock.md
@@ -4,7 +4,7 @@
# Arcane Lock
-- MDR: [Verrou magique](hd_spells_verrou_magique.md)
+- Alias: [Verrou magique](hd_spells_verrou_magique.md)
- Source: (SRD p118)
- 2nd-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_arcane_sword.md b/Data/HD/srd_spells_arcane_sword.md
index e2f7d901..2fc6969e 100644
--- a/Data/HD/srd_spells_arcane_sword.md
+++ b/Data/HD/srd_spells_arcane_sword.md
@@ -4,7 +4,7 @@
# Arcane Sword
-- MDR: [Épée magique](hd_spells_epee_magique.md)
+- Alias: [Épée magique](hd_spells_epee_magique.md)
- Source: (SRD p119)
- 7th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_arcanists_magic_aura.md b/Data/HD/srd_spells_arcanists_magic_aura.md
index 830364bb..d6e01bbb 100644
--- a/Data/HD/srd_spells_arcanists_magic_aura.md
+++ b/Data/HD/srd_spells_arcanists_magic_aura.md
@@ -4,7 +4,7 @@
# Arcanist's Magic Aura
-- MDR: [Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)
+- Alias: [Aura magique de l'arcaniste](hd_spells_aura_magique_de_larcaniste.md)
- Source: (SRD p119)
- 2nd-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_astral_projection.md b/Data/HD/srd_spells_astral_projection.md
index fd0b0433..074b0fa2 100644
--- a/Data/HD/srd_spells_astral_projection.md
+++ b/Data/HD/srd_spells_astral_projection.md
@@ -4,7 +4,7 @@
# Astral Projection
-- MDR: [Projection astrale](hd_spells_projection_astrale.md)
+- Alias: [Projection astrale](hd_spells_projection_astrale.md)
- Source: (SRD p119)
- 9th-level necromancy
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_augury.md b/Data/HD/srd_spells_augury.md
index 5475b153..90ef7f34 100644
--- a/Data/HD/srd_spells_augury.md
+++ b/Data/HD/srd_spells_augury.md
@@ -4,7 +4,7 @@
# Augury
-- MDR: [Augure](hd_spells_augure.md)
+- Alias: [Augure](hd_spells_augure.md)
- Source: (SRD p120)
- 2nd-level divination (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_awaken.md b/Data/HD/srd_spells_awaken.md
index dd68300d..0f48e263 100644
--- a/Data/HD/srd_spells_awaken.md
+++ b/Data/HD/srd_spells_awaken.md
@@ -4,7 +4,7 @@
# Awaken
-- MDR: [Éveil](hd_spells_eveil.md)
+- Alias: [Éveil](hd_spells_eveil.md)
- Source: (SRD p120)
- 5th-level transmutation
- **Casting Time :** 8 hours
diff --git a/Data/HD/srd_spells_bane.md b/Data/HD/srd_spells_bane.md
index c4f596c4..1a179b6a 100644
--- a/Data/HD/srd_spells_bane.md
+++ b/Data/HD/srd_spells_bane.md
@@ -4,7 +4,7 @@
# Bane
-- MDR: [Fléau](hd_spells_fleau.md)
+- Alias: [Fléau](hd_spells_fleau.md)
- Source: (SRD p120)
- 1st-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_banishment.md b/Data/HD/srd_spells_banishment.md
index ecd959e5..880a4121 100644
--- a/Data/HD/srd_spells_banishment.md
+++ b/Data/HD/srd_spells_banishment.md
@@ -4,7 +4,7 @@
# Banishment
-- MDR: [Bannissement](hd_spells_bannissement.md)
+- Alias: [Bannissement](hd_spells_bannissement.md)
- Source: (SRD p120)
- 4th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_barkskin.md b/Data/HD/srd_spells_barkskin.md
index 83bd96f8..25a8755c 100644
--- a/Data/HD/srd_spells_barkskin.md
+++ b/Data/HD/srd_spells_barkskin.md
@@ -4,7 +4,7 @@
# Barkskin
-- MDR: [Peau d'écorce](hd_spells_peau_decorce.md)
+- Alias: [Peau d'écorce](hd_spells_peau_decorce.md)
- Source: (SRD p121)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_beacon_of_hope.md b/Data/HD/srd_spells_beacon_of_hope.md
index 14d5e4e3..ecdbf2cd 100644
--- a/Data/HD/srd_spells_beacon_of_hope.md
+++ b/Data/HD/srd_spells_beacon_of_hope.md
@@ -4,7 +4,7 @@
# Beacon of Hope
-- MDR: [Lueur d'espoir](hd_spells_lueur_despoir.md)
+- Alias: [Lueur d'espoir](hd_spells_lueur_despoir.md)
- Source: (SRD p121)
- 3th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_bestow_curse.md b/Data/HD/srd_spells_bestow_curse.md
index bea1fb8c..243b05bb 100644
--- a/Data/HD/srd_spells_bestow_curse.md
+++ b/Data/HD/srd_spells_bestow_curse.md
@@ -4,7 +4,7 @@
# Bestow curse
-- MDR: [Jeter une malédiction](hd_spells_jeter_une_malediction.md)
+- Alias: [Jeter une malédiction](hd_spells_jeter_une_malediction.md)
- Source: (SRD p121)
- 3th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_black_tentacles.md b/Data/HD/srd_spells_black_tentacles.md
index 8ff9c1b5..0d44a25b 100644
--- a/Data/HD/srd_spells_black_tentacles.md
+++ b/Data/HD/srd_spells_black_tentacles.md
@@ -4,7 +4,7 @@
# Black Tentacles
-- MDR: [Tentacules noirs](hd_spells_tentacules_noirs.md)
+- Alias: [Tentacules noirs](hd_spells_tentacules_noirs.md)
- Source: (SRD p121)
- 4th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_blade_barrier.md b/Data/HD/srd_spells_blade_barrier.md
index b84954bd..52594569 100644
--- a/Data/HD/srd_spells_blade_barrier.md
+++ b/Data/HD/srd_spells_blade_barrier.md
@@ -4,7 +4,7 @@
# Blade Barrier
-- MDR: [Barrière de lames](hd_spells_barriere_de_lames.md)
+- Alias: [Barrière de lames](hd_spells_barriere_de_lames.md)
- Source: (SRD p122)
- 6th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_bless.md b/Data/HD/srd_spells_bless.md
index 3101b987..dafdd969 100644
--- a/Data/HD/srd_spells_bless.md
+++ b/Data/HD/srd_spells_bless.md
@@ -4,7 +4,7 @@
# Bless
-- MDR: [Bénédiction](hd_spells_benediction.md)
+- Alias: [Bénédiction](hd_spells_benediction.md)
- Source: (SRD p122)
- 1st-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_blight.md b/Data/HD/srd_spells_blight.md
index 384478b4..da18dfdf 100644
--- a/Data/HD/srd_spells_blight.md
+++ b/Data/HD/srd_spells_blight.md
@@ -4,7 +4,7 @@
# Blight
-- MDR: [Flétrissement](hd_spells_fletrissement.md)
+- Alias: [Flétrissement](hd_spells_fletrissement.md)
- Source: (SRD p122)
- 4th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_blindnessdeafness.md b/Data/HD/srd_spells_blindnessdeafness.md
index 78b87aa3..456ee472 100644
--- a/Data/HD/srd_spells_blindnessdeafness.md
+++ b/Data/HD/srd_spells_blindnessdeafness.md
@@ -4,7 +4,7 @@
# Blindness/Deafness
-- MDR: [Cécité/Surdité](hd_spells_cecitesurdite.md)
+- Alias: [Cécité/Surdité](hd_spells_cecitesurdite.md)
- Source: (SRD p122)
- 2nd-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_blink.md b/Data/HD/srd_spells_blink.md
index a2ac2393..6595730a 100644
--- a/Data/HD/srd_spells_blink.md
+++ b/Data/HD/srd_spells_blink.md
@@ -4,7 +4,7 @@
# Blink
-- MDR: [Clignotement](hd_spells_clignotement.md)
+- Alias: [Clignotement](hd_spells_clignotement.md)
- Source: (SRD p122)
- 3th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_blur.md b/Data/HD/srd_spells_blur.md
index 2395a9ce..da2b38e1 100644
--- a/Data/HD/srd_spells_blur.md
+++ b/Data/HD/srd_spells_blur.md
@@ -4,7 +4,7 @@
# Blur
-- MDR: [Flou](hd_spells_flou.md)
+- Alias: [Flou](hd_spells_flou.md)
- Source: (SRD p123)
- 2nd-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_branding_smite.md b/Data/HD/srd_spells_branding_smite.md
index ce3f728f..d28471a8 100644
--- a/Data/HD/srd_spells_branding_smite.md
+++ b/Data/HD/srd_spells_branding_smite.md
@@ -4,7 +4,7 @@
# Branding Smite
-- MDR: [Frappe lumineuse](hd_spells_frappe_lumineuse.md)
+- Alias: [Frappe lumineuse](hd_spells_frappe_lumineuse.md)
- Source: (SRD p123)
- 2nd-level evocation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_burning_hands.md b/Data/HD/srd_spells_burning_hands.md
index e4720f7f..b3b5471f 100644
--- a/Data/HD/srd_spells_burning_hands.md
+++ b/Data/HD/srd_spells_burning_hands.md
@@ -4,7 +4,7 @@
# Burning Hands
-- MDR: [Mains brûlantes](hd_spells_mains_brulantes.md)
+- Alias: [Mains brûlantes](hd_spells_mains_brulantes.md)
- Source: (SRD p123)
- 1st-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_call_lightning.md b/Data/HD/srd_spells_call_lightning.md
index 6f532db5..2e4cb02b 100644
--- a/Data/HD/srd_spells_call_lightning.md
+++ b/Data/HD/srd_spells_call_lightning.md
@@ -4,7 +4,7 @@
# Call Lightning
-- MDR: [Appel de la foudre](hd_spells_appel_de_la_foudre.md)
+- Alias: [Appel de la foudre](hd_spells_appel_de_la_foudre.md)
- Source: (SRD p123)
- 3th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_calm_emotions.md b/Data/HD/srd_spells_calm_emotions.md
index 34f3f1eb..b6858670 100644
--- a/Data/HD/srd_spells_calm_emotions.md
+++ b/Data/HD/srd_spells_calm_emotions.md
@@ -4,7 +4,7 @@
# Calm Emotions
-- MDR: [Apaisement des émotions](hd_spells_apaisement_des_emotions.md)
+- Alias: [Apaisement des émotions](hd_spells_apaisement_des_emotions.md)
- Source: (SRD p123)
- 2nd-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_chain_lightning.md b/Data/HD/srd_spells_chain_lightning.md
index 4c8217b4..59019379 100644
--- a/Data/HD/srd_spells_chain_lightning.md
+++ b/Data/HD/srd_spells_chain_lightning.md
@@ -4,7 +4,7 @@
# Chain Lightning
-- MDR: [Chaîne d'éclairs](hd_spells_chaine_declairs.md)
+- Alias: [Chaîne d'éclairs](hd_spells_chaine_declairs.md)
- Source: (SRD p124)
- 6th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_charm_person.md b/Data/HD/srd_spells_charm_person.md
index e9eae038..af2daf25 100644
--- a/Data/HD/srd_spells_charm_person.md
+++ b/Data/HD/srd_spells_charm_person.md
@@ -4,7 +4,7 @@
# Charm Person
-- MDR: [Charme-personne](hd_spells_charme_personne.md)
+- Alias: [Charme-personne](hd_spells_charme_personne.md)
- Source: (SRD p124)
- 1st-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_chill_touch.md b/Data/HD/srd_spells_chill_touch.md
index e7b99e9a..cdb560e0 100644
--- a/Data/HD/srd_spells_chill_touch.md
+++ b/Data/HD/srd_spells_chill_touch.md
@@ -4,7 +4,7 @@
# Chill Touch
-- MDR: [Contact glacial](hd_spells_contact_glacial.md)
+- Alias: [Contact glacial](hd_spells_contact_glacial.md)
- Source: (SRD p124)
- Necromancy cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_circle_of_death.md b/Data/HD/srd_spells_circle_of_death.md
index 03d3641b..80a74760 100644
--- a/Data/HD/srd_spells_circle_of_death.md
+++ b/Data/HD/srd_spells_circle_of_death.md
@@ -4,7 +4,7 @@
# Circle of Death
-- MDR: [Cercle de mort](hd_spells_cercle_de_mort.md)
+- Alias: [Cercle de mort](hd_spells_cercle_de_mort.md)
- Source: (SRD p124)
- 6th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_clairvoyance.md b/Data/HD/srd_spells_clairvoyance.md
index a655c847..99c36372 100644
--- a/Data/HD/srd_spells_clairvoyance.md
+++ b/Data/HD/srd_spells_clairvoyance.md
@@ -4,7 +4,7 @@
# Clairvoyance
-- MDR: [Clairvoyance](hd_spells_clairvoyance.md)
+- Alias: [Clairvoyance](hd_spells_clairvoyance.md)
- Source: (SRD p124)
- 3th-level divination
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_clone.md b/Data/HD/srd_spells_clone.md
index 6447e9ba..ae2a3f08 100644
--- a/Data/HD/srd_spells_clone.md
+++ b/Data/HD/srd_spells_clone.md
@@ -4,7 +4,7 @@
# Clone
-- MDR: [Clone](hd_spells_clone.md)
+- Alias: [Clone](hd_spells_clone.md)
- Source: (SRD p125)
- 8th-level necromancy
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_cloudkill.md b/Data/HD/srd_spells_cloudkill.md
index d7a59917..3a7fa4d7 100644
--- a/Data/HD/srd_spells_cloudkill.md
+++ b/Data/HD/srd_spells_cloudkill.md
@@ -4,7 +4,7 @@
# Cloudkill
-- MDR: [Nuage mortel](hd_spells_nuage_mortel.md)
+- Alias: [Nuage mortel](hd_spells_nuage_mortel.md)
- Source: (SRD p125)
- 5th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_color_spray.md b/Data/HD/srd_spells_color_spray.md
index fcb39978..24c72263 100644
--- a/Data/HD/srd_spells_color_spray.md
+++ b/Data/HD/srd_spells_color_spray.md
@@ -4,7 +4,7 @@
# Color Spray
-- MDR: [Couleurs dansantes](hd_spells_couleurs_dansantes.md)
+- Alias: [Couleurs dansantes](hd_spells_couleurs_dansantes.md)
- Source: (SRD p125)
- 1st-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_command.md b/Data/HD/srd_spells_command.md
index a9b134a6..444fdb7e 100644
--- a/Data/HD/srd_spells_command.md
+++ b/Data/HD/srd_spells_command.md
@@ -4,7 +4,7 @@
# Command
-- MDR: [Injonction](hd_spells_injonction.md)
+- Alias: [Injonction](hd_spells_injonction.md)
- Source: (SRD p125)
- 1st-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_commune.md b/Data/HD/srd_spells_commune.md
index 22361469..079da5a2 100644
--- a/Data/HD/srd_spells_commune.md
+++ b/Data/HD/srd_spells_commune.md
@@ -4,7 +4,7 @@
# Commune
-- MDR: [Communion](hd_spells_communion.md)
+- Alias: [Communion](hd_spells_communion.md)
- Source: (SRD p126)
- 5th-level divination (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_commune_with_nature.md b/Data/HD/srd_spells_commune_with_nature.md
index d9f1c9c5..c79a65e6 100644
--- a/Data/HD/srd_spells_commune_with_nature.md
+++ b/Data/HD/srd_spells_commune_with_nature.md
@@ -4,7 +4,7 @@
# Commune with Nature
-- MDR: [Communion avec la nature](hd_spells_communion_avec_la_nature.md)
+- Alias: [Communion avec la nature](hd_spells_communion_avec_la_nature.md)
- Source: (SRD p126)
- 5th-level divination (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_comprehend_languages.md b/Data/HD/srd_spells_comprehend_languages.md
index 52e49550..16f420f6 100644
--- a/Data/HD/srd_spells_comprehend_languages.md
+++ b/Data/HD/srd_spells_comprehend_languages.md
@@ -4,7 +4,7 @@
# Comprehend Languages
-- MDR: [Compréhension des langues](hd_spells_comprehension_des_langues.md)
+- Alias: [Compréhension des langues](hd_spells_comprehension_des_langues.md)
- Source: (SRD p126)
- 1st-level divination (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_compulsion.md b/Data/HD/srd_spells_compulsion.md
index 12f58b7f..611879fc 100644
--- a/Data/HD/srd_spells_compulsion.md
+++ b/Data/HD/srd_spells_compulsion.md
@@ -4,7 +4,7 @@
# Compulsion
-- MDR: [Compulsion](hd_spells_compulsion.md)
+- Alias: [Compulsion](hd_spells_compulsion.md)
- Source: (SRD p126)
- 4th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_cone_of_cold.md b/Data/HD/srd_spells_cone_of_cold.md
index 22751ba9..4e7714be 100644
--- a/Data/HD/srd_spells_cone_of_cold.md
+++ b/Data/HD/srd_spells_cone_of_cold.md
@@ -4,7 +4,7 @@
# Cone of Cold
-- MDR: [Cône de froid](hd_spells_cone_de_froid.md)
+- Alias: [Cône de froid](hd_spells_cone_de_froid.md)
- Source: (SRD p127)
- 5th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_confusion.md b/Data/HD/srd_spells_confusion.md
index f779644c..cc9ed452 100644
--- a/Data/HD/srd_spells_confusion.md
+++ b/Data/HD/srd_spells_confusion.md
@@ -4,7 +4,7 @@
# Confusion
-- MDR: [Confusion](hd_spells_confusion.md)
+- Alias: [Confusion](hd_spells_confusion.md)
- Source: (SRD p127)
- 4th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_conjure_animals.md b/Data/HD/srd_spells_conjure_animals.md
index 50d66957..59168611 100644
--- a/Data/HD/srd_spells_conjure_animals.md
+++ b/Data/HD/srd_spells_conjure_animals.md
@@ -4,7 +4,7 @@
# Conjure Animals
-- MDR: [Invoquer des animaux](hd_spells_invoquer_des_animaux.md)
+- Alias: [Invoquer des animaux](hd_spells_invoquer_des_animaux.md)
- Source: (SRD p127)
- 3th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_conjure_celestial.md b/Data/HD/srd_spells_conjure_celestial.md
index 8a3aebc6..357946e8 100644
--- a/Data/HD/srd_spells_conjure_celestial.md
+++ b/Data/HD/srd_spells_conjure_celestial.md
@@ -4,7 +4,7 @@
# Conjure Celestial
-- MDR: [Invoquer un céleste](hd_spells_invoquer_un_celeste.md)
+- Alias: [Invoquer un céleste](hd_spells_invoquer_un_celeste.md)
- Source: (SRD p127)
- 7th-level conjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_conjure_elemental.md b/Data/HD/srd_spells_conjure_elemental.md
index c1b3218f..d54ce40b 100644
--- a/Data/HD/srd_spells_conjure_elemental.md
+++ b/Data/HD/srd_spells_conjure_elemental.md
@@ -4,7 +4,7 @@
# Conjure Elemental
-- MDR: [Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)
+- Alias: [Invoquer un élémentaire](hd_spells_invoquer_un_elementaire.md)
- Source: (SRD p128)
- 5th-level conjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_conjure_fey.md b/Data/HD/srd_spells_conjure_fey.md
index bccb4076..f0eb5beb 100644
--- a/Data/HD/srd_spells_conjure_fey.md
+++ b/Data/HD/srd_spells_conjure_fey.md
@@ -4,7 +4,7 @@
# Conjure Fey
-- MDR: [Invoquer une fée](hd_spells_invoquer_une_fee.md)
+- Alias: [Invoquer une fée](hd_spells_invoquer_une_fee.md)
- Source: (SRD p128)
- 6th-level conjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_conjure_minor_elementals.md b/Data/HD/srd_spells_conjure_minor_elementals.md
index 2642548a..ea45a03f 100644
--- a/Data/HD/srd_spells_conjure_minor_elementals.md
+++ b/Data/HD/srd_spells_conjure_minor_elementals.md
@@ -4,7 +4,7 @@
# Conjure Minor Elementals
-- MDR: [Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)
+- Alias: [Invoquer des élémentaires mineurs](hd_spells_invoquer_des_elementaires_mineurs.md)
- Source: (SRD p128)
- 4th-level conjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_conjure_woodland_beings.md b/Data/HD/srd_spells_conjure_woodland_beings.md
index 621e77c9..315f14aa 100644
--- a/Data/HD/srd_spells_conjure_woodland_beings.md
+++ b/Data/HD/srd_spells_conjure_woodland_beings.md
@@ -4,7 +4,7 @@
# Conjure Woodland Beings
-- MDR: [Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)
+- Alias: [Invoquer des êtres des bois](hd_spells_invoquer_des_etres_des_bois.md)
- Source: (SRD p129)
- 4th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_contact_other_plane.md b/Data/HD/srd_spells_contact_other_plane.md
index 652f418c..507eb704 100644
--- a/Data/HD/srd_spells_contact_other_plane.md
+++ b/Data/HD/srd_spells_contact_other_plane.md
@@ -4,7 +4,7 @@
# Contact Other Plane
-- MDR: [Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)
+- Alias: [Contacter un autre plan](hd_spells_contacter_un_autre_plan.md)
- Source: (SRD p129)
- 5th-level divination (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_contagion.md b/Data/HD/srd_spells_contagion.md
index 561f9012..f3f020ab 100644
--- a/Data/HD/srd_spells_contagion.md
+++ b/Data/HD/srd_spells_contagion.md
@@ -4,7 +4,7 @@
# Contagion
-- MDR: [Contagion](hd_spells_contagion.md)
+- Alias: [Contagion](hd_spells_contagion.md)
- Source: (SRD p129)
- 5th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_contingency.md b/Data/HD/srd_spells_contingency.md
index 8e26ce92..20b9c8d8 100644
--- a/Data/HD/srd_spells_contingency.md
+++ b/Data/HD/srd_spells_contingency.md
@@ -4,7 +4,7 @@
# Contingency
-- MDR: [Contingence](hd_spells_contingence.md)
+- Alias: [Contingence](hd_spells_contingence.md)
- Source: (SRD p130)
- 6th-level evocation
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_continual_flame.md b/Data/HD/srd_spells_continual_flame.md
index 1ab681df..8dab897b 100644
--- a/Data/HD/srd_spells_continual_flame.md
+++ b/Data/HD/srd_spells_continual_flame.md
@@ -4,7 +4,7 @@
# Continual Flame
-- MDR: [Flamme éternelle](hd_spells_flamme_eternelle.md)
+- Alias: [Flamme éternelle](hd_spells_flamme_eternelle.md)
- Source: (SRD p130)
- 2nd-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_control_water.md b/Data/HD/srd_spells_control_water.md
index 9a3acbc1..6df2ee3e 100644
--- a/Data/HD/srd_spells_control_water.md
+++ b/Data/HD/srd_spells_control_water.md
@@ -4,7 +4,7 @@
# Control Water
-- MDR: [Contrôle de l'eau](hd_spells_controle_de_leau.md)
+- Alias: [Contrôle de l'eau](hd_spells_controle_de_leau.md)
- Source: (SRD p130)
- 4th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_control_weather.md b/Data/HD/srd_spells_control_weather.md
index 6a7e4fc6..e2e71467 100644
--- a/Data/HD/srd_spells_control_weather.md
+++ b/Data/HD/srd_spells_control_weather.md
@@ -4,7 +4,7 @@
# Control Weather
-- MDR: [Contrôle du climat](hd_spells_controle_du_climat.md)
+- Alias: [Contrôle du climat](hd_spells_controle_du_climat.md)
- Source: (SRD p131)
- 8th-level transmutation
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_counterspell.md b/Data/HD/srd_spells_counterspell.md
index 292426ce..7d802e6f 100644
--- a/Data/HD/srd_spells_counterspell.md
+++ b/Data/HD/srd_spells_counterspell.md
@@ -4,7 +4,7 @@
# Counterspell
-- MDR: [Contresort](hd_spells_contresort.md)
+- Alias: [Contresort](hd_spells_contresort.md)
- Source: (SRD p131)
- 3th-level abjuration
- **Casting Time :** 1 reaction, which you take when you see a creature within 60 feet of you casting a spell
diff --git a/Data/HD/srd_spells_create_food_and_water.md b/Data/HD/srd_spells_create_food_and_water.md
index d6d4bd12..96f4e137 100644
--- a/Data/HD/srd_spells_create_food_and_water.md
+++ b/Data/HD/srd_spells_create_food_and_water.md
@@ -4,7 +4,7 @@
# Create Food and Water
-- MDR: [Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)
+- Alias: [Création de nourriture et d'eau](hd_spells_creation_de_nourriture_et_deau.md)
- Source: (SRD p131)
- 3th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_create_or_destroy_water.md b/Data/HD/srd_spells_create_or_destroy_water.md
index 4a6a8a5a..ab0fe721 100644
--- a/Data/HD/srd_spells_create_or_destroy_water.md
+++ b/Data/HD/srd_spells_create_or_destroy_water.md
@@ -4,7 +4,7 @@
# Create or Destroy Water
-- MDR: [Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)
+- Alias: [Création ou destruction d'eau](hd_spells_creation_ou_destruction_deau.md)
- Source: (SRD p132)
- 1st-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_create_undead.md b/Data/HD/srd_spells_create_undead.md
index 54a2c1fc..34788ffe 100644
--- a/Data/HD/srd_spells_create_undead.md
+++ b/Data/HD/srd_spells_create_undead.md
@@ -4,7 +4,7 @@
# Create Undead
-- MDR: [Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)
+- Alias: [Création de mort-vivant](hd_spells_creation_de_mort_vivant.md)
- Source: (SRD p132)
- 6th-level necromancy
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_creation.md b/Data/HD/srd_spells_creation.md
index d5f60a1c..d5c64138 100644
--- a/Data/HD/srd_spells_creation.md
+++ b/Data/HD/srd_spells_creation.md
@@ -4,7 +4,7 @@
# Creation
-- MDR: [Création](hd_spells_creation.md)
+- Alias: [Création](hd_spells_creation.md)
- Source: (SRD p132)
- 5th-level illusion
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_cure_wounds.md b/Data/HD/srd_spells_cure_wounds.md
index 70039cad..417c3d4b 100644
--- a/Data/HD/srd_spells_cure_wounds.md
+++ b/Data/HD/srd_spells_cure_wounds.md
@@ -4,7 +4,7 @@
# Cure Wounds
-- MDR: [Soin des blessures](hd_spells_soin_des_blessures.md)
+- Alias: [Soin des blessures](hd_spells_soin_des_blessures.md)
- Source: (SRD p132)
- 1st-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_dancing_lights.md b/Data/HD/srd_spells_dancing_lights.md
index ea7e1700..f9f60a63 100644
--- a/Data/HD/srd_spells_dancing_lights.md
+++ b/Data/HD/srd_spells_dancing_lights.md
@@ -4,7 +4,7 @@
# Dancing Lights
-- MDR: [Lumières dansantes](hd_spells_lumieres_dansantes.md)
+- Alias: [Lumières dansantes](hd_spells_lumieres_dansantes.md)
- Source: (SRD p133)
- Evocation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_darkness.md b/Data/HD/srd_spells_darkness.md
index 85b4da63..4e97069f 100644
--- a/Data/HD/srd_spells_darkness.md
+++ b/Data/HD/srd_spells_darkness.md
@@ -4,7 +4,7 @@
# Darkness
-- MDR: [Ténèbres](hd_spells_tenebres.md)
+- Alias: [Ténèbres](hd_spells_tenebres.md)
- Source: (SRD p133)
- 2nd-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_darkvision.md b/Data/HD/srd_spells_darkvision.md
index 0f5ad2c9..16b9b60a 100644
--- a/Data/HD/srd_spells_darkvision.md
+++ b/Data/HD/srd_spells_darkvision.md
@@ -4,7 +4,7 @@
# Darkvision
-- MDR: [Vision dans le noir](hd_spells_vision_dans_le_noir.md)
+- Alias: [Vision dans le noir](hd_spells_vision_dans_le_noir.md)
- Source: (SRD p133)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_daylight.md b/Data/HD/srd_spells_daylight.md
index f48d8979..0a5c9776 100644
--- a/Data/HD/srd_spells_daylight.md
+++ b/Data/HD/srd_spells_daylight.md
@@ -4,7 +4,7 @@
# Daylight
-- MDR: [Lumière du jour](hd_spells_lumiere_du_jour.md)
+- Alias: [Lumière du jour](hd_spells_lumiere_du_jour.md)
- Source: (SRD p133)
- 3th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_death_ward.md b/Data/HD/srd_spells_death_ward.md
index 6dd9014e..eb6ae3ae 100644
--- a/Data/HD/srd_spells_death_ward.md
+++ b/Data/HD/srd_spells_death_ward.md
@@ -4,7 +4,7 @@
# Death Ward
-- MDR: [Protection contre la mort](hd_spells_protection_contre_la_mort.md)
+- Alias: [Protection contre la mort](hd_spells_protection_contre_la_mort.md)
- Source: (SRD p133)
- 4th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_delayed_blast_fireball.md b/Data/HD/srd_spells_delayed_blast_fireball.md
index 20f9c14f..464ade3b 100644
--- a/Data/HD/srd_spells_delayed_blast_fireball.md
+++ b/Data/HD/srd_spells_delayed_blast_fireball.md
@@ -4,7 +4,7 @@
# Delayed Blast Fireball
-- MDR: [Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)
+- Alias: [Boule de feu à explosion retardée](hd_spells_boule_de_feu_a_explosion_retardee.md)
- Source: (SRD p133)
- 7th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_demiplane.md b/Data/HD/srd_spells_demiplane.md
index 90df53a6..0146c5b9 100644
--- a/Data/HD/srd_spells_demiplane.md
+++ b/Data/HD/srd_spells_demiplane.md
@@ -4,7 +4,7 @@
# Demiplane
-- MDR: [Demi-plan](hd_spells_demi_plan.md)
+- Alias: [Demi-plan](hd_spells_demi_plan.md)
- Source: (SRD p134)
- 8th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_detect_evil_and_good.md b/Data/HD/srd_spells_detect_evil_and_good.md
index 9124a210..a7362092 100644
--- a/Data/HD/srd_spells_detect_evil_and_good.md
+++ b/Data/HD/srd_spells_detect_evil_and_good.md
@@ -4,7 +4,7 @@
# Detect Evil and Good
-- MDR: [Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)
+- Alias: [Détection du mal et du bien](hd_spells_detection_du_mal_et_du_bien.md)
- Source: (SRD p134)
- 1st-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_detect_magic.md b/Data/HD/srd_spells_detect_magic.md
index ce8d12db..e5d72f93 100644
--- a/Data/HD/srd_spells_detect_magic.md
+++ b/Data/HD/srd_spells_detect_magic.md
@@ -4,7 +4,7 @@
# Detect Magic
-- MDR: [Détection de la magie](hd_spells_detection_de_la_magie.md)
+- Alias: [Détection de la magie](hd_spells_detection_de_la_magie.md)
- Source: (SRD p134)
- 1st-level divination (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_detect_poison_and_disease.md b/Data/HD/srd_spells_detect_poison_and_disease.md
index 7c16998c..578058c5 100644
--- a/Data/HD/srd_spells_detect_poison_and_disease.md
+++ b/Data/HD/srd_spells_detect_poison_and_disease.md
@@ -4,7 +4,7 @@
# Detect Poison and Disease
-- MDR: [Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)
+- Alias: [Détection du poison et des maladies](hd_spells_detection_du_poison_et_des_maladies.md)
- Source: (SRD p134)
- 1st-level divination (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_detect_thoughts.md b/Data/HD/srd_spells_detect_thoughts.md
index 37abf492..38d83988 100644
--- a/Data/HD/srd_spells_detect_thoughts.md
+++ b/Data/HD/srd_spells_detect_thoughts.md
@@ -4,7 +4,7 @@
# Detect Thoughts
-- MDR: [Détection des pensées](hd_spells_detection_des_pensees.md)
+- Alias: [Détection des pensées](hd_spells_detection_des_pensees.md)
- Source: (SRD p135)
- 2nd-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_dimension_door.md b/Data/HD/srd_spells_dimension_door.md
index dc772509..e3045172 100644
--- a/Data/HD/srd_spells_dimension_door.md
+++ b/Data/HD/srd_spells_dimension_door.md
@@ -4,7 +4,7 @@
# Dimension Door
-- MDR: [Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)
+- Alias: [Porte dimensionnelle](hd_spells_porte_dimensionnelle.md)
- Source: (SRD p135)
- 4th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_disguise_self.md b/Data/HD/srd_spells_disguise_self.md
index ee8e3a0b..00ea4158 100644
--- a/Data/HD/srd_spells_disguise_self.md
+++ b/Data/HD/srd_spells_disguise_self.md
@@ -4,7 +4,7 @@
# Disguise Self
-- MDR: [Déguisement](hd_spells_deguisement.md)
+- Alias: [Déguisement](hd_spells_deguisement.md)
- Source: (SRD p135)
- 1st-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_disintegrate.md b/Data/HD/srd_spells_disintegrate.md
index e028b34f..8a89d2c5 100644
--- a/Data/HD/srd_spells_disintegrate.md
+++ b/Data/HD/srd_spells_disintegrate.md
@@ -4,7 +4,7 @@
# Disintegrate
-- MDR: [Désintégration](hd_spells_desintegration.md)
+- Alias: [Désintégration](hd_spells_desintegration.md)
- Source: (SRD p135)
- 6th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_dispel_evil_and_good.md b/Data/HD/srd_spells_dispel_evil_and_good.md
index d4c68502..1e7b6f4b 100644
--- a/Data/HD/srd_spells_dispel_evil_and_good.md
+++ b/Data/HD/srd_spells_dispel_evil_and_good.md
@@ -4,7 +4,7 @@
# Dispel Evil and Good
-- MDR: [Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)
+- Alias: [Dissipation du mal et du bien](hd_spells_dissipation_du_mal_et_du_bien.md)
- Source: (SRD p136)
- 5th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_dispel_magic.md b/Data/HD/srd_spells_dispel_magic.md
index 74af9a93..ddf8f979 100644
--- a/Data/HD/srd_spells_dispel_magic.md
+++ b/Data/HD/srd_spells_dispel_magic.md
@@ -4,7 +4,7 @@
# Dispel Magic
-- MDR: [Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)
+- Alias: [Dissipation de la magie](hd_spells_dissipation_de_la_magie.md)
- Source: (SRD p136)
- 3th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_divination.md b/Data/HD/srd_spells_divination.md
index 6113b541..93f5ac6f 100644
--- a/Data/HD/srd_spells_divination.md
+++ b/Data/HD/srd_spells_divination.md
@@ -4,7 +4,7 @@
# Divination
-- MDR: [Divination](hd_spells_divination.md)
+- Alias: [Divination](hd_spells_divination.md)
- Source: (SRD p136)
- 4th-level divination (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_divine_favor.md b/Data/HD/srd_spells_divine_favor.md
index e0f868be..235f17ad 100644
--- a/Data/HD/srd_spells_divine_favor.md
+++ b/Data/HD/srd_spells_divine_favor.md
@@ -4,7 +4,7 @@
# Divine Favor
-- MDR: [Faveur divine](hd_spells_faveur_divine.md)
+- Alias: [Faveur divine](hd_spells_faveur_divine.md)
- Source: (SRD p136)
- 1st-level evocation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_divine_word.md b/Data/HD/srd_spells_divine_word.md
index 5a83bcba..7dbb2382 100644
--- a/Data/HD/srd_spells_divine_word.md
+++ b/Data/HD/srd_spells_divine_word.md
@@ -4,7 +4,7 @@
# Divine Word
-- MDR: [Parole divine](hd_spells_parole_divine.md)
+- Alias: [Parole divine](hd_spells_parole_divine.md)
- Source: (SRD p137)
- 7th-level evocation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_dominate_beast.md b/Data/HD/srd_spells_dominate_beast.md
index f5042125..28acd365 100644
--- a/Data/HD/srd_spells_dominate_beast.md
+++ b/Data/HD/srd_spells_dominate_beast.md
@@ -4,7 +4,7 @@
# Dominate Beast
-- MDR: [Dominer une bête](hd_spells_dominer_une_bete.md)
+- Alias: [Dominer une bête](hd_spells_dominer_une_bete.md)
- Source: (SRD p137)
- 4th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_dominate_monster.md b/Data/HD/srd_spells_dominate_monster.md
index 76dcc606..8d828efe 100644
--- a/Data/HD/srd_spells_dominate_monster.md
+++ b/Data/HD/srd_spells_dominate_monster.md
@@ -4,7 +4,7 @@
# Dominate Monster
-- MDR: [Dominer un monstre](hd_spells_dominer_un_monstre.md)
+- Alias: [Dominer un monstre](hd_spells_dominer_un_monstre.md)
- Source: (SRD p137)
- 8th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_dominate_person.md b/Data/HD/srd_spells_dominate_person.md
index 261d8876..b3792605 100644
--- a/Data/HD/srd_spells_dominate_person.md
+++ b/Data/HD/srd_spells_dominate_person.md
@@ -4,7 +4,7 @@
# Dominate Person
-- MDR: [Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)
+- Alias: [Dominer un humanoïde](hd_spells_dominer_un_humanoide.md)
- Source: (SRD p138)
- 5th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_dream.md b/Data/HD/srd_spells_dream.md
index efcbfa59..86e78633 100644
--- a/Data/HD/srd_spells_dream.md
+++ b/Data/HD/srd_spells_dream.md
@@ -4,7 +4,7 @@
# Dream
-- MDR: [Rêve](hd_spells_reve.md)
+- Alias: [Rêve](hd_spells_reve.md)
- Source: (SRD p138)
- 5th-level illusion
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_druidcraft.md b/Data/HD/srd_spells_druidcraft.md
index 00c27b9d..1b6df150 100644
--- a/Data/HD/srd_spells_druidcraft.md
+++ b/Data/HD/srd_spells_druidcraft.md
@@ -4,7 +4,7 @@
# Druidcraft
-- MDR: [Druidisme](hd_spells_druidisme.md)
+- Alias: [Druidisme](hd_spells_druidisme.md)
- Source: (SRD p138)
- Transmutation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_earthquake.md b/Data/HD/srd_spells_earthquake.md
index 20b47eb9..61c9b3d3 100644
--- a/Data/HD/srd_spells_earthquake.md
+++ b/Data/HD/srd_spells_earthquake.md
@@ -4,7 +4,7 @@
# Earthquake
-- MDR: [Tremblement de terre](hd_spells_tremblement_de_terre.md)
+- Alias: [Tremblement de terre](hd_spells_tremblement_de_terre.md)
- Source: (SRD p139)
- 8th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_eldritch_blast.md b/Data/HD/srd_spells_eldritch_blast.md
index 4c213862..3e5125f0 100644
--- a/Data/HD/srd_spells_eldritch_blast.md
+++ b/Data/HD/srd_spells_eldritch_blast.md
@@ -4,7 +4,7 @@
# Eldritch Blast
-- MDR: [Explosion occulte](hd_spells_explosion_occulte.md)
+- Alias: [Explosion occulte](hd_spells_explosion_occulte.md)
- Source: (SRD p139)
- Evocation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_enhance_ability.md b/Data/HD/srd_spells_enhance_ability.md
index c5a3d098..eafc7d6f 100644
--- a/Data/HD/srd_spells_enhance_ability.md
+++ b/Data/HD/srd_spells_enhance_ability.md
@@ -4,7 +4,7 @@
# Enhance Ability
-- MDR: [Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)
+- Alias: [Amélioration de caractéristique](hd_spells_amelioration_de_caracteristique.md)
- Source: (SRD p139)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_enlargereduce.md b/Data/HD/srd_spells_enlargereduce.md
index 409e2fcd..ce424efb 100644
--- a/Data/HD/srd_spells_enlargereduce.md
+++ b/Data/HD/srd_spells_enlargereduce.md
@@ -4,7 +4,7 @@
# Enlarge/Reduce
-- MDR: [Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)
+- Alias: [Agrandir/Rétrécir](hd_spells_agrandirretrecir.md)
- Source: (SRD p140)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_entangle.md b/Data/HD/srd_spells_entangle.md
index 4b88b074..b9e18a14 100644
--- a/Data/HD/srd_spells_entangle.md
+++ b/Data/HD/srd_spells_entangle.md
@@ -4,7 +4,7 @@
# Entangle
-- MDR: [Enchevêtrement](hd_spells_enchevetrement.md)
+- Alias: [Enchevêtrement](hd_spells_enchevetrement.md)
- Source: (SRD p140)
- 1st-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_enthrall.md b/Data/HD/srd_spells_enthrall.md
index ff86805b..e6bcb62a 100644
--- a/Data/HD/srd_spells_enthrall.md
+++ b/Data/HD/srd_spells_enthrall.md
@@ -4,7 +4,7 @@
# Enthrall
-- MDR: [Envoûtement](hd_spells_envoutement.md)
+- Alias: [Envoûtement](hd_spells_envoutement.md)
- Source: (SRD p140)
- 2nd-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_etherealness.md b/Data/HD/srd_spells_etherealness.md
index 35df0f3b..c337b1f9 100644
--- a/Data/HD/srd_spells_etherealness.md
+++ b/Data/HD/srd_spells_etherealness.md
@@ -4,7 +4,7 @@
# Etherealness
-- MDR: [Forme éthérée](hd_spells_forme_etheree.md)
+- Alias: [Forme éthérée](hd_spells_forme_etheree.md)
- Source: (SRD p140)
- 7th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_expeditious_retreat.md b/Data/HD/srd_spells_expeditious_retreat.md
index 0a8783f1..427734a7 100644
--- a/Data/HD/srd_spells_expeditious_retreat.md
+++ b/Data/HD/srd_spells_expeditious_retreat.md
@@ -4,7 +4,7 @@
# Expeditious Retreat
-- MDR: [Repli expéditif](hd_spells_repli_expeditif.md)
+- Alias: [Repli expéditif](hd_spells_repli_expeditif.md)
- Source: (SRD p141)
- 1st-level transmutation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_eyebite.md b/Data/HD/srd_spells_eyebite.md
index 5879f923..608e27cb 100644
--- a/Data/HD/srd_spells_eyebite.md
+++ b/Data/HD/srd_spells_eyebite.md
@@ -4,7 +4,7 @@
# Eyebite
-- MDR: [Mauvais oeil](hd_spells_mauvais_oeil.md)
+- Alias: [Mauvais oeil](hd_spells_mauvais_oeil.md)
- Source: (SRD p141)
- 6th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_fabricate.md b/Data/HD/srd_spells_fabricate.md
index 5a4df8f2..ee9de86a 100644
--- a/Data/HD/srd_spells_fabricate.md
+++ b/Data/HD/srd_spells_fabricate.md
@@ -4,7 +4,7 @@
# Fabricate
-- MDR: [Fabrication](hd_spells_fabrication.md)
+- Alias: [Fabrication](hd_spells_fabrication.md)
- Source: (SRD p141)
- 4th-level transmutation
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_faerie_fire.md b/Data/HD/srd_spells_faerie_fire.md
index 65949824..fa838023 100644
--- a/Data/HD/srd_spells_faerie_fire.md
+++ b/Data/HD/srd_spells_faerie_fire.md
@@ -4,7 +4,7 @@
# Faerie Fire
-- MDR: [Lueurs féeriques](hd_spells_lueurs_feeriques.md)
+- Alias: [Lueurs féeriques](hd_spells_lueurs_feeriques.md)
- Source: (SRD p141)
- 1st-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_faithful_hound.md b/Data/HD/srd_spells_faithful_hound.md
index 70bf8907..6b6f1d2d 100644
--- a/Data/HD/srd_spells_faithful_hound.md
+++ b/Data/HD/srd_spells_faithful_hound.md
@@ -4,7 +4,7 @@
# Faithful Hound
-- MDR: [Chien de garde](hd_spells_chien_de_garde.md)
+- Alias: [Chien de garde](hd_spells_chien_de_garde.md)
- Source: (SRD p142)
- 4th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_false_life.md b/Data/HD/srd_spells_false_life.md
index af81c92a..e0cf7190 100644
--- a/Data/HD/srd_spells_false_life.md
+++ b/Data/HD/srd_spells_false_life.md
@@ -4,7 +4,7 @@
# False Life
-- MDR: [Simulacre de vie](hd_spells_simulacre_de_vie.md)
+- Alias: [Simulacre de vie](hd_spells_simulacre_de_vie.md)
- Source: (SRD p142)
- 1st-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_fear.md b/Data/HD/srd_spells_fear.md
index 3bc8f4ab..eb0b0d67 100644
--- a/Data/HD/srd_spells_fear.md
+++ b/Data/HD/srd_spells_fear.md
@@ -4,7 +4,7 @@
# Fear
-- MDR: [Peur](hd_spells_peur.md)
+- Alias: [Peur](hd_spells_peur.md)
- Source: (SRD p142)
- 3th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_feather_fall.md b/Data/HD/srd_spells_feather_fall.md
index d814a562..df2773e9 100644
--- a/Data/HD/srd_spells_feather_fall.md
+++ b/Data/HD/srd_spells_feather_fall.md
@@ -4,7 +4,7 @@
# Feather Fall
-- MDR: [Léger comme une plume](hd_spells_leger_comme_une_plume.md)
+- Alias: [Léger comme une plume](hd_spells_leger_comme_une_plume.md)
- Source: (SRD p142)
- 1st-level transmutation
- **Casting Time :** 1 reaction, which you take when you or a creature within 60 feet of you falls
diff --git a/Data/HD/srd_spells_feeblemind.md b/Data/HD/srd_spells_feeblemind.md
index d472aad6..797009dd 100644
--- a/Data/HD/srd_spells_feeblemind.md
+++ b/Data/HD/srd_spells_feeblemind.md
@@ -4,7 +4,7 @@
# Feeblemind
-- MDR: [Esprit faible](hd_spells_esprit_faible.md)
+- Alias: [Esprit faible](hd_spells_esprit_faible.md)
- Source: (SRD p142)
- 8th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_find_familiar.md b/Data/HD/srd_spells_find_familiar.md
index 8e109245..97fa260f 100644
--- a/Data/HD/srd_spells_find_familiar.md
+++ b/Data/HD/srd_spells_find_familiar.md
@@ -4,7 +4,7 @@
# Find Familiar
-- MDR: [Appel de familier](hd_spells_appel_de_familier.md)
+- Alias: [Appel de familier](hd_spells_appel_de_familier.md)
- Source: (SRD p143)
- 1st-level conjuration (ritual)
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_find_steed.md b/Data/HD/srd_spells_find_steed.md
index 7b04a1e5..9d3caadb 100644
--- a/Data/HD/srd_spells_find_steed.md
+++ b/Data/HD/srd_spells_find_steed.md
@@ -4,7 +4,7 @@
# Find Steed
-- MDR: [Trouver une monture](hd_spells_trouver_une_monture.md)
+- Alias: [Trouver une monture](hd_spells_trouver_une_monture.md)
- Source: (SRD p143)
- 2nd-level conjuration
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_find_the_path.md b/Data/HD/srd_spells_find_the_path.md
index 85ad9861..e80865ba 100644
--- a/Data/HD/srd_spells_find_the_path.md
+++ b/Data/HD/srd_spells_find_the_path.md
@@ -4,7 +4,7 @@
# Find the Path
-- MDR: [Trouver un chemin](hd_spells_trouver_un_chemin.md)
+- Alias: [Trouver un chemin](hd_spells_trouver_un_chemin.md)
- Source: (SRD p143)
- 6th-level divination
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_find_traps.md b/Data/HD/srd_spells_find_traps.md
index 1f2b679e..3fcf1546 100644
--- a/Data/HD/srd_spells_find_traps.md
+++ b/Data/HD/srd_spells_find_traps.md
@@ -4,7 +4,7 @@
# Find Traps
-- MDR: [Trouver les pièges](hd_spells_trouver_les_pieges.md)
+- Alias: [Trouver les pièges](hd_spells_trouver_les_pieges.md)
- Source: (SRD p144)
- 2nd-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_finger_of_death.md b/Data/HD/srd_spells_finger_of_death.md
index aa52d509..97bd63d2 100644
--- a/Data/HD/srd_spells_finger_of_death.md
+++ b/Data/HD/srd_spells_finger_of_death.md
@@ -4,7 +4,7 @@
# Finger of Death
-- MDR: [Doigt de mort](hd_spells_doigt_de_mort.md)
+- Alias: [Doigt de mort](hd_spells_doigt_de_mort.md)
- Source: (SRD p144)
- 7th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_fire_bolt.md b/Data/HD/srd_spells_fire_bolt.md
index 148d1c36..9c2f4336 100644
--- a/Data/HD/srd_spells_fire_bolt.md
+++ b/Data/HD/srd_spells_fire_bolt.md
@@ -4,7 +4,7 @@
# Fire Bolt
-- MDR: [Trait de feu](hd_spells_trait_de_feu.md)
+- Alias: [Trait de feu](hd_spells_trait_de_feu.md)
- Source: (SRD p144)
- Evocation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_fire_shield.md b/Data/HD/srd_spells_fire_shield.md
index 055c3fa2..4d9e8edc 100644
--- a/Data/HD/srd_spells_fire_shield.md
+++ b/Data/HD/srd_spells_fire_shield.md
@@ -4,7 +4,7 @@
# Fire Shield
-- MDR: [Bouclier de feu](hd_spells_bouclier_de_feu.md)
+- Alias: [Bouclier de feu](hd_spells_bouclier_de_feu.md)
- Source: (SRD p144)
- 4th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_fire_storm.md b/Data/HD/srd_spells_fire_storm.md
index ec658433..9dd0f996 100644
--- a/Data/HD/srd_spells_fire_storm.md
+++ b/Data/HD/srd_spells_fire_storm.md
@@ -4,7 +4,7 @@
# Fire Storm
-- MDR: [Tempête de feu](hd_spells_tempete_de_feu.md)
+- Alias: [Tempête de feu](hd_spells_tempete_de_feu.md)
- Source: (SRD p145)
- 7th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_fireball.md b/Data/HD/srd_spells_fireball.md
index 6bdea060..4b519ecd 100644
--- a/Data/HD/srd_spells_fireball.md
+++ b/Data/HD/srd_spells_fireball.md
@@ -4,7 +4,7 @@
# Fireball
-- MDR: [Boule de feu](hd_spells_boule_de_feu.md)
+- Alias: [Boule de feu](hd_spells_boule_de_feu.md)
- Source: (SRD p144)
- 3th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_flame_blade.md b/Data/HD/srd_spells_flame_blade.md
index 6f42dd9b..daf36d3a 100644
--- a/Data/HD/srd_spells_flame_blade.md
+++ b/Data/HD/srd_spells_flame_blade.md
@@ -4,7 +4,7 @@
# Flame Blade
-- MDR: [Lame de feu](hd_spells_lame_de_feu.md)
+- Alias: [Lame de feu](hd_spells_lame_de_feu.md)
- Source: (SRD p145)
- 2nd-level evocation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_flame_strike.md b/Data/HD/srd_spells_flame_strike.md
index 33f3b6c7..bea2140e 100644
--- a/Data/HD/srd_spells_flame_strike.md
+++ b/Data/HD/srd_spells_flame_strike.md
@@ -4,7 +4,7 @@
# Flame Strike
-- MDR: [Colonne de flamme](hd_spells_colonne_de_flamme.md)
+- Alias: [Colonne de flamme](hd_spells_colonne_de_flamme.md)
- Source: (SRD p145)
- 5th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_flaming_sphere.md b/Data/HD/srd_spells_flaming_sphere.md
index a22c0089..0354569e 100644
--- a/Data/HD/srd_spells_flaming_sphere.md
+++ b/Data/HD/srd_spells_flaming_sphere.md
@@ -4,7 +4,7 @@
# Flaming Sphere
-- MDR: [Sphère de feu](hd_spells_sphere_de_feu.md)
+- Alias: [Sphère de feu](hd_spells_sphere_de_feu.md)
- Source: (SRD p145)
- 2nd-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_flesh_to_stone.md b/Data/HD/srd_spells_flesh_to_stone.md
index 11cc86ad..f88a29a5 100644
--- a/Data/HD/srd_spells_flesh_to_stone.md
+++ b/Data/HD/srd_spells_flesh_to_stone.md
@@ -4,7 +4,7 @@
# Flesh to Stone
-- MDR: [Pétrification](hd_spells_petrification.md)
+- Alias: [Pétrification](hd_spells_petrification.md)
- Source: (SRD p145)
- 6th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_floating_disk.md b/Data/HD/srd_spells_floating_disk.md
index c369d1b9..755caa0c 100644
--- a/Data/HD/srd_spells_floating_disk.md
+++ b/Data/HD/srd_spells_floating_disk.md
@@ -4,7 +4,7 @@
# Floating Disk
-- MDR: [Disque flottant](hd_spells_disque_flottant.md)
+- Alias: [Disque flottant](hd_spells_disque_flottant.md)
- Source: (SRD p146)
- 1st-level conjuration (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_fly.md b/Data/HD/srd_spells_fly.md
index 20ab8145..8da7bfd0 100644
--- a/Data/HD/srd_spells_fly.md
+++ b/Data/HD/srd_spells_fly.md
@@ -4,7 +4,7 @@
# Fly
-- MDR: [Vol](hd_spells_vol.md)
+- Alias: [Vol](hd_spells_vol.md)
- Source: (SRD p146)
- 3th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_fog_cloud.md b/Data/HD/srd_spells_fog_cloud.md
index 08534ea7..7197a42c 100644
--- a/Data/HD/srd_spells_fog_cloud.md
+++ b/Data/HD/srd_spells_fog_cloud.md
@@ -4,7 +4,7 @@
# Fog Cloud
-- MDR: [Nappe de brouillard](hd_spells_nappe_de_brouillard.md)
+- Alias: [Nappe de brouillard](hd_spells_nappe_de_brouillard.md)
- Source: (SRD p146)
- 1st-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_forbiddance.md b/Data/HD/srd_spells_forbiddance.md
index d027f7dd..3093b0ed 100644
--- a/Data/HD/srd_spells_forbiddance.md
+++ b/Data/HD/srd_spells_forbiddance.md
@@ -4,7 +4,7 @@
# Forbiddance
-- MDR: [Interdiction](hd_spells_interdiction.md)
+- Alias: [Interdiction](hd_spells_interdiction.md)
- Source: (SRD p146)
- 6th-level abjuration (ritual)
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_forcecage.md b/Data/HD/srd_spells_forcecage.md
index bb47daae..6d00ac22 100644
--- a/Data/HD/srd_spells_forcecage.md
+++ b/Data/HD/srd_spells_forcecage.md
@@ -4,7 +4,7 @@
# Forcecage
-- MDR: [Cage de force](hd_spells_cage_de_force.md)
+- Alias: [Cage de force](hd_spells_cage_de_force.md)
- Source: (SRD p147)
- 7th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_foresight.md b/Data/HD/srd_spells_foresight.md
index 1108de07..99fa6498 100644
--- a/Data/HD/srd_spells_foresight.md
+++ b/Data/HD/srd_spells_foresight.md
@@ -4,7 +4,7 @@
# Foresight
-- MDR: [Prémonition](hd_spells_premonition.md)
+- Alias: [Prémonition](hd_spells_premonition.md)
- Source: (SRD p147)
- 9th-level divination
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_freedom_of_movement.md b/Data/HD/srd_spells_freedom_of_movement.md
index fc1e35e1..225f0b92 100644
--- a/Data/HD/srd_spells_freedom_of_movement.md
+++ b/Data/HD/srd_spells_freedom_of_movement.md
@@ -4,7 +4,7 @@
# Freedom of Movement
-- MDR: [Liberté de mouvement](hd_spells_liberte_de_mouvement.md)
+- Alias: [Liberté de mouvement](hd_spells_liberte_de_mouvement.md)
- Source: (SRD p147)
- 4th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_freezing_sphere.md b/Data/HD/srd_spells_freezing_sphere.md
index aad21f7b..e74d3a02 100644
--- a/Data/HD/srd_spells_freezing_sphere.md
+++ b/Data/HD/srd_spells_freezing_sphere.md
@@ -4,7 +4,7 @@
# Freezing Sphere
-- MDR: [Sphère glacée](hd_spells_sphere_glacee.md)
+- Alias: [Sphère glacée](hd_spells_sphere_glacee.md)
- Source: (SRD p147)
- 6th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_gaseous_form.md b/Data/HD/srd_spells_gaseous_form.md
index 2c37d074..e71f3450 100644
--- a/Data/HD/srd_spells_gaseous_form.md
+++ b/Data/HD/srd_spells_gaseous_form.md
@@ -4,7 +4,7 @@
# Gaseous Form
-- MDR: [Forme gazeuse](hd_spells_forme_gazeuse.md)
+- Alias: [Forme gazeuse](hd_spells_forme_gazeuse.md)
- Source: (SRD p148)
- 3th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_gate.md b/Data/HD/srd_spells_gate.md
index 7e9ca254..12589826 100644
--- a/Data/HD/srd_spells_gate.md
+++ b/Data/HD/srd_spells_gate.md
@@ -4,7 +4,7 @@
# Gate
-- MDR: [Portail](hd_spells_portail.md)
+- Alias: [Portail](hd_spells_portail.md)
- Source: (SRD p148)
- 9th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_geas.md b/Data/HD/srd_spells_geas.md
index 87c53ffe..f3bc619d 100644
--- a/Data/HD/srd_spells_geas.md
+++ b/Data/HD/srd_spells_geas.md
@@ -4,7 +4,7 @@
# Geas
-- MDR: [Coercition mystique](hd_spells_coercition_mystique.md)
+- Alias: [Coercition mystique](hd_spells_coercition_mystique.md)
- Source: (SRD p148)
- 5th-level enchantment
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_gentle_repose.md b/Data/HD/srd_spells_gentle_repose.md
index 5e4dd206..64ed42fb 100644
--- a/Data/HD/srd_spells_gentle_repose.md
+++ b/Data/HD/srd_spells_gentle_repose.md
@@ -4,7 +4,7 @@
# Gentle Repose
-- MDR: [Doux repos](hd_spells_doux_repos.md)
+- Alias: [Doux repos](hd_spells_doux_repos.md)
- Source: (SRD p148)
- 2nd-level necromancy (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_giant_insect.md b/Data/HD/srd_spells_giant_insect.md
index 244f0c68..3f067e14 100644
--- a/Data/HD/srd_spells_giant_insect.md
+++ b/Data/HD/srd_spells_giant_insect.md
@@ -4,7 +4,7 @@
# Giant Insect
-- MDR: [Insecte géant](hd_spells_insecte_geant.md)
+- Alias: [Insecte géant](hd_spells_insecte_geant.md)
- Source: (SRD p149)
- 4th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_glibness.md b/Data/HD/srd_spells_glibness.md
index 6d086aa9..e1463106 100644
--- a/Data/HD/srd_spells_glibness.md
+++ b/Data/HD/srd_spells_glibness.md
@@ -4,7 +4,7 @@
# Glibness
-- MDR: [Bagou](hd_spells_bagou.md)
+- Alias: [Bagou](hd_spells_bagou.md)
- Source: (SRD p149)
- 8th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_globe_of_invulnerability.md b/Data/HD/srd_spells_globe_of_invulnerability.md
index 7b03df65..c5bafb04 100644
--- a/Data/HD/srd_spells_globe_of_invulnerability.md
+++ b/Data/HD/srd_spells_globe_of_invulnerability.md
@@ -4,7 +4,7 @@
# Globe of Invulnerability
-- MDR: [Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)
+- Alias: [Globe d'invulnérabilité](hd_spells_globe_dinvulnerabilite.md)
- Source: (SRD p149)
- 6th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_glyph_of_warding.md b/Data/HD/srd_spells_glyph_of_warding.md
index 3bcf6f1a..021a855e 100644
--- a/Data/HD/srd_spells_glyph_of_warding.md
+++ b/Data/HD/srd_spells_glyph_of_warding.md
@@ -4,7 +4,7 @@
# Glyph of Warding
-- MDR: [Glyphe de protection](hd_spells_glyphe_de_protection.md)
+- Alias: [Glyphe de protection](hd_spells_glyphe_de_protection.md)
- Source: (SRD p149)
- 3th-level abjuration
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_goodberry.md b/Data/HD/srd_spells_goodberry.md
index 0c5b5f30..6f7b57d2 100644
--- a/Data/HD/srd_spells_goodberry.md
+++ b/Data/HD/srd_spells_goodberry.md
@@ -4,7 +4,7 @@
# Goodberry
-- MDR: [Baies nourricières](hd_spells_baies_nourricieres.md)
+- Alias: [Baies nourricières](hd_spells_baies_nourricieres.md)
- Source: (SRD p150)
- 1st-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_grease.md b/Data/HD/srd_spells_grease.md
index b3851b04..188703d0 100644
--- a/Data/HD/srd_spells_grease.md
+++ b/Data/HD/srd_spells_grease.md
@@ -4,7 +4,7 @@
# Grease
-- MDR: [Graisse](hd_spells_graisse.md)
+- Alias: [Graisse](hd_spells_graisse.md)
- Source: (SRD p150)
- 1st-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_greater_invisibility.md b/Data/HD/srd_spells_greater_invisibility.md
index cbbc67e5..3b99ccd9 100644
--- a/Data/HD/srd_spells_greater_invisibility.md
+++ b/Data/HD/srd_spells_greater_invisibility.md
@@ -4,7 +4,7 @@
# Greater Invisibility
-- MDR: [Invisibilité supérieure](hd_spells_invisibilite_superieure.md)
+- Alias: [Invisibilité supérieure](hd_spells_invisibilite_superieure.md)
- Source: (SRD p150)
- 4th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_greater_restoration.md b/Data/HD/srd_spells_greater_restoration.md
index b4e265cb..4deca787 100644
--- a/Data/HD/srd_spells_greater_restoration.md
+++ b/Data/HD/srd_spells_greater_restoration.md
@@ -4,7 +4,7 @@
# Greater Restoration
-- MDR: [Restauration supérieure](hd_spells_restauration_superieure.md)
+- Alias: [Restauration supérieure](hd_spells_restauration_superieure.md)
- Source: (SRD p150)
- 5th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_guardian_of_faith.md b/Data/HD/srd_spells_guardian_of_faith.md
index e3af24a9..8b392bf1 100644
--- a/Data/HD/srd_spells_guardian_of_faith.md
+++ b/Data/HD/srd_spells_guardian_of_faith.md
@@ -4,7 +4,7 @@
# Guardian of Faith
-- MDR: [Gardien de la foi](hd_spells_gardien_de_la_foi.md)
+- Alias: [Gardien de la foi](hd_spells_gardien_de_la_foi.md)
- Source: (SRD p150)
- 4th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_guards_and_wards.md b/Data/HD/srd_spells_guards_and_wards.md
index 114744d4..27649672 100644
--- a/Data/HD/srd_spells_guards_and_wards.md
+++ b/Data/HD/srd_spells_guards_and_wards.md
@@ -4,7 +4,7 @@
# Guards and Wards
-- MDR: [Protections et sceaux](hd_spells_protections_et_sceaux.md)
+- Alias: [Protections et sceaux](hd_spells_protections_et_sceaux.md)
- Source: (SRD p151)
- 6th-level abjuration
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_guidance.md b/Data/HD/srd_spells_guidance.md
index 90552fd7..bb3b4a12 100644
--- a/Data/HD/srd_spells_guidance.md
+++ b/Data/HD/srd_spells_guidance.md
@@ -4,7 +4,7 @@
# Guidance
-- MDR: [Assistance](hd_spells_assistance.md)
+- Alias: [Assistance](hd_spells_assistance.md)
- Source: (SRD p151)
- Divination cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_guiding_bolt.md b/Data/HD/srd_spells_guiding_bolt.md
index d0eafe43..bd415dd2 100644
--- a/Data/HD/srd_spells_guiding_bolt.md
+++ b/Data/HD/srd_spells_guiding_bolt.md
@@ -4,7 +4,7 @@
# Guiding Bolt
-- MDR: [Balisage](hd_spells_balisage.md)
+- Alias: [Balisage](hd_spells_balisage.md)
- Source: (SRD p151)
- 1st-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_gust_of_wind.md b/Data/HD/srd_spells_gust_of_wind.md
index c995efdb..c57aa481 100644
--- a/Data/HD/srd_spells_gust_of_wind.md
+++ b/Data/HD/srd_spells_gust_of_wind.md
@@ -4,7 +4,7 @@
# Gust of Wind
-- MDR: [Bourrasque](hd_spells_bourrasque.md)
+- Alias: [Bourrasque](hd_spells_bourrasque.md)
- Source: (SRD p152)
- 2nd-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_hallow.md b/Data/HD/srd_spells_hallow.md
index fdfe9460..8f865d3f 100644
--- a/Data/HD/srd_spells_hallow.md
+++ b/Data/HD/srd_spells_hallow.md
@@ -4,7 +4,7 @@
# Hallow
-- MDR: [Sanctification](hd_spells_sanctification.md)
+- Alias: [Sanctification](hd_spells_sanctification.md)
- Source: (SRD p152)
- 5th-level evocation
- **Casting Time :** 24 hours
diff --git a/Data/HD/srd_spells_hallucinatory_terrain.md b/Data/HD/srd_spells_hallucinatory_terrain.md
index ed179155..bd9a390e 100644
--- a/Data/HD/srd_spells_hallucinatory_terrain.md
+++ b/Data/HD/srd_spells_hallucinatory_terrain.md
@@ -4,7 +4,7 @@
# Hallucinatory Terrain
-- MDR: [Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)
+- Alias: [Terrain hallucinatoire](hd_spells_terrain_hallucinatoire.md)
- Source: (SRD p152)
- 4th-level illusion
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_harm.md b/Data/HD/srd_spells_harm.md
index eac17888..de02176b 100644
--- a/Data/HD/srd_spells_harm.md
+++ b/Data/HD/srd_spells_harm.md
@@ -4,7 +4,7 @@
# Harm
-- MDR: [Contamination](hd_spells_contamination.md)
+- Alias: [Contamination](hd_spells_contamination.md)
- Source: (SRD p153)
- 6th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_haste.md b/Data/HD/srd_spells_haste.md
index 863cadf8..4ebf08bf 100644
--- a/Data/HD/srd_spells_haste.md
+++ b/Data/HD/srd_spells_haste.md
@@ -4,7 +4,7 @@
# Haste
-- MDR: [Hâte](hd_spells_hate.md)
+- Alias: [Hâte](hd_spells_hate.md)
- Source: (SRD p153)
- 3th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_heal.md b/Data/HD/srd_spells_heal.md
index 754828a3..00cf8092 100644
--- a/Data/HD/srd_spells_heal.md
+++ b/Data/HD/srd_spells_heal.md
@@ -4,7 +4,7 @@
# Heal
-- MDR: [Guérison](hd_spells_guerison.md)
+- Alias: [Guérison](hd_spells_guerison.md)
- Source: (SRD p153)
- 6th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_healing_word.md b/Data/HD/srd_spells_healing_word.md
index a243a751..bacf91cd 100644
--- a/Data/HD/srd_spells_healing_word.md
+++ b/Data/HD/srd_spells_healing_word.md
@@ -4,7 +4,7 @@
# Healing Word
-- MDR: [Mot de guérison](hd_spells_mot_de_guerison.md)
+- Alias: [Mot de guérison](hd_spells_mot_de_guerison.md)
- Source: (SRD p153)
- 1st-level evocation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_heat_metal.md b/Data/HD/srd_spells_heat_metal.md
index bd78046d..88853aea 100644
--- a/Data/HD/srd_spells_heat_metal.md
+++ b/Data/HD/srd_spells_heat_metal.md
@@ -4,7 +4,7 @@
# Heat Metal
-- MDR: [Chauffer le métal](hd_spells_chauffer_le_metal.md)
+- Alias: [Chauffer le métal](hd_spells_chauffer_le_metal.md)
- Source: (SRD p153)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_hellish_rebuke.md b/Data/HD/srd_spells_hellish_rebuke.md
index 2aba39dc..49f399b1 100644
--- a/Data/HD/srd_spells_hellish_rebuke.md
+++ b/Data/HD/srd_spells_hellish_rebuke.md
@@ -4,7 +4,7 @@
# Hellish Rebuke
-- MDR: [Représailles infernales](hd_spells_represailles_infernales.md)
+- Alias: [Représailles infernales](hd_spells_represailles_infernales.md)
- Source: (SRD p154)
- 1st-level evocation
- **Casting Time :** 1 reaction, which you take in response to being damaged by a creature within 60 feet of you that you can see
diff --git a/Data/HD/srd_spells_heroes_feast.md b/Data/HD/srd_spells_heroes_feast.md
index 67a45836..6a8c33a1 100644
--- a/Data/HD/srd_spells_heroes_feast.md
+++ b/Data/HD/srd_spells_heroes_feast.md
@@ -4,7 +4,7 @@
# Heroes' Feast
-- MDR: [Festin des héros](hd_spells_festin_des_heros.md)
+- Alias: [Festin des héros](hd_spells_festin_des_heros.md)
- Source: (SRD p154)
- 6th-level conjuration
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_heroism.md b/Data/HD/srd_spells_heroism.md
index 1a8c50ba..88062bdc 100644
--- a/Data/HD/srd_spells_heroism.md
+++ b/Data/HD/srd_spells_heroism.md
@@ -4,7 +4,7 @@
# Heroism
-- MDR: [Héroïsme](hd_spells_heroisme.md)
+- Alias: [Héroïsme](hd_spells_heroisme.md)
- Source: (SRD p154)
- 1st-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_hideous_laughter.md b/Data/HD/srd_spells_hideous_laughter.md
index 307fb04c..b13971a4 100644
--- a/Data/HD/srd_spells_hideous_laughter.md
+++ b/Data/HD/srd_spells_hideous_laughter.md
@@ -4,7 +4,7 @@
# Hideous Laughter
-- MDR: [Fou rire](hd_spells_fou_rire.md)
+- Alias: [Fou rire](hd_spells_fou_rire.md)
- Source: (SRD p154)
- 1st-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_hold_monster.md b/Data/HD/srd_spells_hold_monster.md
index f7257d4c..b9ad6491 100644
--- a/Data/HD/srd_spells_hold_monster.md
+++ b/Data/HD/srd_spells_hold_monster.md
@@ -4,7 +4,7 @@
# Hold Monster
-- MDR: [Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)
+- Alias: [Immobiliser un monstre](hd_spells_immobiliser_un_monstre.md)
- Source: (SRD p154)
- 5th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_hold_person.md b/Data/HD/srd_spells_hold_person.md
index 56e63153..e31f26d8 100644
--- a/Data/HD/srd_spells_hold_person.md
+++ b/Data/HD/srd_spells_hold_person.md
@@ -4,7 +4,7 @@
# Hold Person
-- MDR: [Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)
+- Alias: [Immobiliser un humanoïde](hd_spells_immobiliser_un_humanoide.md)
- Source: (SRD p154)
- 2nd-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_holy_aura.md b/Data/HD/srd_spells_holy_aura.md
index e61e59f9..fba8d960 100644
--- a/Data/HD/srd_spells_holy_aura.md
+++ b/Data/HD/srd_spells_holy_aura.md
@@ -4,7 +4,7 @@
# Holy Aura
-- MDR: [Aura sacrée](hd_spells_aura_sacree.md)
+- Alias: [Aura sacrée](hd_spells_aura_sacree.md)
- Source: (SRD p155)
- 8th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_hunters_mark.md b/Data/HD/srd_spells_hunters_mark.md
index d83f0b6e..00cb7226 100644
--- a/Data/HD/srd_spells_hunters_mark.md
+++ b/Data/HD/srd_spells_hunters_mark.md
@@ -4,7 +4,7 @@
# Hunter's Mark
-- MDR: [Marque du chasseur](hd_spells_marque_du_chasseur.md)
+- Alias: [Marque du chasseur](hd_spells_marque_du_chasseur.md)
- Source: (SRD p155)
- 1st-level divination
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_hypnotic_pattern.md b/Data/HD/srd_spells_hypnotic_pattern.md
index b06f9e6b..97694968 100644
--- a/Data/HD/srd_spells_hypnotic_pattern.md
+++ b/Data/HD/srd_spells_hypnotic_pattern.md
@@ -4,7 +4,7 @@
# Hypnotic Pattern
-- MDR: [Motif hypnotique](hd_spells_motif_hypnotique.md)
+- Alias: [Motif hypnotique](hd_spells_motif_hypnotique.md)
- Source: (SRD p155)
- 3th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_ice_storm.md b/Data/HD/srd_spells_ice_storm.md
index 43e6d56f..a8749192 100644
--- a/Data/HD/srd_spells_ice_storm.md
+++ b/Data/HD/srd_spells_ice_storm.md
@@ -4,7 +4,7 @@
# Ice Storm
-- MDR: [Tempête de grêle](hd_spells_tempete_de_grele.md)
+- Alias: [Tempête de grêle](hd_spells_tempete_de_grele.md)
- Source: (SRD p155)
- 4th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_identify.md b/Data/HD/srd_spells_identify.md
index a8cf8b49..021b7d20 100644
--- a/Data/HD/srd_spells_identify.md
+++ b/Data/HD/srd_spells_identify.md
@@ -4,7 +4,7 @@
# Identify
-- MDR: [Identification](hd_spells_identification.md)
+- Alias: [Identification](hd_spells_identification.md)
- Source: (SRD p155)
- 1st-level divination (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_illusory_script.md b/Data/HD/srd_spells_illusory_script.md
index 4d6691ff..0715fd34 100644
--- a/Data/HD/srd_spells_illusory_script.md
+++ b/Data/HD/srd_spells_illusory_script.md
@@ -4,7 +4,7 @@
# Illusory Script
-- MDR: [Texte illusoire](hd_spells_texte_illusoire.md)
+- Alias: [Texte illusoire](hd_spells_texte_illusoire.md)
- Source: (SRD p156)
- 1st-level illusion (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_imprisonment.md b/Data/HD/srd_spells_imprisonment.md
index cc8d4872..be017385 100644
--- a/Data/HD/srd_spells_imprisonment.md
+++ b/Data/HD/srd_spells_imprisonment.md
@@ -4,7 +4,7 @@
# Imprisonment
-- MDR: [Emprisonnement](hd_spells_emprisonnement.md)
+- Alias: [Emprisonnement](hd_spells_emprisonnement.md)
- Source: (SRD p156)
- 9th-level abjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_incendiary_cloud.md b/Data/HD/srd_spells_incendiary_cloud.md
index f75d0018..fea9405c 100644
--- a/Data/HD/srd_spells_incendiary_cloud.md
+++ b/Data/HD/srd_spells_incendiary_cloud.md
@@ -4,7 +4,7 @@
# Incendiary Cloud
-- MDR: [Nuage incendiaire](hd_spells_nuage_incendiaire.md)
+- Alias: [Nuage incendiaire](hd_spells_nuage_incendiaire.md)
- Source: (SRD p157)
- 8th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_inflict_wounds.md b/Data/HD/srd_spells_inflict_wounds.md
index 14a170b5..212844fc 100644
--- a/Data/HD/srd_spells_inflict_wounds.md
+++ b/Data/HD/srd_spells_inflict_wounds.md
@@ -4,7 +4,7 @@
# Inflict Wounds
-- MDR: [Blessure](hd_spells_blessure.md)
+- Alias: [Blessure](hd_spells_blessure.md)
- Source: (SRD p157)
- 1st-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_insect_plague.md b/Data/HD/srd_spells_insect_plague.md
index e63fdd7a..9876dcd4 100644
--- a/Data/HD/srd_spells_insect_plague.md
+++ b/Data/HD/srd_spells_insect_plague.md
@@ -4,7 +4,7 @@
# Insect Plague
-- MDR: [Fléau d'insectes](hd_spells_fleau_dinsectes.md)
+- Alias: [Fléau d'insectes](hd_spells_fleau_dinsectes.md)
- Source: (SRD p157)
- 5th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_instant_summons.md b/Data/HD/srd_spells_instant_summons.md
index 441dff76..49cbadcf 100644
--- a/Data/HD/srd_spells_instant_summons.md
+++ b/Data/HD/srd_spells_instant_summons.md
@@ -4,7 +4,7 @@
# Instant Summons
-- MDR: [Convocations instantanées](hd_spells_convocations_instantanees.md)
+- Alias: [Convocations instantanées](hd_spells_convocations_instantanees.md)
- Source: (SRD p157)
- 6th-level conjuration (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_invisibility.md b/Data/HD/srd_spells_invisibility.md
index f6d64e14..d5da4dcc 100644
--- a/Data/HD/srd_spells_invisibility.md
+++ b/Data/HD/srd_spells_invisibility.md
@@ -4,7 +4,7 @@
# Invisibility
-- MDR: [Invisibilité](hd_spells_invisibilite.md)
+- Alias: [Invisibilité](hd_spells_invisibilite.md)
- Source: (SRD p157)
- 2nd-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_irresistible_dance.md b/Data/HD/srd_spells_irresistible_dance.md
index 6f3e82e7..88c332f6 100644
--- a/Data/HD/srd_spells_irresistible_dance.md
+++ b/Data/HD/srd_spells_irresistible_dance.md
@@ -4,7 +4,7 @@
# Irresistible Dance
-- MDR: [Danse irrésistible](hd_spells_danse_irresistible.md)
+- Alias: [Danse irrésistible](hd_spells_danse_irresistible.md)
- Source: (SRD p158)
- 6th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_jump.md b/Data/HD/srd_spells_jump.md
index da196878..f01aeb97 100644
--- a/Data/HD/srd_spells_jump.md
+++ b/Data/HD/srd_spells_jump.md
@@ -4,7 +4,7 @@
# Jump
-- MDR: [Saut](hd_spells_saut.md)
+- Alias: [Saut](hd_spells_saut.md)
- Source: (SRD p158)
- 1st-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_knock.md b/Data/HD/srd_spells_knock.md
index 9d9ec488..51c350f9 100644
--- a/Data/HD/srd_spells_knock.md
+++ b/Data/HD/srd_spells_knock.md
@@ -4,7 +4,7 @@
# Knock
-- MDR: [Déblocage](hd_spells_deblocage.md)
+- Alias: [Déblocage](hd_spells_deblocage.md)
- Source: (SRD p158)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_legend_lore.md b/Data/HD/srd_spells_legend_lore.md
index 16fa6cab..7c4792a0 100644
--- a/Data/HD/srd_spells_legend_lore.md
+++ b/Data/HD/srd_spells_legend_lore.md
@@ -4,7 +4,7 @@
# Legend Lore
-- MDR: [Légende](hd_spells_legende.md)
+- Alias: [Légende](hd_spells_legende.md)
- Source: (SRD p158)
- 5th-level divination
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_lesser_restoration.md b/Data/HD/srd_spells_lesser_restoration.md
index fd036ab3..e7f1b5d6 100644
--- a/Data/HD/srd_spells_lesser_restoration.md
+++ b/Data/HD/srd_spells_lesser_restoration.md
@@ -4,7 +4,7 @@
# Lesser Restoration
-- MDR: [Restauration inférieure](hd_spells_restauration_inferieure.md)
+- Alias: [Restauration inférieure](hd_spells_restauration_inferieure.md)
- Source: (SRD p158)
- 2nd-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_levitate.md b/Data/HD/srd_spells_levitate.md
index 70a84fa9..462caff9 100644
--- a/Data/HD/srd_spells_levitate.md
+++ b/Data/HD/srd_spells_levitate.md
@@ -4,7 +4,7 @@
# Levitate
-- MDR: [Lévitation](hd_spells_levitation.md)
+- Alias: [Lévitation](hd_spells_levitation.md)
- Source: (SRD p158)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_light.md b/Data/HD/srd_spells_light.md
index 3aa0ee4c..b97c2736 100644
--- a/Data/HD/srd_spells_light.md
+++ b/Data/HD/srd_spells_light.md
@@ -4,7 +4,7 @@
# Light
-- MDR: [Lumière](hd_spells_lumiere.md)
+- Alias: [Lumière](hd_spells_lumiere.md)
- Source: (SRD p159)
- Evocation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_lightning_bolt.md b/Data/HD/srd_spells_lightning_bolt.md
index 2607d8a1..34dbb860 100644
--- a/Data/HD/srd_spells_lightning_bolt.md
+++ b/Data/HD/srd_spells_lightning_bolt.md
@@ -4,7 +4,7 @@
# Lightning Bolt
-- MDR: [Éclair](hd_spells_eclair.md)
+- Alias: [Éclair](hd_spells_eclair.md)
- Source: (SRD p159)
- 3th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_locate_animals_or_plants.md b/Data/HD/srd_spells_locate_animals_or_plants.md
index 787b8438..fbcd79ff 100644
--- a/Data/HD/srd_spells_locate_animals_or_plants.md
+++ b/Data/HD/srd_spells_locate_animals_or_plants.md
@@ -4,7 +4,7 @@
# Locate Animals or Plants
-- MDR: [Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)
+- Alias: [Localiser des animaux ou des plantes](hd_spells_localiser_des_animaux_ou_des_plantes.md)
- Source: (SRD p159)
- 2nd-level divination (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_locate_creature.md b/Data/HD/srd_spells_locate_creature.md
index 905bf222..b7e214e0 100644
--- a/Data/HD/srd_spells_locate_creature.md
+++ b/Data/HD/srd_spells_locate_creature.md
@@ -4,7 +4,7 @@
# Locate Creature
-- MDR: [Localiser une créature](hd_spells_localiser_une_creature.md)
+- Alias: [Localiser une créature](hd_spells_localiser_une_creature.md)
- Source: (SRD p159)
- 4th-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_locate_object.md b/Data/HD/srd_spells_locate_object.md
index 4e590274..a3c1b428 100644
--- a/Data/HD/srd_spells_locate_object.md
+++ b/Data/HD/srd_spells_locate_object.md
@@ -4,7 +4,7 @@
# Locate Object
-- MDR: [Localiser un objet](hd_spells_localiser_un_objet.md)
+- Alias: [Localiser un objet](hd_spells_localiser_un_objet.md)
- Source: (SRD p159)
- 2nd-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_longstrider.md b/Data/HD/srd_spells_longstrider.md
index 34bebdb4..0a149483 100644
--- a/Data/HD/srd_spells_longstrider.md
+++ b/Data/HD/srd_spells_longstrider.md
@@ -4,7 +4,7 @@
# Longstrider
-- MDR: [Grande foulée](hd_spells_grande_foulee.md)
+- Alias: [Grande foulée](hd_spells_grande_foulee.md)
- Source: (SRD p160)
- 1st-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mage_armor.md b/Data/HD/srd_spells_mage_armor.md
index caf80d4d..3f1e49e6 100644
--- a/Data/HD/srd_spells_mage_armor.md
+++ b/Data/HD/srd_spells_mage_armor.md
@@ -4,7 +4,7 @@
# Mage Armor
-- MDR: [Armure du mage](hd_spells_armure_du_mage.md)
+- Alias: [Armure du mage](hd_spells_armure_du_mage.md)
- Source: (SRD p160)
- 1st-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mage_hand.md b/Data/HD/srd_spells_mage_hand.md
index f786dd9e..8a0d93be 100644
--- a/Data/HD/srd_spells_mage_hand.md
+++ b/Data/HD/srd_spells_mage_hand.md
@@ -4,7 +4,7 @@
# Mage Hand
-- MDR: [Main du mage](hd_spells_main_du_mage.md)
+- Alias: [Main du mage](hd_spells_main_du_mage.md)
- Source: (SRD p160)
- Conjuration cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_magic_circle.md b/Data/HD/srd_spells_magic_circle.md
index 4cdbdd52..cfcb2a32 100644
--- a/Data/HD/srd_spells_magic_circle.md
+++ b/Data/HD/srd_spells_magic_circle.md
@@ -4,7 +4,7 @@
# Magic Circle
-- MDR: [Cercle magique](hd_spells_cercle_magique.md)
+- Alias: [Cercle magique](hd_spells_cercle_magique.md)
- Source: (SRD p160)
- 3th-level abjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_magic_jar.md b/Data/HD/srd_spells_magic_jar.md
index 64e4979c..b33aaa9b 100644
--- a/Data/HD/srd_spells_magic_jar.md
+++ b/Data/HD/srd_spells_magic_jar.md
@@ -4,7 +4,7 @@
# Magic Jar
-- MDR: [Possession](hd_spells_possession.md)
+- Alias: [Possession](hd_spells_possession.md)
- Source: (SRD p160)
- 6th-level necromancy
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_magic_missile.md b/Data/HD/srd_spells_magic_missile.md
index 77d1ee2c..36d78c93 100644
--- a/Data/HD/srd_spells_magic_missile.md
+++ b/Data/HD/srd_spells_magic_missile.md
@@ -4,7 +4,7 @@
# Magic Missile
-- MDR: [Projectile magique](hd_spells_projectile_magique.md)
+- Alias: [Projectile magique](hd_spells_projectile_magique.md)
- Source: (SRD p161)
- 1st-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_magic_mouth.md b/Data/HD/srd_spells_magic_mouth.md
index db31d56d..adcd0a77 100644
--- a/Data/HD/srd_spells_magic_mouth.md
+++ b/Data/HD/srd_spells_magic_mouth.md
@@ -4,7 +4,7 @@
# Magic Mouth
-- MDR: [Bouche magique](hd_spells_bouche_magique.md)
+- Alias: [Bouche magique](hd_spells_bouche_magique.md)
- Source: (SRD p161)
- 2nd-level illusion (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_magic_weapon.md b/Data/HD/srd_spells_magic_weapon.md
index 8f973d3f..5dad98ed 100644
--- a/Data/HD/srd_spells_magic_weapon.md
+++ b/Data/HD/srd_spells_magic_weapon.md
@@ -4,7 +4,7 @@
# Magic Weapon
-- MDR: [Arme magique](hd_spells_arme_magique.md)
+- Alias: [Arme magique](hd_spells_arme_magique.md)
- Source: (SRD p161)
- 2nd-level transmutation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_magnificent_mansion.md b/Data/HD/srd_spells_magnificent_mansion.md
index 37259e7d..9b22ddde 100644
--- a/Data/HD/srd_spells_magnificent_mansion.md
+++ b/Data/HD/srd_spells_magnificent_mansion.md
@@ -4,7 +4,7 @@
# Magnificent Mansion
-- MDR: [Manoir somptueux](hd_spells_manoir_somptueux.md)
+- Alias: [Manoir somptueux](hd_spells_manoir_somptueux.md)
- Source: (SRD p162)
- 7th-level conjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_major_image.md b/Data/HD/srd_spells_major_image.md
index 27188a68..c8aa2c26 100644
--- a/Data/HD/srd_spells_major_image.md
+++ b/Data/HD/srd_spells_major_image.md
@@ -4,7 +4,7 @@
# Major Image
-- MDR: [Image majeure](hd_spells_image_majeure.md)
+- Alias: [Image majeure](hd_spells_image_majeure.md)
- Source: (SRD p162)
- 3th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mass_cure_wounds.md b/Data/HD/srd_spells_mass_cure_wounds.md
index af278853..8e9a9c12 100644
--- a/Data/HD/srd_spells_mass_cure_wounds.md
+++ b/Data/HD/srd_spells_mass_cure_wounds.md
@@ -4,7 +4,7 @@
# Mass Cure Wounds
-- MDR: [Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)
+- Alias: [Soin des blessures de groupe](hd_spells_soin_des_blessures_de_groupe.md)
- Source: (SRD p162)
- 5th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mass_heal.md b/Data/HD/srd_spells_mass_heal.md
index cd847afa..c6a0ac0f 100644
--- a/Data/HD/srd_spells_mass_heal.md
+++ b/Data/HD/srd_spells_mass_heal.md
@@ -4,7 +4,7 @@
# Mass Heal
-- MDR: [Guérison de groupe](hd_spells_guerison_de_groupe.md)
+- Alias: [Guérison de groupe](hd_spells_guerison_de_groupe.md)
- Source: (SRD p163)
- 9th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mass_healing_word.md b/Data/HD/srd_spells_mass_healing_word.md
index 942e1d39..943d0a6b 100644
--- a/Data/HD/srd_spells_mass_healing_word.md
+++ b/Data/HD/srd_spells_mass_healing_word.md
@@ -4,7 +4,7 @@
# Mass Healing Word
-- MDR: [Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)
+- Alias: [Mot de guérison de groupe](hd_spells_mot_de_guerison_de_groupe.md)
- Source: (SRD p163)
- 3th-level evocation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_mass_suggestion.md b/Data/HD/srd_spells_mass_suggestion.md
index 23891992..5ca0204a 100644
--- a/Data/HD/srd_spells_mass_suggestion.md
+++ b/Data/HD/srd_spells_mass_suggestion.md
@@ -4,7 +4,7 @@
# Mass Suggestion
-- MDR: [Suggestion de groupe](hd_spells_suggestion_de_groupe.md)
+- Alias: [Suggestion de groupe](hd_spells_suggestion_de_groupe.md)
- Source: (SRD p163)
- 6th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_maze.md b/Data/HD/srd_spells_maze.md
index 68a1befc..dc178836 100644
--- a/Data/HD/srd_spells_maze.md
+++ b/Data/HD/srd_spells_maze.md
@@ -4,7 +4,7 @@
# Maze
-- MDR: [Labyrinthe](hd_spells_labyrinthe.md)
+- Alias: [Labyrinthe](hd_spells_labyrinthe.md)
- Source: (SRD p163)
- 8th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_meld_into_stone.md b/Data/HD/srd_spells_meld_into_stone.md
index d71e0364..f457b237 100644
--- a/Data/HD/srd_spells_meld_into_stone.md
+++ b/Data/HD/srd_spells_meld_into_stone.md
@@ -4,7 +4,7 @@
# Meld into Stone
-- MDR: [Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)
+- Alias: [Fusion dans la pierre](hd_spells_fusion_dans_la_pierre.md)
- Source: (SRD p163)
- 3th-level transmutation (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mending.md b/Data/HD/srd_spells_mending.md
index b09a42cb..4b4de471 100644
--- a/Data/HD/srd_spells_mending.md
+++ b/Data/HD/srd_spells_mending.md
@@ -4,7 +4,7 @@
# Mending
-- MDR: [Réparation](hd_spells_reparation.md)
+- Alias: [Réparation](hd_spells_reparation.md)
- Source: (SRD p164)
- Transmutation cantrip
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_message.md b/Data/HD/srd_spells_message.md
index 8a4f7223..dad97231 100644
--- a/Data/HD/srd_spells_message.md
+++ b/Data/HD/srd_spells_message.md
@@ -4,7 +4,7 @@
# Message
-- MDR: [Message](hd_spells_message.md)
+- Alias: [Message](hd_spells_message.md)
- Source: (SRD p164)
- Transmutation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_meteor_swarm.md b/Data/HD/srd_spells_meteor_swarm.md
index 4e6455aa..ae0b6bb8 100644
--- a/Data/HD/srd_spells_meteor_swarm.md
+++ b/Data/HD/srd_spells_meteor_swarm.md
@@ -4,7 +4,7 @@
# Meteor Swarm
-- MDR: [Nuée de météores](hd_spells_nuee_de_meteores.md)
+- Alias: [Nuée de météores](hd_spells_nuee_de_meteores.md)
- Source: (SRD p164)
- 9th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mind_blank.md b/Data/HD/srd_spells_mind_blank.md
index de1c70d1..4ffb5e9b 100644
--- a/Data/HD/srd_spells_mind_blank.md
+++ b/Data/HD/srd_spells_mind_blank.md
@@ -4,7 +4,7 @@
# Mind Blank
-- MDR: [Esprit impénétrable](hd_spells_esprit_impenetrable.md)
+- Alias: [Esprit impénétrable](hd_spells_esprit_impenetrable.md)
- Source: (SRD p164)
- 8th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_minor_illusion.md b/Data/HD/srd_spells_minor_illusion.md
index e29cd48f..cd3bbafd 100644
--- a/Data/HD/srd_spells_minor_illusion.md
+++ b/Data/HD/srd_spells_minor_illusion.md
@@ -4,7 +4,7 @@
# Minor Illusion
-- MDR: [Illusion mineure](hd_spells_illusion_mineure.md)
+- Alias: [Illusion mineure](hd_spells_illusion_mineure.md)
- Source: (SRD p164)
- Illusion cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mirage_arcane.md b/Data/HD/srd_spells_mirage_arcane.md
index 0ab31e7a..ecd0a262 100644
--- a/Data/HD/srd_spells_mirage_arcane.md
+++ b/Data/HD/srd_spells_mirage_arcane.md
@@ -4,7 +4,7 @@
# Mirage Arcane
-- MDR: [Mirage](hd_spells_mirage.md)
+- Alias: [Mirage](hd_spells_mirage.md)
- Source: (SRD p165)
- 7th-level illusion
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_mirror_image.md b/Data/HD/srd_spells_mirror_image.md
index 40756462..00f37e99 100644
--- a/Data/HD/srd_spells_mirror_image.md
+++ b/Data/HD/srd_spells_mirror_image.md
@@ -4,7 +4,7 @@
# Mirror Image
-- MDR: [Image miroir](hd_spells_image_miroir.md)
+- Alias: [Image miroir](hd_spells_image_miroir.md)
- Source: (SRD p165)
- 2nd-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_mislead.md b/Data/HD/srd_spells_mislead.md
index c62f9088..e44f046c 100644
--- a/Data/HD/srd_spells_mislead.md
+++ b/Data/HD/srd_spells_mislead.md
@@ -4,7 +4,7 @@
# Mislead
-- MDR: [Tromperie](hd_spells_tromperie.md)
+- Alias: [Tromperie](hd_spells_tromperie.md)
- Source: (SRD p165)
- 5th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_misty_step.md b/Data/HD/srd_spells_misty_step.md
index 7a3bb10a..a786afb3 100644
--- a/Data/HD/srd_spells_misty_step.md
+++ b/Data/HD/srd_spells_misty_step.md
@@ -4,7 +4,7 @@
# Misty Step
-- MDR: [Pas brumeux](hd_spells_pas_brumeux.md)
+- Alias: [Pas brumeux](hd_spells_pas_brumeux.md)
- Source: (SRD p165)
- 2nd-level conjuration
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_modify_memory.md b/Data/HD/srd_spells_modify_memory.md
index 863e7769..880762d3 100644
--- a/Data/HD/srd_spells_modify_memory.md
+++ b/Data/HD/srd_spells_modify_memory.md
@@ -4,7 +4,7 @@
# Modify Memory
-- MDR: [Modification de mémoire](hd_spells_modification_de_memoire.md)
+- Alias: [Modification de mémoire](hd_spells_modification_de_memoire.md)
- Source: (SRD p166)
- 5th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_moonbeam.md b/Data/HD/srd_spells_moonbeam.md
index 049a7542..ed35545e 100644
--- a/Data/HD/srd_spells_moonbeam.md
+++ b/Data/HD/srd_spells_moonbeam.md
@@ -4,7 +4,7 @@
# Moonbeam
-- MDR: [Rayon de lune](hd_spells_rayon_de_lune.md)
+- Alias: [Rayon de lune](hd_spells_rayon_de_lune.md)
- Source: (SRD p166)
- 2nd-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_move_earth.md b/Data/HD/srd_spells_move_earth.md
index 2468d0e9..9de451b3 100644
--- a/Data/HD/srd_spells_move_earth.md
+++ b/Data/HD/srd_spells_move_earth.md
@@ -4,7 +4,7 @@
# Move Earth
-- MDR: [Déplacer la terre](hd_spells_deplacer_la_terre.md)
+- Alias: [Déplacer la terre](hd_spells_deplacer_la_terre.md)
- Source: (SRD p166)
- 6th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_nondetection.md b/Data/HD/srd_spells_nondetection.md
index f77322ea..50bcc4b9 100644
--- a/Data/HD/srd_spells_nondetection.md
+++ b/Data/HD/srd_spells_nondetection.md
@@ -4,7 +4,7 @@
# Nondetection
-- MDR: [Non-détection](hd_spells_non_detection.md)
+- Alias: [Non-détection](hd_spells_non_detection.md)
- Source: (SRD p167)
- 3th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_pass_without_trace.md b/Data/HD/srd_spells_pass_without_trace.md
index 639df444..d56f3697 100644
--- a/Data/HD/srd_spells_pass_without_trace.md
+++ b/Data/HD/srd_spells_pass_without_trace.md
@@ -4,7 +4,7 @@
# Pass without Trace
-- MDR: [Passage sans trace](hd_spells_passage_sans_trace.md)
+- Alias: [Passage sans trace](hd_spells_passage_sans_trace.md)
- Source: (SRD p167)
- 2nd-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_passwall.md b/Data/HD/srd_spells_passwall.md
index 5f24b1ff..07b7d99b 100644
--- a/Data/HD/srd_spells_passwall.md
+++ b/Data/HD/srd_spells_passwall.md
@@ -4,7 +4,7 @@
# Passwall
-- MDR: [Passe-muraille](hd_spells_passe_muraille.md)
+- Alias: [Passe-muraille](hd_spells_passe_muraille.md)
- Source: (SRD p167)
- 5th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_phantasmal_killer.md b/Data/HD/srd_spells_phantasmal_killer.md
index 3bda11f8..7a142151 100644
--- a/Data/HD/srd_spells_phantasmal_killer.md
+++ b/Data/HD/srd_spells_phantasmal_killer.md
@@ -4,7 +4,7 @@
# Phantasmal Killer
-- MDR: [Assassin imaginaire](hd_spells_assassin_imaginaire.md)
+- Alias: [Assassin imaginaire](hd_spells_assassin_imaginaire.md)
- Source: (SRD p167)
- 4th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_phantom_steed.md b/Data/HD/srd_spells_phantom_steed.md
index ee28e245..33724cf5 100644
--- a/Data/HD/srd_spells_phantom_steed.md
+++ b/Data/HD/srd_spells_phantom_steed.md
@@ -4,7 +4,7 @@
# Phantom Steed
-- MDR: [Monture fantôme](hd_spells_monture_fantome.md)
+- Alias: [Monture fantôme](hd_spells_monture_fantome.md)
- Source: (SRD p167)
- 3th-level illusion (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_planar_ally.md b/Data/HD/srd_spells_planar_ally.md
index cccd0590..a9d410ab 100644
--- a/Data/HD/srd_spells_planar_ally.md
+++ b/Data/HD/srd_spells_planar_ally.md
@@ -4,7 +4,7 @@
# Planar Ally
-- MDR: [Allié planaire](hd_spells_allie_planaire.md)
+- Alias: [Allié planaire](hd_spells_allie_planaire.md)
- Source: (SRD p168)
- 6th-level conjuration
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_planar_binding.md b/Data/HD/srd_spells_planar_binding.md
index f90af89a..0982367e 100644
--- a/Data/HD/srd_spells_planar_binding.md
+++ b/Data/HD/srd_spells_planar_binding.md
@@ -4,7 +4,7 @@
# Planar Binding
-- MDR: [Entrave planaire](hd_spells_entrave_planaire.md)
+- Alias: [Entrave planaire](hd_spells_entrave_planaire.md)
- Source: (SRD p168)
- 5th-level abjuration
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_plane_shift.md b/Data/HD/srd_spells_plane_shift.md
index 68157c14..bef580f4 100644
--- a/Data/HD/srd_spells_plane_shift.md
+++ b/Data/HD/srd_spells_plane_shift.md
@@ -4,7 +4,7 @@
# Plane Shift
-- MDR: [Changement de plan](hd_spells_changement_de_plan.md)
+- Alias: [Changement de plan](hd_spells_changement_de_plan.md)
- Source: (SRD p168)
- 7th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_plant_growth.md b/Data/HD/srd_spells_plant_growth.md
index 7e1dddef..59c6dd33 100644
--- a/Data/HD/srd_spells_plant_growth.md
+++ b/Data/HD/srd_spells_plant_growth.md
@@ -4,7 +4,7 @@
# Plant Growth
-- MDR: [Croissance végétale](hd_spells_croissance_vegetale.md)
+- Alias: [Croissance végétale](hd_spells_croissance_vegetale.md)
- Source: (SRD p169)
- 3th-level transmutation
- **Casting Time :** 1 action or 8 hours
diff --git a/Data/HD/srd_spells_poison_spray.md b/Data/HD/srd_spells_poison_spray.md
index b2cee5e6..a128cffd 100644
--- a/Data/HD/srd_spells_poison_spray.md
+++ b/Data/HD/srd_spells_poison_spray.md
@@ -4,7 +4,7 @@
# Poison Spray
-- MDR: [Bouffée de poison](hd_spells_bouffee_de_poison.md)
+- Alias: [Bouffée de poison](hd_spells_bouffee_de_poison.md)
- Source: (SRD p169)
- Conjuration cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_polymorph.md b/Data/HD/srd_spells_polymorph.md
index 4b84df8b..4af3c7bc 100644
--- a/Data/HD/srd_spells_polymorph.md
+++ b/Data/HD/srd_spells_polymorph.md
@@ -4,7 +4,7 @@
# Polymorph
-- MDR: [Métamorphose](hd_spells_metamorphose.md)
+- Alias: [Métamorphose](hd_spells_metamorphose.md)
- Source: (SRD p169)
- 4th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_power_word_kill.md b/Data/HD/srd_spells_power_word_kill.md
index 2ff9948b..aca69ba1 100644
--- a/Data/HD/srd_spells_power_word_kill.md
+++ b/Data/HD/srd_spells_power_word_kill.md
@@ -4,7 +4,7 @@
# Power Word Kill
-- MDR: [Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)
+- Alias: [Mot de pouvoir mortel](hd_spells_mot_de_pouvoir_mortel.md)
- Source: (SRD p170)
- 9th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_power_word_stun.md b/Data/HD/srd_spells_power_word_stun.md
index db40693f..e9880501 100644
--- a/Data/HD/srd_spells_power_word_stun.md
+++ b/Data/HD/srd_spells_power_word_stun.md
@@ -4,7 +4,7 @@
# Power Word Stun
-- MDR: [Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)
+- Alias: [Mot de pouvoir étourdissant](hd_spells_mot_de_pouvoir_etourdissant.md)
- Source: (SRD p170)
- 8th-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_prayer_of_healing.md b/Data/HD/srd_spells_prayer_of_healing.md
index 2a3262eb..df3d00a9 100644
--- a/Data/HD/srd_spells_prayer_of_healing.md
+++ b/Data/HD/srd_spells_prayer_of_healing.md
@@ -4,7 +4,7 @@
# Prayer of Healing
-- MDR: [Prière de soins](hd_spells_priere_de_soins.md)
+- Alias: [Prière de soins](hd_spells_priere_de_soins.md)
- Source: (SRD p170)
- 2nd-level evocation
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_prestidigitation.md b/Data/HD/srd_spells_prestidigitation.md
index 12237991..fc8e5b55 100644
--- a/Data/HD/srd_spells_prestidigitation.md
+++ b/Data/HD/srd_spells_prestidigitation.md
@@ -4,7 +4,7 @@
# Prestidigitation
-- MDR: [Prestidigitation](hd_spells_prestidigitation.md)
+- Alias: [Prestidigitation](hd_spells_prestidigitation.md)
- Source: (SRD p170)
- Transmutation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_prismatic_spray.md b/Data/HD/srd_spells_prismatic_spray.md
index cf6f17bc..8696ef12 100644
--- a/Data/HD/srd_spells_prismatic_spray.md
+++ b/Data/HD/srd_spells_prismatic_spray.md
@@ -4,7 +4,7 @@
# Prismatic Spray
-- MDR: [Embruns prismatiques](hd_spells_embruns_prismatiques.md)
+- Alias: [Embruns prismatiques](hd_spells_embruns_prismatiques.md)
- Source: (SRD p170)
- 7th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_prismatic_wall.md b/Data/HD/srd_spells_prismatic_wall.md
index 9d6e60cc..5fe322d4 100644
--- a/Data/HD/srd_spells_prismatic_wall.md
+++ b/Data/HD/srd_spells_prismatic_wall.md
@@ -4,7 +4,7 @@
# Prismatic Wall
-- MDR: [Mur prismatique](hd_spells_mur_prismatique.md)
+- Alias: [Mur prismatique](hd_spells_mur_prismatique.md)
- Source: (SRD p171)
- 9th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_private_sanctum.md b/Data/HD/srd_spells_private_sanctum.md
index eeb38d29..0d2cc6a5 100644
--- a/Data/HD/srd_spells_private_sanctum.md
+++ b/Data/HD/srd_spells_private_sanctum.md
@@ -4,7 +4,7 @@
# Private Sanctum
-- MDR: [Sanctuaire privé](hd_spells_sanctuaire_prive.md)
+- Alias: [Sanctuaire privé](hd_spells_sanctuaire_prive.md)
- Source: (SRD p171)
- 4th-level abjuration
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_produce_flame.md b/Data/HD/srd_spells_produce_flame.md
index e1890e32..f9606375 100644
--- a/Data/HD/srd_spells_produce_flame.md
+++ b/Data/HD/srd_spells_produce_flame.md
@@ -4,7 +4,7 @@
# Produce Flame
-- MDR: [Produire une flamme](hd_spells_produire_une_flamme.md)
+- Alias: [Produire une flamme](hd_spells_produire_une_flamme.md)
- Source: (SRD p172)
- Conjuration cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_programmed_illusion.md b/Data/HD/srd_spells_programmed_illusion.md
index a18e4dee..34ff231d 100644
--- a/Data/HD/srd_spells_programmed_illusion.md
+++ b/Data/HD/srd_spells_programmed_illusion.md
@@ -4,7 +4,7 @@
# Programmed Illusion
-- MDR: [Illusion programmée](hd_spells_illusion_programmee.md)
+- Alias: [Illusion programmée](hd_spells_illusion_programmee.md)
- Source: (SRD p172)
- 6th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_project_image.md b/Data/HD/srd_spells_project_image.md
index 8688484a..21025cff 100644
--- a/Data/HD/srd_spells_project_image.md
+++ b/Data/HD/srd_spells_project_image.md
@@ -4,7 +4,7 @@
# Project Image
-- MDR: [Image projetée](hd_spells_image_projetee.md)
+- Alias: [Image projetée](hd_spells_image_projetee.md)
- Source: (SRD p172)
- 7th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_protection_from_energy.md b/Data/HD/srd_spells_protection_from_energy.md
index 27e7a08e..59bcf838 100644
--- a/Data/HD/srd_spells_protection_from_energy.md
+++ b/Data/HD/srd_spells_protection_from_energy.md
@@ -4,7 +4,7 @@
# Protection from Energy
-- MDR: [Protection contre les énergies](hd_spells_protection_contre_les_energies.md)
+- Alias: [Protection contre les énergies](hd_spells_protection_contre_les_energies.md)
- Source: (SRD p173)
- 3th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_protection_from_evil_and_good.md b/Data/HD/srd_spells_protection_from_evil_and_good.md
index 0cf62209..62464291 100644
--- a/Data/HD/srd_spells_protection_from_evil_and_good.md
+++ b/Data/HD/srd_spells_protection_from_evil_and_good.md
@@ -4,7 +4,7 @@
# Protection from Evil and Good
-- MDR: [Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)
+- Alias: [Protection contre le mal et le bien](hd_spells_protection_contre_le_mal_et_le_bien.md)
- Source: (SRD p173)
- 1st-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_protection_from_poison.md b/Data/HD/srd_spells_protection_from_poison.md
index db9adee4..99807eae 100644
--- a/Data/HD/srd_spells_protection_from_poison.md
+++ b/Data/HD/srd_spells_protection_from_poison.md
@@ -4,7 +4,7 @@
# Protection from Poison
-- MDR: [Protection contre le poison](hd_spells_protection_contre_le_poison.md)
+- Alias: [Protection contre le poison](hd_spells_protection_contre_le_poison.md)
- Source: (SRD p173)
- 2nd-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_purify_food_and_drink.md b/Data/HD/srd_spells_purify_food_and_drink.md
index ae6202d4..b5a7f970 100644
--- a/Data/HD/srd_spells_purify_food_and_drink.md
+++ b/Data/HD/srd_spells_purify_food_and_drink.md
@@ -4,7 +4,7 @@
# Purify Food and Drink
-- MDR: [Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)
+- Alias: [Purification de la nourriture et de l'eau](hd_spells_purification_de_la_nourriture_et_de_leau.md)
- Source: (SRD p173)
- 1st-level transmutation (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_raise_dead.md b/Data/HD/srd_spells_raise_dead.md
index ace81cac..8a439f35 100644
--- a/Data/HD/srd_spells_raise_dead.md
+++ b/Data/HD/srd_spells_raise_dead.md
@@ -4,7 +4,7 @@
# Raise Dead
-- MDR: [Rappel à la vie](hd_spells_rappel_a_la_vie.md)
+- Alias: [Rappel à la vie](hd_spells_rappel_a_la_vie.md)
- Source: (SRD p173)
- 5th-level necromancy
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_ray_of_enfeeblement.md b/Data/HD/srd_spells_ray_of_enfeeblement.md
index 9b0a8c1d..4b1a1652 100644
--- a/Data/HD/srd_spells_ray_of_enfeeblement.md
+++ b/Data/HD/srd_spells_ray_of_enfeeblement.md
@@ -4,7 +4,7 @@
# Ray of Enfeeblement
-- MDR: [Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)
+- Alias: [Rayon affaiblissant](hd_spells_rayon_affaiblissant.md)
- Source: (SRD p174)
- 2nd-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_ray_of_frost.md b/Data/HD/srd_spells_ray_of_frost.md
index b5d8c8db..13fa351e 100644
--- a/Data/HD/srd_spells_ray_of_frost.md
+++ b/Data/HD/srd_spells_ray_of_frost.md
@@ -4,7 +4,7 @@
# Ray of Frost
-- MDR: [Rayon de givre](hd_spells_rayon_de_givre.md)
+- Alias: [Rayon de givre](hd_spells_rayon_de_givre.md)
- Source: (SRD p174)
- Evocation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_regenerate.md b/Data/HD/srd_spells_regenerate.md
index ce1e2c99..172efa1c 100644
--- a/Data/HD/srd_spells_regenerate.md
+++ b/Data/HD/srd_spells_regenerate.md
@@ -4,7 +4,7 @@
# Regenerate
-- MDR: [Régénération](hd_spells_regeneration.md)
+- Alias: [Régénération](hd_spells_regeneration.md)
- Source: (SRD p174)
- 7th-level transmutation
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_reincarnate.md b/Data/HD/srd_spells_reincarnate.md
index 22954736..73b9a422 100644
--- a/Data/HD/srd_spells_reincarnate.md
+++ b/Data/HD/srd_spells_reincarnate.md
@@ -4,7 +4,7 @@
# Reincarnate
-- MDR: [Réincarnation](hd_spells_reincarnation.md)
+- Alias: [Réincarnation](hd_spells_reincarnation.md)
- Source: (SRD p174)
- 5th-level transmutation
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_remove_curse.md b/Data/HD/srd_spells_remove_curse.md
index 5c84910b..2352f372 100644
--- a/Data/HD/srd_spells_remove_curse.md
+++ b/Data/HD/srd_spells_remove_curse.md
@@ -4,7 +4,7 @@
# Remove Curse
-- MDR: [Lever une malédiction](hd_spells_lever_une_malediction.md)
+- Alias: [Lever une malédiction](hd_spells_lever_une_malediction.md)
- Source: (SRD p174)
- 3th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_resilient_sphere.md b/Data/HD/srd_spells_resilient_sphere.md
index 148f7b86..01795c55 100644
--- a/Data/HD/srd_spells_resilient_sphere.md
+++ b/Data/HD/srd_spells_resilient_sphere.md
@@ -4,7 +4,7 @@
# Resilient Sphere
-- MDR: [Sphère résiliente](hd_spells_sphere_resiliente.md)
+- Alias: [Sphère résiliente](hd_spells_sphere_resiliente.md)
- Source: (SRD p175)
- 4th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_resistance.md b/Data/HD/srd_spells_resistance.md
index ed2263ba..e2d9b551 100644
--- a/Data/HD/srd_spells_resistance.md
+++ b/Data/HD/srd_spells_resistance.md
@@ -4,7 +4,7 @@
# Resistance
-- MDR: [Résistance](hd_spells_resistance.md)
+- Alias: [Résistance](hd_spells_resistance.md)
- Source: (SRD p175)
- Abjuration cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_resurrection.md b/Data/HD/srd_spells_resurrection.md
index 02955795..5b5c0d6c 100644
--- a/Data/HD/srd_spells_resurrection.md
+++ b/Data/HD/srd_spells_resurrection.md
@@ -4,7 +4,7 @@
# Resurrection
-- MDR: [Résurrection](hd_spells_resurrection.md)
+- Alias: [Résurrection](hd_spells_resurrection.md)
- Source: (SRD p175)
- 7th-level necromancy
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_reverse_gravity.md b/Data/HD/srd_spells_reverse_gravity.md
index ae038afb..d9b1283e 100644
--- a/Data/HD/srd_spells_reverse_gravity.md
+++ b/Data/HD/srd_spells_reverse_gravity.md
@@ -4,7 +4,7 @@
# Reverse Gravity
-- MDR: [Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)
+- Alias: [Inversion de la gravité](hd_spells_inversion_de_la_gravite.md)
- Source: (SRD p175)
- 7th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_revivify.md b/Data/HD/srd_spells_revivify.md
index 70996194..ec258240 100644
--- a/Data/HD/srd_spells_revivify.md
+++ b/Data/HD/srd_spells_revivify.md
@@ -4,7 +4,7 @@
# Revivify
-- MDR: [Revigorer](hd_spells_revigorer.md)
+- Alias: [Revigorer](hd_spells_revigorer.md)
- Source: (SRD p175)
- 3th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_rope_trick.md b/Data/HD/srd_spells_rope_trick.md
index a41cc703..ec1709c2 100644
--- a/Data/HD/srd_spells_rope_trick.md
+++ b/Data/HD/srd_spells_rope_trick.md
@@ -4,7 +4,7 @@
# Rope Trick
-- MDR: [Corde enchantée](hd_spells_corde_enchantee.md)
+- Alias: [Corde enchantée](hd_spells_corde_enchantee.md)
- Source: (SRD p176)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_sacred_flame.md b/Data/HD/srd_spells_sacred_flame.md
index 36aa661b..be6b4ab3 100644
--- a/Data/HD/srd_spells_sacred_flame.md
+++ b/Data/HD/srd_spells_sacred_flame.md
@@ -4,7 +4,7 @@
# Sacred Flame
-- MDR: [Flamme sacrée](hd_spells_flamme_sacree.md)
+- Alias: [Flamme sacrée](hd_spells_flamme_sacree.md)
- Source: (SRD p176)
- Evocation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_sanctuary.md b/Data/HD/srd_spells_sanctuary.md
index e33ab0fe..7b04ddc0 100644
--- a/Data/HD/srd_spells_sanctuary.md
+++ b/Data/HD/srd_spells_sanctuary.md
@@ -4,7 +4,7 @@
# Sanctuary
-- MDR: [Sanctuaire](hd_spells_sanctuaire.md)
+- Alias: [Sanctuaire](hd_spells_sanctuaire.md)
- Source: (SRD p176)
- 1st-level abjuration
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_scorching_ray.md b/Data/HD/srd_spells_scorching_ray.md
index 93cbefdd..a4ab962c 100644
--- a/Data/HD/srd_spells_scorching_ray.md
+++ b/Data/HD/srd_spells_scorching_ray.md
@@ -4,7 +4,7 @@
# Scorching Ray
-- MDR: [Rayon ardent](hd_spells_rayon_ardent.md)
+- Alias: [Rayon ardent](hd_spells_rayon_ardent.md)
- Source: (SRD p176)
- 2nd-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_scrying.md b/Data/HD/srd_spells_scrying.md
index c5b29daa..4e831a8c 100644
--- a/Data/HD/srd_spells_scrying.md
+++ b/Data/HD/srd_spells_scrying.md
@@ -4,7 +4,7 @@
# Scrying
-- MDR: [Scrutation](hd_spells_scrutation.md)
+- Alias: [Scrutation](hd_spells_scrutation.md)
- Source: (SRD p176)
- 5th-level divination
- **Casting Time :** 10 minutes
diff --git a/Data/HD/srd_spells_secret_chest.md b/Data/HD/srd_spells_secret_chest.md
index 674ef31f..b4e77974 100644
--- a/Data/HD/srd_spells_secret_chest.md
+++ b/Data/HD/srd_spells_secret_chest.md
@@ -4,7 +4,7 @@
# Secret Chest
-- MDR: [Coffre secret](hd_spells_coffre_secret.md)
+- Alias: [Coffre secret](hd_spells_coffre_secret.md)
- Source: (SRD p177)
- 4th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_see_invisibility.md b/Data/HD/srd_spells_see_invisibility.md
index 90089fb6..b223bc64 100644
--- a/Data/HD/srd_spells_see_invisibility.md
+++ b/Data/HD/srd_spells_see_invisibility.md
@@ -4,7 +4,7 @@
# See Invisibility
-- MDR: [Voir l'invisible](hd_spells_voir_linvisible.md)
+- Alias: [Voir l'invisible](hd_spells_voir_linvisible.md)
- Source: (SRD p177)
- 2nd-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_seeming.md b/Data/HD/srd_spells_seeming.md
index efad07a8..6db3cc2c 100644
--- a/Data/HD/srd_spells_seeming.md
+++ b/Data/HD/srd_spells_seeming.md
@@ -4,7 +4,7 @@
# Seeming
-- MDR: [Apparence trompeuse](hd_spells_apparence_trompeuse.md)
+- Alias: [Apparence trompeuse](hd_spells_apparence_trompeuse.md)
- Source: (SRD p177)
- 5th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_sending.md b/Data/HD/srd_spells_sending.md
index e8cfb11a..57d77a63 100644
--- a/Data/HD/srd_spells_sending.md
+++ b/Data/HD/srd_spells_sending.md
@@ -4,7 +4,7 @@
# Sending
-- MDR: [Envoi de message](hd_spells_envoi_de_message.md)
+- Alias: [Envoi de message](hd_spells_envoi_de_message.md)
- Source: (SRD p177)
- 3th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_sequester.md b/Data/HD/srd_spells_sequester.md
index f959aaf4..a7b26c1a 100644
--- a/Data/HD/srd_spells_sequester.md
+++ b/Data/HD/srd_spells_sequester.md
@@ -4,7 +4,7 @@
# Sequester
-- MDR: [Séquestration](hd_spells_sequestration.md)
+- Alias: [Séquestration](hd_spells_sequestration.md)
- Source: (SRD p178)
- 7th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_shapechange.md b/Data/HD/srd_spells_shapechange.md
index d9ea43e9..a4dc315c 100644
--- a/Data/HD/srd_spells_shapechange.md
+++ b/Data/HD/srd_spells_shapechange.md
@@ -4,7 +4,7 @@
# Shapechange
-- MDR: [Changement de forme](hd_spells_changement_de_forme.md)
+- Alias: [Changement de forme](hd_spells_changement_de_forme.md)
- Source: (SRD p178)
- 9th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_shatter.md b/Data/HD/srd_spells_shatter.md
index c3ae3e12..ffe42ff3 100644
--- a/Data/HD/srd_spells_shatter.md
+++ b/Data/HD/srd_spells_shatter.md
@@ -4,7 +4,7 @@
# Shatter
-- MDR: [Briser](hd_spells_briser.md)
+- Alias: [Briser](hd_spells_briser.md)
- Source: (SRD p178)
- 2nd-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_shield.md b/Data/HD/srd_spells_shield.md
index b35173f0..e866479c 100644
--- a/Data/HD/srd_spells_shield.md
+++ b/Data/HD/srd_spells_shield.md
@@ -4,7 +4,7 @@
# Shield
-- MDR: [Bouclier](hd_spells_bouclier.md)
+- Alias: [Bouclier](hd_spells_bouclier.md)
- Source: (SRD p179)
- 1st-level abjuration
- **Casting Time :** 1 reaction, which you take when you are hit by an attack or targeted by the magic missile spell
diff --git a/Data/HD/srd_spells_shield_of_faith.md b/Data/HD/srd_spells_shield_of_faith.md
index ea1102de..8c7e47fe 100644
--- a/Data/HD/srd_spells_shield_of_faith.md
+++ b/Data/HD/srd_spells_shield_of_faith.md
@@ -4,7 +4,7 @@
# Shield of Faith
-- MDR: [Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)
+- Alias: [Bouclier de la foi](hd_spells_bouclier_de_la_foi.md)
- Source: (SRD p179)
- 1st-level abjuration
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_shillelagh.md b/Data/HD/srd_spells_shillelagh.md
index 5ae3dd88..f3851e9c 100644
--- a/Data/HD/srd_spells_shillelagh.md
+++ b/Data/HD/srd_spells_shillelagh.md
@@ -4,7 +4,7 @@
# Shillelagh
-- MDR: [Gourdin magique](hd_spells_gourdin_magique.md)
+- Alias: [Gourdin magique](hd_spells_gourdin_magique.md)
- Source: (SRD p179)
- Transmutation cantrip
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_shocking_grasp.md b/Data/HD/srd_spells_shocking_grasp.md
index c648662a..67579be6 100644
--- a/Data/HD/srd_spells_shocking_grasp.md
+++ b/Data/HD/srd_spells_shocking_grasp.md
@@ -4,7 +4,7 @@
# Shocking Grasp
-- MDR: [Poigne électrique](hd_spells_poigne_electrique.md)
+- Alias: [Poigne électrique](hd_spells_poigne_electrique.md)
- Source: (SRD p179)
- Evocation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_silence.md b/Data/HD/srd_spells_silence.md
index 3e9d3236..c2b3e2e7 100644
--- a/Data/HD/srd_spells_silence.md
+++ b/Data/HD/srd_spells_silence.md
@@ -4,7 +4,7 @@
# Silence
-- MDR: [Silence](hd_spells_silence.md)
+- Alias: [Silence](hd_spells_silence.md)
- Source: (SRD p179)
- 2nd-level illusion (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_silent_image.md b/Data/HD/srd_spells_silent_image.md
index 569875c6..4908f6fc 100644
--- a/Data/HD/srd_spells_silent_image.md
+++ b/Data/HD/srd_spells_silent_image.md
@@ -4,7 +4,7 @@
# Silent Image
-- MDR: [Image silencieuse](hd_spells_image_silencieuse.md)
+- Alias: [Image silencieuse](hd_spells_image_silencieuse.md)
- Source: (SRD p179)
- 1st-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_simulacrum.md b/Data/HD/srd_spells_simulacrum.md
index fdfed02b..fbf93a7d 100644
--- a/Data/HD/srd_spells_simulacrum.md
+++ b/Data/HD/srd_spells_simulacrum.md
@@ -4,7 +4,7 @@
# Simulacrum
-- MDR: [Simulacre](hd_spells_simulacre.md)
+- Alias: [Simulacre](hd_spells_simulacre.md)
- Source: (SRD p180)
- 7th-level illusion
- **Casting Time :** 12 hours
diff --git a/Data/HD/srd_spells_sleep.md b/Data/HD/srd_spells_sleep.md
index e6f7c0ea..047160d9 100644
--- a/Data/HD/srd_spells_sleep.md
+++ b/Data/HD/srd_spells_sleep.md
@@ -4,7 +4,7 @@
# Sleep
-- MDR: [Sommeil](hd_spells_sommeil.md)
+- Alias: [Sommeil](hd_spells_sommeil.md)
- Source: (SRD p180)
- 1st-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_sleet_storm.md b/Data/HD/srd_spells_sleet_storm.md
index 7fcc2770..499c0578 100644
--- a/Data/HD/srd_spells_sleet_storm.md
+++ b/Data/HD/srd_spells_sleet_storm.md
@@ -4,7 +4,7 @@
# Sleet Storm
-- MDR: [Tempête de neige](hd_spells_tempete_de_neige.md)
+- Alias: [Tempête de neige](hd_spells_tempete_de_neige.md)
- Source: (SRD p180)
- 3th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_slow.md b/Data/HD/srd_spells_slow.md
index 8eaf8254..d2592e75 100644
--- a/Data/HD/srd_spells_slow.md
+++ b/Data/HD/srd_spells_slow.md
@@ -4,7 +4,7 @@
# Slow
-- MDR: [Lenteur](hd_spells_lenteur.md)
+- Alias: [Lenteur](hd_spells_lenteur.md)
- Source: (SRD p180)
- 3th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_spare_the_dying.md b/Data/HD/srd_spells_spare_the_dying.md
index df2ed308..4290d445 100644
--- a/Data/HD/srd_spells_spare_the_dying.md
+++ b/Data/HD/srd_spells_spare_the_dying.md
@@ -4,7 +4,7 @@
# Spare the Dying
-- MDR: [Épargner les mourants](hd_spells_epargner_les_mourants.md)
+- Alias: [Épargner les mourants](hd_spells_epargner_les_mourants.md)
- Source: (SRD p181)
- Necromancy cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_speak_with_animals.md b/Data/HD/srd_spells_speak_with_animals.md
index 880c7871..a18a6191 100644
--- a/Data/HD/srd_spells_speak_with_animals.md
+++ b/Data/HD/srd_spells_speak_with_animals.md
@@ -4,7 +4,7 @@
# Speak with Animals
-- MDR: [Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)
+- Alias: [Communication avec les animaux](hd_spells_communication_avec_les_animaux.md)
- Source: (SRD p181)
- 1st-level divination (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_speak_with_dead.md b/Data/HD/srd_spells_speak_with_dead.md
index bfd27dd7..5dee6b4b 100644
--- a/Data/HD/srd_spells_speak_with_dead.md
+++ b/Data/HD/srd_spells_speak_with_dead.md
@@ -4,7 +4,7 @@
# Speak with Dead
-- MDR: [Communication avec les morts](hd_spells_communication_avec_les_morts.md)
+- Alias: [Communication avec les morts](hd_spells_communication_avec_les_morts.md)
- Source: (SRD p181)
- 3th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_speak_with_plants.md b/Data/HD/srd_spells_speak_with_plants.md
index fbaa8ce4..fe1af274 100644
--- a/Data/HD/srd_spells_speak_with_plants.md
+++ b/Data/HD/srd_spells_speak_with_plants.md
@@ -4,7 +4,7 @@
# Speak with Plants
-- MDR: [Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)
+- Alias: [Communication avec les plantes](hd_spells_communication_avec_les_plantes.md)
- Source: (SRD p181)
- 3th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_spider_climb.md b/Data/HD/srd_spells_spider_climb.md
index 3ade1222..4c857e26 100644
--- a/Data/HD/srd_spells_spider_climb.md
+++ b/Data/HD/srd_spells_spider_climb.md
@@ -4,7 +4,7 @@
# Spider Climb
-- MDR: [Pattes d'araignée](hd_spells_pattes_daraignee.md)
+- Alias: [Pattes d'araignée](hd_spells_pattes_daraignee.md)
- Source: (SRD p182)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_spike_growth.md b/Data/HD/srd_spells_spike_growth.md
index 1dddf568..b3a7e0b8 100644
--- a/Data/HD/srd_spells_spike_growth.md
+++ b/Data/HD/srd_spells_spike_growth.md
@@ -4,7 +4,7 @@
# Spike Growth
-- MDR: [Croissance d'épines](hd_spells_croissance_depines.md)
+- Alias: [Croissance d'épines](hd_spells_croissance_depines.md)
- Source: (SRD p182)
- 2nd-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_spirit_guardians.md b/Data/HD/srd_spells_spirit_guardians.md
index c1b7bf71..28f257cc 100644
--- a/Data/HD/srd_spells_spirit_guardians.md
+++ b/Data/HD/srd_spells_spirit_guardians.md
@@ -4,7 +4,7 @@
# Spirit Guardians
-- MDR: [Esprits gardiens](hd_spells_esprits_gardiens.md)
+- Alias: [Esprits gardiens](hd_spells_esprits_gardiens.md)
- Source: (SRD p182)
- 3th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_spiritual_weapon.md b/Data/HD/srd_spells_spiritual_weapon.md
index ce41540b..ef69a4a0 100644
--- a/Data/HD/srd_spells_spiritual_weapon.md
+++ b/Data/HD/srd_spells_spiritual_weapon.md
@@ -4,7 +4,7 @@
# Spiritual Weapon
-- MDR: [Arme spirituelle](hd_spells_arme_spirituelle.md)
+- Alias: [Arme spirituelle](hd_spells_arme_spirituelle.md)
- Source: (SRD p182)
- 2nd-level evocation
- **Casting Time :** 1 bonus action
diff --git a/Data/HD/srd_spells_stinking_cloud.md b/Data/HD/srd_spells_stinking_cloud.md
index 0ffe12a3..33666a13 100644
--- a/Data/HD/srd_spells_stinking_cloud.md
+++ b/Data/HD/srd_spells_stinking_cloud.md
@@ -4,7 +4,7 @@
# Stinking Cloud
-- MDR: [Nuage puant](hd_spells_nuage_puant.md)
+- Alias: [Nuage puant](hd_spells_nuage_puant.md)
- Source: (SRD p182)
- 3th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_stone_shape.md b/Data/HD/srd_spells_stone_shape.md
index 552403a9..d36506b7 100644
--- a/Data/HD/srd_spells_stone_shape.md
+++ b/Data/HD/srd_spells_stone_shape.md
@@ -4,7 +4,7 @@
# Stone Shape
-- MDR: [Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)
+- Alias: [Façonnage de la pierre](hd_spells_faconnage_de_la_pierre.md)
- Source: (SRD p183)
- 4th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_stoneskin.md b/Data/HD/srd_spells_stoneskin.md
index 42053961..98421cc0 100644
--- a/Data/HD/srd_spells_stoneskin.md
+++ b/Data/HD/srd_spells_stoneskin.md
@@ -4,7 +4,7 @@
# Stoneskin
-- MDR: [Peau de pierre](hd_spells_peau_de_pierre.md)
+- Alias: [Peau de pierre](hd_spells_peau_de_pierre.md)
- Source: (SRD p183)
- 4th-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_storm_of_vengeance.md b/Data/HD/srd_spells_storm_of_vengeance.md
index 4296dc0a..831bc1ac 100644
--- a/Data/HD/srd_spells_storm_of_vengeance.md
+++ b/Data/HD/srd_spells_storm_of_vengeance.md
@@ -4,7 +4,7 @@
# Storm of Vengeance
-- MDR: [Tempête vengeresse](hd_spells_tempete_vengeresse.md)
+- Alias: [Tempête vengeresse](hd_spells_tempete_vengeresse.md)
- Source: (SRD p183)
- 9th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_suggestion.md b/Data/HD/srd_spells_suggestion.md
index 9e8e2414..47e0ca23 100644
--- a/Data/HD/srd_spells_suggestion.md
+++ b/Data/HD/srd_spells_suggestion.md
@@ -4,7 +4,7 @@
# Suggestion
-- MDR: [Suggestion](hd_spells_suggestion.md)
+- Alias: [Suggestion](hd_spells_suggestion.md)
- Source: (SRD p183)
- 2nd-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_sunbeam.md b/Data/HD/srd_spells_sunbeam.md
index 7ce720e6..4eb9d8b6 100644
--- a/Data/HD/srd_spells_sunbeam.md
+++ b/Data/HD/srd_spells_sunbeam.md
@@ -4,7 +4,7 @@
# Sunbeam
-- MDR: [Rayon de soleil](hd_spells_rayon_de_soleil.md)
+- Alias: [Rayon de soleil](hd_spells_rayon_de_soleil.md)
- Source: (SRD p184)
- 6th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_sunburst.md b/Data/HD/srd_spells_sunburst.md
index 3274f2d0..ddc8d4de 100644
--- a/Data/HD/srd_spells_sunburst.md
+++ b/Data/HD/srd_spells_sunburst.md
@@ -4,7 +4,7 @@
# Sunburst
-- MDR: [Éclat du soleil](hd_spells_eclat_du_soleil.md)
+- Alias: [Éclat du soleil](hd_spells_eclat_du_soleil.md)
- Source: (SRD p184)
- 8th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_symbol.md b/Data/HD/srd_spells_symbol.md
index 60a7fb32..37d37846 100644
--- a/Data/HD/srd_spells_symbol.md
+++ b/Data/HD/srd_spells_symbol.md
@@ -4,7 +4,7 @@
# Symbol
-- MDR: [Symbole](hd_spells_symbole.md)
+- Alias: [Symbole](hd_spells_symbole.md)
- Source: (SRD p184)
- 7th-level abjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_telekinesis.md b/Data/HD/srd_spells_telekinesis.md
index 3174eba6..01c82c41 100644
--- a/Data/HD/srd_spells_telekinesis.md
+++ b/Data/HD/srd_spells_telekinesis.md
@@ -4,7 +4,7 @@
# Telekinesis
-- MDR: [Télékinésie](hd_spells_telekinesie.md)
+- Alias: [Télékinésie](hd_spells_telekinesie.md)
- Source: (SRD p185)
- 5th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_telepathic_bond.md b/Data/HD/srd_spells_telepathic_bond.md
index 6b302a39..e8f7586a 100644
--- a/Data/HD/srd_spells_telepathic_bond.md
+++ b/Data/HD/srd_spells_telepathic_bond.md
@@ -4,7 +4,7 @@
# Telepathic Bond
-- MDR: [Lien télépathique](hd_spells_lien_telepathique.md)
+- Alias: [Lien télépathique](hd_spells_lien_telepathique.md)
- Source: (SRD p185)
- 5th-level divination (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_teleport.md b/Data/HD/srd_spells_teleport.md
index 711d4b4a..9dddd0db 100644
--- a/Data/HD/srd_spells_teleport.md
+++ b/Data/HD/srd_spells_teleport.md
@@ -4,7 +4,7 @@
# Teleport
-- MDR: [Téléportation](hd_spells_teleportation.md)
+- Alias: [Téléportation](hd_spells_teleportation.md)
- Source: (SRD p185)
- 7th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_teleportation_circle.md b/Data/HD/srd_spells_teleportation_circle.md
index e0d75108..a017c3b0 100644
--- a/Data/HD/srd_spells_teleportation_circle.md
+++ b/Data/HD/srd_spells_teleportation_circle.md
@@ -4,7 +4,7 @@
# Teleportation Circle
-- MDR: [Cercle de téléportation](hd_spells_cercle_de_teleportation.md)
+- Alias: [Cercle de téléportation](hd_spells_cercle_de_teleportation.md)
- Source: (SRD p186)
- 5th-level conjuration
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_thaumaturgy.md b/Data/HD/srd_spells_thaumaturgy.md
index 63f8ffdc..bcde4d2b 100644
--- a/Data/HD/srd_spells_thaumaturgy.md
+++ b/Data/HD/srd_spells_thaumaturgy.md
@@ -4,7 +4,7 @@
# Thaumaturgy
-- MDR: [Thaumaturgie](hd_spells_thaumaturgie.md)
+- Alias: [Thaumaturgie](hd_spells_thaumaturgie.md)
- Source: (SRD p187)
- Transmutation cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_thunderwave.md b/Data/HD/srd_spells_thunderwave.md
index 96d7405d..5d76b065 100644
--- a/Data/HD/srd_spells_thunderwave.md
+++ b/Data/HD/srd_spells_thunderwave.md
@@ -4,7 +4,7 @@
# Thunderwave
-- MDR: [Vague tonnante](hd_spells_vague_tonnante.md)
+- Alias: [Vague tonnante](hd_spells_vague_tonnante.md)
- Source: (SRD p187)
- 1st-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_time_stop.md b/Data/HD/srd_spells_time_stop.md
index 5d82ac7a..791adb65 100644
--- a/Data/HD/srd_spells_time_stop.md
+++ b/Data/HD/srd_spells_time_stop.md
@@ -4,7 +4,7 @@
# Time Stop
-- MDR: [Arrêt du temps](hd_spells_arret_du_temps.md)
+- Alias: [Arrêt du temps](hd_spells_arret_du_temps.md)
- Source: (SRD p187)
- 9th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_tiny_hut.md b/Data/HD/srd_spells_tiny_hut.md
index 3aa09d99..1b930429 100644
--- a/Data/HD/srd_spells_tiny_hut.md
+++ b/Data/HD/srd_spells_tiny_hut.md
@@ -4,7 +4,7 @@
# Tiny Hut
-- MDR: [Petite hutte](hd_spells_petite_hutte.md)
+- Alias: [Petite hutte](hd_spells_petite_hutte.md)
- Source: (SRD p187)
- 3th-level evocation (ritual)
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_tongues.md b/Data/HD/srd_spells_tongues.md
index 4140d9d6..b74f9220 100644
--- a/Data/HD/srd_spells_tongues.md
+++ b/Data/HD/srd_spells_tongues.md
@@ -4,7 +4,7 @@
# Tongues
-- MDR: [Langues](hd_spells_langues.md)
+- Alias: [Langues](hd_spells_langues.md)
- Source: (SRD p187)
- 3th-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_transport_via_plants.md b/Data/HD/srd_spells_transport_via_plants.md
index 1e26eb3b..614f48b9 100644
--- a/Data/HD/srd_spells_transport_via_plants.md
+++ b/Data/HD/srd_spells_transport_via_plants.md
@@ -4,7 +4,7 @@
# Transport via Plants
-- MDR: [Transport végétal](hd_spells_transport_vegetal.md)
+- Alias: [Transport végétal](hd_spells_transport_vegetal.md)
- Source: (SRD p188)
- 6th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_tree_stride.md b/Data/HD/srd_spells_tree_stride.md
index 45d64cb2..1dbb6534 100644
--- a/Data/HD/srd_spells_tree_stride.md
+++ b/Data/HD/srd_spells_tree_stride.md
@@ -4,7 +4,7 @@
# Tree Stride
-- MDR: [Passage par les arbres](hd_spells_passage_par_les_arbres.md)
+- Alias: [Passage par les arbres](hd_spells_passage_par_les_arbres.md)
- Source: (SRD p188)
- 5th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_true_polymorph.md b/Data/HD/srd_spells_true_polymorph.md
index 24622992..cdc5b251 100644
--- a/Data/HD/srd_spells_true_polymorph.md
+++ b/Data/HD/srd_spells_true_polymorph.md
@@ -4,7 +4,7 @@
# True Polymorph
-- MDR: [Métamorphose suprême](hd_spells_metamorphose_supreme.md)
+- Alias: [Métamorphose suprême](hd_spells_metamorphose_supreme.md)
- Source: (SRD p188)
- 9th-level transmutation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_true_resurrection.md b/Data/HD/srd_spells_true_resurrection.md
index 888f78ce..efd57d7f 100644
--- a/Data/HD/srd_spells_true_resurrection.md
+++ b/Data/HD/srd_spells_true_resurrection.md
@@ -4,7 +4,7 @@
# True Resurrection
-- MDR: [Résurrection suprême](hd_spells_resurrection_supreme.md)
+- Alias: [Résurrection suprême](hd_spells_resurrection_supreme.md)
- Source: (SRD p189)
- 9th-level necromancy
- **Casting Time :** 1 hour
diff --git a/Data/HD/srd_spells_true_seeing.md b/Data/HD/srd_spells_true_seeing.md
index 95e1628a..ed4e44df 100644
--- a/Data/HD/srd_spells_true_seeing.md
+++ b/Data/HD/srd_spells_true_seeing.md
@@ -4,7 +4,7 @@
# True Seeing
-- MDR: [Vision suprême](hd_spells_vision_supreme.md)
+- Alias: [Vision suprême](hd_spells_vision_supreme.md)
- Source: (SRD p189)
- 6th-level divination
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_true_strike.md b/Data/HD/srd_spells_true_strike.md
index bbc5325e..8c89bf60 100644
--- a/Data/HD/srd_spells_true_strike.md
+++ b/Data/HD/srd_spells_true_strike.md
@@ -4,7 +4,7 @@
# True Strike
-- MDR: [Viser juste](hd_spells_viser_juste.md)
+- Alias: [Viser juste](hd_spells_viser_juste.md)
- Source: (SRD p189)
- Divination cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_unseen_servant.md b/Data/HD/srd_spells_unseen_servant.md
index c6ee2a72..ae3cb3a7 100644
--- a/Data/HD/srd_spells_unseen_servant.md
+++ b/Data/HD/srd_spells_unseen_servant.md
@@ -4,7 +4,7 @@
# Unseen Servant
-- MDR: [Serviteur invisible](hd_spells_serviteur_invisible.md)
+- Alias: [Serviteur invisible](hd_spells_serviteur_invisible.md)
- Source: (SRD p189)
- 1st-level conjuration (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_vampiric_touch.md b/Data/HD/srd_spells_vampiric_touch.md
index 6e643bac..76117a21 100644
--- a/Data/HD/srd_spells_vampiric_touch.md
+++ b/Data/HD/srd_spells_vampiric_touch.md
@@ -4,7 +4,7 @@
# Vampiric Touch
-- MDR: [Caresse du vampire](hd_spells_caresse_du_vampire.md)
+- Alias: [Caresse du vampire](hd_spells_caresse_du_vampire.md)
- Source: (SRD p189)
- 3th-level necromancy
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_vicious_mockery.md b/Data/HD/srd_spells_vicious_mockery.md
index 59af05a7..164b6a55 100644
--- a/Data/HD/srd_spells_vicious_mockery.md
+++ b/Data/HD/srd_spells_vicious_mockery.md
@@ -4,7 +4,7 @@
# Vicious Mockery
-- MDR: [Moquerie cruelle](hd_spells_moquerie_cruelle.md)
+- Alias: [Moquerie cruelle](hd_spells_moquerie_cruelle.md)
- Source: (SRD p189)
- Enchantment cantrip
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_wall_of_fire.md b/Data/HD/srd_spells_wall_of_fire.md
index 9a66b324..19fc09e0 100644
--- a/Data/HD/srd_spells_wall_of_fire.md
+++ b/Data/HD/srd_spells_wall_of_fire.md
@@ -4,7 +4,7 @@
# Wall of Fire
-- MDR: [Mur de feu](hd_spells_mur_de_feu.md)
+- Alias: [Mur de feu](hd_spells_mur_de_feu.md)
- Source: (SRD p190)
- 4th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_wall_of_force.md b/Data/HD/srd_spells_wall_of_force.md
index 72015307..2cf6d5f1 100644
--- a/Data/HD/srd_spells_wall_of_force.md
+++ b/Data/HD/srd_spells_wall_of_force.md
@@ -4,7 +4,7 @@
# Wall of Force
-- MDR: [Mur de force](hd_spells_mur_de_force.md)
+- Alias: [Mur de force](hd_spells_mur_de_force.md)
- Source: (SRD p190)
- 5th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_wall_of_ice.md b/Data/HD/srd_spells_wall_of_ice.md
index 2f8459fc..6b88fb35 100644
--- a/Data/HD/srd_spells_wall_of_ice.md
+++ b/Data/HD/srd_spells_wall_of_ice.md
@@ -4,7 +4,7 @@
# Wall of Ice
-- MDR: [Mur de glace](hd_spells_mur_de_glace.md)
+- Alias: [Mur de glace](hd_spells_mur_de_glace.md)
- Source: (SRD p190)
- 6th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_wall_of_stone.md b/Data/HD/srd_spells_wall_of_stone.md
index a51d8eff..e69036a0 100644
--- a/Data/HD/srd_spells_wall_of_stone.md
+++ b/Data/HD/srd_spells_wall_of_stone.md
@@ -4,7 +4,7 @@
# Wall of Stone
-- MDR: [Mur de pierre](hd_spells_mur_de_pierre.md)
+- Alias: [Mur de pierre](hd_spells_mur_de_pierre.md)
- Source: (SRD p190)
- 5th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_wall_of_thorns.md b/Data/HD/srd_spells_wall_of_thorns.md
index c6ed00e8..7d6c38dd 100644
--- a/Data/HD/srd_spells_wall_of_thorns.md
+++ b/Data/HD/srd_spells_wall_of_thorns.md
@@ -4,7 +4,7 @@
# Wall of Thorns
-- MDR: [Mur d'épines](hd_spells_mur_depines.md)
+- Alias: [Mur d'épines](hd_spells_mur_depines.md)
- Source: (SRD p191)
- 6th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_warding_bond.md b/Data/HD/srd_spells_warding_bond.md
index c9cc2f47..6896ffcb 100644
--- a/Data/HD/srd_spells_warding_bond.md
+++ b/Data/HD/srd_spells_warding_bond.md
@@ -4,7 +4,7 @@
# Warding Bond
-- MDR: [Lien de protection](hd_spells_lien_de_protection.md)
+- Alias: [Lien de protection](hd_spells_lien_de_protection.md)
- Source: (SRD p191)
- 2nd-level abjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_water_breathing.md b/Data/HD/srd_spells_water_breathing.md
index 184ec696..2109c9d1 100644
--- a/Data/HD/srd_spells_water_breathing.md
+++ b/Data/HD/srd_spells_water_breathing.md
@@ -4,7 +4,7 @@
# Water Breathing
-- MDR: [Respiration aquatique](hd_spells_respiration_aquatique.md)
+- Alias: [Respiration aquatique](hd_spells_respiration_aquatique.md)
- Source: (SRD p191)
- 3th-level transmutation (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_water_walk.md b/Data/HD/srd_spells_water_walk.md
index 977fb96e..f3d5a447 100644
--- a/Data/HD/srd_spells_water_walk.md
+++ b/Data/HD/srd_spells_water_walk.md
@@ -4,7 +4,7 @@
# Water Walk
-- MDR: [Marche sur l'eau](hd_spells_marche_sur_leau.md)
+- Alias: [Marche sur l'eau](hd_spells_marche_sur_leau.md)
- Source: (SRD p191)
- 3th-level transmutation (ritual)
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_web.md b/Data/HD/srd_spells_web.md
index 88271cb2..757eabea 100644
--- a/Data/HD/srd_spells_web.md
+++ b/Data/HD/srd_spells_web.md
@@ -4,7 +4,7 @@
# Web
-- MDR: [Toile d'araignée](hd_spells_toile_daraignee.md)
+- Alias: [Toile d'araignée](hd_spells_toile_daraignee.md)
- Source: (SRD p192)
- 2nd-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_weird.md b/Data/HD/srd_spells_weird.md
index 339d58e1..642ebdc5 100644
--- a/Data/HD/srd_spells_weird.md
+++ b/Data/HD/srd_spells_weird.md
@@ -4,7 +4,7 @@
# Weird
-- MDR: [Étrangeté](hd_spells_etrangete.md)
+- Alias: [Étrangeté](hd_spells_etrangete.md)
- Source: (SRD p192)
- 9th-level illusion
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_wind_walk.md b/Data/HD/srd_spells_wind_walk.md
index 77a58020..6fee5622 100644
--- a/Data/HD/srd_spells_wind_walk.md
+++ b/Data/HD/srd_spells_wind_walk.md
@@ -4,7 +4,7 @@
# Wind Walk
-- MDR: [Marche sur le vent](hd_spells_marche_sur_le_vent.md)
+- Alias: [Marche sur le vent](hd_spells_marche_sur_le_vent.md)
- Source: (SRD p192)
- 6th-level transmutation
- **Casting Time :** 1 minute
diff --git a/Data/HD/srd_spells_wind_wall.md b/Data/HD/srd_spells_wind_wall.md
index d532ac54..9419fbd1 100644
--- a/Data/HD/srd_spells_wind_wall.md
+++ b/Data/HD/srd_spells_wind_wall.md
@@ -4,7 +4,7 @@
# Wind Wall
-- MDR: [Mur de vent](hd_spells_mur_de_vent.md)
+- Alias: [Mur de vent](hd_spells_mur_de_vent.md)
- Source: (SRD p192)
- 3th-level evocation
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_wish.md b/Data/HD/srd_spells_wish.md
index 80ab06fd..14bed077 100644
--- a/Data/HD/srd_spells_wish.md
+++ b/Data/HD/srd_spells_wish.md
@@ -4,7 +4,7 @@
# Wish
-- MDR: [Souhait](hd_spells_souhait.md)
+- Alias: [Souhait](hd_spells_souhait.md)
- Source: (SRD p193)
- 9th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_word_of_recall.md b/Data/HD/srd_spells_word_of_recall.md
index 64b3851b..b631d5c6 100644
--- a/Data/HD/srd_spells_word_of_recall.md
+++ b/Data/HD/srd_spells_word_of_recall.md
@@ -4,7 +4,7 @@
# Word of Recall
-- MDR: [Mot de retour](hd_spells_mot_de_retour.md)
+- Alias: [Mot de retour](hd_spells_mot_de_retour.md)
- Source: (SRD p193)
- 6th-level conjuration
- **Casting Time :** 1 action
diff --git a/Data/HD/srd_spells_zone_of_truth.md b/Data/HD/srd_spells_zone_of_truth.md
index 85e6bd27..6a87b8b4 100644
--- a/Data/HD/srd_spells_zone_of_truth.md
+++ b/Data/HD/srd_spells_zone_of_truth.md
@@ -4,7 +4,7 @@
# Zone of Truth
-- MDR: [Zone de vérité](hd_spells_zone_de_verite.md)
+- Alias: [Zone de vérité](hd_spells_zone_de_verite.md)
- Source: (SRD p193)
- 2nd-level enchantment
- **Casting Time :** 1 action
diff --git a/Data/HD/tome_of_beasts.md b/Data/HD/tome_of_beasts.md
index 0726e6c0..5df1b3fd 100644
--- a/Data/HD/tome_of_beasts.md
+++ b/Data/HD/tome_of_beasts.md
@@ -47,7 +47,7 @@ SubItems:
- - TOB: Nihileth
+ - Alias: Nihileth
@@ -351,7 +351,7 @@ SubItems:
- - TOB: Nihilethic Zombie
+ - Alias: Nihilethic Zombie
@@ -542,7 +542,7 @@ SubItems:
- - TOB: Ala
+ - Alias: Ala
@@ -717,7 +717,7 @@ SubItems:
- - TOB: Algorith
+ - Alias: Algorith
@@ -913,7 +913,7 @@ SubItems:
- - TOB: Alseid
+ - Alias: Alseid
@@ -1054,7 +1054,7 @@ SubItems:
- - TOB: Alseid grovekeeper
+ - Alias: Alseid grovekeeper
@@ -1218,7 +1218,7 @@ SubItems:
- - TOB: Deathcap Myconid
+ - Alias: Deathcap Myconid
@@ -1372,7 +1372,7 @@ SubItems:
- - TOB: Amphiptere
+ - Alias: Amphiptere
@@ -1528,7 +1528,7 @@ SubItems:
- - TOB: Andrenjinyi
+ - Alias: Andrenjinyi
@@ -1745,7 +1745,7 @@ SubItems:
- - TOB: Angatra
+ - Alias: Angatra
@@ -1913,7 +1913,7 @@ SubItems:
- - TOB: Angel, Chained
+ - Alias: Angel, Chained
@@ -2088,7 +2088,7 @@ SubItems:
- - TOB: Fidele Angel
+ - Alias: Fidele Angel
@@ -2323,7 +2323,7 @@ SubItems:
- - TOB: Anubian
+ - Alias: Anubian
@@ -2496,7 +2496,7 @@ SubItems:
- - TOB: Putrid Haunt
+ - Alias: Putrid Haunt
@@ -2657,7 +2657,7 @@ SubItems:
- - TOB: Red-Banded Line Spider
+ - Alias: Red-Banded Line Spider
@@ -2813,7 +2813,7 @@ SubItems:
- - TOB: Spider of Leng
+ - Alias: Spider of Leng
@@ -3032,7 +3032,7 @@ SubItems:
- - TOB: Sand Spider
+ - Alias: Sand Spider
@@ -3197,7 +3197,7 @@ SubItems:
- - TOB: J'Ba Fofi Spider
+ - Alias: J'Ba Fofi Spider
@@ -3354,7 +3354,7 @@ SubItems:
- - TOB: Ghostwalk Spider
+ - Alias: Ghostwalk Spider
@@ -3552,7 +3552,7 @@ SubItems:
- - TOB: Spider Thief
+ - Alias: Spider Thief
@@ -3730,7 +3730,7 @@ SubItems:
- - TOB: Dragonleaf Tree
+ - Alias: Dragonleaf Tree
@@ -3892,7 +3892,7 @@ SubItems:
- - TOB: Feyward Tree
+ - Alias: Feyward Tree
@@ -4082,7 +4082,7 @@ SubItems:
- - TOB: Aridni
+ - Alias: Aridni
@@ -4260,7 +4260,7 @@ SubItems:
- - TOB: Asanbosam
+ - Alias: Asanbosam
@@ -4416,7 +4416,7 @@ SubItems:
- - TOB: Gray Thirster
+ - Alias: Gray Thirster
@@ -4590,7 +4590,7 @@ SubItems:
- - TOB: Library Automaton
+ - Alias: Library Automaton
@@ -4744,7 +4744,7 @@ SubItems:
- - TOB: Bagiennik
+ - Alias: Bagiennik
@@ -4893,7 +4893,7 @@ SubItems:
- - TOB: Abominable Beauty
+ - Alias: Abominable Beauty
@@ -5055,7 +5055,7 @@ SubItems:
- - TOB: Behtu
+ - Alias: Behtu
@@ -5218,7 +5218,7 @@ SubItems:
- - TOB: Beli
+ - Alias: Beli
@@ -5410,7 +5410,7 @@ SubItems:
- - TOB: Drowned Maiden
+ - Alias: Drowned Maiden
@@ -5602,7 +5602,7 @@ SubItems:
- - TOB: Bereginyas
+ - Alias: Bereginyas
@@ -5756,7 +5756,7 @@ SubItems:
- - TOB: Shadow Beast
+ - Alias: Shadow Beast
@@ -5946,7 +5946,7 @@ SubItems:
- - TOB: Blemmyes
+ - Alias: Blemmyes
@@ -6100,7 +6100,7 @@ SubItems:
- - TOB: Boloti
+ - Alias: Boloti
@@ -6270,7 +6270,7 @@ SubItems:
- - TOB: Water Leaper
+ - Alias: Water Leaper
@@ -6434,7 +6434,7 @@ SubItems:
- - TOB: Avatar of Boreas
+ - Alias: Avatar of Boreas
@@ -6683,7 +6683,7 @@ SubItems:
- - TOB: Bucca
+ - Alias: Bucca
@@ -6840,7 +6840,7 @@ SubItems:
- - TOB: Bouda
+ - Alias: Bouda
@@ -7050,7 +7050,7 @@ SubItems:
- - TOB: Grim Jester
+ - Alias: Grim Jester
@@ -7260,7 +7260,7 @@ SubItems:
- - TOB: Buraq
+ - Alias: Buraq
@@ -7458,7 +7458,7 @@ SubItems:
- - TOB: Cactid
+ - Alias: Cactid
@@ -7620,7 +7620,7 @@ SubItems:
- - TOB: Cambium
+ - Alias: Cambium
@@ -7839,7 +7839,7 @@ SubItems:
- - TOB: Dogmole
+ - Alias: Dogmole
@@ -7986,7 +7986,7 @@ SubItems:
- - TOB: Dogmole Juggernaut
+ - Alias: Dogmole Juggernaut
@@ -8154,7 +8154,7 @@ SubItems:
- - TOB: Redcap
+ - Alias: Redcap
@@ -8331,7 +8331,7 @@ SubItems:
- - TOB: Bastet Temple Cat
+ - Alias: Bastet Temple Cat
@@ -8510,7 +8510,7 @@ SubItems:
- - TOB: Chelicerae
+ - Alias: Chelicerae
@@ -8718,7 +8718,7 @@ SubItems:
- - TOB: Chernomoi
+ - Alias: Chernomoi
@@ -8871,7 +8871,7 @@ SubItems:
- - TOB: Eel Hound
+ - Alias: Eel Hound
@@ -9025,7 +9025,7 @@ SubItems:
- - TOB: Temple Dog
+ - Alias: Temple Dog
@@ -9183,7 +9183,7 @@ SubItems:
- - TOB: Hulking Whelp
+ - Alias: Hulking Whelp
@@ -9343,7 +9343,7 @@ SubItems:
- - TOB: Chronalmental
+ - Alias: Chronalmental
@@ -9515,7 +9515,7 @@ SubItems:
- - TOB: Cikavak
+ - Alias: Cikavak
@@ -9666,7 +9666,7 @@ SubItems:
- - TOB: Gnarljak
+ - Alias: Gnarljak
@@ -9827,7 +9827,7 @@ SubItems:
- - TOB: Clurichaun
+ - Alias: Clurichaun
@@ -9999,7 +9999,7 @@ SubItems:
- - TOB: Possessed Pillar
+ - Alias: Possessed Pillar
@@ -10174,7 +10174,7 @@ SubItems:
- - TOB: Bone Collective
+ - Alias: Bone Collective
@@ -10375,7 +10375,7 @@ SubItems:
- - TOB: Shellycoat
+ - Alias: Shellycoat
@@ -10552,7 +10552,7 @@ SubItems:
- - TOB: Broodiken
+ - Alias: Broodiken
@@ -10709,7 +10709,7 @@ SubItems:
- - TOB: Garroter Crab
+ - Alias: Garroter Crab
@@ -10852,7 +10852,7 @@ SubItems:
- - TOB: Bone Crab
+ - Alias: Bone Crab
@@ -11024,7 +11024,7 @@ SubItems:
- - TOB: Glass Gator
+ - Alias: Glass Gator
@@ -11196,7 +11196,7 @@ SubItems:
- - TOB: Burrowling
+ - Alias: Burrowling
@@ -11355,7 +11355,7 @@ SubItems:
- - TOB: Dau
+ - Alias: Dau
@@ -11546,7 +11546,7 @@ SubItems:
- - TOB: Ice Maiden
+ - Alias: Ice Maiden
@@ -11793,7 +11793,7 @@ SubItems:
- - TOB: Apau Perape
+ - Alias: Apau Perape
@@ -12003,7 +12003,7 @@ SubItems:
- - TOB: Berstuc
+ - Alias: Berstuc
@@ -12182,7 +12182,7 @@ SubItems:
- - TOB: Sap Demon
+ - Alias: Sap Demon
@@ -12350,7 +12350,7 @@ SubItems:
- - TOB: Kishi Demon
+ - Alias: Kishi Demon
@@ -12576,7 +12576,7 @@ SubItems:
- - TOB: Malakbel
+ - Alias: Malakbel
@@ -12762,7 +12762,7 @@ SubItems:
- - TOB: Psoglav Demon
+ - Alias: Psoglav Demon
@@ -12949,7 +12949,7 @@ SubItems:
- - TOB: Rubezahl
+ - Alias: Rubezahl
@@ -13164,7 +13164,7 @@ SubItems:
- - TOB: Akyishigal, Demon Lord of Cockroaches
+ - Alias: Akyishigal, Demon Lord of Cockroaches
@@ -13390,7 +13390,7 @@ SubItems:
- - TOB: Spawn of Akyishigal
+ - Alias: Spawn of Akyishigal
@@ -13553,7 +13553,7 @@ SubItems:
- - TOB: Alquam, Demon Lord of Night
+ - Alias: Alquam, Demon Lord of Night
@@ -13902,7 +13902,7 @@ SubItems:
- - TOB: Camazotz, Demon Lord of Bats and Fire
+ - Alias: Camazotz, Demon Lord of Bats and Fire
@@ -14170,7 +14170,7 @@ SubItems:
- - TOB: Skin Bat
+ - Alias: Skin Bat
@@ -14309,7 +14309,7 @@ SubItems:
- - TOB: Mechuiti, Demon Lord of Apes
+ - Alias: Mechuiti, Demon Lord of Apes
@@ -14679,7 +14679,7 @@ SubItems:
- - TOB: Qorgeth, Demon Lord of the Devouring Worm
+ - Alias: Qorgeth, Demon Lord of the Devouring Worm
@@ -15010,7 +15010,7 @@ SubItems:
- - TOB: Derro Shadow Antipaladin
+ - Alias: Derro Shadow Antipaladin
@@ -15214,7 +15214,7 @@ SubItems:
- - TOB: Derro Fetal Savant
+ - Alias: Derro Fetal Savant
@@ -15388,7 +15388,7 @@ SubItems:
- - TOB: Soul Eater
+ - Alias: Soul Eater
@@ -15563,7 +15563,7 @@ SubItems:
- - TOB: Arbeyach
+ - Alias: Arbeyach
@@ -15820,7 +15820,7 @@ SubItems:
- - TOB: Spawn of Arbeyach
+ - Alias: Spawn of Arbeyach
@@ -16001,7 +16001,7 @@ SubItems:
- - TOB: Ia'Affrat
+ - Alias: Ia'Affrat
@@ -16212,7 +16212,7 @@ SubItems:
- - TOB: Mammon
+ - Alias: Mammon
@@ -16540,7 +16540,7 @@ SubItems:
- - TOB: Totivillus, Scribe of Hell
+ - Alias: Totivillus, Scribe of Hell
@@ -16835,7 +16835,7 @@ SubItems:
- - TOB: Automata Devil
+ - Alias: Automata Devil
@@ -17050,7 +17050,7 @@ SubItems:
- - TOB: Chort Devil
+ - Alias: Chort Devil
@@ -17254,7 +17254,7 @@ SubItems:
- - TOB: Crystalline Devil
+ - Alias: Crystalline Devil
@@ -17476,7 +17476,7 @@ SubItems:
- - TOB: Ink Devil
+ - Alias: Ink Devil
@@ -17681,7 +17681,7 @@ SubItems:
- - TOB: Salt Devil
+ - Alias: Salt Devil
@@ -17891,7 +17891,7 @@ SubItems:
- - TOB: Gilded Devil
+ - Alias: Gilded Devil
@@ -18162,7 +18162,7 @@ SubItems:
- - TOB: Koralk (Harvester Devil)
+ - Alias: Koralk (Harvester Devil)
@@ -18342,7 +18342,7 @@ SubItems:
- - TOB: Lunar Devil
+ - Alias: Lunar Devil
@@ -18576,7 +18576,7 @@ SubItems:
- - TOB: Orobas Devil
+ - Alias: Orobas Devil
@@ -18812,7 +18812,7 @@ SubItems:
- - TOB: Mbielu
+ - Alias: Mbielu
@@ -18959,7 +18959,7 @@ SubItems:
- - TOB: Ngobou
+ - Alias: Ngobou
@@ -19113,7 +19113,7 @@ SubItems:
- - TOB: Spinosaurus
+ - Alias: Spinosaurus
@@ -19308,7 +19308,7 @@ SubItems:
- - TOB: Young Spinosaurus
+ - Alias: Young Spinosaurus
@@ -19458,7 +19458,7 @@ SubItems:
- - TOB: Dipsa
+ - Alias: Dipsa
@@ -19619,7 +19619,7 @@ SubItems:
- - TOB: Dissimortuum
+ - Alias: Dissimortuum
@@ -19779,7 +19779,7 @@ SubItems:
- - TOB: Domovoi
+ - Alias: Domovoi
@@ -19939,7 +19939,7 @@ SubItems:
- - TOB: Doppelrat
+ - Alias: Doppelrat
@@ -20093,7 +20093,7 @@ SubItems:
- - TOB: Dorreq
+ - Alias: Dorreq
@@ -20267,7 +20267,7 @@ SubItems:
- - TOB: Adult Flame Dragon
+ - Alias: Adult Flame Dragon
@@ -20495,7 +20495,7 @@ SubItems:
- - TOB: Flame Dragon Wyrmling
+ - Alias: Flame Dragon Wyrmling
@@ -20650,7 +20650,7 @@ SubItems:
- - TOB: Young Flame Dragon
+ - Alias: Young Flame Dragon
@@ -20824,7 +20824,7 @@ SubItems:
- - TOB: Ancient Flame Dragon
+ - Alias: Ancient Flame Dragon
@@ -21134,7 +21134,7 @@ SubItems:
- - TOB: Adult Mithral Dragon
+ - Alias: Adult Mithral Dragon
@@ -21405,7 +21405,7 @@ SubItems:
- - TOB: Young Mithral Dragon
+ - Alias: Young Mithral Dragon
@@ -21599,7 +21599,7 @@ SubItems:
- - TOB: Ancient Mithral Dragon
+ - Alias: Ancient Mithral Dragon
@@ -21991,7 +21991,7 @@ SubItems:
- - TOB: Adult Cave Dragon
+ - Alias: Adult Cave Dragon
@@ -22267,7 +22267,7 @@ SubItems:
- - TOB: Cave Dragon Wyrmling
+ - Alias: Cave Dragon Wyrmling
@@ -22447,7 +22447,7 @@ SubItems:
- - TOB: Young Cave Dragon
+ - Alias: Young Cave Dragon
@@ -22657,7 +22657,7 @@ SubItems:
- - TOB: Wind Dragon, Adult
+ - Alias: Wind Dragon, Adult
@@ -22926,7 +22926,7 @@ SubItems:
- - TOB: Wind Dragon, Wyrmling
+ - Alias: Wind Dragon, Wyrmling
@@ -23088,7 +23088,7 @@ SubItems:
- - TOB: Wind Dragon, Young
+ - Alias: Wind Dragon, Young
@@ -23288,7 +23288,7 @@ SubItems:
- - TOB: Wind Dragon, Ancient
+ - Alias: Wind Dragon, Ancient
@@ -23602,7 +23602,7 @@ SubItems:
- - TOB: Adult Void Dragon
+ - Alias: Adult Void Dragon
@@ -23864,7 +23864,7 @@ SubItems:
- - TOB: Void Dragon Wyrmling
+ - Alias: Void Dragon Wyrmling
@@ -24049,7 +24049,7 @@ SubItems:
- - TOB: Young Void Dragon
+ - Alias: Young Void Dragon
@@ -24253,7 +24253,7 @@ SubItems:
- - TOB: Ancient Void Dragon
+ - Alias: Ancient Void Dragon
@@ -24604,7 +24604,7 @@ SubItems:
- - TOB: Adult Sea Dragon
+ - Alias: Adult Sea Dragon
@@ -24831,7 +24831,7 @@ SubItems:
- - TOB: Sea Dragon Wyrmling
+ - Alias: Sea Dragon Wyrmling
@@ -24986,7 +24986,7 @@ SubItems:
- - TOB: Young Sea Dragon
+ - Alias: Young Sea Dragon
@@ -25170,7 +25170,7 @@ SubItems:
- - TOB: Ancient Sea Dragon
+ - Alias: Ancient Sea Dragon
@@ -25480,7 +25480,7 @@ SubItems:
- - TOB: Dragon Eel
+ - Alias: Dragon Eel
@@ -25666,7 +25666,7 @@ SubItems:
- - TOB: Lantern Dragonette
+ - Alias: Lantern Dragonette
@@ -25834,7 +25834,7 @@ SubItems:
- - TOB: Ash Drake
+ - Alias: Ash Drake
@@ -26008,7 +26008,7 @@ SubItems:
- - TOB: Coral Drake
+ - Alias: Coral Drake
@@ -26190,7 +26190,7 @@ SubItems:
- - TOB: Paper Drake
+ - Alias: Paper Drake
@@ -26346,7 +26346,7 @@ SubItems:
- - TOB: Rust Drake
+ - Alias: Rust Drake
@@ -26525,7 +26525,7 @@ SubItems:
- - TOB: Elder Shadow Drake
+ - Alias: Elder Shadow Drake
@@ -26717,7 +26717,7 @@ SubItems:
- - TOB: Deep Drake
+ - Alias: Deep Drake
@@ -26896,7 +26896,7 @@ SubItems:
- - TOB: Alehouse Drake
+ - Alias: Alehouse Drake
@@ -27083,7 +27083,7 @@ SubItems:
- - TOB: Crimson Drake
+ - Alias: Crimson Drake
@@ -27258,7 +27258,7 @@ SubItems:
- - TOB: Star Drake
+ - Alias: Star Drake
@@ -27509,7 +27509,7 @@ SubItems:
- - TOB: Drakon
+ - Alias: Drakon
@@ -27676,7 +27676,7 @@ SubItems:
- - TOB: Duskthorn Dryad
+ - Alias: Duskthorn Dryad
@@ -27867,7 +27867,7 @@ SubItems:
- - TOB: Dullahan
+ - Alias: Dullahan
@@ -28074,7 +28074,7 @@ SubItems:
- - TOB: Eala
+ - Alias: Eala
@@ -28229,7 +28229,7 @@ SubItems:
- - TOB: Edimmu
+ - Alias: Edimmu
@@ -28382,7 +28382,7 @@ SubItems:
- - TOB: Einherjar
+ - Alias: Einherjar
@@ -28574,7 +28574,7 @@ SubItems:
- - TOB: Eleinomae
+ - Alias: Eleinomae
@@ -28757,7 +28757,7 @@ SubItems:
- - TOB: Shadow Fey
+ - Alias: Shadow Fey
@@ -28916,7 +28916,7 @@ SubItems:
- - TOB: Forest Hunter
+ - Alias: Forest Hunter
@@ -29093,7 +29093,7 @@ SubItems:
- - TOB: Duelist
+ - Alias: Duelist
@@ -29276,7 +29276,7 @@ SubItems:
- - TOB: Enchantress
+ - Alias: Enchantress
@@ -29496,7 +29496,7 @@ SubItems:
- - TOB: Guardian
+ - Alias: Guardian
@@ -29692,7 +29692,7 @@ SubItems:
- - TOB: Arboreal Grappler
+ - Alias: Arboreal Grappler
@@ -29847,7 +29847,7 @@ SubItems:
- - TOB: Child of the Briar
+ - Alias: Child of the Briar
@@ -30017,7 +30017,7 @@ SubItems:
- - TOB: Erina Scrounger
+ - Alias: Erina Scrounger
@@ -30172,7 +30172,7 @@ SubItems:
- - TOB: Erina Defender
+ - Alias: Erina Defender
@@ -30352,7 +30352,7 @@ SubItems:
- - TOB: Mindrot Thrall
+ - Alias: Mindrot Thrall
@@ -30518,7 +30518,7 @@ SubItems:
- - TOB: Firegeist
+ - Alias: Firegeist
@@ -30691,7 +30691,7 @@ SubItems:
- - TOB: Spark
+ - Alias: Spark
@@ -30857,7 +30857,7 @@ SubItems:
- - TOB: Miremal
+ - Alias: Miremal
@@ -31036,7 +31036,7 @@ SubItems:
- - TOB: Far Darrig
+ - Alias: Far Darrig
@@ -31217,7 +31217,7 @@ SubItems:
- - TOB: Queen of Night and Magic
+ - Alias: Queen of Night and Magic
@@ -31617,7 +31617,7 @@ SubItems:
- - TOB: Snow Queen
+ - Alias: Snow Queen
@@ -31956,7 +31956,7 @@ SubItems:
- - TOB: Queen of Witches
+ - Alias: Queen of Witches
@@ -32290,7 +32290,7 @@ SubItems:
- - TOB: Lord of the Hunt
+ - Alias: Lord of the Hunt
@@ -32623,7 +32623,7 @@ SubItems:
- - TOB: Moonlit King
+ - Alias: Moonlit King
@@ -32969,7 +32969,7 @@ SubItems:
- - TOB: Bear King
+ - Alias: Bear King
@@ -33285,7 +33285,7 @@ SubItems:
- - TOB: River King
+ - Alias: River King
@@ -33623,7 +33623,7 @@ SubItems:
- - TOB: Fellforged
+ - Alias: Fellforged
@@ -33796,7 +33796,7 @@ SubItems:
- - TOB: Savager
+ - Alias: Savager
@@ -33963,7 +33963,7 @@ SubItems:
- - TOB: Fext
+ - Alias: Fext
@@ -34162,7 +34162,7 @@ SubItems:
- - TOB: Son of Fenris
+ - Alias: Son of Fenris
@@ -34408,7 +34408,7 @@ SubItems:
- - TOB: Fear Smith
+ - Alias: Fear Smith
@@ -34600,7 +34600,7 @@ SubItems:
- - TOB: Giant Ant
+ - Alias: Giant Ant
@@ -34734,7 +34734,7 @@ SubItems:
- - TOB: Giant Ant Queen
+ - Alias: Giant Ant Queen
@@ -34876,7 +34876,7 @@ SubItems:
- - TOB: Fraughashar
+ - Alias: Fraughashar
@@ -35031,7 +35031,7 @@ SubItems:
- - TOB: Spectral Guardian
+ - Alias: Spectral Guardian
@@ -35250,7 +35250,7 @@ SubItems:
- - TOB: Gbahali (Postosuchus)
+ - Alias: Gbahali (Postosuchus)
@@ -35410,7 +35410,7 @@ SubItems:
- - TOB: Desert Giant
+ - Alias: Desert Giant
@@ -35565,7 +35565,7 @@ SubItems:
- - TOB: Hraesvelgr the Corpse Swallower
+ - Alias: Hraesvelgr the Corpse Swallower
@@ -35891,7 +35891,7 @@ SubItems:
- - TOB: Jotun Giant
+ - Alias: Jotun Giant
@@ -36143,7 +36143,7 @@ SubItems:
- - TOB: Flab Giant
+ - Alias: Flab Giant
@@ -36309,7 +36309,7 @@ SubItems:
- - TOB: Thursir Giant
+ - Alias: Thursir Giant
@@ -36462,7 +36462,7 @@ SubItems:
- - TOB: Al-Aeshma Genie
+ - Alias: Al-Aeshma Genie
@@ -36657,7 +36657,7 @@ SubItems:
- - TOB: Gerridae
+ - Alias: Gerridae
@@ -36806,7 +36806,7 @@ SubItems:
- - TOB: Dust Goblin
+ - Alias: Dust Goblin
@@ -36954,7 +36954,7 @@ SubItems:
- - TOB: Steam Golem
+ - Alias: Steam Golem
@@ -37142,7 +37142,7 @@ SubItems:
- - TOB: Salt Golem
+ - Alias: Salt Golem
@@ -37298,7 +37298,7 @@ SubItems:
- - TOB: Eye Golem
+ - Alias: Eye Golem
@@ -37475,7 +37475,7 @@ SubItems:
- - TOB: Smaragdine Golem
+ - Alias: Smaragdine Golem
@@ -37643,7 +37643,7 @@ SubItems:
- - TOB: Hoard Golem
+ - Alias: Hoard Golem
@@ -37824,7 +37824,7 @@ SubItems:
- - TOB: Ghoul, Darakhul
+ - Alias: Ghoul, Darakhul
@@ -38014,7 +38014,7 @@ SubItems:
- - TOB: Ghoul, Iron
+ - Alias: Ghoul, Iron
@@ -38182,7 +38182,7 @@ SubItems:
- - TOB: Emperor of the Ghouls
+ - Alias: Emperor of the Ghouls
@@ -38561,7 +38561,7 @@ SubItems:
- - TOB: Ghoul, Imperial
+ - Alias: Ghoul, Imperial
@@ -38722,7 +38722,7 @@ SubItems:
- - TOB: Beggar Ghoul
+ - Alias: Beggar Ghoul
@@ -38880,7 +38880,7 @@ SubItems:
- - TOB: Bonepowder Ghoul
+ - Alias: Bonepowder Ghoul
@@ -39147,7 +39147,7 @@ SubItems:
- - TOB: Azza Gremlin
+ - Alias: Azza Gremlin
@@ -39295,7 +39295,7 @@ SubItems:
- - TOB: Rum Gremlin
+ - Alias: Rum Gremlin
@@ -39466,7 +39466,7 @@ SubItems:
- - TOB: Sanf Hag
+ - Alias: Sanf Hag
@@ -39649,7 +39649,7 @@ SubItems:
- - TOB: Mirror Hag
+ - Alias: Mirror Hag
@@ -39826,7 +39826,7 @@ SubItems:
- - TOB: Red Hag
+ - Alias: Red Hag
@@ -40016,7 +40016,7 @@ SubItems:
- - TOB: Blood Hag
+ - Alias: Blood Hag
@@ -40237,7 +40237,7 @@ SubItems:
- - TOB: Gug
+ - Alias: Gug
@@ -40447,7 +40447,7 @@ SubItems:
- - TOB: Folk of Leng
+ - Alias: Folk of Leng
@@ -40649,7 +40649,7 @@ SubItems:
- - TOB: Owl Harpy
+ - Alias: Owl Harpy
@@ -40830,7 +40830,7 @@ SubItems:
- - TOB: Haugbui
+ - Alias: Haugbui
@@ -41064,7 +41064,7 @@ SubItems:
- - TOB: Herald of Darkness
+ - Alias: Herald of Darkness
@@ -41259,7 +41259,7 @@ SubItems:
- - TOB: Herald of Blood
+ - Alias: Herald of Blood
@@ -41476,7 +41476,7 @@ SubItems:
- - TOB: Roachling Skirmisher
+ - Alias: Roachling Skirmisher
@@ -41630,7 +41630,7 @@ SubItems:
- - TOB: Roachling Lord
+ - Alias: Roachling Lord
@@ -41793,7 +41793,7 @@ SubItems:
- - TOB: Goat-Man
+ - Alias: Goat-Man
@@ -41960,7 +41960,7 @@ SubItems:
- - TOB: Ravenfolk Warrior
+ - Alias: Ravenfolk Warrior
@@ -42162,7 +42162,7 @@ SubItems:
- - TOB: Ravenfolk Doom Croaker
+ - Alias: Ravenfolk Doom Croaker
@@ -42347,7 +42347,7 @@ SubItems:
- - TOB: Ravenfolk Scout
+ - Alias: Ravenfolk Scout
@@ -42513,7 +42513,7 @@ SubItems:
- - TOB: Lemurfolk
+ - Alias: Lemurfolk
@@ -42660,7 +42660,7 @@ SubItems:
- - TOB: Lemurfolk Greyfur
+ - Alias: Lemurfolk Greyfur
@@ -42837,7 +42837,7 @@ SubItems:
- - TOB: Bearfold
+ - Alias: Bearfold
@@ -42991,7 +42991,7 @@ SubItems:
- - TOB: Ratfolk
+ - Alias: Ratfolk
@@ -43139,7 +43139,7 @@ SubItems:
- - TOB: Ratfolk Rogue
+ - Alias: Ratfolk Rogue
@@ -43305,7 +43305,7 @@ SubItems:
- - TOB: Horakh
+ - Alias: Horakh
@@ -43474,7 +43474,7 @@ SubItems:
- - TOB: Hundun
+ - Alias: Hundun
@@ -43716,7 +43716,7 @@ SubItems:
- - TOB: Idolic Deity
+ - Alias: Idolic Deity
@@ -43908,7 +43908,7 @@ SubItems:
- - TOB: Imy-Ut Ushabti
+ - Alias: Imy-Ut Ushabti
@@ -44075,7 +44075,7 @@ SubItems:
- - TOB: Isonade
+ - Alias: Isonade
@@ -44285,7 +44285,7 @@ SubItems:
- - TOB: Jaculus
+ - Alias: Jaculus
@@ -44444,7 +44444,7 @@ SubItems:
- - TOB: Kalke
+ - Alias: Kalke
@@ -44585,7 +44585,7 @@ SubItems:
- - TOB: Kikimora
+ - Alias: Kikimora
@@ -44759,7 +44759,7 @@ SubItems:
- - TOB: Kobold Alchemist
+ - Alias: Kobold Alchemist
@@ -44950,7 +44950,7 @@ SubItems:
- - TOB: Kobold Chieftain
+ - Alias: Kobold Chieftain
@@ -45134,7 +45134,7 @@ SubItems:
- - TOB: Kobold Trapsmith
+ - Alias: Kobold Trapsmith
@@ -45305,7 +45305,7 @@ SubItems:
- - TOB: Kongamato
+ - Alias: Kongamato
@@ -45467,7 +45467,7 @@ SubItems:
- - TOB: Koschei
+ - Alias: Koschei
@@ -45785,7 +45785,7 @@ SubItems:
- - TOB: Kot Bayun
+ - Alias: Kot Bayun
@@ -45958,7 +45958,7 @@ SubItems:
- - TOB: Krake Spawn
+ - Alias: Krake Spawn
@@ -46163,7 +46163,7 @@ SubItems:
- - TOB: Star Spawn of Cthulhu
+ - Alias: Star Spawn of Cthulhu
@@ -46347,7 +46347,7 @@ SubItems:
- - TOB: Leshy
+ - Alias: Leshy
@@ -46522,7 +46522,7 @@ SubItems:
- - TOB: Slow Storm
+ - Alias: Slow Storm
@@ -46739,7 +46739,7 @@ SubItems:
- - TOB: Baba Yaga's Horsemen, Base
+ - Alias: Baba Yaga's Horsemen, Base
@@ -46943,7 +46943,7 @@ SubItems:
- - TOB: Lich Hound
+ - Alias: Lich Hound
@@ -47115,7 +47115,7 @@ SubItems:
- - TOB: Likho
+ - Alias: Likho
@@ -47302,7 +47302,7 @@ SubItems:
- - TOB: Sarcophagus Slime
+ - Alias: Sarcophagus Slime
@@ -47483,7 +47483,7 @@ SubItems:
- - TOB: Shroud
+ - Alias: Shroud
@@ -47657,7 +47657,7 @@ SubItems:
- - TOB: Lindwurm
+ - Alias: Lindwurm
@@ -47843,7 +47843,7 @@ SubItems:
- - TOB: Liosalfar
+ - Alias: Liosalfar
@@ -48053,7 +48053,7 @@ SubItems:
- - TOB: Elemental Locus
+ - Alias: Elemental Locus
@@ -48237,7 +48237,7 @@ SubItems:
- - TOB: Lorelei
+ - Alias: Lorelei
@@ -48442,7 +48442,7 @@ SubItems:
- - TOB: Loxoda
+ - Alias: Loxoda
@@ -48595,7 +48595,7 @@ SubItems:
- - TOB: Vapor Lynx
+ - Alias: Vapor Lynx
@@ -48761,7 +48761,7 @@ SubItems:
- - TOB: Mahoru
+ - Alias: Mahoru
@@ -48966,7 +48966,7 @@ SubItems:
- - TOB: Mallqui
+ - Alias: Mallqui
@@ -49179,7 +49179,7 @@ SubItems:
- - TOB: Malphas (Storm Crow)
+ - Alias: Malphas (Storm Crow)
@@ -49364,7 +49364,7 @@ SubItems:
- - TOB: Mamura
+ - Alias: Mamura
@@ -49548,7 +49548,7 @@ SubItems:
- - TOB: Fate Eater
+ - Alias: Fate Eater
@@ -49742,7 +49742,7 @@ SubItems:
- - TOB: Eater of Dust (Yakat-Shi)
+ - Alias: Eater of Dust (Yakat-Shi)
@@ -49934,7 +49934,7 @@ SubItems:
- - TOB: Dream Eater
+ - Alias: Dream Eater
@@ -50140,7 +50140,7 @@ SubItems:
- - TOB: Empty Cloak
+ - Alias: Empty Cloak
@@ -50322,7 +50322,7 @@ SubItems:
- - TOB: Forest Marauder
+ - Alias: Forest Marauder
@@ -50465,7 +50465,7 @@ SubItems:
- - TOB: Sandman
+ - Alias: Sandman
@@ -50661,7 +50661,7 @@ SubItems:
- - TOB: Spire Walker
+ - Alias: Spire Walker
@@ -50841,7 +50841,7 @@ SubItems:
- - TOB: Mavka
+ - Alias: Mavka
@@ -51033,7 +51033,7 @@ SubItems:
- - TOB: Clockwork Abomination
+ - Alias: Clockwork Abomination
@@ -51223,7 +51223,7 @@ SubItems:
- - TOB: Weaving Spider
+ - Alias: Weaving Spider
@@ -51385,7 +51385,7 @@ SubItems:
- - TOB: Clockwork Huntsman
+ - Alias: Clockwork Huntsman
@@ -51558,7 +51558,7 @@ SubItems:
- - TOB: Clockwork Hound
+ - Alias: Clockwork Hound
@@ -51732,7 +51732,7 @@ SubItems:
- - TOB: Clockwork Watchman
+ - Alias: Clockwork Watchman
@@ -51899,7 +51899,7 @@ SubItems:
- - TOB: Clockwork Myrmidon
+ - Alias: Clockwork Myrmidon
@@ -52085,7 +52085,7 @@ SubItems:
- - TOB: Clockwork Beetle
+ - Alias: Clockwork Beetle
@@ -52241,7 +52241,7 @@ SubItems:
- - TOB: Living Wick
+ - Alias: Living Wick
@@ -52406,7 +52406,7 @@ SubItems:
- - TOB: Tusked Skyfish
+ - Alias: Tusked Skyfish
@@ -52559,7 +52559,7 @@ SubItems:
- - TOB: Treacle
+ - Alias: Treacle
@@ -52701,7 +52701,7 @@ SubItems:
- - TOB: Mi-Go
+ - Alias: Mi-Go
@@ -52879,7 +52879,7 @@ SubItems:
- - TOB: Millitaur
+ - Alias: Millitaur
@@ -53028,7 +53028,7 @@ SubItems:
- - TOB: Map Mimic
+ - Alias: Map Mimic
@@ -53190,7 +53190,7 @@ SubItems:
- - TOB: Dune Mimic
+ - Alias: Dune Mimic
@@ -53368,7 +53368,7 @@ SubItems:
- - TOB: Mirager
+ - Alias: Mirager
@@ -53545,7 +53545,7 @@ SubItems:
- - TOB: Mngwa
+ - Alias: Mngwa
@@ -53718,7 +53718,7 @@ SubItems:
- - TOB: Hound of the night
+ - Alias: Hound of the night
@@ -53892,7 +53892,7 @@ SubItems:
- - TOB: Venomous Mummy
+ - Alias: Venomous Mummy
@@ -54057,7 +54057,7 @@ SubItems:
- - TOB: Monolith Champion
+ - Alias: Monolith Champion
@@ -54211,7 +54211,7 @@ SubItems:
- - TOB: Monolith Footman
+ - Alias: Monolith Footman
@@ -54366,7 +54366,7 @@ SubItems:
- - TOB: Corpse Mound
+ - Alias: Corpse Mound
@@ -54543,7 +54543,7 @@ SubItems:
- - TOB: Morphoi
+ - Alias: Morphoi
@@ -54699,7 +54699,7 @@ SubItems:
- - TOB: Deathwisp
+ - Alias: Deathwisp
@@ -54883,7 +54883,7 @@ SubItems:
- - TOB: Cavelight Moss
+ - Alias: Cavelight Moss
@@ -55032,7 +55032,7 @@ SubItems:
- - TOB: Myling
+ - Alias: Myling
@@ -55193,7 +55193,7 @@ SubItems:
- - TOB: Naina
+ - Alias: Naina
@@ -55428,7 +55428,7 @@ SubItems:
- - TOB: Mask Wight
+ - Alias: Mask Wight
@@ -55627,7 +55627,7 @@ SubItems:
- - TOB: Carrion Beetle
+ - Alias: Carrion Beetle
@@ -55777,7 +55777,7 @@ SubItems:
- - TOB: Nichny
+ - Alias: Nichny
@@ -55985,7 +55985,7 @@ SubItems:
- - TOB: Nkosi
+ - Alias: Nkosi
@@ -56144,7 +56144,7 @@ SubItems:
- - TOB: Nkosi Pridelord
+ - Alias: Nkosi Pridelord
@@ -56321,7 +56321,7 @@ SubItems:
- - TOB: War Ostrich
+ - Alias: War Ostrich
@@ -56447,7 +56447,7 @@ SubItems:
- - TOB: Nightgarm
+ - Alias: Nightgarm
@@ -56611,7 +56611,7 @@ SubItems:
- - TOB: Nightgarm Falseman
+ - Alias: Nightgarm Falseman
@@ -56681,7 +56681,7 @@ SubItems:
- - TOB: Noctiny
+ - Alias: Noctiny
@@ -56850,7 +56850,7 @@ SubItems:
- - TOB: Wolf Spirit Swarm
+ - Alias: Wolf Spirit Swarm
@@ -57028,7 +57028,7 @@ SubItems:
- - TOB: Oculo Swarm
+ - Alias: Oculo Swarm
@@ -57177,7 +57177,7 @@ SubItems:
- - TOB: Fire Dancer Swarm
+ - Alias: Fire Dancer Swarm
@@ -57343,7 +57343,7 @@ SubItems:
- - TOB: Death Butterfly Swarm
+ - Alias: Death Butterfly Swarm
@@ -57503,7 +57503,7 @@ SubItems:
- - TOB: Greater Death Butterfly Swarm
+ - Alias: Greater Death Butterfly Swarm
@@ -57664,7 +57664,7 @@ SubItems:
- - TOB: Manabane Scarab Swarm
+ - Alias: Manabane Scarab Swarm
@@ -57826,7 +57826,7 @@ SubItems:
- - TOB: Clockwork Beetle Swarm
+ - Alias: Clockwork Beetle Swarm
@@ -57946,7 +57946,7 @@ SubItems:
- - TOB: Prismatic Beetle Swarm
+ - Alias: Prismatic Beetle Swarm
@@ -58106,7 +58106,7 @@ SubItems:
- - TOB: Sluagh Swarm
+ - Alias: Sluagh Swarm
@@ -58270,7 +58270,7 @@ SubItems:
- - TOB: Bone Swarm
+ - Alias: Bone Swarm
@@ -58451,7 +58451,7 @@ SubItems:
- - TOB: Emerald Eye
+ - Alias: Emerald Eye
@@ -58631,7 +58631,7 @@ SubItems:
- - TOB: Firebird
+ - Alias: Firebird
@@ -58829,7 +58829,7 @@ SubItems:
- - TOB: Ostinato
+ - Alias: Ostinato
@@ -59017,7 +59017,7 @@ SubItems:
- - TOB: Oozasis
+ - Alias: Oozasis
@@ -59212,7 +59212,7 @@ SubItems:
- - TOB: Cobbleswarm
+ - Alias: Cobbleswarm
@@ -59373,7 +59373,7 @@ SubItems:
- - TOB: Mordant Snare
+ - Alias: Mordant Snare
@@ -59563,7 +59563,7 @@ SubItems:
- - TOB: Pombero
+ - Alias: Pombero
@@ -59733,7 +59733,7 @@ SubItems:
- - TOB: Rift Swine
+ - Alias: Rift Swine
@@ -59906,7 +59906,7 @@ SubItems:
- - TOB: White Ape
+ - Alias: White Ape
@@ -60063,7 +60063,7 @@ SubItems:
- - TOB: Accursed Defiler
+ - Alias: Accursed Defiler
@@ -60236,7 +60236,7 @@ SubItems:
- - TOB: Deep One
+ - Alias: Deep One
@@ -60404,7 +60404,7 @@ SubItems:
- - TOB: Deep One Archimandrite
+ - Alias: Deep One Archimandrite
@@ -60620,7 +60620,7 @@ SubItems:
- - TOB: Deep One Hybrid Priest
+ - Alias: Deep One Hybrid Priest
@@ -60822,7 +60822,7 @@ SubItems:
- - TOB: Qwyllion
+ - Alias: Qwyllion
@@ -60994,7 +60994,7 @@ SubItems:
- - TOB: Ramag
+ - Alias: Ramag
@@ -61136,7 +61136,7 @@ SubItems:
- - TOB: Ratatosk
+ - Alias: Ratatosk
@@ -61319,7 +61319,7 @@ SubItems:
- - TOB: Trollkin Reaver
+ - Alias: Trollkin Reaver
@@ -61493,7 +61493,7 @@ SubItems:
- - TOB: Ravenala
+ - Alias: Ravenala
@@ -61688,7 +61688,7 @@ SubItems:
- - TOB: Wharfling
+ - Alias: Wharfling
@@ -61818,7 +61818,7 @@ SubItems:
- - TOB: Wharfling Swarm
+ - Alias: Wharfling Swarm
@@ -61975,7 +61975,7 @@ SubItems:
- - TOB: Moss Lurker
+ - Alias: Moss Lurker
@@ -62167,7 +62167,7 @@ SubItems:
- - TOB: Rat King
+ - Alias: Rat King
@@ -62351,7 +62351,7 @@ SubItems:
- - TOB: Rusalka
+ - Alias: Rusalka
@@ -62522,7 +62522,7 @@ SubItems:
- - TOB: Risen Reaver
+ - Alias: Risen Reaver
@@ -62686,7 +62686,7 @@ SubItems:
- - TOB: Flutterflesh
+ - Alias: Flutterflesh
@@ -62882,7 +62882,7 @@ SubItems:
- - TOB: Scheznyki
+ - Alias: Scheznyki
@@ -63065,7 +63065,7 @@ SubItems:
- - TOB: Night Scorpion
+ - Alias: Night Scorpion
@@ -63200,7 +63200,7 @@ SubItems:
- - TOB: Stygian Fat-Tailed Scorpion
+ - Alias: Stygian Fat-Tailed Scorpion
@@ -63337,7 +63337,7 @@ SubItems:
- - TOB: Vine Lord
+ - Alias: Vine Lord
@@ -63527,7 +63527,7 @@ SubItems:
- - TOB: Tendril Puppet
+ - Alias: Tendril Puppet
@@ -63694,7 +63694,7 @@ SubItems:
- - TOB: Selang
+ - Alias: Selang
@@ -63877,7 +63877,7 @@ SubItems:
- - TOB: Swamp Adder
+ - Alias: Swamp Adder
@@ -64006,7 +64006,7 @@ SubItems:
- - TOB: Zanskaran Viper
+ - Alias: Zanskaran Viper
@@ -64131,7 +64131,7 @@ SubItems:
- - TOB: Serpopard
+ - Alias: Serpopard
@@ -64296,7 +64296,7 @@ SubItems:
- - TOB: Shabti
+ - Alias: Shabti
@@ -64460,7 +64460,7 @@ SubItems:
- - TOB: Shadhavar
+ - Alias: Shadhavar
@@ -64634,7 +64634,7 @@ SubItems:
- - TOB: Shoggoth
+ - Alias: Shoggoth
@@ -64819,7 +64819,7 @@ SubItems:
- - TOB: Sand Silhouette
+ - Alias: Sand Silhouette
@@ -65004,7 +65004,7 @@ SubItems:
- - TOB: Witchlight
+ - Alias: Witchlight
@@ -65166,7 +65166,7 @@ SubItems:
- - TOB: Skein Witch
+ - Alias: Skein Witch
@@ -65353,7 +65353,7 @@ SubItems:
- - TOB: Gypsosphinx
+ - Alias: Gypsosphinx
@@ -65611,7 +65611,7 @@ SubItems:
- - TOB: Vine Troll Skeleton
+ - Alias: Vine Troll Skeleton
@@ -65780,7 +65780,7 @@ SubItems:
- - TOB: Sharkjaw Skeleton
+ - Alias: Sharkjaw Skeleton
@@ -65940,7 +65940,7 @@ SubItems:
- - TOB: Stryx
+ - Alias: Stryx
@@ -66115,7 +66115,7 @@ SubItems:
- - TOB: Stuhac
+ - Alias: Stuhac
@@ -66298,7 +66298,7 @@ SubItems:
- - TOB: Subek
+ - Alias: Subek
@@ -66464,7 +66464,7 @@ SubItems:
- - TOB: Wormhearted Suffragan
+ - Alias: Wormhearted Suffragan
@@ -66636,7 +66636,7 @@ SubItems:
- - TOB: Suturefly
+ - Alias: Suturefly
@@ -66778,7 +66778,7 @@ SubItems:
- - TOB: Weeping Treant
+ - Alias: Weeping Treant
@@ -66945,7 +66945,7 @@ SubItems:
- - TOB: Gearforged Templar
+ - Alias: Gearforged Templar
@@ -67134,7 +67134,7 @@ SubItems:
- - TOB: Thuellai
+ - Alias: Thuellai
@@ -67363,7 +67363,7 @@ SubItems:
- - TOB: Ancient Titan
+ - Alias: Ancient Titan
@@ -67540,7 +67540,7 @@ SubItems:
- - TOB: Degenerate Titan
+ - Alias: Degenerate Titan
@@ -67701,7 +67701,7 @@ SubItems:
- - TOB: Titanoboa
+ - Alias: Titanoboa
@@ -67863,7 +67863,7 @@ SubItems:
- - TOB: Tophet
+ - Alias: Tophet
@@ -68038,7 +68038,7 @@ SubItems:
- - TOB: Tosculi Hive-Queen
+ - Alias: Tosculi Hive-Queen
@@ -68332,7 +68332,7 @@ SubItems:
- - TOB: Tosculi Elite Bow Raider
+ - Alias: Tosculi Elite Bow Raider
@@ -68497,7 +68497,7 @@ SubItems:
- - TOB: Tosculi Warrior
+ - Alias: Tosculi Warrior
@@ -68650,7 +68650,7 @@ SubItems:
- - TOB: Tosculi Drone
+ - Alias: Tosculi Drone
@@ -68791,7 +68791,7 @@ SubItems:
- - TOB: Lake Troll
+ - Alias: Lake Troll
@@ -68953,7 +68953,7 @@ SubItems:
- - TOB: Bukavac
+ - Alias: Bukavac
@@ -69132,7 +69132,7 @@ SubItems:
- - TOB: Uraeus
+ - Alias: Uraeus
@@ -69307,7 +69307,7 @@ SubItems:
- - TOB: Urochar (Strangling Watcher)
+ - Alias: Urochar (Strangling Watcher)
@@ -69547,7 +69547,7 @@ SubItems:
- - TOB: Ushabti
+ - Alias: Ushabti
@@ -69737,7 +69737,7 @@ SubItems:
- - TOB: Vaettir
+ - Alias: Vaettir
@@ -69938,7 +69938,7 @@ SubItems:
- - TOB: Eonic Drifter
+ - Alias: Eonic Drifter
@@ -70082,7 +70082,7 @@ SubItems:
- - TOB: Valkyrie
+ - Alias: Valkyrie
@@ -70316,7 +70316,7 @@ SubItems:
- - TOB: Umbral Vampire
+ - Alias: Umbral Vampire
@@ -70507,7 +70507,7 @@ SubItems:
- - TOB: Corrupting Ooze
+ - Alias: Corrupting Ooze
@@ -70662,7 +70662,7 @@ SubItems:
- - TOB: Rotting Wind
+ - Alias: Rotting Wind
@@ -70822,7 +70822,7 @@ SubItems:
- - TOB: Adult Rime Worm
+ - Alias: Adult Rime Worm
@@ -70989,7 +70989,7 @@ SubItems:
- - TOB: Rime Worm Grub
+ - Alias: Rime Worm Grub
@@ -71150,7 +71150,7 @@ SubItems:
- - TOB: Angler Worm
+ - Alias: Angler Worm
@@ -71326,7 +71326,7 @@ SubItems:
- - TOB: Sathaq Worm
+ - Alias: Sathaq Worm
@@ -71498,7 +71498,7 @@ SubItems:
- - TOB: Skitterhaunt
+ - Alias: Skitterhaunt
@@ -71665,7 +71665,7 @@ SubItems:
- - TOB: Vesiculosa
+ - Alias: Vesiculosa
@@ -71854,7 +71854,7 @@ SubItems:
- - TOB: Voidling
+ - Alias: Voidling
@@ -72050,7 +72050,7 @@ SubItems:
- - TOB: Gnoll Havoc Runner
+ - Alias: Gnoll Havoc Runner
@@ -72210,7 +72210,7 @@ SubItems:
- - TOB: Vile Barber
+ - Alias: Vile Barber
@@ -72395,7 +72395,7 @@ SubItems:
- - TOB: Vila
+ - Alias: Vila
@@ -72600,7 +72600,7 @@ SubItems:
- - TOB: Frostveil
+ - Alias: Frostveil
@@ -72790,7 +72790,7 @@ SubItems:
- - TOB: Wampus Cat
+ - Alias: Wampus Cat
@@ -72954,7 +72954,7 @@ SubItems:
- - TOB: Sandwyrm
+ - Alias: Sandwyrm
@@ -73101,7 +73101,7 @@ SubItems:
- - TOB: Xanka
+ - Alias: Xanka
@@ -73236,7 +73236,7 @@ SubItems:
- - TOB: Xhkarsh
+ - Alias: Xhkarsh
@@ -73390,7 +73390,7 @@ SubItems:
- - TOB: Ychen Bannog
+ - Alias: Ychen Bannog
@@ -73564,7 +73564,7 @@ SubItems:
- - TOB: Zaratan
+ - Alias: Zaratan
@@ -73776,7 +73776,7 @@ SubItems:
- - TOB: Zimwi
+ - Alias: Zimwi
@@ -73914,7 +73914,7 @@ SubItems:
- - TOB: Zmey
+ - Alias: Zmey
@@ -74152,7 +74152,7 @@ SubItems:
- - TOB: Zmey Headling
+ - Alias: Zmey Headling
@@ -74317,7 +74317,7 @@ SubItems:
- - TOB: Elvish Veteran Archer
+ - Alias: Elvish Veteran Archer
@@ -74493,7 +74493,7 @@ SubItems:
- - TOB: City Watch Captain
+ - Alias: City Watch Captain
@@ -74653,7 +74653,7 @@ SubItems:
- - TOB: Emerald Order Cult Leader
+ - Alias: Emerald Order Cult Leader
@@ -74872,7 +74872,7 @@ SubItems:
- - TOB: Ogre Chieftain, Corrupted
+ - Alias: Ogre Chieftain, Corrupted
@@ -75063,7 +75063,7 @@ SubItems:
- - TOB: Ghost Knight
+ - Alias: Ghost Knight
@@ -75252,7 +75252,7 @@ SubItems:
- - TOB: Black Knight Commander
+ - Alias: Black Knight Commander
@@ -75418,7 +75418,7 @@ SubItems:
- - TOB: Scorpion Cultist
+ - Alias: Scorpion Cultist
@@ -75566,7 +75566,7 @@ SubItems:
- - TOB: Dwarven Ringmage
+ - Alias: Dwarven Ringmage
@@ -75767,7 +75767,7 @@ SubItems:
- - TOB: Wolf Reaver Dwarf
+ - Alias: Wolf Reaver Dwarf
@@ -75934,7 +75934,7 @@ SubItems:
- - TOB: Devilbound Gnomish Prince
+ - Alias: Devilbound Gnomish Prince
@@ -76069,7 +76069,7 @@ SubItems:
- - TOB: Bandit Lord
+ - Alias: Bandit Lord
@@ -76295,7 +76295,7 @@ SubItems:
- - TOB: Variant: Vampire Warlock
+ - Alias: Variant: Vampire Warlock
@@ -76419,7 +76419,7 @@ AttributesDictionary: >+
# Nihileth
- Source: (LDM p8)(TOB p8)
-- TOB: Nihileth
+- Alias: Nihileth
- Mort-vivant de Grande taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 135 (18d10+36)
@@ -76501,7 +76501,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Zombi Nihilethique
- Source: (LDM p9)(TOB p9)
-- TOB: Nihilethic Zombie
+- Alias: Nihilethic Zombie
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Terrain** Littoral, Caverne naturelle, Caverne sous-marine, Ruines souterraines, Ruines sous-marines
- **Classe d'armure** 9 (armure naturelle)
@@ -76545,7 +76545,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Ala
- Source: (LDM p11)(TOB p13)
-- TOB: Ala
+- Alias: Ala
- Fée de taille Moyenne (M), chaotique mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 127 (15d8+60)
@@ -76585,7 +76585,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Algorith
- Source: (LDM p12)(TOB p14)
-- TOB: Algorith
+- Alias: Algorith
- Créature artificielle de taille Moyenne (M), loyal neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 136 (16d8+64)
@@ -76631,7 +76631,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Alséide
- Source: (LDM p13)(TOB p15)
-- TOB: Alseid
+- Alias: Alseid
- Créature monstrueuse de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 14 (armure de cuir)
@@ -76662,7 +76662,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Gardienne des bocages Alséide
- Source: (LDM p13)(TOB p15)
-- TOB: Alseid grovekeeper
+- Alias: Alseid grovekeeper
- Créature monstrueuse de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 15 (armure de cuir clouté)
- **Points de vie** 71 (13d8+13)
@@ -76702,7 +76702,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Amanite Myconide
- Source: (LDM p14)(TOB p300)
-- TOB: Deathcap Myconid
+- Alias: Deathcap Myconid
- Plante de taille Moyenne (M), neutre mauvaise
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
@@ -76738,7 +76738,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Amphiptère
- Source: (LDM p15)(TOB p16)
-- TOB: Amphiptere
+- Alias: Amphiptere
- Bête de taille Moyenne (M), non alignée
- **Terrain** Bois / Forêt, Littoral
- **Classe d'armure** 15 (armure naturelle)
@@ -76773,7 +76773,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Andrenjinyi
- Source: (LDM p17)(TOB p17)
-- TOB: Andrenjinyi
+- Alias: Andrenjinyi
- Céleste de taille Gigantesque (Gig), neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 228 (13d20+91)
@@ -76826,7 +76826,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Angatra
- Source: (LDM p18)(TOB p19)
-- TOB: Angatra
+- Alias: Angatra
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Jungle, Mangrove / Marécage, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -76862,7 +76862,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Ange Enchaîné
- Source: (LDM p19)(TOB p20)
-- TOB: Angel, Chained
+- Alias: Angel, Chained
- Céleste de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 88 (16d8+16)
@@ -76901,7 +76901,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Ange Fidèle
- Source: (LDM p20)(TOB p21)
-- TOB: Fidele Angel
+- Alias: Fidele Angel
- Céleste de taille Moyenne (M), loyal bon
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 104 (16d8+32)
@@ -76959,7 +76959,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Anubien
- Source: (LDM p21)(TOB p24)
-- TOB: Anubian
+- Alias: Anubian
- Élémentaire de taille Moyenne (M), chaotique mauvais
- **Terrain** Désert chaud, Plans élémentaires
- **Classe d'armure** 13
@@ -76997,7 +76997,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Apparition Putride
- Source: (LDM p22)(TOB p315)
-- TOB: Putrid Haunt
+- Alias: Putrid Haunt
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 13 (armure naturelle)
@@ -77032,7 +77032,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Araignée À Lignes Rouges
- Source: (LDM p23)(TOB p363)
-- TOB: Red-Banded Line Spider
+- Alias: Red-Banded Line Spider
- Bête de Très Petite taille (TP), non-alignée
- **Classe d'armure** 13
- **Points de vie** 2 (1d4)
@@ -77066,7 +77066,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Araignée De Leng
- Source: (LDM p24)(TOB p365)
-- TOB: Spider of Leng
+- Alias: Spider of Leng
- Aberration de Grande taille (G), chaotique mauvaise
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 15 (armure naturelle)
@@ -77120,7 +77120,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Araignée Des Sables
- Source: (LDM p25)(TOB p364)
-- TOB: Sand Spider
+- Alias: Sand Spider
- Bête de Grande taille (G), non-alignée
- **Terrain** Désert chaud, Littoral, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
@@ -77159,7 +77159,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Araignée J'Ba Fofi
- Source: (LDM p26)(TOB p362)
-- TOB: J'Ba Fofi Spider
+- Alias: J'Ba Fofi Spider
- Bête de Grande taille (G), non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 18 (armure naturelle)
@@ -77195,7 +77195,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Araignée Marchespectre
- Source: (LDM p27)(TOB p361)
-- TOB: Ghostwalk Spider
+- Alias: Ghostwalk Spider
- Créature monstrueuse de Grande taille (G), neutre mauvaise
- **Terrain** Bois / Forêt, Caverne naturelle
- **Classe d'armure** 15
@@ -77240,7 +77240,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Araignée Voleuse
- Source: (LDM p28)(TOB p366)
-- TOB: Spider Thief
+- Alias: Spider Thief
- Créature artificielle de Petite taille (P), non-alignée
- **Terrain** Caverne aménagée, Donjon maçonné
- **Classe d'armure** 13 (armure naturelle)
@@ -77280,7 +77280,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Arbre Feuilledragon
- Source: (LDM p29)(TOB p147)
-- TOB: Dragonleaf Tree
+- Alias: Dragonleaf Tree
- Plante de Grande taille (G), non alignée
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure naturelle)
@@ -77316,7 +77316,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Arbre Pare-Fées
- Source: (LDM p30)(TOB p200)
-- TOB: Feyward Tree
+- Alias: Feyward Tree
- Créature artificielle de Très Grande taille (TG), non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 17 (armure naturelle)
@@ -77360,7 +77360,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Aridni
- Source: (LDM p31)(TOB p26)
-- TOB: Aridni
+- Alias: Aridni
- Fée de Petite taille (P), neutre mauvaise
- **Classe d'armure** 15
- **Points de vie** 82 (15d6+30)
@@ -77403,7 +77403,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Asanbosam
- Source: (LDM p32)(TOB p27)
-- TOB: Asanbosam
+- Alias: Asanbosam
- Aberration de Grande taille (G), chaotique mauvaise
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 14 (armure naturelle)
@@ -77438,7 +77438,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Assoiffeur Gris
- Source: (LDM p33)(TOB p238)
-- TOB: Gray Thirster
+- Alias: Gray Thirster
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 13
@@ -77476,7 +77476,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Automate Bibliothécaire
- Source: (LDM p34)(TOB p273)
-- TOB: Library Automaton
+- Alias: Library Automaton
- Créature artificielle de Petite taille (P), loyale neutre
- **Terrain** Ruines souterraines
- **Classe d'armure** 13 (armure naturelle)
@@ -77509,7 +77509,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Bagiennik
- Source: (LDM p35)(TOB p31)
-- TOB: Bagiennik
+- Alias: Bagiennik
- Aberration de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt, Jungle, Mangrove / Marécage
- **Classe d'armure** 15 (armure naturelle)
@@ -77542,7 +77542,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Beauté Abominable
- Source: (LDM p36)(TOB p11)
-- TOB: Abominable Beauty
+- Alias: Abominable Beauty
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 187 (22d8+88)
@@ -77578,7 +77578,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Behtu
- Source: (LDM p37)(TOB p34)
-- TOB: Behtu
+- Alias: Behtu
- Humanoïde de Petite taille (P), chaotique mauvais
- **Terrain** Jungle
- **Classe d'armure** 14 (armure de peau)
@@ -77613,7 +77613,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Béli
- Source: (LDM p38)(TOB p35)
-- TOB: Beli
+- Alias: Beli
- Fée de Petite taille (P), neutre mauvaise
- **Terrain** Arctique / Subarctique, Montagnes
- **Classe d'armure** 15 (armure naturelle)
@@ -77657,7 +77657,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Belle Noyée
- Source: (LDM p39)(TOB p159)
-- TOB: Drowned Maiden
+- Alias: Drowned Maiden
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 15 (armure naturelle)
@@ -77701,7 +77701,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Béreginyas
- Source: (LDM p40)(TOB p36)
-- TOB: Bereginyas
+- Alias: Bereginyas
- Fée de Très Petite taille (TP), neutre mauvaise
- **Terrain** Montagnes
- **Classe d'armure** 15
@@ -77734,7 +77734,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Bête D'Ombre
- Source: (LDM p41)(TOB p345)
-- TOB: Shadow Beast
+- Alias: Shadow Beast
- Fée de taille Moyenne (M), chaotique mauvaise
- **Terrain** Bois / Forêt, Mer / Océan, Caverne aménagée, Donjon maçonné, Ruines extérieures, Ruines souterraines, Ruines sous-marines
- **Classe d'armure** 14
@@ -77780,7 +77780,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Blemmyes
- Source: (LDM p42)(TOB p37)
-- TOB: Blemmyes
+- Alias: Blemmyes
- Créature monstrueuse de Grande taille (G), chaotique mauvais
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 15 (armure naturelle)
@@ -77815,7 +77815,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Boloti
- Source: (LDM p43)(TOB p38)
-- TOB: Boloti
+- Alias: Boloti
- Fée de Très Petite taille (TP), neutre mauvaise
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 15
@@ -77856,7 +77856,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Bondisseur Aquatique
- Source: (LDM p44)(TOB p406)
-- TOB: Water Leaper
+- Alias: Water Leaper
- Créature monstrueuse de Grande taille (G), non alignée
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 14 (armure naturelle)
@@ -77894,7 +77894,7 @@ Les effets régionaux de l'antre d'un nihileth sont les mêmes que ceux d'un abo
# Avatar de Borée
- Source: (LDM p45)(TOB p42)
-- TOB: Avatar of Boreas
+- Alias: Avatar of Boreas
- Élémentaire de taille Moyenne (métamorphe) (M), chaotique mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 20 (armure naturelle)
@@ -77957,7 +77957,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Boucca
- Source: (LDM p47)(TOB p46)
-- TOB: Bucca
+- Alias: Bucca
- Fée de Très Petite taille (TP), neutre mauvaise
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 27 (5d4+15)
@@ -77993,7 +77993,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Bouda
- Source: (LDM p48)(TOB p44)
-- TOB: Bouda
+- Alias: Bouda
- Fiélon de taille Moyenne (métamorphe) (M), neutre mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 93 (11d8+44)
@@ -78043,7 +78043,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Bouffon Macabre
- Source: (LDM p49)(TOB p240)
-- TOB: Grim Jester
+- Alias: Grim Jester
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 136 (16d8+64)
@@ -78093,7 +78093,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Bouraq
- Source: (LDM p50)(TOB p48)
-- TOB: Buraq
+- Alias: Buraq
- Céleste de taille Moyenne (M), loyal bon
- **Classe d'armure** 17
- **Points de vie** 152 (16d8+80)
@@ -78140,7 +78140,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Cactide
- Source: (LDM p51)(TOB p50)
-- TOB: Cactid
+- Alias: Cactid
- Plante de Grande taille (G), non alignée
- **Terrain** Désert chaud
- **Classe d'armure** 14 (armure naturelle)
@@ -78175,7 +78175,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Cambium
- Source: (LDM p52)(TOB p51)
-- TOB: Cambium
+- Alias: Cambium
- Fiélon de Grande taille (G), neutre mauvais
- **Terrain** Donjon maçonné, Ruines extérieures
- **Classe d'armure** 19 (armure naturelle)
@@ -78229,7 +78229,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Canitaupe
- Source: (LDM p53)(TOB p120)
-- TOB: Dogmole
+- Alias: Dogmole
- Bête de taille Moyenne (M), neutre
- **Terrain** Bois / Forêt, Collines / Vallées, Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure naturelle)
@@ -78263,7 +78263,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Canitaupe Juggernaut
- Source: (LDM p54)(TOB p121)
-- TOB: Dogmole Juggernaut
+- Alias: Dogmole Juggernaut
- Créature monstrueuse de Grande taille (G), neutre
- **Terrain** Collines / Vallées, Montagnes, Caverne naturelle
- **Classe d'armure** 15 (armure de chaînes)
@@ -78302,7 +78302,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Chapeau Rouge
- Source: (LDM p55)(TOB p325)
-- TOB: Redcap
+- Alias: Redcap
- Fée de taille Moyenne (M), neutre mauvaise
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
@@ -78342,7 +78342,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Chat Du Temple De Bastet
- Source: (LDM p56)(TOB p32)
-- TOB: Bastet Temple Cat
+- Alias: Bastet Temple Cat
- Créature montrueuse de Petite taille (P), chaotique neutre
- **Classe d'armure** 14
- **Points de vie** 40 (9d6+9)
@@ -78386,7 +78386,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Chélicère
- Source: (LDM p57)(TOB p54)
-- TOB: Chelicerae
+- Alias: Chelicerae
- Aberration de Grande taille (G), neutre mauvaise
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 153 (18d10+54)
@@ -78437,7 +78437,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Chernomoï
- Source: (LDM p58)(TOB p55)
-- TOB: Chernomoi
+- Alias: Chernomoi
- Fée de Très Petite taille (TP), neutre
- **Classe d'armure** 13
- **Points de vie** 32 (5d4+20)
@@ -78472,7 +78472,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Chien-Anguille
- Source: (LDM p59)(TOB p166)
-- TOB: Eel Hound
+- Alias: Eel Hound
- Fée de taille Moyenne (M), neutre
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 14 (armure naturelle)
@@ -78507,7 +78507,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Chien Du Temple
- Source: (LDM p60)(TOB p378)
-- TOB: Temple Dog
+- Alias: Temple Dog
- Céleste de taille Moyenne (M), bon
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 97 (15d8+30)
@@ -78543,7 +78543,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Chiot Mastodonte
- Source: (LDM p61)(TOB p252)
-- TOB: Hulking Whelp
+- Alias: Hulking Whelp
- Fée (métamorphe) de Petite/Très Grande taille (P/TG), chaotique neutre
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 94 (9d12+36)
@@ -78581,7 +78581,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Chronomentaire
- Source: (LDM p62)(TOB p57)
-- TOB: Chronalmental
+- Alias: Chronalmental
- Élémentaire de Grande taille (G), non aligné
- **Terrain** Plans élémentaires, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -78621,7 +78621,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Cikavak
- Source: (LDM p63)(TOB p58)
-- TOB: Cikavak
+- Alias: Cikavak
- Fée de Très Petite taille (TP), neutre
- **Classe d'armure** 12
- **Points de vie** 17 (7d4)
@@ -78654,7 +78654,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Claquepiège
- Source: (LDM p64)(TOB p229)
-- TOB: Gnarljak
+- Alias: Gnarljak
- Créature artificielle de Petite taille (P), non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 16
@@ -78687,7 +78687,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Clurichaun
- Source: (LDM p65)(TOB p67)
-- TOB: Clurichaun
+- Alias: Clurichaun
- Fée de taille Très Petite (TP), neutre
- **Classe d'armure** 14
- **Points de vie** 22 (4d4+12)
@@ -78727,7 +78727,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Colonne Possédée
- Source: (LDM p66)(TOB p314)
-- TOB: Possessed Pillar
+- Alias: Possessed Pillar
- Créature artificielle de Grande taille (G), non alignée
- **Terrain** Désert chaud
- **Classe d'armure** 14 (armure naturelle)
@@ -78767,7 +78767,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Conglomérat Osseux
- Source: (LDM p67)(TOB p39)
-- TOB: Bone Collective
+- Alias: Bone Collective
- Mort-vivant de Petite taille (P), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 120 (16d6+64)
@@ -78815,7 +78815,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Coquicape
- Source: (LDM p68)(TOB p346)
-- TOB: Shellycoat
+- Alias: Shellycoat
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 75 (10d8+30)
@@ -78858,7 +78858,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Couveteux
- Source: (LDM p69)(TOB p45)
-- TOB: Broodiken
+- Alias: Broodiken
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 55 (10d4+30)
- **Vitesse** 6m, escalade 6m
@@ -78894,7 +78894,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Crabe Garrotteur
- Source: (LDM p70)(TOB p208)
-- TOB: Garroter Crab
+- Alias: Garroter Crab
- Bête de Très Petite taille (TP), non-alignée
- **Terrain** Littoral, Caverne sous-marine
- **Classe d'armure** 13 (armure naturelle)
@@ -78924,7 +78924,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Crabe Osseux
- Source: (LDM p71)(TOB p40)
-- TOB: Bone Crab
+- Alias: Bone Crab
- Bête de Petite taille (P), neutre
- **Terrain** Littoral
- **Classe d'armure** 13 (armure naturelle)
@@ -78964,7 +78964,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Croco De Verre
- Source: (LDM p72)(TOB p228)
-- TOB: Glass Gator
+- Alias: Glass Gator
- Bête de Grande taille (G), non-alignée
- **Terrain** Littoral, Mangrove / Marécage, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 15 (armure naturelle)
@@ -79005,7 +79005,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Cynome
- Source: (LDM p73)(TOB p49)
-- TOB: Burrowling
+- Alias: Burrowling
- Humanoïde de Petite taille (cynome) (P), loyal neutre
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -79042,7 +79042,7 @@ Borée peut faire 3 actions légendaires parmi celles présentées ci- dessous.
# Dau
- Source: (LDM p74)(TOB p70)
-- TOB: Dau
+- Alias: Dau
- Fée de Petite taille (P), chaotique neutre
- **Terrain** Désert chaud
- **Classe d'armure** 13
@@ -79088,7 +79088,7 @@ dure 10 minutes, au bout desquelles il redevient une illusion (ou disparaît si
# Demoiselle Glacée
- Source: (LDM p75)(TOB p254)
-- TOB: Ice Maiden
+- Alias: Ice Maiden
- Fée de taille Moyenne (M), loyale mauvaise
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 16 (armure naturelle)
@@ -79149,7 +79149,7 @@ dure 10 minutes, au bout desquelles il redevient une illusion (ou disparaît si
# Apau Perape
- Source: (LDM p76)(TOB p75)
-- TOB: Apau Perape
+- Alias: Apau Perape
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 95 (10d10+40)
@@ -79198,7 +79198,7 @@ Certains apau perapes possèdent une action qui leur permet de convoquer d'autre
# Berstuc
- Source: (LDM p77)(TOB p76)
-- TOB: Berstuc
+- Alias: Berstuc
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 157 (15d10+75)
@@ -79238,7 +79238,7 @@ Certains apau perapes possèdent une action qui leur permet de convoquer d'autre
# Démon De Sève
- Source: (LDM p78)(TOB p335)
-- TOB: Sap Demon
+- Alias: Sap Demon
- Vase de Petite taille (P), chaotique mauvaise
- **Terrain** Bois / Forêt
- **Classe d'armure** 13 (naturelle)
@@ -79275,7 +79275,7 @@ Certains apau perapes possèdent une action qui leur permet de convoquer d'autre
# Démon Kishi
- Source: (LDM p79)(TOB p77)
-- TOB: Kishi Demon
+- Alias: Kishi Demon
- Fiélon (démon) de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 18 (armure naturelle, bouclier)
- **Points de vie** 119 (14d8+56)
@@ -79330,7 +79330,7 @@ Certains démons kishis possèdent une action qui leur permet de convoquer d'aut
# Malakbel
- Source: (LDM p80)(TOB p78)
-- TOB: Malakbel
+- Alias: Malakbel
- Fiélon (démon) de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 102 (12d8+48)
@@ -79372,7 +79372,7 @@ Certains démons kishis possèdent une action qui leur permet de convoquer d'aut
# Démon Psoglav
- Source: (LDM p81)(TOB p79)
-- TOB: Psoglav Demon
+- Alias: Psoglav Demon
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 115 (11d10+55)
@@ -79414,7 +79414,7 @@ Certains démons kishis possèdent une action qui leur permet de convoquer d'aut
# Rübezahl
- Source: (LDM p82)(TOB p80)
-- TOB: Rubezahl
+- Alias: Rubezahl
- Fiélon (démon) de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 110 (17d8+34)
@@ -79465,7 +79465,7 @@ sorts 16, +8 pour toucher avec les attaques de sort). Il peut lancer les sorts s
# Akyishigal, seigneur démon des cafards
- Source: (LDM p84)(TOB p82)
-- TOB: Akyishigal, Demon Lord of Cockroaches
+- Alias: Akyishigal, Demon Lord of Cockroaches
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 138 (12d10+72)
@@ -79521,7 +79521,7 @@ Akyishigal peut faire 2 actions légendaires, parmi celles proposées ci-dessous
# Rejeton D'Akyishigal
- Source: (LDM p85)(TOB p83)
-- TOB: Spawn of Akyishigal
+- Alias: Spawn of Akyishigal
- Fiélon (démon) de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 119 (14d8+56)
@@ -79557,7 +79557,7 @@ Akyishigal peut faire 2 actions légendaires, parmi celles proposées ci-dessous
# Alquam, seigneur démon de la nuit
- Source: (LDM p86)(TOB p84)
-- TOB: Alquam, Demon Lord of Night
+- Alias: Alquam, Demon Lord of Night
- Fiélon (démon) de Très Grande taille (TG), chaotique mauvais
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 350 (28d12+168)
@@ -79653,7 +79653,7 @@ Si Alquam meurt, les conditions de la zone qui entoure son antre redeviennent no
# Camazotz, seigneur démon des chauves-souris et du feu
- Source: (LDM p87)(TOB p85)
-- TOB: Camazotz, Demon Lord of Bats and Fire
+- Alias: Camazotz, Demon Lord of Bats and Fire
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 537 (43d10+301)
@@ -79722,7 +79722,7 @@ Camazotz peut faire 2 actions légendaires, parmi celles proposées ci-dessous.
# Chauve-Souris De Peau
- Source: (LDM p89)(TOB p87)
-- TOB: Skin Bat
+- Alias: Skin Bat
- Mort-vivant de Petite taille (P), neutre mauvais
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 14 (4d6)
@@ -79751,7 +79751,7 @@ Camazotz peut faire 2 actions légendaires, parmi celles proposées ci-dessous.
# Mechuiti, seigneur démon des grands singes
- Source: (LDM p90)(TOB p88)
-- TOB: Mechuiti, Demon Lord of Apes
+- Alias: Mechuiti, Demon Lord of Apes
- Fiélon (démon) de taille Gigantesque (Gig), chaotique mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 370 (20d20+160)
@@ -79855,7 +79855,7 @@ Si Mechuiti meurt, tous ces effets régionaux prennent fin immédiatement.
# Qorgeth, seigneur démon du ver insatiable
- Source: (LDM p92)(TOB p90)
-- TOB: Qorgeth, Demon Lord of the Devouring Worm
+- Alias: Qorgeth, Demon Lord of the Devouring Worm
- Fiélon (démon) de taille Gigantesque (Gig), chaotique mauvais
- **Classe d'armure** 21 (armure naturelle)
- **Points de vie** 370 (20d20+160)
@@ -79947,7 +79947,7 @@ Si Qorgeth meurt, les conditions de la zone qui entoure son antre redeviennent n
# Antipaladin Des Ombres Derro
- Source: (LDM p94)(TOB p93)
-- TOB: Derro Shadow Antipaladin
+- Alias: Derro Shadow Antipaladin
- Humanoïde (derro) de Petite taille (P), chaotique mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 18 (cuirasse et bouclier)
@@ -79997,7 +79997,7 @@ Si Qorgeth meurt, les conditions de la zone qui entoure son antre redeviennent n
# Savant Foetal Derro
- Source: (LDM p95)(TOB p92)
-- TOB: Derro Fetal Savant
+- Alias: Derro Fetal Savant
- Humanoïde de Très Petite taille (TP), chaotique mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 15 (cage)
@@ -80035,7 +80035,7 @@ Si Qorgeth meurt, les conditions de la zone qui entoure son antre redeviennent n
# Dévoreur D'Âmes
- Source: (LDM p96)(TOB p356)
-- TOB: Soul Eater
+- Alias: Soul Eater
- Fiélon de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 16
- **Points de vie** 104 (16d8+32)
@@ -80073,7 +80073,7 @@ Si Qorgeth meurt, les conditions de la zone qui entoure son antre redeviennent n
# Arbeyach
- Source: (LDM p98)(TOB p95)
-- TOB: Arbeyach
+- Alias: Arbeyach
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 275 (22d10+154)
@@ -80139,7 +80139,7 @@ Arbeyach peut faire 3 actions légendaires parmi celles proposées ci-dessous. I
# Rejeton D'Arbeyach
- Source: (LDM p100)(TOB p97)
-- TOB: Spawn of Arbeyach
+- Alias: Spawn of Arbeyach
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 78 (12d8+24)
@@ -80180,7 +80180,7 @@ Arbeyach peut faire 3 actions légendaires parmi celles proposées ci-dessous. I
# Ia'Affrat
- Source: (LDM p101)(TOB p98)
-- TOB: Ia'Affrat
+- Alias: Ia'Affrat
- Nuée de Grande taille d'élémentaires de taille Minuscule (G), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 170 (20d10+60)
@@ -80230,7 +80230,7 @@ Arbeyach peut faire 3 actions légendaires parmi celles proposées ci-dessous. I
# Mammon
- Source: (LDM p102)(TOB p99)
-- TOB: Mammon
+- Alias: Mammon
- Fiélon (diable) de Très Grande taille (TG), loyal mauvais
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 378 (28d12+196)
@@ -80320,7 +80320,7 @@ Si Mammon meurt, les conditions de la zone qui entoure son antre redeviennent no
# Totivillus, le Scribe de l'Enfer
- Source: (LDM p104)(TOB p101)
-- TOB: Totivillus, Scribe of Hell
+- Alias: Totivillus, Scribe of Hell
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 299 (26d8+182)
@@ -80398,7 +80398,7 @@ Totivillus peut faire 3 actions légendaires, parmi celles proposées ci- dessou
# Diable Automate
- Source: (LDM p105)(TOB p102)
-- TOB: Automata Devil
+- Alias: Automata Devil
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 168 (16d10+80)
@@ -80449,7 +80449,7 @@ les sorts 16). Il peut lancer les sorts suivants de manière innée, sans compos
# Chort
- Source: (LDM p107)(TOB p104)
-- TOB: Chort Devil
+- Alias: Chort Devil
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 187 (15d8+120)
@@ -80497,7 +80497,7 @@ les sorts 16). Il peut lancer les sorts suivants de manière innée, sans compos
# Diable Cristallin
- Source: (LDM p108)(TOB p105)
-- TOB: Crystalline Devil
+- Alias: Crystalline Devil
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 102 (12d8+48)
@@ -80551,7 +80551,7 @@ Certains diables cristallins peuvent par une action convoquer d'autres diables.
# Diable D'Encre
- Source: (LDM p109)(TOB p108)
-- TOB: Ink Devil
+- Alias: Ink Devil
- Fiélon (diable) de Petite taille (P), loyal mauvais
- **Classe d'armure** 14
- **Points de vie** 54 (12d6+12)
@@ -80599,7 +80599,7 @@ Certains diables cristallins peuvent par une action convoquer d'autres diables.
# Diable De Sel
- Source: (LDM p110)(TOB p113)
-- TOB: Salt Devil
+- Alias: Salt Devil
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 13 (armure naturelle)
@@ -80648,7 +80648,7 @@ Certains diables de sel possèdent une action qui leur permet de convoquer d'aut
# Diable Doré
- Source: (LDM p111)(TOB p106)
-- TOB: Gilded Devil
+- Alias: Gilded Devil
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 16 (armure de pièces)
- **Points de vie** 112 (15d8+45)
@@ -80716,7 +80716,7 @@ Un objet est considéré comme un bijou s'il est fait d'un matériau précieux (
# Koralk (Diable Moissonneur)
- Source: (LDM p112)(TOB p108)
-- TOB: Koralk (Harvester Devil)
+- Alias: Koralk (Harvester Devil)
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 136 (16d10+48)
@@ -80757,7 +80757,7 @@ Un objet est considéré comme un bijou s'il est fait d'un matériau précieux (
# Diable Lunaire
- Source: (LDM p114)(TOB p110)
-- TOB: Lunar Devil
+- Alias: Lunar Devil
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 94 (9d10+45)
@@ -80815,7 +80815,7 @@ Un objet est considéré comme un bijou s'il est fait d'un matériau précieux (
# Diable Orobas
- Source: (LDM p115)(TOB p111)
-- TOB: Orobas Devil
+- Alias: Orobas Devil
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 261 (14d10+126)
@@ -80874,7 +80874,7 @@ Un objet est considéré comme un bijou s'il est fait d'un matériau précieux (
# Mbielu
- Source: (LDM p117)(TOB p114)
-- TOB: Mbielu
+- Alias: Mbielu
- Bête de Très Grande taille (TG), non alignée
- **Terrain** Littoral, Mangrove / Marécage, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
@@ -80907,7 +80907,7 @@ Un objet est considéré comme un bijou s'il est fait d'un matériau précieux (
# Ngobou
- Source: (LDM p118)(TOB p115)
-- TOB: Ngobou
+- Alias: Ngobou
- Bête de Grande taille (G), non alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
@@ -80942,7 +80942,7 @@ Un objet est considéré comme un bijou s'il est fait d'un matériau précieux (
# Spinosaure
- Source: (LDM p119)(TOB p116)
-- TOB: Spinosaurus
+- Alias: Spinosaurus
- Bête de taille Gigantesque (Gig), non alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 15 (armure naturelle)
@@ -80991,7 +80991,7 @@ Un spinosaure peut faire trois actions légendaires parmi celles proposées ci-d
# Jeune Spinosaure
- Source: (LDM p120)(TOB p117)
-- TOB: Young Spinosaurus
+- Alias: Young Spinosaurus
- Bête de Très Grande taille (TG), non alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
@@ -81024,7 +81024,7 @@ Un spinosaure peut faire trois actions légendaires parmi celles proposées ci-d
# Dipsa
- Source: (LDM p121)(TOB p118)
-- TOB: Dipsa
+- Alias: Dipsa
- Vase de Très Petite taille (TP), non alignée
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 15
@@ -81059,7 +81059,7 @@ Un spinosaure peut faire trois actions légendaires parmi celles proposées ci-d
# Dissimortuum
- Source: (LDM p122)(TOB p119)
-- TOB: Dissimortuum
+- Alias: Dissimortuum
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 112 (15d8+45)
@@ -81094,7 +81094,7 @@ Un spinosaure peut faire trois actions légendaires parmi celles proposées ci-d
# Domovoï
- Source: (LDM p123)(TOB p122)
-- TOB: Domovoi
+- Alias: Domovoi
- Fée de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt, Ruines extérieures
- **Classe d'armure** 15 (armure naturelle)
@@ -81130,7 +81130,7 @@ Un spinosaure peut faire trois actions légendaires parmi celles proposées ci-d
# Doppelrat
- Source: (LDM p124)(TOB p123)
-- TOB: Doppelrat
+- Alias: Doppelrat
- Créature monstrueuse de Très Petite taille (TP), non alignée
- **Terrain** Caverne aménagée, Donjon maçonné, Ruines souterraines
- **Classe d'armure** 13
@@ -81164,7 +81164,7 @@ Un spinosaure peut faire trois actions légendaires parmi celles proposées ci-d
# Dorreq
- Source: (LDM p125)(TOB p124)
-- TOB: Dorreq
+- Alias: Dorreq
- Aberration de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 93 (17d8+17)
@@ -81204,7 +81204,7 @@ Un spinosaure peut faire trois actions légendaires parmi celles proposées ci-d
# Dragon De Flammes, Adulte
- Source: (LDM p126)(TOB p129)
-- TOB: Adult Flame Dragon
+- Alias: Adult Flame Dragon
- Dragon de Très Grande taille (TG), chaotique mauvais
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 19 (armure naturelle)
@@ -81261,7 +81261,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon De Flammes, Dragonnet
- Source: (LDM p127)(TOB p131)
-- TOB: Flame Dragon Wyrmling
+- Alias: Flame Dragon Wyrmling
- Dragon de taille Moyenne (M), chaotique mauvais
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -81294,7 +81294,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon De Flammes, Jeune
- Source: (LDM p128)(TOB p130)
-- TOB: Young Flame Dragon
+- Alias: Young Flame Dragon
- Dragon de Grande taille (G), chaotique mauvais
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 18 (armure naturelle)
@@ -81333,7 +81333,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon De Flammes, Vénérable
- Source: (LDM p128)(TOB p128)
-- TOB: Ancient Flame Dragon
+- Alias: Ancient Flame Dragon
- Dragon de taille Gigantesque (Gig), chaotique mauvais
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 22 (armure naturelle)
@@ -81418,7 +81418,7 @@ Si le dragon meurt, les disputes et malentendus se dissipent immédiatement et l
# Dragon De Mithral, Adulte
- Source: (LDM p130)(TOB p133)
-- TOB: Adult Mithral Dragon
+- Alias: Adult Mithral Dragon
- Dragon de Très Grande taille (TG), neutre
- **Terrain** Montagnes
- **Classe d'armure** 18 (armure naturelle)
@@ -81487,7 +81487,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon De Mithral, Jeune
- Source: (LDM p131)(TOB p134)
-- TOB: Young Mithral Dragon
+- Alias: Young Mithral Dragon
- Dragon de taille Moyenne (M), neutre
- **Terrain** Montagnes
- **Classe d'armure** 16 (armure naturelle)
@@ -81530,7 +81530,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon De Mithral, Vénérable
- Source: (LDM p131)(TOB p132)
-- TOB: Ancient Mithral Dragon
+- Alias: Ancient Mithral Dragon
- Dragon de taille Gigantesque (Gig), neutre
- **Terrain** Montagnes
- **Classe d'armure** 20 (armure naturelle)
@@ -81640,7 +81640,7 @@ Si le dragon meurt, ces effets se dissipent graduellement au bout de 1d10 jours.
# Dragon Des Cavernes, Adulte
- Source: (LDM p133)(TOB p125)
-- TOB: Adult Cave Dragon
+- Alias: Adult Cave Dragon
- Dragon de Très Grande taille (TG), neutre mauvais
- **Terrain** Caverne aménagée, Caverne naturelle
- **Classe d'armure** 18 (armure naturelle)
@@ -81712,7 +81712,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Des Cavernes, Dragonnet
- Source: (LDM p135)(TOB p127)
-- TOB: Cave Dragon Wyrmling
+- Alias: Cave Dragon Wyrmling
- Dragon de taille Moyenne (M), neutre mauvais
- **Terrain** Caverne aménagée, Caverne naturelle
- **Classe d'armure** 16 (armure naturelle)
@@ -81752,7 +81752,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Des Cavernes, Jeune
- Source: (LDM p135)(TOB p127)
-- TOB: Young Cave Dragon
+- Alias: Young Cave Dragon
- Dragon de Grande taille (G), neutre mauvais
- **Terrain** Caverne aménagée, Caverne naturelle
- **Classe d'armure** 17 (armure naturelle)
@@ -81802,7 +81802,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Du Vent, Adulte
- Source: (LDM p136)(TOB p143)
-- TOB: Wind Dragon, Adult
+- Alias: Wind Dragon, Adult
- Dragon de Très Grande taille (TG), chaotique neutre
- **Terrain** Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 19 (armure naturelle)
@@ -81871,7 +81871,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Du Vent, Dragonnet
- Source: (LDM p137)(TOB p145)
-- TOB: Wind Dragon, Wyrmling
+- Alias: Wind Dragon, Wyrmling
- Dragon de taille Moyenne (M), chaotique neutre
- **Terrain** Collines / Vallées, Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14
@@ -81905,7 +81905,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Du Vent, Jeune
- Source: (LDM p137)(TOB p144)
-- TOB: Wind Dragon, Young
+- Alias: Wind Dragon, Young
- Dragon de Grande taille (G), chaotique neutre
- **Terrain** Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 17 (armure naturelle)
@@ -81951,7 +81951,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Du Vent, Vénérable
- Source: (LDM p138)(TOB p142)
-- TOB: Wind Dragon, Ancient
+- Alias: Wind Dragon, Ancient
- Dragon de taille Gigantesque (Gig), chaotique neutre
- **Terrain** Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 20 (armure naturelle)
@@ -82036,7 +82036,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Du Vide, Adulte
- Source: (LDM p140)(TOB p139)
-- TOB: Adult Void Dragon
+- Alias: Adult Void Dragon
- Dragon de Très Grande taille (TG), chaotique neutre
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 229 (17d12+119)
@@ -82105,7 +82105,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Du Vide, Dragonnet
- Source: (LDM p141)(TOB p140)
-- TOB: Void Dragon Wyrmling
+- Alias: Void Dragon Wyrmling
- Dragon de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 45 (6d8+18)
@@ -82149,7 +82149,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Du Vide, Jeune
- Source: (LDM p141)(TOB p140)
-- TOB: Young Void Dragon
+- Alias: Young Void Dragon
- Dragon de Grande taille (G), chaotique neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 157 (15d10+75)
@@ -82198,7 +82198,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Du Vide, Vénérable
- Source: (LDM p142)(TOB p138)
-- TOB: Ancient Void Dragon
+- Alias: Ancient Void Dragon
- Dragon de taille Gigantesque (Gig), chaotique neutre
- **Classe d'armure** 22 (armure naturelle)
- **Points de vie** 448 (23d20+207)
@@ -82297,7 +82297,7 @@ Si le dragon meurt, ces effets se dissipent graduellement au bout de 1d10 jours.
# Dragon Marin, Adulte
- Source: (LDM p144)(TOB p135)
-- TOB: Adult Sea Dragon
+- Alias: Adult Sea Dragon
- Dragon de Très Grande taille (TG), neutre mauvais
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 19 (armure naturelle)
@@ -82354,7 +82354,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Marin, Dragonnet
- Source: (LDM p144)(TOB p136)
-- TOB: Sea Dragon Wyrmling
+- Alias: Sea Dragon Wyrmling
- Dragon de taille Moyenne (M), neutre mauvais
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 17 (armure naturelle)
@@ -82387,7 +82387,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Marin, Jeune
- Source: (LDM p145)(TOB p136)
-- TOB: Young Sea Dragon
+- Alias: Young Sea Dragon
- Dragon de Grande taille (G), neutre mauvais
- **Terrain** Caverne sous-marine
- **Terrain** Mer / Océan
@@ -82429,7 +82429,7 @@ Le dragon peut faire trois actions légendaires parmi celles proposées ci-desso
# Dragon Marin, Vénérable
- Source: (LDM p145)(TOB p135)
-- TOB: Ancient Sea Dragon
+- Alias: Ancient Sea Dragon
- Dragon de taille Gigantesque (Gig), chaotique neutre
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 22 (armure naturelle)
@@ -82514,7 +82514,7 @@ Si le dragon meurt, les conditions de la mer qui entoure son antre redeviennent
# Murène Dragon
- Source: (LDM p147)(TOB p146)
-- TOB: Dragon Eel
+- Alias: Dragon Eel
- Dragon de Très Grande taille (TG), neutre
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 18 (armure naturelle)
@@ -82556,7 +82556,7 @@ Si le dragon meurt, les conditions de la mer qui entoure son antre redeviennent
# Dragonette Lanterne
- Source: (LDM p148)(TOB p270)
-- TOB: Lantern Dragonette
+- Alias: Lantern Dragonette
- Dragon de Très Petite taille (TP), loyal neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 13 (armure naturelle)
@@ -82593,7 +82593,7 @@ Si le dragon meurt, les conditions de la mer qui entoure son antre redeviennent
# Drake De Cendres
- Source: (LDM p149)(TOB p149)
-- TOB: Ash Drake
+- Alias: Ash Drake
- Dragon de Petite taille (P), neutre mauvais
- **Terrain** Montagnes
- **Classe d'armure** 16 (armure naturelle)
@@ -82631,7 +82631,7 @@ Si le dragon meurt, les conditions de la mer qui entoure son antre redeviennent
# Drake De Corail
- Source: (LDM p150)(TOB p150)
-- TOB: Coral Drake
+- Alias: Coral Drake
- Dragon de taille Moyenne (M), neutre mauvais
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 16 (armure naturelle)
@@ -82673,7 +82673,7 @@ Si le dragon meurt, les conditions de la mer qui entoure son antre redeviennent
# Drake De Papier
- Source: (LDM p151)(TOB p154)
-- TOB: Paper Drake
+- Alias: Paper Drake
- Dragon de Petite taille (P), neutre
- **Classe d'armure** 13
- **Points de vie** 78 (12d6+36)
@@ -82709,7 +82709,7 @@ Si le dragon meurt, les conditions de la mer qui entoure son antre redeviennent
# Drake De Rouille
- Source: (LDM p152)(TOB p155)
-- TOB: Rust Drake
+- Alias: Rust Drake
- Dragon de taille Moyenne (M), chaotique mauvais
- **Terrain** Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -82748,7 +82748,7 @@ ou une magie comparable.
# Ancien Drake Des Ombres
- Source: (LDM p153)(TOB p153)
-- TOB: Elder Shadow Drake
+- Alias: Elder Shadow Drake
- Dragon de Grande taille (G), chaotique mauvais
- **Terrain** Bois / Forêt, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 16 (armure naturelle)
@@ -82791,7 +82791,7 @@ ou une magie comparable.
# Drake Des Profondeurs
- Source: (LDM p154)(TOB p152)
-- TOB: Deep Drake
+- Alias: Deep Drake
- Dragon de Grande taille (G), chaotique mauvais
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
@@ -82831,7 +82831,7 @@ ou une magie comparable.
# Drake Des Tavernes
- Source: (LDM p155)(TOB p148)
-- TOB: Alehouse Drake
+- Alias: Alehouse Drake
- Dragon de Très Petite taille (TP), chaotique neutre
- **Classe d'armure** 13
- **Points de vie** 65 (10d4+40)
@@ -82875,7 +82875,7 @@ ou une magie comparable.
# Drake Pourpre
- Source: (LDM p156)(TOB p151)
-- TOB: Crimson Drake
+- Alias: Crimson Drake
- Dragon de taille Très Petite (TP), chaotique mauvais
- **Terrain** Bois / Forêt
- **Classe d'armure** 14 (armure naturelle)
@@ -82913,7 +82913,7 @@ ou une magie comparable.
# Drake Stellaire
- Source: (LDM p157)(TOB p157)
-- TOB: Star Drake
+- Alias: Star Drake
- Dragon de Grande taille (G), neutre
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 19 (armure naturelle)
@@ -82977,7 +82977,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Drakon
- Source: (LDM p158)(TOB p157)
-- TOB: Drakon
+- Alias: Drakon
- Bête de Grande taille (G), non alignée
- **Terrain** Littoral
- **Classe d'armure** 16 (armure naturelle)
@@ -83014,7 +83014,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Dryade Épine-Du-Crépuscule
- Source: (LDM p159)(TOB p160)
-- TOB: Duskthorn Dryad
+- Alias: Duskthorn Dryad
- Fée de taille Moyenne (M), chaotique
- **Terrain** Bois / Forêt
- **Classe d'armure** 17 (armure naturelle)
@@ -83060,7 +83060,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Dullahan
- Source: (LDM p160)(TOB p161)
-- TOB: Dullahan
+- Alias: Dullahan
- Fée de Grande taille (G), loyale mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 178 (17d10+85)
@@ -83111,7 +83111,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Eala
- Source: (LDM p161)(TOB p163)
-- TOB: Eala
+- Alias: Eala
- Créature monstrueuse de Petite taille (P), non-alignée
- **Classe d'armure** 15 (naturelle)
- **Points de vie** 40 (9d6+9)
@@ -83146,7 +83146,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Edimmu
- Source: (LDM p162)(TOB p165)
-- TOB: Edimmu
+- Alias: Edimmu
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 15
@@ -83179,7 +83179,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Einherjar
- Source: (LDM p163)(TOB p167)
-- TOB: Einherjar
+- Alias: Einherjar
- Humanoïde de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 18 (cotte de mailles et bouclier)
- **Points de vie** 119 (14d8+56)
@@ -83226,7 +83226,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Eleinomae
- Source: (LDM p164)(TOB p168)
-- TOB: Eleinomae
+- Alias: Eleinomae
- Fée de taille Moyenne (M), chaotique mauvaise
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 18
@@ -83270,7 +83270,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Fée des ombres
- Source: (LDM p166)(TOB p171)
-- TOB: Shadow Fey
+- Alias: Shadow Fey
- Humanoïde (elfe) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 31 (7d8)
@@ -83308,7 +83308,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Chasseur forestier
- Source: (LDM p166)(TOB p173)
-- TOB: Forest Hunter
+- Alias: Forest Hunter
- Humanoïde (elfe) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 104 (19d8+19)
@@ -83351,7 +83351,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Duelliste
- Source: (LDM p167)(TOB p171)
-- TOB: Duelist
+- Alias: Duelist
- Humanoïde (elfe) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 17 (armure de cuir clouté)
- **Points de vie** 117 (18d8+36)
@@ -83396,7 +83396,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Enchanteresse
- Source: (LDM p168)(TOB p172)
-- TOB: Enchantress
+- Alias: Enchantress
- Humanoïde (fée des ombres) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 16 (cuirasse)
- **Points de vie** 123 (19d8+38)
@@ -83453,7 +83453,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Gardien
- Source: (LDM p169)(TOB p174)
-- TOB: Guardian
+- Alias: Guardian
- Humanoïde (elfe) de Grande taille (G), neutre mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 110 (13d10+39)
@@ -83501,7 +83501,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Empoigneur Arboricole
- Source: (LDM p170)(TOB p25)
-- TOB: Arboreal Grappler
+- Alias: Arboreal Grappler
- Aberration de taille Moyenne (M), neutre mauvais
- **Terrain** Jungle
- **Classe d'armure** 14 (armure naturelle)
@@ -83536,7 +83536,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Enfant Des Bruyères
- Source: (LDM p171)(TOB p56)
-- TOB: Child of the Briar
+- Alias: Child of the Briar
- Plante de Très Petite taille (TP), neutre mauvaise
- **Terrain** Bois / Forêt
- **Classe d'armure** 13
@@ -83575,7 +83575,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Écornifleur Erina
- Source: (LDM p172)(TOB p178)
-- TOB: Erina Scrounger
+- Alias: Erina Scrounger
- Humanoïde (erina) de Petite taille (P), neutre
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12 (armure de cuir)
@@ -83610,7 +83610,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Défenseur Erina
- Source: (LDM p172)(TOB p178)
-- TOB: Erina Defender
+- Alias: Erina Defender
- Humanoïde (erina) de Petite taille (P), neutre
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (chemise de mailles)
@@ -83652,7 +83652,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Esclave Putresprit
- Source: (LDM p173)(TOB p290)
-- TOB: Mindrot Thrall
+- Alias: Mindrot Thrall
- Plante de taille Moyenne (M), neutre
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 82 (11d8+33)
@@ -83689,7 +83689,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Esprit Du Feu
- Source: (LDM p174)(TOB p202)
-- TOB: Firegeist
+- Alias: Firegeist
- Élémentaire de Petite taille (P), neutre mauvais
- **Classe d'armure** 14
- **Points de vie** 87 (25d6)
@@ -83729,7 +83729,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Étincelle
- Source: (LDM p175)(TOB p357)
-- TOB: Spark
+- Alias: Spark
- Élémentaire de Très Petite taille (TP), chaotique neutre
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 84 (13d4+52)
@@ -83766,7 +83766,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Fangeux
- Source: (LDM p176)(TOB p292)
-- TOB: Miremal
+- Alias: Miremal
- Fée de Petite taille (P), chaotique mauvaise
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 13
@@ -83809,7 +83809,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# Far Darrig
- Source: (LDM p177)(TOB p179)
-- TOB: Far Darrig
+- Alias: Far Darrig
- Fée de Petite taille (P), neutre
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure de peau)
@@ -83851,7 +83851,7 @@ Le drake peut faire trois actions légendaires parmi celles proposées ci-dessou
# La Reine de la Nuit et de la Magie
- Source: (LDM p180)(TOB p192)
-- TOB: Queen of Night and Magic
+- Alias: Queen of Night and Magic
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 15 (18 avec armure du mage)
- **Points de vie** 180 (24d8+72)
@@ -83965,7 +83965,7 @@ Si la Reine de la Nuit et de la Magie meurt, les conditions redeviennent normale
# La Reine des Neiges
- Source: (LDM p182)(TOB p198)
-- TOB: Snow Queen
+- Alias: Snow Queen
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 123 (19d8+38)
@@ -84059,7 +84059,7 @@ Si la Reine des Neiges meurt, les conditions redeviennent normales dans la zone
# La Reine des Sorcières
- Source: (LDM p184)(TOB p194)
-- TOB: Queen of Witches
+- Alias: Queen of Witches
- Fée de Grande taille (G), neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 123 (13d10+52)
@@ -84151,7 +84151,7 @@ Si Nicnevin meurt, les conditions de la zone qui entoure son antre redeviennent
# Le Grand Veneur
- Source: (LDM p186)(TOB p188)
-- TOB: Lord of the Hunt
+- Alias: Lord of the Hunt
- Fée de taille Moyenne (M), loyale neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 229 (27d8+108)
@@ -84243,7 +84243,7 @@ Quand le Grand Veneur meurt ou lève le camp, la région qui entoure celui-ci re
# Le Roi Baigné de Lune
- Source: (LDM p188)(TOB p190)
-- TOB: Moonlit King
+- Alias: Moonlit King
- Fée de taille Moyenne (M), neutre bonne
- **Classe d'armure** 17 (demi-plate)
- **Points de vie** 170 (20d8+80)
@@ -84339,7 +84339,7 @@ Si le Roi Baigné de Lune meurt, les conditions redeviennent normales dans la zo
# Le Roi des Ours
- Source: (LDM p190)(TOB p186)
-- TOB: Bear King
+- Alias: Bear King
- Fée (métamorphe) de taille Moyenne (M), loyale neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 133 (14d8+70)
@@ -84425,7 +84425,7 @@ Si le Roi des Ours meurt, les conditions redeviennent normales dans la zone qui
# Le Roi des Rivières
- Source: (LDM p192)(TOB p196)
-- TOB: River King
+- Alias: River King
- Fée de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 152 (16d8+80)
@@ -84519,7 +84519,7 @@ Si le Roi des Rivières meurt, les conditions redeviennent normales dans la zone
# Felforgé
- Source: (LDM p194)(TOB p182)
-- TOB: Fellforged
+- Alias: Fellforged
- Créature artificielle de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 135 (18d8+54)
@@ -84558,7 +84558,7 @@ Si le Roi des Rivières meurt, les conditions redeviennent normales dans la zone
# Férocien
- Source: (LDM p195)(TOB p338)
-- TOB: Savager
+- Alias: Savager
- Bête de Grande taille (G), neutre mauvaise
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 17 (armure naturelle)
@@ -84595,7 +84595,7 @@ Si le Roi des Rivières meurt, les conditions redeviennent normales dans la zone
# Fext
- Source: (LDM p196)(TOB p183)
-- TOB: Fext
+- Alias: Fext
- Mort-vivant de taille Moyenne (M), n'importe quel alignement
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 60 (11d8+11)
@@ -84642,7 +84642,7 @@ Si le Roi des Rivières meurt, les conditions redeviennent normales dans la zone
# Fils De Fenris
- Source: (LDM p197)(TOB p355)
-- TOB: Son of Fenris
+- Alias: Son of Fenris
- Créature monstrueuse de Très Grande taille (TG), chaotique mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 175 (14d12+84)
@@ -84704,7 +84704,7 @@ Si le Roi des Rivières meurt, les conditions redeviennent normales dans la zone
# Forgepeur
- Source: (LDM p198)(TOB p181)
-- TOB: Fear Smith
+- Alias: Fear Smith
- Fée de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 123 (19d8+38)
@@ -84750,7 +84750,7 @@ jet de sauvegarde mais, jusqu'au début de son prochain tour, elle doit considé
# Fourmi Géante
- Source: (LDM p199)(TOB p23)
-- TOB: Giant Ant
+- Alias: Giant Ant
- Bête de Grande taille (G), non alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 52 (7d10+14)
@@ -84781,7 +84781,7 @@ jet de sauvegarde mais, jusqu'au début de son prochain tour, elle doit considé
# Reine Fourmi Géante
- Source: (LDM p199)(TOB p23)
-- TOB: Giant Ant Queen
+- Alias: Giant Ant Queen
- Bête de Grande taille (G), non alignée
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 85 (10d10+30)
@@ -84814,7 +84814,7 @@ jet de sauvegarde mais, jusqu'au début de son prochain tour, elle doit considé
# Fraughashar
- Source: (LDM p200)(TOB p206)
-- TOB: Fraughashar
+- Alias: Fraughashar
- Fée de Petite taille (P), neutre mauvaise
- **Classe d'armure** 15 (armure de cuir, bouclier)
- **Points de vie** 18 (4d6+4)
@@ -84849,7 +84849,7 @@ jet de sauvegarde mais, jusqu'au début de son prochain tour, elle doit considé
# Gardien Spectral
- Source: (LDM p201)(TOB p358)
-- TOB: Spectral Guardian
+- Alias: Spectral Guardian
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 14
- **Points de vie** 110 (13d8+52)
@@ -84904,7 +84904,7 @@ Certains gardiens spectraux n'étaient pas des guerriers de leur vivant, mais de
# Gbahali (Postosuchus)
- Source: (LDM p202)(TOB p209)
-- TOB: Gbahali (Postosuchus)
+- Alias: Gbahali (Postosuchus)
- Bête de Très Grande taille (TG), non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
@@ -84941,7 +84941,7 @@ Certains gardiens spectraux n'étaient pas des guerriers de leur vivant, mais de
# Géant Du Désert
- Source: (LDM p203)(TOB p222)
-- TOB: Desert Giant
+- Alias: Desert Giant
- Géant de Très Grande taille (TG), neutre
- **Terrain** Désert chaud
- **Classe d'armure** 17 (armure naturelle)
@@ -84976,7 +84976,7 @@ Certains gardiens spectraux n'étaient pas des guerriers de leur vivant, mais de
# Hraesvelgr Le Mangeur De Cadavres
- Source: (LDM p204)(TOB p224)
-- TOB: Hraesvelgr the Corpse Swallower
+- Alias: Hraesvelgr the Corpse Swallower
- Géant (métamorphe (TG), titan) de Très Grande taille (TG), neutre
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 241 (12d12+105)
@@ -85066,7 +85066,7 @@ Si Hraesvelgr meurt, les conditions redeviennent normales dans la zone qui entou
# Géant Jotun
- Source: (LDM p206)(TOB p226)
-- TOB: Jotun Giant
+- Alias: Jotun Giant
- Géant de taille Gigantesque (Gig), chaotique neutre
- **Terrain** Collines / Vallées, Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 20 (armure naturelle)
@@ -85131,7 +85131,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Géant Obèse
- Source: (LDM p207)(TOB p223)
-- TOB: Flab Giant
+- Alias: Flab Giant
- Géant de Grande taille (G), chaotique mauvais
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 14 (armure naturelle)
@@ -85167,7 +85167,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Géant Thursir
- Source: (LDM p208)(TOB p227)
-- TOB: Thursir Giant
+- Alias: Thursir Giant
- Géant de Grande taille (G), neutre mauvais (50 %) ou loyal mauvais (50 %)
- **Classe d'armure** 13 (chemise de mailles)
- **Points de vie** 114 (12d10+48)
@@ -85202,7 +85202,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Génie Al-Aeshma
- Source: (LDM p209)(TOB p211)
-- TOB: Al-Aeshma Genie
+- Alias: Al-Aeshma Genie
- Élémentaire de Grande taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 172 (15d10+90)
@@ -85251,7 +85251,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Gerridé
- Source: (LDM p210)(TOB p212)
-- TOB: Gerridae
+- Alias: Gerridae
- Fée de Grande taille (G), neutre
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 14
@@ -85285,7 +85285,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Gobelin Poussiéreux
- Source: (LDM p211)(TOB p232)
-- TOB: Dust Goblin
+- Alias: Dust Goblin
- Humanoïde (gobelinoïde) de Petite taille (P), neutre mauvais
- **Terrain** Désert chaud, Caverne aménagée, Ruines extérieures
- **Classe d'armure** 14 (armure de cuir)
@@ -85317,7 +85317,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Golem À Vapeur
- Source: (LDM p212)(TOB p237)
-- TOB: Steam Golem
+- Alias: Steam Golem
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 171 (18d10+72)
@@ -85364,7 +85364,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Golem De Sel
- Source: (LDM p213)(TOB p235)
-- TOB: Salt Golem
+- Alias: Salt Golem
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 110 (11d10+55)
- **Vitesse** 6 m
@@ -85401,7 +85401,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Golem Oculaire
- Source: (LDM p214)(TOB p233)
-- TOB: Eye Golem
+- Alias: Eye Golem
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 157 (15d10+75)
@@ -85443,7 +85443,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Golem Smaragdin
- Source: (LDM p215)(TOB p236)
-- TOB: Smaragdine Golem
+- Alias: Smaragdine Golem
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 231 (22d10+110)
@@ -85482,7 +85482,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Golem Trésor
- Source: (LDM p216)(TOB p234)
-- TOB: Hoard Golem
+- Alias: Hoard Golem
- Créature artificielle de Très Grande taille (TG), non-alignée
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 161 (14d12+70)
@@ -85523,7 +85523,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Goule Darakhule
- Source: (LDM p217)(TOB p216)
-- TOB: Ghoul, Darakhul
+- Alias: Ghoul, Darakhul
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 16 (armure d'écailles ; 18 avec bouclier)
@@ -85567,7 +85567,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Goule De Fer
- Source: (LDM p218)(TOB p221)
-- TOB: Ghoul, Iron
+- Alias: Ghoul, Iron
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 16 (cuirasse)
@@ -85605,7 +85605,7 @@ Le géant jotun peut faire une action légendaire à la fin du tour d'une autre
# Empereur Des Goules
- Source: (LDM p219)(TOB p218)
-- TOB: Emperor of the Ghouls
+- Alias: Emperor of the Ghouls
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 204 (24d8+96)
@@ -85713,7 +85713,7 @@ Si l'empereur meurt, les conditions redeviennent normales dans la zone qui entou
# Goule Impériale
- Source: (LDM p222)(TOB p220)
-- TOB: Ghoul, Imperial
+- Alias: Ghoul, Imperial
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 16 (cuirasse)
@@ -85749,7 +85749,7 @@ Si l'empereur meurt, les conditions redeviennent normales dans la zone qui entou
# Goule Mendiante
- Source: (LDM p223)(TOB p213)
-- TOB: Beggar Ghoul
+- Alias: Beggar Ghoul
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 12
@@ -85783,7 +85783,7 @@ Si l'empereur meurt, les conditions redeviennent normales dans la zone qui entou
# Goule Poudre D'Os
- Source: (LDM p224)(TOB p214)
-- TOB: Bonepowder Ghoul
+- Alias: Bonepowder Ghoul
- Mort-vivant de Petite taille (P), neutre mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 18 (armure naturelle)
@@ -85851,7 +85851,7 @@ La maladie se répand surtout chez les humains, mais comme elle peut affecter le
# Gremlin Azza
- Source: (LDM p226)(TOB p28)
-- TOB: Azza Gremlin
+- Alias: Azza Gremlin
- Fée de Petite taille (P), neutre
- **Terrain** Montagnes
- **Classe d'armure** 14
@@ -85884,7 +85884,7 @@ La maladie se répand surtout chez les humains, mais comme elle peut affecter le
# Gremlin Rhumé
- Source: (LDM p227)(TOB p239)
-- TOB: Rum Gremlin
+- Alias: Rum Gremlin
- Fée de Très Petite taille (TP), chaotique mauvaise
- **Classe d'armure** 13
- **Points de vie** 22 (5d4+10)
@@ -85925,7 +85925,7 @@ La maladie se répand surtout chez les humains, mais comme elle peut affecter le
# Guenaude Des Sables
- Source: (LDM p228)(TOB p245)
-- TOB: Sanf Hag
+- Alias: Sanf Hag
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Terrain** Désert chaud
- **Classe d'armure** 17 (armure naturelle)
@@ -85970,7 +85970,7 @@ La maladie se répand surtout chez les humains, mais comme elle peut affecter le
# Guenaude Miroir
- Source: (LDM p229)(TOB p229)
-- TOB: Mirror Hag
+- Alias: Mirror Hag
- Fée de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 168 (16d8+96)
@@ -86013,7 +86013,7 @@ La maladie se répand surtout chez les humains, mais comme elle peut affecter le
# Guenaude Rouge
- Source: (LDM p230)(TOB p244)
-- TOB: Red Hag
+- Alias: Red Hag
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 119 (14d8+56)
@@ -86060,7 +86060,7 @@ La maladie se répand surtout chez les humains, mais comme elle peut affecter le
# Guenaude Sanglante
- Source: (LDM p231)(TOB p242)
-- TOB: Blood Hag
+- Alias: Blood Hag
- Fée de taille Moyenne (M), chaotique mauvaise
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 178 (21d8+84)
@@ -86115,7 +86115,7 @@ La maladie se répand surtout chez les humains, mais comme elle peut affecter le
# Gug
- Source: (LDM p232)(TOB p241)
-- TOB: Gug
+- Alias: Gug
- Géant de Très Grande taille (TG), neutre mauvais
- **Terrain** Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -86165,7 +86165,7 @@ Le gug peut faire trois actions légendaires parmi celles proposées ci-dessous.
# Habitant De Leng
- Source: (LDM p233)(TOB p204)
-- TOB: Folk of Leng
+- Alias: Folk of Leng
- Humanoïde de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 14 (armure de cuir clouté)
- **Points de vie** 68 (8d8+32)
@@ -86213,7 +86213,7 @@ Le gug peut faire trois actions légendaires parmi celles proposées ci-dessous.
# Harpie Chouette
- Source: (LDM p234)(TOB p246)
-- TOB: Owl Harpy
+- Alias: Owl Harpy
- Créature monstrueuse de taille Moyenne (M), neutre mauvaise
- **Terrain** Désert chaud, Jungle
- **Classe d'armure** 14
@@ -86255,7 +86255,7 @@ Le gug peut faire trois actions légendaires parmi celles proposées ci-dessous.
# Haugbui
- Source: (LDM p235)(TOB p247)
-- TOB: Haugbui
+- Alias: Haugbui
- Mort-vivant de taille Moyenne (M), loyal neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 136 (16d8+64)
@@ -86313,7 +86313,7 @@ Le gug peut faire trois actions légendaires parmi celles proposées ci-dessous.
# Héraut Des Ténèbres
- Source: (LDM p236)(TOB p249)
-- TOB: Herald of Darkness
+- Alias: Herald of Darkness
- Fiélon de Grande taille (G), neutre mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 105 (10d10+50)
@@ -86357,7 +86357,7 @@ jets de sauvegarde physiques, peut traverser n'importe quel fossé ou ouverture,
# Héraut Du Sang
- Source: (LDM p237)(TOB p248)
-- TOB: Herald of Blood
+- Alias: Herald of Blood
- Fiélon de Très Grande taille (TG), neutre mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 115 (10d12+50)
@@ -86409,7 +86409,7 @@ Le héraut du sang peut faire 3 actions légendaires parmi celles proposées ci-
# Escarmoucheur Homme-Cafard
- Source: (LDM p238)(TOB p329)
-- TOB: Roachling Skirmisher
+- Alias: Roachling Skirmisher
- Humanoïde (homme-cafard) de Petite taille (P), chaotique neutre
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 13 (armure naturelle)
@@ -86443,7 +86443,7 @@ Le héraut du sang peut faire 3 actions légendaires parmi celles proposées ci-
# Seigneur Homme-Cafard
- Source: (LDM p238)(TOB p329)
-- TOB: Roachling Lord
+- Alias: Roachling Lord
- Humanoïde (homme-cafard) de Petite taille (P), chaotique neutre
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
@@ -86479,7 +86479,7 @@ Le héraut du sang peut faire 3 actions légendaires parmi celles proposées ci-
# Homme-Chèvre
- Source: (LDM p239)(TOB p231)
-- TOB: Goat-Man
+- Alias: Goat-Man
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 14 (armure naturelle)
@@ -86515,7 +86515,7 @@ Le héraut du sang peut faire 3 actions légendaires parmi celles proposées ci-
# Combattant Homme-Corbeau
- Source: (LDM p240)(TOB p323)
-- TOB: Ravenfolk Warrior
+- Alias: Ravenfolk Warrior
- Humanoïde (kenku) de taille Moyenne (M), neutre
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 15 (armure de cuir clouté)
@@ -86565,7 +86565,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Croasseur Funeste Homme-Corbeau
- Source: (LDM p241)(TOB p324)
-- TOB: Ravenfolk Doom Croaker
+- Alias: Ravenfolk Doom Croaker
- Humanoïde (kenku) de taille Moyenne (M), neutre
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 14 (armure de cuir clouté)
@@ -86609,7 +86609,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Éclaireur Homme-Corbeau
- Source: (LDM p242)(TOB p322)
-- TOB: Ravenfolk Scout
+- Alias: Ravenfolk Scout
- Humanoïde (kenku) de taille Moyenne (M), neutre
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 14 (armure de cuir clouté)
@@ -86647,7 +86647,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Homme-Lémurien
- Source: (LDM p243)(TOB p271)
-- TOB: Lemurfolk
+- Alias: Lemurfolk
- Humanoïde (homme-lémurien) de Petite taille (P), neutre
- **Terrain** Jungle
- **Classe d'armure** 13
@@ -86680,7 +86680,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Homme-Lémurien Fourrure Grise
- Source: (LDM p243)(TOB p271)
-- TOB: Lemurfolk Greyfur
+- Alias: Lemurfolk Greyfur
- Humanoïde (homme-lémurien) de Petite taille (P), neutre
- **Terrain** Jungle
- **Classe d'armure** 13 (16 avec armure du mage )
@@ -86723,7 +86723,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Homme-Ours
- Source: (LDM p244)(TOB p33)
-- TOB: Bearfold
+- Alias: Bearfold
- Humanoïde (homme-ours) de taille Moyenne (M), chaotique bon
- **Terrain** Bois / Forêt
- **Classe d'armure** 14 (armure de peau)
@@ -86759,7 +86759,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Homme-Rat
- Source: (LDM p245)(TOB p320)
-- TOB: Ratfolk
+- Alias: Ratfolk
- Humanoïde (homme-rat) de Petite taille (P), neutre
- **Terrain** Caverne aménagée
- **Classe d'armure** 14 (armure de cuir clouté)
@@ -86792,7 +86792,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Roublard Homme-Rat
- Source: (LDM p245)(TOB p320)
-- TOB: Ratfolk Rogue
+- Alias: Ratfolk Rogue
- Humanoïde (homme-rat) de Petite taille (P), neutre
- **Terrain** Caverne aménagée
- **Classe d'armure** 15 (armure de cuir clouté)
@@ -86831,7 +86831,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Horakh
- Source: (LDM p246)(TOB p250)
-- TOB: Horakh
+- Alias: Horakh
- Créature monstrueuse de taille Moyenne (M), neutre
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane, Caverne naturelle
- **Classe d'armure** 17 (armure naturelle)
@@ -86869,7 +86869,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Hundun
- Source: (LDM p247)(TOB p253)
-- TOB: Hundun
+- Alias: Hundun
- Céleste de Grande taille (G), chaotique bon
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 153 (18d10+54)
@@ -86927,7 +86927,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Idole Divine
- Source: (LDM p248)(TOB p255)
-- TOB: Idolic Deity
+- Alias: Idolic Deity
- Créature artificielle de Petite taille (P), neutre mauvaise
- **Terrain** Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
@@ -86969,7 +86969,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Imy-Ut Ushabti
- Source: (LDM p249)(TOB p256)
-- TOB: Imy-Ut Ushabti
+- Alias: Imy-Ut Ushabti
- Créature monstrueuse de taille Moyenne (M), neutre
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 97 (15d8+30)
@@ -87006,7 +87006,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Isonade
- Source: (LDM p250)(TOB p257)
-- TOB: Isonade
+- Alias: Isonade
- Créature monstrueuse de taille Gigantesque (Gig), chaotique neutre
- **Terrain** Littoral
- **Classe d'armure** 18 (armure naturelle)
@@ -87057,7 +87057,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Jaculus
- Source: (LDM p251)(TOB p258)
-- TOB: Jaculus
+- Alias: Jaculus
- Dragon de Petite taille (P), neutre mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 18 (armure naturelle)
@@ -87092,7 +87092,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Kalke
- Source: (LDM p252)(TOB p259)
-- TOB: Kalke
+- Alias: Kalke
- Fiélon de Petite taille (P), neutre mauvais
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 9 (2d6+2)
@@ -87124,7 +87124,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Kikimore
- Source: (LDM p253)(TOB p260)
-- TOB: Kikimora
+- Alias: Kikimora
- Fée de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 65 (10d8+20)
@@ -87165,7 +87165,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Alchimiste Kobold
- Source: (LDM p254)(TOB p261)
-- TOB: Kobold Alchemist
+- Alias: Kobold Alchemist
- Humanoïde (kobold) de Petite taille (P), loyal neutre
- **Terrain** Caverne aménagée
- **Classe d'armure** 15 (armure de cuir clouté)
@@ -87209,7 +87209,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Chef Kobold
- Source: (LDM p256)(TOB p263)
-- TOB: Kobold Chieftain
+- Alias: Kobold Chieftain
- Humanoïde (kobold) de Petite taille (P), loyal mauvais
- **Terrain** Caverne aménagée
- **Classe d'armure** 17 (armure de cuir clouté et bouclier)
@@ -87252,7 +87252,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Forgepiège Kobold
- Source: (LDM p257)(TOB p264)
-- TOB: Kobold Trapsmith
+- Alias: Kobold Trapsmith
- Humanoïde de Petite taille (P), loyal neutre
- **Terrain** Caverne aménagée
- **Classe d'armure** 14 (armure de cuir)
@@ -87293,7 +87293,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Kongamato
- Source: (LDM p258)(TOB p265)
-- TOB: Kongamato
+- Alias: Kongamato
- Bête de Grande taille (G), non-alignée
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 16 (armure naturelle)
@@ -87330,7 +87330,7 @@ Certains combattants n'ont pas accès aux armes runiques et utilisent une rapiè
# Koschei
- Source: (LDM p259)(TOB p266)
-- TOB: Koschei
+- Alias: Koschei
- Fiélon de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 135 (18d8+54)
@@ -87418,7 +87418,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Kot Bayun
- Source: (LDM p261)(TOB p268)
-- TOB: Kot Bayun
+- Alias: Kot Bayun
- Créature monstrueuse de taille Moyenne (M), neutre
- **Terrain** Collines / Vallées, Montagnes, Caverne naturelle
- **Classe d'armure** 15
@@ -87459,7 +87459,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Larve De Krake
- Source: (LDM p262)(TOB p269)
-- TOB: Krake Spawn
+- Alias: Krake Spawn
- Créature monstrueuse de Très Grande taille (TG), neutre mauvaise
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 16 (armure naturelle)
@@ -87508,7 +87508,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Larve Stellaire De Cthulhu
- Source: (LDM p263)(TOB p368)
-- TOB: Star Spawn of Cthulhu
+- Alias: Star Spawn of Cthulhu
- Fiélon de Grande taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 187 (15d10+105)
@@ -87550,7 +87550,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Léchy
- Source: (LDM p264)(TOB p272)
-- TOB: Leshy
+- Alias: Leshy
- Créature monstrueuse de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 14 (armure naturelle)
@@ -87591,7 +87591,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Lente Tempête
- Source: (LDM p265)(TOB p353)
-- TOB: Slow Storm
+- Alias: Slow Storm
- Élémentaire de Très Grande taille (TG), chaotique neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 19
@@ -87643,7 +87643,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Cavalier De Baba Yaga, Base
- Source: (LDM p267)(TOB p30)
-- TOB: Baba Yaga's Horsemen, Base
+- Alias: Baba Yaga's Horsemen, Base
- Fée de taille Moyenne (M), loyal neutre
- **Classe d'armure** 20 (harnois et bouclier)
- **Points de vie** 171 (18d8+90)
@@ -87691,7 +87691,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Liche Canine
- Source: (LDM p268)(TOB p274)
-- TOB: Lich Hound
+- Alias: Lich Hound
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 14
- **Points de vie** 119 (14d8+56)
@@ -87729,7 +87729,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Likho
- Source: (LDM p269)(TOB p275)
-- TOB: Likho
+- Alias: Likho
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Terrain** Bois / Forêt
- **Classe d'armure** 15 (armure naturelle)
@@ -87773,7 +87773,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Limon Des Sarcophages
- Source: (LDM p270)(TOB p336)
-- TOB: Sarcophagus Slime
+- Alias: Sarcophagus Slime
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 11
@@ -87812,7 +87812,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Linceul
- Source: (LDM p271)(TOB p348)
-- TOB: Shroud
+- Alias: Shroud
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 9 (2d8)
@@ -87850,7 +87850,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Lindwurm
- Source: (LDM p272)(TOB p276)
-- TOB: Lindwurm
+- Alias: Lindwurm
- Dragon de Grande taille (G), neutre mauvais
- **Terrain** Arctique / Subarctique, Littoral
- **Classe d'armure** 15
@@ -87892,7 +87892,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Liosalfar
- Source: (LDM p273)(TOB p277)
-- TOB: Liosalfar
+- Alias: Liosalfar
- Élémentaire de Grande taille (G), neutre
- **Classe d'armure** 17
- **Points de vie** 110 (20d10)
@@ -87942,7 +87942,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Locus Élémentaire
- Source: (LDM p274)(TOB p169)
-- TOB: Elemental Locus
+- Alias: Elemental Locus
- Élémentaire de taille Gigantesque (Gig), neutre
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 290 (20d20+80)
@@ -87984,7 +87984,7 @@ Si Koschei meurt, la région qui entoure son antre revient à la normale en 1d10
# Lorelei
- Source: (LDM p275)(TOB p279)
-- TOB: Lorelei
+- Alias: Lorelei
- Fée de taille Moyenne (M), chaotique mauvaise
- **Terrain** Littoral
- **Classe d'armure** 15 (18 avec armure du mage)
@@ -88035,7 +88035,7 @@ dès qu'elle est en contact avec une étendue d'eau.
# Loxoda
- Source: (LDM p276)(TOB p280)
-- TOB: Loxoda
+- Alias: Loxoda
- Créature monstrueuse de Très Grande taille (TG), neutre mauvaise
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13 (armure naturelle)
@@ -88070,7 +88070,7 @@ dès qu'elle est en contact avec une étendue d'eau.
# Lynx Vaporeux
- Source: (LDM p277)(TOB p398)
-- TOB: Vapor Lynx
+- Alias: Vapor Lynx
- Créature monstrueuse de Grande taille (G), chaotique neutre
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
@@ -88109,7 +88109,7 @@ dès qu'elle est en contact avec une étendue d'eau.
# Mahoru
- Source: (LDM p278)(TOB p281)
-- TOB: Mahoru
+- Alias: Mahoru
- Créature monstrueuse de Grande taille (G), non-alignée
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 15 (armure naturelle)
@@ -88157,7 +88157,7 @@ dès qu'elle est en contact avec une étendue d'eau.
# Mallqui
- Source: (LDM p279)(TOB p282)
-- TOB: Mallqui
+- Alias: Mallqui
- Mort-vivant de taille Moyenne (M), loyal neutre
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 14 (armure naturelle)
@@ -88208,7 +88208,7 @@ dès qu'elle est en contact avec une étendue d'eau.
# Malphas (Corbeau De Tempête)
- Source: (LDM p280)(TOB p283)
-- TOB: Malphas (Storm Crow)
+- Alias: Malphas (Storm Crow)
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 16 (armure de cuir clouté)
- **Points de vie** 120 (16d8+48)
@@ -88253,7 +88253,7 @@ dès qu'elle est en contact avec une étendue d'eau.
# Mamura
- Source: (LDM p281)(TOB p284)
-- TOB: Mamura
+- Alias: Mamura
- Aberration (fée) de Petite taille (P), neutre mauvaise.
- **Terrain** Mangrove / Marécage, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure naturelle)
@@ -88296,7 +88296,7 @@ dès qu'elle est en contact avec une étendue d'eau.
# Mangedestin
- Source: (LDM p282)(TOB p180)
-- TOB: Fate Eater
+- Alias: Fate Eater
- Aberration de taille Moyenne (M), neutre
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 182 (28d8+56)
@@ -88341,7 +88341,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Mangepoussière (Yakat-Shi)
- Source: (LDM p283)(TOB p164)
-- TOB: Eater of Dust (Yakat-Shi)
+- Alias: Eater of Dust (Yakat-Shi)
- Aberration de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 114 (12d8+60)
@@ -88385,7 +88385,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Mangerêve
- Source: (LDM p284)(TOB p158)
-- TOB: Dream Eater
+- Alias: Dream Eater
- Fiélon de taille Moyenne (M), loyal mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
@@ -88433,7 +88433,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Manteau Vide
- Source: (LDM p285)(TOB p176)
-- TOB: Empty Cloak
+- Alias: Empty Cloak
- Créature artificielle de taille Moyenne (M), non-alignée
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 45 (10d8)
@@ -88474,7 +88474,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Maraudeur Des Forêts
- Source: (LDM p286)(TOB p205)
-- TOB: Forest Marauder
+- Alias: Forest Marauder
- Géant de Grande taille (G), chaotique mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 114 (12d10 +48)
@@ -88506,7 +88506,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Marchand De Sable
- Source: (LDM p287)(TOB p333)
-- TOB: Sandman
+- Alias: Sandman
- Céleste de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 14
- **Points de vie** 82 (11d8+33)
@@ -88552,7 +88552,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Marcheflèche
- Source: (LDM p288)(TOB p367)
-- TOB: Spire Walker
+- Alias: Spire Walker
- Fée de Très Petite taille (TP), neutre
- **Terrain** Littoral
- **Classe d'armure** 16 (armure naturelle)
@@ -88593,7 +88593,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Mavka
- Source: (LDM p289)(TOB p286)
-- TOB: Mavka
+- Alias: Mavka
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 170 (20d8+80)
@@ -88638,7 +88638,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Abomination Mécanique
- Source: (LDM p290)(TOB p59)
-- TOB: Clockwork Abomination
+- Alias: Clockwork Abomination
- Créature artificielle (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 76(8d10+32)
@@ -88682,7 +88682,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Araignée Tisseuse Mécanique
- Source: (LDM p291)(TOB p66)
-- TOB: Weaving Spider
+- Alias: Weaving Spider
- Créature artificielle de Très Petite taille (TP), non alignée
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 25 (10d4)
@@ -88719,7 +88719,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Chasseur Mécanique
- Source: (LDM p292)(TOB p63)
-- TOB: Clockwork Huntsman
+- Alias: Clockwork Huntsman
- Créature artificielle de taille Moyenne (M), non alignée
- **Classe d'armure** 14
- **Points de vie** 110 (20d8+20)
@@ -88758,7 +88758,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Chien Mécanique
- Source: (LDM p293)(TOB p62)
-- TOB: Clockwork Hound
+- Alias: Clockwork Hound
- Créature artificielle de taille Moyenne (M), non alignée
- **Classe d'armure** 12 (armure naturelle)
- **Points de vie** 71 (11d8+22)
@@ -88797,7 +88797,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Gendarme Mécanique
- Source: (LDM p294)(TOB p65)
-- TOB: Clockwork Watchman
+- Alias: Clockwork Watchman
- Créature artificielle de taille Moyenne (M), non alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 55 (10d8+10)
@@ -88834,7 +88834,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Myrmidon Mécanique
- Source: (LDM p295)(TOB p64)
-- TOB: Clockwork Myrmidon
+- Alias: Clockwork Myrmidon
- Créature artificielle de Grande taille (G), non alignée
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 153 (18d10+54)
@@ -88877,7 +88877,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Scarabée Mécanique
- Source: (LDM p296)(TOB p60)
-- TOB: Clockwork Beetle
+- Alias: Clockwork Beetle
- Créature artificielle de Très Petite taille (TP), non alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 15 (6d4)
@@ -88910,7 +88910,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Mèche Vivante
- Source: (LDM p297)(TOB p278)
-- TOB: Living Wick
+- Alias: Living Wick
- Créature artificielle de Petite taille (P), non-alignée
- **Terrain** Ruines souterraines
- **Classe d'armure** 13 (armure naturelle)
@@ -88947,7 +88947,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Médazur À Défenses
- Source: (LDM p298)(TOB p391)
-- TOB: Tusked Skyfish
+- Alias: Tusked Skyfish
- Aberration de Grande taille (G), loyale bonne
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure naturelle)
@@ -88982,7 +88982,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Mélasse
- Source: (LDM p299)(TOB p387)
-- TOB: Treacle
+- Alias: Treacle
- Vase de Très Petite taille (TP), non alignée
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 22 (4d4+12)
@@ -89014,7 +89014,7 @@ Les effets 3 à 6 sont permanents jusqu'à ce que le personnage réussisse un je
# Mi-Go
- Source: (LDM p300)(TOB p287)
-- TOB: Mi-Go
+- Alias: Mi-Go
- Plante de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 76 (8d8+40)
@@ -89055,7 +89055,7 @@ griffes et qu'il est avantagé lors de son jet d'attaque, ou si elle se trouve d
# Millitaure
- Source: (LDM p301)(TOB p288)
-- TOB: Millitaur
+- Alias: Millitaur
- Créature monstrueuse de Grande taille (G), neutre
- **Terrain** Jungle
- **Classe d'armure** 14 (armure naturelle)
@@ -89086,7 +89086,7 @@ griffes et qu'il est avantagé lors de son jet d'attaque, ou si elle se trouve d
# Mimique Carte
- Source: (LDM p302)(TOB p289)
-- TOB: Map Mimic
+- Alias: Map Mimic
- Créature monstrueuse (métamorphe) de très Petite taille (TP), neutre
- **Terrain** Caverne aménagée, Donjon maçonné, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
@@ -89122,7 +89122,7 @@ griffes et qu'il est avantagé lors de son jet d'attaque, ou si elle se trouve d
# Mimique Des Dunes
- Source: (LDM p303)(TOB p162)
-- TOB: Dune Mimic
+- Alias: Dune Mimic
- Créature monstrueuse (métamorphe) de Très Grande taille (TG), neutre
- **Terrain** Désert chaud
- **Classe d'armure** 13 (armure naturelle)
@@ -89163,7 +89163,7 @@ griffes et qu'il est avantagé lors de son jet d'attaque, ou si elle se trouve d
# Mirageur
- Source: (LDM p304)(TOB p291)
-- TOB: Mirager
+- Alias: Mirager
- Fée (métamorphe) de taille Moyenne (M), neutre mauvaise
- **Terrain** Désert chaud
- **Classe d'armure** 13
@@ -89206,7 +89206,7 @@ griffes et qu'il est avantagé lors de son jet d'attaque, ou si elle se trouve d
# Mngwa
- Source: (LDM p305)(TOB p293)
-- TOB: Mngwa
+- Alias: Mngwa
- Aberration de taille Moyenne (M), neutre mauvaise
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16
@@ -89247,7 +89247,7 @@ griffes et qu'il est avantagé lors de son jet d'attaque, ou si elle se trouve d
# Molosse Nocturne
- Source: (LDM p306)(TOB p251)
-- TOB: Hound of the night
+- Alias: Hound of the night
- Créature monstrueuse de Grande taille (G), non-alignée
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 112 (15d10+30)
@@ -89285,7 +89285,7 @@ dépassent leurs compétences.
# Momie Venimeuse
- Source: (LDM p307)(TOB p299)
-- TOB: Venomous Mummy
+- Alias: Venomous Mummy
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Terrain** Désert chaud, Ruines souterraines
- **Classe d'armure** 11 (armure naturelle)
@@ -89320,7 +89320,7 @@ dépassent leurs compétences.
# Champion Monolithique
- Source: (LDM p308)(TOB p294)
-- TOB: Monolith Champion
+- Alias: Monolith Champion
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 102 (12d10+36)
@@ -89355,7 +89355,7 @@ dépassent leurs compétences.
# Valet Monolithique
- Source: (LDM p309)(TOB p295)
-- TOB: Monolith Footman
+- Alias: Monolith Footman
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 60 (8d10+16)
@@ -89390,7 +89390,7 @@ dépassent leurs compétences.
# Montagne De Cadavres
- Source: (LDM p310)(TOB p69)
-- TOB: Corpse Mound
+- Alias: Corpse Mound
- Mort-vivant de Très Grande taille (TG), neutre mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 207 (18d12+90)
@@ -89431,7 +89431,7 @@ dépassent leurs compétences.
# Morphoï
- Source: (LDM p311)(TOB p297)
-- TOB: Morphoi
+- Alias: Morphoi
- Plante (métamorphe) de taille Moyenne (M), chaotique mauvaise
- **Terrain** Littoral
- **Classe d'armure** 13 (parfois plus avec une armure)
@@ -89467,7 +89467,7 @@ dépassent leurs compétences.
# Mort Follet
- Source: (LDM p312)(TOB p72)
-- TOB: Deathwisp
+- Alias: Deathwisp
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 15
- **Points de vie** 82 (11d8+33)
@@ -89509,7 +89509,7 @@ dépassent leurs compétences.
# Mousse Luminescente Des Cavernes
- Source: (LDM p313)(TOB p53)
-- TOB: Cavelight Moss
+- Alias: Cavelight Moss
- Plante de Grande taille (G), neutre
- **Terrain** Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
@@ -89541,7 +89541,7 @@ dépassent leurs compétences.
# Myling
- Source: (LDM p314)(TOB p301)
-- TOB: Myling
+- Alias: Myling
- Mort-vivant de Petite taille (P), chaotique mauvais
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 45 (10d6+10)
@@ -89576,7 +89576,7 @@ dépassent leurs compétences.
# Naïna
- Source: (LDM p315)(TOB p302)
-- TOB: Naina
+- Alias: Naina
- Dragon (métamorphe) de Grande taille (G), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 231 (22d10+110)
@@ -89635,7 +89635,7 @@ dépassent leurs compétences.
# Nécrophage Masqué
- Source: (LDM p316)(TOB p285)
-- TOB: Mask Wight
+- Alias: Mask Wight
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 207 (18d8 +126)
@@ -89682,7 +89682,7 @@ dépassent leurs compétences.
# Nécrophore
- Source: (LDM p317)(TOB p52)
-- TOB: Carrion Beetle
+- Alias: Carrion Beetle
- Bête de Grande taille (G), neutre
- **Terrain** Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
@@ -89715,7 +89715,7 @@ dépassent leurs compétences.
# Nichny
- Source: (LDM p318)(TOB p303)
-- TOB: Nichny
+- Alias: Nichny
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 112 (15d8+45)
@@ -89765,7 +89765,7 @@ dépassent leurs compétences.
# Nkosi
- Source: (LDM p319)(TOB p306)
-- TOB: Nkosi
+- Alias: Nkosi
- Humanoïde de taille Moyenne (métamorphe, nkosi) (M), loyal neutre
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure de cuir clouté)
@@ -89802,7 +89802,7 @@ dépassent leurs compétences.
# Chef De Meute Nkosi
- Source: (LDM p319)(TOB p306)
-- TOB: Nkosi Pridelord
+- Alias: Nkosi Pridelord
- Humanoïde de taille Moyenne (métamorphe, nkosi) (M), loyal neutre
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure de cuir clouté)
@@ -89845,7 +89845,7 @@ dépassent leurs compétences.
# Autruche de guerre
- Source: (LDM p320)(TOB p307)
-- TOB: War Ostrich
+- Alias: War Ostrich
- Bête de Grande taille (G), non alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11
@@ -89872,7 +89872,7 @@ dépassent leurs compétences.
# Noctegarm
- Source: (LDM p322)(TOB p305)
-- TOB: Nightgarm
+- Alias: Nightgarm
- Créature monstrueuse de Grande taille (G), chaotique mauvaise
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 114 (12d10+48)
@@ -89912,7 +89912,7 @@ dépassent leurs compétences.
# Factice noctegarm
- Source: (LDM p322)(TOB p305)
-- TOB: Nightgarm Falseman
+- Alias: Nightgarm Falseman
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Vulnérabilité aux dégâts** radiants; aux armes en argent
@@ -89927,7 +89927,7 @@ dépassent leurs compétences.
# Noctin
- Source: (LDM p323)(TOB p308)
-- TOB: Noctiny
+- Alias: Noctiny
- Humanoïde (noctin) de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 13 (armure de cuir clouté)
- **Points de vie** 52 (8d8+16)
@@ -89967,7 +89967,7 @@ dépassent leurs compétences.
# Nuée D'Esprits Lupins
- Source: (LDM p324)(TOB p377)
-- TOB: Wolf Spirit Swarm
+- Alias: Wolf Spirit Swarm
- Nuée de Grande taille de morts-vivants de taille Moyenne (G), neutre
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure naturelle)
@@ -90006,7 +90006,7 @@ dépassent leurs compétences.
# Nuée D'Yeux
- Source: (LDM p325)(TOB p309)
-- TOB: Oculo Swarm
+- Alias: Oculo Swarm
- Nuée de Grande taille d'aberrations de taille Minuscule (G), neutre
- **Classe d'armure** 15
- **Points de vie** 110 (13d10+39)
@@ -90038,7 +90038,7 @@ dépassent leurs compétences.
# Nuée De Danseflammes
- Source: (LDM p326)(TOB p373)
-- TOB: Fire Dancer Swarm
+- Alias: Fire Dancer Swarm
- Nuée de taille Moyenne d'élémentaires de taille Très Petite (TP), neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 15
@@ -90075,7 +90075,7 @@ dépassent leurs compétences.
# Nuée de Papillons de Mort
- Source: (LDM p327)(TOB p71)
-- TOB: Death Butterfly Swarm
+- Alias: Death Butterfly Swarm
- Nuée de Grande taille de bêtes de Très Petite taille (TP), chaotique mauvaise
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
@@ -90111,7 +90111,7 @@ dépassent leurs compétences.
# Grande Nuée de Papillons de Mort
- Source: (LDM p327)(TOB p71)
-- TOB: Greater Death Butterfly Swarm
+- Alias: Greater Death Butterfly Swarm
- Nuée de Très Grande taille de bêtes de Très Petite taille (TP), chaotique mauvaise
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
@@ -90147,7 +90147,7 @@ dépassent leurs compétences.
# Nuée De Scarabées Manavores
- Source: (LDM p328)(TOB p374)
-- TOB: Manabane Scarab Swarm
+- Alias: Manabane Scarab Swarm
- Nuée de taille Moyenne de bêtes de Très Petite taille (TP), non-alignée
- **Terrain** Désert chaud
- **Classe d'armure** 15 (armure naturelle)
@@ -90184,7 +90184,7 @@ dépassent leurs compétences.
# Nuée De Scarabées Mécaniques
- Source: (LDM p329)(TOB p61)
-- TOB: Clockwork Beetle Swarm
+- Alias: Clockwork Beetle Swarm
- Grande nuée de créatures artificielles de Très Petite taille (TP), neutre
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 52 (8d10+8)
@@ -90210,7 +90210,7 @@ dépassent leurs compétences.
# Nuée De Scarabées Prismatiques
- Source: (LDM p330)(TOB p375)
-- TOB: Prismatic Beetle Swarm
+- Alias: Prismatic Beetle Swarm
- Nuée de taille Moyenne de bêtes de Très Petite taille (TP), non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 13
@@ -90244,7 +90244,7 @@ dépassent leurs compétences.
# Nuée De Sluaghs
- Source: (LDM p331)(TOB p376)
-- TOB: Sluagh Swarm
+- Alias: Sluagh Swarm
- Nuée de taille Moyenne de fées de taille Très Petite (TP), chaotique mauvaise
- **Classe d'armure** 13
- **Points de vie** 54 (12d8)
@@ -90279,7 +90279,7 @@ dépassent leurs compétences.
# Nuée Osseuse
- Source: (LDM p332)(TOB p41)
-- TOB: Bone Swarm
+- Alias: Bone Swarm
- Nuée de Grande taille de morts-vivants de Très Petite taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 198 (36d10)
@@ -90318,7 +90318,7 @@ dépassent leurs compétences.
# Oeil D'Émeraude
- Source: (LDM p333)(TOB p175)
-- TOB: Emerald Eye
+- Alias: Emerald Eye
- Créature artificielle de taille Très Petite (TP), chaotique mauvais
- **Classe d'armure** 14
- **Points de vie** 54 (12d4+24)
@@ -90358,7 +90358,7 @@ dépassent leurs compétences.
# Oiseau De Feu
- Source: (LDM p334)(TOB p201)
-- TOB: Firebird
+- Alias: Firebird
- Céleste de Petite taille (P), neutre bon
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 99 (18d6+36)
@@ -90404,7 +90404,7 @@ dépassent leurs compétences.
# Ostinato
- Source: (LDM p335)(TOB p335)
-- TOB: Ostinato
+- Alias: Ostinato
- Aberration de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 15
- **Points de vie** 39 (6d8+12)
@@ -90446,7 +90446,7 @@ dépassent leurs compétences.
# Ovasis
- Source: (LDM p336)(TOB p310)
-- TOB: Oozasis
+- Alias: Oozasis
- Vase de taille Gigantesque (Gig), non alignée
- **Terrain** Désert chaud, Mangrove / Marécage
- **Classe d'armure** 7
@@ -90490,7 +90490,7 @@ dépassent leurs compétences.
# Pavenuée
- Source: (LDM p337)(TOB p68)
-- TOB: Cobbleswarm
+- Alias: Cobbleswarm
- Nuée de Grande taille composée de bêtes de Très Petite taille (G), non alignée
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 36 (8d8)
@@ -90526,7 +90526,7 @@ dépassent leurs compétences.
# Piège Caustique
- Source: (LDM p338)(TOB p296)
-- TOB: Mordant Snare
+- Alias: Mordant Snare
- Aberration de taille Gigantesque (Gig), chaotique mauvaise
- **Terrain** Ruines souterraines
- **Classe d'armure** 18 (armure naturelle)
@@ -90570,7 +90570,7 @@ dépassent leurs compétences.
# Pombero
- Source: (LDM p339)(TOB p313)
-- TOB: Pombero
+- Alias: Pombero
- Fée de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 15 (armure naturelle)
@@ -90611,7 +90611,7 @@ dépassent leurs compétences.
# Pourceau Des Failles
- Source: (LDM p340)(TOB p326)
-- TOB: Rift Swine
+- Alias: Rift Swine
- Aberration de Grande taille (G), chaotique neutre
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 110 (13d10+39)
@@ -90652,7 +90652,7 @@ dépassent leurs compétences.
# Primate Blanc
- Source: (LDM p341)(TOB p408)
-- TOB: White Ape
+- Alias: White Ape
- Créature monstrueuse de Grande taille (G), neutre
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure naturelle)
@@ -90687,7 +90687,7 @@ dépassent leurs compétences.
# Profanateur Maudit
- Source: (LDM p342)(TOB p12)
-- TOB: Accursed Defiler
+- Alias: Accursed Defiler
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 12
@@ -90725,7 +90725,7 @@ dépassent leurs compétences.
# Profond
- Source: (LDM p343)(TOB p73)
-- TOB: Deep One
+- Alias: Deep One
- Humanoïde de taille Moyenne (M), chaotique mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
@@ -90762,7 +90762,7 @@ dépassent leurs compétences.
# Archimandrite Profond
- Source: (LDM p343)(TOB p74)
-- TOB: Deep One Archimandrite
+- Alias: Deep One Archimandrite
- Humanoïde de Grande taille (G), chaotique mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 15 (armure naturelle)
@@ -90814,7 +90814,7 @@ dépassent leurs compétences.
# Prêtre Profond Hybride
- Source: (LDM p344)(TOB p73)
-- TOB: Deep One Hybrid Priest
+- Alias: Deep One Hybrid Priest
- Humanoïde de taille Moyenne (M), chaotique mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 14 (armure naturelle)
@@ -90862,7 +90862,7 @@ dépassent leurs compétences.
# Qwyllion
- Source: (LDM p345)(TOB p316)
-- TOB: Qwyllion
+- Alias: Qwyllion
- Aberration de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 110 (13d8+52)
@@ -90902,7 +90902,7 @@ dépassent leurs compétences.
# Ramag
- Source: (LDM p346)(TOB p317)
-- TOB: Ramag
+- Alias: Ramag
- Humanoïde (ramag) de taille Moyenne (M), neutre
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13 (armure de cuir)
@@ -90933,7 +90933,7 @@ dépassent leurs compétences.
# Ratatosk
- Source: (LDM p347)(TOB p319)
-- TOB: Ratatosk
+- Alias: Ratatosk
- Céleste de Très Petite taille (TP), chaotique neutre
- **Classe d'armure** 14
- **Points de vie** 42 (12d4+12)
@@ -90977,7 +90977,7 @@ dépassent leurs compétences.
# Ravageur Trollien
- Source: (LDM p348)(TOB p390)
-- TOB: Trollkin Reaver
+- Alias: Trollkin Reaver
- Humanoïde (trollien) de taille Moyenne (M), neutre
- **Classe d'armure** 14 (armure de peau)
- **Points de vie** 82 (11d8+33)
@@ -91018,7 +91018,7 @@ dépassent leurs compétences.
# Ravenala
- Source: (LDM p349)(TOB p321)
-- TOB: Ravenala
+- Alias: Ravenala
- Plante de Grande taille (G), non alignée
- **Terrain** Jungle
- **Classe d'armure** 15 (armure naturelle)
@@ -91064,7 +91064,7 @@ dépassent leurs compétences.
# Rôdeur Des Quais
- Source: (LDM p350)(TOB p407)
-- TOB: Wharfling
+- Alias: Wharfling
- Bête de Très Petite taille (TP), non alignée
- **Classe d'armure** 13
- **Points de vie** 6 (4d4 - 4)
@@ -91092,7 +91092,7 @@ dépassent leurs compétences.
# Nuée De Rôdeurs Des Quais
- Source: (LDM p350)(TOB p407)
-- TOB: Wharfling Swarm
+- Alias: Wharfling Swarm
- Nuée de Grande taille de bêtes de Très Petite taille (TP), non alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 63 (14d10 - 14)
@@ -91126,7 +91126,7 @@ dépassent leurs compétences.
# Rôdeur Moussu
- Source: (LDM p351)(TOB p298)
-- TOB: Moss Lurker
+- Alias: Moss Lurker
- Humanoïde de Petite taille (P), chaotique neutre
- **Terrain** Bois / Forêt, Littoral, Mangrove / Marécage, Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
@@ -91170,7 +91170,7 @@ dépassent leurs compétences.
# Roi Des Rats
- Source: (LDM p352)(TOB 318)
-- TOB: Rat King
+- Alias: Rat King
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
@@ -91212,7 +91212,7 @@ dépassent leurs compétences.
# Roussalka
- Source: (LDM p353)(TOB p331)
-- TOB: Rusalka
+- Alias: Rusalka
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Terrain** Littoral
- **Classe d'armure** 14 (armure naturelle)
@@ -91252,7 +91252,7 @@ dépassent leurs compétences.
# Saccageur Relevé
- Source: (LDM p354)(TOB p328)
-- TOB: Risen Reaver
+- Alias: Risen Reaver
- Mort-vivant de Grande taille (G), chaotique mauvais
- **Classe d'armure** 15 (armure de cuir clouté)
- **Points de vie** 168 (16d10+80)
@@ -91289,7 +91289,7 @@ dépassent leurs compétences.
# Sarcoptère
- Source: (LDM p355)(TOB p203)
-- TOB: Flutterflesh
+- Alias: Flutterflesh
- Mort-vivant de Grande taille (G), chaotique mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 187 (22d10+66)
@@ -91334,7 +91334,7 @@ dépassent leurs compétences.
# Scheznyki
- Source: (LDM p356)(TOB p339)
-- TOB: Scheznyki
+- Alias: Scheznyki
- Fée de Petite taille (P), chaotique mauvaise
- **Terrain** Collines / Vallées, Ruines souterraines
- **Classe d'armure** 16 (armure naturelle)
@@ -91378,7 +91378,7 @@ dépassent leurs compétences.
# Scorpion Nocturne
- Source: (LDM p357)(TOB p340)
-- TOB: Night Scorpion
+- Alias: Night Scorpion
- Bête de Grande taille (G), non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane, Caverne aménagée, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
@@ -91408,7 +91408,7 @@ dépassent leurs compétences.
# Scorpion Stygien À Large Queue
- Source: (LDM p357)(TOB p340)
-- TOB: Stygian Fat-Tailed Scorpion
+- Alias: Stygian Fat-Tailed Scorpion
- Bête de Très Petite taille (TP), non-alignée
- **Terrain** Désert chaud, Caverne aménagée
- **Classe d'armure** 14 (armure naturelle)
@@ -91438,7 +91438,7 @@ dépassent leurs compétences.
# Seigneur Des Lianes
- Source: (LDM p358)(TOB p402)
-- TOB: Vine Lord
+- Alias: Vine Lord
- Plante de taille Moyenne (M), loyale neutre
- **Terrain** Jungle
- **Classe d'armure** 16 (armure naturelle)
@@ -91483,7 +91483,7 @@ dépassent leurs compétences.
# Marionnette Des Lianes
- Source: (LDM p359)(TOB p403)
-- TOB: Tendril Puppet
+- Alias: Tendril Puppet
- Plante de taille Moyenne (M), loyale neutre
- **Terrain** Jungle
- **Classe d'armure** 13 (armure de cuir clouté)
@@ -91521,7 +91521,7 @@ dépassent leurs compétences.
# Sélang
- Source: (LDM p360)(TOB p341)
-- TOB: Selang
+- Alias: Selang
- Fée de taille Moyenne (M), chaotique mauvaise
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 76 (9d8+36)
@@ -91564,7 +91564,7 @@ dépassent leurs compétences.
# Vipère Du Marais
- Source: (LDM p361)(TOB p354)
-- TOB: Swamp Adder
+- Alias: Swamp Adder
- Bête de Petite taille (P), non-alignée
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 13
@@ -91592,7 +91592,7 @@ dépassent leurs compétences.
# Vipère De Zanskaran
- Source: (LDM p361)(TOB p354)
-- TOB: Zanskaran Viper
+- Alias: Zanskaran Viper
- Bête de Grande taille (G), non-alignée
- **Terrain** Collines / Vallées
- **Classe d'armure** 14 (armure naturelle)
@@ -91618,7 +91618,7 @@ dépassent leurs compétences.
# Serpopard
- Source: (LDM p362)(TOB p342)
-- TOB: Serpopard
+- Alias: Serpopard
- Bête de Grande taille (G), non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
@@ -91655,7 +91655,7 @@ dépassent leurs compétences.
# Shabti
- Source: (LDM p363)(TOB p343)
-- TOB: Shabti
+- Alias: Shabti
- Créature artificielle de taille Moyenne (M), non-alignée
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 102 (12d8+48)
@@ -91694,7 +91694,7 @@ dépassent leurs compétences.
# Shadhavar
- Source: (LDM p364)(TOB p344)
-- TOB: Shadhavar
+- Alias: Shadhavar
- Créature monstrueuse de Grande taille (G), neutre
- **Classe d'armure** 14 (naturelle)
- **Points de vie** 97 (13d10+26)
@@ -91736,7 +91736,7 @@ dépassent leurs compétences.
# Shoggoth
- Source: (LDM p365)(TOB p347)
-- TOB: Shoggoth
+- Alias: Shoggoth
- Aberration de Très Grande taille (TG), chaotique neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 387 (25d12+225)
@@ -91779,7 +91779,7 @@ dépassent leurs compétences.
# Silhouette De Sable
- Source: (LDM p366)(TOB p332)
-- TOB: Sand Silhouette
+- Alias: Sand Silhouette
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 15 (armure naturelle)
@@ -91822,7 +91822,7 @@ dépassent leurs compétences.
# Sorcelueur
- Source: (LDM p367)(TOB p409)
-- TOB: Witchlight
+- Alias: Witchlight
- Créature artificielle de Très Petite taille (TP), neutre
- **Classe d'armure** 14
- **Points de vie** 10 (4d4)
@@ -91858,7 +91858,7 @@ dépassent leurs compétences.
# Sorcière De L'Écheveau
- Source: (LDM p368)(TOB p349)
-- TOB: Skein Witch
+- Alias: Skein Witch
- Céleste de taille Moyenne (M), neutre
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 162 (25d8+50)
@@ -91901,7 +91901,7 @@ dépassent leurs compétences.
# Gypsosphinx
- Source: (LDM p369)(TOB p359)
-- TOB: Gypsosphinx
+- Alias: Gypsosphinx
- Créature monstrueuse de Grande taille (G), neutre mauvaise
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
@@ -91967,7 +91967,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Squelette De Troll Des Lianes
- Source: (LDM p371)(TOB p351)
-- TOB: Vine Troll Skeleton
+- Alias: Vine Troll Skeleton
- Plante de Grande taille (G), non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 16 (armure naturelle)
@@ -92003,7 +92003,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Squelette En Mâchoires De Requin
- Source: (LDM p372)(TOB p350)
-- TOB: Sharkjaw Skeleton
+- Alias: Sharkjaw Skeleton
- Mort-vivant de Grande taille (G), loyal mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 13 (armure naturelle)
@@ -92037,7 +92037,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Stryx
- Source: (LDM p373)(TOB p369)
-- TOB: Stryx
+- Alias: Stryx
- Créature monstrueuse de Très Petite taille (TP), neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 13
@@ -92078,7 +92078,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Stuhac
- Source: (LDM p374)(TOB p370)
-- TOB: Stuhac
+- Alias: Stuhac
- Fiélon de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 190 (20d8+100)
@@ -92120,7 +92120,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Subek
- Source: (LDM p375)(TOB p371)
-- TOB: Subek
+- Alias: Subek
- Humanoïde de Grande taille (subek) (G), loyal neutre
- **Terrain** Littoral, Mangrove / Marécage
- **Classe d'armure** 17 (armure naturelle)
@@ -92159,7 +92159,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Suffragan Coeur-De-Vers
- Source: (LDM p376)(TOB p410)
-- TOB: Wormhearted Suffragan
+- Alias: Wormhearted Suffragan
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 12
- **Points de vie** 97 (13d8+39)
@@ -92199,7 +92199,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Sutureuse
- Source: (LDM p377)(TOB p372)
-- TOB: Suturefly
+- Alias: Suturefly
- Bête de Très Petite taille (TP), non-alignée
- **Terrain** Bois / Forêt, Mangrove / Marécage
- **Classe d'armure** 14
@@ -92230,7 +92230,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Sylvanien Pleureur
- Source: (LDM p378)(TOB p388)
-- TOB: Weeping Treant
+- Alias: Weeping Treant
- Plante de Très Grande taille (TG), neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 17 (armure naturelle)
@@ -92268,7 +92268,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Templier Mécaforgé
- Source: (LDM p379)(TOB p210)
-- TOB: Gearforged Templar
+- Alias: Gearforged Templar
- Humanoïde de taille Moyenne (mécaforgé) (M), loyal neutre
- **Classe d'armure** 18 (harnois)
- **Points de vie** 71 (11d8+22)
@@ -92311,7 +92311,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Thuellai
- Source: (LDM p380)(TOB p379)
-- TOB: Thuellai
+- Alias: Thuellai
- Élémentaire de Très Grande taille (TG), chaotique neutre
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 17
@@ -92364,7 +92364,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Titan Antique
- Source: (LDM p381)(TOB p380)
-- TOB: Ancient Titan
+- Alias: Ancient Titan
- Céleste de taille Gigantesque (titan) (Gig), neutre bon
- **Classe d'armure** 15 (cuirasse)
- **Points de vie** 198 (12d20+72)
@@ -92406,7 +92406,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Titan Dégénéré
- Source: (LDM p382)(TOB p381)
-- TOB: Degenerate Titan
+- Alias: Degenerate Titan
- Géant de Très Grande taille (TG), chaotique mauvais
- **Terrain** Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 12 (manteau renforcé rudimentaire)
@@ -92443,7 +92443,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Titanoboa
- Source: (LDM p383)(TOB p382)
-- TOB: Titanoboa
+- Alias: Titanoboa
- Bête de taille Gigantesque (Gig), non alignée
- **Terrain** Jungle
- **Classe d'armure** 14 (armure naturelle)
@@ -92479,7 +92479,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Tophet
- Source: (LDM p384)(TOB p383)
-- TOB: Tophet
+- Alias: Tophet
- Créature artificielle de Très Grande taille (TG), neutre mauvaise
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 184 (16d12+80)
@@ -92517,7 +92517,7 @@ Le sphinx peut faire trois actions légendaires, parmi celles proposées ci-dess
# Reine Du Nid Tosculie
- Source: (LDM p386)(TOB p385)
-- TOB: Tosculi Hive-Queen
+- Alias: Tosculi Hive-Queen
- Créature monstrueuse de Grande taille (G), loyale mauvaise
- **Terrain** Collines / Vallées, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 17
@@ -92596,7 +92596,7 @@ SI la reine du nid tosculie meurt, le bourdonnement disparaît de suite et les b
# Archer-Pillard D'Élite Tosculi
- Source: (LDM p387)(TOB p386)
-- TOB: Tosculi Elite Bow Raider
+- Alias: Tosculi Elite Bow Raider
- Humanoïde (tosculi) de taille Moyenne (M), loyal mauvais
- **Terrain** Collines / Vallées, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure naturelle)
@@ -92635,7 +92635,7 @@ SI la reine du nid tosculie meurt, le bourdonnement disparaît de suite et les b
# Combattant Tosculi
- Source: (LDM p387)(TOB p386)
-- TOB: Tosculi Warrior
+- Alias: Tosculi Warrior
- Créature monstrueuse de Petite taille (P), loyale mauvaise
- **Terrain** Collines / Vallées, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15
@@ -92671,7 +92671,7 @@ SI la reine du nid tosculie meurt, le bourdonnement disparaît de suite et les b
# Faux-Bourdon Tosculi
- Source: (LDM p387)(TOB p386)
-- TOB: Tosculi Drone
+- Alias: Tosculi Drone
- Créature monstrueuse de Petite taille (P), loyale mauvaise
- **Terrain** Collines / Vallées, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
@@ -92703,7 +92703,7 @@ SI la reine du nid tosculie meurt, le bourdonnement disparaît de suite et les b
# Troll Lacustre
- Source: (LDM p388)(TOB p389)
-- TOB: Lake Troll
+- Alias: Lake Troll
- Géant de Grande taille (G), chaotique mauvais
- **Terrain** Littoral, Mangrove / Marécage
- **Classe d'armure** 15 (armure naturelle)
@@ -92740,7 +92740,7 @@ SI la reine du nid tosculie meurt, le bourdonnement disparaît de suite et les b
# Ukavac
- Source: (LDM p389)(TOB p47)
-- TOB: Bukavac
+- Alias: Bukavac
- Créature monstrueuse de Grande taille (G), neutre mauvaise
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 16 (armure naturelle)
@@ -92781,7 +92781,7 @@ SI la reine du nid tosculie meurt, le bourdonnement disparaît de suite et les b
# Uraeus
- Source: (LDM p390)(TOB p392)
-- TOB: Uraeus
+- Alias: Uraeus
- Céleste de Très Petite taille (TP), loyal neutre
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 40 (9d4+18)
@@ -92820,7 +92820,7 @@ SI la reine du nid tosculie meurt, le bourdonnement disparaît de suite et les b
# Urochar (Guetteur Étrangleur)
- Source: (LDM p391)(TOB p393)
-- TOB: Urochar (Strangling Watcher)
+- Alias: Urochar (Strangling Watcher)
- Aberration de Très Grande taille (TG), chaotique mauvaise
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 19 (armure naturelle)
@@ -92879,7 +92879,7 @@ L'urochar peut faire trois actions légendaires, parmi celles proposées ci-dess
# Ushabti
- Source: (LDM p392)(TOB p394)
-- TOB: Ushabti
+- Alias: Ushabti
- Créature artificielle de Grande taille (G), non alignée
- **Terrain** Ruines souterraines
- **Classe d'armure** 18 (armure naturelle)
@@ -92923,7 +92923,7 @@ L'urochar peut faire trois actions légendaires, parmi celles proposées ci-dess
# Vaettir
- Source: (LDM p393)(TOP p395)
-- TOB: Vaettir
+- Alias: Vaettir
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 120 (16d8+48)
@@ -92973,7 +92973,7 @@ L'urochar peut faire trois actions légendaires, parmi celles proposées ci-dess
# Vagabond Éonique
- Source: (LDM p394)(TOB p177)
-- TOB: Eonic Drifter
+- Alias: Eonic Drifter
- Humanoïde (humain) de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 13 (armure de cuir)
- **Points de vie** 65 (10d8+20)
@@ -93005,7 +93005,7 @@ L'urochar peut faire trois actions légendaires, parmi celles proposées ci-dess
# Valkyrie
- Source: (LDM p395)(TOB p396)
-- TOB: Valkyrie
+- Alias: Valkyrie
- Céleste de taille Moyenne (M), neutre
- **Classe d'armure** 16 (cotte de mailles) ou 18 (cotte de mailles et bouclier)
- **Points de vie** 112 (15d8+45)
@@ -93063,7 +93063,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Vampire Umbral
- Source: (LDM p396)(TOB p397)
-- TOB: Umbral Vampire
+- Alias: Umbral Vampire
- Fiélon de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 14
- **Points de vie** 84 (13d8+26)
@@ -93107,7 +93107,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Vase Corruptrice
- Source: (LDM p397)(TOB p311)
-- TOB: Corrupting Ooze
+- Alias: Corrupting Ooze
- Vase de Grande taille (G), neutre mauvaise
- **Classe d'armure** 12 (armure naturelle)
- **Points de vie** 115 (10d10+60)
@@ -93140,7 +93140,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Vent Putréfacteur
- Source: (LDM p398)(TOB p330)
-- TOB: Rotting Wind
+- Alias: Rotting Wind
- Mort-vivant de Grande taille (G), neutre mauvais
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15
@@ -93175,7 +93175,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Ver Givré Adulte
- Source: (LDM p399)(TOB p327)
-- TOB: Adult Rime Worm
+- Alias: Adult Rime Worm
- Élémentaire de Grande taille (G), neutre
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 15 (armure naturelle)
@@ -93213,7 +93213,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Larve de Ver Givré
- Source: (LDM p399)(TOB p327)
-- TOB: Rime Worm Grub
+- Alias: Rime Worm Grub
- Élémentaire de taille Moyenne (M), neutre
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 13 (armure naturelle)
@@ -93249,7 +93249,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Ver Pêcheur
- Source: (LDM p400)(TOB p22)
-- TOB: Angler Worm
+- Alias: Angler Worm
- Créature monstrueuse de Très Grande taille (TG), non alignée
- **Terrain** Caverne naturelle
- **Classe d'armure** 14 (armure naturelle)
@@ -93289,7 +93289,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Ver Sathaq
- Source: (LDM p401)(TOB p337)
-- TOB: Sathaq Worm
+- Alias: Sathaq Worm
- Élémentaire de Très Grande taille (TG), neutre mauvais
- **Terrain** Désert chaud, Mangrove / Marécage, Plans élémentaires, Caverne naturelle
- **Classe d'armure** 16 (armure naturelle)
@@ -93326,7 +93326,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Verminhantée
- Source: (LDM p402)(TOB p352)
-- TOB: Skitterhaunt
+- Alias: Skitterhaunt
- Vase de Grande taille (G), non-alignée
- **Terrain** Désert chaud, Caverne naturelle
- **Classe d'armure** 14 (armure naturelle)
@@ -93364,7 +93364,7 @@ La valkyrie peut faire trois actions légendaires, parmi celles proposées ci-de
# Vésiculose
- Source: (LDM p403)(TOB p399)
-- TOB: Vesiculosa
+- Alias: Vesiculosa
- Plante de taille Gigantesque (Gig), non alignée
- **Terrain** Désert chaud
- **Classe d'armure** 15 (armure naturelle)
@@ -93408,7 +93408,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Vidien
- Source: (LDM p404)(TOB p404)
-- TOB: Voidling
+- Alias: Voidling
- Aberration de Grande taille (G), chaotique mauvaise
- **Classe d'armure** 16
- **Points de vie** 110 (20d10)
@@ -93455,7 +93455,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Vif Ravageur Gnoll
- Source: (LDM p405)(TOB p230)
-- TOB: Gnoll Havoc Runner
+- Alias: Gnoll Havoc Runner
- Humanoïde (gnoll) de taille Moyenne (M), chaotique mauvais
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 15 (chemise de mailles)
@@ -93492,7 +93492,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Vil Barbier
- Source: (LDM p406)(TOB p401)
-- TOB: Vile Barber
+- Alias: Vile Barber
- Fée de Petite taille (P), chaotique mauvaise
- **Classe d'armure** 15 (armure de cuir)
- **Points de vie** 28 (8d6)
@@ -93536,7 +93536,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Vila
- Source: (LDM p407)(TOB p400)
-- TOB: Vila
+- Alias: Vila
- Fée de taille Moyenne (M), loyale neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 15
@@ -93585,7 +93585,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Voile-De-Givre
- Source: (LDM p408)(TOB p207)
-- TOB: Frostveil
+- Alias: Frostveil
- Plante de taille Moyenne (M), non-alignée
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 16
@@ -93628,7 +93628,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Wampus Féline
- Source: (LDM p409)(TOB p405)
-- TOB: Wampus Cat
+- Alias: Wampus Cat
- Créature monstrueuse de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 14
@@ -93667,7 +93667,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Wyrm Des Sables
- Source: (LDM p410)(TOB p334)
-- TOB: Sandwyrm
+- Alias: Sandwyrm
- Dragon de Grande taille (G), non-aligné
- **Terrain** Désert chaud
- **Classe d'armure** 15 (armure naturelle)
@@ -93701,7 +93701,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Xanka
- Source: (LDM p411)(TOB p411)
-- TOB: Xanka
+- Alias: Xanka
- Créature artificielle de Petite taille (P), non alignée
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 18 (4d6+4)
@@ -93731,7 +93731,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Xhkarsh
- Source: (LDM p412)(TOB p412)
-- TOB: Xhkarsh
+- Alias: Xhkarsh
- Aberration de Grande taille (G), neutre mauvaise
- **Classe d'armure** 19 (armure naturelle et mystique)
- **Points de vie** 133 (14d10 + 56)
@@ -93766,7 +93766,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Ychen Bannog
- Source: (LDM p413)(TOB p413)
-- TOB: Ychen Bannog
+- Alias: Ychen Bannog
- Bête de taille Gigantesque (Gig), non alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 17 (armure naturelle)
@@ -93806,7 +93806,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Zaratan
- Source: (LDM p414)(TOB p414)
-- TOB: Zaratan
+- Alias: Zaratan
- Créature monstrueuse (titan) de taille Gigantesque (Gig), non alignée
- **Terrain** Mer / Océan
- **Classe d'armure** 25 (armure naturelle)
@@ -93858,7 +93858,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Zimwi
- Source: (LDM p415)(TOB p415)
-- TOB: Zimwi
+- Alias: Zimwi
- Géant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 76 (9d8+36)
@@ -93888,7 +93888,7 @@ du sort éponyme, mais conservent leurs propriétés pendant 1semaine après leu
# Zmey
- Source: (LDM p416)(TOB p416)
-- TOB: Zmey
+- Alias: Zmey
- Dragon de Très Grande taille (TG), chaotique mauvais
- **Terrain** Bois / Forêt, Caverne sous-marine
- **Classe d'armure** 18 (armure naturelle)
@@ -93948,7 +93948,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Bébécéphale De Zmey
- Source: (LDM p416)(TOB p416)
-- TOB: Zmey Headling
+- Alias: Zmey Headling
- Dragon de taille Moyenne (M), chaotique mauvais
- **Terrain** Bois / Forêt, Mangrove / Marécage
- **Classe d'armure** 16 (armure naturelle)
@@ -93986,7 +93986,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Archer Vétéran Elfique
- Source: (LDM p418)(TOB p422)
-- TOB: Elvish Veteran Archer
+- Alias: Elvish Veteran Archer
- Humanoïde (elfe) de taille Moyenne (M), chaotique bon ou chaotique neutre
- **Classe d'armure** 15 (armure de cuir clouté)
- **Points de vie** 77 (14d8 + 14)
@@ -94030,7 +94030,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Capitaine Du Guet
- Source: (LDM p418)(TOB p419)
-- TOB: City Watch Captain
+- Alias: City Watch Captain
- Humanoïde de taille Moyenne (n'importe quelle race) (M), loyal neutre
- **Classe d'armure** 17 (armure d'écailles)
- **Points de vie** 91 (14d8 + 28)
@@ -94068,7 +94068,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Chef Du Culte De L'Ordre D'Émeraude
- Source: (LDM p419)(TOB p421)
-- TOB: Emerald Order Cult Leader
+- Alias: Emerald Order Cult Leader
- Humanoïde de taille Moyenne (n'importe quelle race) (M), loyal neutre
- **Classe d'armure** 14 (cuirasse)
- **Points de vie** 117 (18d8 + 36)
@@ -94124,7 +94124,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Chef Ogre Corrompu
- Source: (LDM p420)(TOB p423)
-- TOB: Ogre Chieftain, Corrupted
+- Alias: Ogre Chieftain, Corrupted
- Géant de Grande taille (G), chaotique mauvais
- **Terrain** Collines / Vallées, Ruines extérieures
- **Classe d'armure** 17 (clibanion)
@@ -94171,7 +94171,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Chevalier Fantôme
- Source: (LDM p421)(TOB p423)
-- TOB: Ghost Knight
+- Alias: Ghost Knight
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 17 (demi-plate)
- **Points de vie** 97 (15d8 + 30)
@@ -94216,7 +94216,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Commandant Des Chevaliers Noirs
- Source: (LDM p422)(TOB p418)
-- TOB: Black Knight Commander
+- Alias: Black Knight Commander
- Humanoïde de taille Moyenne (n'importe quelle race) (M), loyal mauvais
- **Classe d'armure** 18 (harnois)
- **Points de vie** 78 (12d8 + 24)
@@ -94255,7 +94255,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Fanatique Du Scorpion
- Source: (LDM p422)(TOB p425)
-- TOB: Scorpion Cultist
+- Alias: Scorpion Cultist
- Humanoïde de taille Moyenne (n'importe quelle race) (M), neutre
- **Classe d'armure** 13 (armure de cuir)
- **Points de vie** 19 (3d8 + 6)
@@ -94288,7 +94288,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Mage Des Anneaux Nains
- Source: (LDM p423)(TOB p420)
-- TOB: Dwarven Ringmage
+- Alias: Dwarven Ringmage
- Humanoïde de taille Moyenne (nain) (M), au choix
- **Classe d'armure** 16 (cuirasse)
- **Points de vie** 82 (15d8 + 15)
@@ -94338,7 +94338,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Nain Loup Ravageur
- Source: (LDM p424)(TOB p426)
-- TOB: Wolf Reaver Dwarf
+- Alias: Wolf Reaver Dwarf
- Humanoïde de taille Moyenne (nain) (M), chaotique
- **Classe d'armure** 16 (chemise de mailles, bouclier)
- **Points de vie** 76 (9d8 + 36)
@@ -94378,7 +94378,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Prince Gnome Asservi Aux Démons
- Source: (LDM p424)(TOB p420)
-- TOB: Devilbound Gnomish Prince
+- Alias: Devilbound Gnomish Prince
- Humanoïde de Petite taille (gnome) (P), mauvais
- **Classe d'armure** 12 (15 avec armure du mage)
- **Points de vie** 104 (19d6 + 38)
@@ -94405,7 +94405,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Seigneur Des Bandits
- Source: (LDM p425)(TOB p418)
-- TOB: Bandit Lord
+- Alias: Bandit Lord
- Humanoïde de taille Moyenne (n'importe quelle race) (M), tout
- **Classe d'armure** 16 (cuirasse)
- **Points de vie** 91 (14d8 + 28)
@@ -94468,7 +94468,7 @@ Le zmey peut faire une action légendaire, parmi celles proposées ci-dessous. I
# Variante : Sorcier Vampire
- Source: (LDM p426)(TOB p426)
-- TOB: Variant: Vampire Warlock
+- Alias: Variant: Vampire Warlock
Le sorcier vampire n'est pas sujet à défense d'entrer ni blessé par l'eau courante, faiblesses des vampires ordinaires, et subit 10 dégâts radiants au lieu de 20 s'il est exposé à la lumière du jour.
diff --git a/Data/HD/tome_of_beasts_abomination_mecanique.md b/Data/HD/tome_of_beasts_abomination_mecanique.md
index ed60d1b2..3ff7b737 100644
--- a/Data/HD/tome_of_beasts_abomination_mecanique.md
+++ b/Data/HD/tome_of_beasts_abomination_mecanique.md
@@ -5,7 +5,7 @@
# Abomination Mécanique
- Source: (LDM p290)(TOB p59)
-- TOB: Clockwork Abomination
+- Alias: Clockwork Abomination
- Créature artificielle (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 76(8d10+32)
diff --git a/Data/HD/tome_of_beasts_akyishigal_seigneur_demon_des_cafards.md b/Data/HD/tome_of_beasts_akyishigal_seigneur_demon_des_cafards.md
index 756d6974..92a1de7f 100644
--- a/Data/HD/tome_of_beasts_akyishigal_seigneur_demon_des_cafards.md
+++ b/Data/HD/tome_of_beasts_akyishigal_seigneur_demon_des_cafards.md
@@ -5,7 +5,7 @@
# Akyishigal, seigneur démon des cafards
- Source: (LDM p84)(TOB p82)
-- TOB: Akyishigal, Demon Lord of Cockroaches
+- Alias: Akyishigal, Demon Lord of Cockroaches
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 138 (12d10+72)
diff --git a/Data/HD/tome_of_beasts_ala.md b/Data/HD/tome_of_beasts_ala.md
index 932ea502..e230e12f 100644
--- a/Data/HD/tome_of_beasts_ala.md
+++ b/Data/HD/tome_of_beasts_ala.md
@@ -5,7 +5,7 @@
# Ala
- Source: (LDM p11)(TOB p13)
-- TOB: Ala
+- Alias: Ala
- Fée de taille Moyenne (M), chaotique mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 127 (15d8+60)
diff --git a/Data/HD/tome_of_beasts_alchimiste_kobold.md b/Data/HD/tome_of_beasts_alchimiste_kobold.md
index 4228ec9c..e75acca9 100644
--- a/Data/HD/tome_of_beasts_alchimiste_kobold.md
+++ b/Data/HD/tome_of_beasts_alchimiste_kobold.md
@@ -5,7 +5,7 @@
# Alchimiste Kobold
- Source: (LDM p254)(TOB p261)
-- TOB: Kobold Alchemist
+- Alias: Kobold Alchemist
- Humanoïde (kobold) de Petite taille (P), loyal neutre
- **Terrain** Caverne aménagée
- **Classe d'armure** 15 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_algorith.md b/Data/HD/tome_of_beasts_algorith.md
index 7061c276..9229d7c1 100644
--- a/Data/HD/tome_of_beasts_algorith.md
+++ b/Data/HD/tome_of_beasts_algorith.md
@@ -5,7 +5,7 @@
# Algorith
- Source: (LDM p12)(TOB p14)
-- TOB: Algorith
+- Alias: Algorith
- Créature artificielle de taille Moyenne (M), loyal neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 136 (16d8+64)
diff --git a/Data/HD/tome_of_beasts_alquam_seigneur_demon_de_la_nuit.md b/Data/HD/tome_of_beasts_alquam_seigneur_demon_de_la_nuit.md
index 358a97c6..75c718e4 100644
--- a/Data/HD/tome_of_beasts_alquam_seigneur_demon_de_la_nuit.md
+++ b/Data/HD/tome_of_beasts_alquam_seigneur_demon_de_la_nuit.md
@@ -5,7 +5,7 @@
# Alquam, seigneur démon de la nuit
- Source: (LDM p86)(TOB p84)
-- TOB: Alquam, Demon Lord of Night
+- Alias: Alquam, Demon Lord of Night
- Fiélon (démon) de Très Grande taille (TG), chaotique mauvais
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 350 (28d12+168)
diff --git a/Data/HD/tome_of_beasts_alseide.md b/Data/HD/tome_of_beasts_alseide.md
index 1da85c8e..eab03a11 100644
--- a/Data/HD/tome_of_beasts_alseide.md
+++ b/Data/HD/tome_of_beasts_alseide.md
@@ -5,7 +5,7 @@
# Alséide
- Source: (LDM p13)(TOB p15)
-- TOB: Alseid
+- Alias: Alseid
- Créature monstrueuse de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 14 (armure de cuir)
diff --git a/Data/HD/tome_of_beasts_amanite_myconide.md b/Data/HD/tome_of_beasts_amanite_myconide.md
index 05022fe5..15299b09 100644
--- a/Data/HD/tome_of_beasts_amanite_myconide.md
+++ b/Data/HD/tome_of_beasts_amanite_myconide.md
@@ -5,7 +5,7 @@
# Amanite Myconide
- Source: (LDM p14)(TOB p300)
-- TOB: Deathcap Myconid
+- Alias: Deathcap Myconid
- Plante de taille Moyenne (M), neutre mauvaise
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_amphiptere.md b/Data/HD/tome_of_beasts_amphiptere.md
index 75b60f49..9da52ce8 100644
--- a/Data/HD/tome_of_beasts_amphiptere.md
+++ b/Data/HD/tome_of_beasts_amphiptere.md
@@ -5,7 +5,7 @@
# Amphiptère
- Source: (LDM p15)(TOB p16)
-- TOB: Amphiptere
+- Alias: Amphiptere
- Bête de taille Moyenne (M), non alignée
- **Terrain** Bois / Forêt, Littoral
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_ancien_drake_des_ombres.md b/Data/HD/tome_of_beasts_ancien_drake_des_ombres.md
index 511a20df..182eff76 100644
--- a/Data/HD/tome_of_beasts_ancien_drake_des_ombres.md
+++ b/Data/HD/tome_of_beasts_ancien_drake_des_ombres.md
@@ -5,7 +5,7 @@
# Ancien Drake Des Ombres
- Source: (LDM p153)(TOB p153)
-- TOB: Elder Shadow Drake
+- Alias: Elder Shadow Drake
- Dragon de Grande taille (G), chaotique mauvais
- **Terrain** Bois / Forêt, Caverne naturelle, Ruines souterraines
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_andrenjinyi.md b/Data/HD/tome_of_beasts_andrenjinyi.md
index b980d8d4..3dca9ca7 100644
--- a/Data/HD/tome_of_beasts_andrenjinyi.md
+++ b/Data/HD/tome_of_beasts_andrenjinyi.md
@@ -5,7 +5,7 @@
# Andrenjinyi
- Source: (LDM p17)(TOB p17)
-- TOB: Andrenjinyi
+- Alias: Andrenjinyi
- Céleste de taille Gigantesque (Gig), neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 228 (13d20+91)
diff --git a/Data/HD/tome_of_beasts_angatra.md b/Data/HD/tome_of_beasts_angatra.md
index 4ba07174..56d04a07 100644
--- a/Data/HD/tome_of_beasts_angatra.md
+++ b/Data/HD/tome_of_beasts_angatra.md
@@ -5,7 +5,7 @@
# Angatra
- Source: (LDM p18)(TOB p19)
-- TOB: Angatra
+- Alias: Angatra
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Jungle, Mangrove / Marécage, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_ange_enchaine.md b/Data/HD/tome_of_beasts_ange_enchaine.md
index 268e47c5..22ed8cb0 100644
--- a/Data/HD/tome_of_beasts_ange_enchaine.md
+++ b/Data/HD/tome_of_beasts_ange_enchaine.md
@@ -5,7 +5,7 @@
# Ange Enchaîné
- Source: (LDM p19)(TOB p20)
-- TOB: Angel, Chained
+- Alias: Angel, Chained
- Céleste de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 88 (16d8+16)
diff --git a/Data/HD/tome_of_beasts_ange_fidele.md b/Data/HD/tome_of_beasts_ange_fidele.md
index 65be8608..4886fd88 100644
--- a/Data/HD/tome_of_beasts_ange_fidele.md
+++ b/Data/HD/tome_of_beasts_ange_fidele.md
@@ -5,7 +5,7 @@
# Ange Fidèle
- Source: (LDM p20)(TOB p21)
-- TOB: Fidele Angel
+- Alias: Fidele Angel
- Céleste de taille Moyenne (M), loyal bon
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 104 (16d8+32)
diff --git a/Data/HD/tome_of_beasts_antipaladin_des_ombres_derro.md b/Data/HD/tome_of_beasts_antipaladin_des_ombres_derro.md
index 98f164d5..b43b1a86 100644
--- a/Data/HD/tome_of_beasts_antipaladin_des_ombres_derro.md
+++ b/Data/HD/tome_of_beasts_antipaladin_des_ombres_derro.md
@@ -5,7 +5,7 @@
# Antipaladin Des Ombres Derro
- Source: (LDM p94)(TOB p93)
-- TOB: Derro Shadow Antipaladin
+- Alias: Derro Shadow Antipaladin
- Humanoïde (derro) de Petite taille (P), chaotique mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 18 (cuirasse et bouclier)
diff --git a/Data/HD/tome_of_beasts_anubien.md b/Data/HD/tome_of_beasts_anubien.md
index 623975da..d809d977 100644
--- a/Data/HD/tome_of_beasts_anubien.md
+++ b/Data/HD/tome_of_beasts_anubien.md
@@ -5,7 +5,7 @@
# Anubien
- Source: (LDM p21)(TOB p24)
-- TOB: Anubian
+- Alias: Anubian
- Élémentaire de taille Moyenne (M), chaotique mauvais
- **Terrain** Désert chaud, Plans élémentaires
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_apau_perape.md b/Data/HD/tome_of_beasts_apau_perape.md
index 9d90ab95..b8cecd19 100644
--- a/Data/HD/tome_of_beasts_apau_perape.md
+++ b/Data/HD/tome_of_beasts_apau_perape.md
@@ -5,7 +5,7 @@
# Apau Perape
- Source: (LDM p76)(TOB p75)
-- TOB: Apau Perape
+- Alias: Apau Perape
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 95 (10d10+40)
diff --git a/Data/HD/tome_of_beasts_apparition_putride.md b/Data/HD/tome_of_beasts_apparition_putride.md
index 25c260ea..81df4178 100644
--- a/Data/HD/tome_of_beasts_apparition_putride.md
+++ b/Data/HD/tome_of_beasts_apparition_putride.md
@@ -5,7 +5,7 @@
# Apparition Putride
- Source: (LDM p22)(TOB p315)
-- TOB: Putrid Haunt
+- Alias: Putrid Haunt
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_araignee_a_lignes_rouges.md b/Data/HD/tome_of_beasts_araignee_a_lignes_rouges.md
index 5e96bdcb..7a7e4bc2 100644
--- a/Data/HD/tome_of_beasts_araignee_a_lignes_rouges.md
+++ b/Data/HD/tome_of_beasts_araignee_a_lignes_rouges.md
@@ -5,7 +5,7 @@
# Araignée À Lignes Rouges
- Source: (LDM p23)(TOB p363)
-- TOB: Red-Banded Line Spider
+- Alias: Red-Banded Line Spider
- Bête de Très Petite taille (TP), non-alignée
- **Classe d'armure** 13
- **Points de vie** 2 (1d4)
diff --git a/Data/HD/tome_of_beasts_araignee_de_leng.md b/Data/HD/tome_of_beasts_araignee_de_leng.md
index 7418f63c..0af70c8f 100644
--- a/Data/HD/tome_of_beasts_araignee_de_leng.md
+++ b/Data/HD/tome_of_beasts_araignee_de_leng.md
@@ -5,7 +5,7 @@
# Araignée De Leng
- Source: (LDM p24)(TOB p365)
-- TOB: Spider of Leng
+- Alias: Spider of Leng
- Aberration de Grande taille (G), chaotique mauvaise
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_araignee_des_sables.md b/Data/HD/tome_of_beasts_araignee_des_sables.md
index 5233758c..3f428935 100644
--- a/Data/HD/tome_of_beasts_araignee_des_sables.md
+++ b/Data/HD/tome_of_beasts_araignee_des_sables.md
@@ -5,7 +5,7 @@
# Araignée Des Sables
- Source: (LDM p25)(TOB p364)
-- TOB: Sand Spider
+- Alias: Sand Spider
- Bête de Grande taille (G), non-alignée
- **Terrain** Désert chaud, Littoral, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_araignee_jba_fofi.md b/Data/HD/tome_of_beasts_araignee_jba_fofi.md
index 98ec88e6..b2386cc2 100644
--- a/Data/HD/tome_of_beasts_araignee_jba_fofi.md
+++ b/Data/HD/tome_of_beasts_araignee_jba_fofi.md
@@ -5,7 +5,7 @@
# Araignée J'Ba Fofi
- Source: (LDM p26)(TOB p362)
-- TOB: J'Ba Fofi Spider
+- Alias: J'Ba Fofi Spider
- Bête de Grande taille (G), non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_araignee_marchespectre.md b/Data/HD/tome_of_beasts_araignee_marchespectre.md
index e20a769c..a83667df 100644
--- a/Data/HD/tome_of_beasts_araignee_marchespectre.md
+++ b/Data/HD/tome_of_beasts_araignee_marchespectre.md
@@ -5,7 +5,7 @@
# Araignée Marchespectre
- Source: (LDM p27)(TOB p361)
-- TOB: Ghostwalk Spider
+- Alias: Ghostwalk Spider
- Créature monstrueuse de Grande taille (G), neutre mauvaise
- **Terrain** Bois / Forêt, Caverne naturelle
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_araignee_tisseuse_mecanique.md b/Data/HD/tome_of_beasts_araignee_tisseuse_mecanique.md
index cc477658..4a062a33 100644
--- a/Data/HD/tome_of_beasts_araignee_tisseuse_mecanique.md
+++ b/Data/HD/tome_of_beasts_araignee_tisseuse_mecanique.md
@@ -5,7 +5,7 @@
# Araignée Tisseuse Mécanique
- Source: (LDM p291)(TOB p66)
-- TOB: Weaving Spider
+- Alias: Weaving Spider
- Créature artificielle de Très Petite taille (TP), non alignée
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 25 (10d4)
diff --git a/Data/HD/tome_of_beasts_araignee_voleuse.md b/Data/HD/tome_of_beasts_araignee_voleuse.md
index 75a660cf..5cda5a1c 100644
--- a/Data/HD/tome_of_beasts_araignee_voleuse.md
+++ b/Data/HD/tome_of_beasts_araignee_voleuse.md
@@ -5,7 +5,7 @@
# Araignée Voleuse
- Source: (LDM p28)(TOB p366)
-- TOB: Spider Thief
+- Alias: Spider Thief
- Créature artificielle de Petite taille (P), non-alignée
- **Terrain** Caverne aménagée, Donjon maçonné
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_arbeyach.md b/Data/HD/tome_of_beasts_arbeyach.md
index ea2ba5e4..fb4b1b5f 100644
--- a/Data/HD/tome_of_beasts_arbeyach.md
+++ b/Data/HD/tome_of_beasts_arbeyach.md
@@ -5,7 +5,7 @@
# Arbeyach
- Source: (LDM p98)(TOB p95)
-- TOB: Arbeyach
+- Alias: Arbeyach
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 275 (22d10+154)
diff --git a/Data/HD/tome_of_beasts_arbre_feuilledragon.md b/Data/HD/tome_of_beasts_arbre_feuilledragon.md
index 8fd70acb..fb1fe4f2 100644
--- a/Data/HD/tome_of_beasts_arbre_feuilledragon.md
+++ b/Data/HD/tome_of_beasts_arbre_feuilledragon.md
@@ -5,7 +5,7 @@
# Arbre Feuilledragon
- Source: (LDM p29)(TOB p147)
-- TOB: Dragonleaf Tree
+- Alias: Dragonleaf Tree
- Plante de Grande taille (G), non alignée
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_arbre_pare_fees.md b/Data/HD/tome_of_beasts_arbre_pare_fees.md
index 0bc5f6d1..f24f2012 100644
--- a/Data/HD/tome_of_beasts_arbre_pare_fees.md
+++ b/Data/HD/tome_of_beasts_arbre_pare_fees.md
@@ -5,7 +5,7 @@
# Arbre Pare-Fées
- Source: (LDM p30)(TOB p200)
-- TOB: Feyward Tree
+- Alias: Feyward Tree
- Créature artificielle de Très Grande taille (TG), non-alignée
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_archer_pillard_delite_tosculi.md b/Data/HD/tome_of_beasts_archer_pillard_delite_tosculi.md
index 7ff60825..6f98d586 100644
--- a/Data/HD/tome_of_beasts_archer_pillard_delite_tosculi.md
+++ b/Data/HD/tome_of_beasts_archer_pillard_delite_tosculi.md
@@ -5,7 +5,7 @@
# Archer-Pillard D'Élite Tosculi
- Source: (LDM p387)(TOB p386)
-- TOB: Tosculi Elite Bow Raider
+- Alias: Tosculi Elite Bow Raider
- Humanoïde (tosculi) de taille Moyenne (M), loyal mauvais
- **Terrain** Collines / Vallées, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_archer_veteran_elfique.md b/Data/HD/tome_of_beasts_archer_veteran_elfique.md
index 20000c57..0df8cffa 100644
--- a/Data/HD/tome_of_beasts_archer_veteran_elfique.md
+++ b/Data/HD/tome_of_beasts_archer_veteran_elfique.md
@@ -5,7 +5,7 @@
# Archer Vétéran Elfique
- Source: (LDM p418)(TOB p422)
-- TOB: Elvish Veteran Archer
+- Alias: Elvish Veteran Archer
- Humanoïde (elfe) de taille Moyenne (M), chaotique bon ou chaotique neutre
- **Classe d'armure** 15 (armure de cuir clouté)
- **Points de vie** 77 (14d8 + 14)
diff --git a/Data/HD/tome_of_beasts_archimandrite_profond.md b/Data/HD/tome_of_beasts_archimandrite_profond.md
index 602a4b81..ea3c67e4 100644
--- a/Data/HD/tome_of_beasts_archimandrite_profond.md
+++ b/Data/HD/tome_of_beasts_archimandrite_profond.md
@@ -5,7 +5,7 @@
# Archimandrite Profond
- Source: (LDM p343)(TOB p74)
-- TOB: Deep One Archimandrite
+- Alias: Deep One Archimandrite
- Humanoïde de Grande taille (G), chaotique mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_aridni.md b/Data/HD/tome_of_beasts_aridni.md
index 5d83cbd8..9c360a21 100644
--- a/Data/HD/tome_of_beasts_aridni.md
+++ b/Data/HD/tome_of_beasts_aridni.md
@@ -5,7 +5,7 @@
# Aridni
- Source: (LDM p31)(TOB p26)
-- TOB: Aridni
+- Alias: Aridni
- Fée de Petite taille (P), neutre mauvaise
- **Classe d'armure** 15
- **Points de vie** 82 (15d6+30)
diff --git a/Data/HD/tome_of_beasts_asanbosam.md b/Data/HD/tome_of_beasts_asanbosam.md
index 97b834c5..f369f632 100644
--- a/Data/HD/tome_of_beasts_asanbosam.md
+++ b/Data/HD/tome_of_beasts_asanbosam.md
@@ -5,7 +5,7 @@
# Asanbosam
- Source: (LDM p32)(TOB p27)
-- TOB: Asanbosam
+- Alias: Asanbosam
- Aberration de Grande taille (G), chaotique mauvaise
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_assoiffeur_gris.md b/Data/HD/tome_of_beasts_assoiffeur_gris.md
index 47e40e7c..148a7dfb 100644
--- a/Data/HD/tome_of_beasts_assoiffeur_gris.md
+++ b/Data/HD/tome_of_beasts_assoiffeur_gris.md
@@ -5,7 +5,7 @@
# Assoiffeur Gris
- Source: (LDM p33)(TOB p238)
-- TOB: Gray Thirster
+- Alias: Gray Thirster
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_automate_bibliothecaire.md b/Data/HD/tome_of_beasts_automate_bibliothecaire.md
index e429672b..97498f33 100644
--- a/Data/HD/tome_of_beasts_automate_bibliothecaire.md
+++ b/Data/HD/tome_of_beasts_automate_bibliothecaire.md
@@ -5,7 +5,7 @@
# Automate Bibliothécaire
- Source: (LDM p34)(TOB p273)
-- TOB: Library Automaton
+- Alias: Library Automaton
- Créature artificielle de Petite taille (P), loyale neutre
- **Terrain** Ruines souterraines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_autruche_de_guerre.md b/Data/HD/tome_of_beasts_autruche_de_guerre.md
index 40be2ae2..77f74087 100644
--- a/Data/HD/tome_of_beasts_autruche_de_guerre.md
+++ b/Data/HD/tome_of_beasts_autruche_de_guerre.md
@@ -5,7 +5,7 @@
# Autruche de guerre
- Source: (LDM p320)(TOB p307)
-- TOB: War Ostrich
+- Alias: War Ostrich
- Bête de Grande taille (G), non alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 11
diff --git a/Data/HD/tome_of_beasts_avatar_de_boree.md b/Data/HD/tome_of_beasts_avatar_de_boree.md
index 0b0d026e..ad749542 100644
--- a/Data/HD/tome_of_beasts_avatar_de_boree.md
+++ b/Data/HD/tome_of_beasts_avatar_de_boree.md
@@ -5,7 +5,7 @@
# Avatar de Borée
- Source: (LDM p45)(TOB p42)
-- TOB: Avatar of Boreas
+- Alias: Avatar of Boreas
- Élémentaire de taille Moyenne (métamorphe) (M), chaotique mauvais
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_bagiennik.md b/Data/HD/tome_of_beasts_bagiennik.md
index adf9d6e4..70f5e4f0 100644
--- a/Data/HD/tome_of_beasts_bagiennik.md
+++ b/Data/HD/tome_of_beasts_bagiennik.md
@@ -5,7 +5,7 @@
# Bagiennik
- Source: (LDM p35)(TOB p31)
-- TOB: Bagiennik
+- Alias: Bagiennik
- Aberration de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt, Jungle, Mangrove / Marécage
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_beaute_abominable.md b/Data/HD/tome_of_beasts_beaute_abominable.md
index 3dd2ae23..0d47cccf 100644
--- a/Data/HD/tome_of_beasts_beaute_abominable.md
+++ b/Data/HD/tome_of_beasts_beaute_abominable.md
@@ -5,7 +5,7 @@
# Beauté Abominable
- Source: (LDM p36)(TOB p11)
-- TOB: Abominable Beauty
+- Alias: Abominable Beauty
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 187 (22d8+88)
diff --git a/Data/HD/tome_of_beasts_bebecephale_de_zmey.md b/Data/HD/tome_of_beasts_bebecephale_de_zmey.md
index 0ecf92dc..a97b82d2 100644
--- a/Data/HD/tome_of_beasts_bebecephale_de_zmey.md
+++ b/Data/HD/tome_of_beasts_bebecephale_de_zmey.md
@@ -5,7 +5,7 @@
# Bébécéphale De Zmey
- Source: (LDM p416)(TOB p416)
-- TOB: Zmey Headling
+- Alias: Zmey Headling
- Dragon de taille Moyenne (M), chaotique mauvais
- **Terrain** Bois / Forêt, Mangrove / Marécage
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_behtu.md b/Data/HD/tome_of_beasts_behtu.md
index 738b8a56..c6479999 100644
--- a/Data/HD/tome_of_beasts_behtu.md
+++ b/Data/HD/tome_of_beasts_behtu.md
@@ -5,7 +5,7 @@
# Behtu
- Source: (LDM p37)(TOB p34)
-- TOB: Behtu
+- Alias: Behtu
- Humanoïde de Petite taille (P), chaotique mauvais
- **Terrain** Jungle
- **Classe d'armure** 14 (armure de peau)
diff --git a/Data/HD/tome_of_beasts_beli.md b/Data/HD/tome_of_beasts_beli.md
index 11a3fa25..49de59d9 100644
--- a/Data/HD/tome_of_beasts_beli.md
+++ b/Data/HD/tome_of_beasts_beli.md
@@ -5,7 +5,7 @@
# Béli
- Source: (LDM p38)(TOB p35)
-- TOB: Beli
+- Alias: Beli
- Fée de Petite taille (P), neutre mauvaise
- **Terrain** Arctique / Subarctique, Montagnes
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_belle_noyee.md b/Data/HD/tome_of_beasts_belle_noyee.md
index dae6b638..acccb2bb 100644
--- a/Data/HD/tome_of_beasts_belle_noyee.md
+++ b/Data/HD/tome_of_beasts_belle_noyee.md
@@ -5,7 +5,7 @@
# Belle Noyée
- Source: (LDM p39)(TOB p159)
-- TOB: Drowned Maiden
+- Alias: Drowned Maiden
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_bereginyas.md b/Data/HD/tome_of_beasts_bereginyas.md
index b5e90818..2fd2192d 100644
--- a/Data/HD/tome_of_beasts_bereginyas.md
+++ b/Data/HD/tome_of_beasts_bereginyas.md
@@ -5,7 +5,7 @@
# Béreginyas
- Source: (LDM p40)(TOB p36)
-- TOB: Bereginyas
+- Alias: Bereginyas
- Fée de Très Petite taille (TP), neutre mauvaise
- **Terrain** Montagnes
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_berstuc.md b/Data/HD/tome_of_beasts_berstuc.md
index 56d0a9df..61c81513 100644
--- a/Data/HD/tome_of_beasts_berstuc.md
+++ b/Data/HD/tome_of_beasts_berstuc.md
@@ -5,7 +5,7 @@
# Berstuc
- Source: (LDM p77)(TOB p76)
-- TOB: Berstuc
+- Alias: Berstuc
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 157 (15d10+75)
diff --git a/Data/HD/tome_of_beasts_bete_dombre.md b/Data/HD/tome_of_beasts_bete_dombre.md
index 3e7b0d41..007a0499 100644
--- a/Data/HD/tome_of_beasts_bete_dombre.md
+++ b/Data/HD/tome_of_beasts_bete_dombre.md
@@ -5,7 +5,7 @@
# Bête D'Ombre
- Source: (LDM p41)(TOB p345)
-- TOB: Shadow Beast
+- Alias: Shadow Beast
- Fée de taille Moyenne (M), chaotique mauvaise
- **Terrain** Bois / Forêt, Mer / Océan, Caverne aménagée, Donjon maçonné, Ruines extérieures, Ruines souterraines, Ruines sous-marines
- **Classe d'armure** 14
diff --git a/Data/HD/tome_of_beasts_blemmyes.md b/Data/HD/tome_of_beasts_blemmyes.md
index d56710ea..1d69d7a9 100644
--- a/Data/HD/tome_of_beasts_blemmyes.md
+++ b/Data/HD/tome_of_beasts_blemmyes.md
@@ -5,7 +5,7 @@
# Blemmyes
- Source: (LDM p42)(TOB p37)
-- TOB: Blemmyes
+- Alias: Blemmyes
- Créature monstrueuse de Grande taille (G), chaotique mauvais
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_boloti.md b/Data/HD/tome_of_beasts_boloti.md
index c09f35f9..f9cb550e 100644
--- a/Data/HD/tome_of_beasts_boloti.md
+++ b/Data/HD/tome_of_beasts_boloti.md
@@ -5,7 +5,7 @@
# Boloti
- Source: (LDM p43)(TOB p38)
-- TOB: Boloti
+- Alias: Boloti
- Fée de Très Petite taille (TP), neutre mauvaise
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_bondisseur_aquatique.md b/Data/HD/tome_of_beasts_bondisseur_aquatique.md
index fd00f75d..c41af889 100644
--- a/Data/HD/tome_of_beasts_bondisseur_aquatique.md
+++ b/Data/HD/tome_of_beasts_bondisseur_aquatique.md
@@ -5,7 +5,7 @@
# Bondisseur Aquatique
- Source: (LDM p44)(TOB p406)
-- TOB: Water Leaper
+- Alias: Water Leaper
- Créature monstrueuse de Grande taille (G), non alignée
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_boucca.md b/Data/HD/tome_of_beasts_boucca.md
index 9ff19186..53eaa5ae 100644
--- a/Data/HD/tome_of_beasts_boucca.md
+++ b/Data/HD/tome_of_beasts_boucca.md
@@ -5,7 +5,7 @@
# Boucca
- Source: (LDM p47)(TOB p46)
-- TOB: Bucca
+- Alias: Bucca
- Fée de Très Petite taille (TP), neutre mauvaise
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 27 (5d4+15)
diff --git a/Data/HD/tome_of_beasts_bouda.md b/Data/HD/tome_of_beasts_bouda.md
index 02901199..d087ca55 100644
--- a/Data/HD/tome_of_beasts_bouda.md
+++ b/Data/HD/tome_of_beasts_bouda.md
@@ -5,7 +5,7 @@
# Bouda
- Source: (LDM p48)(TOB p44)
-- TOB: Bouda
+- Alias: Bouda
- Fiélon de taille Moyenne (métamorphe) (M), neutre mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 93 (11d8+44)
diff --git a/Data/HD/tome_of_beasts_bouffon_macabre.md b/Data/HD/tome_of_beasts_bouffon_macabre.md
index 45f38cc7..66c6789e 100644
--- a/Data/HD/tome_of_beasts_bouffon_macabre.md
+++ b/Data/HD/tome_of_beasts_bouffon_macabre.md
@@ -5,7 +5,7 @@
# Bouffon Macabre
- Source: (LDM p49)(TOB p240)
-- TOB: Grim Jester
+- Alias: Grim Jester
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 136 (16d8+64)
diff --git a/Data/HD/tome_of_beasts_bouraq.md b/Data/HD/tome_of_beasts_bouraq.md
index 84794949..d1de04ef 100644
--- a/Data/HD/tome_of_beasts_bouraq.md
+++ b/Data/HD/tome_of_beasts_bouraq.md
@@ -5,7 +5,7 @@
# Bouraq
- Source: (LDM p50)(TOB p48)
-- TOB: Buraq
+- Alias: Buraq
- Céleste de taille Moyenne (M), loyal bon
- **Classe d'armure** 17
- **Points de vie** 152 (16d8+80)
diff --git a/Data/HD/tome_of_beasts_cactide.md b/Data/HD/tome_of_beasts_cactide.md
index 8bf3b240..77f61e97 100644
--- a/Data/HD/tome_of_beasts_cactide.md
+++ b/Data/HD/tome_of_beasts_cactide.md
@@ -5,7 +5,7 @@
# Cactide
- Source: (LDM p51)(TOB p50)
-- TOB: Cactid
+- Alias: Cactid
- Plante de Grande taille (G), non alignée
- **Terrain** Désert chaud
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_camazotz_seigneur_demon_des_chauves_souris_et_du_feu.md b/Data/HD/tome_of_beasts_camazotz_seigneur_demon_des_chauves_souris_et_du_feu.md
index 3442cd2c..9892cd17 100644
--- a/Data/HD/tome_of_beasts_camazotz_seigneur_demon_des_chauves_souris_et_du_feu.md
+++ b/Data/HD/tome_of_beasts_camazotz_seigneur_demon_des_chauves_souris_et_du_feu.md
@@ -5,7 +5,7 @@
# Camazotz, seigneur démon des chauves-souris et du feu
- Source: (LDM p87)(TOB p85)
-- TOB: Camazotz, Demon Lord of Bats and Fire
+- Alias: Camazotz, Demon Lord of Bats and Fire
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 537 (43d10+301)
diff --git a/Data/HD/tome_of_beasts_cambium.md b/Data/HD/tome_of_beasts_cambium.md
index 49ba19bf..00ba7560 100644
--- a/Data/HD/tome_of_beasts_cambium.md
+++ b/Data/HD/tome_of_beasts_cambium.md
@@ -5,7 +5,7 @@
# Cambium
- Source: (LDM p52)(TOB p51)
-- TOB: Cambium
+- Alias: Cambium
- Fiélon de Grande taille (G), neutre mauvais
- **Terrain** Donjon maçonné, Ruines extérieures
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_canitaupe.md b/Data/HD/tome_of_beasts_canitaupe.md
index d3809803..e288325a 100644
--- a/Data/HD/tome_of_beasts_canitaupe.md
+++ b/Data/HD/tome_of_beasts_canitaupe.md
@@ -5,7 +5,7 @@
# Canitaupe
- Source: (LDM p53)(TOB p120)
-- TOB: Dogmole
+- Alias: Dogmole
- Bête de taille Moyenne (M), neutre
- **Terrain** Bois / Forêt, Collines / Vallées, Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_canitaupe_juggernaut.md b/Data/HD/tome_of_beasts_canitaupe_juggernaut.md
index 1a3841f2..6f714103 100644
--- a/Data/HD/tome_of_beasts_canitaupe_juggernaut.md
+++ b/Data/HD/tome_of_beasts_canitaupe_juggernaut.md
@@ -5,7 +5,7 @@
# Canitaupe Juggernaut
- Source: (LDM p54)(TOB p121)
-- TOB: Dogmole Juggernaut
+- Alias: Dogmole Juggernaut
- Créature monstrueuse de Grande taille (G), neutre
- **Terrain** Collines / Vallées, Montagnes, Caverne naturelle
- **Classe d'armure** 15 (armure de chaînes)
diff --git a/Data/HD/tome_of_beasts_capitaine_du_guet.md b/Data/HD/tome_of_beasts_capitaine_du_guet.md
index cb3bd589..c810593d 100644
--- a/Data/HD/tome_of_beasts_capitaine_du_guet.md
+++ b/Data/HD/tome_of_beasts_capitaine_du_guet.md
@@ -5,7 +5,7 @@
# Capitaine Du Guet
- Source: (LDM p418)(TOB p419)
-- TOB: City Watch Captain
+- Alias: City Watch Captain
- Humanoïde de taille Moyenne (n'importe quelle race) (M), loyal neutre
- **Classe d'armure** 17 (armure d'écailles)
- **Points de vie** 91 (14d8 + 28)
diff --git a/Data/HD/tome_of_beasts_cavalier_de_baba_yaga_base.md b/Data/HD/tome_of_beasts_cavalier_de_baba_yaga_base.md
index e667875c..0983eb5e 100644
--- a/Data/HD/tome_of_beasts_cavalier_de_baba_yaga_base.md
+++ b/Data/HD/tome_of_beasts_cavalier_de_baba_yaga_base.md
@@ -5,7 +5,7 @@
# Cavalier De Baba Yaga, Base
- Source: (LDM p267)(TOB p30)
-- TOB: Baba Yaga's Horsemen, Base
+- Alias: Baba Yaga's Horsemen, Base
- Fée de taille Moyenne (M), loyal neutre
- **Classe d'armure** 20 (harnois et bouclier)
- **Points de vie** 171 (18d8+90)
diff --git a/Data/HD/tome_of_beasts_champion_monolithique.md b/Data/HD/tome_of_beasts_champion_monolithique.md
index f3ecbf62..894f743e 100644
--- a/Data/HD/tome_of_beasts_champion_monolithique.md
+++ b/Data/HD/tome_of_beasts_champion_monolithique.md
@@ -5,7 +5,7 @@
# Champion Monolithique
- Source: (LDM p308)(TOB p294)
-- TOB: Monolith Champion
+- Alias: Monolith Champion
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 102 (12d10+36)
diff --git a/Data/HD/tome_of_beasts_chapeau_rouge.md b/Data/HD/tome_of_beasts_chapeau_rouge.md
index 18822fd0..d3ba4a53 100644
--- a/Data/HD/tome_of_beasts_chapeau_rouge.md
+++ b/Data/HD/tome_of_beasts_chapeau_rouge.md
@@ -5,7 +5,7 @@
# Chapeau Rouge
- Source: (LDM p55)(TOB p325)
-- TOB: Redcap
+- Alias: Redcap
- Fée de taille Moyenne (M), neutre mauvaise
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_chasseur_forestier.md b/Data/HD/tome_of_beasts_chasseur_forestier.md
index 54ca4c52..81aa2da1 100644
--- a/Data/HD/tome_of_beasts_chasseur_forestier.md
+++ b/Data/HD/tome_of_beasts_chasseur_forestier.md
@@ -5,7 +5,7 @@
# Chasseur forestier
- Source: (LDM p166)(TOB p173)
-- TOB: Forest Hunter
+- Alias: Forest Hunter
- Humanoïde (elfe) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 104 (19d8+19)
diff --git a/Data/HD/tome_of_beasts_chasseur_mecanique.md b/Data/HD/tome_of_beasts_chasseur_mecanique.md
index 185d9e4e..a5aee001 100644
--- a/Data/HD/tome_of_beasts_chasseur_mecanique.md
+++ b/Data/HD/tome_of_beasts_chasseur_mecanique.md
@@ -5,7 +5,7 @@
# Chasseur Mécanique
- Source: (LDM p292)(TOB p63)
-- TOB: Clockwork Huntsman
+- Alias: Clockwork Huntsman
- Créature artificielle de taille Moyenne (M), non alignée
- **Classe d'armure** 14
- **Points de vie** 110 (20d8+20)
diff --git a/Data/HD/tome_of_beasts_chat_du_temple_de_bastet.md b/Data/HD/tome_of_beasts_chat_du_temple_de_bastet.md
index 6dce0c70..8cfe55c9 100644
--- a/Data/HD/tome_of_beasts_chat_du_temple_de_bastet.md
+++ b/Data/HD/tome_of_beasts_chat_du_temple_de_bastet.md
@@ -5,7 +5,7 @@
# Chat Du Temple De Bastet
- Source: (LDM p56)(TOB p32)
-- TOB: Bastet Temple Cat
+- Alias: Bastet Temple Cat
- Créature montrueuse de Petite taille (P), chaotique neutre
- **Classe d'armure** 14
- **Points de vie** 40 (9d6+9)
diff --git a/Data/HD/tome_of_beasts_chauve_souris_de_peau.md b/Data/HD/tome_of_beasts_chauve_souris_de_peau.md
index d3a51659..e7cc3c29 100644
--- a/Data/HD/tome_of_beasts_chauve_souris_de_peau.md
+++ b/Data/HD/tome_of_beasts_chauve_souris_de_peau.md
@@ -5,7 +5,7 @@
# Chauve-Souris De Peau
- Source: (LDM p89)(TOB p87)
-- TOB: Skin Bat
+- Alias: Skin Bat
- Mort-vivant de Petite taille (P), neutre mauvais
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 14 (4d6)
diff --git a/Data/HD/tome_of_beasts_chef_de_meute_nkosi.md b/Data/HD/tome_of_beasts_chef_de_meute_nkosi.md
index 29b558c6..3fa6bb39 100644
--- a/Data/HD/tome_of_beasts_chef_de_meute_nkosi.md
+++ b/Data/HD/tome_of_beasts_chef_de_meute_nkosi.md
@@ -5,7 +5,7 @@
# Chef De Meute Nkosi
- Source: (LDM p319)(TOB p306)
-- TOB: Nkosi Pridelord
+- Alias: Nkosi Pridelord
- Humanoïde de taille Moyenne (métamorphe, nkosi) (M), loyal neutre
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_chef_du_culte_de_lordre_demeraude.md b/Data/HD/tome_of_beasts_chef_du_culte_de_lordre_demeraude.md
index 652d97cf..7b14f7cc 100644
--- a/Data/HD/tome_of_beasts_chef_du_culte_de_lordre_demeraude.md
+++ b/Data/HD/tome_of_beasts_chef_du_culte_de_lordre_demeraude.md
@@ -5,7 +5,7 @@
# Chef Du Culte De L'Ordre D'Émeraude
- Source: (LDM p419)(TOB p421)
-- TOB: Emerald Order Cult Leader
+- Alias: Emerald Order Cult Leader
- Humanoïde de taille Moyenne (n'importe quelle race) (M), loyal neutre
- **Classe d'armure** 14 (cuirasse)
- **Points de vie** 117 (18d8 + 36)
diff --git a/Data/HD/tome_of_beasts_chef_kobold.md b/Data/HD/tome_of_beasts_chef_kobold.md
index 3568432d..d388edd7 100644
--- a/Data/HD/tome_of_beasts_chef_kobold.md
+++ b/Data/HD/tome_of_beasts_chef_kobold.md
@@ -5,7 +5,7 @@
# Chef Kobold
- Source: (LDM p256)(TOB p263)
-- TOB: Kobold Chieftain
+- Alias: Kobold Chieftain
- Humanoïde (kobold) de Petite taille (P), loyal mauvais
- **Terrain** Caverne aménagée
- **Classe d'armure** 17 (armure de cuir clouté et bouclier)
diff --git a/Data/HD/tome_of_beasts_chef_ogre_corrompu.md b/Data/HD/tome_of_beasts_chef_ogre_corrompu.md
index 00e31416..cbf32aba 100644
--- a/Data/HD/tome_of_beasts_chef_ogre_corrompu.md
+++ b/Data/HD/tome_of_beasts_chef_ogre_corrompu.md
@@ -5,7 +5,7 @@
# Chef Ogre Corrompu
- Source: (LDM p420)(TOB p423)
-- TOB: Ogre Chieftain, Corrupted
+- Alias: Ogre Chieftain, Corrupted
- Géant de Grande taille (G), chaotique mauvais
- **Terrain** Collines / Vallées, Ruines extérieures
- **Classe d'armure** 17 (clibanion)
diff --git a/Data/HD/tome_of_beasts_chelicere.md b/Data/HD/tome_of_beasts_chelicere.md
index 4fca0ed9..73146c2f 100644
--- a/Data/HD/tome_of_beasts_chelicere.md
+++ b/Data/HD/tome_of_beasts_chelicere.md
@@ -5,7 +5,7 @@
# Chélicère
- Source: (LDM p57)(TOB p54)
-- TOB: Chelicerae
+- Alias: Chelicerae
- Aberration de Grande taille (G), neutre mauvaise
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 153 (18d10+54)
diff --git a/Data/HD/tome_of_beasts_chernomoi.md b/Data/HD/tome_of_beasts_chernomoi.md
index a2707387..6df95c76 100644
--- a/Data/HD/tome_of_beasts_chernomoi.md
+++ b/Data/HD/tome_of_beasts_chernomoi.md
@@ -5,7 +5,7 @@
# Chernomoï
- Source: (LDM p58)(TOB p55)
-- TOB: Chernomoi
+- Alias: Chernomoi
- Fée de Très Petite taille (TP), neutre
- **Classe d'armure** 13
- **Points de vie** 32 (5d4+20)
diff --git a/Data/HD/tome_of_beasts_chevalier_fantome.md b/Data/HD/tome_of_beasts_chevalier_fantome.md
index 810a2a18..e1488444 100644
--- a/Data/HD/tome_of_beasts_chevalier_fantome.md
+++ b/Data/HD/tome_of_beasts_chevalier_fantome.md
@@ -5,7 +5,7 @@
# Chevalier Fantôme
- Source: (LDM p421)(TOB p423)
-- TOB: Ghost Knight
+- Alias: Ghost Knight
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 17 (demi-plate)
- **Points de vie** 97 (15d8 + 30)
diff --git a/Data/HD/tome_of_beasts_chien_anguille.md b/Data/HD/tome_of_beasts_chien_anguille.md
index 49f2fa29..cc067498 100644
--- a/Data/HD/tome_of_beasts_chien_anguille.md
+++ b/Data/HD/tome_of_beasts_chien_anguille.md
@@ -5,7 +5,7 @@
# Chien-Anguille
- Source: (LDM p59)(TOB p166)
-- TOB: Eel Hound
+- Alias: Eel Hound
- Fée de taille Moyenne (M), neutre
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_chien_du_temple.md b/Data/HD/tome_of_beasts_chien_du_temple.md
index 35bd072b..66476f82 100644
--- a/Data/HD/tome_of_beasts_chien_du_temple.md
+++ b/Data/HD/tome_of_beasts_chien_du_temple.md
@@ -5,7 +5,7 @@
# Chien Du Temple
- Source: (LDM p60)(TOB p378)
-- TOB: Temple Dog
+- Alias: Temple Dog
- Céleste de taille Moyenne (M), bon
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 97 (15d8+30)
diff --git a/Data/HD/tome_of_beasts_chien_mecanique.md b/Data/HD/tome_of_beasts_chien_mecanique.md
index 18b564fb..315c5e45 100644
--- a/Data/HD/tome_of_beasts_chien_mecanique.md
+++ b/Data/HD/tome_of_beasts_chien_mecanique.md
@@ -5,7 +5,7 @@
# Chien Mécanique
- Source: (LDM p293)(TOB p62)
-- TOB: Clockwork Hound
+- Alias: Clockwork Hound
- Créature artificielle de taille Moyenne (M), non alignée
- **Classe d'armure** 12 (armure naturelle)
- **Points de vie** 71 (11d8+22)
diff --git a/Data/HD/tome_of_beasts_chiot_mastodonte.md b/Data/HD/tome_of_beasts_chiot_mastodonte.md
index 546eef40..0b5153b2 100644
--- a/Data/HD/tome_of_beasts_chiot_mastodonte.md
+++ b/Data/HD/tome_of_beasts_chiot_mastodonte.md
@@ -5,7 +5,7 @@
# Chiot Mastodonte
- Source: (LDM p61)(TOB p252)
-- TOB: Hulking Whelp
+- Alias: Hulking Whelp
- Fée (métamorphe) de Petite/Très Grande taille (P/TG), chaotique neutre
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 94 (9d12+36)
diff --git a/Data/HD/tome_of_beasts_chort.md b/Data/HD/tome_of_beasts_chort.md
index 15e30551..bd5fb9f8 100644
--- a/Data/HD/tome_of_beasts_chort.md
+++ b/Data/HD/tome_of_beasts_chort.md
@@ -5,7 +5,7 @@
# Chort
- Source: (LDM p107)(TOB p104)
-- TOB: Chort Devil
+- Alias: Chort Devil
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 187 (15d8+120)
diff --git a/Data/HD/tome_of_beasts_chronomentaire.md b/Data/HD/tome_of_beasts_chronomentaire.md
index 6ff49c82..4af9538d 100644
--- a/Data/HD/tome_of_beasts_chronomentaire.md
+++ b/Data/HD/tome_of_beasts_chronomentaire.md
@@ -5,7 +5,7 @@
# Chronomentaire
- Source: (LDM p62)(TOB p57)
-- TOB: Chronalmental
+- Alias: Chronalmental
- Élémentaire de Grande taille (G), non aligné
- **Terrain** Plans élémentaires, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_cikavak.md b/Data/HD/tome_of_beasts_cikavak.md
index 4239f338..2da06ef8 100644
--- a/Data/HD/tome_of_beasts_cikavak.md
+++ b/Data/HD/tome_of_beasts_cikavak.md
@@ -5,7 +5,7 @@
# Cikavak
- Source: (LDM p63)(TOB p58)
-- TOB: Cikavak
+- Alias: Cikavak
- Fée de Très Petite taille (TP), neutre
- **Classe d'armure** 12
- **Points de vie** 17 (7d4)
diff --git a/Data/HD/tome_of_beasts_claquepiege.md b/Data/HD/tome_of_beasts_claquepiege.md
index 2287d358..b0402871 100644
--- a/Data/HD/tome_of_beasts_claquepiege.md
+++ b/Data/HD/tome_of_beasts_claquepiege.md
@@ -5,7 +5,7 @@
# Claquepiège
- Source: (LDM p64)(TOB p229)
-- TOB: Gnarljak
+- Alias: Gnarljak
- Créature artificielle de Petite taille (P), non-alignée
- **Terrain** Donjon maçonné
- **Classe d'armure** 16
diff --git a/Data/HD/tome_of_beasts_clurichaun.md b/Data/HD/tome_of_beasts_clurichaun.md
index 6f8d253d..14d69766 100644
--- a/Data/HD/tome_of_beasts_clurichaun.md
+++ b/Data/HD/tome_of_beasts_clurichaun.md
@@ -5,7 +5,7 @@
# Clurichaun
- Source: (LDM p65)(TOB p67)
-- TOB: Clurichaun
+- Alias: Clurichaun
- Fée de taille Très Petite (TP), neutre
- **Classe d'armure** 14
- **Points de vie** 22 (4d4+12)
diff --git a/Data/HD/tome_of_beasts_colonne_possedee.md b/Data/HD/tome_of_beasts_colonne_possedee.md
index 19ac0993..a9573d38 100644
--- a/Data/HD/tome_of_beasts_colonne_possedee.md
+++ b/Data/HD/tome_of_beasts_colonne_possedee.md
@@ -5,7 +5,7 @@
# Colonne Possédée
- Source: (LDM p66)(TOB p314)
-- TOB: Possessed Pillar
+- Alias: Possessed Pillar
- Créature artificielle de Grande taille (G), non alignée
- **Terrain** Désert chaud
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_combattant_homme_corbeau.md b/Data/HD/tome_of_beasts_combattant_homme_corbeau.md
index 96d9f825..e2fa9d53 100644
--- a/Data/HD/tome_of_beasts_combattant_homme_corbeau.md
+++ b/Data/HD/tome_of_beasts_combattant_homme_corbeau.md
@@ -5,7 +5,7 @@
# Combattant Homme-Corbeau
- Source: (LDM p240)(TOB p323)
-- TOB: Ravenfolk Warrior
+- Alias: Ravenfolk Warrior
- Humanoïde (kenku) de taille Moyenne (M), neutre
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 15 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_combattant_tosculi.md b/Data/HD/tome_of_beasts_combattant_tosculi.md
index f80c9ca9..e587a06f 100644
--- a/Data/HD/tome_of_beasts_combattant_tosculi.md
+++ b/Data/HD/tome_of_beasts_combattant_tosculi.md
@@ -5,7 +5,7 @@
# Combattant Tosculi
- Source: (LDM p387)(TOB p386)
-- TOB: Tosculi Warrior
+- Alias: Tosculi Warrior
- Créature monstrueuse de Petite taille (P), loyale mauvaise
- **Terrain** Collines / Vallées, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_commandant_des_chevaliers_noirs.md b/Data/HD/tome_of_beasts_commandant_des_chevaliers_noirs.md
index 6a22172e..b11bc2dc 100644
--- a/Data/HD/tome_of_beasts_commandant_des_chevaliers_noirs.md
+++ b/Data/HD/tome_of_beasts_commandant_des_chevaliers_noirs.md
@@ -5,7 +5,7 @@
# Commandant Des Chevaliers Noirs
- Source: (LDM p422)(TOB p418)
-- TOB: Black Knight Commander
+- Alias: Black Knight Commander
- Humanoïde de taille Moyenne (n'importe quelle race) (M), loyal mauvais
- **Classe d'armure** 18 (harnois)
- **Points de vie** 78 (12d8 + 24)
diff --git a/Data/HD/tome_of_beasts_conglomerat_osseux.md b/Data/HD/tome_of_beasts_conglomerat_osseux.md
index 8f69ba30..07a9e5ac 100644
--- a/Data/HD/tome_of_beasts_conglomerat_osseux.md
+++ b/Data/HD/tome_of_beasts_conglomerat_osseux.md
@@ -5,7 +5,7 @@
# Conglomérat Osseux
- Source: (LDM p67)(TOB p39)
-- TOB: Bone Collective
+- Alias: Bone Collective
- Mort-vivant de Petite taille (P), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 120 (16d6+64)
diff --git a/Data/HD/tome_of_beasts_coquicape.md b/Data/HD/tome_of_beasts_coquicape.md
index 353fbd5b..4e0cbc24 100644
--- a/Data/HD/tome_of_beasts_coquicape.md
+++ b/Data/HD/tome_of_beasts_coquicape.md
@@ -5,7 +5,7 @@
# Coquicape
- Source: (LDM p68)(TOB p346)
-- TOB: Shellycoat
+- Alias: Shellycoat
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 75 (10d8+30)
diff --git a/Data/HD/tome_of_beasts_couveteux.md b/Data/HD/tome_of_beasts_couveteux.md
index 76c9e397..ddcf946a 100644
--- a/Data/HD/tome_of_beasts_couveteux.md
+++ b/Data/HD/tome_of_beasts_couveteux.md
@@ -5,7 +5,7 @@
# Couveteux
- Source: (LDM p69)(TOB p45)
-- TOB: Broodiken
+- Alias: Broodiken
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 55 (10d4+30)
- **Vitesse** 6m, escalade 6m
diff --git a/Data/HD/tome_of_beasts_crabe_garrotteur.md b/Data/HD/tome_of_beasts_crabe_garrotteur.md
index cae9e825..bdad76f5 100644
--- a/Data/HD/tome_of_beasts_crabe_garrotteur.md
+++ b/Data/HD/tome_of_beasts_crabe_garrotteur.md
@@ -5,7 +5,7 @@
# Crabe Garrotteur
- Source: (LDM p70)(TOB p208)
-- TOB: Garroter Crab
+- Alias: Garroter Crab
- Bête de Très Petite taille (TP), non-alignée
- **Terrain** Littoral, Caverne sous-marine
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_crabe_osseux.md b/Data/HD/tome_of_beasts_crabe_osseux.md
index 583703dc..6dcc3b83 100644
--- a/Data/HD/tome_of_beasts_crabe_osseux.md
+++ b/Data/HD/tome_of_beasts_crabe_osseux.md
@@ -5,7 +5,7 @@
# Crabe Osseux
- Source: (LDM p71)(TOB p40)
-- TOB: Bone Crab
+- Alias: Bone Crab
- Bête de Petite taille (P), neutre
- **Terrain** Littoral
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_croasseur_funeste_homme_corbeau.md b/Data/HD/tome_of_beasts_croasseur_funeste_homme_corbeau.md
index 916acc5f..68d23ed5 100644
--- a/Data/HD/tome_of_beasts_croasseur_funeste_homme_corbeau.md
+++ b/Data/HD/tome_of_beasts_croasseur_funeste_homme_corbeau.md
@@ -5,7 +5,7 @@
# Croasseur Funeste Homme-Corbeau
- Source: (LDM p241)(TOB p324)
-- TOB: Ravenfolk Doom Croaker
+- Alias: Ravenfolk Doom Croaker
- Humanoïde (kenku) de taille Moyenne (M), neutre
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 14 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_croco_de_verre.md b/Data/HD/tome_of_beasts_croco_de_verre.md
index 42749d74..050216bb 100644
--- a/Data/HD/tome_of_beasts_croco_de_verre.md
+++ b/Data/HD/tome_of_beasts_croco_de_verre.md
@@ -5,7 +5,7 @@
# Croco De Verre
- Source: (LDM p72)(TOB p228)
-- TOB: Glass Gator
+- Alias: Glass Gator
- Bête de Grande taille (G), non-alignée
- **Terrain** Littoral, Mangrove / Marécage, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_cynome.md b/Data/HD/tome_of_beasts_cynome.md
index c514243f..1daee9c5 100644
--- a/Data/HD/tome_of_beasts_cynome.md
+++ b/Data/HD/tome_of_beasts_cynome.md
@@ -5,7 +5,7 @@
# Cynome
- Source: (LDM p73)(TOB p49)
-- TOB: Burrowling
+- Alias: Burrowling
- Humanoïde de Petite taille (cynome) (P), loyal neutre
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_dau.md b/Data/HD/tome_of_beasts_dau.md
index 84e5172b..b5f708e4 100644
--- a/Data/HD/tome_of_beasts_dau.md
+++ b/Data/HD/tome_of_beasts_dau.md
@@ -5,7 +5,7 @@
# Dau
- Source: (LDM p74)(TOB p70)
-- TOB: Dau
+- Alias: Dau
- Fée de Petite taille (P), chaotique neutre
- **Terrain** Désert chaud
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_defenseur_erina.md b/Data/HD/tome_of_beasts_defenseur_erina.md
index 0cf330c6..535c648c 100644
--- a/Data/HD/tome_of_beasts_defenseur_erina.md
+++ b/Data/HD/tome_of_beasts_defenseur_erina.md
@@ -5,7 +5,7 @@
# Défenseur Erina
- Source: (LDM p172)(TOB p178)
-- TOB: Erina Defender
+- Alias: Erina Defender
- Humanoïde (erina) de Petite taille (P), neutre
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (chemise de mailles)
diff --git a/Data/HD/tome_of_beasts_demoiselle_glacee.md b/Data/HD/tome_of_beasts_demoiselle_glacee.md
index 89c8bd85..86c269ac 100644
--- a/Data/HD/tome_of_beasts_demoiselle_glacee.md
+++ b/Data/HD/tome_of_beasts_demoiselle_glacee.md
@@ -5,7 +5,7 @@
# Demoiselle Glacée
- Source: (LDM p75)(TOB p254)
-- TOB: Ice Maiden
+- Alias: Ice Maiden
- Fée de taille Moyenne (M), loyale mauvaise
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_demon_de_seve.md b/Data/HD/tome_of_beasts_demon_de_seve.md
index 0e0ad685..a522be73 100644
--- a/Data/HD/tome_of_beasts_demon_de_seve.md
+++ b/Data/HD/tome_of_beasts_demon_de_seve.md
@@ -5,7 +5,7 @@
# Démon De Sève
- Source: (LDM p78)(TOB p335)
-- TOB: Sap Demon
+- Alias: Sap Demon
- Vase de Petite taille (P), chaotique mauvaise
- **Terrain** Bois / Forêt
- **Classe d'armure** 13 (naturelle)
diff --git a/Data/HD/tome_of_beasts_demon_kishi.md b/Data/HD/tome_of_beasts_demon_kishi.md
index f9e6e134..7faa7c22 100644
--- a/Data/HD/tome_of_beasts_demon_kishi.md
+++ b/Data/HD/tome_of_beasts_demon_kishi.md
@@ -5,7 +5,7 @@
# Démon Kishi
- Source: (LDM p79)(TOB p77)
-- TOB: Kishi Demon
+- Alias: Kishi Demon
- Fiélon (démon) de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 18 (armure naturelle, bouclier)
- **Points de vie** 119 (14d8+56)
diff --git a/Data/HD/tome_of_beasts_demon_psoglav.md b/Data/HD/tome_of_beasts_demon_psoglav.md
index de5ce75c..5cea17f9 100644
--- a/Data/HD/tome_of_beasts_demon_psoglav.md
+++ b/Data/HD/tome_of_beasts_demon_psoglav.md
@@ -5,7 +5,7 @@
# Démon Psoglav
- Source: (LDM p81)(TOB p79)
-- TOB: Psoglav Demon
+- Alias: Psoglav Demon
- Fiélon (démon) de Grande taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 115 (11d10+55)
diff --git a/Data/HD/tome_of_beasts_devoreur_dames.md b/Data/HD/tome_of_beasts_devoreur_dames.md
index 56009f52..78e1130f 100644
--- a/Data/HD/tome_of_beasts_devoreur_dames.md
+++ b/Data/HD/tome_of_beasts_devoreur_dames.md
@@ -5,7 +5,7 @@
# Dévoreur D'Âmes
- Source: (LDM p96)(TOB p356)
-- TOB: Soul Eater
+- Alias: Soul Eater
- Fiélon de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 16
- **Points de vie** 104 (16d8+32)
diff --git a/Data/HD/tome_of_beasts_diable_automate.md b/Data/HD/tome_of_beasts_diable_automate.md
index 0e7b0cac..5043c946 100644
--- a/Data/HD/tome_of_beasts_diable_automate.md
+++ b/Data/HD/tome_of_beasts_diable_automate.md
@@ -5,7 +5,7 @@
# Diable Automate
- Source: (LDM p105)(TOB p102)
-- TOB: Automata Devil
+- Alias: Automata Devil
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 168 (16d10+80)
diff --git a/Data/HD/tome_of_beasts_diable_cristallin.md b/Data/HD/tome_of_beasts_diable_cristallin.md
index 3559ee0a..a53fa96c 100644
--- a/Data/HD/tome_of_beasts_diable_cristallin.md
+++ b/Data/HD/tome_of_beasts_diable_cristallin.md
@@ -5,7 +5,7 @@
# Diable Cristallin
- Source: (LDM p108)(TOB p105)
-- TOB: Crystalline Devil
+- Alias: Crystalline Devil
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 102 (12d8+48)
diff --git a/Data/HD/tome_of_beasts_diable_de_sel.md b/Data/HD/tome_of_beasts_diable_de_sel.md
index 388c3269..76b77a6f 100644
--- a/Data/HD/tome_of_beasts_diable_de_sel.md
+++ b/Data/HD/tome_of_beasts_diable_de_sel.md
@@ -5,7 +5,7 @@
# Diable De Sel
- Source: (LDM p110)(TOB p113)
-- TOB: Salt Devil
+- Alias: Salt Devil
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_diable_dencre.md b/Data/HD/tome_of_beasts_diable_dencre.md
index 83f17294..66ee733a 100644
--- a/Data/HD/tome_of_beasts_diable_dencre.md
+++ b/Data/HD/tome_of_beasts_diable_dencre.md
@@ -5,7 +5,7 @@
# Diable D'Encre
- Source: (LDM p109)(TOB p108)
-- TOB: Ink Devil
+- Alias: Ink Devil
- Fiélon (diable) de Petite taille (P), loyal mauvais
- **Classe d'armure** 14
- **Points de vie** 54 (12d6+12)
diff --git a/Data/HD/tome_of_beasts_diable_dore.md b/Data/HD/tome_of_beasts_diable_dore.md
index 63d5b716..4e7513e2 100644
--- a/Data/HD/tome_of_beasts_diable_dore.md
+++ b/Data/HD/tome_of_beasts_diable_dore.md
@@ -5,7 +5,7 @@
# Diable Doré
- Source: (LDM p111)(TOB p106)
-- TOB: Gilded Devil
+- Alias: Gilded Devil
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 16 (armure de pièces)
- **Points de vie** 112 (15d8+45)
diff --git a/Data/HD/tome_of_beasts_diable_lunaire.md b/Data/HD/tome_of_beasts_diable_lunaire.md
index 64bb30b3..4bca27cd 100644
--- a/Data/HD/tome_of_beasts_diable_lunaire.md
+++ b/Data/HD/tome_of_beasts_diable_lunaire.md
@@ -5,7 +5,7 @@
# Diable Lunaire
- Source: (LDM p114)(TOB p110)
-- TOB: Lunar Devil
+- Alias: Lunar Devil
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 94 (9d10+45)
diff --git a/Data/HD/tome_of_beasts_diable_orobas.md b/Data/HD/tome_of_beasts_diable_orobas.md
index 1f045e3b..3f339916 100644
--- a/Data/HD/tome_of_beasts_diable_orobas.md
+++ b/Data/HD/tome_of_beasts_diable_orobas.md
@@ -5,7 +5,7 @@
# Diable Orobas
- Source: (LDM p115)(TOB p111)
-- TOB: Orobas Devil
+- Alias: Orobas Devil
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 261 (14d10+126)
diff --git a/Data/HD/tome_of_beasts_dipsa.md b/Data/HD/tome_of_beasts_dipsa.md
index 4708869b..f47dfdc8 100644
--- a/Data/HD/tome_of_beasts_dipsa.md
+++ b/Data/HD/tome_of_beasts_dipsa.md
@@ -5,7 +5,7 @@
# Dipsa
- Source: (LDM p121)(TOB p118)
-- TOB: Dipsa
+- Alias: Dipsa
- Vase de Très Petite taille (TP), non alignée
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_dissimortuum.md b/Data/HD/tome_of_beasts_dissimortuum.md
index 0974a9f4..acee2745 100644
--- a/Data/HD/tome_of_beasts_dissimortuum.md
+++ b/Data/HD/tome_of_beasts_dissimortuum.md
@@ -5,7 +5,7 @@
# Dissimortuum
- Source: (LDM p122)(TOB p119)
-- TOB: Dissimortuum
+- Alias: Dissimortuum
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 112 (15d8+45)
diff --git a/Data/HD/tome_of_beasts_domovoi.md b/Data/HD/tome_of_beasts_domovoi.md
index 7d2aa562..aae7a62e 100644
--- a/Data/HD/tome_of_beasts_domovoi.md
+++ b/Data/HD/tome_of_beasts_domovoi.md
@@ -5,7 +5,7 @@
# Domovoï
- Source: (LDM p123)(TOB p122)
-- TOB: Domovoi
+- Alias: Domovoi
- Fée de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt, Ruines extérieures
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_doppelrat.md b/Data/HD/tome_of_beasts_doppelrat.md
index 73a3485f..20903a10 100644
--- a/Data/HD/tome_of_beasts_doppelrat.md
+++ b/Data/HD/tome_of_beasts_doppelrat.md
@@ -5,7 +5,7 @@
# Doppelrat
- Source: (LDM p124)(TOB p123)
-- TOB: Doppelrat
+- Alias: Doppelrat
- Créature monstrueuse de Très Petite taille (TP), non alignée
- **Terrain** Caverne aménagée, Donjon maçonné, Ruines souterraines
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_dorreq.md b/Data/HD/tome_of_beasts_dorreq.md
index 6c8e6fe6..36de4a23 100644
--- a/Data/HD/tome_of_beasts_dorreq.md
+++ b/Data/HD/tome_of_beasts_dorreq.md
@@ -5,7 +5,7 @@
# Dorreq
- Source: (LDM p125)(TOB p124)
-- TOB: Dorreq
+- Alias: Dorreq
- Aberration de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 93 (17d8+17)
diff --git a/Data/HD/tome_of_beasts_dragon_de_flammes_adulte.md b/Data/HD/tome_of_beasts_dragon_de_flammes_adulte.md
index c73f121a..2ff8aa8d 100644
--- a/Data/HD/tome_of_beasts_dragon_de_flammes_adulte.md
+++ b/Data/HD/tome_of_beasts_dragon_de_flammes_adulte.md
@@ -5,7 +5,7 @@
# Dragon De Flammes, Adulte
- Source: (LDM p126)(TOB p129)
-- TOB: Adult Flame Dragon
+- Alias: Adult Flame Dragon
- Dragon de Très Grande taille (TG), chaotique mauvais
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_de_flammes_dragonnet.md b/Data/HD/tome_of_beasts_dragon_de_flammes_dragonnet.md
index 781e3339..e7575cca 100644
--- a/Data/HD/tome_of_beasts_dragon_de_flammes_dragonnet.md
+++ b/Data/HD/tome_of_beasts_dragon_de_flammes_dragonnet.md
@@ -5,7 +5,7 @@
# Dragon De Flammes, Dragonnet
- Source: (LDM p127)(TOB p131)
-- TOB: Flame Dragon Wyrmling
+- Alias: Flame Dragon Wyrmling
- Dragon de taille Moyenne (M), chaotique mauvais
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_de_flammes_jeune.md b/Data/HD/tome_of_beasts_dragon_de_flammes_jeune.md
index d3ae4725..45e56c53 100644
--- a/Data/HD/tome_of_beasts_dragon_de_flammes_jeune.md
+++ b/Data/HD/tome_of_beasts_dragon_de_flammes_jeune.md
@@ -5,7 +5,7 @@
# Dragon De Flammes, Jeune
- Source: (LDM p128)(TOB p130)
-- TOB: Young Flame Dragon
+- Alias: Young Flame Dragon
- Dragon de Grande taille (G), chaotique mauvais
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_de_flammes_venerable.md b/Data/HD/tome_of_beasts_dragon_de_flammes_venerable.md
index 999fb9dc..3f575d97 100644
--- a/Data/HD/tome_of_beasts_dragon_de_flammes_venerable.md
+++ b/Data/HD/tome_of_beasts_dragon_de_flammes_venerable.md
@@ -5,7 +5,7 @@
# Dragon De Flammes, Vénérable
- Source: (LDM p128)(TOB p128)
-- TOB: Ancient Flame Dragon
+- Alias: Ancient Flame Dragon
- Dragon de taille Gigantesque (Gig), chaotique mauvais
- **Terrain** Montagnes, Ruines extérieures
- **Classe d'armure** 22 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_de_mithral_adulte.md b/Data/HD/tome_of_beasts_dragon_de_mithral_adulte.md
index a0a20d3d..bad93ad8 100644
--- a/Data/HD/tome_of_beasts_dragon_de_mithral_adulte.md
+++ b/Data/HD/tome_of_beasts_dragon_de_mithral_adulte.md
@@ -5,7 +5,7 @@
# Dragon De Mithral, Adulte
- Source: (LDM p130)(TOB p133)
-- TOB: Adult Mithral Dragon
+- Alias: Adult Mithral Dragon
- Dragon de Très Grande taille (TG), neutre
- **Terrain** Montagnes
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_de_mithral_jeune.md b/Data/HD/tome_of_beasts_dragon_de_mithral_jeune.md
index 6e77f222..fe6ae749 100644
--- a/Data/HD/tome_of_beasts_dragon_de_mithral_jeune.md
+++ b/Data/HD/tome_of_beasts_dragon_de_mithral_jeune.md
@@ -5,7 +5,7 @@
# Dragon De Mithral, Jeune
- Source: (LDM p131)(TOB p134)
-- TOB: Young Mithral Dragon
+- Alias: Young Mithral Dragon
- Dragon de taille Moyenne (M), neutre
- **Terrain** Montagnes
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_de_mithral_venerable.md b/Data/HD/tome_of_beasts_dragon_de_mithral_venerable.md
index 53346303..832526fd 100644
--- a/Data/HD/tome_of_beasts_dragon_de_mithral_venerable.md
+++ b/Data/HD/tome_of_beasts_dragon_de_mithral_venerable.md
@@ -5,7 +5,7 @@
# Dragon De Mithral, Vénérable
- Source: (LDM p131)(TOB p132)
-- TOB: Ancient Mithral Dragon
+- Alias: Ancient Mithral Dragon
- Dragon de taille Gigantesque (Gig), neutre
- **Terrain** Montagnes
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_des_cavernes_adulte.md b/Data/HD/tome_of_beasts_dragon_des_cavernes_adulte.md
index 49d6282f..24b24258 100644
--- a/Data/HD/tome_of_beasts_dragon_des_cavernes_adulte.md
+++ b/Data/HD/tome_of_beasts_dragon_des_cavernes_adulte.md
@@ -5,7 +5,7 @@
# Dragon Des Cavernes, Adulte
- Source: (LDM p133)(TOB p125)
-- TOB: Adult Cave Dragon
+- Alias: Adult Cave Dragon
- Dragon de Très Grande taille (TG), neutre mauvais
- **Terrain** Caverne aménagée, Caverne naturelle
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_des_cavernes_dragonnet.md b/Data/HD/tome_of_beasts_dragon_des_cavernes_dragonnet.md
index 472a34a4..102afa0b 100644
--- a/Data/HD/tome_of_beasts_dragon_des_cavernes_dragonnet.md
+++ b/Data/HD/tome_of_beasts_dragon_des_cavernes_dragonnet.md
@@ -5,7 +5,7 @@
# Dragon Des Cavernes, Dragonnet
- Source: (LDM p135)(TOB p127)
-- TOB: Cave Dragon Wyrmling
+- Alias: Cave Dragon Wyrmling
- Dragon de taille Moyenne (M), neutre mauvais
- **Terrain** Caverne aménagée, Caverne naturelle
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_des_cavernes_jeune.md b/Data/HD/tome_of_beasts_dragon_des_cavernes_jeune.md
index d2a2be69..5c8e5b65 100644
--- a/Data/HD/tome_of_beasts_dragon_des_cavernes_jeune.md
+++ b/Data/HD/tome_of_beasts_dragon_des_cavernes_jeune.md
@@ -5,7 +5,7 @@
# Dragon Des Cavernes, Jeune
- Source: (LDM p135)(TOB p127)
-- TOB: Young Cave Dragon
+- Alias: Young Cave Dragon
- Dragon de Grande taille (G), neutre mauvais
- **Terrain** Caverne aménagée, Caverne naturelle
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_du_vent_adulte.md b/Data/HD/tome_of_beasts_dragon_du_vent_adulte.md
index 1c0ddeea..c71b82e5 100644
--- a/Data/HD/tome_of_beasts_dragon_du_vent_adulte.md
+++ b/Data/HD/tome_of_beasts_dragon_du_vent_adulte.md
@@ -5,7 +5,7 @@
# Dragon Du Vent, Adulte
- Source: (LDM p136)(TOB p143)
-- TOB: Wind Dragon, Adult
+- Alias: Wind Dragon, Adult
- Dragon de Très Grande taille (TG), chaotique neutre
- **Terrain** Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_du_vent_dragonnet.md b/Data/HD/tome_of_beasts_dragon_du_vent_dragonnet.md
index eca8e1f9..8e96ce3d 100644
--- a/Data/HD/tome_of_beasts_dragon_du_vent_dragonnet.md
+++ b/Data/HD/tome_of_beasts_dragon_du_vent_dragonnet.md
@@ -5,7 +5,7 @@
# Dragon Du Vent, Dragonnet
- Source: (LDM p137)(TOB p145)
-- TOB: Wind Dragon, Wyrmling
+- Alias: Wind Dragon, Wyrmling
- Dragon de taille Moyenne (M), chaotique neutre
- **Terrain** Collines / Vallées, Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14
diff --git a/Data/HD/tome_of_beasts_dragon_du_vent_jeune.md b/Data/HD/tome_of_beasts_dragon_du_vent_jeune.md
index f1b75b0c..e95a5443 100644
--- a/Data/HD/tome_of_beasts_dragon_du_vent_jeune.md
+++ b/Data/HD/tome_of_beasts_dragon_du_vent_jeune.md
@@ -5,7 +5,7 @@
# Dragon Du Vent, Jeune
- Source: (LDM p137)(TOB p144)
-- TOB: Wind Dragon, Young
+- Alias: Wind Dragon, Young
- Dragon de Grande taille (G), chaotique neutre
- **Terrain** Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_du_vent_venerable.md b/Data/HD/tome_of_beasts_dragon_du_vent_venerable.md
index f9d9eb55..12e6c29c 100644
--- a/Data/HD/tome_of_beasts_dragon_du_vent_venerable.md
+++ b/Data/HD/tome_of_beasts_dragon_du_vent_venerable.md
@@ -5,7 +5,7 @@
# Dragon Du Vent, Vénérable
- Source: (LDM p138)(TOB p142)
-- TOB: Wind Dragon, Ancient
+- Alias: Wind Dragon, Ancient
- Dragon de taille Gigantesque (Gig), chaotique neutre
- **Terrain** Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_du_vide_adulte.md b/Data/HD/tome_of_beasts_dragon_du_vide_adulte.md
index 3c2544a3..eb2506ec 100644
--- a/Data/HD/tome_of_beasts_dragon_du_vide_adulte.md
+++ b/Data/HD/tome_of_beasts_dragon_du_vide_adulte.md
@@ -5,7 +5,7 @@
# Dragon Du Vide, Adulte
- Source: (LDM p140)(TOB p139)
-- TOB: Adult Void Dragon
+- Alias: Adult Void Dragon
- Dragon de Très Grande taille (TG), chaotique neutre
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 229 (17d12+119)
diff --git a/Data/HD/tome_of_beasts_dragon_du_vide_dragonnet.md b/Data/HD/tome_of_beasts_dragon_du_vide_dragonnet.md
index 66367f84..1c866997 100644
--- a/Data/HD/tome_of_beasts_dragon_du_vide_dragonnet.md
+++ b/Data/HD/tome_of_beasts_dragon_du_vide_dragonnet.md
@@ -5,7 +5,7 @@
# Dragon Du Vide, Dragonnet
- Source: (LDM p141)(TOB p140)
-- TOB: Void Dragon Wyrmling
+- Alias: Void Dragon Wyrmling
- Dragon de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 45 (6d8+18)
diff --git a/Data/HD/tome_of_beasts_dragon_du_vide_jeune.md b/Data/HD/tome_of_beasts_dragon_du_vide_jeune.md
index 24cf2dc8..a838fe85 100644
--- a/Data/HD/tome_of_beasts_dragon_du_vide_jeune.md
+++ b/Data/HD/tome_of_beasts_dragon_du_vide_jeune.md
@@ -5,7 +5,7 @@
# Dragon Du Vide, Jeune
- Source: (LDM p141)(TOB p140)
-- TOB: Young Void Dragon
+- Alias: Young Void Dragon
- Dragon de Grande taille (G), chaotique neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 157 (15d10+75)
diff --git a/Data/HD/tome_of_beasts_dragon_du_vide_venerable.md b/Data/HD/tome_of_beasts_dragon_du_vide_venerable.md
index 775e2da6..71814140 100644
--- a/Data/HD/tome_of_beasts_dragon_du_vide_venerable.md
+++ b/Data/HD/tome_of_beasts_dragon_du_vide_venerable.md
@@ -5,7 +5,7 @@
# Dragon Du Vide, Vénérable
- Source: (LDM p142)(TOB p138)
-- TOB: Ancient Void Dragon
+- Alias: Ancient Void Dragon
- Dragon de taille Gigantesque (Gig), chaotique neutre
- **Classe d'armure** 22 (armure naturelle)
- **Points de vie** 448 (23d20+207)
diff --git a/Data/HD/tome_of_beasts_dragon_marin_adulte.md b/Data/HD/tome_of_beasts_dragon_marin_adulte.md
index a420259f..064a1fd9 100644
--- a/Data/HD/tome_of_beasts_dragon_marin_adulte.md
+++ b/Data/HD/tome_of_beasts_dragon_marin_adulte.md
@@ -5,7 +5,7 @@
# Dragon Marin, Adulte
- Source: (LDM p144)(TOB p135)
-- TOB: Adult Sea Dragon
+- Alias: Adult Sea Dragon
- Dragon de Très Grande taille (TG), neutre mauvais
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_marin_dragonnet.md b/Data/HD/tome_of_beasts_dragon_marin_dragonnet.md
index 444624e2..9855538f 100644
--- a/Data/HD/tome_of_beasts_dragon_marin_dragonnet.md
+++ b/Data/HD/tome_of_beasts_dragon_marin_dragonnet.md
@@ -5,7 +5,7 @@
# Dragon Marin, Dragonnet
- Source: (LDM p144)(TOB p136)
-- TOB: Sea Dragon Wyrmling
+- Alias: Sea Dragon Wyrmling
- Dragon de taille Moyenne (M), neutre mauvais
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragon_marin_jeune.md b/Data/HD/tome_of_beasts_dragon_marin_jeune.md
index f34b1dcd..bfcc2346 100644
--- a/Data/HD/tome_of_beasts_dragon_marin_jeune.md
+++ b/Data/HD/tome_of_beasts_dragon_marin_jeune.md
@@ -5,7 +5,7 @@
# Dragon Marin, Jeune
- Source: (LDM p145)(TOB p136)
-- TOB: Young Sea Dragon
+- Alias: Young Sea Dragon
- Dragon de Grande taille (G), neutre mauvais
- **Terrain** Caverne sous-marine
- **Terrain** Mer / Océan
diff --git a/Data/HD/tome_of_beasts_dragon_marin_venerable.md b/Data/HD/tome_of_beasts_dragon_marin_venerable.md
index 7cb66859..5ff5f5e4 100644
--- a/Data/HD/tome_of_beasts_dragon_marin_venerable.md
+++ b/Data/HD/tome_of_beasts_dragon_marin_venerable.md
@@ -5,7 +5,7 @@
# Dragon Marin, Vénérable
- Source: (LDM p145)(TOB p135)
-- TOB: Ancient Sea Dragon
+- Alias: Ancient Sea Dragon
- Dragon de taille Gigantesque (Gig), chaotique neutre
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 22 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dragonette_lanterne.md b/Data/HD/tome_of_beasts_dragonette_lanterne.md
index e808b0e2..99c131db 100644
--- a/Data/HD/tome_of_beasts_dragonette_lanterne.md
+++ b/Data/HD/tome_of_beasts_dragonette_lanterne.md
@@ -5,7 +5,7 @@
# Dragonette Lanterne
- Source: (LDM p148)(TOB p270)
-- TOB: Lantern Dragonette
+- Alias: Lantern Dragonette
- Dragon de Très Petite taille (TP), loyal neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_drake_de_cendres.md b/Data/HD/tome_of_beasts_drake_de_cendres.md
index a724d534..71cc7210 100644
--- a/Data/HD/tome_of_beasts_drake_de_cendres.md
+++ b/Data/HD/tome_of_beasts_drake_de_cendres.md
@@ -5,7 +5,7 @@
# Drake De Cendres
- Source: (LDM p149)(TOB p149)
-- TOB: Ash Drake
+- Alias: Ash Drake
- Dragon de Petite taille (P), neutre mauvais
- **Terrain** Montagnes
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_drake_de_corail.md b/Data/HD/tome_of_beasts_drake_de_corail.md
index c4ce0a86..a504ce96 100644
--- a/Data/HD/tome_of_beasts_drake_de_corail.md
+++ b/Data/HD/tome_of_beasts_drake_de_corail.md
@@ -5,7 +5,7 @@
# Drake De Corail
- Source: (LDM p150)(TOB p150)
-- TOB: Coral Drake
+- Alias: Coral Drake
- Dragon de taille Moyenne (M), neutre mauvais
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_drake_de_papier.md b/Data/HD/tome_of_beasts_drake_de_papier.md
index 61873efb..2b58cc12 100644
--- a/Data/HD/tome_of_beasts_drake_de_papier.md
+++ b/Data/HD/tome_of_beasts_drake_de_papier.md
@@ -5,7 +5,7 @@
# Drake De Papier
- Source: (LDM p151)(TOB p154)
-- TOB: Paper Drake
+- Alias: Paper Drake
- Dragon de Petite taille (P), neutre
- **Classe d'armure** 13
- **Points de vie** 78 (12d6+36)
diff --git a/Data/HD/tome_of_beasts_drake_de_rouille.md b/Data/HD/tome_of_beasts_drake_de_rouille.md
index 47931ddd..65f58948 100644
--- a/Data/HD/tome_of_beasts_drake_de_rouille.md
+++ b/Data/HD/tome_of_beasts_drake_de_rouille.md
@@ -5,7 +5,7 @@
# Drake De Rouille
- Source: (LDM p152)(TOB p155)
-- TOB: Rust Drake
+- Alias: Rust Drake
- Dragon de taille Moyenne (M), chaotique mauvais
- **Terrain** Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_drake_des_profondeurs.md b/Data/HD/tome_of_beasts_drake_des_profondeurs.md
index 664d31c1..1cdce070 100644
--- a/Data/HD/tome_of_beasts_drake_des_profondeurs.md
+++ b/Data/HD/tome_of_beasts_drake_des_profondeurs.md
@@ -5,7 +5,7 @@
# Drake Des Profondeurs
- Source: (LDM p154)(TOB p152)
-- TOB: Deep Drake
+- Alias: Deep Drake
- Dragon de Grande taille (G), chaotique mauvais
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_drake_des_tavernes.md b/Data/HD/tome_of_beasts_drake_des_tavernes.md
index 5f7a95a2..53209fc9 100644
--- a/Data/HD/tome_of_beasts_drake_des_tavernes.md
+++ b/Data/HD/tome_of_beasts_drake_des_tavernes.md
@@ -5,7 +5,7 @@
# Drake Des Tavernes
- Source: (LDM p155)(TOB p148)
-- TOB: Alehouse Drake
+- Alias: Alehouse Drake
- Dragon de Très Petite taille (TP), chaotique neutre
- **Classe d'armure** 13
- **Points de vie** 65 (10d4+40)
diff --git a/Data/HD/tome_of_beasts_drake_pourpre.md b/Data/HD/tome_of_beasts_drake_pourpre.md
index 88a28748..df950189 100644
--- a/Data/HD/tome_of_beasts_drake_pourpre.md
+++ b/Data/HD/tome_of_beasts_drake_pourpre.md
@@ -5,7 +5,7 @@
# Drake Pourpre
- Source: (LDM p156)(TOB p151)
-- TOB: Crimson Drake
+- Alias: Crimson Drake
- Dragon de taille Très Petite (TP), chaotique mauvais
- **Terrain** Bois / Forêt
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_drake_stellaire.md b/Data/HD/tome_of_beasts_drake_stellaire.md
index e23dc204..1e577bd6 100644
--- a/Data/HD/tome_of_beasts_drake_stellaire.md
+++ b/Data/HD/tome_of_beasts_drake_stellaire.md
@@ -5,7 +5,7 @@
# Drake Stellaire
- Source: (LDM p157)(TOB p157)
-- TOB: Star Drake
+- Alias: Star Drake
- Dragon de Grande taille (G), neutre
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_drakon.md b/Data/HD/tome_of_beasts_drakon.md
index 5504fd61..8b0e5d0b 100644
--- a/Data/HD/tome_of_beasts_drakon.md
+++ b/Data/HD/tome_of_beasts_drakon.md
@@ -5,7 +5,7 @@
# Drakon
- Source: (LDM p158)(TOB p157)
-- TOB: Drakon
+- Alias: Drakon
- Bête de Grande taille (G), non alignée
- **Terrain** Littoral
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_dryade_epine_du_crepuscule.md b/Data/HD/tome_of_beasts_dryade_epine_du_crepuscule.md
index a707bcf9..5e6ca684 100644
--- a/Data/HD/tome_of_beasts_dryade_epine_du_crepuscule.md
+++ b/Data/HD/tome_of_beasts_dryade_epine_du_crepuscule.md
@@ -5,7 +5,7 @@
# Dryade Épine-Du-Crépuscule
- Source: (LDM p159)(TOB p160)
-- TOB: Duskthorn Dryad
+- Alias: Duskthorn Dryad
- Fée de taille Moyenne (M), chaotique
- **Terrain** Bois / Forêt
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_duelliste.md b/Data/HD/tome_of_beasts_duelliste.md
index c0c90e8f..1157365a 100644
--- a/Data/HD/tome_of_beasts_duelliste.md
+++ b/Data/HD/tome_of_beasts_duelliste.md
@@ -5,7 +5,7 @@
# Duelliste
- Source: (LDM p167)(TOB p171)
-- TOB: Duelist
+- Alias: Duelist
- Humanoïde (elfe) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 17 (armure de cuir clouté)
- **Points de vie** 117 (18d8+36)
diff --git a/Data/HD/tome_of_beasts_dullahan.md b/Data/HD/tome_of_beasts_dullahan.md
index 057cff8b..0bbaf343 100644
--- a/Data/HD/tome_of_beasts_dullahan.md
+++ b/Data/HD/tome_of_beasts_dullahan.md
@@ -5,7 +5,7 @@
# Dullahan
- Source: (LDM p160)(TOB p161)
-- TOB: Dullahan
+- Alias: Dullahan
- Fée de Grande taille (G), loyale mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 178 (17d10+85)
diff --git a/Data/HD/tome_of_beasts_eala.md b/Data/HD/tome_of_beasts_eala.md
index 331a7fb2..13dc11d6 100644
--- a/Data/HD/tome_of_beasts_eala.md
+++ b/Data/HD/tome_of_beasts_eala.md
@@ -5,7 +5,7 @@
# Eala
- Source: (LDM p161)(TOB p163)
-- TOB: Eala
+- Alias: Eala
- Créature monstrueuse de Petite taille (P), non-alignée
- **Classe d'armure** 15 (naturelle)
- **Points de vie** 40 (9d6+9)
diff --git a/Data/HD/tome_of_beasts_eclaireur_homme_corbeau.md b/Data/HD/tome_of_beasts_eclaireur_homme_corbeau.md
index 96506555..4c613e0c 100644
--- a/Data/HD/tome_of_beasts_eclaireur_homme_corbeau.md
+++ b/Data/HD/tome_of_beasts_eclaireur_homme_corbeau.md
@@ -5,7 +5,7 @@
# Éclaireur Homme-Corbeau
- Source: (LDM p242)(TOB p322)
-- TOB: Ravenfolk Scout
+- Alias: Ravenfolk Scout
- Humanoïde (kenku) de taille Moyenne (M), neutre
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 14 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_ecornifleur_erina.md b/Data/HD/tome_of_beasts_ecornifleur_erina.md
index 37db793f..cf0cb678 100644
--- a/Data/HD/tome_of_beasts_ecornifleur_erina.md
+++ b/Data/HD/tome_of_beasts_ecornifleur_erina.md
@@ -5,7 +5,7 @@
# Écornifleur Erina
- Source: (LDM p172)(TOB p178)
-- TOB: Erina Scrounger
+- Alias: Erina Scrounger
- Humanoïde (erina) de Petite taille (P), neutre
- **Terrain** Bois / Forêt, Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 12 (armure de cuir)
diff --git a/Data/HD/tome_of_beasts_edimmu.md b/Data/HD/tome_of_beasts_edimmu.md
index f05950ef..495f3fef 100644
--- a/Data/HD/tome_of_beasts_edimmu.md
+++ b/Data/HD/tome_of_beasts_edimmu.md
@@ -5,7 +5,7 @@
# Edimmu
- Source: (LDM p162)(TOB p165)
-- TOB: Edimmu
+- Alias: Edimmu
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_einherjar.md b/Data/HD/tome_of_beasts_einherjar.md
index b67f27f2..6c2bfaf7 100644
--- a/Data/HD/tome_of_beasts_einherjar.md
+++ b/Data/HD/tome_of_beasts_einherjar.md
@@ -5,7 +5,7 @@
# Einherjar
- Source: (LDM p163)(TOB p167)
-- TOB: Einherjar
+- Alias: Einherjar
- Humanoïde de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 18 (cotte de mailles et bouclier)
- **Points de vie** 119 (14d8+56)
diff --git a/Data/HD/tome_of_beasts_eleinomae.md b/Data/HD/tome_of_beasts_eleinomae.md
index e2a7cd39..c158ad04 100644
--- a/Data/HD/tome_of_beasts_eleinomae.md
+++ b/Data/HD/tome_of_beasts_eleinomae.md
@@ -5,7 +5,7 @@
# Eleinomae
- Source: (LDM p164)(TOB p168)
-- TOB: Eleinomae
+- Alias: Eleinomae
- Fée de taille Moyenne (M), chaotique mauvaise
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 18
diff --git a/Data/HD/tome_of_beasts_empereur_des_goules.md b/Data/HD/tome_of_beasts_empereur_des_goules.md
index 6c20e2f0..5d0d1412 100644
--- a/Data/HD/tome_of_beasts_empereur_des_goules.md
+++ b/Data/HD/tome_of_beasts_empereur_des_goules.md
@@ -5,7 +5,7 @@
# Empereur Des Goules
- Source: (LDM p219)(TOB p218)
-- TOB: Emperor of the Ghouls
+- Alias: Emperor of the Ghouls
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 204 (24d8+96)
diff --git a/Data/HD/tome_of_beasts_empoigneur_arboricole.md b/Data/HD/tome_of_beasts_empoigneur_arboricole.md
index c31c6c5a..4bf32bbc 100644
--- a/Data/HD/tome_of_beasts_empoigneur_arboricole.md
+++ b/Data/HD/tome_of_beasts_empoigneur_arboricole.md
@@ -5,7 +5,7 @@
# Empoigneur Arboricole
- Source: (LDM p170)(TOB p25)
-- TOB: Arboreal Grappler
+- Alias: Arboreal Grappler
- Aberration de taille Moyenne (M), neutre mauvais
- **Terrain** Jungle
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_enchanteresse.md b/Data/HD/tome_of_beasts_enchanteresse.md
index 4ed83c22..2750a4c6 100644
--- a/Data/HD/tome_of_beasts_enchanteresse.md
+++ b/Data/HD/tome_of_beasts_enchanteresse.md
@@ -5,7 +5,7 @@
# Enchanteresse
- Source: (LDM p168)(TOB p172)
-- TOB: Enchantress
+- Alias: Enchantress
- Humanoïde (fée des ombres) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 16 (cuirasse)
- **Points de vie** 123 (19d8+38)
diff --git a/Data/HD/tome_of_beasts_enfant_des_bruyeres.md b/Data/HD/tome_of_beasts_enfant_des_bruyeres.md
index c819a668..5a10e9a5 100644
--- a/Data/HD/tome_of_beasts_enfant_des_bruyeres.md
+++ b/Data/HD/tome_of_beasts_enfant_des_bruyeres.md
@@ -5,7 +5,7 @@
# Enfant Des Bruyères
- Source: (LDM p171)(TOB p56)
-- TOB: Child of the Briar
+- Alias: Child of the Briar
- Plante de Très Petite taille (TP), neutre mauvaise
- **Terrain** Bois / Forêt
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_escarmoucheur_homme_cafard.md b/Data/HD/tome_of_beasts_escarmoucheur_homme_cafard.md
index 50131089..643a0e23 100644
--- a/Data/HD/tome_of_beasts_escarmoucheur_homme_cafard.md
+++ b/Data/HD/tome_of_beasts_escarmoucheur_homme_cafard.md
@@ -5,7 +5,7 @@
# Escarmoucheur Homme-Cafard
- Source: (LDM p238)(TOB p329)
-- TOB: Roachling Skirmisher
+- Alias: Roachling Skirmisher
- Humanoïde (homme-cafard) de Petite taille (P), chaotique neutre
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_esclave_putresprit.md b/Data/HD/tome_of_beasts_esclave_putresprit.md
index f5d779dd..a4d9a264 100644
--- a/Data/HD/tome_of_beasts_esclave_putresprit.md
+++ b/Data/HD/tome_of_beasts_esclave_putresprit.md
@@ -5,7 +5,7 @@
# Esclave Putresprit
- Source: (LDM p173)(TOB p290)
-- TOB: Mindrot Thrall
+- Alias: Mindrot Thrall
- Plante de taille Moyenne (M), neutre
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 82 (11d8+33)
diff --git a/Data/HD/tome_of_beasts_esprit_du_feu.md b/Data/HD/tome_of_beasts_esprit_du_feu.md
index 02008d54..f35819cb 100644
--- a/Data/HD/tome_of_beasts_esprit_du_feu.md
+++ b/Data/HD/tome_of_beasts_esprit_du_feu.md
@@ -5,7 +5,7 @@
# Esprit Du Feu
- Source: (LDM p174)(TOB p202)
-- TOB: Firegeist
+- Alias: Firegeist
- Élémentaire de Petite taille (P), neutre mauvais
- **Classe d'armure** 14
- **Points de vie** 87 (25d6)
diff --git a/Data/HD/tome_of_beasts_etincelle.md b/Data/HD/tome_of_beasts_etincelle.md
index ea32a193..c393c5f5 100644
--- a/Data/HD/tome_of_beasts_etincelle.md
+++ b/Data/HD/tome_of_beasts_etincelle.md
@@ -5,7 +5,7 @@
# Étincelle
- Source: (LDM p175)(TOB p357)
-- TOB: Spark
+- Alias: Spark
- Élémentaire de Très Petite taille (TP), chaotique neutre
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 84 (13d4+52)
diff --git a/Data/HD/tome_of_beasts_factice_noctegarm.md b/Data/HD/tome_of_beasts_factice_noctegarm.md
index 69f591ab..776cccec 100644
--- a/Data/HD/tome_of_beasts_factice_noctegarm.md
+++ b/Data/HD/tome_of_beasts_factice_noctegarm.md
@@ -5,7 +5,7 @@
# Factice noctegarm
- Source: (LDM p322)(TOB p305)
-- TOB: Nightgarm Falseman
+- Alias: Nightgarm Falseman
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Vulnérabilité aux dégâts** radiants; aux armes en argent
diff --git a/Data/HD/tome_of_beasts_fanatique_du_scorpion.md b/Data/HD/tome_of_beasts_fanatique_du_scorpion.md
index c5051f62..28d9d36b 100644
--- a/Data/HD/tome_of_beasts_fanatique_du_scorpion.md
+++ b/Data/HD/tome_of_beasts_fanatique_du_scorpion.md
@@ -5,7 +5,7 @@
# Fanatique Du Scorpion
- Source: (LDM p422)(TOB p425)
-- TOB: Scorpion Cultist
+- Alias: Scorpion Cultist
- Humanoïde de taille Moyenne (n'importe quelle race) (M), neutre
- **Classe d'armure** 13 (armure de cuir)
- **Points de vie** 19 (3d8 + 6)
diff --git a/Data/HD/tome_of_beasts_fangeux.md b/Data/HD/tome_of_beasts_fangeux.md
index fa130817..edbf83a6 100644
--- a/Data/HD/tome_of_beasts_fangeux.md
+++ b/Data/HD/tome_of_beasts_fangeux.md
@@ -5,7 +5,7 @@
# Fangeux
- Source: (LDM p176)(TOB p292)
-- TOB: Miremal
+- Alias: Miremal
- Fée de Petite taille (P), chaotique mauvaise
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_far_darrig.md b/Data/HD/tome_of_beasts_far_darrig.md
index 4bfd8b6b..589c4002 100644
--- a/Data/HD/tome_of_beasts_far_darrig.md
+++ b/Data/HD/tome_of_beasts_far_darrig.md
@@ -5,7 +5,7 @@
# Far Darrig
- Source: (LDM p177)(TOB p179)
-- TOB: Far Darrig
+- Alias: Far Darrig
- Fée de Petite taille (P), neutre
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure de peau)
diff --git a/Data/HD/tome_of_beasts_faux_bourdon_tosculi.md b/Data/HD/tome_of_beasts_faux_bourdon_tosculi.md
index 88deb4c0..01ec5c18 100644
--- a/Data/HD/tome_of_beasts_faux_bourdon_tosculi.md
+++ b/Data/HD/tome_of_beasts_faux_bourdon_tosculi.md
@@ -5,7 +5,7 @@
# Faux-Bourdon Tosculi
- Source: (LDM p387)(TOB p386)
-- TOB: Tosculi Drone
+- Alias: Tosculi Drone
- Créature monstrueuse de Petite taille (P), loyale mauvaise
- **Terrain** Collines / Vallées, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_fee_des_ombres.md b/Data/HD/tome_of_beasts_fee_des_ombres.md
index 4564a72c..e13d1cd2 100644
--- a/Data/HD/tome_of_beasts_fee_des_ombres.md
+++ b/Data/HD/tome_of_beasts_fee_des_ombres.md
@@ -5,7 +5,7 @@
# Fée des ombres
- Source: (LDM p166)(TOB p171)
-- TOB: Shadow Fey
+- Alias: Shadow Fey
- Humanoïde (elfe) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 31 (7d8)
diff --git a/Data/HD/tome_of_beasts_felforge.md b/Data/HD/tome_of_beasts_felforge.md
index 32e04afb..7aa58a11 100644
--- a/Data/HD/tome_of_beasts_felforge.md
+++ b/Data/HD/tome_of_beasts_felforge.md
@@ -5,7 +5,7 @@
# Felforgé
- Source: (LDM p194)(TOB p182)
-- TOB: Fellforged
+- Alias: Fellforged
- Créature artificielle de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 135 (18d8+54)
diff --git a/Data/HD/tome_of_beasts_ferocien.md b/Data/HD/tome_of_beasts_ferocien.md
index 17c5e9f3..971d5881 100644
--- a/Data/HD/tome_of_beasts_ferocien.md
+++ b/Data/HD/tome_of_beasts_ferocien.md
@@ -5,7 +5,7 @@
# Férocien
- Source: (LDM p195)(TOB p338)
-- TOB: Savager
+- Alias: Savager
- Bête de Grande taille (G), neutre mauvaise
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_fext.md b/Data/HD/tome_of_beasts_fext.md
index 5a596506..bc82d9eb 100644
--- a/Data/HD/tome_of_beasts_fext.md
+++ b/Data/HD/tome_of_beasts_fext.md
@@ -5,7 +5,7 @@
# Fext
- Source: (LDM p196)(TOB p183)
-- TOB: Fext
+- Alias: Fext
- Mort-vivant de taille Moyenne (M), n'importe quel alignement
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 60 (11d8+11)
diff --git a/Data/HD/tome_of_beasts_fils_de_fenris.md b/Data/HD/tome_of_beasts_fils_de_fenris.md
index 8bfbf0ce..26dff1ac 100644
--- a/Data/HD/tome_of_beasts_fils_de_fenris.md
+++ b/Data/HD/tome_of_beasts_fils_de_fenris.md
@@ -5,7 +5,7 @@
# Fils De Fenris
- Source: (LDM p197)(TOB p355)
-- TOB: Son of Fenris
+- Alias: Son of Fenris
- Créature monstrueuse de Très Grande taille (TG), chaotique mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 175 (14d12+84)
diff --git a/Data/HD/tome_of_beasts_forgepeur.md b/Data/HD/tome_of_beasts_forgepeur.md
index 4a427850..411d70e9 100644
--- a/Data/HD/tome_of_beasts_forgepeur.md
+++ b/Data/HD/tome_of_beasts_forgepeur.md
@@ -5,7 +5,7 @@
# Forgepeur
- Source: (LDM p198)(TOB p181)
-- TOB: Fear Smith
+- Alias: Fear Smith
- Fée de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 123 (19d8+38)
diff --git a/Data/HD/tome_of_beasts_forgepiege_kobold.md b/Data/HD/tome_of_beasts_forgepiege_kobold.md
index b49ef58d..cd731535 100644
--- a/Data/HD/tome_of_beasts_forgepiege_kobold.md
+++ b/Data/HD/tome_of_beasts_forgepiege_kobold.md
@@ -5,7 +5,7 @@
# Forgepiège Kobold
- Source: (LDM p257)(TOB p264)
-- TOB: Kobold Trapsmith
+- Alias: Kobold Trapsmith
- Humanoïde de Petite taille (P), loyal neutre
- **Terrain** Caverne aménagée
- **Classe d'armure** 14 (armure de cuir)
diff --git a/Data/HD/tome_of_beasts_fourmi_geante.md b/Data/HD/tome_of_beasts_fourmi_geante.md
index 89847a20..189b9792 100644
--- a/Data/HD/tome_of_beasts_fourmi_geante.md
+++ b/Data/HD/tome_of_beasts_fourmi_geante.md
@@ -5,7 +5,7 @@
# Fourmi Géante
- Source: (LDM p199)(TOB p23)
-- TOB: Giant Ant
+- Alias: Giant Ant
- Bête de Grande taille (G), non alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 52 (7d10+14)
diff --git a/Data/HD/tome_of_beasts_fraughashar.md b/Data/HD/tome_of_beasts_fraughashar.md
index aeec871e..036b364d 100644
--- a/Data/HD/tome_of_beasts_fraughashar.md
+++ b/Data/HD/tome_of_beasts_fraughashar.md
@@ -5,7 +5,7 @@
# Fraughashar
- Source: (LDM p200)(TOB p206)
-- TOB: Fraughashar
+- Alias: Fraughashar
- Fée de Petite taille (P), neutre mauvaise
- **Classe d'armure** 15 (armure de cuir, bouclier)
- **Points de vie** 18 (4d6+4)
diff --git a/Data/HD/tome_of_beasts_gardien.md b/Data/HD/tome_of_beasts_gardien.md
index c2922f25..2a54ff93 100644
--- a/Data/HD/tome_of_beasts_gardien.md
+++ b/Data/HD/tome_of_beasts_gardien.md
@@ -5,7 +5,7 @@
# Gardien
- Source: (LDM p169)(TOB p174)
-- TOB: Guardian
+- Alias: Guardian
- Humanoïde (elfe) de Grande taille (G), neutre mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 110 (13d10+39)
diff --git a/Data/HD/tome_of_beasts_gardien_spectral.md b/Data/HD/tome_of_beasts_gardien_spectral.md
index 942fba4c..94d11001 100644
--- a/Data/HD/tome_of_beasts_gardien_spectral.md
+++ b/Data/HD/tome_of_beasts_gardien_spectral.md
@@ -5,7 +5,7 @@
# Gardien Spectral
- Source: (LDM p201)(TOB p358)
-- TOB: Spectral Guardian
+- Alias: Spectral Guardian
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 14
- **Points de vie** 110 (13d8+52)
diff --git a/Data/HD/tome_of_beasts_gardienne_des_bocages_alseide.md b/Data/HD/tome_of_beasts_gardienne_des_bocages_alseide.md
index 9590db07..f66ffacc 100644
--- a/Data/HD/tome_of_beasts_gardienne_des_bocages_alseide.md
+++ b/Data/HD/tome_of_beasts_gardienne_des_bocages_alseide.md
@@ -5,7 +5,7 @@
# Gardienne des bocages Alséide
- Source: (LDM p13)(TOB p15)
-- TOB: Alseid grovekeeper
+- Alias: Alseid grovekeeper
- Créature monstrueuse de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 15 (armure de cuir clouté)
- **Points de vie** 71 (13d8+13)
diff --git a/Data/HD/tome_of_beasts_gbahali_postosuchus.md b/Data/HD/tome_of_beasts_gbahali_postosuchus.md
index dce650b1..cabf5398 100644
--- a/Data/HD/tome_of_beasts_gbahali_postosuchus.md
+++ b/Data/HD/tome_of_beasts_gbahali_postosuchus.md
@@ -5,7 +5,7 @@
# Gbahali (Postosuchus)
- Source: (LDM p202)(TOB p209)
-- TOB: Gbahali (Postosuchus)
+- Alias: Gbahali (Postosuchus)
- Bête de Très Grande taille (TG), non-alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_geant_du_desert.md b/Data/HD/tome_of_beasts_geant_du_desert.md
index bbbce014..39002c63 100644
--- a/Data/HD/tome_of_beasts_geant_du_desert.md
+++ b/Data/HD/tome_of_beasts_geant_du_desert.md
@@ -5,7 +5,7 @@
# Géant Du Désert
- Source: (LDM p203)(TOB p222)
-- TOB: Desert Giant
+- Alias: Desert Giant
- Géant de Très Grande taille (TG), neutre
- **Terrain** Désert chaud
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_geant_jotun.md b/Data/HD/tome_of_beasts_geant_jotun.md
index 709e6461..64330aeb 100644
--- a/Data/HD/tome_of_beasts_geant_jotun.md
+++ b/Data/HD/tome_of_beasts_geant_jotun.md
@@ -5,7 +5,7 @@
# Géant Jotun
- Source: (LDM p206)(TOB p226)
-- TOB: Jotun Giant
+- Alias: Jotun Giant
- Géant de taille Gigantesque (Gig), chaotique neutre
- **Terrain** Collines / Vallées, Montagnes, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 20 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_geant_obese.md b/Data/HD/tome_of_beasts_geant_obese.md
index 59df2c06..0d562f9b 100644
--- a/Data/HD/tome_of_beasts_geant_obese.md
+++ b/Data/HD/tome_of_beasts_geant_obese.md
@@ -5,7 +5,7 @@
# Géant Obèse
- Source: (LDM p207)(TOB p223)
-- TOB: Flab Giant
+- Alias: Flab Giant
- Géant de Grande taille (G), chaotique mauvais
- **Terrain** Collines / Vallées, Montagnes
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_geant_thursir.md b/Data/HD/tome_of_beasts_geant_thursir.md
index a7e3306c..c6521a4c 100644
--- a/Data/HD/tome_of_beasts_geant_thursir.md
+++ b/Data/HD/tome_of_beasts_geant_thursir.md
@@ -5,7 +5,7 @@
# Géant Thursir
- Source: (LDM p208)(TOB p227)
-- TOB: Thursir Giant
+- Alias: Thursir Giant
- Géant de Grande taille (G), neutre mauvais (50 %) ou loyal mauvais (50 %)
- **Classe d'armure** 13 (chemise de mailles)
- **Points de vie** 114 (12d10+48)
diff --git a/Data/HD/tome_of_beasts_gendarme_mecanique.md b/Data/HD/tome_of_beasts_gendarme_mecanique.md
index 0b7ed224..d4594161 100644
--- a/Data/HD/tome_of_beasts_gendarme_mecanique.md
+++ b/Data/HD/tome_of_beasts_gendarme_mecanique.md
@@ -5,7 +5,7 @@
# Gendarme Mécanique
- Source: (LDM p294)(TOB p65)
-- TOB: Clockwork Watchman
+- Alias: Clockwork Watchman
- Créature artificielle de taille Moyenne (M), non alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 55 (10d8+10)
diff --git a/Data/HD/tome_of_beasts_genie_al_aeshma.md b/Data/HD/tome_of_beasts_genie_al_aeshma.md
index d2a47b01..02f8b5e8 100644
--- a/Data/HD/tome_of_beasts_genie_al_aeshma.md
+++ b/Data/HD/tome_of_beasts_genie_al_aeshma.md
@@ -5,7 +5,7 @@
# Génie Al-Aeshma
- Source: (LDM p209)(TOB p211)
-- TOB: Al-Aeshma Genie
+- Alias: Al-Aeshma Genie
- Élémentaire de Grande taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 172 (15d10+90)
diff --git a/Data/HD/tome_of_beasts_gerride.md b/Data/HD/tome_of_beasts_gerride.md
index 9b262735..8163c048 100644
--- a/Data/HD/tome_of_beasts_gerride.md
+++ b/Data/HD/tome_of_beasts_gerride.md
@@ -5,7 +5,7 @@
# Gerridé
- Source: (LDM p210)(TOB p212)
-- TOB: Gerridae
+- Alias: Gerridae
- Fée de Grande taille (G), neutre
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 14
diff --git a/Data/HD/tome_of_beasts_gobelin_poussiereux.md b/Data/HD/tome_of_beasts_gobelin_poussiereux.md
index 796c60f7..f05a70eb 100644
--- a/Data/HD/tome_of_beasts_gobelin_poussiereux.md
+++ b/Data/HD/tome_of_beasts_gobelin_poussiereux.md
@@ -5,7 +5,7 @@
# Gobelin Poussiéreux
- Source: (LDM p211)(TOB p232)
-- TOB: Dust Goblin
+- Alias: Dust Goblin
- Humanoïde (gobelinoïde) de Petite taille (P), neutre mauvais
- **Terrain** Désert chaud, Caverne aménagée, Ruines extérieures
- **Classe d'armure** 14 (armure de cuir)
diff --git a/Data/HD/tome_of_beasts_golem_a_vapeur.md b/Data/HD/tome_of_beasts_golem_a_vapeur.md
index 0ec3e2c3..76cefc73 100644
--- a/Data/HD/tome_of_beasts_golem_a_vapeur.md
+++ b/Data/HD/tome_of_beasts_golem_a_vapeur.md
@@ -5,7 +5,7 @@
# Golem À Vapeur
- Source: (LDM p212)(TOB p237)
-- TOB: Steam Golem
+- Alias: Steam Golem
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 171 (18d10+72)
diff --git a/Data/HD/tome_of_beasts_golem_de_sel.md b/Data/HD/tome_of_beasts_golem_de_sel.md
index cdc3cff0..49f9bc92 100644
--- a/Data/HD/tome_of_beasts_golem_de_sel.md
+++ b/Data/HD/tome_of_beasts_golem_de_sel.md
@@ -5,7 +5,7 @@
# Golem De Sel
- Source: (LDM p213)(TOB p235)
-- TOB: Salt Golem
+- Alias: Salt Golem
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 110 (11d10+55)
- **Vitesse** 6 m
diff --git a/Data/HD/tome_of_beasts_golem_oculaire.md b/Data/HD/tome_of_beasts_golem_oculaire.md
index b61fb758..f4d9b6d6 100644
--- a/Data/HD/tome_of_beasts_golem_oculaire.md
+++ b/Data/HD/tome_of_beasts_golem_oculaire.md
@@ -5,7 +5,7 @@
# Golem Oculaire
- Source: (LDM p214)(TOB p233)
-- TOB: Eye Golem
+- Alias: Eye Golem
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 157 (15d10+75)
diff --git a/Data/HD/tome_of_beasts_golem_smaragdin.md b/Data/HD/tome_of_beasts_golem_smaragdin.md
index f35d25ab..81836053 100644
--- a/Data/HD/tome_of_beasts_golem_smaragdin.md
+++ b/Data/HD/tome_of_beasts_golem_smaragdin.md
@@ -5,7 +5,7 @@
# Golem Smaragdin
- Source: (LDM p215)(TOB p236)
-- TOB: Smaragdine Golem
+- Alias: Smaragdine Golem
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 231 (22d10+110)
diff --git a/Data/HD/tome_of_beasts_golem_tresor.md b/Data/HD/tome_of_beasts_golem_tresor.md
index b8bb9463..5f1d6843 100644
--- a/Data/HD/tome_of_beasts_golem_tresor.md
+++ b/Data/HD/tome_of_beasts_golem_tresor.md
@@ -5,7 +5,7 @@
# Golem Trésor
- Source: (LDM p216)(TOB p234)
-- TOB: Hoard Golem
+- Alias: Hoard Golem
- Créature artificielle de Très Grande taille (TG), non-alignée
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 161 (14d12+70)
diff --git a/Data/HD/tome_of_beasts_goule_darakhule.md b/Data/HD/tome_of_beasts_goule_darakhule.md
index 8b908842..4c318cc8 100644
--- a/Data/HD/tome_of_beasts_goule_darakhule.md
+++ b/Data/HD/tome_of_beasts_goule_darakhule.md
@@ -5,7 +5,7 @@
# Goule Darakhule
- Source: (LDM p217)(TOB p216)
-- TOB: Ghoul, Darakhul
+- Alias: Ghoul, Darakhul
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 16 (armure d'écailles ; 18 avec bouclier)
diff --git a/Data/HD/tome_of_beasts_goule_de_fer.md b/Data/HD/tome_of_beasts_goule_de_fer.md
index 3da9135f..fd7085d5 100644
--- a/Data/HD/tome_of_beasts_goule_de_fer.md
+++ b/Data/HD/tome_of_beasts_goule_de_fer.md
@@ -5,7 +5,7 @@
# Goule De Fer
- Source: (LDM p218)(TOB p221)
-- TOB: Ghoul, Iron
+- Alias: Ghoul, Iron
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 16 (cuirasse)
diff --git a/Data/HD/tome_of_beasts_goule_imperiale.md b/Data/HD/tome_of_beasts_goule_imperiale.md
index c182a223..45c2f82e 100644
--- a/Data/HD/tome_of_beasts_goule_imperiale.md
+++ b/Data/HD/tome_of_beasts_goule_imperiale.md
@@ -5,7 +5,7 @@
# Goule Impériale
- Source: (LDM p222)(TOB p220)
-- TOB: Ghoul, Imperial
+- Alias: Ghoul, Imperial
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 16 (cuirasse)
diff --git a/Data/HD/tome_of_beasts_goule_mendiante.md b/Data/HD/tome_of_beasts_goule_mendiante.md
index 879f5c26..99c97f8e 100644
--- a/Data/HD/tome_of_beasts_goule_mendiante.md
+++ b/Data/HD/tome_of_beasts_goule_mendiante.md
@@ -5,7 +5,7 @@
# Goule Mendiante
- Source: (LDM p223)(TOB p213)
-- TOB: Beggar Ghoul
+- Alias: Beggar Ghoul
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 12
diff --git a/Data/HD/tome_of_beasts_goule_poudre_dos.md b/Data/HD/tome_of_beasts_goule_poudre_dos.md
index 947e25b7..d5e82924 100644
--- a/Data/HD/tome_of_beasts_goule_poudre_dos.md
+++ b/Data/HD/tome_of_beasts_goule_poudre_dos.md
@@ -5,7 +5,7 @@
# Goule Poudre D'Os
- Source: (LDM p224)(TOB p214)
-- TOB: Bonepowder Ghoul
+- Alias: Bonepowder Ghoul
- Mort-vivant de Petite taille (P), neutre mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_grande_nuee_de_papillons_de_mort.md b/Data/HD/tome_of_beasts_grande_nuee_de_papillons_de_mort.md
index 3dc7ab74..3dae9b5f 100644
--- a/Data/HD/tome_of_beasts_grande_nuee_de_papillons_de_mort.md
+++ b/Data/HD/tome_of_beasts_grande_nuee_de_papillons_de_mort.md
@@ -5,7 +5,7 @@
# Grande Nuée de Papillons de Mort
- Source: (LDM p327)(TOB p71)
-- TOB: Greater Death Butterfly Swarm
+- Alias: Greater Death Butterfly Swarm
- Nuée de Très Grande taille de bêtes de Très Petite taille (TP), chaotique mauvaise
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_gremlin_azza.md b/Data/HD/tome_of_beasts_gremlin_azza.md
index 8d80d49b..5e0606d2 100644
--- a/Data/HD/tome_of_beasts_gremlin_azza.md
+++ b/Data/HD/tome_of_beasts_gremlin_azza.md
@@ -5,7 +5,7 @@
# Gremlin Azza
- Source: (LDM p226)(TOB p28)
-- TOB: Azza Gremlin
+- Alias: Azza Gremlin
- Fée de Petite taille (P), neutre
- **Terrain** Montagnes
- **Classe d'armure** 14
diff --git a/Data/HD/tome_of_beasts_gremlin_rhume.md b/Data/HD/tome_of_beasts_gremlin_rhume.md
index b11a4c8d..bb678459 100644
--- a/Data/HD/tome_of_beasts_gremlin_rhume.md
+++ b/Data/HD/tome_of_beasts_gremlin_rhume.md
@@ -5,7 +5,7 @@
# Gremlin Rhumé
- Source: (LDM p227)(TOB p239)
-- TOB: Rum Gremlin
+- Alias: Rum Gremlin
- Fée de Très Petite taille (TP), chaotique mauvaise
- **Classe d'armure** 13
- **Points de vie** 22 (5d4+10)
diff --git a/Data/HD/tome_of_beasts_guenaude_des_sables.md b/Data/HD/tome_of_beasts_guenaude_des_sables.md
index d6ea0edb..708c1011 100644
--- a/Data/HD/tome_of_beasts_guenaude_des_sables.md
+++ b/Data/HD/tome_of_beasts_guenaude_des_sables.md
@@ -5,7 +5,7 @@
# Guenaude Des Sables
- Source: (LDM p228)(TOB p245)
-- TOB: Sanf Hag
+- Alias: Sanf Hag
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Terrain** Désert chaud
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_guenaude_miroir.md b/Data/HD/tome_of_beasts_guenaude_miroir.md
index 6ed4dd2a..3302986e 100644
--- a/Data/HD/tome_of_beasts_guenaude_miroir.md
+++ b/Data/HD/tome_of_beasts_guenaude_miroir.md
@@ -5,7 +5,7 @@
# Guenaude Miroir
- Source: (LDM p229)(TOB p229)
-- TOB: Mirror Hag
+- Alias: Mirror Hag
- Fée de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 168 (16d8+96)
diff --git a/Data/HD/tome_of_beasts_guenaude_rouge.md b/Data/HD/tome_of_beasts_guenaude_rouge.md
index 04a51153..3a1dd5fb 100644
--- a/Data/HD/tome_of_beasts_guenaude_rouge.md
+++ b/Data/HD/tome_of_beasts_guenaude_rouge.md
@@ -5,7 +5,7 @@
# Guenaude Rouge
- Source: (LDM p230)(TOB p244)
-- TOB: Red Hag
+- Alias: Red Hag
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 119 (14d8+56)
diff --git a/Data/HD/tome_of_beasts_guenaude_sanglante.md b/Data/HD/tome_of_beasts_guenaude_sanglante.md
index 5bddf4c8..c59a2283 100644
--- a/Data/HD/tome_of_beasts_guenaude_sanglante.md
+++ b/Data/HD/tome_of_beasts_guenaude_sanglante.md
@@ -5,7 +5,7 @@
# Guenaude Sanglante
- Source: (LDM p231)(TOB p242)
-- TOB: Blood Hag
+- Alias: Blood Hag
- Fée de taille Moyenne (M), chaotique mauvaise
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 178 (21d8+84)
diff --git a/Data/HD/tome_of_beasts_gug.md b/Data/HD/tome_of_beasts_gug.md
index 09f0752b..137987af 100644
--- a/Data/HD/tome_of_beasts_gug.md
+++ b/Data/HD/tome_of_beasts_gug.md
@@ -5,7 +5,7 @@
# Gug
- Source: (LDM p232)(TOB p241)
-- TOB: Gug
+- Alias: Gug
- Géant de Très Grande taille (TG), neutre mauvais
- **Terrain** Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_gypsosphinx.md b/Data/HD/tome_of_beasts_gypsosphinx.md
index f8534a90..c869835f 100644
--- a/Data/HD/tome_of_beasts_gypsosphinx.md
+++ b/Data/HD/tome_of_beasts_gypsosphinx.md
@@ -5,7 +5,7 @@
# Gypsosphinx
- Source: (LDM p369)(TOB p359)
-- TOB: Gypsosphinx
+- Alias: Gypsosphinx
- Créature monstrueuse de Grande taille (G), neutre mauvaise
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_habitant_de_leng.md b/Data/HD/tome_of_beasts_habitant_de_leng.md
index e97568d4..f6246296 100644
--- a/Data/HD/tome_of_beasts_habitant_de_leng.md
+++ b/Data/HD/tome_of_beasts_habitant_de_leng.md
@@ -5,7 +5,7 @@
# Habitant De Leng
- Source: (LDM p233)(TOB p204)
-- TOB: Folk of Leng
+- Alias: Folk of Leng
- Humanoïde de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 14 (armure de cuir clouté)
- **Points de vie** 68 (8d8+32)
diff --git a/Data/HD/tome_of_beasts_harpie_chouette.md b/Data/HD/tome_of_beasts_harpie_chouette.md
index 8acb1ff7..69f7fa9c 100644
--- a/Data/HD/tome_of_beasts_harpie_chouette.md
+++ b/Data/HD/tome_of_beasts_harpie_chouette.md
@@ -5,7 +5,7 @@
# Harpie Chouette
- Source: (LDM p234)(TOB p246)
-- TOB: Owl Harpy
+- Alias: Owl Harpy
- Créature monstrueuse de taille Moyenne (M), neutre mauvaise
- **Terrain** Désert chaud, Jungle
- **Classe d'armure** 14
diff --git a/Data/HD/tome_of_beasts_haugbui.md b/Data/HD/tome_of_beasts_haugbui.md
index 0151730b..700177fc 100644
--- a/Data/HD/tome_of_beasts_haugbui.md
+++ b/Data/HD/tome_of_beasts_haugbui.md
@@ -5,7 +5,7 @@
# Haugbui
- Source: (LDM p235)(TOB p247)
-- TOB: Haugbui
+- Alias: Haugbui
- Mort-vivant de taille Moyenne (M), loyal neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 136 (16d8+64)
diff --git a/Data/HD/tome_of_beasts_heraut_des_tenebres.md b/Data/HD/tome_of_beasts_heraut_des_tenebres.md
index 8ce901c8..c3aab74f 100644
--- a/Data/HD/tome_of_beasts_heraut_des_tenebres.md
+++ b/Data/HD/tome_of_beasts_heraut_des_tenebres.md
@@ -5,7 +5,7 @@
# Héraut Des Ténèbres
- Source: (LDM p236)(TOB p249)
-- TOB: Herald of Darkness
+- Alias: Herald of Darkness
- Fiélon de Grande taille (G), neutre mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 105 (10d10+50)
diff --git a/Data/HD/tome_of_beasts_heraut_du_sang.md b/Data/HD/tome_of_beasts_heraut_du_sang.md
index b7e89009..24e9b2ef 100644
--- a/Data/HD/tome_of_beasts_heraut_du_sang.md
+++ b/Data/HD/tome_of_beasts_heraut_du_sang.md
@@ -5,7 +5,7 @@
# Héraut Du Sang
- Source: (LDM p237)(TOB p248)
-- TOB: Herald of Blood
+- Alias: Herald of Blood
- Fiélon de Très Grande taille (TG), neutre mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 115 (10d12+50)
diff --git a/Data/HD/tome_of_beasts_homme_chevre.md b/Data/HD/tome_of_beasts_homme_chevre.md
index ec9b5b0f..c0780d35 100644
--- a/Data/HD/tome_of_beasts_homme_chevre.md
+++ b/Data/HD/tome_of_beasts_homme_chevre.md
@@ -5,7 +5,7 @@
# Homme-Chèvre
- Source: (LDM p239)(TOB p231)
-- TOB: Goat-Man
+- Alias: Goat-Man
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_homme_lemurien.md b/Data/HD/tome_of_beasts_homme_lemurien.md
index 9ad0b447..954e0733 100644
--- a/Data/HD/tome_of_beasts_homme_lemurien.md
+++ b/Data/HD/tome_of_beasts_homme_lemurien.md
@@ -5,7 +5,7 @@
# Homme-Lémurien
- Source: (LDM p243)(TOB p271)
-- TOB: Lemurfolk
+- Alias: Lemurfolk
- Humanoïde (homme-lémurien) de Petite taille (P), neutre
- **Terrain** Jungle
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_homme_lemurien_fourrure_grise.md b/Data/HD/tome_of_beasts_homme_lemurien_fourrure_grise.md
index 9ac395a8..d741e34e 100644
--- a/Data/HD/tome_of_beasts_homme_lemurien_fourrure_grise.md
+++ b/Data/HD/tome_of_beasts_homme_lemurien_fourrure_grise.md
@@ -5,7 +5,7 @@
# Homme-Lémurien Fourrure Grise
- Source: (LDM p243)(TOB p271)
-- TOB: Lemurfolk Greyfur
+- Alias: Lemurfolk Greyfur
- Humanoïde (homme-lémurien) de Petite taille (P), neutre
- **Terrain** Jungle
- **Classe d'armure** 13 (16 avec armure du mage )
diff --git a/Data/HD/tome_of_beasts_homme_ours.md b/Data/HD/tome_of_beasts_homme_ours.md
index b1f37a28..59c658c5 100644
--- a/Data/HD/tome_of_beasts_homme_ours.md
+++ b/Data/HD/tome_of_beasts_homme_ours.md
@@ -5,7 +5,7 @@
# Homme-Ours
- Source: (LDM p244)(TOB p33)
-- TOB: Bearfold
+- Alias: Bearfold
- Humanoïde (homme-ours) de taille Moyenne (M), chaotique bon
- **Terrain** Bois / Forêt
- **Classe d'armure** 14 (armure de peau)
diff --git a/Data/HD/tome_of_beasts_homme_rat.md b/Data/HD/tome_of_beasts_homme_rat.md
index 586fd266..bd5d0e68 100644
--- a/Data/HD/tome_of_beasts_homme_rat.md
+++ b/Data/HD/tome_of_beasts_homme_rat.md
@@ -5,7 +5,7 @@
# Homme-Rat
- Source: (LDM p245)(TOB p320)
-- TOB: Ratfolk
+- Alias: Ratfolk
- Humanoïde (homme-rat) de Petite taille (P), neutre
- **Terrain** Caverne aménagée
- **Classe d'armure** 14 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_horakh.md b/Data/HD/tome_of_beasts_horakh.md
index daf985f3..cc6ae8c2 100644
--- a/Data/HD/tome_of_beasts_horakh.md
+++ b/Data/HD/tome_of_beasts_horakh.md
@@ -5,7 +5,7 @@
# Horakh
- Source: (LDM p246)(TOB p250)
-- TOB: Horakh
+- Alias: Horakh
- Créature monstrueuse de taille Moyenne (M), neutre
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane, Caverne naturelle
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_hraesvelgr_le_mangeur_de_cadavres.md b/Data/HD/tome_of_beasts_hraesvelgr_le_mangeur_de_cadavres.md
index 27e4a068..226218ed 100644
--- a/Data/HD/tome_of_beasts_hraesvelgr_le_mangeur_de_cadavres.md
+++ b/Data/HD/tome_of_beasts_hraesvelgr_le_mangeur_de_cadavres.md
@@ -5,7 +5,7 @@
# Hraesvelgr Le Mangeur De Cadavres
- Source: (LDM p204)(TOB p224)
-- TOB: Hraesvelgr the Corpse Swallower
+- Alias: Hraesvelgr the Corpse Swallower
- Géant (métamorphe (TG), titan) de Très Grande taille (TG), neutre
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 241 (12d12+105)
diff --git a/Data/HD/tome_of_beasts_hundun.md b/Data/HD/tome_of_beasts_hundun.md
index c1ac617d..d9264483 100644
--- a/Data/HD/tome_of_beasts_hundun.md
+++ b/Data/HD/tome_of_beasts_hundun.md
@@ -5,7 +5,7 @@
# Hundun
- Source: (LDM p247)(TOB p253)
-- TOB: Hundun
+- Alias: Hundun
- Céleste de Grande taille (G), chaotique bon
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 153 (18d10+54)
diff --git a/Data/HD/tome_of_beasts_iaaffrat.md b/Data/HD/tome_of_beasts_iaaffrat.md
index 93cb797e..dedbe92b 100644
--- a/Data/HD/tome_of_beasts_iaaffrat.md
+++ b/Data/HD/tome_of_beasts_iaaffrat.md
@@ -5,7 +5,7 @@
# Ia'Affrat
- Source: (LDM p101)(TOB p98)
-- TOB: Ia'Affrat
+- Alias: Ia'Affrat
- Nuée de Grande taille d'élémentaires de taille Minuscule (G), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 170 (20d10+60)
diff --git a/Data/HD/tome_of_beasts_idole_divine.md b/Data/HD/tome_of_beasts_idole_divine.md
index 20ae2b4b..d1d01e6c 100644
--- a/Data/HD/tome_of_beasts_idole_divine.md
+++ b/Data/HD/tome_of_beasts_idole_divine.md
@@ -5,7 +5,7 @@
# Idole Divine
- Source: (LDM p248)(TOB p255)
-- TOB: Idolic Deity
+- Alias: Idolic Deity
- Créature artificielle de Petite taille (P), neutre mauvaise
- **Terrain** Ruines souterraines
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_imy_ut_ushabti.md b/Data/HD/tome_of_beasts_imy_ut_ushabti.md
index fbb623c7..39c8a353 100644
--- a/Data/HD/tome_of_beasts_imy_ut_ushabti.md
+++ b/Data/HD/tome_of_beasts_imy_ut_ushabti.md
@@ -5,7 +5,7 @@
# Imy-Ut Ushabti
- Source: (LDM p249)(TOB p256)
-- TOB: Imy-Ut Ushabti
+- Alias: Imy-Ut Ushabti
- Créature monstrueuse de taille Moyenne (M), neutre
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 97 (15d8+30)
diff --git a/Data/HD/tome_of_beasts_isonade.md b/Data/HD/tome_of_beasts_isonade.md
index 18f13cdd..ee19db67 100644
--- a/Data/HD/tome_of_beasts_isonade.md
+++ b/Data/HD/tome_of_beasts_isonade.md
@@ -5,7 +5,7 @@
# Isonade
- Source: (LDM p250)(TOB p257)
-- TOB: Isonade
+- Alias: Isonade
- Créature monstrueuse de taille Gigantesque (Gig), chaotique neutre
- **Terrain** Littoral
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_jaculus.md b/Data/HD/tome_of_beasts_jaculus.md
index a4147e0f..d3f0ccfe 100644
--- a/Data/HD/tome_of_beasts_jaculus.md
+++ b/Data/HD/tome_of_beasts_jaculus.md
@@ -5,7 +5,7 @@
# Jaculus
- Source: (LDM p251)(TOB p258)
-- TOB: Jaculus
+- Alias: Jaculus
- Dragon de Petite taille (P), neutre mauvais
- **Terrain** Bois / Forêt, Jungle
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_jeune_spinosaure.md b/Data/HD/tome_of_beasts_jeune_spinosaure.md
index da2a6736..41e645d0 100644
--- a/Data/HD/tome_of_beasts_jeune_spinosaure.md
+++ b/Data/HD/tome_of_beasts_jeune_spinosaure.md
@@ -5,7 +5,7 @@
# Jeune Spinosaure
- Source: (LDM p120)(TOB p117)
-- TOB: Young Spinosaurus
+- Alias: Young Spinosaurus
- Bête de Très Grande taille (TG), non alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_kalke.md b/Data/HD/tome_of_beasts_kalke.md
index 29ceb0b6..801e220b 100644
--- a/Data/HD/tome_of_beasts_kalke.md
+++ b/Data/HD/tome_of_beasts_kalke.md
@@ -5,7 +5,7 @@
# Kalke
- Source: (LDM p252)(TOB p259)
-- TOB: Kalke
+- Alias: Kalke
- Fiélon de Petite taille (P), neutre mauvais
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 9 (2d6+2)
diff --git a/Data/HD/tome_of_beasts_kikimore.md b/Data/HD/tome_of_beasts_kikimore.md
index 9420225d..0729f565 100644
--- a/Data/HD/tome_of_beasts_kikimore.md
+++ b/Data/HD/tome_of_beasts_kikimore.md
@@ -5,7 +5,7 @@
# Kikimore
- Source: (LDM p253)(TOB p260)
-- TOB: Kikimora
+- Alias: Kikimora
- Fée de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 65 (10d8+20)
diff --git a/Data/HD/tome_of_beasts_kongamato.md b/Data/HD/tome_of_beasts_kongamato.md
index a14d0cac..46c70341 100644
--- a/Data/HD/tome_of_beasts_kongamato.md
+++ b/Data/HD/tome_of_beasts_kongamato.md
@@ -5,7 +5,7 @@
# Kongamato
- Source: (LDM p258)(TOB p265)
-- TOB: Kongamato
+- Alias: Kongamato
- Bête de Grande taille (G), non-alignée
- **Terrain** Littoral, Mer / Océan
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_koralk_diable_moissonneur.md b/Data/HD/tome_of_beasts_koralk_diable_moissonneur.md
index f6eaf5c5..74985dd7 100644
--- a/Data/HD/tome_of_beasts_koralk_diable_moissonneur.md
+++ b/Data/HD/tome_of_beasts_koralk_diable_moissonneur.md
@@ -5,7 +5,7 @@
# Koralk (Diable Moissonneur)
- Source: (LDM p112)(TOB p108)
-- TOB: Koralk (Harvester Devil)
+- Alias: Koralk (Harvester Devil)
- Fiélon (diable) de Grande taille (G), loyal mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 136 (16d10+48)
diff --git a/Data/HD/tome_of_beasts_koschei.md b/Data/HD/tome_of_beasts_koschei.md
index ee507676..b64bf663 100644
--- a/Data/HD/tome_of_beasts_koschei.md
+++ b/Data/HD/tome_of_beasts_koschei.md
@@ -5,7 +5,7 @@
# Koschei
- Source: (LDM p259)(TOB p266)
-- TOB: Koschei
+- Alias: Koschei
- Fiélon de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 135 (18d8+54)
diff --git a/Data/HD/tome_of_beasts_kot_bayun.md b/Data/HD/tome_of_beasts_kot_bayun.md
index 3f3deae7..9a912dc3 100644
--- a/Data/HD/tome_of_beasts_kot_bayun.md
+++ b/Data/HD/tome_of_beasts_kot_bayun.md
@@ -5,7 +5,7 @@
# Kot Bayun
- Source: (LDM p261)(TOB p268)
-- TOB: Kot Bayun
+- Alias: Kot Bayun
- Créature monstrueuse de taille Moyenne (M), neutre
- **Terrain** Collines / Vallées, Montagnes, Caverne naturelle
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_la_reine_de_la_nuit_et_de_la_magie.md b/Data/HD/tome_of_beasts_la_reine_de_la_nuit_et_de_la_magie.md
index e9772ba9..f79fcc00 100644
--- a/Data/HD/tome_of_beasts_la_reine_de_la_nuit_et_de_la_magie.md
+++ b/Data/HD/tome_of_beasts_la_reine_de_la_nuit_et_de_la_magie.md
@@ -5,7 +5,7 @@
# La Reine de la Nuit et de la Magie
- Source: (LDM p180)(TOB p192)
-- TOB: Queen of Night and Magic
+- Alias: Queen of Night and Magic
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 15 (18 avec armure du mage)
- **Points de vie** 180 (24d8+72)
diff --git a/Data/HD/tome_of_beasts_la_reine_des_neiges.md b/Data/HD/tome_of_beasts_la_reine_des_neiges.md
index 51f8d0b6..9245cf5c 100644
--- a/Data/HD/tome_of_beasts_la_reine_des_neiges.md
+++ b/Data/HD/tome_of_beasts_la_reine_des_neiges.md
@@ -5,7 +5,7 @@
# La Reine des Neiges
- Source: (LDM p182)(TOB p198)
-- TOB: Snow Queen
+- Alias: Snow Queen
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 123 (19d8+38)
diff --git a/Data/HD/tome_of_beasts_la_reine_des_sorcieres.md b/Data/HD/tome_of_beasts_la_reine_des_sorcieres.md
index 6331fbab..e2700c94 100644
--- a/Data/HD/tome_of_beasts_la_reine_des_sorcieres.md
+++ b/Data/HD/tome_of_beasts_la_reine_des_sorcieres.md
@@ -5,7 +5,7 @@
# La Reine des Sorcières
- Source: (LDM p184)(TOB p194)
-- TOB: Queen of Witches
+- Alias: Queen of Witches
- Fée de Grande taille (G), neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 123 (13d10+52)
diff --git a/Data/HD/tome_of_beasts_larve_de_krake.md b/Data/HD/tome_of_beasts_larve_de_krake.md
index adc79450..16c1ac7d 100644
--- a/Data/HD/tome_of_beasts_larve_de_krake.md
+++ b/Data/HD/tome_of_beasts_larve_de_krake.md
@@ -5,7 +5,7 @@
# Larve De Krake
- Source: (LDM p262)(TOB p269)
-- TOB: Krake Spawn
+- Alias: Krake Spawn
- Créature monstrueuse de Très Grande taille (TG), neutre mauvaise
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_larve_de_ver_givre.md b/Data/HD/tome_of_beasts_larve_de_ver_givre.md
index 1c2c2476..909bc29c 100644
--- a/Data/HD/tome_of_beasts_larve_de_ver_givre.md
+++ b/Data/HD/tome_of_beasts_larve_de_ver_givre.md
@@ -5,7 +5,7 @@
# Larve de Ver Givré
- Source: (LDM p399)(TOB p327)
-- TOB: Rime Worm Grub
+- Alias: Rime Worm Grub
- Élémentaire de taille Moyenne (M), neutre
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_larve_stellaire_de_cthulhu.md b/Data/HD/tome_of_beasts_larve_stellaire_de_cthulhu.md
index 018e735b..2acf0248 100644
--- a/Data/HD/tome_of_beasts_larve_stellaire_de_cthulhu.md
+++ b/Data/HD/tome_of_beasts_larve_stellaire_de_cthulhu.md
@@ -5,7 +5,7 @@
# Larve Stellaire De Cthulhu
- Source: (LDM p263)(TOB p368)
-- TOB: Star Spawn of Cthulhu
+- Alias: Star Spawn of Cthulhu
- Fiélon de Grande taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 187 (15d10+105)
diff --git a/Data/HD/tome_of_beasts_le_grand_veneur.md b/Data/HD/tome_of_beasts_le_grand_veneur.md
index e1bd1ee7..7f6c8ef8 100644
--- a/Data/HD/tome_of_beasts_le_grand_veneur.md
+++ b/Data/HD/tome_of_beasts_le_grand_veneur.md
@@ -5,7 +5,7 @@
# Le Grand Veneur
- Source: (LDM p186)(TOB p188)
-- TOB: Lord of the Hunt
+- Alias: Lord of the Hunt
- Fée de taille Moyenne (M), loyale neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 229 (27d8+108)
diff --git a/Data/HD/tome_of_beasts_le_roi_baigne_de_lune.md b/Data/HD/tome_of_beasts_le_roi_baigne_de_lune.md
index 6d01cdd1..8a939036 100644
--- a/Data/HD/tome_of_beasts_le_roi_baigne_de_lune.md
+++ b/Data/HD/tome_of_beasts_le_roi_baigne_de_lune.md
@@ -5,7 +5,7 @@
# Le Roi Baigné de Lune
- Source: (LDM p188)(TOB p190)
-- TOB: Moonlit King
+- Alias: Moonlit King
- Fée de taille Moyenne (M), neutre bonne
- **Classe d'armure** 17 (demi-plate)
- **Points de vie** 170 (20d8+80)
diff --git a/Data/HD/tome_of_beasts_le_roi_des_ours.md b/Data/HD/tome_of_beasts_le_roi_des_ours.md
index dc3f55a5..80caa6d0 100644
--- a/Data/HD/tome_of_beasts_le_roi_des_ours.md
+++ b/Data/HD/tome_of_beasts_le_roi_des_ours.md
@@ -5,7 +5,7 @@
# Le Roi des Ours
- Source: (LDM p190)(TOB p186)
-- TOB: Bear King
+- Alias: Bear King
- Fée (métamorphe) de taille Moyenne (M), loyale neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 133 (14d8+70)
diff --git a/Data/HD/tome_of_beasts_le_roi_des_rivieres.md b/Data/HD/tome_of_beasts_le_roi_des_rivieres.md
index 0789e2bb..c117fc2b 100644
--- a/Data/HD/tome_of_beasts_le_roi_des_rivieres.md
+++ b/Data/HD/tome_of_beasts_le_roi_des_rivieres.md
@@ -5,7 +5,7 @@
# Le Roi des Rivières
- Source: (LDM p192)(TOB p196)
-- TOB: River King
+- Alias: River King
- Fée de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 152 (16d8+80)
diff --git a/Data/HD/tome_of_beasts_lechy.md b/Data/HD/tome_of_beasts_lechy.md
index 2ac0ece8..fe2afbc8 100644
--- a/Data/HD/tome_of_beasts_lechy.md
+++ b/Data/HD/tome_of_beasts_lechy.md
@@ -5,7 +5,7 @@
# Léchy
- Source: (LDM p264)(TOB p272)
-- TOB: Leshy
+- Alias: Leshy
- Créature monstrueuse de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_lente_tempete.md b/Data/HD/tome_of_beasts_lente_tempete.md
index d4d59afd..a99549d3 100644
--- a/Data/HD/tome_of_beasts_lente_tempete.md
+++ b/Data/HD/tome_of_beasts_lente_tempete.md
@@ -5,7 +5,7 @@
# Lente Tempête
- Source: (LDM p265)(TOB p353)
-- TOB: Slow Storm
+- Alias: Slow Storm
- Élémentaire de Très Grande taille (TG), chaotique neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 19
diff --git a/Data/HD/tome_of_beasts_liche_canine.md b/Data/HD/tome_of_beasts_liche_canine.md
index a8e87acc..e82b8eac 100644
--- a/Data/HD/tome_of_beasts_liche_canine.md
+++ b/Data/HD/tome_of_beasts_liche_canine.md
@@ -5,7 +5,7 @@
# Liche Canine
- Source: (LDM p268)(TOB p274)
-- TOB: Lich Hound
+- Alias: Lich Hound
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 14
- **Points de vie** 119 (14d8+56)
diff --git a/Data/HD/tome_of_beasts_likho.md b/Data/HD/tome_of_beasts_likho.md
index ff847346..c6af1db2 100644
--- a/Data/HD/tome_of_beasts_likho.md
+++ b/Data/HD/tome_of_beasts_likho.md
@@ -5,7 +5,7 @@
# Likho
- Source: (LDM p269)(TOB p275)
-- TOB: Likho
+- Alias: Likho
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Terrain** Bois / Forêt
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_limon_des_sarcophages.md b/Data/HD/tome_of_beasts_limon_des_sarcophages.md
index fc33e45e..40d3a53e 100644
--- a/Data/HD/tome_of_beasts_limon_des_sarcophages.md
+++ b/Data/HD/tome_of_beasts_limon_des_sarcophages.md
@@ -5,7 +5,7 @@
# Limon Des Sarcophages
- Source: (LDM p270)(TOB p336)
-- TOB: Sarcophagus Slime
+- Alias: Sarcophagus Slime
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 11
diff --git a/Data/HD/tome_of_beasts_linceul.md b/Data/HD/tome_of_beasts_linceul.md
index a23e8ba7..5d47612a 100644
--- a/Data/HD/tome_of_beasts_linceul.md
+++ b/Data/HD/tome_of_beasts_linceul.md
@@ -5,7 +5,7 @@
# Linceul
- Source: (LDM p271)(TOB p348)
-- TOB: Shroud
+- Alias: Shroud
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 9 (2d8)
diff --git a/Data/HD/tome_of_beasts_lindwurm.md b/Data/HD/tome_of_beasts_lindwurm.md
index 1bfd291c..d881faaf 100644
--- a/Data/HD/tome_of_beasts_lindwurm.md
+++ b/Data/HD/tome_of_beasts_lindwurm.md
@@ -5,7 +5,7 @@
# Lindwurm
- Source: (LDM p272)(TOB p276)
-- TOB: Lindwurm
+- Alias: Lindwurm
- Dragon de Grande taille (G), neutre mauvais
- **Terrain** Arctique / Subarctique, Littoral
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_liosalfar.md b/Data/HD/tome_of_beasts_liosalfar.md
index af40afdf..46e17423 100644
--- a/Data/HD/tome_of_beasts_liosalfar.md
+++ b/Data/HD/tome_of_beasts_liosalfar.md
@@ -5,7 +5,7 @@
# Liosalfar
- Source: (LDM p273)(TOB p277)
-- TOB: Liosalfar
+- Alias: Liosalfar
- Élémentaire de Grande taille (G), neutre
- **Classe d'armure** 17
- **Points de vie** 110 (20d10)
diff --git a/Data/HD/tome_of_beasts_locus_elementaire.md b/Data/HD/tome_of_beasts_locus_elementaire.md
index 36afeac8..3148a093 100644
--- a/Data/HD/tome_of_beasts_locus_elementaire.md
+++ b/Data/HD/tome_of_beasts_locus_elementaire.md
@@ -5,7 +5,7 @@
# Locus Élémentaire
- Source: (LDM p274)(TOB p169)
-- TOB: Elemental Locus
+- Alias: Elemental Locus
- Élémentaire de taille Gigantesque (Gig), neutre
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 290 (20d20+80)
diff --git a/Data/HD/tome_of_beasts_lorelei.md b/Data/HD/tome_of_beasts_lorelei.md
index 0420c42f..5074ccaf 100644
--- a/Data/HD/tome_of_beasts_lorelei.md
+++ b/Data/HD/tome_of_beasts_lorelei.md
@@ -5,7 +5,7 @@
# Lorelei
- Source: (LDM p275)(TOB p279)
-- TOB: Lorelei
+- Alias: Lorelei
- Fée de taille Moyenne (M), chaotique mauvaise
- **Terrain** Littoral
- **Classe d'armure** 15 (18 avec armure du mage)
diff --git a/Data/HD/tome_of_beasts_loxoda.md b/Data/HD/tome_of_beasts_loxoda.md
index ef08bf0a..0f76671c 100644
--- a/Data/HD/tome_of_beasts_loxoda.md
+++ b/Data/HD/tome_of_beasts_loxoda.md
@@ -5,7 +5,7 @@
# Loxoda
- Source: (LDM p276)(TOB p280)
-- TOB: Loxoda
+- Alias: Loxoda
- Créature monstrueuse de Très Grande taille (TG), neutre mauvaise
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_lynx_vaporeux.md b/Data/HD/tome_of_beasts_lynx_vaporeux.md
index 815b0006..4d466843 100644
--- a/Data/HD/tome_of_beasts_lynx_vaporeux.md
+++ b/Data/HD/tome_of_beasts_lynx_vaporeux.md
@@ -5,7 +5,7 @@
# Lynx Vaporeux
- Source: (LDM p277)(TOB p398)
-- TOB: Vapor Lynx
+- Alias: Vapor Lynx
- Créature monstrueuse de Grande taille (G), chaotique neutre
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_mage_des_anneaux_nains.md b/Data/HD/tome_of_beasts_mage_des_anneaux_nains.md
index d9099589..f77e8433 100644
--- a/Data/HD/tome_of_beasts_mage_des_anneaux_nains.md
+++ b/Data/HD/tome_of_beasts_mage_des_anneaux_nains.md
@@ -5,7 +5,7 @@
# Mage Des Anneaux Nains
- Source: (LDM p423)(TOB p420)
-- TOB: Dwarven Ringmage
+- Alias: Dwarven Ringmage
- Humanoïde de taille Moyenne (nain) (M), au choix
- **Classe d'armure** 16 (cuirasse)
- **Points de vie** 82 (15d8 + 15)
diff --git a/Data/HD/tome_of_beasts_mahoru.md b/Data/HD/tome_of_beasts_mahoru.md
index 10f66ee6..c137aef4 100644
--- a/Data/HD/tome_of_beasts_mahoru.md
+++ b/Data/HD/tome_of_beasts_mahoru.md
@@ -5,7 +5,7 @@
# Mahoru
- Source: (LDM p278)(TOB p281)
-- TOB: Mahoru
+- Alias: Mahoru
- Créature monstrueuse de Grande taille (G), non-alignée
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_malakbel.md b/Data/HD/tome_of_beasts_malakbel.md
index 45dbf051..3339be64 100644
--- a/Data/HD/tome_of_beasts_malakbel.md
+++ b/Data/HD/tome_of_beasts_malakbel.md
@@ -5,7 +5,7 @@
# Malakbel
- Source: (LDM p80)(TOB p78)
-- TOB: Malakbel
+- Alias: Malakbel
- Fiélon (démon) de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 102 (12d8+48)
diff --git a/Data/HD/tome_of_beasts_mallqui.md b/Data/HD/tome_of_beasts_mallqui.md
index 3c6508c9..3aed80ad 100644
--- a/Data/HD/tome_of_beasts_mallqui.md
+++ b/Data/HD/tome_of_beasts_mallqui.md
@@ -5,7 +5,7 @@
# Mallqui
- Source: (LDM p279)(TOB p282)
-- TOB: Mallqui
+- Alias: Mallqui
- Mort-vivant de taille Moyenne (M), loyal neutre
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_malphas_corbeau_de_tempete.md b/Data/HD/tome_of_beasts_malphas_corbeau_de_tempete.md
index 80314970..f28e27e2 100644
--- a/Data/HD/tome_of_beasts_malphas_corbeau_de_tempete.md
+++ b/Data/HD/tome_of_beasts_malphas_corbeau_de_tempete.md
@@ -5,7 +5,7 @@
# Malphas (Corbeau De Tempête)
- Source: (LDM p280)(TOB p283)
-- TOB: Malphas (Storm Crow)
+- Alias: Malphas (Storm Crow)
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 16 (armure de cuir clouté)
- **Points de vie** 120 (16d8+48)
diff --git a/Data/HD/tome_of_beasts_mammon.md b/Data/HD/tome_of_beasts_mammon.md
index e784d1e9..401c8686 100644
--- a/Data/HD/tome_of_beasts_mammon.md
+++ b/Data/HD/tome_of_beasts_mammon.md
@@ -5,7 +5,7 @@
# Mammon
- Source: (LDM p102)(TOB p99)
-- TOB: Mammon
+- Alias: Mammon
- Fiélon (diable) de Très Grande taille (TG), loyal mauvais
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 378 (28d12+196)
diff --git a/Data/HD/tome_of_beasts_mamura.md b/Data/HD/tome_of_beasts_mamura.md
index b4e694d5..e199632f 100644
--- a/Data/HD/tome_of_beasts_mamura.md
+++ b/Data/HD/tome_of_beasts_mamura.md
@@ -5,7 +5,7 @@
# Mamura
- Source: (LDM p281)(TOB p284)
-- TOB: Mamura
+- Alias: Mamura
- Aberration (fée) de Petite taille (P), neutre mauvaise.
- **Terrain** Mangrove / Marécage, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_mangedestin.md b/Data/HD/tome_of_beasts_mangedestin.md
index 02b5e483..1ce35646 100644
--- a/Data/HD/tome_of_beasts_mangedestin.md
+++ b/Data/HD/tome_of_beasts_mangedestin.md
@@ -5,7 +5,7 @@
# Mangedestin
- Source: (LDM p282)(TOB p180)
-- TOB: Fate Eater
+- Alias: Fate Eater
- Aberration de taille Moyenne (M), neutre
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 182 (28d8+56)
diff --git a/Data/HD/tome_of_beasts_mangepoussiere_yakat_shi.md b/Data/HD/tome_of_beasts_mangepoussiere_yakat_shi.md
index 82f64955..23da477e 100644
--- a/Data/HD/tome_of_beasts_mangepoussiere_yakat_shi.md
+++ b/Data/HD/tome_of_beasts_mangepoussiere_yakat_shi.md
@@ -5,7 +5,7 @@
# Mangepoussière (Yakat-Shi)
- Source: (LDM p283)(TOB p164)
-- TOB: Eater of Dust (Yakat-Shi)
+- Alias: Eater of Dust (Yakat-Shi)
- Aberration de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 114 (12d8+60)
diff --git a/Data/HD/tome_of_beasts_mangereve.md b/Data/HD/tome_of_beasts_mangereve.md
index f77b3261..de71da8d 100644
--- a/Data/HD/tome_of_beasts_mangereve.md
+++ b/Data/HD/tome_of_beasts_mangereve.md
@@ -5,7 +5,7 @@
# Mangerêve
- Source: (LDM p284)(TOB p158)
-- TOB: Dream Eater
+- Alias: Dream Eater
- Fiélon de taille Moyenne (M), loyal mauvais
- **Terrain** Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_manteau_vide.md b/Data/HD/tome_of_beasts_manteau_vide.md
index 2a5483e1..01cb5f81 100644
--- a/Data/HD/tome_of_beasts_manteau_vide.md
+++ b/Data/HD/tome_of_beasts_manteau_vide.md
@@ -5,7 +5,7 @@
# Manteau Vide
- Source: (LDM p285)(TOB p176)
-- TOB: Empty Cloak
+- Alias: Empty Cloak
- Créature artificielle de taille Moyenne (M), non-alignée
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 45 (10d8)
diff --git a/Data/HD/tome_of_beasts_maraudeur_des_forets.md b/Data/HD/tome_of_beasts_maraudeur_des_forets.md
index 97f5e01c..5518f4c4 100644
--- a/Data/HD/tome_of_beasts_maraudeur_des_forets.md
+++ b/Data/HD/tome_of_beasts_maraudeur_des_forets.md
@@ -5,7 +5,7 @@
# Maraudeur Des Forêts
- Source: (LDM p286)(TOB p205)
-- TOB: Forest Marauder
+- Alias: Forest Marauder
- Géant de Grande taille (G), chaotique mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 114 (12d10 +48)
diff --git a/Data/HD/tome_of_beasts_marchand_de_sable.md b/Data/HD/tome_of_beasts_marchand_de_sable.md
index ddfde530..fd4b19b5 100644
--- a/Data/HD/tome_of_beasts_marchand_de_sable.md
+++ b/Data/HD/tome_of_beasts_marchand_de_sable.md
@@ -5,7 +5,7 @@
# Marchand De Sable
- Source: (LDM p287)(TOB p333)
-- TOB: Sandman
+- Alias: Sandman
- Céleste de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 14
- **Points de vie** 82 (11d8+33)
diff --git a/Data/HD/tome_of_beasts_marchefleche.md b/Data/HD/tome_of_beasts_marchefleche.md
index 1ca72738..3d109305 100644
--- a/Data/HD/tome_of_beasts_marchefleche.md
+++ b/Data/HD/tome_of_beasts_marchefleche.md
@@ -5,7 +5,7 @@
# Marcheflèche
- Source: (LDM p288)(TOB p367)
-- TOB: Spire Walker
+- Alias: Spire Walker
- Fée de Très Petite taille (TP), neutre
- **Terrain** Littoral
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_marionnette_des_lianes.md b/Data/HD/tome_of_beasts_marionnette_des_lianes.md
index bf3b8bd9..445658c8 100644
--- a/Data/HD/tome_of_beasts_marionnette_des_lianes.md
+++ b/Data/HD/tome_of_beasts_marionnette_des_lianes.md
@@ -5,7 +5,7 @@
# Marionnette Des Lianes
- Source: (LDM p359)(TOB p403)
-- TOB: Tendril Puppet
+- Alias: Tendril Puppet
- Plante de taille Moyenne (M), loyale neutre
- **Terrain** Jungle
- **Classe d'armure** 13 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_mavka.md b/Data/HD/tome_of_beasts_mavka.md
index b8ddcebd..11e969fd 100644
--- a/Data/HD/tome_of_beasts_mavka.md
+++ b/Data/HD/tome_of_beasts_mavka.md
@@ -5,7 +5,7 @@
# Mavka
- Source: (LDM p289)(TOB p286)
-- TOB: Mavka
+- Alias: Mavka
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 170 (20d8+80)
diff --git a/Data/HD/tome_of_beasts_mbielu.md b/Data/HD/tome_of_beasts_mbielu.md
index af2a86b4..a922cd16 100644
--- a/Data/HD/tome_of_beasts_mbielu.md
+++ b/Data/HD/tome_of_beasts_mbielu.md
@@ -5,7 +5,7 @@
# Mbielu
- Source: (LDM p117)(TOB p114)
-- TOB: Mbielu
+- Alias: Mbielu
- Bête de Très Grande taille (TG), non alignée
- **Terrain** Littoral, Mangrove / Marécage, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_meche_vivante.md b/Data/HD/tome_of_beasts_meche_vivante.md
index c71823aa..df24874e 100644
--- a/Data/HD/tome_of_beasts_meche_vivante.md
+++ b/Data/HD/tome_of_beasts_meche_vivante.md
@@ -5,7 +5,7 @@
# Mèche Vivante
- Source: (LDM p297)(TOB p278)
-- TOB: Living Wick
+- Alias: Living Wick
- Créature artificielle de Petite taille (P), non-alignée
- **Terrain** Ruines souterraines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_mechuiti_seigneur_demon_des_grands_singes.md b/Data/HD/tome_of_beasts_mechuiti_seigneur_demon_des_grands_singes.md
index 16c52ae3..2512de27 100644
--- a/Data/HD/tome_of_beasts_mechuiti_seigneur_demon_des_grands_singes.md
+++ b/Data/HD/tome_of_beasts_mechuiti_seigneur_demon_des_grands_singes.md
@@ -5,7 +5,7 @@
# Mechuiti, seigneur démon des grands singes
- Source: (LDM p90)(TOB p88)
-- TOB: Mechuiti, Demon Lord of Apes
+- Alias: Mechuiti, Demon Lord of Apes
- Fiélon (démon) de taille Gigantesque (Gig), chaotique mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 370 (20d20+160)
diff --git a/Data/HD/tome_of_beasts_medazur_a_defenses.md b/Data/HD/tome_of_beasts_medazur_a_defenses.md
index 6859c9ac..e9ee6657 100644
--- a/Data/HD/tome_of_beasts_medazur_a_defenses.md
+++ b/Data/HD/tome_of_beasts_medazur_a_defenses.md
@@ -5,7 +5,7 @@
# Médazur À Défenses
- Source: (LDM p298)(TOB p391)
-- TOB: Tusked Skyfish
+- Alias: Tusked Skyfish
- Aberration de Grande taille (G), loyale bonne
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_melasse.md b/Data/HD/tome_of_beasts_melasse.md
index a2dce322..80927096 100644
--- a/Data/HD/tome_of_beasts_melasse.md
+++ b/Data/HD/tome_of_beasts_melasse.md
@@ -5,7 +5,7 @@
# Mélasse
- Source: (LDM p299)(TOB p387)
-- TOB: Treacle
+- Alias: Treacle
- Vase de Très Petite taille (TP), non alignée
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 22 (4d4+12)
diff --git a/Data/HD/tome_of_beasts_mi_go.md b/Data/HD/tome_of_beasts_mi_go.md
index b8bb16a6..fc6b1b51 100644
--- a/Data/HD/tome_of_beasts_mi_go.md
+++ b/Data/HD/tome_of_beasts_mi_go.md
@@ -5,7 +5,7 @@
# Mi-Go
- Source: (LDM p300)(TOB p287)
-- TOB: Mi-Go
+- Alias: Mi-Go
- Plante de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 76 (8d8+40)
diff --git a/Data/HD/tome_of_beasts_millitaure.md b/Data/HD/tome_of_beasts_millitaure.md
index b181fe0a..c9524877 100644
--- a/Data/HD/tome_of_beasts_millitaure.md
+++ b/Data/HD/tome_of_beasts_millitaure.md
@@ -5,7 +5,7 @@
# Millitaure
- Source: (LDM p301)(TOB p288)
-- TOB: Millitaur
+- Alias: Millitaur
- Créature monstrueuse de Grande taille (G), neutre
- **Terrain** Jungle
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_mimique_carte.md b/Data/HD/tome_of_beasts_mimique_carte.md
index e6f4fbe5..dc329183 100644
--- a/Data/HD/tome_of_beasts_mimique_carte.md
+++ b/Data/HD/tome_of_beasts_mimique_carte.md
@@ -5,7 +5,7 @@
# Mimique Carte
- Source: (LDM p302)(TOB p289)
-- TOB: Map Mimic
+- Alias: Map Mimic
- Créature monstrueuse (métamorphe) de très Petite taille (TP), neutre
- **Terrain** Caverne aménagée, Donjon maçonné, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_mimique_des_dunes.md b/Data/HD/tome_of_beasts_mimique_des_dunes.md
index 79ea0c68..d86054a2 100644
--- a/Data/HD/tome_of_beasts_mimique_des_dunes.md
+++ b/Data/HD/tome_of_beasts_mimique_des_dunes.md
@@ -5,7 +5,7 @@
# Mimique Des Dunes
- Source: (LDM p303)(TOB p162)
-- TOB: Dune Mimic
+- Alias: Dune Mimic
- Créature monstrueuse (métamorphe) de Très Grande taille (TG), neutre
- **Terrain** Désert chaud
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_mirageur.md b/Data/HD/tome_of_beasts_mirageur.md
index 0d2b5cc1..95f2adbf 100644
--- a/Data/HD/tome_of_beasts_mirageur.md
+++ b/Data/HD/tome_of_beasts_mirageur.md
@@ -5,7 +5,7 @@
# Mirageur
- Source: (LDM p304)(TOB p291)
-- TOB: Mirager
+- Alias: Mirager
- Fée (métamorphe) de taille Moyenne (M), neutre mauvaise
- **Terrain** Désert chaud
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_mngwa.md b/Data/HD/tome_of_beasts_mngwa.md
index beeaa2ec..6c6b4bfa 100644
--- a/Data/HD/tome_of_beasts_mngwa.md
+++ b/Data/HD/tome_of_beasts_mngwa.md
@@ -5,7 +5,7 @@
# Mngwa
- Source: (LDM p305)(TOB p293)
-- TOB: Mngwa
+- Alias: Mngwa
- Aberration de taille Moyenne (M), neutre mauvaise
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16
diff --git a/Data/HD/tome_of_beasts_molosse_nocturne.md b/Data/HD/tome_of_beasts_molosse_nocturne.md
index 4b719b5b..34ce9fd9 100644
--- a/Data/HD/tome_of_beasts_molosse_nocturne.md
+++ b/Data/HD/tome_of_beasts_molosse_nocturne.md
@@ -5,7 +5,7 @@
# Molosse Nocturne
- Source: (LDM p306)(TOB p251)
-- TOB: Hound of the night
+- Alias: Hound of the night
- Créature monstrueuse de Grande taille (G), non-alignée
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 112 (15d10+30)
diff --git a/Data/HD/tome_of_beasts_momie_venimeuse.md b/Data/HD/tome_of_beasts_momie_venimeuse.md
index cca9e1af..be214072 100644
--- a/Data/HD/tome_of_beasts_momie_venimeuse.md
+++ b/Data/HD/tome_of_beasts_momie_venimeuse.md
@@ -5,7 +5,7 @@
# Momie Venimeuse
- Source: (LDM p307)(TOB p299)
-- TOB: Venomous Mummy
+- Alias: Venomous Mummy
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Terrain** Désert chaud, Ruines souterraines
- **Classe d'armure** 11 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_montagne_de_cadavres.md b/Data/HD/tome_of_beasts_montagne_de_cadavres.md
index 317a04d6..881afcd6 100644
--- a/Data/HD/tome_of_beasts_montagne_de_cadavres.md
+++ b/Data/HD/tome_of_beasts_montagne_de_cadavres.md
@@ -5,7 +5,7 @@
# Montagne De Cadavres
- Source: (LDM p310)(TOB p69)
-- TOB: Corpse Mound
+- Alias: Corpse Mound
- Mort-vivant de Très Grande taille (TG), neutre mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 207 (18d12+90)
diff --git a/Data/HD/tome_of_beasts_morphoi.md b/Data/HD/tome_of_beasts_morphoi.md
index 12442992..9acd2497 100644
--- a/Data/HD/tome_of_beasts_morphoi.md
+++ b/Data/HD/tome_of_beasts_morphoi.md
@@ -5,7 +5,7 @@
# Morphoï
- Source: (LDM p311)(TOB p297)
-- TOB: Morphoi
+- Alias: Morphoi
- Plante (métamorphe) de taille Moyenne (M), chaotique mauvaise
- **Terrain** Littoral
- **Classe d'armure** 13 (parfois plus avec une armure)
diff --git a/Data/HD/tome_of_beasts_mort_follet.md b/Data/HD/tome_of_beasts_mort_follet.md
index e6715869..33c554a1 100644
--- a/Data/HD/tome_of_beasts_mort_follet.md
+++ b/Data/HD/tome_of_beasts_mort_follet.md
@@ -5,7 +5,7 @@
# Mort Follet
- Source: (LDM p312)(TOB p72)
-- TOB: Deathwisp
+- Alias: Deathwisp
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 15
- **Points de vie** 82 (11d8+33)
diff --git a/Data/HD/tome_of_beasts_mousse_luminescente_des_cavernes.md b/Data/HD/tome_of_beasts_mousse_luminescente_des_cavernes.md
index aca96d4e..679f36dd 100644
--- a/Data/HD/tome_of_beasts_mousse_luminescente_des_cavernes.md
+++ b/Data/HD/tome_of_beasts_mousse_luminescente_des_cavernes.md
@@ -5,7 +5,7 @@
# Mousse Luminescente Des Cavernes
- Source: (LDM p313)(TOB p53)
-- TOB: Cavelight Moss
+- Alias: Cavelight Moss
- Plante de Grande taille (G), neutre
- **Terrain** Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_murene_dragon.md b/Data/HD/tome_of_beasts_murene_dragon.md
index e3ed989f..9b01cade 100644
--- a/Data/HD/tome_of_beasts_murene_dragon.md
+++ b/Data/HD/tome_of_beasts_murene_dragon.md
@@ -5,7 +5,7 @@
# Murène Dragon
- Source: (LDM p147)(TOB p146)
-- TOB: Dragon Eel
+- Alias: Dragon Eel
- Dragon de Très Grande taille (TG), neutre
- **Terrain** Mer / Océan, Caverne sous-marine
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_myling.md b/Data/HD/tome_of_beasts_myling.md
index 07dceadd..b309e80e 100644
--- a/Data/HD/tome_of_beasts_myling.md
+++ b/Data/HD/tome_of_beasts_myling.md
@@ -5,7 +5,7 @@
# Myling
- Source: (LDM p314)(TOB p301)
-- TOB: Myling
+- Alias: Myling
- Mort-vivant de Petite taille (P), chaotique mauvais
- **Classe d'armure** 13 (armure naturelle)
- **Points de vie** 45 (10d6+10)
diff --git a/Data/HD/tome_of_beasts_myrmidon_mecanique.md b/Data/HD/tome_of_beasts_myrmidon_mecanique.md
index b21cf816..070d23a2 100644
--- a/Data/HD/tome_of_beasts_myrmidon_mecanique.md
+++ b/Data/HD/tome_of_beasts_myrmidon_mecanique.md
@@ -5,7 +5,7 @@
# Myrmidon Mécanique
- Source: (LDM p295)(TOB p64)
-- TOB: Clockwork Myrmidon
+- Alias: Clockwork Myrmidon
- Créature artificielle de Grande taille (G), non alignée
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 153 (18d10+54)
diff --git a/Data/HD/tome_of_beasts_nain_loup_ravageur.md b/Data/HD/tome_of_beasts_nain_loup_ravageur.md
index 5fccb8eb..1edcf402 100644
--- a/Data/HD/tome_of_beasts_nain_loup_ravageur.md
+++ b/Data/HD/tome_of_beasts_nain_loup_ravageur.md
@@ -5,7 +5,7 @@
# Nain Loup Ravageur
- Source: (LDM p424)(TOB p426)
-- TOB: Wolf Reaver Dwarf
+- Alias: Wolf Reaver Dwarf
- Humanoïde de taille Moyenne (nain) (M), chaotique
- **Classe d'armure** 16 (chemise de mailles, bouclier)
- **Points de vie** 76 (9d8 + 36)
diff --git a/Data/HD/tome_of_beasts_naina.md b/Data/HD/tome_of_beasts_naina.md
index 23f4d93c..1073c28a 100644
--- a/Data/HD/tome_of_beasts_naina.md
+++ b/Data/HD/tome_of_beasts_naina.md
@@ -5,7 +5,7 @@
# Naïna
- Source: (LDM p315)(TOB p302)
-- TOB: Naina
+- Alias: Naina
- Dragon (métamorphe) de Grande taille (G), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 231 (22d10+110)
diff --git a/Data/HD/tome_of_beasts_necrophage_masque.md b/Data/HD/tome_of_beasts_necrophage_masque.md
index c6161870..7a49c439 100644
--- a/Data/HD/tome_of_beasts_necrophage_masque.md
+++ b/Data/HD/tome_of_beasts_necrophage_masque.md
@@ -5,7 +5,7 @@
# Nécrophage Masqué
- Source: (LDM p316)(TOB p285)
-- TOB: Mask Wight
+- Alias: Mask Wight
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 207 (18d8 +126)
diff --git a/Data/HD/tome_of_beasts_necrophore.md b/Data/HD/tome_of_beasts_necrophore.md
index f39bcf59..dd96cd58 100644
--- a/Data/HD/tome_of_beasts_necrophore.md
+++ b/Data/HD/tome_of_beasts_necrophore.md
@@ -5,7 +5,7 @@
# Nécrophore
- Source: (LDM p317)(TOB p52)
-- TOB: Carrion Beetle
+- Alias: Carrion Beetle
- Bête de Grande taille (G), neutre
- **Terrain** Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_ngobou.md b/Data/HD/tome_of_beasts_ngobou.md
index 55fed37c..e60752e0 100644
--- a/Data/HD/tome_of_beasts_ngobou.md
+++ b/Data/HD/tome_of_beasts_ngobou.md
@@ -5,7 +5,7 @@
# Ngobou
- Source: (LDM p118)(TOB p115)
-- TOB: Ngobou
+- Alias: Ngobou
- Bête de Grande taille (G), non alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_nichny.md b/Data/HD/tome_of_beasts_nichny.md
index b2a2f2c2..8c79d341 100644
--- a/Data/HD/tome_of_beasts_nichny.md
+++ b/Data/HD/tome_of_beasts_nichny.md
@@ -5,7 +5,7 @@
# Nichny
- Source: (LDM p318)(TOB p303)
-- TOB: Nichny
+- Alias: Nichny
- Fée de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 112 (15d8+45)
diff --git a/Data/HD/tome_of_beasts_nihileth.md b/Data/HD/tome_of_beasts_nihileth.md
index 676463f2..7b0a221f 100644
--- a/Data/HD/tome_of_beasts_nihileth.md
+++ b/Data/HD/tome_of_beasts_nihileth.md
@@ -5,7 +5,7 @@
# Nihileth
- Source: (LDM p8)(TOB p8)
-- TOB: Nihileth
+- Alias: Nihileth
- Mort-vivant de Grande taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 135 (18d10+36)
diff --git a/Data/HD/tome_of_beasts_nkosi.md b/Data/HD/tome_of_beasts_nkosi.md
index edd1cd9a..567a2b10 100644
--- a/Data/HD/tome_of_beasts_nkosi.md
+++ b/Data/HD/tome_of_beasts_nkosi.md
@@ -5,7 +5,7 @@
# Nkosi
- Source: (LDM p319)(TOB p306)
-- TOB: Nkosi
+- Alias: Nkosi
- Humanoïde de taille Moyenne (métamorphe, nkosi) (M), loyal neutre
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_noctegarm.md b/Data/HD/tome_of_beasts_noctegarm.md
index 771882d3..8f741587 100644
--- a/Data/HD/tome_of_beasts_noctegarm.md
+++ b/Data/HD/tome_of_beasts_noctegarm.md
@@ -5,7 +5,7 @@
# Noctegarm
- Source: (LDM p322)(TOB p305)
-- TOB: Nightgarm
+- Alias: Nightgarm
- Créature monstrueuse de Grande taille (G), chaotique mauvaise
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 114 (12d10+48)
diff --git a/Data/HD/tome_of_beasts_noctin.md b/Data/HD/tome_of_beasts_noctin.md
index 4f05d051..ec6e4c50 100644
--- a/Data/HD/tome_of_beasts_noctin.md
+++ b/Data/HD/tome_of_beasts_noctin.md
@@ -5,7 +5,7 @@
# Noctin
- Source: (LDM p323)(TOB p308)
-- TOB: Noctiny
+- Alias: Noctiny
- Humanoïde (noctin) de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 13 (armure de cuir clouté)
- **Points de vie** 52 (8d8+16)
diff --git a/Data/HD/tome_of_beasts_nuee_de_danseflammes.md b/Data/HD/tome_of_beasts_nuee_de_danseflammes.md
index 3387a5a4..1a4a0c10 100644
--- a/Data/HD/tome_of_beasts_nuee_de_danseflammes.md
+++ b/Data/HD/tome_of_beasts_nuee_de_danseflammes.md
@@ -5,7 +5,7 @@
# Nuée De Danseflammes
- Source: (LDM p326)(TOB p373)
-- TOB: Fire Dancer Swarm
+- Alias: Fire Dancer Swarm
- Nuée de taille Moyenne d'élémentaires de taille Très Petite (TP), neutre
- **Terrain** Plans élémentaires
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_nuee_de_papillons_de_mort.md b/Data/HD/tome_of_beasts_nuee_de_papillons_de_mort.md
index c3299bbc..a5a47d32 100644
--- a/Data/HD/tome_of_beasts_nuee_de_papillons_de_mort.md
+++ b/Data/HD/tome_of_beasts_nuee_de_papillons_de_mort.md
@@ -5,7 +5,7 @@
# Nuée de Papillons de Mort
- Source: (LDM p327)(TOB p71)
-- TOB: Death Butterfly Swarm
+- Alias: Death Butterfly Swarm
- Nuée de Grande taille de bêtes de Très Petite taille (TP), chaotique mauvaise
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_nuee_de_rodeurs_des_quais.md b/Data/HD/tome_of_beasts_nuee_de_rodeurs_des_quais.md
index 6392d620..bc1ba0bd 100644
--- a/Data/HD/tome_of_beasts_nuee_de_rodeurs_des_quais.md
+++ b/Data/HD/tome_of_beasts_nuee_de_rodeurs_des_quais.md
@@ -5,7 +5,7 @@
# Nuée De Rôdeurs Des Quais
- Source: (LDM p350)(TOB p407)
-- TOB: Wharfling Swarm
+- Alias: Wharfling Swarm
- Nuée de Grande taille de bêtes de Très Petite taille (TP), non alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 63 (14d10 - 14)
diff --git a/Data/HD/tome_of_beasts_nuee_de_scarabees_manavores.md b/Data/HD/tome_of_beasts_nuee_de_scarabees_manavores.md
index e6459c79..2c65050e 100644
--- a/Data/HD/tome_of_beasts_nuee_de_scarabees_manavores.md
+++ b/Data/HD/tome_of_beasts_nuee_de_scarabees_manavores.md
@@ -5,7 +5,7 @@
# Nuée De Scarabées Manavores
- Source: (LDM p328)(TOB p374)
-- TOB: Manabane Scarab Swarm
+- Alias: Manabane Scarab Swarm
- Nuée de taille Moyenne de bêtes de Très Petite taille (TP), non-alignée
- **Terrain** Désert chaud
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_nuee_de_scarabees_mecaniques.md b/Data/HD/tome_of_beasts_nuee_de_scarabees_mecaniques.md
index 859a4773..59406c4c 100644
--- a/Data/HD/tome_of_beasts_nuee_de_scarabees_mecaniques.md
+++ b/Data/HD/tome_of_beasts_nuee_de_scarabees_mecaniques.md
@@ -5,7 +5,7 @@
# Nuée De Scarabées Mécaniques
- Source: (LDM p329)(TOB p61)
-- TOB: Clockwork Beetle Swarm
+- Alias: Clockwork Beetle Swarm
- Grande nuée de créatures artificielles de Très Petite taille (TP), neutre
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 52 (8d10+8)
diff --git a/Data/HD/tome_of_beasts_nuee_de_scarabees_prismatiques.md b/Data/HD/tome_of_beasts_nuee_de_scarabees_prismatiques.md
index 806a3a11..b5c7083b 100644
--- a/Data/HD/tome_of_beasts_nuee_de_scarabees_prismatiques.md
+++ b/Data/HD/tome_of_beasts_nuee_de_scarabees_prismatiques.md
@@ -5,7 +5,7 @@
# Nuée De Scarabées Prismatiques
- Source: (LDM p330)(TOB p375)
-- TOB: Prismatic Beetle Swarm
+- Alias: Prismatic Beetle Swarm
- Nuée de taille Moyenne de bêtes de Très Petite taille (TP), non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_nuee_de_sluaghs.md b/Data/HD/tome_of_beasts_nuee_de_sluaghs.md
index 5bfc1452..6d9e3a6c 100644
--- a/Data/HD/tome_of_beasts_nuee_de_sluaghs.md
+++ b/Data/HD/tome_of_beasts_nuee_de_sluaghs.md
@@ -5,7 +5,7 @@
# Nuée De Sluaghs
- Source: (LDM p331)(TOB p376)
-- TOB: Sluagh Swarm
+- Alias: Sluagh Swarm
- Nuée de taille Moyenne de fées de taille Très Petite (TP), chaotique mauvaise
- **Classe d'armure** 13
- **Points de vie** 54 (12d8)
diff --git a/Data/HD/tome_of_beasts_nuee_desprits_lupins.md b/Data/HD/tome_of_beasts_nuee_desprits_lupins.md
index 4f34c222..1d752cc8 100644
--- a/Data/HD/tome_of_beasts_nuee_desprits_lupins.md
+++ b/Data/HD/tome_of_beasts_nuee_desprits_lupins.md
@@ -5,7 +5,7 @@
# Nuée D'Esprits Lupins
- Source: (LDM p324)(TOB p377)
-- TOB: Wolf Spirit Swarm
+- Alias: Wolf Spirit Swarm
- Nuée de Grande taille de morts-vivants de taille Moyenne (G), neutre
- **Terrain** Bois / Forêt, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_nuee_dyeux.md b/Data/HD/tome_of_beasts_nuee_dyeux.md
index 61d605e8..e0e0c137 100644
--- a/Data/HD/tome_of_beasts_nuee_dyeux.md
+++ b/Data/HD/tome_of_beasts_nuee_dyeux.md
@@ -5,7 +5,7 @@
# Nuée D'Yeux
- Source: (LDM p325)(TOB p309)
-- TOB: Oculo Swarm
+- Alias: Oculo Swarm
- Nuée de Grande taille d'aberrations de taille Minuscule (G), neutre
- **Classe d'armure** 15
- **Points de vie** 110 (13d10+39)
diff --git a/Data/HD/tome_of_beasts_nuee_osseuse.md b/Data/HD/tome_of_beasts_nuee_osseuse.md
index 4de1ce4c..e1107a96 100644
--- a/Data/HD/tome_of_beasts_nuee_osseuse.md
+++ b/Data/HD/tome_of_beasts_nuee_osseuse.md
@@ -5,7 +5,7 @@
# Nuée Osseuse
- Source: (LDM p332)(TOB p41)
-- TOB: Bone Swarm
+- Alias: Bone Swarm
- Nuée de Grande taille de morts-vivants de Très Petite taille (G), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 198 (36d10)
diff --git a/Data/HD/tome_of_beasts_oeil_demeraude.md b/Data/HD/tome_of_beasts_oeil_demeraude.md
index 880e514a..cc6001ae 100644
--- a/Data/HD/tome_of_beasts_oeil_demeraude.md
+++ b/Data/HD/tome_of_beasts_oeil_demeraude.md
@@ -5,7 +5,7 @@
# Oeil D'Émeraude
- Source: (LDM p333)(TOB p175)
-- TOB: Emerald Eye
+- Alias: Emerald Eye
- Créature artificielle de taille Très Petite (TP), chaotique mauvais
- **Classe d'armure** 14
- **Points de vie** 54 (12d4+24)
diff --git a/Data/HD/tome_of_beasts_oiseau_de_feu.md b/Data/HD/tome_of_beasts_oiseau_de_feu.md
index 23f7eed0..bdf254d1 100644
--- a/Data/HD/tome_of_beasts_oiseau_de_feu.md
+++ b/Data/HD/tome_of_beasts_oiseau_de_feu.md
@@ -5,7 +5,7 @@
# Oiseau De Feu
- Source: (LDM p334)(TOB p201)
-- TOB: Firebird
+- Alias: Firebird
- Céleste de Petite taille (P), neutre bon
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 99 (18d6+36)
diff --git a/Data/HD/tome_of_beasts_ostinato.md b/Data/HD/tome_of_beasts_ostinato.md
index 79dccfe5..caecb5dd 100644
--- a/Data/HD/tome_of_beasts_ostinato.md
+++ b/Data/HD/tome_of_beasts_ostinato.md
@@ -5,7 +5,7 @@
# Ostinato
- Source: (LDM p335)(TOB p335)
-- TOB: Ostinato
+- Alias: Ostinato
- Aberration de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 15
- **Points de vie** 39 (6d8+12)
diff --git a/Data/HD/tome_of_beasts_ovasis.md b/Data/HD/tome_of_beasts_ovasis.md
index 6ca9eeb4..67f9c305 100644
--- a/Data/HD/tome_of_beasts_ovasis.md
+++ b/Data/HD/tome_of_beasts_ovasis.md
@@ -5,7 +5,7 @@
# Ovasis
- Source: (LDM p336)(TOB p310)
-- TOB: Oozasis
+- Alias: Oozasis
- Vase de taille Gigantesque (Gig), non alignée
- **Terrain** Désert chaud, Mangrove / Marécage
- **Classe d'armure** 7
diff --git a/Data/HD/tome_of_beasts_pavenuee.md b/Data/HD/tome_of_beasts_pavenuee.md
index 3cbea842..0aab2402 100644
--- a/Data/HD/tome_of_beasts_pavenuee.md
+++ b/Data/HD/tome_of_beasts_pavenuee.md
@@ -5,7 +5,7 @@
# Pavenuée
- Source: (LDM p337)(TOB p68)
-- TOB: Cobbleswarm
+- Alias: Cobbleswarm
- Nuée de Grande taille composée de bêtes de Très Petite taille (G), non alignée
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 36 (8d8)
diff --git a/Data/HD/tome_of_beasts_piege_caustique.md b/Data/HD/tome_of_beasts_piege_caustique.md
index ff16e911..d8cc7605 100644
--- a/Data/HD/tome_of_beasts_piege_caustique.md
+++ b/Data/HD/tome_of_beasts_piege_caustique.md
@@ -5,7 +5,7 @@
# Piège Caustique
- Source: (LDM p338)(TOB p296)
-- TOB: Mordant Snare
+- Alias: Mordant Snare
- Aberration de taille Gigantesque (Gig), chaotique mauvaise
- **Terrain** Ruines souterraines
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_pombero.md b/Data/HD/tome_of_beasts_pombero.md
index 42fe01b3..dfb8e487 100644
--- a/Data/HD/tome_of_beasts_pombero.md
+++ b/Data/HD/tome_of_beasts_pombero.md
@@ -5,7 +5,7 @@
# Pombero
- Source: (LDM p339)(TOB p313)
-- TOB: Pombero
+- Alias: Pombero
- Fée de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_pourceau_des_failles.md b/Data/HD/tome_of_beasts_pourceau_des_failles.md
index c98b1ad2..6f64a14f 100644
--- a/Data/HD/tome_of_beasts_pourceau_des_failles.md
+++ b/Data/HD/tome_of_beasts_pourceau_des_failles.md
@@ -5,7 +5,7 @@
# Pourceau Des Failles
- Source: (LDM p340)(TOB p326)
-- TOB: Rift Swine
+- Alias: Rift Swine
- Aberration de Grande taille (G), chaotique neutre
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 110 (13d10+39)
diff --git a/Data/HD/tome_of_beasts_pretre_profond_hybride.md b/Data/HD/tome_of_beasts_pretre_profond_hybride.md
index be59f2ab..35f44f96 100644
--- a/Data/HD/tome_of_beasts_pretre_profond_hybride.md
+++ b/Data/HD/tome_of_beasts_pretre_profond_hybride.md
@@ -5,7 +5,7 @@
# Prêtre Profond Hybride
- Source: (LDM p344)(TOB p73)
-- TOB: Deep One Hybrid Priest
+- Alias: Deep One Hybrid Priest
- Humanoïde de taille Moyenne (M), chaotique mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_primate_blanc.md b/Data/HD/tome_of_beasts_primate_blanc.md
index 3cc57e42..ab970972 100644
--- a/Data/HD/tome_of_beasts_primate_blanc.md
+++ b/Data/HD/tome_of_beasts_primate_blanc.md
@@ -5,7 +5,7 @@
# Primate Blanc
- Source: (LDM p341)(TOB p408)
-- TOB: White Ape
+- Alias: White Ape
- Créature monstrueuse de Grande taille (G), neutre
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_prince_gnome_asservi_aux_demons.md b/Data/HD/tome_of_beasts_prince_gnome_asservi_aux_demons.md
index 2e37be25..71c93960 100644
--- a/Data/HD/tome_of_beasts_prince_gnome_asservi_aux_demons.md
+++ b/Data/HD/tome_of_beasts_prince_gnome_asservi_aux_demons.md
@@ -5,7 +5,7 @@
# Prince Gnome Asservi Aux Démons
- Source: (LDM p424)(TOB p420)
-- TOB: Devilbound Gnomish Prince
+- Alias: Devilbound Gnomish Prince
- Humanoïde de Petite taille (gnome) (P), mauvais
- **Classe d'armure** 12 (15 avec armure du mage)
- **Points de vie** 104 (19d6 + 38)
diff --git a/Data/HD/tome_of_beasts_profanateur_maudit.md b/Data/HD/tome_of_beasts_profanateur_maudit.md
index a3ec14b9..6ab2fd7a 100644
--- a/Data/HD/tome_of_beasts_profanateur_maudit.md
+++ b/Data/HD/tome_of_beasts_profanateur_maudit.md
@@ -5,7 +5,7 @@
# Profanateur Maudit
- Source: (LDM p342)(TOB p12)
-- TOB: Accursed Defiler
+- Alias: Accursed Defiler
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 12
diff --git a/Data/HD/tome_of_beasts_profond.md b/Data/HD/tome_of_beasts_profond.md
index 034d3991..5ddcd5cc 100644
--- a/Data/HD/tome_of_beasts_profond.md
+++ b/Data/HD/tome_of_beasts_profond.md
@@ -5,7 +5,7 @@
# Profond
- Source: (LDM p343)(TOB p73)
-- TOB: Deep One
+- Alias: Deep One
- Humanoïde de taille Moyenne (M), chaotique mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine, Ruines sous-marines
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_qorgeth_seigneur_demon_du_ver_insatiable.md b/Data/HD/tome_of_beasts_qorgeth_seigneur_demon_du_ver_insatiable.md
index 8e43c951..8ac5b133 100644
--- a/Data/HD/tome_of_beasts_qorgeth_seigneur_demon_du_ver_insatiable.md
+++ b/Data/HD/tome_of_beasts_qorgeth_seigneur_demon_du_ver_insatiable.md
@@ -5,7 +5,7 @@
# Qorgeth, seigneur démon du ver insatiable
- Source: (LDM p92)(TOB p90)
-- TOB: Qorgeth, Demon Lord of the Devouring Worm
+- Alias: Qorgeth, Demon Lord of the Devouring Worm
- Fiélon (démon) de taille Gigantesque (Gig), chaotique mauvais
- **Classe d'armure** 21 (armure naturelle)
- **Points de vie** 370 (20d20+160)
diff --git a/Data/HD/tome_of_beasts_qwyllion.md b/Data/HD/tome_of_beasts_qwyllion.md
index f9672489..7478678b 100644
--- a/Data/HD/tome_of_beasts_qwyllion.md
+++ b/Data/HD/tome_of_beasts_qwyllion.md
@@ -5,7 +5,7 @@
# Qwyllion
- Source: (LDM p345)(TOB p316)
-- TOB: Qwyllion
+- Alias: Qwyllion
- Aberration de taille Moyenne (M), neutre mauvaise
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 110 (13d8+52)
diff --git a/Data/HD/tome_of_beasts_ramag.md b/Data/HD/tome_of_beasts_ramag.md
index 9c99e24b..b69b81cf 100644
--- a/Data/HD/tome_of_beasts_ramag.md
+++ b/Data/HD/tome_of_beasts_ramag.md
@@ -5,7 +5,7 @@
# Ramag
- Source: (LDM p346)(TOB p317)
-- TOB: Ramag
+- Alias: Ramag
- Humanoïde (ramag) de taille Moyenne (M), neutre
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 13 (armure de cuir)
diff --git a/Data/HD/tome_of_beasts_ratatosk.md b/Data/HD/tome_of_beasts_ratatosk.md
index 470c3d00..d135fe7d 100644
--- a/Data/HD/tome_of_beasts_ratatosk.md
+++ b/Data/HD/tome_of_beasts_ratatosk.md
@@ -5,7 +5,7 @@
# Ratatosk
- Source: (LDM p347)(TOB p319)
-- TOB: Ratatosk
+- Alias: Ratatosk
- Céleste de Très Petite taille (TP), chaotique neutre
- **Classe d'armure** 14
- **Points de vie** 42 (12d4+12)
diff --git a/Data/HD/tome_of_beasts_ravageur_trollien.md b/Data/HD/tome_of_beasts_ravageur_trollien.md
index 15f5486f..7cbd0d8b 100644
--- a/Data/HD/tome_of_beasts_ravageur_trollien.md
+++ b/Data/HD/tome_of_beasts_ravageur_trollien.md
@@ -5,7 +5,7 @@
# Ravageur Trollien
- Source: (LDM p348)(TOB p390)
-- TOB: Trollkin Reaver
+- Alias: Trollkin Reaver
- Humanoïde (trollien) de taille Moyenne (M), neutre
- **Classe d'armure** 14 (armure de peau)
- **Points de vie** 82 (11d8+33)
diff --git a/Data/HD/tome_of_beasts_ravenala.md b/Data/HD/tome_of_beasts_ravenala.md
index f39dcbbe..85e98000 100644
--- a/Data/HD/tome_of_beasts_ravenala.md
+++ b/Data/HD/tome_of_beasts_ravenala.md
@@ -5,7 +5,7 @@
# Ravenala
- Source: (LDM p349)(TOB p321)
-- TOB: Ravenala
+- Alias: Ravenala
- Plante de Grande taille (G), non alignée
- **Terrain** Jungle
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_reine_du_nid_tosculie.md b/Data/HD/tome_of_beasts_reine_du_nid_tosculie.md
index 93f634c7..1ffdc54e 100644
--- a/Data/HD/tome_of_beasts_reine_du_nid_tosculie.md
+++ b/Data/HD/tome_of_beasts_reine_du_nid_tosculie.md
@@ -5,7 +5,7 @@
# Reine Du Nid Tosculie
- Source: (LDM p386)(TOB p385)
-- TOB: Tosculi Hive-Queen
+- Alias: Tosculi Hive-Queen
- Créature monstrueuse de Grande taille (G), loyale mauvaise
- **Terrain** Collines / Vallées, Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 17
diff --git a/Data/HD/tome_of_beasts_reine_fourmi_geante.md b/Data/HD/tome_of_beasts_reine_fourmi_geante.md
index 6cc9787f..99af7131 100644
--- a/Data/HD/tome_of_beasts_reine_fourmi_geante.md
+++ b/Data/HD/tome_of_beasts_reine_fourmi_geante.md
@@ -5,7 +5,7 @@
# Reine Fourmi Géante
- Source: (LDM p199)(TOB p23)
-- TOB: Giant Ant Queen
+- Alias: Giant Ant Queen
- Bête de Grande taille (G), non alignée
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 85 (10d10+30)
diff --git a/Data/HD/tome_of_beasts_rejeton_dakyishigal.md b/Data/HD/tome_of_beasts_rejeton_dakyishigal.md
index ff17d847..b856a9c2 100644
--- a/Data/HD/tome_of_beasts_rejeton_dakyishigal.md
+++ b/Data/HD/tome_of_beasts_rejeton_dakyishigal.md
@@ -5,7 +5,7 @@
# Rejeton D'Akyishigal
- Source: (LDM p85)(TOB p83)
-- TOB: Spawn of Akyishigal
+- Alias: Spawn of Akyishigal
- Fiélon (démon) de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 119 (14d8+56)
diff --git a/Data/HD/tome_of_beasts_rejeton_darbeyach.md b/Data/HD/tome_of_beasts_rejeton_darbeyach.md
index 4826371e..05c1bf5b 100644
--- a/Data/HD/tome_of_beasts_rejeton_darbeyach.md
+++ b/Data/HD/tome_of_beasts_rejeton_darbeyach.md
@@ -5,7 +5,7 @@
# Rejeton D'Arbeyach
- Source: (LDM p100)(TOB p97)
-- TOB: Spawn of Arbeyach
+- Alias: Spawn of Arbeyach
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 78 (12d8+24)
diff --git a/Data/HD/tome_of_beasts_rodeur_des_quais.md b/Data/HD/tome_of_beasts_rodeur_des_quais.md
index 812425b5..8c207193 100644
--- a/Data/HD/tome_of_beasts_rodeur_des_quais.md
+++ b/Data/HD/tome_of_beasts_rodeur_des_quais.md
@@ -5,7 +5,7 @@
# Rôdeur Des Quais
- Source: (LDM p350)(TOB p407)
-- TOB: Wharfling
+- Alias: Wharfling
- Bête de Très Petite taille (TP), non alignée
- **Classe d'armure** 13
- **Points de vie** 6 (4d4 - 4)
diff --git a/Data/HD/tome_of_beasts_rodeur_moussu.md b/Data/HD/tome_of_beasts_rodeur_moussu.md
index 47aece72..c0386c86 100644
--- a/Data/HD/tome_of_beasts_rodeur_moussu.md
+++ b/Data/HD/tome_of_beasts_rodeur_moussu.md
@@ -5,7 +5,7 @@
# Rôdeur Moussu
- Source: (LDM p351)(TOB p298)
-- TOB: Moss Lurker
+- Alias: Moss Lurker
- Humanoïde de Petite taille (P), chaotique neutre
- **Terrain** Bois / Forêt, Littoral, Mangrove / Marécage, Caverne naturelle
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_roi_des_rats.md b/Data/HD/tome_of_beasts_roi_des_rats.md
index c3e56f83..a73c0e91 100644
--- a/Data/HD/tome_of_beasts_roi_des_rats.md
+++ b/Data/HD/tome_of_beasts_roi_des_rats.md
@@ -5,7 +5,7 @@
# Roi Des Rats
- Source: (LDM p352)(TOB 318)
-- TOB: Rat King
+- Alias: Rat King
- Créature monstrueuse de taille Moyenne (M), chaotique mauvaise
- **Terrain** Caverne aménagée, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_roublard_homme_rat.md b/Data/HD/tome_of_beasts_roublard_homme_rat.md
index b034b64a..35dbea6d 100644
--- a/Data/HD/tome_of_beasts_roublard_homme_rat.md
+++ b/Data/HD/tome_of_beasts_roublard_homme_rat.md
@@ -5,7 +5,7 @@
# Roublard Homme-Rat
- Source: (LDM p245)(TOB p320)
-- TOB: Ratfolk Rogue
+- Alias: Ratfolk Rogue
- Humanoïde (homme-rat) de Petite taille (P), neutre
- **Terrain** Caverne aménagée
- **Classe d'armure** 15 (armure de cuir clouté)
diff --git a/Data/HD/tome_of_beasts_roussalka.md b/Data/HD/tome_of_beasts_roussalka.md
index 31fd3440..e50df231 100644
--- a/Data/HD/tome_of_beasts_roussalka.md
+++ b/Data/HD/tome_of_beasts_roussalka.md
@@ -5,7 +5,7 @@
# Roussalka
- Source: (LDM p353)(TOB p331)
-- TOB: Rusalka
+- Alias: Rusalka
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Terrain** Littoral
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_rubezahl.md b/Data/HD/tome_of_beasts_rubezahl.md
index d85deb03..e7ecfeac 100644
--- a/Data/HD/tome_of_beasts_rubezahl.md
+++ b/Data/HD/tome_of_beasts_rubezahl.md
@@ -5,7 +5,7 @@
# Rübezahl
- Source: (LDM p82)(TOB p80)
-- TOB: Rubezahl
+- Alias: Rubezahl
- Fiélon (démon) de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 110 (17d8+34)
diff --git a/Data/HD/tome_of_beasts_saccageur_releve.md b/Data/HD/tome_of_beasts_saccageur_releve.md
index fef31020..56cf2e30 100644
--- a/Data/HD/tome_of_beasts_saccageur_releve.md
+++ b/Data/HD/tome_of_beasts_saccageur_releve.md
@@ -5,7 +5,7 @@
# Saccageur Relevé
- Source: (LDM p354)(TOB p328)
-- TOB: Risen Reaver
+- Alias: Risen Reaver
- Mort-vivant de Grande taille (G), chaotique mauvais
- **Classe d'armure** 15 (armure de cuir clouté)
- **Points de vie** 168 (16d10+80)
diff --git a/Data/HD/tome_of_beasts_sarcoptere.md b/Data/HD/tome_of_beasts_sarcoptere.md
index 2d2eb407..45c68879 100644
--- a/Data/HD/tome_of_beasts_sarcoptere.md
+++ b/Data/HD/tome_of_beasts_sarcoptere.md
@@ -5,7 +5,7 @@
# Sarcoptère
- Source: (LDM p355)(TOB p203)
-- TOB: Flutterflesh
+- Alias: Flutterflesh
- Mort-vivant de Grande taille (G), chaotique mauvais
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 187 (22d10+66)
diff --git a/Data/HD/tome_of_beasts_savant_foetal_derro.md b/Data/HD/tome_of_beasts_savant_foetal_derro.md
index 91e2d62e..f28f386c 100644
--- a/Data/HD/tome_of_beasts_savant_foetal_derro.md
+++ b/Data/HD/tome_of_beasts_savant_foetal_derro.md
@@ -5,7 +5,7 @@
# Savant Foetal Derro
- Source: (LDM p95)(TOB p92)
-- TOB: Derro Fetal Savant
+- Alias: Derro Fetal Savant
- Humanoïde de Très Petite taille (TP), chaotique mauvais
- **Terrain** Donjon maçonné, Ruines souterraines
- **Classe d'armure** 15 (cage)
diff --git a/Data/HD/tome_of_beasts_scarabee_mecanique.md b/Data/HD/tome_of_beasts_scarabee_mecanique.md
index 4884d560..8173bb56 100644
--- a/Data/HD/tome_of_beasts_scarabee_mecanique.md
+++ b/Data/HD/tome_of_beasts_scarabee_mecanique.md
@@ -5,7 +5,7 @@
# Scarabée Mécanique
- Source: (LDM p296)(TOB p60)
-- TOB: Clockwork Beetle
+- Alias: Clockwork Beetle
- Créature artificielle de Très Petite taille (TP), non alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 15 (6d4)
diff --git a/Data/HD/tome_of_beasts_scheznyki.md b/Data/HD/tome_of_beasts_scheznyki.md
index 9eba3508..0c37c403 100644
--- a/Data/HD/tome_of_beasts_scheznyki.md
+++ b/Data/HD/tome_of_beasts_scheznyki.md
@@ -5,7 +5,7 @@
# Scheznyki
- Source: (LDM p356)(TOB p339)
-- TOB: Scheznyki
+- Alias: Scheznyki
- Fée de Petite taille (P), chaotique mauvaise
- **Terrain** Collines / Vallées, Ruines souterraines
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_scorpion_nocturne.md b/Data/HD/tome_of_beasts_scorpion_nocturne.md
index d9472dd4..0dc1d39a 100644
--- a/Data/HD/tome_of_beasts_scorpion_nocturne.md
+++ b/Data/HD/tome_of_beasts_scorpion_nocturne.md
@@ -5,7 +5,7 @@
# Scorpion Nocturne
- Source: (LDM p357)(TOB p340)
-- TOB: Night Scorpion
+- Alias: Night Scorpion
- Bête de Grande taille (G), non-alignée
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane, Caverne aménagée, Ruines souterraines
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_scorpion_stygien_a_large_queue.md b/Data/HD/tome_of_beasts_scorpion_stygien_a_large_queue.md
index c69b8173..3f24506b 100644
--- a/Data/HD/tome_of_beasts_scorpion_stygien_a_large_queue.md
+++ b/Data/HD/tome_of_beasts_scorpion_stygien_a_large_queue.md
@@ -5,7 +5,7 @@
# Scorpion Stygien À Large Queue
- Source: (LDM p357)(TOB p340)
-- TOB: Stygian Fat-Tailed Scorpion
+- Alias: Stygian Fat-Tailed Scorpion
- Bête de Très Petite taille (TP), non-alignée
- **Terrain** Désert chaud, Caverne aménagée
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_seigneur_des_bandits.md b/Data/HD/tome_of_beasts_seigneur_des_bandits.md
index 07985704..9e7ff54d 100644
--- a/Data/HD/tome_of_beasts_seigneur_des_bandits.md
+++ b/Data/HD/tome_of_beasts_seigneur_des_bandits.md
@@ -5,7 +5,7 @@
# Seigneur Des Bandits
- Source: (LDM p425)(TOB p418)
-- TOB: Bandit Lord
+- Alias: Bandit Lord
- Humanoïde de taille Moyenne (n'importe quelle race) (M), tout
- **Classe d'armure** 16 (cuirasse)
- **Points de vie** 91 (14d8 + 28)
diff --git a/Data/HD/tome_of_beasts_seigneur_des_lianes.md b/Data/HD/tome_of_beasts_seigneur_des_lianes.md
index cfdaf5cf..d8981fb5 100644
--- a/Data/HD/tome_of_beasts_seigneur_des_lianes.md
+++ b/Data/HD/tome_of_beasts_seigneur_des_lianes.md
@@ -5,7 +5,7 @@
# Seigneur Des Lianes
- Source: (LDM p358)(TOB p402)
-- TOB: Vine Lord
+- Alias: Vine Lord
- Plante de taille Moyenne (M), loyale neutre
- **Terrain** Jungle
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_seigneur_homme_cafard.md b/Data/HD/tome_of_beasts_seigneur_homme_cafard.md
index 66eb21bb..ea88c80c 100644
--- a/Data/HD/tome_of_beasts_seigneur_homme_cafard.md
+++ b/Data/HD/tome_of_beasts_seigneur_homme_cafard.md
@@ -5,7 +5,7 @@
# Seigneur Homme-Cafard
- Source: (LDM p238)(TOB p329)
-- TOB: Roachling Lord
+- Alias: Roachling Lord
- Humanoïde (homme-cafard) de Petite taille (P), chaotique neutre
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_selang.md b/Data/HD/tome_of_beasts_selang.md
index df389537..37a69c03 100644
--- a/Data/HD/tome_of_beasts_selang.md
+++ b/Data/HD/tome_of_beasts_selang.md
@@ -5,7 +5,7 @@
# Sélang
- Source: (LDM p360)(TOB p341)
-- TOB: Selang
+- Alias: Selang
- Fée de taille Moyenne (M), chaotique mauvaise
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 76 (9d8+36)
diff --git a/Data/HD/tome_of_beasts_serpopard.md b/Data/HD/tome_of_beasts_serpopard.md
index 3f5d0cc7..231846c1 100644
--- a/Data/HD/tome_of_beasts_serpopard.md
+++ b/Data/HD/tome_of_beasts_serpopard.md
@@ -5,7 +5,7 @@
# Serpopard
- Source: (LDM p362)(TOB p342)
-- TOB: Serpopard
+- Alias: Serpopard
- Bête de Grande taille (G), non-alignée
- **Terrain** Collines / Vallées, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_shabti.md b/Data/HD/tome_of_beasts_shabti.md
index 25020809..d2cfe9ea 100644
--- a/Data/HD/tome_of_beasts_shabti.md
+++ b/Data/HD/tome_of_beasts_shabti.md
@@ -5,7 +5,7 @@
# Shabti
- Source: (LDM p363)(TOB p343)
-- TOB: Shabti
+- Alias: Shabti
- Créature artificielle de taille Moyenne (M), non-alignée
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 102 (12d8+48)
diff --git a/Data/HD/tome_of_beasts_shadhavar.md b/Data/HD/tome_of_beasts_shadhavar.md
index f3669705..7464671e 100644
--- a/Data/HD/tome_of_beasts_shadhavar.md
+++ b/Data/HD/tome_of_beasts_shadhavar.md
@@ -5,7 +5,7 @@
# Shadhavar
- Source: (LDM p364)(TOB p344)
-- TOB: Shadhavar
+- Alias: Shadhavar
- Créature monstrueuse de Grande taille (G), neutre
- **Classe d'armure** 14 (naturelle)
- **Points de vie** 97 (13d10+26)
diff --git a/Data/HD/tome_of_beasts_shoggoth.md b/Data/HD/tome_of_beasts_shoggoth.md
index f43c738f..f9aed0b5 100644
--- a/Data/HD/tome_of_beasts_shoggoth.md
+++ b/Data/HD/tome_of_beasts_shoggoth.md
@@ -5,7 +5,7 @@
# Shoggoth
- Source: (LDM p365)(TOB p347)
-- TOB: Shoggoth
+- Alias: Shoggoth
- Aberration de Très Grande taille (TG), chaotique neutre
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 387 (25d12+225)
diff --git a/Data/HD/tome_of_beasts_silhouette_de_sable.md b/Data/HD/tome_of_beasts_silhouette_de_sable.md
index 1a07f2af..d7caefbb 100644
--- a/Data/HD/tome_of_beasts_silhouette_de_sable.md
+++ b/Data/HD/tome_of_beasts_silhouette_de_sable.md
@@ -5,7 +5,7 @@
# Silhouette De Sable
- Source: (LDM p366)(TOB p332)
-- TOB: Sand Silhouette
+- Alias: Sand Silhouette
- Mort-vivant de taille Moyenne (M), neutre mauvais
- **Terrain** Désert chaud
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_sorcelueur.md b/Data/HD/tome_of_beasts_sorcelueur.md
index e3790452..d49dbaa8 100644
--- a/Data/HD/tome_of_beasts_sorcelueur.md
+++ b/Data/HD/tome_of_beasts_sorcelueur.md
@@ -5,7 +5,7 @@
# Sorcelueur
- Source: (LDM p367)(TOB p409)
-- TOB: Witchlight
+- Alias: Witchlight
- Créature artificielle de Très Petite taille (TP), neutre
- **Classe d'armure** 14
- **Points de vie** 10 (4d4)
diff --git a/Data/HD/tome_of_beasts_sorciere_de_lecheveau.md b/Data/HD/tome_of_beasts_sorciere_de_lecheveau.md
index a782755f..c49eca05 100644
--- a/Data/HD/tome_of_beasts_sorciere_de_lecheveau.md
+++ b/Data/HD/tome_of_beasts_sorciere_de_lecheveau.md
@@ -5,7 +5,7 @@
# Sorcière De L'Écheveau
- Source: (LDM p368)(TOB p349)
-- TOB: Skein Witch
+- Alias: Skein Witch
- Céleste de taille Moyenne (M), neutre
- **Classe d'armure** 20 (armure naturelle)
- **Points de vie** 162 (25d8+50)
diff --git a/Data/HD/tome_of_beasts_spinosaure.md b/Data/HD/tome_of_beasts_spinosaure.md
index 843df35f..9f1c0092 100644
--- a/Data/HD/tome_of_beasts_spinosaure.md
+++ b/Data/HD/tome_of_beasts_spinosaure.md
@@ -5,7 +5,7 @@
# Spinosaure
- Source: (LDM p119)(TOB p116)
-- TOB: Spinosaurus
+- Alias: Spinosaurus
- Bête de taille Gigantesque (Gig), non alignée
- **Terrain** Jungle, Mangrove / Marécage
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_squelette_de_troll_des_lianes.md b/Data/HD/tome_of_beasts_squelette_de_troll_des_lianes.md
index 42710dc3..543be444 100644
--- a/Data/HD/tome_of_beasts_squelette_de_troll_des_lianes.md
+++ b/Data/HD/tome_of_beasts_squelette_de_troll_des_lianes.md
@@ -5,7 +5,7 @@
# Squelette De Troll Des Lianes
- Source: (LDM p371)(TOB p351)
-- TOB: Vine Troll Skeleton
+- Alias: Vine Troll Skeleton
- Plante de Grande taille (G), non-alignée
- **Terrain** Bois / Forêt
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_squelette_en_machoires_de_requin.md b/Data/HD/tome_of_beasts_squelette_en_machoires_de_requin.md
index 7ef689ea..10c8d1b5 100644
--- a/Data/HD/tome_of_beasts_squelette_en_machoires_de_requin.md
+++ b/Data/HD/tome_of_beasts_squelette_en_machoires_de_requin.md
@@ -5,7 +5,7 @@
# Squelette En Mâchoires De Requin
- Source: (LDM p372)(TOB p350)
-- TOB: Sharkjaw Skeleton
+- Alias: Sharkjaw Skeleton
- Mort-vivant de Grande taille (G), loyal mauvais
- **Terrain** Littoral, Mer / Océan, Caverne sous-marine
- **Classe d'armure** 13 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_stryx.md b/Data/HD/tome_of_beasts_stryx.md
index 61b83555..54caa66c 100644
--- a/Data/HD/tome_of_beasts_stryx.md
+++ b/Data/HD/tome_of_beasts_stryx.md
@@ -5,7 +5,7 @@
# Stryx
- Source: (LDM p373)(TOB p369)
-- TOB: Stryx
+- Alias: Stryx
- Créature monstrueuse de Très Petite taille (TP), neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_stuhac.md b/Data/HD/tome_of_beasts_stuhac.md
index 8510a68e..986f5f49 100644
--- a/Data/HD/tome_of_beasts_stuhac.md
+++ b/Data/HD/tome_of_beasts_stuhac.md
@@ -5,7 +5,7 @@
# Stuhac
- Source: (LDM p374)(TOB p370)
-- TOB: Stuhac
+- Alias: Stuhac
- Fiélon de taille Moyenne (M), neutre mauvais
- **Classe d'armure** 18 (armure naturelle)
- **Points de vie** 190 (20d8+100)
diff --git a/Data/HD/tome_of_beasts_subek.md b/Data/HD/tome_of_beasts_subek.md
index 974282bb..565215da 100644
--- a/Data/HD/tome_of_beasts_subek.md
+++ b/Data/HD/tome_of_beasts_subek.md
@@ -5,7 +5,7 @@
# Subek
- Source: (LDM p375)(TOB p371)
-- TOB: Subek
+- Alias: Subek
- Humanoïde de Grande taille (subek) (G), loyal neutre
- **Terrain** Littoral, Mangrove / Marécage
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_suffragan_coeur_de_vers.md b/Data/HD/tome_of_beasts_suffragan_coeur_de_vers.md
index a6c2df3f..0d325665 100644
--- a/Data/HD/tome_of_beasts_suffragan_coeur_de_vers.md
+++ b/Data/HD/tome_of_beasts_suffragan_coeur_de_vers.md
@@ -5,7 +5,7 @@
# Suffragan Coeur-De-Vers
- Source: (LDM p376)(TOB p410)
-- TOB: Wormhearted Suffragan
+- Alias: Wormhearted Suffragan
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 12
- **Points de vie** 97 (13d8+39)
diff --git a/Data/HD/tome_of_beasts_sutureuse.md b/Data/HD/tome_of_beasts_sutureuse.md
index e7ed6ae2..9df300d2 100644
--- a/Data/HD/tome_of_beasts_sutureuse.md
+++ b/Data/HD/tome_of_beasts_sutureuse.md
@@ -5,7 +5,7 @@
# Sutureuse
- Source: (LDM p377)(TOB p372)
-- TOB: Suturefly
+- Alias: Suturefly
- Bête de Très Petite taille (TP), non-alignée
- **Terrain** Bois / Forêt, Mangrove / Marécage
- **Classe d'armure** 14
diff --git a/Data/HD/tome_of_beasts_sylvanien_pleureur.md b/Data/HD/tome_of_beasts_sylvanien_pleureur.md
index a78dbf54..3a4df0f8 100644
--- a/Data/HD/tome_of_beasts_sylvanien_pleureur.md
+++ b/Data/HD/tome_of_beasts_sylvanien_pleureur.md
@@ -5,7 +5,7 @@
# Sylvanien Pleureur
- Source: (LDM p378)(TOB p388)
-- TOB: Weeping Treant
+- Alias: Weeping Treant
- Plante de Très Grande taille (TG), neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_templier_mecaforge.md b/Data/HD/tome_of_beasts_templier_mecaforge.md
index 572e0504..133ec612 100644
--- a/Data/HD/tome_of_beasts_templier_mecaforge.md
+++ b/Data/HD/tome_of_beasts_templier_mecaforge.md
@@ -5,7 +5,7 @@
# Templier Mécaforgé
- Source: (LDM p379)(TOB p210)
-- TOB: Gearforged Templar
+- Alias: Gearforged Templar
- Humanoïde de taille Moyenne (mécaforgé) (M), loyal neutre
- **Classe d'armure** 18 (harnois)
- **Points de vie** 71 (11d8+22)
diff --git a/Data/HD/tome_of_beasts_thuellai.md b/Data/HD/tome_of_beasts_thuellai.md
index 945811a1..c5bda13e 100644
--- a/Data/HD/tome_of_beasts_thuellai.md
+++ b/Data/HD/tome_of_beasts_thuellai.md
@@ -5,7 +5,7 @@
# Thuellai
- Source: (LDM p380)(TOB p379)
-- TOB: Thuellai
+- Alias: Thuellai
- Élémentaire de Très Grande taille (TG), chaotique neutre
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 17
diff --git a/Data/HD/tome_of_beasts_titan_antique.md b/Data/HD/tome_of_beasts_titan_antique.md
index 7592e1ed..bf73bad6 100644
--- a/Data/HD/tome_of_beasts_titan_antique.md
+++ b/Data/HD/tome_of_beasts_titan_antique.md
@@ -5,7 +5,7 @@
# Titan Antique
- Source: (LDM p381)(TOB p380)
-- TOB: Ancient Titan
+- Alias: Ancient Titan
- Céleste de taille Gigantesque (titan) (Gig), neutre bon
- **Classe d'armure** 15 (cuirasse)
- **Points de vie** 198 (12d20+72)
diff --git a/Data/HD/tome_of_beasts_titan_degenere.md b/Data/HD/tome_of_beasts_titan_degenere.md
index 146b340d..0398226e 100644
--- a/Data/HD/tome_of_beasts_titan_degenere.md
+++ b/Data/HD/tome_of_beasts_titan_degenere.md
@@ -5,7 +5,7 @@
# Titan Dégénéré
- Source: (LDM p382)(TOB p381)
-- TOB: Degenerate Titan
+- Alias: Degenerate Titan
- Géant de Très Grande taille (TG), chaotique mauvais
- **Terrain** Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 12 (manteau renforcé rudimentaire)
diff --git a/Data/HD/tome_of_beasts_titanoboa.md b/Data/HD/tome_of_beasts_titanoboa.md
index b181fd90..555e22ce 100644
--- a/Data/HD/tome_of_beasts_titanoboa.md
+++ b/Data/HD/tome_of_beasts_titanoboa.md
@@ -5,7 +5,7 @@
# Titanoboa
- Source: (LDM p383)(TOB p382)
-- TOB: Titanoboa
+- Alias: Titanoboa
- Bête de taille Gigantesque (Gig), non alignée
- **Terrain** Jungle
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_tophet.md b/Data/HD/tome_of_beasts_tophet.md
index eb9007e9..42e6ce0e 100644
--- a/Data/HD/tome_of_beasts_tophet.md
+++ b/Data/HD/tome_of_beasts_tophet.md
@@ -5,7 +5,7 @@
# Tophet
- Source: (LDM p384)(TOB p383)
-- TOB: Tophet
+- Alias: Tophet
- Créature artificielle de Très Grande taille (TG), neutre mauvaise
- **Classe d'armure** 16 (armure naturelle)
- **Points de vie** 184 (16d12+80)
diff --git a/Data/HD/tome_of_beasts_totivillus_le_scribe_de_lenfer.md b/Data/HD/tome_of_beasts_totivillus_le_scribe_de_lenfer.md
index 06faf904..a069f774 100644
--- a/Data/HD/tome_of_beasts_totivillus_le_scribe_de_lenfer.md
+++ b/Data/HD/tome_of_beasts_totivillus_le_scribe_de_lenfer.md
@@ -5,7 +5,7 @@
# Totivillus, le Scribe de l'Enfer
- Source: (LDM p104)(TOB p101)
-- TOB: Totivillus, Scribe of Hell
+- Alias: Totivillus, Scribe of Hell
- Fiélon (diable) de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 19 (armure naturelle)
- **Points de vie** 299 (26d8+182)
diff --git a/Data/HD/tome_of_beasts_troll_lacustre.md b/Data/HD/tome_of_beasts_troll_lacustre.md
index 1039b079..a4524162 100644
--- a/Data/HD/tome_of_beasts_troll_lacustre.md
+++ b/Data/HD/tome_of_beasts_troll_lacustre.md
@@ -5,7 +5,7 @@
# Troll Lacustre
- Source: (LDM p388)(TOB p389)
-- TOB: Lake Troll
+- Alias: Lake Troll
- Géant de Grande taille (G), chaotique mauvais
- **Terrain** Littoral, Mangrove / Marécage
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_ukavac.md b/Data/HD/tome_of_beasts_ukavac.md
index f4ad2788..ed18af12 100644
--- a/Data/HD/tome_of_beasts_ukavac.md
+++ b/Data/HD/tome_of_beasts_ukavac.md
@@ -5,7 +5,7 @@
# Ukavac
- Source: (LDM p389)(TOB p47)
-- TOB: Bukavac
+- Alias: Bukavac
- Créature monstrueuse de Grande taille (G), neutre mauvaise
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_uraeus.md b/Data/HD/tome_of_beasts_uraeus.md
index bed9ce98..97428f91 100644
--- a/Data/HD/tome_of_beasts_uraeus.md
+++ b/Data/HD/tome_of_beasts_uraeus.md
@@ -5,7 +5,7 @@
# Uraeus
- Source: (LDM p390)(TOB p392)
-- TOB: Uraeus
+- Alias: Uraeus
- Céleste de Très Petite taille (TP), loyal neutre
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 40 (9d4+18)
diff --git a/Data/HD/tome_of_beasts_urochar_guetteur_etrangleur.md b/Data/HD/tome_of_beasts_urochar_guetteur_etrangleur.md
index 6d67b3a5..1af5625d 100644
--- a/Data/HD/tome_of_beasts_urochar_guetteur_etrangleur.md
+++ b/Data/HD/tome_of_beasts_urochar_guetteur_etrangleur.md
@@ -5,7 +5,7 @@
# Urochar (Guetteur Étrangleur)
- Source: (LDM p391)(TOB p393)
-- TOB: Urochar (Strangling Watcher)
+- Alias: Urochar (Strangling Watcher)
- Aberration de Très Grande taille (TG), chaotique mauvaise
- **Terrain** Caverne naturelle, Ruines souterraines
- **Classe d'armure** 19 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_ushabti.md b/Data/HD/tome_of_beasts_ushabti.md
index 9477f94d..bf14e8fc 100644
--- a/Data/HD/tome_of_beasts_ushabti.md
+++ b/Data/HD/tome_of_beasts_ushabti.md
@@ -5,7 +5,7 @@
# Ushabti
- Source: (LDM p392)(TOB p394)
-- TOB: Ushabti
+- Alias: Ushabti
- Créature artificielle de Grande taille (G), non alignée
- **Terrain** Ruines souterraines
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_vaettir.md b/Data/HD/tome_of_beasts_vaettir.md
index dd7273bd..26e35678 100644
--- a/Data/HD/tome_of_beasts_vaettir.md
+++ b/Data/HD/tome_of_beasts_vaettir.md
@@ -5,7 +5,7 @@
# Vaettir
- Source: (LDM p393)(TOP p395)
-- TOB: Vaettir
+- Alias: Vaettir
- Mort-vivant de taille Moyenne (M), loyal mauvais
- **Classe d'armure** 15 (chemise de mailles)
- **Points de vie** 120 (16d8+48)
diff --git a/Data/HD/tome_of_beasts_vagabond_eonique.md b/Data/HD/tome_of_beasts_vagabond_eonique.md
index c18ca3f3..65db3fb9 100644
--- a/Data/HD/tome_of_beasts_vagabond_eonique.md
+++ b/Data/HD/tome_of_beasts_vagabond_eonique.md
@@ -5,7 +5,7 @@
# Vagabond Éonique
- Source: (LDM p394)(TOB p177)
-- TOB: Eonic Drifter
+- Alias: Eonic Drifter
- Humanoïde (humain) de taille Moyenne (M), chaotique neutre
- **Classe d'armure** 13 (armure de cuir)
- **Points de vie** 65 (10d8+20)
diff --git a/Data/HD/tome_of_beasts_valet_monolithique.md b/Data/HD/tome_of_beasts_valet_monolithique.md
index 8747907b..f27c8bfa 100644
--- a/Data/HD/tome_of_beasts_valet_monolithique.md
+++ b/Data/HD/tome_of_beasts_valet_monolithique.md
@@ -5,7 +5,7 @@
# Valet Monolithique
- Source: (LDM p309)(TOB p295)
-- TOB: Monolith Footman
+- Alias: Monolith Footman
- Créature artificielle de Grande taille (G), non-alignée
- **Classe d'armure** 14 (armure naturelle)
- **Points de vie** 60 (8d10+16)
diff --git a/Data/HD/tome_of_beasts_valkyrie.md b/Data/HD/tome_of_beasts_valkyrie.md
index 4036cc93..bb2e0298 100644
--- a/Data/HD/tome_of_beasts_valkyrie.md
+++ b/Data/HD/tome_of_beasts_valkyrie.md
@@ -5,7 +5,7 @@
# Valkyrie
- Source: (LDM p395)(TOB p396)
-- TOB: Valkyrie
+- Alias: Valkyrie
- Céleste de taille Moyenne (M), neutre
- **Classe d'armure** 16 (cotte de mailles) ou 18 (cotte de mailles et bouclier)
- **Points de vie** 112 (15d8+45)
diff --git a/Data/HD/tome_of_beasts_vampire_umbral.md b/Data/HD/tome_of_beasts_vampire_umbral.md
index f6ef724c..e9416e21 100644
--- a/Data/HD/tome_of_beasts_vampire_umbral.md
+++ b/Data/HD/tome_of_beasts_vampire_umbral.md
@@ -5,7 +5,7 @@
# Vampire Umbral
- Source: (LDM p396)(TOB p397)
-- TOB: Umbral Vampire
+- Alias: Umbral Vampire
- Fiélon de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 14
- **Points de vie** 84 (13d8+26)
diff --git a/Data/HD/tome_of_beasts_variante_sorcier_vampire.md b/Data/HD/tome_of_beasts_variante_sorcier_vampire.md
index 2a716cbe..4052947e 100644
--- a/Data/HD/tome_of_beasts_variante_sorcier_vampire.md
+++ b/Data/HD/tome_of_beasts_variante_sorcier_vampire.md
@@ -5,7 +5,7 @@
# Variante : Sorcier Vampire
- Source: (LDM p426)(TOB p426)
-- TOB: Variant: Vampire Warlock
+- Alias: Variant: Vampire Warlock
Le sorcier vampire n'est pas sujet à défense d'entrer ni blessé par l'eau courante, faiblesses des vampires ordinaires, et subit 10 dégâts radiants au lieu de 20 s'il est exposé à la lumière du jour.
diff --git a/Data/HD/tome_of_beasts_vase_corruptrice.md b/Data/HD/tome_of_beasts_vase_corruptrice.md
index 7abbb4c1..c7278000 100644
--- a/Data/HD/tome_of_beasts_vase_corruptrice.md
+++ b/Data/HD/tome_of_beasts_vase_corruptrice.md
@@ -5,7 +5,7 @@
# Vase Corruptrice
- Source: (LDM p397)(TOB p311)
-- TOB: Corrupting Ooze
+- Alias: Corrupting Ooze
- Vase de Grande taille (G), neutre mauvaise
- **Classe d'armure** 12 (armure naturelle)
- **Points de vie** 115 (10d10+60)
diff --git a/Data/HD/tome_of_beasts_vent_putrefacteur.md b/Data/HD/tome_of_beasts_vent_putrefacteur.md
index 2bad4423..97e44f3c 100644
--- a/Data/HD/tome_of_beasts_vent_putrefacteur.md
+++ b/Data/HD/tome_of_beasts_vent_putrefacteur.md
@@ -5,7 +5,7 @@
# Vent Putréfacteur
- Source: (LDM p398)(TOB p330)
-- TOB: Rotting Wind
+- Alias: Rotting Wind
- Mort-vivant de Grande taille (G), neutre mauvais
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_ver_givre_adulte.md b/Data/HD/tome_of_beasts_ver_givre_adulte.md
index 3f77ae1c..b99cc79b 100644
--- a/Data/HD/tome_of_beasts_ver_givre_adulte.md
+++ b/Data/HD/tome_of_beasts_ver_givre_adulte.md
@@ -5,7 +5,7 @@
# Ver Givré Adulte
- Source: (LDM p399)(TOB p327)
-- TOB: Adult Rime Worm
+- Alias: Adult Rime Worm
- Élémentaire de Grande taille (G), neutre
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_ver_pecheur.md b/Data/HD/tome_of_beasts_ver_pecheur.md
index 6ce7be5a..3573e9e4 100644
--- a/Data/HD/tome_of_beasts_ver_pecheur.md
+++ b/Data/HD/tome_of_beasts_ver_pecheur.md
@@ -5,7 +5,7 @@
# Ver Pêcheur
- Source: (LDM p400)(TOB p22)
-- TOB: Angler Worm
+- Alias: Angler Worm
- Créature monstrueuse de Très Grande taille (TG), non alignée
- **Terrain** Caverne naturelle
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_ver_sathaq.md b/Data/HD/tome_of_beasts_ver_sathaq.md
index 4d5ecf5c..028b6cd2 100644
--- a/Data/HD/tome_of_beasts_ver_sathaq.md
+++ b/Data/HD/tome_of_beasts_ver_sathaq.md
@@ -5,7 +5,7 @@
# Ver Sathaq
- Source: (LDM p401)(TOB p337)
-- TOB: Sathaq Worm
+- Alias: Sathaq Worm
- Élémentaire de Très Grande taille (TG), neutre mauvais
- **Terrain** Désert chaud, Mangrove / Marécage, Plans élémentaires, Caverne naturelle
- **Classe d'armure** 16 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_verminhantee.md b/Data/HD/tome_of_beasts_verminhantee.md
index e247de0d..22ef40cb 100644
--- a/Data/HD/tome_of_beasts_verminhantee.md
+++ b/Data/HD/tome_of_beasts_verminhantee.md
@@ -5,7 +5,7 @@
# Verminhantée
- Source: (LDM p402)(TOB p352)
-- TOB: Skitterhaunt
+- Alias: Skitterhaunt
- Vase de Grande taille (G), non-alignée
- **Terrain** Désert chaud, Caverne naturelle
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_vesiculose.md b/Data/HD/tome_of_beasts_vesiculose.md
index acf51526..2cc7c12d 100644
--- a/Data/HD/tome_of_beasts_vesiculose.md
+++ b/Data/HD/tome_of_beasts_vesiculose.md
@@ -5,7 +5,7 @@
# Vésiculose
- Source: (LDM p403)(TOB p399)
-- TOB: Vesiculosa
+- Alias: Vesiculosa
- Plante de taille Gigantesque (Gig), non alignée
- **Terrain** Désert chaud
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_vidien.md b/Data/HD/tome_of_beasts_vidien.md
index 7bb38643..a17632ab 100644
--- a/Data/HD/tome_of_beasts_vidien.md
+++ b/Data/HD/tome_of_beasts_vidien.md
@@ -5,7 +5,7 @@
# Vidien
- Source: (LDM p404)(TOB p404)
-- TOB: Voidling
+- Alias: Voidling
- Aberration de Grande taille (G), chaotique mauvaise
- **Classe d'armure** 16
- **Points de vie** 110 (20d10)
diff --git a/Data/HD/tome_of_beasts_vif_ravageur_gnoll.md b/Data/HD/tome_of_beasts_vif_ravageur_gnoll.md
index ca4398b9..3f67a91d 100644
--- a/Data/HD/tome_of_beasts_vif_ravageur_gnoll.md
+++ b/Data/HD/tome_of_beasts_vif_ravageur_gnoll.md
@@ -5,7 +5,7 @@
# Vif Ravageur Gnoll
- Source: (LDM p405)(TOB p230)
-- TOB: Gnoll Havoc Runner
+- Alias: Gnoll Havoc Runner
- Humanoïde (gnoll) de taille Moyenne (M), chaotique mauvais
- **Terrain** Désert chaud, Plaine / Champs / Prairie / Savane, Ruines extérieures
- **Classe d'armure** 15 (chemise de mailles)
diff --git a/Data/HD/tome_of_beasts_vil_barbier.md b/Data/HD/tome_of_beasts_vil_barbier.md
index 2f5613a8..04f1baa1 100644
--- a/Data/HD/tome_of_beasts_vil_barbier.md
+++ b/Data/HD/tome_of_beasts_vil_barbier.md
@@ -5,7 +5,7 @@
# Vil Barbier
- Source: (LDM p406)(TOB p401)
-- TOB: Vile Barber
+- Alias: Vile Barber
- Fée de Petite taille (P), chaotique mauvaise
- **Classe d'armure** 15 (armure de cuir)
- **Points de vie** 28 (8d6)
diff --git a/Data/HD/tome_of_beasts_vila.md b/Data/HD/tome_of_beasts_vila.md
index bdcb90a4..2b9f05aa 100644
--- a/Data/HD/tome_of_beasts_vila.md
+++ b/Data/HD/tome_of_beasts_vila.md
@@ -5,7 +5,7 @@
# Vila
- Source: (LDM p407)(TOB p400)
-- TOB: Vila
+- Alias: Vila
- Fée de taille Moyenne (M), loyale neutre
- **Terrain** Bois / Forêt
- **Classe d'armure** 15
diff --git a/Data/HD/tome_of_beasts_vipere_de_zanskaran.md b/Data/HD/tome_of_beasts_vipere_de_zanskaran.md
index bae83824..ff3ac1fb 100644
--- a/Data/HD/tome_of_beasts_vipere_de_zanskaran.md
+++ b/Data/HD/tome_of_beasts_vipere_de_zanskaran.md
@@ -5,7 +5,7 @@
# Vipère De Zanskaran
- Source: (LDM p361)(TOB p354)
-- TOB: Zanskaran Viper
+- Alias: Zanskaran Viper
- Bête de Grande taille (G), non-alignée
- **Terrain** Collines / Vallées
- **Classe d'armure** 14 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_vipere_du_marais.md b/Data/HD/tome_of_beasts_vipere_du_marais.md
index 171c6cb7..0cab2e9f 100644
--- a/Data/HD/tome_of_beasts_vipere_du_marais.md
+++ b/Data/HD/tome_of_beasts_vipere_du_marais.md
@@ -5,7 +5,7 @@
# Vipère Du Marais
- Source: (LDM p361)(TOB p354)
-- TOB: Swamp Adder
+- Alias: Swamp Adder
- Bête de Petite taille (P), non-alignée
- **Terrain** Mangrove / Marécage
- **Classe d'armure** 13
diff --git a/Data/HD/tome_of_beasts_voile_de_givre.md b/Data/HD/tome_of_beasts_voile_de_givre.md
index 56713bcb..715df052 100644
--- a/Data/HD/tome_of_beasts_voile_de_givre.md
+++ b/Data/HD/tome_of_beasts_voile_de_givre.md
@@ -5,7 +5,7 @@
# Voile-De-Givre
- Source: (LDM p408)(TOB p207)
-- TOB: Frostveil
+- Alias: Frostveil
- Plante de taille Moyenne (M), non-alignée
- **Terrain** Arctique / Subarctique
- **Classe d'armure** 16
diff --git a/Data/HD/tome_of_beasts_wampus_feline.md b/Data/HD/tome_of_beasts_wampus_feline.md
index fa8f52bb..ba9ea9eb 100644
--- a/Data/HD/tome_of_beasts_wampus_feline.md
+++ b/Data/HD/tome_of_beasts_wampus_feline.md
@@ -5,7 +5,7 @@
# Wampus Féline
- Source: (LDM p409)(TOB p405)
-- TOB: Wampus Cat
+- Alias: Wampus Cat
- Créature monstrueuse de taille Moyenne (M), chaotique neutre
- **Terrain** Bois / Forêt, Collines / Vallées
- **Classe d'armure** 14
diff --git a/Data/HD/tome_of_beasts_wyrm_des_sables.md b/Data/HD/tome_of_beasts_wyrm_des_sables.md
index 9f5edae4..2ad1d2ad 100644
--- a/Data/HD/tome_of_beasts_wyrm_des_sables.md
+++ b/Data/HD/tome_of_beasts_wyrm_des_sables.md
@@ -5,7 +5,7 @@
# Wyrm Des Sables
- Source: (LDM p410)(TOB p334)
-- TOB: Sandwyrm
+- Alias: Sandwyrm
- Dragon de Grande taille (G), non-aligné
- **Terrain** Désert chaud
- **Classe d'armure** 15 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_xanka.md b/Data/HD/tome_of_beasts_xanka.md
index e7e0dc24..ee68cbc4 100644
--- a/Data/HD/tome_of_beasts_xanka.md
+++ b/Data/HD/tome_of_beasts_xanka.md
@@ -5,7 +5,7 @@
# Xanka
- Source: (LDM p411)(TOB p411)
-- TOB: Xanka
+- Alias: Xanka
- Créature artificielle de Petite taille (P), non alignée
- **Classe d'armure** 15 (armure naturelle)
- **Points de vie** 18 (4d6+4)
diff --git a/Data/HD/tome_of_beasts_xhkarsh.md b/Data/HD/tome_of_beasts_xhkarsh.md
index 56ebfca2..48631ded 100644
--- a/Data/HD/tome_of_beasts_xhkarsh.md
+++ b/Data/HD/tome_of_beasts_xhkarsh.md
@@ -5,7 +5,7 @@
# Xhkarsh
- Source: (LDM p412)(TOB p412)
-- TOB: Xhkarsh
+- Alias: Xhkarsh
- Aberration de Grande taille (G), neutre mauvaise
- **Classe d'armure** 19 (armure naturelle et mystique)
- **Points de vie** 133 (14d10 + 56)
diff --git a/Data/HD/tome_of_beasts_ychen_bannog.md b/Data/HD/tome_of_beasts_ychen_bannog.md
index a5fea73f..aa893479 100644
--- a/Data/HD/tome_of_beasts_ychen_bannog.md
+++ b/Data/HD/tome_of_beasts_ychen_bannog.md
@@ -5,7 +5,7 @@
# Ychen Bannog
- Source: (LDM p413)(TOB p413)
-- TOB: Ychen Bannog
+- Alias: Ychen Bannog
- Bête de taille Gigantesque (Gig), non alignée
- **Terrain** Plaine / Champs / Prairie / Savane
- **Classe d'armure** 17 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_zaratan.md b/Data/HD/tome_of_beasts_zaratan.md
index 0e87999d..19451ac4 100644
--- a/Data/HD/tome_of_beasts_zaratan.md
+++ b/Data/HD/tome_of_beasts_zaratan.md
@@ -5,7 +5,7 @@
# Zaratan
- Source: (LDM p414)(TOB p414)
-- TOB: Zaratan
+- Alias: Zaratan
- Créature monstrueuse (titan) de taille Gigantesque (Gig), non alignée
- **Terrain** Mer / Océan
- **Classe d'armure** 25 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_zimwi.md b/Data/HD/tome_of_beasts_zimwi.md
index 6f30874f..74ea3cf8 100644
--- a/Data/HD/tome_of_beasts_zimwi.md
+++ b/Data/HD/tome_of_beasts_zimwi.md
@@ -5,7 +5,7 @@
# Zimwi
- Source: (LDM p415)(TOB p415)
-- TOB: Zimwi
+- Alias: Zimwi
- Géant de taille Moyenne (M), chaotique mauvais
- **Classe d'armure** 17 (armure naturelle)
- **Points de vie** 76 (9d8+36)
diff --git a/Data/HD/tome_of_beasts_zmey.md b/Data/HD/tome_of_beasts_zmey.md
index e25c9f0c..9e24720a 100644
--- a/Data/HD/tome_of_beasts_zmey.md
+++ b/Data/HD/tome_of_beasts_zmey.md
@@ -5,7 +5,7 @@
# Zmey
- Source: (LDM p416)(TOB p416)
-- TOB: Zmey
+- Alias: Zmey
- Dragon de Très Grande taille (TG), chaotique mauvais
- **Terrain** Bois / Forêt, Caverne sous-marine
- **Classe d'armure** 18 (armure naturelle)
diff --git a/Data/HD/tome_of_beasts_zombi_nihilethique.md b/Data/HD/tome_of_beasts_zombi_nihilethique.md
index 42957f8c..c1fad2e1 100644
--- a/Data/HD/tome_of_beasts_zombi_nihilethique.md
+++ b/Data/HD/tome_of_beasts_zombi_nihilethique.md
@@ -5,7 +5,7 @@
# Zombi Nihilethique
- Source: (LDM p9)(TOB p9)
-- TOB: Nihilethic Zombie
+- Alias: Nihilethic Zombie
- Mort-vivant de taille Moyenne (M), chaotique mauvais
- **Terrain** Littoral, Caverne naturelle, Caverne sous-marine, Ruines souterraines, Ruines sous-marines
- **Classe d'armure** 9 (armure naturelle)
diff --git a/Data/index.md b/Data/index.md
index 57025e80..22e73368 100644
--- a/Data/index.md
+++ b/Data/index.md
@@ -1,84 +1,20 @@
-# Manuel des règles
+# Bibliothèque
-## [Création du personnage](beyond1stlevel_hd.md)
+## [Manuel des règles](index_mdr.md)
-## [Races](races_hd.md)
+## [Cadre de campagne](index_cdc.md)
-## [Personnalité et Historique](personnality_background_hd.md)
+## [Créatures et oppositions](index_ceo.md)
-## [Classes](classes_hd.md)
+## [Les Cinq Royaumes](l5r_index_hd.md)
-## [Équipement](equipment_hd.md)
+## [Livre des monstres](tome_of_beasts.md)
-## [Options de personnalisation](custom_options_hd.md)
+## [Monstrueusement Mignons](baby_bestiary.md)
-## [Utiliser les Caractéristiques](abilities_hd.md)
-
-## [Partir à l'aventure](adventure_hd.md)
-
-## [Combattre](combat_hd.md)
-
-## [Gérer la santé](manage_health_hd.md)
-
-## [Lancer des sorts](spellcasting_hd.md)
-
-## [Description des Sorts](spells_hd.md)
-
-## [Panthéons](pantheons_hd.md)
-
-
-
-# Cadre de campagne
-
-## [Objets magiques](magicitems_hd.md)
-
-### [Objets magiques de A à Z](magicitems_az_hd.md)
-
-### [Objets magiques intelligents](sentient_magicitems_hd.md)
-
-### [Artefacts](artifacts_hd.md)
-
-## [Jouer dans un multivers](planes_hd.md)
-
-
-
-# Créatures et oppositions
-
-## [Créatures](monsters_hd.md)
-
-## [Pièges](traps_hd.md)
-
-## [Maladies](diseases_hd.md)
-
-## [Folie](madness_hd.md)
-
-## [Objets](objects_hd.md)
-
-## [Poisons](poisons_hd.md)
-
-
-
-# [Les Cinq Royaumes](l5r_index_hd.md)
-
-
-
-# [Livre des monstres](tome_of_beasts.md)
-
-
-
-# [Monstrueusement Mignons](baby_bestiary.md)
-
-
-
-# SRD
-
-## [Conditions](conditions_vo.md)
-
-## [Spells](spells_vo.md)
-
-## [Monsters, Animals and NPC](monsters_vo.md)
+## [SRD](index_srd.md)
diff --git a/Data/library.db b/Data/library.db
index 3f471055..97d74449 100644
Binary files a/Data/library.db and b/Data/library.db differ