mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[AFR] Implemented Sylvan Shepherd
This commit is contained in:
parent
e4f74f1e6b
commit
9fef2a1692
3 changed files with 60 additions and 4 deletions
|
|
@ -1,7 +1,5 @@
|
|||
|
||||
package mage.abilities.common;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.constants.SetTargetPointer;
|
||||
|
|
@ -10,8 +8,9 @@ import mage.game.Game;
|
|||
import mage.game.events.GameEvent;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class AttacksTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
|
@ -19,6 +18,10 @@ public class AttacksTriggeredAbility extends TriggeredAbilityImpl {
|
|||
protected SetTargetPointer setTargetPointer;
|
||||
protected String text;
|
||||
|
||||
public AttacksTriggeredAbility(Effect effect) {
|
||||
this(effect, false);
|
||||
}
|
||||
|
||||
public AttacksTriggeredAbility(Effect effect, boolean optional) {
|
||||
this(effect, optional, null);
|
||||
}
|
||||
|
|
@ -75,5 +78,4 @@ public class AttacksTriggeredAbility extends TriggeredAbilityImpl {
|
|||
public AttacksTriggeredAbility copy() {
|
||||
return new AttacksTriggeredAbility(this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue