correct damage amount on Frolicking Familiar

This commit is contained in:
xenohedron 2023-08-16 19:10:24 -04:00 committed by GitHub
parent 8fde855026
commit 60bdfc9f1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ public final class FrolickingFamiliar extends AdventureCard {
// Blow Off Steam
// Blow Off Steam deals 1 damage to any target.
this.getSpellCard().getSpellAbility().addEffect(new DamageTargetEffect(2));
this.getSpellCard().getSpellAbility().addEffect(new DamageTargetEffect(1));
this.getSpellCard().getSpellAbility().addTarget(new TargetAnyTarget());
}