some requested fixes

This commit is contained in:
theelk801 2024-05-25 20:54:00 -04:00
parent 3445e5ce87
commit 8e2ff2db0f
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ public final class HorridShadowspinner extends CardImpl {
this.addAbility(LifelinkAbility.getInstance());
// Whenever Horrid Shadowspinner attacks, you may draw cards equal to its power. If you do, discard that many cards.
this.addAbility(new AttacksTriggeredAbility(new HorridShadowspinnerEffect(), false));
this.addAbility(new AttacksTriggeredAbility(new HorridShadowspinnerEffect(), true));
}
private HorridShadowspinner(final HorridShadowspinner card) {

View file

@ -48,7 +48,7 @@ public final class TritonWavebreaker extends CardImpl {
// Enchanted creature gets +1/+1 and has prowess.
Ability ability = new SimpleStaticAbility(new BoostEquippedEffect(1, 1));
ability.addEffect(new GainAbilityAttachedEffect(
new ProwessAbility(), AttachmentType.EQUIPMENT
new ProwessAbility(), AttachmentType.AURA
).setText("and has prowess"));
this.addAbility(ability);
}