v0.3.0: reworked wand of regrowth, some polish needed though

This commit is contained in:
Evan Debenham
2015-05-20 02:02:37 -04:00
parent 7d8ba7dd28
commit c3cba0f046
7 changed files with 289 additions and 33 deletions
@@ -0,0 +1,22 @@
package com.shatteredpixel.shatteredpixeldungeon.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
/**
* Created by debenhame on 27/04/2015.
*/
public class Bless extends FlavourBuff {
@Override
public int icon() {
//TODO: add icon
return BuffIndicator.FIRE;
}
@Override
public String toString() {
return "Blessed";
}
}