v0.7.0: implement icons for new potion/scroll

This commit is contained in:
Evan Debenham 2018-06-04 19:04:29 -04:00
parent 82add3fdd2
commit 212e320f45
17 changed files with 16 additions and 17 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 690 B

After

Width:  |  Height:  |  Size: 739 B

View File

@ -30,8 +30,7 @@ import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
public class PotionOfHaste extends Potion {
{
//TODO
initials = -1;
initials = 2;
}
@Override

View File

@ -35,7 +35,7 @@ import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
public class PotionOfHealing extends Potion {
{
initials = 2;
initials = 3;
bones = true;
}

View File

@ -32,7 +32,7 @@ import com.watabou.noosa.audio.Sample;
public class PotionOfInvisibility extends Potion {
{
initials = 3;
initials = 4;
}
@Override

View File

@ -36,7 +36,7 @@ import com.watabou.noosa.audio.Sample;
public class PotionOfLevitation extends Potion {
{
initials = 4;
initials = 5;
}
@Override

View File

@ -32,7 +32,7 @@ import com.watabou.utils.PathFinder;
public class PotionOfLiquidFlame extends Potion {
{
initials = 5;
initials = 6;
}
@Override

View File

@ -33,7 +33,7 @@ public class PotionOfMight extends Potion {
//TODO finish transitioning this item
{
initials = 6;
initials = 12;
image = ItemSpriteSheet.POTION_AMBER;
}

View File

@ -39,7 +39,7 @@ import com.watabou.noosa.audio.Sample;
public class ScrollOfMagicMapping extends Scroll {
{
initials = 3;
initials = 2;
}
@Override

View File

@ -37,7 +37,7 @@ public class ScrollOfMagicalInfusion extends InventoryScroll {
//TODO decide what to do with this one
{
initials = 2;
initials = 12;
mode = WndBag.Mode.ENCHANTABLE;
image = ItemSpriteSheet.SCROLL_ISAZ;
}

View File

@ -40,7 +40,7 @@ import java.util.ArrayList;
public class ScrollOfMirrorImage extends Scroll {
{
initials = 4;
initials = 3;
}
private static final int NIMAGES = 3;

View File

@ -37,7 +37,7 @@ import com.watabou.utils.Random;
public class ScrollOfPsionicBlast extends Scroll {
{
initials = 5;
initials = 4;
bones = true;
}

View File

@ -37,7 +37,7 @@ import com.watabou.noosa.audio.Sample;
public class ScrollOfRage extends Scroll {
{
initials = 6;
initials = 5;
}
@Override

View File

@ -37,7 +37,7 @@ public class ScrollOfRecharging extends Scroll {
public static final float BUFF_DURATION = 30f;
{
initials = 7;
initials = 6;
}
@Override

View File

@ -39,7 +39,7 @@ import com.watabou.noosa.audio.Sample;
public class ScrollOfRemoveCurse extends InventoryScroll {
{
initials = 8;
initials = 7;
mode = WndBag.Mode.UNIDED_OR_CURSED;
}

View File

@ -41,7 +41,7 @@ import com.watabou.utils.PathFinder;
public class ScrollOfTeleportation extends Scroll {
{
initials = 9;
initials = 7;
}
@Override

View File

@ -36,7 +36,7 @@ import com.watabou.noosa.audio.Sample;
public class ScrollOfTerror extends Scroll {
{
initials = 10;
initials = 9;
}
@Override

View File

@ -47,7 +47,7 @@ public class ScrollOfTransmutation extends InventoryScroll {
{
//TODO
initials = -1;
initials = 10;
mode = WndBag.Mode.TRANMSUTABLE;
}