User Tools

Site Tools


mr:seed_item

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
mr:seed_item [2025/12/29 10:39] – Update seed_item.txt with comprehensive code references from Java seed implementations mikemr:seed_item [2025/12/29 10:43] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== 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:
 +<code xml>
 +<string name="Seed_Prototype">seed</string>
 +<string name="FirebloomSeed_Name">Firebloom Seed</string>
 +<string name="FirebloomSeed_Info">This seed can be planted in soil. When fresh, it glows with a warm red light.</string>
 +<string name="SungrassSeed_Name">Sungrass Seed</string>
 +<string name="SungrassSeed_Info">This seed can be planted in soil. When fresh, it radiates a healthy green glow.</string>
 +<string name="IcecapSeed_Name">Icecap Seed</string>
 +<string name="IcecapSeed_Info">This seed can be planted in soil. When fresh, it feels cold to the touch.</string>
 +<string name="SorrowmossSeed_Name">Sorrowmoss Seed</string>
 +<string name="SorrowmossSeed_Info">This seed can be planted in soil. When fresh, it feels rough and sharp to the touch.</string>
 +<string name="DreamweedSeed_Name">Dreamweed Seed</string>
 +<string name="DreamweedSeed_Info">This seed can be planted in soil. When fresh, it emanates a mysterious psychadelic glow.</string>
 +<string name="EarthrootSeed_Name">Earthroot Seed</string>
 +<string name="EarthrootSeed_Info">This seed can be planted in soil. When fresh, it feels quite heavy.</string>
 +<string name="FadeleafSeed_Name">Fadeleaf Seed</string>
 +<string name="FadeleafSeed_Info">This seed can be planted in soil. When fresh, it seems to fade in and out of existence.</string>
 +<string name="RotberrySeed_Name">Rotberry Seed</string>
 +<string name="RotberrySeed_Info">This seed can be planted in soil. When fresh, it emits a deathly glow.</string>
 +<string name="MoongraceSeed_Name">Moongrace Seed</string>
 +<string name="MoongraceSeed_Info">This seed can be planted in soil. When fresh, it shines with a soft, silver light.</string>
 +</code>
 +
 +===== 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
  
mr/seed_item.txt · Last modified: (external edit)