v0.3.0: added wand of transfusion

This commit is contained in:
Evan Debenham
2015-05-14 02:25:47 -04:00
parent 610cffcb9e
commit edadf3f38e
6 changed files with 257 additions and 3 deletions
@@ -28,7 +28,8 @@ public class Effects {
WOUND,
EXCLAMATION,
DEATH_RAY,
LIGHT_RAY
LIGHT_RAY,
HEALTH_RAY
};
public static Image get( Type type ) {
@@ -52,6 +53,9 @@ public class Effects {
case LIGHT_RAY:
icon.frame(icon.texture.uvRect(16, 23, 32, 31));
break;
case HEALTH_RAY:
icon.frame(icon.texture.uvRect(16, 30, 32, 38));
break;
}
return icon;
}