Angel of Vengeance

Angel of Vengeance

870k Downloads

Astrologian card effects

opaillya opened this issue ยท 1 comments

commented

As there's no description of the Astrologian card abilities anywhere, I looked at the source code to figure out the card effects. I noticed a potential issue in that the Spire potion doesn't seem to do anything: the performEffect function is empty, and unlike balance, there don't seem to be any modifications elsewhere.
Related to this issue, I feel that it would be very helpful to have a description of the possible card effects somewhere in game, maybe some sort of easily craftable tarot deck item that serves as a quick reference manual?

commented

PotionEffect spire = player.getActivePotionEffect(AoVPotions.spire);
if (spire != null)
dodge += 10 * (spire.getAmplifier() + 1);
PotionEffect spear = player.getActivePotionEffect(AoVPotions.spear);
if (spear != null)
doublestrike += 10 * (spear.getAmplifier() + 1);
PotionEffect balance = player.getActivePotionEffect(AoVPotions.balance);
if (balance != null)
spellpower += 50 * (balance.getAmplifier() + 1);