2009-11-14, 03:00 AM
Fiel Wrote:Credit to Chris from Kryptodev for this formula:Added under EXP Required, since I didn't know where to stick it. I realize it's not the first place you'd think to look (not even the thread, let alone the section within it) but oh well it's there.
This formula determines what level your Monsterbook is:
numCardsNeeded = (5 * desiredMBLevel) * (desiredMBLevel + 1)
So if you wanted to know how many cards you needed for level 3:
numCardsNeeded = (5 * 3) * (3 + 1)
numCardsNeeded = 15 * 4
numCardsNeeded = 60

