mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
[MIR] Implement Torrent of Lava (#11664)
* [MIR] Implement Torrent of Lava * Show id of the ToL on the stack in the gained ability text
This commit is contained in:
parent
50d44c5f24
commit
39fee40e5f
3 changed files with 140 additions and 1 deletions
|
|
@ -111,7 +111,11 @@ public final class GameLog {
|
|||
}
|
||||
|
||||
public static String getColoredObjectIdNameForTooltip(MageObject mageObject) {
|
||||
return "<font color='" + getTooltipColorName(mageObject.getColor(null)) + "'>" + mageObject.getIdName() + "</font>";
|
||||
return getColoredObjectIdNameForTooltip(mageObject.getColor(null), mageObject.getIdName());
|
||||
}
|
||||
|
||||
public static String getColoredObjectIdNameForTooltip(ObjectColor color, String idName) {
|
||||
return "<font color='" + getTooltipColorName(color) + "'>" + idName + "</font>";
|
||||
}
|
||||
|
||||
public static String getNeutralColoredText(String text) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue