====== Seed Item - Code References ====== ===== Java Classes ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Seed.java|Seed.java]] - Base seed class * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Firebloom.java#L42-L54|Firebloom.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Sungrass.java#L38-L49|Sungrass.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Earthroot.java#L43-L53|Earthroot.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Icecap.java#L41-L51|Icecap.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Moongrace.java#L49-L61|Moongrace.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Dreamweed.java#L31-L42|Dreamweed.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Sorrowmoss.java#L37-L47|Sorrowmoss.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Fadeleaf.java#L43-L54|Fadeleaf.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/npcs/WandMaker.java#L290-L293|WandMaker.Rotberry.Seed]] - Specific seed subclass * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/bags/SeedPouch.java|SeedPouch.java]] - Container for seeds ===== JSON Configuration ===== No specific JSON configuration files exist for individual seed types. ===== String Resources ===== Individual seeds have their own string resources: seed Firebloom Seed This seed can be planted in soil. When fresh, it glows with a warm red light. Sungrass Seed This seed can be planted in soil. When fresh, it radiates a healthy green glow. Icecap Seed This seed can be planted in soil. When fresh, it feels cold to the touch. Sorrowmoss Seed This seed can be planted in soil. When fresh, it feels rough and sharp to the touch. Dreamweed Seed This seed can be planted in soil. When fresh, it emanates a mysterious psychadelic glow. Earthroot Seed This seed can be planted in soil. When fresh, it feels quite heavy. Fadeleaf Seed This seed can be planted in soil. When fresh, it seems to fade in and out of existence. Rotberry Seed This seed can be planted in soil. When fresh, it emits a deathly glow. Moongrace Seed This seed can be planted in soil. When fresh, it shines with a soft, silver light. ===== Lua Scripts ===== This entity is implemented in Java, no Lua script exists. ===== Item Mechanics ===== * Seeds can be planted in soil tiles to grow plants * Each seed corresponds to a specific plant type * Seeds can be stored in SeedPouch containers