mirror of
https://github.com/correl/mage.git
synced 2025-03-17 01:06:26 -09:00
spjspj - Implement Guardian Beast (ARN)
This commit is contained in:
parent
f46c06066a
commit
d5ab9df255
1 changed files with 3 additions and 3 deletions
|
@ -106,7 +106,7 @@ class GuardianBeastConditionalEffect extends ContinuousRuleModifyingEffectImpl {
|
||||||
|
|
||||||
public GuardianBeastConditionalEffect(UUID guardianBeastId) {
|
public GuardianBeastConditionalEffect(UUID guardianBeastId) {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Neutral);
|
super(Duration.WhileOnBattlefield, Outcome.Neutral);
|
||||||
staticText = "Non-creature artifacts you control have they can't be enchanted, they're indestructible, and other players can't gain control of them";
|
staticText = "Noncreature artifacts you control have they can't be enchanted, they're indestructible, and other players can't gain control of them";
|
||||||
this.guardianBeastId = guardianBeastId;
|
this.guardianBeastId = guardianBeastId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,7 +122,7 @@ class GuardianBeastConditionalEffect extends ContinuousRuleModifyingEffectImpl {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean checksEventType(GameEvent event, Game game) {
|
public boolean checksEventType(GameEvent event, Game game) {
|
||||||
return true || (event.getType() == EventType.TARGET || event.getType() == EventType.LOSE_CONTROL);
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue