You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all: wonderful tool for Mage players! Makes spellcasting so much easier!
Having said that, can I suggest potential improvement for user messages when a spell is withstood? (it is a nice feature to preselect potency factor as well!)
Would it be easy to change the message and logic behind it to be more conditional e.g.
Spell factors view
if (selected potency <= withstand)
"Potency must exceed the subject's Withstand of {withstand}" //as today, red alert message
else if (selected potency > withstand)
"Subject's Withstand of {withstand} will decrease Potency to {selected potency - withstand}" //green/blue info message, as everything is ok
If (effective spell potency > 0)
"This spell is withstood. Spell potency affecting target is {effective spell potency}". //green/blue info message, as everything is ok
else if (effective spell potency <=0)
"This spell is withstood. Potency {withstand factor +1} is required to affect the target. ". //as today, red alert message
Currently it throws at user red alert messages (with correct info) regardless of what is the value of potency factor:
The text was updated successfully, but these errors were encountered:
Hi there
First of all: wonderful tool for Mage players! Makes spellcasting so much easier!
Having said that, can I suggest potential improvement for user messages when a spell is withstood? (it is a nice feature to preselect potency factor as well!)
Would it be easy to change the message and logic behind it to be more conditional e.g.
Spell factors view
if (selected potency <= withstand)
"Potency must exceed the subject's Withstand of {withstand}" //as today, red alert message
else if (selected potency > withstand)
"Subject's Withstand of {withstand} will decrease Potency to {selected potency - withstand}" //green/blue info message, as everything is ok
Summary view
effective spell potency = potency from spell factor - withstand factor
If (effective spell potency > 0)
"This spell is withstood. Spell potency affecting target is {effective spell potency}". //green/blue info message, as everything is ok
else if (effective spell potency <=0)
"This spell is withstood. Potency {withstand factor +1} is required to affect the target. ". //as today, red alert message
Currently it throws at user red alert messages (with correct info) regardless of what is the value of potency factor:
The text was updated successfully, but these errors were encountered: