I remember the mooncalf rogue having an extra tag in it. It's a very strange monster power as well, so the parser may be blowing the parse because of the tag or because of its strangeness or both. X( I've never seen a rechargeable aura as a minor action power before this monster. :p Sending you a working module would be illegal, so let me show how to fix yours since everyone who creates a module with the monster will have the same problem. This monster is a solo from Monster Vault: Threats to the Nentir Vale.
The problem is in power <id-00008> of the Mooncalf Rogue. First open the db.xml file and search on Windwrack (use a text editor or Notepad). The problems are in the <name>, <recharge>, and <keywords> elements - leave the rest the same.
You need to change the red parts above to get rid of the HTML tags and fix the blown parse. I've shown the fixed lines in blue:Code:<id-00008>
<name type="string"><P class="flavor alt"><aura align=top> <B>Windwrack</B> <x> Recharge 5-6</P></name>
<action type="string">Minor</action>
<recharge type="string"><P class="flavor alt"><aura align=top> <B>Windwrack</B> <x> Recharge 5-6</P> <P class="flavor alt"><aura align=top> <B>Windwrack</B> <x> Recharge 5-6</P></recharge>
<keywords type="string"><P class="flavor alt"><aura align=top> <B>Windwrack</B> <x> Recharge 5-6</P></keywords>
.
.
.
.
</id-00008>
Code:<id-00008>
<name type="string">Windwrack</name>
<action type="string">Minor</action>
<recharge type="string">Recharge 5-6</recharge>
<keywords type="string"></keywords>
.
.
.
.
</id-00008>

