* Rapid Hybridization -Fixed the missing "can't regnerate" option.

This commit is contained in:
LevelX2 2014-06-26 16:59:05 +02:00
parent d951d620d0
commit b0a822184b

View file

@ -57,7 +57,7 @@ public class RapidHybridization extends CardImpl {
// Destroy target creature. It can't be regenerated. That creature's controller puts a 3/3 green Frog Lizard creature token onto the battlefield.
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addEffect(new DestroyTargetEffect());
this.getSpellAbility().addEffect(new DestroyTargetEffect(true));
this.getSpellAbility().addEffect(new RapidHybridizationEffect());
}