Implemented Akim, the Soaring Wind, and new CreatedTokenEvent (#6431)

* 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.
This commit is contained in:
AsterAether 2020-04-22 04:20:11 +02:00 committed by GitHub
parent c066ad41e8
commit e1fd213e0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 193 additions and 1 deletions

View file

@ -0,0 +1,12 @@
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());
}
}