mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Terastodon - Fixed that destroying Parallel Lives still doubled the tokens (fixes #3651).
This commit is contained in:
parent
5cebe20768
commit
87c70043f7
1 changed files with 2 additions and 1 deletions
|
@ -60,7 +60,7 @@ public class Terastodon extends CardImpl {
|
|||
}
|
||||
|
||||
public Terastodon(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{6}{G}{G}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{6}{G}{G}");
|
||||
this.subtype.add("Elephant");
|
||||
|
||||
this.power = new MageInt(9);
|
||||
|
@ -112,6 +112,7 @@ class TerastodonEffect extends OneShotEffect {
|
|||
}
|
||||
}
|
||||
}
|
||||
game.applyEffects();
|
||||
ElephantToken elephantToken = new ElephantToken();
|
||||
for (Entry<UUID, Integer> entry : destroyedPermanents.entrySet()) {
|
||||
elephantToken.putOntoBattlefield(entry.getValue(), game, source.getSourceId(), entry.getKey());
|
||||
|
|
Loading…
Reference in a new issue