forked from External/mage
Improved and fixed cards texts:
* fixed wrong texts for draw card abilities; * added multi-effects text generation instead copy-paste (concatBy).
This commit is contained in:
parent
83cf370cc6
commit
f6585ef734
23 changed files with 144 additions and 140 deletions
|
|
@ -1,8 +1,5 @@
|
|||
|
||||
package mage.abilities.effects;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.Mode;
|
||||
import mage.constants.EffectType;
|
||||
|
|
@ -10,8 +7,10 @@ import mage.constants.Outcome;
|
|||
import mage.game.Game;
|
||||
import mage.target.targetpointer.TargetPointer;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public interface Effect extends Serializable {
|
||||
|
|
@ -64,4 +63,7 @@ public interface Effect extends Serializable {
|
|||
|
||||
Effect copy();
|
||||
|
||||
Effect concatBy(String concatPrefix);
|
||||
|
||||
String getConcatPrefix();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue