fix card type on [SWS] Force Drain (#12306)

This commit is contained in:
gravitybone 2024-05-27 02:00:46 +02:00 committed by GitHub
parent e402f41e80
commit 8dfafad95c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,7 +20,7 @@ import java.util.UUID;
public final class ForceDrain extends CardImpl {
public ForceDrain(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{B}");
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}");
// ForceDrain deals 2 damage to any target. If player was dealt damage this way, you gain 2 life.
this.getSpellAbility().addTarget(new TargetAnyTarget());