Implemented Ral, Caller of Storms

This commit is contained in:
Evan Kranzler 2018-09-07 23:26:28 -04:00
parent 87640aef51
commit fffb299581
3 changed files with 61 additions and 1 deletions

View file

@ -1,4 +1,3 @@
package mage.abilities.effects.common;
import java.util.UUID;
@ -71,6 +70,9 @@ public class DamageMultiEffect extends OneShotEffect {
if (staticText != null && !staticText.isEmpty()) {
return staticText;
}
if (amount.toString().equals("3")) {
return this.sourceName + " deals 3 damage divided as you choose among one, two, or three targets";
}
return this.sourceName + " deals " + amount.toString() + " damage divided as you choose among any number of " + mode.getTargets().get(0).getTargetName();
}