v0.2.2: added descriptions and placeholder sprites for new plants

This commit is contained in:
Evan Debenham
2014-10-26 01:03:00 -04:00
parent d5f84814f2
commit 8d00feb289
5 changed files with 17 additions and 14 deletions
@@ -27,10 +27,11 @@ import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Dreamfoil extends Plant {
private static final String TXT_DESC =
"DESC HERE";
"The Dreamfoil's prickly flowers contain a toxin " +
"which renders most weaker beings unconscious.";
{
image = 3;
image = 10;
plantName = "Dreamfoil";
}
@@ -41,7 +42,6 @@ public class Dreamfoil extends Plant {
if (ch != null) {
if (ch instanceof Mob)
Buff.affect(ch, MagicalSleep.class);
//GameScene.add(Blob.seed(pos, 300 + 20 * Dungeon.depth, ConfusionGas.class));
}
}
@@ -55,7 +55,7 @@ public class Dreamfoil extends Plant {
plantName = "Dreamfoil";
name = "seed of " + plantName;
image = ItemSpriteSheet.SEED_SORROWMOSS;
image = ItemSpriteSheet.SEED_DREAMFOIL;
plantClass = Dreamfoil.class;
alchemyClass = PotionOfPurity.class;
@@ -13,11 +13,13 @@ import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
* Created by Evan on 23/10/2014.
*/
public class Stormvine extends Plant {
private static final String TXT_DESC =
"DESC HERE";
"Stormvine is an unusual sort fo vine which 'hangs' on the air. " +
"Gravity affects it strangely, and anything caught in the vine is confused as a result.";
{
image = 3;
image = 9;
plantName = "Stormvine";
}
@@ -37,10 +39,10 @@ public class Stormvine extends Plant {
public static class Seed extends Plant.Seed {
{
plantName = "Dreamfoil";
plantName = "Stormvine";
name = "seed of " + plantName;
image = ItemSpriteSheet.SEED_ICECAP;
image = ItemSpriteSheet.SEED_STORMVINE;
plantClass = Stormvine.class;
alchemyClass = PotionOfLevitation.class;