mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[KHM] Implemented Littjara Mirrorlake
This commit is contained in:
parent
c3a862d336
commit
7e7078b0ae
3 changed files with 94 additions and 1 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.abilities.common;
|
||||
|
||||
import mage.abilities.ActivatedAbilityImpl;
|
||||
|
|
@ -8,6 +7,11 @@ import mage.constants.TimingRule;
|
|||
import mage.constants.Zone;
|
||||
|
||||
public class ActivateAsSorceryActivatedAbility extends ActivatedAbilityImpl {
|
||||
|
||||
public ActivateAsSorceryActivatedAbility(Effect effect, Cost cost) {
|
||||
this(Zone.BATTLEFIELD, effect, cost);
|
||||
}
|
||||
|
||||
public ActivateAsSorceryActivatedAbility(Zone zone, Effect effect, Cost cost) {
|
||||
super(zone, effect, cost);
|
||||
timing = TimingRule.SORCERY;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue