forked from External/mage
* Implemented Akim, the Soaring Wind, and new CreatedTokenEvent, that can be used to for TriggeredEvents. * Formatting, and added Condition to Akim triggered Ability. * Added Condition and ConditionHint to Akim.
12 lines
325 B
Java
12 lines
325 B
Java
package mage.game.events;
|
|
|
|
import mage.game.permanent.PermanentToken;
|
|
|
|
import java.util.UUID;
|
|
|
|
public class CreatedTokenEvent extends GameEvent {
|
|
|
|
public CreatedTokenEvent(UUID sourceId, PermanentToken tokenPerm) {
|
|
super(EventType.CREATED_TOKEN, tokenPerm.getId(), sourceId, tokenPerm.getControllerId());
|
|
}
|
|
}
|