Cphrampus / DnDAppFiles

Files for the Fifth Edition apps by Lion's Den
48 stars 15 forks source link

Error while trying to compile #413

Closed Kamui2040 closed 4 years ago

Kamui2040 commented 4 years ago

create_compendiums.py:234: SyntaxWarning: "is" with a literal. Did you mean "=="? if category is 'Homebrew': # populate base classes to allow for homebrew archetypes usage: create_compendiums.py [-h] [-b {complete,none}] [-s {usable,reference,none}] [-e [{UA,MF,HB,PS,IL} [{UA,MF,HB,PS,IL} ...]]] [-i INCLUDES [INCLUDES ...]] [-n NAME]

Kamui2040 commented 4 years ago

python create_compendiums.py create_compendiums.py:234: SyntaxWarning: "is" with a literal. Did you mean "=="? if category is 'Homebrew': # populate base classes to allow for homebrew archetypes Arguments: {'basetype_format': 'complete', 'subtype_format': 'none', 'excludes': ['MF', 'HB'], 'includes': ['*'], 'name': 'Full'} Making sure compendiums directory exists... Making Compendiums directory Traceback (most recent call last): File "create_compendiums.py", line 364, in create_full_compendium() File "create_compendiums.py", line 292, in create_full_compendium class_paths = create_class_compendiums() File "create_compendiums.py", line 263, in create_class_compendiums class_name, subclass_name = re.search(r"/([^/]+)/([^/]+).xml$", file).groups() AttributeError: 'NoneType' object has no attribute 'groups'

Cphrampus commented 4 years ago

I've yet to dig into this deeply, but a quick check does not allow me to reproduce this issue.

Could you provide more information, such as OS, python version, etc., so I can further investigate?

Obviously it is unable to parse out the class and archetype names, but the file/folder structure of the repo should be set up in the way it is expecting (which is the whole point).

Kamui2040 commented 4 years ago

I'm using windows 10 home and python-3.8.2. Just to clarify, I'm a noob at this so it's probably my mistake and I'm missing something.

Kamui2040 commented 4 years ago

So I just downloaded the 1.19 release, python-3.8.2.exe (installed that). Opened command prompt on windows, changed directories to the main folder of the release and ran the command python create_compendiums.py Just trying to compile a version without the UA, homebrew or Ravnica stuff while making the subclasses a standalone Class if I understood the options correctly?

Cphrampus commented 4 years ago

Got it, this seems to just be an issue with the script on windows because of the different slash used for paths, which the regex was not accounting for. So I can get a fix in for that.

That command, per the initial output, would include UA, and would not break subclasses out into individual files that could be imported: 'subtype_format': 'none', 'excludes': ['MF', 'HB']

The base configuration makes no subclass files(subtype_format), and excludes only modern/future (MF)and homebrew(HB) content (excludes).

For (mostly) what you are trying to do you will want:

python create_compendiums.py --subtype-format usable --excludes UA HB MF

Unfortunately there is not currently a way to filter items out by source, so the ravnica items would not be removed. A suggestion would be to mark the ravnica races as UA or HB, and add that to the Ravnica spells file as well, so they will be filtered out. It's not great, but it will at least get you what you want.

I will add an enhancement issue for being able to filter by source, it would be useful, especially for filtering out extra planar items like Ravnica or Eberron, but I will have to figure out what the best way to go about implementing that is.

Kamui2040 commented 4 years ago

Thank you for the help and advice, if it's only about replacing the slashes, where can I do that?

I'll take a look at the other files to see how to mark them correctly. Wouldn't it just be theoretically possible to just delete the .xmls of ravnica related content. Or is this content also mixed with other .xmls? Yeah I'm basically trying to exclude eberron, ua and ravnica content

Cphrampus commented 4 years ago

This should work as a quick patch to get you going, I will do some more testing on it to make sure and get it merged in: on line 263, replace with

class_name, subclass_name = re.search(r"[/\\]([^/\\]+)[/\\]([^/\\]+)\.xml$", file).groups()

You could also delete the files. I believe that it should be pretty well segregated and grouped, except for the races which each have their own file, but it should not be hard for you to remove them. Just keep in mind that, until the other filter by source feature is done, you may have to redelete/mess with them if you try to pull any new changes. That won't be a problem if you aren't planning to do that, though

Kamui2040 commented 4 years ago

Just tried that and this is the result

C:\Users\kamui\Downloads\DnDAppFiles-master>python create_compendiums.py --subtype-format usable --excludes UA HB MF
create_compendiums.py:234: SyntaxWarning: "is" with a literal. Did you mean "=="?
  if category is 'Homebrew':  # populate base classes to allow for homebrew archetypes
Arguments: {'basetype_format': 'complete', 'subtype_format': 'usable', 'excludes': ['UA', 'HB', 'MF'], 'includes': ['*'], 'name': 'Full'}
Making sure compendiums directory exists...
Making Compendiums directory
Compiling to Compendiums/Artificer Compendium.xml
create_compendiums.py:64: DeprecationWarning: This method will be removed in future versions.  Use 'list(elem)' or iteration over elem instead.
  if root.getchildren() is None:
create_compendiums.py:67: DeprecationWarning: This method will be removed in future versions.  Use 'list(elem)' or iteration over elem instead.
  for child in root.getchildren():
