mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[PIP] Implement Nuka-Nuke Launcher
This commit is contained in:
parent
774d34b429
commit
dfd09d9a78
3 changed files with 125 additions and 5 deletions
|
|
@ -10,7 +10,7 @@ import mage.game.Game;
|
|||
*/
|
||||
public abstract class DelayedTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
private final Duration duration;
|
||||
private Duration duration;
|
||||
protected boolean triggerOnlyOnce;
|
||||
|
||||
protected DelayedTriggeredAbility(Effect effect) {
|
||||
|
|
@ -44,6 +44,10 @@ public abstract class DelayedTriggeredAbility extends TriggeredAbilityImpl {
|
|||
return duration;
|
||||
}
|
||||
|
||||
public void setDuration(Duration duration) {
|
||||
this.duration = duration;
|
||||
}
|
||||
|
||||
public boolean getTriggerOnlyOnce() {
|
||||
return triggerOnlyOnce;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue