add Tide Counter

master
ShawnieBoy 2014-09-04 00:36:45 +01:00
parent 037e978e2a
commit b3bd289821
3 changed files with 5 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 828 B

View File

@ -156,6 +156,7 @@ public class IconImages {
public static final ImageIcon WISHCOUNTER=loadIcon("wish-counter.png");
public static final ImageIcon SHELLCOUNTER=loadIcon("shell-counter.png");
public static final ImageIcon BLAZECOUNTER=loadIcon("blaze-counter.png");
public static final ImageIcon TIDECOUNTER=loadIcon("tide-counter.png");
public static final ImageIcon ANY_MANA=loadIcon("anymana.gif");
public static final ImageIcon TAPPED=loadSymbolIcon(50, false);

View File

@ -297,6 +297,10 @@ public class ImageDrawingUtils {
g.drawImage(IconImages.BLAZECOUNTER.getImage(),ax,ay,observer);
if (amount > 1){drawStringWithOutline(g, str, ax+6, ay+14, observer);}
ax+=inc;
} else if (counterType == MagicCounterType.Tide) {
g.drawImage(IconImages.TIDECOUNTER.getImage(),ax,ay,observer);
if (amount > 1){drawStringWithOutline(g, str, ax+6, ay+14, observer);}
ax+=inc;
}
}
}