mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
Fix two cards incorrectly replacing subtypes
This commit is contained in:
parent
3a6d3df5e0
commit
b80162c779
2 changed files with 2 additions and 2 deletions
|
|
@ -45,7 +45,7 @@ public final class EzioBrashNovice extends CardImpl {
|
|||
"as long as {this} has two or more counters on it, it has first strike"
|
||||
));
|
||||
ability.addEffect(new ConditionalContinuousEffect(
|
||||
new AddCardSubTypeSourceEffect(Duration.WhileOnBattlefield, SubType.ASSASSIN),
|
||||
new AddCardSubTypeSourceEffect(Duration.WhileOnBattlefield, true, SubType.ASSASSIN),
|
||||
EzioBrashNoviceCondition.instance, "and is an Assassin in addition to its other types"
|
||||
));
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ public final class HeroOfBretagard extends CardImpl {
|
|||
"As long as {this} has ten or more counters on it, it has indestructible"
|
||||
));
|
||||
tenCountersAbility.addEffect(new ConditionalContinuousEffect(
|
||||
new AddCardSubTypeSourceEffect(Duration.WhileOnBattlefield, SubType.GOD),
|
||||
new AddCardSubTypeSourceEffect(Duration.WhileOnBattlefield, true, SubType.GOD),
|
||||
TEN_OR_MORE_COUNTERS,
|
||||
"and is a God in addition to its other types"
|
||||
));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue