mirror of
				https://github.com/Nioux/AideDeJeu.git
				synced 2025-10-31 07:26:09 +00:00 
			
		
		
		
	=> Item / Items
This commit is contained in:
		
							parent
							
								
									a51e4d0fe6
								
							
						
					
					
						commit
						ecbd254a78
					
				
					 1680 changed files with 6568 additions and 6568 deletions
				
			
		|  | @ -105,7 +105,7 @@ namespace AideDeJeuLib.Cards | ||||||
|             return contents.ToArray(); |             return contents.ToArray(); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public static CardData ToBaseCardData(Spell spell) |         public static CardData ToBaseCardData(SpellItem spell) | ||||||
|         { |         { | ||||||
|             //string color = context["color"]; |             //string color = context["color"]; | ||||||
|             //string backgroundImage = context["background_image"]; |             //string backgroundImage = context["background_image"]; | ||||||
|  | @ -125,7 +125,7 @@ namespace AideDeJeuLib.Cards | ||||||
|             //}; |             //}; | ||||||
|             return cardData; |             return cardData; | ||||||
|         } |         } | ||||||
|         public static CardData[] ToCardDatas(Spell spell) |         public static CardData[] ToCardDatas(SpellItem spell) | ||||||
|         { |         { | ||||||
|             var cardDatas = new List<CardData>(); |             var cardDatas = new List<CardData>(); | ||||||
|             var cardData = ToBaseCardData(spell); |             var cardData = ToBaseCardData(spell); | ||||||
|  |  | ||||||
|  | @ -1,6 +1,6 @@ | ||||||
| namespace AideDeJeuLib | namespace AideDeJeuLib | ||||||
| { | { | ||||||
|     public class Equipment : Item |     public class EquipmentItem : Item | ||||||
|     { |     { | ||||||
|         public string Type { get; set; } |         public string Type { get; set; } | ||||||
|         public string Price { get; set; } |         public string Price { get; set; } | ||||||
|  | @ -2,7 +2,7 @@ | ||||||
| 
 | 
 | ||||||
| namespace AideDeJeuLib | namespace AideDeJeuLib | ||||||
| { | { | ||||||
|     public class Equipments : FilteredItems |     public class EquipmentItems : FilteredItems | ||||||
|     { |     { | ||||||
|         public string Types { get; set; } |         public string Types { get; set; } | ||||||
|         public string Prices { get; set; } |         public string Prices { get; set; } | ||||||
|  | @ -194,12 +194,12 @@ namespace AideDeJeuLib | ||||||
|         public static Dictionary<string, Type> ClassMapping = new Dictionary<string, Type>() |         public static Dictionary<string, Type> ClassMapping = new Dictionary<string, Type>() | ||||||
|         { |         { | ||||||
|             { "Generic", typeof(Generic) }, |             { "Generic", typeof(Generic) }, | ||||||
|             { "Monster", typeof(Monster) }, |             { "MonsterItem", typeof(MonsterItem) }, | ||||||
|             { "Monsters", typeof(Monsters) }, |             { "MonsterItems", typeof(MonsterItems) }, | ||||||
|             { "Spell", typeof(Spell) }, |             { "SpellItem", typeof(SpellItem) }, | ||||||
|             { "Spells", typeof(Spells) }, |             { "SpellItems", typeof(SpellItems) }, | ||||||
|             { "Equipment", typeof(Equipment) }, |             { "EquipmentItem", typeof(EquipmentItem) }, | ||||||
|             { "Equipments", typeof(Equipments) }, |             { "EquipmentItems", typeof(EquipmentItems) }, | ||||||
|             { "LinkItem", typeof(LinkItem) }, |             { "LinkItem", typeof(LinkItem) }, | ||||||
|             { "MagicItem", typeof(MagicItem) }, |             { "MagicItem", typeof(MagicItem) }, | ||||||
|             { "MagicItems", typeof(MagicItems) }, |             { "MagicItems", typeof(MagicItems) }, | ||||||
|  |  | ||||||
|  | @ -10,7 +10,7 @@ using System.Xml; | ||||||
| 
 | 
 | ||||||
| namespace AideDeJeuLib | namespace AideDeJeuLib | ||||||
| { | { | ||||||
|     public class Monster : Item |     public class MonsterItem : Item | ||||||
|     { |     { | ||||||
|         public string Family { get; set; } |         public string Family { get; set; } | ||||||
|         public string Type { get; set; } |         public string Type { get; set; } | ||||||
|  | @ -5,7 +5,7 @@ using System.Text; | ||||||
| 
 | 
 | ||||||
| namespace AideDeJeuLib | namespace AideDeJeuLib | ||||||
| { | { | ||||||
|     public class Monsters : FilteredItems |     public class MonsterItems : FilteredItems | ||||||
|     { |     { | ||||||
|         public string Types { get; set; } |         public string Types { get; set; } | ||||||
|         public string Challenges { get; set; } |         public string Challenges { get; set; } | ||||||
|  | @ -10,7 +10,7 @@ using System.Xml.Serialization; | ||||||
| 
 | 
 | ||||||
| namespace AideDeJeuLib | namespace AideDeJeuLib | ||||||
| { | { | ||||||
|     public class Spell : Item |     public class SpellItem : Item | ||||||
|     { |     { | ||||||
|         public string Family { get; set; } |         public string Family { get; set; } | ||||||
|         public string Level { get; set; } |         public string Level { get; set; } | ||||||
|  | @ -8,7 +8,7 @@ using System.Linq; | ||||||
| 
 | 
 | ||||||
| namespace AideDeJeuLib | namespace AideDeJeuLib | ||||||
| { | { | ||||||
|     public class Spells : FilteredItems |     public class SpellItems : FilteredItems | ||||||
|     { |     { | ||||||
|         public string Classes { get; set; } |         public string Classes { get; set; } | ||||||
|         public string Levels { get; set; } |         public string Levels { get; set; } | ||||||
|  | @ -457,10 +457,10 @@ namespace AideDeJeu.ViewModels | ||||||
|         { |         { | ||||||
|             public string DbPath { get; set; } |             public string DbPath { get; set; } | ||||||
|             public DbSet<Item> Items { get; set; } |             public DbSet<Item> Items { get; set; } | ||||||
|             public DbSet<Equipment> Equipments { get; set; } |             public DbSet<EquipmentItem> Equipments { get; set; } | ||||||
|             public DbSet<MagicItem> MagicItems { get; set; } |             public DbSet<MagicItem> MagicItems { get; set; } | ||||||
|             public DbSet<Spell> Spells { get; set; } |             public DbSet<SpellItem> Spells { get; set; } | ||||||
|             public DbSet<Monster> Monsters { get; set; } |             public DbSet<MonsterItem> Monsters { get; set; } | ||||||
|             //public DbSet<Spell> Spells { get; set; } |             //public DbSet<Spell> Spells { get; set; } | ||||||
|             //public DbSet<MonsterHD> MonstersHD { get; set; } |             //public DbSet<MonsterHD> MonstersHD { get; set; } | ||||||
|             //public DbSet<SpellVO> SpellsVO { get; set; } |             //public DbSet<SpellVO> SpellsVO { get; set; } | ||||||
|  | @ -485,23 +485,23 @@ namespace AideDeJeu.ViewModels | ||||||
|             protected override void OnModelCreating(ModelBuilder modelBuilder) |             protected override void OnModelCreating(ModelBuilder modelBuilder) | ||||||
|             { |             { | ||||||
|                 base.OnModelCreating(modelBuilder); |                 base.OnModelCreating(modelBuilder); | ||||||
|                 modelBuilder.Entity<Monsters>(); |                 modelBuilder.Entity<MonsterItems>(); | ||||||
|                 //modelBuilder.Entity<MonstersVO>(); |                 //modelBuilder.Entity<MonstersVO>(); | ||||||
|                 //modelBuilder.Entity<SpellsHD>().HasBaseType<Spells>(); |                 //modelBuilder.Entity<SpellsHD>().HasBaseType<Spells>(); | ||||||
|                 //modelBuilder.Entity<SpellsVO>().HasBaseType<Spells>(); |                 //modelBuilder.Entity<SpellsVO>().HasBaseType<Spells>(); | ||||||
|                 modelBuilder.Entity<Spells>(); |                 modelBuilder.Entity<SpellItems>(); | ||||||
|                 modelBuilder.Entity<Equipments>(); |                 modelBuilder.Entity<EquipmentItems>(); | ||||||
|                 modelBuilder.Entity<MagicItems>(); |                 modelBuilder.Entity<MagicItems>(); | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|                 modelBuilder.Entity<Generic>(); |                 modelBuilder.Entity<Generic>(); | ||||||
|                 modelBuilder.Entity<Monster>(); |                 modelBuilder.Entity<MonsterItem>(); | ||||||
|                 modelBuilder.Entity<Monsters>(); |                 modelBuilder.Entity<MonsterItems>(); | ||||||
|                 modelBuilder.Entity<Spell>(); |                 modelBuilder.Entity<SpellItem>(); | ||||||
|                 modelBuilder.Entity<Spells>(); |                 modelBuilder.Entity<SpellItems>(); | ||||||
|                 modelBuilder.Entity<Equipment>(); |                 modelBuilder.Entity<EquipmentItem>(); | ||||||
|                 modelBuilder.Entity<Equipments>(); |                 modelBuilder.Entity<EquipmentItems>(); | ||||||
|                 modelBuilder.Entity<LinkItem>(); |                 modelBuilder.Entity<LinkItem>(); | ||||||
|                 modelBuilder.Entity<MagicItem>(); |                 modelBuilder.Entity<MagicItem>(); | ||||||
|                 modelBuilder.Entity<MagicItems>(); |                 modelBuilder.Entity<MagicItems>(); | ||||||
|  |  | ||||||
|  | @ -41,7 +41,7 @@ namespace AideDeJeuCmd | ||||||
|         //    } |         //    } | ||||||
|         //} |         //} | ||||||
| 
 | 
 | ||||||
|         static async Task<IEnumerable<Monster>> TestMarkdownMonsters(string filename) |         static async Task<IEnumerable<MonsterItem>> TestMarkdownMonsters(string filename) | ||||||
|         { |         { | ||||||
|             using (var sr = new StreamReader(filename)) |             using (var sr = new StreamReader(filename)) | ||||||
|             { |             { | ||||||
|  | @ -52,7 +52,7 @@ namespace AideDeJeuCmd | ||||||
|                     .Build(); |                     .Build(); | ||||||
|                 //var document = Markdig.Parsers.MarkdownParser.Parse(md, pipeline); |                 //var document = Markdig.Parsers.MarkdownParser.Parse(md, pipeline); | ||||||
|                 //DumpMarkdownDocument(document); |                 //DumpMarkdownDocument(document); | ||||||
|                 var monsters = DependencyService.Get<StoreViewModel>().ToItem(filename, md, null) as IEnumerable<Monster>; // document.ToMonsters<MonsterHD>(); |                 var monsters = DependencyService.Get<StoreViewModel>().ToItem(filename, md, null) as IEnumerable<MonsterItem>; // document.ToMonsters<MonsterHD>(); | ||||||
|                 //document.Dump(); |                 //document.Dump(); | ||||||
|                 Console.WriteLine("ok"); |                 Console.WriteLine("ok"); | ||||||
|                 //var md2 = monsters.ToMarkdownString(); |                 //var md2 = monsters.ToMarkdownString(); | ||||||
|  | @ -70,7 +70,7 @@ namespace AideDeJeuCmd | ||||||
| 
 | 
 | ||||||
|             var result = string.Empty; |             var result = string.Empty; | ||||||
|             var md = await LoadStringAsync(dataDir + "spells_hd.md"); |             var md = await LoadStringAsync(dataDir + "spells_hd.md"); | ||||||
|             var items = DependencyService.Get<StoreViewModel>().ToItem("spells_hd", md, null) as IEnumerable<Spell>; |             var items = DependencyService.Get<StoreViewModel>().ToItem("spells_hd", md, null) as IEnumerable<SpellItem>; | ||||||
| 
 | 
 | ||||||
|             var classes = new string[] |             var classes = new string[] | ||||||
|             { |             { | ||||||
|  | @ -439,7 +439,7 @@ namespace AideDeJeuCmd | ||||||
|                 foreach (var item in await context.Items.ToListAsync()) |                 foreach (var item in await context.Items.ToListAsync()) | ||||||
|                 { |                 { | ||||||
|                     //await item.LoadFilteredItemsAsync(); |                     //await item.LoadFilteredItemsAsync(); | ||||||
|                     if(item is Spells) |                     if(item is SpellItems) | ||||||
|                     { |                     { | ||||||
|                         int iii = 1; |                         int iii = 1; | ||||||
|                     } |                     } | ||||||
|  |  | ||||||
|  | @ -19,15 +19,15 @@ namespace AideDeJeuWeb.Controllers | ||||||
|             //var items = AideDeJeu.Tools.Helpers.GetResourceObject<IEnumerable<Spell>>("AideDeJeu.Data.spells_vf.json"); |             //var items = AideDeJeu.Tools.Helpers.GetResourceObject<IEnumerable<Spell>>("AideDeJeu.Data.spells_vf.json"); | ||||||
|             var md = await AideDeJeu.Tools.Helpers.GetResourceStringAsync("AideDeJeu.Data.spells_hd.md"); |             var md = await AideDeJeu.Tools.Helpers.GetResourceStringAsync("AideDeJeu.Data.spells_hd.md"); | ||||||
|             var store = new StoreViewModel(); |             var store = new StoreViewModel(); | ||||||
|             var item = store.ToItem(null, md); |             var item = store.ToItem(null, md, null); | ||||||
|             var items = await item.GetChildrenAsync(); |             var items = await item.GetChildrenAsync(); | ||||||
| 
 | 
 | ||||||
|             var fitems = items.Where(it => (it as Spell).Source.Contains(classe)).OrderBy(it => (it as Spell).Level).ThenBy(it => it.Name); |             var fitems = items.Where(it => (it as SpellItem).Source.Contains(classe)).OrderBy(it => (it as SpellItem).Level).ThenBy(it => it.Name); | ||||||
| 
 | 
 | ||||||
|             var cardDatas = new List<CardData>(); |             var cardDatas = new List<CardData>(); | ||||||
|             foreach (var spell in fitems) |             foreach (var spell in fitems) | ||||||
|             { |             { | ||||||
|                 cardDatas.AddRange(Converters.ToCardDatas(spell as Spell)); |                 cardDatas.AddRange(Converters.ToCardDatas(spell as SpellItem)); | ||||||
|             } |             } | ||||||
|             return cardDatas; |             return cardDatas; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|  | @ -1,14 +1,14 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Voie du berserker |  | ||||||
| Source: (MDR p116) |  | ||||||
| ParentClassId: hd_barbarian.md | ParentClassId: hd_barbarian.md | ||||||
| Id: barbarian_berserker_hd.md#voie-du-berserker | Id: barbarian_berserker_hd.md#voie-du-berserker | ||||||
| RootId: barbarian_berserker_hd.md | RootId: barbarian_berserker_hd.md | ||||||
| ParentLink: barbarian_hd.md#voies-primitives | ParentLink: barbarian_hd.md#voies-primitives | ||||||
|  | Name: Voie du berserker | ||||||
| ParentName: Voies primitives | ParentName: Voies primitives | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
| AltName: Wisdom (SRD p9) | AltName: Wisdom (SRD p9) | ||||||
|  | Source: (MDR p116) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Voies primitives](hd_barbarian_voies_primitives.md) | >  [Voies primitives](hd_barbarian_voies_primitives.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Voie du hurlement |  | ||||||
| Source: (MDR p118) |  | ||||||
| ParentClassId: hd_barbarian.md | ParentClassId: hd_barbarian.md | ||||||
| Id: barbarian_howling_hd.md#voie-du-hurlement | Id: barbarian_howling_hd.md#voie-du-hurlement | ||||||
| RootId: barbarian_howling_hd.md | RootId: barbarian_howling_hd.md | ||||||
| ParentLink: barbarian_hd.md#voies-primitives | ParentLink: barbarian_hd.md#voies-primitives | ||||||
|  | Name: Voie du hurlement | ||||||
| ParentName: Voies primitives | ParentName: Voies primitives | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p118) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Voies primitives](hd_barbarian_voies_primitives.md) | >  [Voies primitives](hd_barbarian_voies_primitives.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Voie des esprits |  | ||||||
| Source: (MDR p117) |  | ||||||
| ParentClassId: hd_barbarian.md | ParentClassId: hd_barbarian.md | ||||||
| Id: barbarian_spirits_hd.md#voie-des-esprits | Id: barbarian_spirits_hd.md#voie-des-esprits | ||||||
| RootId: barbarian_spirits_hd.md | RootId: barbarian_spirits_hd.md | ||||||
| ParentLink: barbarian_hd.md#voies-primitives | ParentLink: barbarian_hd.md#voies-primitives | ||||||
|  | Name: Voie des esprits | ||||||
| ParentName: Voies primitives | ParentName: Voies primitives | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p117) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Voies primitives](hd_barbarian_voies_primitives.md) | >  [Voies primitives](hd_barbarian_voies_primitives.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Voie de l'acier |  | ||||||
| Source: (MDR p117) |  | ||||||
| ParentClassId: hd_barbarian.md | ParentClassId: hd_barbarian.md | ||||||
| Id: barbarian_steel_hd.md#voie-de-lacier | Id: barbarian_steel_hd.md#voie-de-lacier | ||||||
| RootId: barbarian_steel_hd.md | RootId: barbarian_steel_hd.md | ||||||
| ParentLink: barbarian_hd.md#voies-primitives | ParentLink: barbarian_hd.md#voies-primitives | ||||||
|  | Name: Voie de l'acier | ||||||
| ParentName: Voies primitives | ParentName: Voies primitives | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p117) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Voies primitives](hd_barbarian_voies_primitives.md) | >  [Voies primitives](hd_barbarian_voies_primitives.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Collège des saltimbanques |  | ||||||
| Source: (MDR p126) |  | ||||||
| ParentClassId: hd_bard.md | ParentClassId: hd_bard.md | ||||||
| Id: bard_acrobats_hd.md#collège-des-saltimbanques | Id: bard_acrobats_hd.md#collège-des-saltimbanques | ||||||
| RootId: bard_acrobats_hd.md | RootId: bard_acrobats_hd.md | ||||||
| ParentLink: bard_hd.md#collèges-bardiques | ParentLink: bard_hd.md#collèges-bardiques | ||||||
|  | Name: Collège des saltimbanques | ||||||
| ParentName: Collèges bardiques | ParentName: Collèges bardiques | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p126) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Collèges bardiques](hd_bard_colleges_bardiques.md) | >  [Collèges bardiques](hd_bard_colleges_bardiques.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Collège des diplomates |  | ||||||
| Source: (MDR p125) |  | ||||||
| ParentClassId: hd_bard.md | ParentClassId: hd_bard.md | ||||||
| Id: bard_diplomats_hd.md#collège-des-diplomates | Id: bard_diplomats_hd.md#collège-des-diplomates | ||||||
| RootId: bard_diplomats_hd.md | RootId: bard_diplomats_hd.md | ||||||
| ParentLink: bard_hd.md#collèges-bardiques | ParentLink: bard_hd.md#collèges-bardiques | ||||||
|  | Name: Collège des diplomates | ||||||
| ParentName: Collèges bardiques | ParentName: Collèges bardiques | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p125) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Collèges bardiques](hd_bard_colleges_bardiques.md) | >  [Collèges bardiques](hd_bard_colleges_bardiques.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Collège des hérauts |  | ||||||
| Source: (MDR p126) |  | ||||||
| ParentClassId: hd_bard.md | ParentClassId: hd_bard.md | ||||||
| Id: bard_heralds_hd.md#collège-des-hérauts | Id: bard_heralds_hd.md#collège-des-hérauts | ||||||
| RootId: bard_heralds_hd.md | RootId: bard_heralds_hd.md | ||||||
| ParentLink: bard_hd.md#collèges-bardiques | ParentLink: bard_hd.md#collèges-bardiques | ||||||
|  | Name: Collège des hérauts | ||||||
| ParentName: Collèges bardiques | ParentName: Collèges bardiques | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p126) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Collèges bardiques](hd_bard_colleges_bardiques.md) | >  [Collèges bardiques](hd_bard_colleges_bardiques.md) | ||||||
|  |  | ||||||
|  | @ -1,14 +1,14 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Collège du savoir |  | ||||||
| Source: (MDR p125) |  | ||||||
| ParentClassId: hd_bard.md | ParentClassId: hd_bard.md | ||||||
| Id: bard_knowledge_hd.md#collège-du-savoir | Id: bard_knowledge_hd.md#collège-du-savoir | ||||||
| RootId: bard_knowledge_hd.md | RootId: bard_knowledge_hd.md | ||||||
| ParentLink: bard_hd.md#collèges-bardiques | ParentLink: bard_hd.md#collèges-bardiques | ||||||
|  | Name: Collège du savoir | ||||||
| ParentName: Collèges bardiques | ParentName: Collèges bardiques | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
| AltName: College of Lore (SRD p13) | AltName: College of Lore (SRD p13) | ||||||
|  | Source: (MDR p125) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Collèges bardiques](hd_bard_colleges_bardiques.md) | >  [Collèges bardiques](hd_bard_colleges_bardiques.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Guide spirituel |  | ||||||
| Source: (MDR p138) |  | ||||||
| ParentClassId: hd_cleric.md | ParentClassId: hd_cleric.md | ||||||
| Id: cleric_guide_hd.md#guide-spirituel | Id: cleric_guide_hd.md#guide-spirituel | ||||||
| RootId: cleric_guide_hd.md | RootId: cleric_guide_hd.md | ||||||
| ParentLink: cleric_hd.md#domaines-divins | ParentLink: cleric_hd.md#domaines-divins | ||||||
|  | Name: Guide spirituel | ||||||
| ParentName: Domaines divins | ParentName: Domaines divins | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p138) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Domaines divins](hd_cleric_domaines_divins.md) | >  [Domaines divins](hd_cleric_domaines_divins.md) | ||||||
|  |  | ||||||
|  | @ -1,14 +1,14 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Domaine de la Vie |  | ||||||
| Source: (MDR p418) |  | ||||||
| ParentClassId: hd_cleric.md | ParentClassId: hd_cleric.md | ||||||
| Id: cleric_life_hd.md#domaine-de-la-vie | Id: cleric_life_hd.md#domaine-de-la-vie | ||||||
| RootId: cleric_life_hd.md | RootId: cleric_life_hd.md | ||||||
| ParentLink: cleric_hd.md#domaines-divins | ParentLink: cleric_hd.md#domaines-divins | ||||||
|  | Name: Domaine de la Vie | ||||||
| ParentName: Domaines divins | ParentName: Domaines divins | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
| AltName: Life Domain (SRD p17) | AltName: Life Domain (SRD p17) | ||||||
|  | Source: (MDR p418) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Domaines divins](hd_cleric_domaines_divins.md) | >  [Domaines divins](hd_cleric_domaines_divins.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Prêtre |  | ||||||
| Source: (MDR p132) |  | ||||||
| ParentClassId: hd_cleric.md | ParentClassId: hd_cleric.md | ||||||
| Id: cleric_priest_hd.md#prêtre | Id: cleric_priest_hd.md#prêtre | ||||||
| RootId: cleric_priest_hd.md | RootId: cleric_priest_hd.md | ||||||
| ParentLink: cleric_hd.md#domaines-divins | ParentLink: cleric_hd.md#domaines-divins | ||||||
|  | Name: Prêtre | ||||||
| ParentName: Domaines divins | ParentName: Domaines divins | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p132) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Domaines divins](hd_cleric_domaines_divins.md) | >  [Domaines divins](hd_cleric_domaines_divins.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Théurge |  | ||||||
| Source: (MDR p139) |  | ||||||
| ParentClassId: hd_cleric.md | ParentClassId: hd_cleric.md | ||||||
| Id: cleric_theurgist_hd.md#théurge | Id: cleric_theurgist_hd.md#théurge | ||||||
| RootId: cleric_theurgist_hd.md | RootId: cleric_theurgist_hd.md | ||||||
| ParentLink: cleric_hd.md#domaines-divins | ParentLink: cleric_hd.md#domaines-divins | ||||||
|  | Name: Théurge | ||||||
| ParentName: Domaines divins | ParentName: Domaines divins | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p139) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Domaines divins](hd_cleric_domaines_divins.md) | >  [Domaines divins](hd_cleric_domaines_divins.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Gardien des traditions |  | ||||||
| Source: (MDR p137) |  | ||||||
| ParentClassId: hd_cleric.md | ParentClassId: hd_cleric.md | ||||||
| Id: cleric_traditions_hd.md#gardien-des-traditions | Id: cleric_traditions_hd.md#gardien-des-traditions | ||||||
| RootId: cleric_traditions_hd.md | RootId: cleric_traditions_hd.md | ||||||
| ParentLink: cleric_hd.md#domaines-divins | ParentLink: cleric_hd.md#domaines-divins | ||||||
|  | Name: Gardien des traditions | ||||||
| ParentName: Domaines divins | ParentName: Domaines divins | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p137) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Domaines divins](hd_cleric_domaines_divins.md) | >  [Domaines divins](hd_cleric_domaines_divins.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Cercle des profondeurs |  | ||||||
| Source: (MDR p150) |  | ||||||
| ParentClassId: hd_druid.md | ParentClassId: hd_druid.md | ||||||
| Id: druid_depths_hd.md#cercle-des-profondeurs | Id: druid_depths_hd.md#cercle-des-profondeurs | ||||||
| RootId: druid_depths_hd.md | RootId: druid_depths_hd.md | ||||||
| ParentLink: druid_hd.md#cercles-druidiques | ParentLink: druid_hd.md#cercles-druidiques | ||||||
|  | Name: Cercle des profondeurs | ||||||
| ParentName: Cercles druidiques | ParentName: Cercles druidiques | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p150) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Cercles druidiques](hd_druid_cercles_druidiques.md) | >  [Cercles druidiques](hd_druid_cercles_druidiques.md) | ||||||
|  |  | ||||||
|  | @ -1,14 +1,14 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Cercle de la terre |  | ||||||
| Source: (MDR p145) |  | ||||||
| ParentClassId: hd_druid.md | ParentClassId: hd_druid.md | ||||||
| Id: druid_earth_hd.md#cercle-de-la-terre | Id: druid_earth_hd.md#cercle-de-la-terre | ||||||
| RootId: druid_earth_hd.md | RootId: druid_earth_hd.md | ||||||
| ParentLink: druid_hd.md#cercles-druidiques | ParentLink: druid_hd.md#cercles-druidiques | ||||||
|  | Name: Cercle de la terre | ||||||
| ParentName: Cercles druidiques | ParentName: Cercles druidiques | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
| AltName: Circle of the Land (SRD p21) | AltName: Circle of the Land (SRD p21) | ||||||
|  | Source: (MDR p145) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Cercles druidiques](hd_druid_cercles_druidiques.md) | >  [Cercles druidiques](hd_druid_cercles_druidiques.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Cercle des fées |  | ||||||
| Source: (MDR p149) |  | ||||||
| ParentClassId: hd_druid.md | ParentClassId: hd_druid.md | ||||||
| Id: druid_fairies_hd.md#cercle-des-fées | Id: druid_fairies_hd.md#cercle-des-fées | ||||||
| RootId: druid_fairies_hd.md | RootId: druid_fairies_hd.md | ||||||
| ParentLink: druid_hd.md#cercles-druidiques | ParentLink: druid_hd.md#cercles-druidiques | ||||||
|  | Name: Cercle des fées | ||||||
| ParentName: Cercles druidiques | ParentName: Cercles druidiques | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p149) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Cercles druidiques](hd_druid_cercles_druidiques.md) | >  [Cercles druidiques](hd_druid_cercles_druidiques.md) | ||||||
|  |  | ||||||
|  | @ -1,13 +1,13 @@ | ||||||
| --- | --- | ||||||
| !SubClassItem | !SubClassItem | ||||||
| Name: Cercle des saisons |  | ||||||
| Source: (MDR p147) |  | ||||||
| ParentClassId: hd_druid.md | ParentClassId: hd_druid.md | ||||||
| Id: druid_seasons_hd.md#cercle-des-saisons | Id: druid_seasons_hd.md#cercle-des-saisons | ||||||
| RootId: druid_seasons_hd.md | RootId: druid_seasons_hd.md | ||||||
| ParentLink: druid_hd.md#cercles-druidiques | ParentLink: druid_hd.md#cercles-druidiques | ||||||
|  | Name: Cercle des saisons | ||||||
| ParentName: Cercles druidiques | ParentName: Cercles druidiques | ||||||
| NameLevel: 1 | NameLevel: 1 | ||||||
|  | Source: (MDR p147) | ||||||
| Attributes: {} | Attributes: {} | ||||||
| --- | --- | ||||||
| >  [Cercles druidiques](hd_druid_cercles_druidiques.md) | >  [Cercles druidiques](hd_druid_cercles_druidiques.md) | ||||||
|  |  | ||||||
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Outil d'artisan | Type: Outil d'artisan | ||||||
| Price: 25 po | Price: 25 po | ||||||
| Weight: 1,5 kg | Weight: 1,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Outil d'artisan | Type: Outil d'artisan | ||||||
| Price: 15 po | Price: 15 po | ||||||
| Weight: 2,5 kg | Weight: 2,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 25 po | Price: 25 po | ||||||
| Weight: 0,5 kg | Weight: 0,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier / Symbole sacré | Type: Équipement d'aventurier / Symbole sacré | ||||||
| Price: 5 po | Price: 5 po | ||||||
| Weight: 0,5 kg | Weight: 0,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Monture | Type: Monture | ||||||
| Price: 8 po | Price: 8 po | ||||||
| WeightCapacity: 210 kg | WeightCapacity: 210 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 50 po | Price: 50 po | ||||||
| Weight: _ | Weight: _ | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Arme à distance | Type: Arme à distance | ||||||
| Price: 75 po | Price: 75 po | ||||||
| Weight: 1,5 kg | Weight: 1,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Arme à distance | Type: Arme à distance | ||||||
| Price: 25 po | Price: 25 po | ||||||
| Weight: 2,5 kg | Weight: 2,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Arme à distance | Type: Arme à distance | ||||||
| Price: 50 po | Price: 50 po | ||||||
| Weight: 9 kg | Weight: 9 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Arme à distance | Type: Arme à distance | ||||||
| Price: 25 po | Price: 25 po | ||||||
| Weight: 1 kg | Weight: 1 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Arme à distance | Type: Arme à distance | ||||||
| Price: 50 po | Price: 50 po | ||||||
| Weight: 1 kg | Weight: 1 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Marchandise | Type: Marchandise | ||||||
| Price: 5 po | Price: 5 po | ||||||
| Unity: 1 livre | Unity: 1 livre | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure lourde | Type: Armure lourde | ||||||
| Price: 30 po | Price: 30 po | ||||||
| ArmorClass: 14 | ArmorClass: 14 | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure légère | Type: Armure légère | ||||||
| Price: 10 po | Price: 10 po | ||||||
| ArmorClass: 11 + modifcateur de Dex | ArmorClass: 11 + modifcateur de Dex | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure légère | Type: Armure légère | ||||||
| Price: 45 po | Price: 45 po | ||||||
| ArmorClass: 12 + modifcateur de Dex | ArmorClass: 12 + modifcateur de Dex | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure intermédiaire | Type: Armure intermédiaire | ||||||
| Price: 750 po | Price: 750 po | ||||||
| ArmorClass: 15 + modifcateur de Dex (max 2) | ArmorClass: 15 + modifcateur de Dex (max 2) | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure intermédiaire | Type: Armure intermédiaire | ||||||
| Price: 10 po | Price: 10 po | ||||||
| ArmorClass: 12 + modifcateur de Dex (max 2) | ArmorClass: 12 + modifcateur de Dex (max 2) | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure intermédiaire | Type: Armure intermédiaire | ||||||
| Price: 50 po | Price: 50 po | ||||||
| ArmorClass: 14 + modifcateur de Dex (max 2) | ArmorClass: 14 + modifcateur de Dex (max 2) | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure légère | Type: Armure légère | ||||||
| Price: 5 po | Price: 5 po | ||||||
| ArmorClass: 11 + modifcateur de Dex | ArmorClass: 11 + modifcateur de Dex | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier / Focaliseur druidique | Type: Équipement d'aventurier / Focaliseur druidique | ||||||
| Price: 10 po | Price: 10 po | ||||||
| Weight: 0,5 kg | Weight: 0,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier / Focaliseur arcanique | Type: Équipement d'aventurier / Focaliseur arcanique | ||||||
| Price: 10 po | Price: 10 po | ||||||
| Weight: 0,5 kg | Weight: 0,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 5 po | Price: 5 po | ||||||
| Weight: 1,5 kg | Weight: 1,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Nourriture, boisson et logement | Type: Nourriture, boisson et logement | ||||||
| Price: 10 po | Price: 10 po | ||||||
| Unity: par personne | Unity: par personne | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement, sellerie et véhicules à traction | Type: Équipement, sellerie et véhicules à traction | ||||||
| Price: x 4 | Price: x 4 | ||||||
| Weight: x 2 | Weight: x 2 | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Bateau | Type: Bateau | ||||||
| Price: 3 000 po | Price: 3 000 po | ||||||
| Speed: 1,4 km/h | Speed: 1,4 km/h | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Bateau | Type: Bateau | ||||||
| Price: 50 po | Price: 50 po | ||||||
| Speed: 2,5 km/h | Speed: 2,5 km/h | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Bateau | Type: Bateau | ||||||
| Price: 10 000 po | Price: 10 000 po | ||||||
| Speed: 3 km/h | Speed: 3 km/h | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Arme de corps-à-corps | Type: Arme de corps-à-corps | ||||||
| Price: 2 pa | Price: 2 pa | ||||||
| Weight: 2 kg | Weight: 2 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier / Focaliseur arcanique | Type: Équipement d'aventurier / Focaliseur arcanique | ||||||
| Price: 5 po | Price: 5 po | ||||||
| Weight: 2 kg | Weight: 2 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier / Focaliseur druidique | Type: Équipement d'aventurier / Focaliseur druidique | ||||||
| Price: 5 po | Price: 5 po | ||||||
| Weight: 2 kg | Weight: 2 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurierÉquipement d'aventurier | Type: Équipement d'aventurierÉquipement d'aventurier | ||||||
| Price: 4 po | Price: 4 po | ||||||
| Weight: 17,5 kg | Weight: 17,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Nourriture, boisson et logement | Type: Nourriture, boisson et logement | ||||||
| Price: 4 pc | Price: 4 pc | ||||||
| Unity: chope | Unity: chope | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Nourriture, boisson et logement | Type: Nourriture, boisson et logement | ||||||
| Price: 2 pa | Price: 2 pa | ||||||
| Unity: cruche | Unity: cruche | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 1 po | Price: 1 po | ||||||
| Weight: 1 kg | Weight: 1 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier / Munitions | Type: Équipement d'aventurier / Munitions | ||||||
| Price: 4 pc | Price: 4 pc | ||||||
| Weight: 0,75 kg | Weight: 0,75 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Marchandise | Type: Marchandise | ||||||
| Price: 1 pc | Price: 1 pc | ||||||
| Unity: 1 livre | Unity: 1 livre | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Marchandise | Type: Marchandise | ||||||
| Price: 15 po | Price: 15 po | ||||||
| Id: equipment_hd.md#boeuf | Id: equipment_hd.md#boeuf | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 5 pa | Price: 5 pa | ||||||
| Weight: 0,5 kg | Weight: 0,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Bouclier | Type: Bouclier | ||||||
| Price: 10 po | Price: 10 po | ||||||
| ArmorClass: +2 | ArmorClass: +2 | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 1 pc | Price: 1 pc | ||||||
| Weight: _ | Weight: _ | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 2 po | Price: 2 po | ||||||
| Weight: 1 kg | Weight: 1 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 2 po | Price: 2 po | ||||||
| Weight: 1 kg | Weight: 1 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier / Focaliseur druidique | Type: Équipement d'aventurier / Focaliseur druidique | ||||||
| Price: 1 po | Price: 1 po | ||||||
| Weight: _ | Weight: _ | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 10 po | Price: 10 po | ||||||
| Weight: 0,5 kg | Weight: 0,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement, sellerie et véhicules à traction | Type: Équipement, sellerie et véhicules à traction | ||||||
| Price: 100 po | Price: 100 po | ||||||
| Weight: 300 kg | Weight: 300 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Marchandise | Type: Marchandise | ||||||
| Price: 2 po | Price: 2 po | ||||||
| Unity: 1 livre | Unity: 1 livre | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 1 po | Price: 1 po | ||||||
| Weight: 0,5 kg | Weight: 0,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier / Munitions | Type: Équipement d'aventurier / Munitions | ||||||
| Price: 1 po | Price: 1 po | ||||||
| Weight: 0,75 kg | Weight: 0,75 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement, sellerie et véhicules à traction | Type: Équipement, sellerie et véhicules à traction | ||||||
| Price: 250 po | Price: 250 po | ||||||
| Weight: 50 kg | Weight: 50 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 5 po | Price: 5 po | ||||||
| Weight: 5 kg | Weight: 5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Outil - Instrument de musique | Type: Outil - Instrument de musique | ||||||
| Price: 2 po | Price: 2 po | ||||||
| Weight: 0,5 kg | Weight: 0,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Monture | Type: Monture | ||||||
| Price: 50 po | Price: 50 po | ||||||
| WeightCapacity: 240 kg | WeightCapacity: 240 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement, sellerie et véhicules à traction | Type: Équipement, sellerie et véhicules à traction | ||||||
| Price: 35 po | Price: 35 po | ||||||
| Weight: 200 kg | Weight: 200 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement, sellerie et véhicules à traction | Type: Équipement, sellerie et véhicules à traction | ||||||
| Price: 15 po | Price: 15 po | ||||||
| Weight: 100 kg | Weight: 100 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 1 po | Price: 1 po | ||||||
| Weight: 1 kg | Weight: 1 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure intermédiaire | Type: Armure intermédiaire | ||||||
| Price: 50 po | Price: 50 po | ||||||
| ArmorClass: 13 + modifcateur de Dex (max 2) | ArmorClass: 13 + modifcateur de Dex (max 2) | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Monture | Type: Monture | ||||||
| Price: 400 po | Price: 400 po | ||||||
| WeightCapacity: 270 kg | WeightCapacity: 270 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Monture | Type: Monture | ||||||
| Price: 75 po | Price: 75 po | ||||||
| WeightCapacity: 240 kg | WeightCapacity: 240 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Monture | Type: Monture | ||||||
| Price: 50 po | Price: 50 po | ||||||
| WeightCapacity: 270 kg | WeightCapacity: 270 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 5 po | Price: 5 po | ||||||
| Weight: _ | Weight: _ | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Marchandise | Type: Marchandise | ||||||
| Price: 1 po | Price: 1 po | ||||||
| Id: equipment_hd.md#chèvre | Id: equipment_hd.md#chèvre | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Arme de corps-à-corps | Type: Arme de corps-à-corps | ||||||
| Price: 25 po | Price: 25 po | ||||||
| Weight: 1,5 kg | Weight: 1,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 5 pa | Price: 5 pa | ||||||
| Weight: _ | Weight: _ | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Armure lourde | Type: Armure lourde | ||||||
| Price: 200 po | Price: 200 po | ||||||
| ArmorClass: 17 | ArmorClass: 17 | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 1 po | Price: 1 po | ||||||
| Weight: _ | Weight: _ | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Marchandise | Type: Marchandise | ||||||
| Price: 3 po | Price: 3 po | ||||||
| Unity: 1 livre | Unity: 1 livre | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Marchandise | Type: Marchandise | ||||||
| Price: 3 po | Price: 3 po | ||||||
| Id: equipment_hd.md#cochon | Id: equipment_hd.md#cochon | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 5 po | Price: 5 po | ||||||
| Weight: 12,5 kg | Weight: 12,5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Outil - Instrument de musique | Type: Outil - Instrument de musique | ||||||
| Price: 3 po | Price: 3 po | ||||||
| Weight: 1 kg | Weight: 1 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 1 po | Price: 1 po | ||||||
| Weight: 5 kg | Weight: 5 kg | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| --- | --- | ||||||
| !Equipment | !EquipmentItem | ||||||
| Type: Équipement d'aventurier | Type: Équipement d'aventurier | ||||||
| Price: 10 po | Price: 10 po | ||||||
| Weight: 2,5 kg | Weight: 2,5 kg | ||||||
|  |  | ||||||
Some files were not shown because too many files have changed in this diff Show more
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Yan Maniez
						Yan Maniez