I'm the person who updated and posted the five data files which gives us the additional 87 cards. If Gando has additional material to contribute to the cause, then that would be awesome. My repairs were to the data files only and do not include any coding work.
Pffffft, I'm sorry, I totally spaced out. Alright, it all makes sense now. Thanks Chris

RegenerateMe seems to be in my code also:
At the beginning of CardFactory.java:
//Check for self-regenerate ability
private final int shouldRegenerateMe(Card c)
{
ArrayList a = c.getKeyword();
for (int i = 0; i < a.size(); i++)
if (a.get(i).toString().startsWith("RegenerateMe"))
return i;
return -1;
}
Is that all of it ?
As far as
Ajani Goldmane goes, it's in the CardFactory source, so I think it just must've gotten deleted somehow in from cards.txt. Not sure why.
Speaking of Planeswalkers, I started coding
Elspeth, Knight-Errant by the way. And I'll probably make
Sarkhan Vol +
Tezzeret the Seeker sometime too.