mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[LTC] Implement Field-Tested Frying Pan (#10721)
This commit is contained in:
parent
241226cd83
commit
04845072ea
4 changed files with 98 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ public class GainLifeControllerTriggeredAbility extends TriggeredAbilityImpl {
|
|||
setTriggerPhrase("Whenever you gain life, ");
|
||||
}
|
||||
|
||||
public GainLifeControllerTriggeredAbility(final GainLifeControllerTriggeredAbility ability) {
|
||||
private GainLifeControllerTriggeredAbility(final GainLifeControllerTriggeredAbility ability) {
|
||||
super(ability);
|
||||
this.setTargetPointer = ability.setTargetPointer;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,9 +10,14 @@ import mage.game.permanent.token.Token;
|
|||
*/
|
||||
public class CreateTokenAttachSourceEffect extends CreateTokenEffect {
|
||||
|
||||
|
||||
public CreateTokenAttachSourceEffect(Token token) {
|
||||
this(token, ", then");
|
||||
}
|
||||
|
||||
public CreateTokenAttachSourceEffect(Token token, String innerConcat) {
|
||||
super(token);
|
||||
staticText = staticText.concat(", then attach {this} to it");
|
||||
staticText = staticText.concat(innerConcat + " attach {this} to it");
|
||||
}
|
||||
|
||||
private CreateTokenAttachSourceEffect(final CreateTokenAttachSourceEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue