Fix spectacle ability to include the card effect (#10164)

This commit is contained in:
xenohedron 2023-04-20 18:26:12 -04:00 committed by GitHub
parent 1eb6645f87
commit efad55bac3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,12 +28,12 @@ public final class BodyCount extends CardImpl {
public BodyCount(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}");
// Spectacle {B}
this.addAbility(new SpectacleAbility(this, new ManaCostsImpl<>("{B}")));
// Draw a card for each creature that died under your control this turn.
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(BodyCountValue.instance));
this.getSpellAbility().addHint(hint);
// Spectacle {B}
this.addAbility(new SpectacleAbility(this, new ManaCostsImpl<>("{B}")));
}
private BodyCount(final BodyCount card) {