Compiling to Compendiums/Barbarian Compendium.xml
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Battlerager)
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Berserker)
Missing baseclass Barbarian (Battlerager) for Barbarian (Berserker)
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Storm Herald)
Missing baseclass Barbarian (Battlerager) for Barbarian (Storm Herald)
Missing baseclass Barbarian (Berserker) for Barbarian (Storm Herald)
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Totem Warrior)
Missing baseclass Barbarian (Battlerager) for Barbarian (Totem Warrior)
Missing baseclass Barbarian (Berserker) for Barbarian (Totem Warrior)
Missing baseclass Barbarian (Storm Herald) for Barbarian (Totem Warrior)
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Zealot)
Missing baseclass Barbarian (Battlerager) for Barbarian (Zealot)
Missing baseclass Barbarian (Berserker) for Barbarian (Zealot)
Missing baseclass Barbarian (Storm Herald) for Barbarian (Zealot)
Missing baseclass Barbarian (Totem Warrior) for Barbarian (Zealot)
Compiling to Compendiums/Bard Compendium.xml
Missing baseclass Bard (Glamour) for Bard (Lore)
Missing baseclass Bard (Glamour) for Bard (Swords)
Missing baseclass Bard (Lore) for Bard (Swords)
Missing baseclass Bard (Glamour) for Bard (Valor)
Missing baseclass Bard (Lore) for Bard (Valor)
Missing baseclass Bard (Swords) for Bard (Valor)
Missing baseclass Bard (Glamour) for Bard (Whispers)
Missing baseclass Bard (Lore) for Bard (Whispers)
Missing baseclass Bard (Swords) for Bard (Whispers)
Missing baseclass Bard (Valor) for Bard (Whispers)
Compiling to Compendiums/Cleric Compendium.xml
Missing baseclass Cleric (Arcana) for Cleric (Death)
Missing baseclass Cleric (Arcana) for Cleric (Forge)
Missing baseclass Cleric (Death) for Cleric (Forge)
Missing baseclass Cleric (Arcana) for Cleric (Grave)
Missing baseclass Cleric (Death) for Cleric (Grave)
Missing baseclass Cleric (Forge) for Cleric (Grave)
Missing baseclass Cleric (Arcana) for Cleric (Knowledge)
Missing baseclass Cleric (Death) for Cleric (Knowledge)
Missing baseclass Cleric (Forge) for Cleric (Knowledge)
Missing baseclass Cleric (Grave) for Cleric (Knowledge)
Missing baseclass Cleric (Arcana) for Cleric (Life)
Missing baseclass Cleric (Death) for Cleric (Life)
Missing baseclass Cleric (Forge) for Cleric (Life)
Missing baseclass Cleric (Grave) for Cleric (Life)
Missing baseclass Cleric (Knowledge) for Cleric (Life)
Missing baseclass Cleric (Arcana) for Cleric (Light)
Missing baseclass Cleric (Death) for Cleric (Light)
Missing baseclass Cleric (Forge) for Cleric (Light)
Missing baseclass Cleric (Grave) for Cleric (Light)
Missing baseclass Cleric (Knowledge) for Cleric (Light)
Missing baseclass Cleric (Life) for Cleric (Light)
Missing baseclass Cleric (Arcana) for Cleric (Nature)
Missing baseclass Cleric (Death) for Cleric (Nature)
Missing baseclass Cleric (Forge) for Cleric (Nature)
Missing baseclass Cleric (Grave) for Cleric (Nature)
Missing baseclass Cleric (Knowledge) for Cleric (Nature)
Missing baseclass Cleric (Life) for Cleric (Nature)
Missing baseclass Cleric (Light) for Cleric (Nature)
Missing baseclass Cleric (Arcana) for Cleric (Order)
Missing baseclass Cleric (Death) for Cleric (Order)
Missing baseclass Cleric (Forge) for Cleric (Order)
Missing baseclass Cleric (Grave) for Cleric (Order)
Missing baseclass Cleric (Knowledge) for Cleric (Order)
Missing baseclass Cleric (Life) for Cleric (Order)
Missing baseclass Cleric (Light) for Cleric (Order)
Missing baseclass Cleric (Nature) for Cleric (Order)
Missing baseclass Cleric (Arcana) for Cleric (Tempest)
Missing baseclass Cleric (Death) for Cleric (Tempest)
Missing baseclass Cleric (Forge) for Cleric (Tempest)
Missing baseclass Cleric (Grave) for Cleric (Tempest)
Missing baseclass Cleric (Knowledge) for Cleric (Tempest)
Missing baseclass Cleric (Life) for Cleric (Tempest)
Missing baseclass Cleric (Light) for Cleric (Tempest)
Missing baseclass Cleric (Nature) for Cleric (Tempest)
Missing baseclass Cleric (Order) for Cleric (Tempest)
Missing baseclass Cleric (Arcana) for Cleric (Trickery)
Missing baseclass Cleric (Death) for Cleric (Trickery)
Missing baseclass Cleric (Forge) for Cleric (Trickery)
Missing baseclass Cleric (Grave) for Cleric (Trickery)
Missing baseclass Cleric (Knowledge) for Cleric (Trickery)
Missing baseclass Cleric (Life) for Cleric (Trickery)
Missing baseclass Cleric (Light) for Cleric (Trickery)
Missing baseclass Cleric (Nature) for Cleric (Trickery)
Missing baseclass Cleric (Order) for Cleric (Trickery)
Missing baseclass Cleric (Tempest) for Cleric (Trickery)
Missing baseclass Cleric (Arcana) for Cleric (War)
Missing baseclass Cleric (Death) for Cleric (War)
Missing baseclass Cleric (Forge) for Cleric (War)
Missing baseclass Cleric (Grave) for Cleric (War)
Missing baseclass Cleric (Knowledge) for Cleric (War)
Missing baseclass Cleric (Life) for Cleric (War)
Missing baseclass Cleric (Light) for Cleric (War)
Missing baseclass Cleric (Nature) for Cleric (War)
Missing baseclass Cleric (Order) for Cleric (War)
Missing baseclass Cleric (Tempest) for Cleric (War)
Missing baseclass Cleric (Trickery) for Cleric (War)
Compiling to Compendiums/Druid Compendium.xml
Missing baseclass Druid (Dreams) for Druid (Land)
Missing baseclass Druid (Dreams) for Druid (Moon)
Missing baseclass Druid (Land) for Druid (Moon)
Missing baseclass Druid (Dreams) for Druid (Shepherd)
Missing baseclass Druid (Land) for Druid (Shepherd)
Missing baseclass Druid (Moon) for Druid (Shepherd)
Missing baseclass Druid (Dreams) for Druid (Spores)
Missing baseclass Druid (Land) for Druid (Spores)
Missing baseclass Druid (Moon) for Druid (Spores)
Missing baseclass Druid (Shepherd) for Druid (Spores)
Compiling to Compendiums/Fighter Compendium.xml
Missing baseclass Fighter (Arcane Archer) for Fighter (Battle Master)
Missing baseclass Fighter (Arcane Archer) for Fighter (Cavalier)
Missing baseclass Fighter (Battle Master) for Fighter (Cavalier)
Missing baseclass Fighter (Arcane Archer) for Fighter (Champion)
Missing baseclass Fighter (Battle Master) for Fighter (Champion)
Missing baseclass Fighter (Cavalier) for Fighter (Champion)
Missing baseclass Fighter (Arcane Archer) for Fighter (Eldritch Knight)
Missing baseclass Fighter (Battle Master) for Fighter (Eldritch Knight)
Missing baseclass Fighter (Cavalier) for Fighter (Eldritch Knight)
Missing baseclass Fighter (Champion) for Fighter (Eldritch Knight)
Missing baseclass Fighter (Arcane Archer) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Battle Master) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Cavalier) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Champion) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Eldritch Knight) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Arcane Archer) for Fighter (Samurai)
Missing baseclass Fighter (Battle Master) for Fighter (Samurai)
Missing baseclass Fighter (Cavalier) for Fighter (Samurai)
Missing baseclass Fighter (Champion) for Fighter (Samurai)
Missing baseclass Fighter (Eldritch Knight) for Fighter (Samurai)
Missing baseclass Fighter (Purple Dragon Knight) for Fighter (Samurai)
Compiling to Compendiums/Monk Compendium.xml
Missing baseclass Monk (Drunken Master) for Monk (Four Elements)
Missing baseclass Monk (Drunken Master) for Monk (Kensei)
Missing baseclass Monk (Four Elements) for Monk (Kensei)
Missing baseclass Monk (Drunken Master) for Monk (Long Death)
Missing baseclass Monk (Four Elements) for Monk (Long Death)
Missing baseclass Monk (Kensei) for Monk (Long Death)
Missing baseclass Monk (Drunken Master) for Monk (Open Hand)
Missing baseclass Monk (Four Elements) for Monk (Open Hand)
Missing baseclass Monk (Kensei) for Monk (Open Hand)
Missing baseclass Monk (Long Death) for Monk (Open Hand)
Missing baseclass Monk (Drunken Master) for Monk (Shadow)
Missing baseclass Monk (Four Elements) for Monk (Shadow)
Missing baseclass Monk (Kensei) for Monk (Shadow)
Missing baseclass Monk (Long Death) for Monk (Shadow)
Missing baseclass Monk (Open Hand) for Monk (Shadow)
Missing baseclass Monk (Drunken Master) for Monk (Sun Soul)
Missing baseclass Monk (Four Elements) for Monk (Sun Soul)
Missing baseclass Monk (Kensei) for Monk (Sun Soul)
Missing baseclass Monk (Long Death) for Monk (Sun Soul)
Missing baseclass Monk (Open Hand) for Monk (Sun Soul)
Missing baseclass Monk (Shadow) for Monk (Sun Soul)
Compiling to Compendiums/Mystic Compendium.xml
Compiling to Compendiums/Paladin Compendium.xml
Missing baseclass Paladin (Ancients) for Paladin (Conquest)
Missing baseclass Paladin (Ancients) for Paladin (Crown)
Missing baseclass Paladin (Conquest) for Paladin (Crown)
Missing baseclass Paladin (Ancients) for Paladin (Devotion)
Missing baseclass Paladin (Conquest) for Paladin (Devotion)
Missing baseclass Paladin (Crown) for Paladin (Devotion)
Missing baseclass Paladin (Ancients) for Paladin (Oathbreaker)
Missing baseclass Paladin (Conquest) for Paladin (Oathbreaker)
Missing baseclass Paladin (Crown) for Paladin (Oathbreaker)
Missing baseclass Paladin (Devotion) for Paladin (Oathbreaker)
Missing baseclass Paladin (Ancients) for Paladin (Redemption)
Missing baseclass Paladin (Conquest) for Paladin (Redemption)
Missing baseclass Paladin (Crown) for Paladin (Redemption)
Missing baseclass Paladin (Devotion) for Paladin (Redemption)
Missing baseclass Paladin (Oathbreaker) for Paladin (Redemption)
Missing baseclass Paladin (Ancients) for Paladin (Vengeance)
Missing baseclass Paladin (Conquest) for Paladin (Vengeance)
Missing baseclass Paladin (Crown) for Paladin (Vengeance)
Missing baseclass Paladin (Devotion) for Paladin (Vengeance)
Missing baseclass Paladin (Oathbreaker) for Paladin (Vengeance)
Missing baseclass Paladin (Redemption) for Paladin (Vengeance)
Compiling to Compendiums/Ranger Compendium.xml
Missing baseclass Ranger (Beast) for Ranger (Gloom Stalker)
Missing baseclass Ranger (Beast) for Ranger (Horizon Walker)
Missing baseclass Ranger (Gloom Stalker) for Ranger (Horizon Walker)
Missing baseclass Ranger (Beast) for Ranger (Hunter)
Missing baseclass Ranger (Gloom Stalker) for Ranger (Hunter)
Missing baseclass Ranger (Horizon Walker) for Ranger (Hunter)
Missing baseclass Ranger (Beast) for Ranger (Monster Slayer)
Missing baseclass Ranger (Gloom Stalker) for Ranger (Monster Slayer)
Missing baseclass Ranger (Horizon Walker) for Ranger (Monster Slayer)
Missing baseclass Ranger (Hunter) for Ranger (Monster Slayer)
Compiling to Compendiums/Rogue Compendium.xml
Missing baseclass Rogue (Arcane Trickster) for Rogue (Assassin)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Inquisitive)
Missing baseclass Rogue (Assassin) for Rogue (Inquisitive)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Mastermind)
Missing baseclass Rogue (Assassin) for Rogue (Mastermind)
Missing baseclass Rogue (Inquisitive) for Rogue (Mastermind)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Scout)
Missing baseclass Rogue (Assassin) for Rogue (Scout)
Missing baseclass Rogue (Inquisitive) for Rogue (Scout)
Missing baseclass Rogue (Mastermind) for Rogue (Scout)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Swashbuckler)
Missing baseclass Rogue (Assassin) for Rogue (Swashbuckler)
Missing baseclass Rogue (Inquisitive) for Rogue (Swashbuckler)
Missing baseclass Rogue (Mastermind) for Rogue (Swashbuckler)
Missing baseclass Rogue (Scout) for Rogue (Swashbuckler)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Thief)
Missing baseclass Rogue (Assassin) for Rogue (Thief)
Missing baseclass Rogue (Inquisitive) for Rogue (Thief)
Missing baseclass Rogue (Mastermind) for Rogue (Thief)
Missing baseclass Rogue (Scout) for Rogue (Thief)
Missing baseclass Rogue (Swashbuckler) for Rogue (Thief)
Compiling to Compendiums/Sorcerer Compendium.xml
Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Draconic)
Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Shadow)
Missing baseclass Sorcerer (Draconic) for Sorcerer (Shadow)
Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Storm)
Missing baseclass Sorcerer (Draconic) for Sorcerer (Storm)
Missing baseclass Sorcerer (Shadow) for Sorcerer (Storm)
Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Wild)
Missing baseclass Sorcerer (Draconic) for Sorcerer (Wild)
Missing baseclass Sorcerer (Shadow) for Sorcerer (Wild)
Missing baseclass Sorcerer (Storm) for Sorcerer (Wild)
Compiling to Compendiums/Warlock Compendium.xml
Missing baseclass Warlock (Archfey) for Warlock (Celestial)
Missing baseclass Warlock (Archfey) for Warlock (Fiend)
Missing baseclass Warlock (Celestial) for Warlock (Fiend)
Missing baseclass Warlock (Archfey) for Warlock (Great Old One)
Missing baseclass Warlock (Celestial) for Warlock (Great Old One)
Missing baseclass Warlock (Fiend) for Warlock (Great Old One)
Missing baseclass Warlock (Archfey) for Warlock (Hexblade)
Missing baseclass Warlock (Celestial) for Warlock (Hexblade)
Missing baseclass Warlock (Fiend) for Warlock (Hexblade)
Missing baseclass Warlock (Great Old One) for Warlock (Hexblade)
Missing baseclass Warlock (Archfey) for Warlock (Undying)
Missing baseclass Warlock (Celestial) for Warlock (Undying)
Missing baseclass Warlock (Fiend) for Warlock (Undying)
Missing baseclass Warlock (Great Old One) for Warlock (Undying)
Missing baseclass Warlock (Hexblade) for Warlock (Undying)
Compiling to Compendiums/Wizard Compendium.xml
Missing baseclass Wizard (Abjuration) for Wizard (Bladesinger)
Missing baseclass Wizard (Abjuration) for Wizard (Conjuration)
Missing baseclass Wizard (Bladesinger) for Wizard (Conjuration)
Missing baseclass Wizard (Abjuration) for Wizard (Divination)
Missing baseclass Wizard (Bladesinger) for Wizard (Divination)
Missing baseclass Wizard (Conjuration) for Wizard (Divination)
Missing baseclass Wizard (Abjuration) for Wizard (Enchantment)
Missing baseclass Wizard (Bladesinger) for Wizard (Enchantment)
Missing baseclass Wizard (Conjuration) for Wizard (Enchantment)
Missing baseclass Wizard (Divination) for Wizard (Enchantment)
Missing baseclass Wizard (Abjuration) for Wizard (Evocation)
Missing baseclass Wizard (Bladesinger) for Wizard (Evocation)
Missing baseclass Wizard (Conjuration) for Wizard (Evocation)
Missing baseclass Wizard (Divination) for Wizard (Evocation)
Missing baseclass Wizard (Enchantment) for Wizard (Evocation)
Missing baseclass Wizard (Abjuration) for Wizard (Illusion)
Missing baseclass Wizard (Bladesinger) for Wizard (Illusion)
Missing baseclass Wizard (Conjuration) for Wizard (Illusion)
Missing baseclass Wizard (Divination) for Wizard (Illusion)
Missing baseclass Wizard (Enchantment) for Wizard (Illusion)
Missing baseclass Wizard (Evocation) for Wizard (Illusion)
Missing baseclass Wizard (Abjuration) for Wizard (Necromancy)
Missing baseclass Wizard (Bladesinger) for Wizard (Necromancy)
Missing baseclass Wizard (Conjuration) for Wizard (Necromancy)
Missing baseclass Wizard (Divination) for Wizard (Necromancy)
Missing baseclass Wizard (Enchantment) for Wizard (Necromancy)
Missing baseclass Wizard (Evocation) for Wizard (Necromancy)
Missing baseclass Wizard (Illusion) for Wizard (Necromancy)
Missing baseclass Wizard (Abjuration) for Wizard (Transmutation)
Missing baseclass Wizard (Bladesinger) for Wizard (Transmutation)
Missing baseclass Wizard (Conjuration) for Wizard (Transmutation)
Missing baseclass Wizard (Divination) for Wizard (Transmutation)
Missing baseclass Wizard (Enchantment) for Wizard (Transmutation)
Missing baseclass Wizard (Evocation) for Wizard (Transmutation)
Missing baseclass Wizard (Illusion) for Wizard (Transmutation)
Missing baseclass Wizard (Necromancy) for Wizard (Transmutation)
Missing baseclass Wizard (Abjuration) for Wizard (War Magic)
Missing baseclass Wizard (Bladesinger) for Wizard (War Magic)
Missing baseclass Wizard (Conjuration) for Wizard (War Magic)
Missing baseclass Wizard (Divination) for Wizard (War Magic)
Missing baseclass Wizard (Enchantment) for Wizard (War Magic)
Missing baseclass Wizard (Evocation) for Wizard (War Magic)
Missing baseclass Wizard (Illusion) for Wizard (War Magic)
Missing baseclass Wizard (Necromancy) for Wizard (War Magic)
Missing baseclass Wizard (Transmutation) for Wizard (War Magic)
Compiling to Compendiums/Items Compendium.xml
Compiling to Compendiums/Character Compendium.xml
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Battlerager)
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Berserker)
Missing baseclass Barbarian (Battlerager) for Barbarian (Berserker)
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Storm Herald)
Missing baseclass Barbarian (Battlerager) for Barbarian (Storm Herald)
Missing baseclass Barbarian (Berserker) for Barbarian (Storm Herald)
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Totem Warrior)
Missing baseclass Barbarian (Battlerager) for Barbarian (Totem Warrior)
Missing baseclass Barbarian (Berserker) for Barbarian (Totem Warrior)
Missing baseclass Barbarian (Storm Herald) for Barbarian (Totem Warrior)
Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Zealot)
Missing baseclass Barbarian (Battlerager) for Barbarian (Zealot)
Missing baseclass Barbarian (Berserker) for Barbarian (Zealot)
Missing baseclass Barbarian (Storm Herald) for Barbarian (Zealot)
Missing baseclass Barbarian (Totem Warrior) for Barbarian (Zealot)
Missing baseclass Bard (Glamour) for Bard (Lore)
Missing baseclass Bard (Glamour) for Bard (Swords)
Missing baseclass Bard (Lore) for Bard (Swords)
Missing baseclass Bard (Glamour) for Bard (Valor)
Missing baseclass Bard (Lore) for Bard (Valor)
Missing baseclass Bard (Swords) for Bard (Valor)
Missing baseclass Bard (Glamour) for Bard (Whispers)
Missing baseclass Bard (Lore) for Bard (Whispers)
Missing baseclass Bard (Swords) for Bard (Whispers)
Missing baseclass Bard (Valor) for Bard (Whispers)
Missing baseclass Cleric (Arcana) for Cleric (Death)
Missing baseclass Cleric (Arcana) for Cleric (Forge)
Missing baseclass Cleric (Death) for Cleric (Forge)
Missing baseclass Cleric (Arcana) for Cleric (Grave)
Missing baseclass Cleric (Death) for Cleric (Grave)
Missing baseclass Cleric (Forge) for Cleric (Grave)
Missing baseclass Cleric (Arcana) for Cleric (Knowledge)
Missing baseclass Cleric (Death) for Cleric (Knowledge)
Missing baseclass Cleric (Forge) for Cleric (Knowledge)
Missing baseclass Cleric (Grave) for Cleric (Knowledge)
Missing baseclass Cleric (Arcana) for Cleric (Life)
Missing baseclass Cleric (Death) for Cleric (Life)
Missing baseclass Cleric (Forge) for Cleric (Life)
Missing baseclass Cleric (Grave) for Cleric (Life)
Missing baseclass Cleric (Knowledge) for Cleric (Life)
Missing baseclass Cleric (Arcana) for Cleric (Light)
Missing baseclass Cleric (Death) for Cleric (Light)
Missing baseclass Cleric (Forge) for Cleric (Light)
Missing baseclass Cleric (Grave) for Cleric (Light)
Missing baseclass Cleric (Knowledge) for Cleric (Light)
Missing baseclass Cleric (Life) for Cleric (Light)
Missing baseclass Cleric (Arcana) for Cleric (Nature)
Missing baseclass Cleric (Death) for Cleric (Nature)
Missing baseclass Cleric (Forge) for Cleric (Nature)
Missing baseclass Cleric (Grave) for Cleric (Nature)
Missing baseclass Cleric (Knowledge) for Cleric (Nature)
Missing baseclass Cleric (Life) for Cleric (Nature)
Missing baseclass Cleric (Light) for Cleric (Nature)
Missing baseclass Cleric (Arcana) for Cleric (Order)
Missing baseclass Cleric (Death) for Cleric (Order)
Missing baseclass Cleric (Forge) for Cleric (Order)
Missing baseclass Cleric (Grave) for Cleric (Order)
Missing baseclass Cleric (Knowledge) for Cleric (Order)
Missing baseclass Cleric (Life) for Cleric (Order)
Missing baseclass Cleric (Light) for Cleric (Order)
Missing baseclass Cleric (Nature) for Cleric (Order)
Missing baseclass Cleric (Arcana) for Cleric (Tempest)
Missing baseclass Cleric (Death) for Cleric (Tempest)
Missing baseclass Cleric (Forge) for Cleric (Tempest)
Missing baseclass Cleric (Grave) for Cleric (Tempest)
Missing baseclass Cleric (Knowledge) for Cleric (Tempest)
Missing baseclass Cleric (Life) for Cleric (Tempest)
Missing baseclass Cleric (Light) for Cleric (Tempest)
Missing baseclass Cleric (Nature) for Cleric (Tempest)
Missing baseclass Cleric (Order) for Cleric (Tempest)
Missing baseclass Cleric (Arcana) for Cleric (Trickery)
Missing baseclass Cleric (Death) for Cleric (Trickery)
Missing baseclass Cleric (Forge) for Cleric (Trickery)
Missing baseclass Cleric (Grave) for Cleric (Trickery)
Missing baseclass Cleric (Knowledge) for Cleric (Trickery)
Missing baseclass Cleric (Life) for Cleric (Trickery)
Missing baseclass Cleric (Light) for Cleric (Trickery)
Missing baseclass Cleric (Nature) for Cleric (Trickery)
Missing baseclass Cleric (Order) for Cleric (Trickery)
Missing baseclass Cleric (Tempest) for Cleric (Trickery)
Missing baseclass Cleric (Arcana) for Cleric (War)
Missing baseclass Cleric (Death) for Cleric (War)
Missing baseclass Cleric (Forge) for Cleric (War)
Missing baseclass Cleric (Grave) for Cleric (War)
Missing baseclass Cleric (Knowledge) for Cleric (War)
Missing baseclass Cleric (Life) for Cleric (War)
Missing baseclass Cleric (Light) for Cleric (War)
Missing baseclass Cleric (Nature) for Cleric (War)
Missing baseclass Cleric (Order) for Cleric (War)
Missing baseclass Cleric (Tempest) for Cleric (War)
Missing baseclass Cleric (Trickery) for Cleric (War)
Missing baseclass Druid (Dreams) for Druid (Land)
Missing baseclass Druid (Dreams) for Druid (Moon)
Missing baseclass Druid (Land) for Druid (Moon)
Missing baseclass Druid (Dreams) for Druid (Shepherd)
Missing baseclass Druid (Land) for Druid (Shepherd)
Missing baseclass Druid (Moon) for Druid (Shepherd)
Missing baseclass Druid (Dreams) for Druid (Spores)
Missing baseclass Druid (Land) for Druid (Spores)
Missing baseclass Druid (Moon) for Druid (Spores)
Missing baseclass Druid (Shepherd) for Druid (Spores)
Missing baseclass Fighter (Arcane Archer) for Fighter (Battle Master)
Missing baseclass Fighter (Arcane Archer) for Fighter (Cavalier)
Missing baseclass Fighter (Battle Master) for Fighter (Cavalier)
Missing baseclass Fighter (Arcane Archer) for Fighter (Champion)
Missing baseclass Fighter (Battle Master) for Fighter (Champion)
Missing baseclass Fighter (Cavalier) for Fighter (Champion)
Missing baseclass Fighter (Arcane Archer) for Fighter (Eldritch Knight)
Missing baseclass Fighter (Battle Master) for Fighter (Eldritch Knight)
Missing baseclass Fighter (Cavalier) for Fighter (Eldritch Knight)
Missing baseclass Fighter (Champion) for Fighter (Eldritch Knight)
Missing baseclass Fighter (Arcane Archer) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Battle Master) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Cavalier) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Champion) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Eldritch Knight) for Fighter (Purple Dragon Knight)
Missing baseclass Fighter (Arcane Archer) for Fighter (Samurai)
Missing baseclass Fighter (Battle Master) for Fighter (Samurai)
Missing baseclass Fighter (Cavalier) for Fighter (Samurai)
Missing baseclass Fighter (Champion) for Fighter (Samurai)
Missing baseclass Fighter (Eldritch Knight) for Fighter (Samurai)
Missing baseclass Fighter (Purple Dragon Knight) for Fighter (Samurai)
Missing baseclass Monk (Drunken Master) for Monk (Four Elements)
Missing baseclass Monk (Drunken Master) for Monk (Kensei)
Missing baseclass Monk (Four Elements) for Monk (Kensei)
Missing baseclass Monk (Drunken Master) for Monk (Long Death)
Missing baseclass Monk (Four Elements) for Monk (Long Death)
Missing baseclass Monk (Kensei) for Monk (Long Death)
Missing baseclass Monk (Drunken Master) for Monk (Open Hand)
Missing baseclass Monk (Four Elements) for Monk (Open Hand)
Missing baseclass Monk (Kensei) for Monk (Open Hand)
Missing baseclass Monk (Long Death) for Monk (Open Hand)
Missing baseclass Monk (Drunken Master) for Monk (Shadow)
Missing baseclass Monk (Four Elements) for Monk (Shadow)
Missing baseclass Monk (Kensei) for Monk (Shadow)
Missing baseclass Monk (Long Death) for Monk (Shadow)
Missing baseclass Monk (Open Hand) for Monk (Shadow)
Missing baseclass Monk (Drunken Master) for Monk (Sun Soul)
Missing baseclass Monk (Four Elements) for Monk (Sun Soul)
Missing baseclass Monk (Kensei) for Monk (Sun Soul)
Missing baseclass Monk (Long Death) for Monk (Sun Soul)
Missing baseclass Monk (Open Hand) for Monk (Sun Soul)
Missing baseclass Monk (Shadow) for Monk (Sun Soul)
Missing baseclass Paladin (Ancients) for Paladin (Conquest)
Missing baseclass Paladin (Ancients) for Paladin (Crown)
Missing baseclass Paladin (Conquest) for Paladin (Crown)
Missing baseclass Paladin (Ancients) for Paladin (Devotion)
Missing baseclass Paladin (Conquest) for Paladin (Devotion)
Missing baseclass Paladin (Crown) for Paladin (Devotion)
Missing baseclass Paladin (Ancients) for Paladin (Oathbreaker)
Missing baseclass Paladin (Conquest) for Paladin (Oathbreaker)
Missing baseclass Paladin (Crown) for Paladin (Oathbreaker)
Missing baseclass Paladin (Devotion) for Paladin (Oathbreaker)
Missing baseclass Paladin (Ancients) for Paladin (Redemption)
Missing baseclass Paladin (Conquest) for Paladin (Redemption)
Missing baseclass Paladin (Crown) for Paladin (Redemption)
Missing baseclass Paladin (Devotion) for Paladin (Redemption)
Missing baseclass Paladin (Oathbreaker) for Paladin (Redemption)
Missing baseclass Paladin (Ancients) for Paladin (Vengeance)
Missing baseclass Paladin (Conquest) for Paladin (Vengeance)
Missing baseclass Paladin (Crown) for Paladin (Vengeance)
Missing baseclass Paladin (Devotion) for Paladin (Vengeance)
Missing baseclass Paladin (Oathbreaker) for Paladin (Vengeance)
Missing baseclass Paladin (Redemption) for Paladin (Vengeance)
Missing baseclass Ranger (Beast) for Ranger (Gloom Stalker)
Missing baseclass Ranger (Beast) for Ranger (Horizon Walker)
Missing baseclass Ranger (Gloom Stalker) for Ranger (Horizon Walker)
Missing baseclass Ranger (Beast) for Ranger (Hunter)
Missing baseclass Ranger (Gloom Stalker) for Ranger (Hunter)
Missing baseclass Ranger (Horizon Walker) for Ranger (Hunter)
Missing baseclass Ranger (Beast) for Ranger (Monster Slayer)
Missing baseclass Ranger (Gloom Stalker) for Ranger (Monster Slayer)
Missing baseclass Ranger (Horizon Walker) for Ranger (Monster Slayer)
Missing baseclass Ranger (Hunter) for Ranger (Monster Slayer)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Assassin)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Inquisitive)
Missing baseclass Rogue (Assassin) for Rogue (Inquisitive)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Mastermind)
Missing baseclass Rogue (Assassin) for Rogue (Mastermind)
Missing baseclass Rogue (Inquisitive) for Rogue (Mastermind)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Scout)
Missing baseclass Rogue (Assassin) for Rogue (Scout)
Missing baseclass Rogue (Inquisitive) for Rogue (Scout)
Missing baseclass Rogue (Mastermind) for Rogue (Scout)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Swashbuckler)
Missing baseclass Rogue (Assassin) for Rogue (Swashbuckler)
Missing baseclass Rogue (Inquisitive) for Rogue (Swashbuckler)
Missing baseclass Rogue (Mastermind) for Rogue (Swashbuckler)
Missing baseclass Rogue (Scout) for Rogue (Swashbuckler)
Missing baseclass Rogue (Arcane Trickster) for Rogue (Thief)
Missing baseclass Rogue (Assassin) for Rogue (Thief)
Missing baseclass Rogue (Inquisitive) for Rogue (Thief)
Missing baseclass Rogue (Mastermind) for Rogue (Thief)
Missing baseclass Rogue (Scout) for Rogue (Thief)
Missing baseclass Rogue (Swashbuckler) for Rogue (Thief)
Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Draconic)
Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Shadow)
Missing baseclass Sorcerer (Draconic) for Sorcerer (Shadow)
Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Storm)
Missing baseclass Sorcerer (Draconic) for Sorcerer (Storm)
Missing baseclass Sorcerer (Shadow) for Sorcerer (Storm)
Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Wild)
Missing baseclass Sorcerer (Draconic) for Sorcerer (Wild)
Missing baseclass Sorcerer (Shadow) for Sorcerer (Wild)
Missing baseclass Sorcerer (Storm) for Sorcerer (Wild)
Missing baseclass Warlock (Archfey) for Warlock (Celestial)
Missing baseclass Warlock (Archfey) for Warlock (Fiend)
Missing baseclass Warlock (Celestial) for Warlock (Fiend)
Missing baseclass Warlock (Archfey) for Warlock (Great Old One)
Missing baseclass Warlock (Celestial) for Warlock (Great Old One)
Missing baseclass Warlock (Fiend) for Warlock (Great Old One)
Missing baseclass Warlock (Archfey) for Warlock (Hexblade)
Missing baseclass Warlock (Celestial) for Warlock (Hexblade)
Missing baseclass Warlock (Fiend) for Warlock (Hexblade)
Missing baseclass Warlock (Great Old One) for Warlock (Hexblade)
Missing baseclass Warlock (Archfey) for Warlock (Undying)
Missing baseclass Warlock (Celestial) for Warlock (Undying)
Missing baseclass Warlock (Fiend) for Warlock (Undying)
Missing baseclass Warlock (Great Old One) for Warlock (Undying)
Missing baseclass Warlock (Hexblade) for Warlock (Undying)
Missing baseclass Wizard (Abjuration) for Wizard (Bladesinger)
Missing baseclass Wizard (Abjuration) for Wizard (Conjuration)
Missing baseclass Wizard (Bladesinger) for Wizard (Conjuration)
Missing baseclass Wizard (Abjuration) for Wizard (Divination)
Missing baseclass Wizard (Bladesinger) for Wizard (Divination)
Missing baseclass Wizard (Conjuration) for Wizard (Divination)
Missing baseclass Wizard (Abjuration) for Wizard (Enchantment)
Missing baseclass Wizard (Bladesinger) for Wizard (Enchantment)
Missing baseclass Wizard (Conjuration) for Wizard (Enchantment)
Missing baseclass Wizard (Divination) for Wizard (Enchantment)
Missing baseclass Wizard (Abjuration) for Wizard (Evocation)
Missing baseclass Wizard (Bladesinger) for Wizard (Evocation)
Missing baseclass Wizard (Conjuration) for Wizard (Evocation)
Missing baseclass Wizard (Divination) for Wizard (Evocation)
Missing baseclass Wizard (Enchantment) for Wizard (Evocation)
Missing baseclass Wizard (Abjuration) for Wizard (Illusion)
Missing baseclass Wizard (Bladesinger) for Wizard (Illusion)
Missing baseclass Wizard (Conjuration) for Wizard (Illusion)
Missing baseclass Wizard (Divination) for Wizard (Illusion)
Missing baseclass Wizard (Enchantment) for Wizard (Illusion)
Missing baseclass Wizard (Evocation) for Wizard (Illusion)
Missing baseclass Wizard (Abjuration) for Wizard (Necromancy)
Missing baseclass Wizard (Bladesinger) for Wizard (Necromancy)
Missing baseclass Wizard (Conjuration) for Wizard (Necromancy)
Missing baseclass Wizard (Divination) for Wizard (Necromancy)
Missing baseclass Wizard (Enchantment) for Wizard (Necromancy)
Missing baseclass Wizard (Evocation) for Wizard (Necromancy)
Missing baseclass Wizard (Illusion) for Wizard (Necromancy)
Missing baseclass Wizard (Abjuration) for Wizard (Transmutation)
Missing baseclass Wizard (Bladesinger) for Wizard (Transmutation)
Missing baseclass Wizard (Conjuration) for Wizard (Transmutation)
Missing baseclass Wizard (Divination) for Wizard (Transmutation)
Missing baseclass Wizard (Enchantment) for Wizard (Transmutation)
Missing baseclass Wizard (Evocation) for Wizard (Transmutation)
Missing baseclass Wizard (Illusion) for Wizard (Transmutation)
Missing baseclass Wizard (Necromancy) for Wizard (Transmutation)
Missing baseclass Wizard (Abjuration) for Wizard (War Magic)
Missing baseclass Wizard (Bladesinger) for Wizard (War Magic)
Missing baseclass Wizard (Conjuration) for Wizard (War Magic)
Missing baseclass Wizard (Divination) for Wizard (War Magic)
Missing baseclass Wizard (Enchantment) for Wizard (War Magic)
Missing baseclass Wizard (Evocation) for Wizard (War Magic)
Missing baseclass Wizard (Illusion) for Wizard (War Magic)
Missing baseclass Wizard (Necromancy) for Wizard (War Magic)
Missing baseclass Wizard (Transmutation) for Wizard (War Magic)
Compiling to Compendiums/Spells Compendium.xml
Compiling to Compendiums/Bestiary Compendium.xml
Duplicate monster named Bard [Bestiary\Dragon Heist.xml => Bestiary\Ghosts of Saltmarsh.xml]
Duplicate monster named Githyanki Gish [Bestiary\Dungeon of the Mad Mage.xml => Bestiary\Mordenkainen's Tome of Foes.xml]
Duplicate monster named Derro [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Derro Savant [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Duergar Kavalrachni [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Duergar Soulblade [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Duergar Stone Guard [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Baphomet [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Demogorgon [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Fraz-Urb'luu [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Graz'zt [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Juiblex [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Orcus [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Yeenoghu [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Zuggtmoy [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Out of the Abyss.xml]
Duplicate monster named Air Elemental [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Air Elemental Myrmidon [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Allosaurus [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Ankylosaurus [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Ape [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Awakened Shrub [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Awakened Tree [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Axe Beak [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Azer [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Baboon [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Badger [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Bat [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Black Bear [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Blink Dog [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Blood Hawk [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Boar [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Brown Bear [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Camel [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Cat [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Cave Bear [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Constrictor Snake [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Couatl [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Crab [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Crocodile [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Deer [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Dire Wolf [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Draft Horse [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Dryad [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Dust Mephit [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Eagle [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Earth Elemental [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Earth Elemental Myrmidon [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Elephant [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Elk [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Fire Elemental [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Fire Elemental Myrmidon [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Fire Snake [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Flying Snake [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Frog [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Galeb Duhr [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Gargoyle [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Ghast [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Ghoul [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Badger [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Bat [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Boar [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Centipede [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Constrictor Snake [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Crab [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Crocodile [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Eagle [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Elk [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Fire Beetle [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Fly [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Frog [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Goat [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Hyena [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Lizard [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Octopus [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Owl [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Poisonous Snake [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Rat [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Rat (Diseased) [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Scorpion [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Sea Horse [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Shark [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Spider [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Toad [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Vulture [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Wasp [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Weasel [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Giant Wolf Spider [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Goat [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Green Hag [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Hawk [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Hunter Shark [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Hyena [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Ice Mephit [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Imp [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Invisible Stalker [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Jackal [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Killer Whale [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Lion [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Lizard [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Magma Mephit [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Magmin [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Mammoth [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Mastiff [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Mud Mephit [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Mule [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Mummy [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Octopus [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Owl [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Panther [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Pegasus [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Pixie [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Plesiosaurus [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Poisonous Snake [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Polar Bear [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Pony [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Pseudodragon [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Pteranodon [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Quasit [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Quipper [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Rat [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Raven [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Reef Shark [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Rhinoceros [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Riding Horse [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Saber-Toothed Tiger [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Salamander [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Satyr [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Scorpion [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Sea Hag [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Sea Horse [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Skeleton [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Smoke Mephit [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Spider [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Sprite [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Steam Mephit [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Stirge [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Tiger [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Triceratops [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Unicorn [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Vulture [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Warhorse [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Water Elemental [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Water Elemental Myrmidon [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Water Weird [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Weasel [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Wolf [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Xorn [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Zombie [Bestiary\Monster Manual.xml => Bestiary\Player's Handbook.xml]
Duplicate monster named Air Elemental Myrmidon [Bestiary\Player's Handbook.xml => Bestiary\Princes of the Apocalypse.xml]
Duplicate monster named Earth Elemental Myrmidon [Bestiary\Player's Handbook.xml => Bestiary\Princes of the Apocalypse.xml]
Duplicate monster named Fathomer [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Princes of the Apocalypse.xml]
Duplicate monster named Fire Elemental Myrmidon [Bestiary\Player's Handbook.xml => Bestiary\Princes of the Apocalypse.xml]
Duplicate monster named Water Elemental Myrmidon [Bestiary\Player's Handbook.xml => Bestiary\Princes of the Apocalypse.xml]
Duplicate monster named Deathlock Wight [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Tales From the Yawining Portal.xml]
Duplicate monster named Sea Lion [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Tales From the Yawining Portal.xml]
Duplicate monster named Vampiric Mist [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Tales From the Yawining Portal.xml]
Duplicate monster named Assassin Vine [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Tomb of Annihilation.xml]
Duplicate monster named Bodak [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Tomb of Annihilation.xml]
Duplicate monster named Champion [Bestiary\Dungeon of the Mad Mage.xml => Bestiary\Tomb of Annihilation.xml]
Duplicate monster named Volothamp "Volo" Geddarm [Bestiary\Dragon Heist.xml => Bestiary\Tomb of Annihilation.xml]
Duplicate monster named Tortle [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Tortle Package.xml]
Duplicate monster named Tortle Druid [Bestiary\Mordenkainen's Tome of Foes.xml => Bestiary\Tortle Package.xml]
Duplicate monster named Apprentice Wizard [Bestiary\Dragon Heist.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Archdruid [Bestiary\Dungeon of the Mad Mage.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Bard [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Bodak [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Brontosaurus [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Champion [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Deep Scion [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Deinonychus [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Dimetrodon [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Firenewt Warlock of Imix [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Firenewt Warrior [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Flail Snail [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Froghemoth [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Gazer [Bestiary\Dragon Heist.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Giant Strider [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Girallon [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Grung [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Grung Elite Warrior [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Guard Drake [Bestiary\Hoard of the Dragon Queen.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Hadrosaurus [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Kobold Inventor [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Kobold Scale Sorcerer [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Kraken Priest [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Martial Arts Adept [Bestiary\Dragon Heist.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Maw Demon [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Neothelid [Bestiary\Dungeon of the Mad Mage.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Quetzalcoatlus [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Stegosaurus [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Storm Giant Quintessent [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Swarm of Rot Grubs [Bestiary\Ghosts of Saltmarsh.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Swashbuckler [Bestiary\Dragon Heist.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Thorny [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Ulitharid [Bestiary\Dungeon of the Mad Mage.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Vegepygmy [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Vegepygmy Chief [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Duplicate monster named Velociraptor [Bestiary\Tomb of Annihilation.xml => Bestiary\Volo's Guide to Monsters.xml]
Traceback (most recent call last):
  File "create_compendiums.py", line 364, in <module>
    create_full_compendium()
  File "create_compendiums.py", line 294, in create_full_compendium
    category_paths = create_category_compendiums()
  File "create_compendiums.py", line 248, in create_category_compendiums
    XMLCombiner(filenames).combine_templates(output_path)
  File "create_compendiums.py", line 33, in __init__
    assert len(filenames) > 0, 'No filenames!'
AssertionError: No filenames!

The Class compendiums turn out empty

Cphrampus commented 4 years ago

I was not able to reproduce the issue with the compendiums being empty, even when running python 3.8.2 in command prompt on windows 10, but it is possible that it was a related issue to the windows path separator, which I believe has gotten fixed everywhere.

You can try pulling the latest on the beta branch and seeing if that update fixes the issue with the class compendiums being empty. If not, we can try to investigate the root cause further.

Kamui2040 commented 4 years ago

Ok, first question. Do I have to use any software to actually pull this source or can I just use the download option. Second when trying to clone to local using gitextensions I get this: `Cloning into 'D:\DnDAppFiles'... remote: Enumerating objects: 13, done.
remote: Counting objects: 7% (1/13)
remote: Counting objects: 15% (2/13)
remote: Counting objects: 23% (3/13)
remote: Counting objects: 30% (4/13)
remote: Counting objects: 38% (5/13)
remote: Counting objects: 46% (6/13)
remote: Counting objects: 53% (7/13)
remote: Counting objects: 61% (8/13)
remote: Counting objects: 69% (9/13)
remote: Counting objects: 76% (10/13)
remote: Counting objects: 84% (11/13)
remote: Counting objects: 92% (12/13)
remote: Counting objects: 100% (13/13)
remote: Counting objects: 100% (13/13), done.
remote: Compressing objects: 11% (1/9)
remote: Compressing objects: 22% (2/9)
remote: Compressing objects: 33% (3/9)
remote: Compressing objects: 44% (4/9)
remote: Compressing objects: 55% (5/9)
remote: Compressing objects: 66% (6/9)
remote: Compressing objects: 77% (7/9)
remote: Compressing objects: 88% (8/9)
remote: Compressing objects: 100% (9/9)
remote: Compressing objects: 100% (9/9), done.

Receiving objects: 0% (1/10048)

Receiving objects: 1% (101/10048)

Receiving objects: 2% (201/10048)

Receiving objects: 3% (302/10048)

Receiving objects: 4% (402/10048)

Receiving objects: 5% (503/10048)

Receiving objects: 6% (603/10048)

Receiving objects: 7% (704/10048)

Receiving objects: 8% (804/10048), 1.84 MiB | 3.66 MiB/s

Receiving objects: 9% (905/10048), 1.84 MiB | 3.66 MiB/s

Receiving objects: 10% (1005/10048), 1.84 MiB | 3.66 MiB/s

Receiving objects: 10% (1025/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 11% (1106/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 12% (1206/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 13% (1307/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 14% (1407/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 15% (1508/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 16% (1608/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 17% (1709/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 18% (1809/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 19% (1910/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 20% (2010/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 21% (2111/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 22% (2211/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 23% (2312/10048), 8.10 MiB | 8.09 MiB/s

Receiving objects: 24% (2412/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 25% (2512/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 26% (2613/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 27% (2713/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 28% (2814/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 29% (2914/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 30% (3015/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 31% (3115/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 32% (3216/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 33% (3316/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 34% (3417/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 35% (3517/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 36% (3618/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 37% (3718/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 38% (3819/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 39% (3919/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 40% (4020/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 41% (4120/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 42% (4221/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 43% (4321/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 44% (4422/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 45% (4522/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 46% (4623/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 47% (4723/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 48% (4824/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 49% (4924/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 50% (5024/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 51% (5125/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 52% (5225/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 53% (5326/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 54% (5426/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 55% (5527/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 56% (5627/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 57% (5728/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 58% (5828/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 59% (5929/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 60% (6029/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 61% (6130/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 62% (6230/10048), 14.47 MiB | 9.64 MiB/s

Receiving objects: 62% (6270/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 63% (6331/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 64% (6431/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 65% (6532/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 66% (6632/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 67% (6733/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 68% (6833/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 69% (6934/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 70% (7034/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 71% (7135/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 72% (7235/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 73% (7336/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 74% (7436/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 75% (7536/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 76% (7637/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 77% (7737/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 78% (7838/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 79% (7938/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 80% (8039/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 81% (8139/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 82% (8240/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 83% (8340/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 84% (8441/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 85% (8541/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 86% (8642/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 87% (8742/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 88% (8843/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 89% (8943/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 90% (9044/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 91% (9144/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 92% (9245/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 93% (9345/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 94% (9446/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 95% (9546/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 96% (9647/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 97% (9747/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 98% (9848/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 99% (9948/10048), 20.87 MiB | 10.43 MiB/s remote: Total 10048 (delta 6), reused 10 (delta 4), pack-reused 10035

Receiving objects: 100% (10048/10048), 20.87 MiB | 10.43 MiB/s

Receiving objects: 100% (10048/10048), 23.59 MiB | 10.65 MiB/s, done.

Resolving deltas: 0% (0/6993)

Resolving deltas: 1% (130/6993)

Resolving deltas: 2% (165/6993)

Resolving deltas: 3% (261/6993)

Resolving deltas: 4% (318/6993)

Resolving deltas: 5% (355/6993)

Resolving deltas: 6% (425/6993)

Resolving deltas: 7% (513/6993)

Resolving deltas: 10% (723/6993)

Resolving deltas: 13% (930/6993)

Resolving deltas: 15% (1083/6993)

Resolving deltas: 16% (1179/6993)

Resolving deltas: 17% (1191/6993)

Resolving deltas: 18% (1293/6993)

Resolving deltas: 19% (1387/6993)

Resolving deltas: 20% (1438/6993)

Resolving deltas: 21% (1469/6993)

Resolving deltas: 22% (1542/6993)

Resolving deltas: 23% (1640/6993)

Resolving deltas: 26% (1829/6993)

Resolving deltas: 27% (1904/6993)

Resolving deltas: 28% (1968/6993)

Resolving deltas: 29% (2073/6993)

Resolving deltas: 30% (2123/6993)

Resolving deltas: 31% (2174/6993)

Resolving deltas: 32% (2246/6993)

Resolving deltas: 34% (2390/6993)

Resolving deltas: 35% (2465/6993)

Resolving deltas: 36% (2584/6993)

Resolving deltas: 37% (2617/6993)

Resolving deltas: 38% (2658/6993)

Resolving deltas: 39% (2740/6993)

Resolving deltas: 40% (2802/6993)

Resolving deltas: 41% (2892/6993)

Resolving deltas: 42% (2959/6993)

Resolving deltas: 43% (3016/6993)

Resolving deltas: 44% (3080/6993)

Resolving deltas: 45% (3162/6993)

Resolving deltas: 46% (3218/6993)

Resolving deltas: 47% (3287/6993)

Resolving deltas: 48% (3359/6993)

Resolving deltas: 49% (3428/6993)

Resolving deltas: 50% (3515/6993)

Resolving deltas: 51% (3569/6993)

Resolving deltas: 52% (3639/6993)

Resolving deltas: 53% (3709/6993)

Resolving deltas: 54% (3777/6993)

Resolving deltas: 55% (3852/6993)

Resolving deltas: 56% (3918/6993)

Resolving deltas: 57% (3989/6993)

Resolving deltas: 58% (4074/6993)

Resolving deltas: 59% (4130/6993)

Resolving deltas: 60% (4197/6993)

Resolving deltas: 61% (4278/6993)

Resolving deltas: 62% (4342/6993)

Resolving deltas: 63% (4413/6993)

Resolving deltas: 64% (4535/6993)

Resolving deltas: 65% (4551/6993)

Resolving deltas: 66% (4629/6993)

Resolving deltas: 67% (4690/6993)

Resolving deltas: 68% (4760/6993)

Resolving deltas: 69% (4839/6993)

Resolving deltas: 70% (4896/6993)

Resolving deltas: 71% (4978/6993)

Resolving deltas: 72% (5054/6993)

Resolving deltas: 73% (5107/6993)

Resolving deltas: 74% (5235/6993)

Resolving deltas: 75% (5294/6993)

Resolving deltas: 76% (5360/6993)

Resolving deltas: 77% (5388/6993)

Resolving deltas: 78% (5458/6993)

Resolving deltas: 79% (5530/6993)

Resolving deltas: 80% (5639/6993)

Resolving deltas: 81% (5665/6993)

Resolving deltas: 82% (5779/6993)

Resolving deltas: 83% (5807/6993)

Resolving deltas: 84% (5883/6993)

Resolving deltas: 87% (6109/6993)

Resolving deltas: 88% (6155/6993)

Resolving deltas: 89% (6236/6993)

Resolving deltas: 90% (6314/6993)

Resolving deltas: 91% (6389/6993)

Resolving deltas: 93% (6529/6993)

Resolving deltas: 94% (6610/6993)

Resolving deltas: 95% (6682/6993)

Resolving deltas: 96% (6714/6993)

Resolving deltas: 97% (6799/6993)

Resolving deltas: 98% (6881/6993)

Resolving deltas: 99% (6932/6993)

Resolving deltas: 100% (6993/6993)

Resolving deltas: 100% (6993/6993), done. error: invalid path 'Homebrew/Backgrounds/Plane Shift: Amonkhet.xml' fatal: unable to checkout working tree warning: Clone succeeded, but checkout failed. You can inspect what was checked out with 'git status' and retry with 'git restore --source=HEAD :/' `

Cphrampus commented 4 years ago
  1. No specific tool, other than git. You will just want to make sure you checkout the beta branch, as that is where the changes for windows are: git checkout beta
  2. Well then. It seems that that is coming from having colons in the file names, which windows is, likely, not liking because it thinks it's a drive. Shouldn't be a hard fix.
Cphrampus commented 4 years ago

Per the PR just merged, this should (hopefully) be resolved now. You should be able to just switch over to the beta branch and it should be good from there. It seems like the repo got cloned fine, but it had some trouble checking out master, so I'm hoping you are able to check out beta in there. I would fetch first, just to be sure it is going to checkout the latest beta:

git fetch origin
git checkout beta
Kamui2040 commented 4 years ago

I'll try as soon as I get home. I'm using git extensions so probably there is a different method per the GUI. I wouldn't know where to input those commands 😅

Cphrampus commented 4 years ago

That's fair, the command line can be intimidating. You will likely be able to right click and select "fetch" and either right click and select "checkout" or double click the branch name, I am not sure how the tool you are using is set up.

On an unrelated note, I would recommend familiarizing yourself with at least some of the commands and be able to use them on the command line, even if you don't use it much, it is a useful skill to have, especially if you end up doing any development on servers and sometimes for jobs, plus it is a good chunk more powerful and you can write a bunch of cool scripts to do things you want (one of my favorite parts, personally). There are a bunch of great resources online if it is something you decide to pursue.

Kamui2040 commented 4 years ago

Ok so almost everything is working now, was able to pull the source and compile it but, this still happens Compiling to Compendiums\Character Compendium.xml Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Battlerager) Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Berserker) Missing baseclass Barbarian (Battlerager) for Barbarian (Berserker) Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Storm Herald) Missing baseclass Barbarian (Battlerager) for Barbarian (Storm Herald) Missing baseclass Barbarian (Berserker) for Barbarian (Storm Herald) Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Totem Warrior) Missing baseclass Barbarian (Battlerager) for Barbarian (Totem Warrior) Missing baseclass Barbarian (Berserker) for Barbarian (Totem Warrior) Missing baseclass Barbarian (Storm Herald) for Barbarian (Totem Warrior) Missing baseclass Barbarian (Ancestral Guardian) for Barbarian (Zealot) Missing baseclass Barbarian (Battlerager) for Barbarian (Zealot) Missing baseclass Barbarian (Berserker) for Barbarian (Zealot) Missing baseclass Barbarian (Storm Herald) for Barbarian (Zealot) Missing baseclass Barbarian (Totem Warrior) for Barbarian (Zealot) Missing baseclass Bard (Glamour) for Bard (Lore) Missing baseclass Bard (Glamour) for Bard (Swords) Missing baseclass Bard (Lore) for Bard (Swords) Missing baseclass Bard (Glamour) for Bard (Valor) Missing baseclass Bard (Lore) for Bard (Valor) Missing baseclass Bard (Swords) for Bard (Valor) Missing baseclass Bard (Glamour) for Bard (Whispers) Missing baseclass Bard (Lore) for Bard (Whispers) Missing baseclass Bard (Swords) for Bard (Whispers) Missing baseclass Bard (Valor) for Bard (Whispers) Missing baseclass Cleric (Arcana) for Cleric (Death) Missing baseclass Cleric (Arcana) for Cleric (Forge) Missing baseclass Cleric (Death) for Cleric (Forge) Missing baseclass Cleric (Arcana) for Cleric (Grave) Missing baseclass Cleric (Death) for Cleric (Grave) Missing baseclass Cleric (Forge) for Cleric (Grave) Missing baseclass Cleric (Arcana) for Cleric (Knowledge) Missing baseclass Cleric (Death) for Cleric (Knowledge) Missing baseclass Cleric (Forge) for Cleric (Knowledge) Missing baseclass Cleric (Grave) for Cleric (Knowledge) Missing baseclass Cleric (Arcana) for Cleric (Life) Missing baseclass Cleric (Death) for Cleric (Life) Missing baseclass Cleric (Forge) for Cleric (Life) Missing baseclass Cleric (Grave) for Cleric (Life) Missing baseclass Cleric (Knowledge) for Cleric (Life) Missing baseclass Cleric (Arcana) for Cleric (Light) Missing baseclass Cleric (Death) for Cleric (Light) Missing baseclass Cleric (Forge) for Cleric (Light) Missing baseclass Cleric (Grave) for Cleric (Light) Missing baseclass Cleric (Knowledge) for Cleric (Light) Missing baseclass Cleric (Life) for Cleric (Light) Missing baseclass Cleric (Arcana) for Cleric (Nature) Missing baseclass Cleric (Death) for Cleric (Nature) Missing baseclass Cleric (Forge) for Cleric (Nature) Missing baseclass Cleric (Grave) for Cleric (Nature) Missing baseclass Cleric (Knowledge) for Cleric (Nature) Missing baseclass Cleric (Life) for Cleric (Nature) Missing baseclass Cleric (Light) for Cleric (Nature) Missing baseclass Cleric (Arcana) for Cleric (Order) Missing baseclass Cleric (Death) for Cleric (Order) Missing baseclass Cleric (Forge) for Cleric (Order) Missing baseclass Cleric (Grave) for Cleric (Order) Missing baseclass Cleric (Knowledge) for Cleric (Order) Missing baseclass Cleric (Life) for Cleric (Order) Missing baseclass Cleric (Light) for Cleric (Order) Missing baseclass Cleric (Nature) for Cleric (Order) Missing baseclass Cleric (Arcana) for Cleric (Tempest) Missing baseclass Cleric (Death) for Cleric (Tempest) Missing baseclass Cleric (Forge) for Cleric (Tempest) Missing baseclass Cleric (Grave) for Cleric (Tempest) Missing baseclass Cleric (Knowledge) for Cleric (Tempest) Missing baseclass Cleric (Life) for Cleric (Tempest) Missing baseclass Cleric (Light) for Cleric (Tempest) Missing baseclass Cleric (Nature) for Cleric (Tempest) Missing baseclass Cleric (Order) for Cleric (Tempest) Missing baseclass Cleric (Arcana) for Cleric (Trickery) Missing baseclass Cleric (Death) for Cleric (Trickery) Missing baseclass Cleric (Forge) for Cleric (Trickery) Missing baseclass Cleric (Grave) for Cleric (Trickery) Missing baseclass Cleric (Knowledge) for Cleric (Trickery) Missing baseclass Cleric (Life) for Cleric (Trickery) Missing baseclass Cleric (Light) for Cleric (Trickery) Missing baseclass Cleric (Nature) for Cleric (Trickery) Missing baseclass Cleric (Order) for Cleric (Trickery) Missing baseclass Cleric (Tempest) for Cleric (Trickery) Missing baseclass Cleric (Arcana) for Cleric (War) Missing baseclass Cleric (Death) for Cleric (War) Missing baseclass Cleric (Forge) for Cleric (War) Missing baseclass Cleric (Grave) for Cleric (War) Missing baseclass Cleric (Knowledge) for Cleric (War) Missing baseclass Cleric (Life) for Cleric (War) Missing baseclass Cleric (Light) for Cleric (War) Missing baseclass Cleric (Nature) for Cleric (War) Missing baseclass Cleric (Order) for Cleric (War) Missing baseclass Cleric (Tempest) for Cleric (War) Missing baseclass Cleric (Trickery) for Cleric (War) Missing baseclass Druid (Dreams) for Druid (Land) Missing baseclass Druid (Dreams) for Druid (Moon) Missing baseclass Druid (Land) for Druid (Moon) Missing baseclass Druid (Dreams) for Druid (Shepherd) Missing baseclass Druid (Land) for Druid (Shepherd) Missing baseclass Druid (Moon) for Druid (Shepherd) Missing baseclass Druid (Dreams) for Druid (Spores) Missing baseclass Druid (Land) for Druid (Spores) Missing baseclass Druid (Moon) for Druid (Spores) Missing baseclass Druid (Shepherd) for Druid (Spores) Missing baseclass Fighter (Arcane Archer) for Fighter (Battle Master) Missing baseclass Fighter (Arcane Archer) for Fighter (Cavalier) Missing baseclass Fighter (Battle Master) for Fighter (Cavalier) Missing baseclass Fighter (Arcane Archer) for Fighter (Champion) Missing baseclass Fighter (Battle Master) for Fighter (Champion) Missing baseclass Fighter (Cavalier) for Fighter (Champion) Missing baseclass Fighter (Arcane Archer) for Fighter (Eldritch Knight) Missing baseclass Fighter (Battle Master) for Fighter (Eldritch Knight) Missing baseclass Fighter (Cavalier) for Fighter (Eldritch Knight) Missing baseclass Fighter (Champion) for Fighter (Eldritch Knight) Missing baseclass Fighter (Arcane Archer) for Fighter (Purple Dragon Knight) Missing baseclass Fighter (Battle Master) for Fighter (Purple Dragon Knight) Missing baseclass Fighter (Cavalier) for Fighter (Purple Dragon Knight) Missing baseclass Fighter (Champion) for Fighter (Purple Dragon Knight) Missing baseclass Fighter (Eldritch Knight) for Fighter (Purple Dragon Knight) Missing baseclass Fighter (Arcane Archer) for Fighter (Samurai) Missing baseclass Fighter (Battle Master) for Fighter (Samurai) Missing baseclass Fighter (Cavalier) for Fighter (Samurai) Missing baseclass Fighter (Champion) for Fighter (Samurai) Missing baseclass Fighter (Eldritch Knight) for Fighter (Samurai) Missing baseclass Fighter (Purple Dragon Knight) for Fighter (Samurai) Missing baseclass Monk (Drunken Master) for Monk (Four Elements) Missing baseclass Monk (Drunken Master) for Monk (Kensei) Missing baseclass Monk (Four Elements) for Monk (Kensei) Missing baseclass Monk (Drunken Master) for Monk (Long Death) Missing baseclass Monk (Four Elements) for Monk (Long Death) Missing baseclass Monk (Kensei) for Monk (Long Death) Missing baseclass Monk (Drunken Master) for Monk (Open Hand) Missing baseclass Monk (Four Elements) for Monk (Open Hand) Missing baseclass Monk (Kensei) for Monk (Open Hand) Missing baseclass Monk (Long Death) for Monk (Open Hand) Missing baseclass Monk (Drunken Master) for Monk (Shadow) Missing baseclass Monk (Four Elements) for Monk (Shadow) Missing baseclass Monk (Kensei) for Monk (Shadow) Missing baseclass Monk (Long Death) for Monk (Shadow) Missing baseclass Monk (Open Hand) for Monk (Shadow) Missing baseclass Monk (Drunken Master) for Monk (Sun Soul) Missing baseclass Monk (Four Elements) for Monk (Sun Soul) Missing baseclass Monk (Kensei) for Monk (Sun Soul) Missing baseclass Monk (Long Death) for Monk (Sun Soul) Missing baseclass Monk (Open Hand) for Monk (Sun Soul) Missing baseclass Monk (Shadow) for Monk (Sun Soul) Missing baseclass Paladin (Ancients) for Paladin (Conquest) Missing baseclass Paladin (Ancients) for Paladin (Crown) Missing baseclass Paladin (Conquest) for Paladin (Crown) Missing baseclass Paladin (Ancients) for Paladin (Devotion) Missing baseclass Paladin (Conquest) for Paladin (Devotion) Missing baseclass Paladin (Crown) for Paladin (Devotion) Missing baseclass Paladin (Ancients) for Paladin (Oathbreaker) Missing baseclass Paladin (Conquest) for Paladin (Oathbreaker) Missing baseclass Paladin (Crown) for Paladin (Oathbreaker) Missing baseclass Paladin (Devotion) for Paladin (Oathbreaker) Missing baseclass Paladin (Ancients) for Paladin (Redemption) Missing baseclass Paladin (Conquest) for Paladin (Redemption) Missing baseclass Paladin (Crown) for Paladin (Redemption) Missing baseclass Paladin (Devotion) for Paladin (Redemption) Missing baseclass Paladin (Oathbreaker) for Paladin (Redemption) Missing baseclass Paladin (Ancients) for Paladin (Vengeance) Missing baseclass Paladin (Conquest) for Paladin (Vengeance) Missing baseclass Paladin (Crown) for Paladin (Vengeance) Missing baseclass Paladin (Devotion) for Paladin (Vengeance) Missing baseclass Paladin (Oathbreaker) for Paladin (Vengeance) Missing baseclass Paladin (Redemption) for Paladin (Vengeance) Missing baseclass Ranger (Beast) for Ranger (Gloom Stalker) Missing baseclass Ranger (Beast) for Ranger (Horizon Walker) Missing baseclass Ranger (Gloom Stalker) for Ranger (Horizon Walker) Missing baseclass Ranger (Beast) for Ranger (Hunter) Missing baseclass Ranger (Gloom Stalker) for Ranger (Hunter) Missing baseclass Ranger (Horizon Walker) for Ranger (Hunter) Missing baseclass Ranger (Beast) for Ranger (Monster Slayer) Missing baseclass Ranger (Gloom Stalker) for Ranger (Monster Slayer) Missing baseclass Ranger (Horizon Walker) for Ranger (Monster Slayer) Missing baseclass Ranger (Hunter) for Ranger (Monster Slayer) Missing baseclass Rogue (Arcane Trickster) for Rogue (Assassin) Missing baseclass Rogue (Arcane Trickster) for Rogue (Inquisitive) Missing baseclass Rogue (Assassin) for Rogue (Inquisitive) Missing baseclass Rogue (Arcane Trickster) for Rogue (Mastermind) Missing baseclass Rogue (Assassin) for Rogue (Mastermind) Missing baseclass Rogue (Inquisitive) for Rogue (Mastermind) Missing baseclass Rogue (Arcane Trickster) for Rogue (Scout) Missing baseclass Rogue (Assassin) for Rogue (Scout) Missing baseclass Rogue (Inquisitive) for Rogue (Scout) Missing baseclass Rogue (Mastermind) for Rogue (Scout) Missing baseclass Rogue (Arcane Trickster) for Rogue (Swashbuckler) Missing baseclass Rogue (Assassin) for Rogue (Swashbuckler) Missing baseclass Rogue (Inquisitive) for Rogue (Swashbuckler) Missing baseclass Rogue (Mastermind) for Rogue (Swashbuckler) Missing baseclass Rogue (Scout) for Rogue (Swashbuckler) Missing baseclass Rogue (Arcane Trickster) for Rogue (Thief) Missing baseclass Rogue (Assassin) for Rogue (Thief) Missing baseclass Rogue (Inquisitive) for Rogue (Thief) Missing baseclass Rogue (Mastermind) for Rogue (Thief) Missing baseclass Rogue (Scout) for Rogue (Thief) Missing baseclass Rogue (Swashbuckler) for Rogue (Thief) Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Draconic) Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Shadow) Missing baseclass Sorcerer (Draconic) for Sorcerer (Shadow) Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Storm) Missing baseclass Sorcerer (Draconic) for Sorcerer (Storm) Missing baseclass Sorcerer (Shadow) for Sorcerer (Storm) Missing baseclass Sorcerer (Divine Soul) for Sorcerer (Wild) Missing baseclass Sorcerer (Draconic) for Sorcerer (Wild) Missing baseclass Sorcerer (Shadow) for Sorcerer (Wild) Missing baseclass Sorcerer (Storm) for Sorcerer (Wild) Missing baseclass Warlock (Archfey) for Warlock (Celestial) Missing baseclass Warlock (Archfey) for Warlock (Fiend) Missing baseclass Warlock (Celestial) for Warlock (Fiend) Missing baseclass Warlock (Archfey) for Warlock (Great Old One) Missing baseclass Warlock (Celestial) for Warlock (Great Old One) Missing baseclass Warlock (Fiend) for Warlock (Great Old One) Missing baseclass Warlock (Archfey) for Warlock (Hexblade) Missing baseclass Warlock (Celestial) for Warlock (Hexblade) Missing baseclass Warlock (Fiend) for Warlock (Hexblade) Missing baseclass Warlock (Great Old One) for Warlock (Hexblade) Missing baseclass Warlock (Archfey) for Warlock (Undying) Missing baseclass Warlock (Celestial) for Warlock (Undying) Missing baseclass Warlock (Fiend) for Warlock (Undying) Missing baseclass Warlock (Great Old One) for Warlock (Undying) Missing baseclass Warlock (Hexblade) for Warlock (Undying) Missing baseclass Wizard (Abjuration) for Wizard (Bladesinger) Missing baseclass Wizard (Abjuration) for Wizard (Conjuration) Missing baseclass Wizard (Bladesinger) for Wizard (Conjuration) Missing baseclass Wizard (Abjuration) for Wizard (Divination) Missing baseclass Wizard (Bladesinger) for Wizard (Divination) Missing baseclass Wizard (Conjuration) for Wizard (Divination) Missing baseclass Wizard (Abjuration) for Wizard (Enchantment) Missing baseclass Wizard (Bladesinger) for Wizard (Enchantment) Missing baseclass Wizard (Conjuration) for Wizard (Enchantment) Missing baseclass Wizard (Divination) for Wizard (Enchantment) Missing baseclass Wizard (Abjuration) for Wizard (Evocation) Missing baseclass Wizard (Bladesinger) for Wizard (Evocation) Missing baseclass Wizard (Conjuration) for Wizard (Evocation) Missing baseclass Wizard (Divination) for Wizard (Evocation) Missing baseclass Wizard (Enchantment) for Wizard (Evocation) Missing baseclass Wizard (Abjuration) for Wizard (Illusion) Missing baseclass Wizard (Bladesinger) for Wizard (Illusion) Missing baseclass Wizard (Conjuration) for Wizard (Illusion) Missing baseclass Wizard (Divination) for Wizard (Illusion) Missing baseclass Wizard (Enchantment) for Wizard (Illusion) Missing baseclass Wizard (Evocation) for Wizard (Illusion) Missing baseclass Wizard (Abjuration) for Wizard (Necromancy) Missing baseclass Wizard (Bladesinger) for Wizard (Necromancy) Missing baseclass Wizard (Conjuration) for Wizard (Necromancy) Missing baseclass Wizard (Divination) for Wizard (Necromancy) Missing baseclass Wizard (Enchantment) for Wizard (Necromancy) Missing baseclass Wizard (Evocation) for Wizard (Necromancy) Missing baseclass Wizard (Illusion) for Wizard (Necromancy) Missing baseclass Wizard (Abjuration) for Wizard (Transmutation) Missing baseclass Wizard (Bladesinger) for Wizard (Transmutation) Missing baseclass Wizard (Conjuration) for Wizard (Transmutation) Missing baseclass Wizard (Divination) for Wizard (Transmutation) Missing baseclass Wizard (Enchantment) for Wizard (Transmutation) Missing baseclass Wizard (Evocation) for Wizard (Transmutation) Missing baseclass Wizard (Illusion) for Wizard (Transmutation) Missing baseclass Wizard (Necromancy) for Wizard (Transmutation) Missing baseclass Wizard (Abjuration) for Wizard (War Magic) Missing baseclass Wizard (Bladesinger) for Wizard (War Magic) Missing baseclass Wizard (Conjuration) for Wizard (War Magic) Missing baseclass Wizard (Divination) for Wizard (War Magic) Missing baseclass Wizard (Enchantment) for Wizard (War Magic) Missing baseclass Wizard (Evocation) for Wizard (War Magic) Missing baseclass Wizard (Illusion) for Wizard (War Magic) Missing baseclass Wizard (Necromancy) for Wizard (War Magic) Missing baseclass Wizard (Transmutation) for Wizard (War Magic)

Kamui2040 commented 4 years ago

I used this command to compile: python create_compendiums.py --subtype-format usable --excludes UA HB MF

Cphrampus commented 4 years ago

That all seems like standard output. Because you are making each of the subclasses usable, there ends up being a lot of what you are seeing there, subclasses trying to use other subclasses, but they still get created just fine. You should be able to import the compendium and use away now

Kamui2040 commented 4 years ago

Ok, I was confused by the "errors" and not having separate .xml's for the subclasses in the compendium Folder, but upon importing the full compendium into fight club, everything looks fine at first glance. Thank you again for all your help.

Cphrampus commented 4 years ago

Ah, I can see how all that output could be confused for issues. Glad I could help you get this working.