forked from External/mage
[LCI] Implement Nicanzil, Current Conductor
This commit is contained in:
parent
fed4b0a4b5
commit
1388972d4c
5 changed files with 121 additions and 1 deletions
22
Mage/src/main/java/mage/game/events/ExploredEvent.java
Normal file
22
Mage/src/main/java/mage/game/events/ExploredEvent.java
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
package mage.game.events;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.cards.Card;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class ExploredEvent extends GameEvent {
|
||||
|
||||
private final Card card;
|
||||
|
||||
public ExploredEvent(Permanent permanent, Ability source, Card card) {
|
||||
super(EventType.EXPLORED, permanent.getId(), source, permanent.getControllerId());
|
||||
this.card = card;
|
||||
}
|
||||
|
||||
public Card getCard() {
|
||||
return card;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue