mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[ZNR] fixed issues with Thieving Skydiver cost limitations and text (#7046)
This commit is contained in:
parent
bd5c3293d8
commit
45a2532a89
4 changed files with 28 additions and 13 deletions
|
|
@ -25,6 +25,10 @@ public interface OptionalAdditionalCost extends Cost, Copyable<OptionalAdditiona
|
|||
*/
|
||||
String getReminderText();
|
||||
|
||||
void setReminderText(String reminderText);
|
||||
|
||||
void setMinimumCost(int minimumCost);
|
||||
|
||||
/**
|
||||
* Returns a text suffix for the game log, that can be added to the cast
|
||||
* message.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
package mage.abilities.costs;
|
||||
|
||||
import mage.abilities.costs.mana.VariableManaCost;
|
||||
|
||||
/**
|
||||
* @author LevelX2
|
||||
*/
|
||||
|
|
@ -71,6 +73,20 @@ public class OptionalAdditionalCostImpl extends CostsImpl<Cost> implements Optio
|
|||
return replace;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setReminderText(String reminderText) {
|
||||
this.reminderText = reminderText;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMinimumCost(int minimumCost) {
|
||||
for (VariableCost cost : this.getVariableCosts()) {
|
||||
if (cost instanceof VariableManaCost) {
|
||||
((VariableManaCost) cost).setMinX(minimumCost);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a text suffix for the game log, that can be added to the cast
|
||||
* message.
|
||||
|
|
|
|||
|
|
@ -247,7 +247,7 @@ public class KickerAbility extends StaticAbility implements OptionalAdditionalSo
|
|||
sb.append(' ').append(remarkText);
|
||||
}
|
||||
|
||||
return sb.toString();
|
||||
return sb.toString().replace(" .",".");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue