mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[CLB] Implemented Lulu, Loyal Hollyphant
This commit is contained in:
parent
85bf048876
commit
5496a05d60
3 changed files with 74 additions and 1 deletions
|
|
@ -16,7 +16,11 @@ public class BeginningOfEndStepTriggeredAbility extends TriggeredAbilityImpl {
|
|||
private final Condition interveningIfClauseCondition;
|
||||
|
||||
public BeginningOfEndStepTriggeredAbility(Effect effect, TargetController targetController, boolean isOptional) {
|
||||
this(Zone.BATTLEFIELD, effect, targetController, null, isOptional);
|
||||
this(effect, targetController, null, isOptional);
|
||||
}
|
||||
|
||||
public BeginningOfEndStepTriggeredAbility(Effect effect, TargetController targetController, Condition interveningIfClauseCondition, boolean isOptional) {
|
||||
this(Zone.BATTLEFIELD, effect, targetController, interveningIfClauseCondition, isOptional);
|
||||
}
|
||||
|
||||
public BeginningOfEndStepTriggeredAbility(Zone zone, Effect effect, TargetController targetController, Condition interveningIfClauseCondition, boolean isOptional) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue