mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Fix Nivix Cyclops and clean up some similar cards
This commit is contained in:
parent
18db39f131
commit
3ac82adb4d
8 changed files with 48 additions and 129 deletions
|
|
@ -16,8 +16,12 @@ import mage.game.Game;
|
|||
public class CanAttackAsThoughItDidntHaveDefenderSourceEffect extends AsThoughEffectImpl {
|
||||
|
||||
public CanAttackAsThoughItDidntHaveDefenderSourceEffect(Duration duration) {
|
||||
this(duration, "{this}");
|
||||
}
|
||||
|
||||
public CanAttackAsThoughItDidntHaveDefenderSourceEffect(Duration duration, String description) {
|
||||
super(AsThoughEffectType.ATTACK, duration, Outcome.Benefit);
|
||||
staticText = "{this} can attack "
|
||||
staticText = description + " can attack "
|
||||
+ (duration == Duration.EndOfTurn ? "this turn " : "")
|
||||
+ "as though it didn't have defender";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue