diff --git a/assets/items.png b/assets/items.png index f0ff49723..de5cb4966 100644 Binary files a/assets/items.png and b/assets/items.png differ diff --git a/assets/plants.png b/assets/plants.png index 1ee5e6057..6a6774474 100644 Binary files a/assets/plants.png and b/assets/plants.png differ diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java index cd3e9e41c..3540abe44 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java @@ -250,7 +250,8 @@ public class WandOfRegrowth extends Wand { @Override public String desc() { - return ""; + return "Dewcatchers camouflage as grass to avoid attention, " + + "but their bulges of collected dew give them away."; } //seed is never dropped, only care about plant class @@ -291,7 +292,8 @@ public class WandOfRegrowth extends Wand { @Override public String desc() { - return ""; + return "Seed Pods look pretty, but the seeds they carry are actually " + + "stolen from other plants they kill with their roots."; } //seed is never dropped, only care about plant class diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/plants/Starflower.java b/src/com/shatteredpixel/shatteredpixeldungeon/plants/Starflower.java index a9dc31c39..82d20483a 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/plants/Starflower.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/plants/Starflower.java @@ -10,7 +10,9 @@ import com.watabou.utils.Random; public class Starflower extends Plant { - private static final String TXT_DESC = "TODO"; + private static final String TXT_DESC = + "An extremely rare plant, " + + "Starflower is said to grant holy power to whomever touches it."; { image = 11; @@ -24,13 +26,13 @@ public class Starflower extends Plant { if (ch != null) Buff.prolong(ch, Bless.class, 30f); if (Random.Int(5) == 0){ - Dungeon.level.drop(new Seed(), pos); + Dungeon.level.drop(new Seed(), pos).sprite.drop(); } } @Override public String desc() { - return ""; + return TXT_DESC; } public static class Seed extends Plant.Seed{ @@ -39,7 +41,7 @@ public class Starflower extends Plant { plantName = "Starflower"; name = "Seed of " + plantName; - image = ItemSpriteSheet.SEED_BLANDFRUIT; + image = ItemSpriteSheet.SEED_STARFLOWER; plantClass = Starflower.class; alchemyClass = PotionOfExperience.class; @@ -47,7 +49,7 @@ public class Starflower extends Plant { @Override public String desc() { - return ""; + return TXT_DESC; } } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java b/src/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java index 4bd5ba0c3..77f5323b7 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java @@ -198,15 +198,16 @@ public class ItemSpriteSheet { //Row Twelve: Seeds public static final int SEED_ROTBERRY = ROW12+0; public static final int SEED_FIREBLOOM = ROW12+1; - public static final int SEED_BLINDWEED = ROW12+2; - public static final int SEED_SUNGRASS = ROW12+3; - public static final int SEED_ICECAP = ROW12+4; - public static final int SEED_STORMVINE = ROW12+5; - public static final int SEED_SORROWMOSS = ROW12+6; - public static final int SEED_DREAMFOIL = ROW12+7; - public static final int SEED_EARTHROOT = ROW12+8; - public static final int SEED_FADELEAF = ROW12+9; - public static final int SEED_BLANDFRUIT = ROW12+10; + public static final int SEED_STARFLOWER = ROW12+2; + public static final int SEED_BLINDWEED = ROW12+3; + public static final int SEED_SUNGRASS = ROW12+4; + public static final int SEED_ICECAP = ROW12+5; + public static final int SEED_STORMVINE = ROW12+6; + public static final int SEED_SORROWMOSS = ROW12+7; + public static final int SEED_DREAMFOIL = ROW12+8; + public static final int SEED_EARTHROOT = ROW12+9; + public static final int SEED_FADELEAF = ROW12+10; + public static final int SEED_BLANDFRUIT = ROW12+11; //Row Thirteen: Food public static final int MEAT = ROW13+0;