User Tools

Site Tools


mr:rotten_pumpkin_pie_item

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:rotten_pumpkin_pie_item [2026/07/23 04:41] – Fix wiki pages: link format, naming conventions, and namespace consistency Botmr:rotten_pumpkin_pie_item [2026/07/23 04:42] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Rotten Pumpkin Pie Item - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/food/RottenPumpkinPie.java|RottenPumpkinPie.java]] - Main item class
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/food/PumpkinPie.java|PumpkinPie.java]] - Purified form (poison() morphs to RottenPumpkinPie)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/food/RottenFood.java|RottenFood.java]] - Parent class
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/food/Food.java|Food.java]] - Base food class
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java|ItemFactory.java]] - Item registration (line 25, 401)
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="RottenPumpkinPie_Name">rotten pumpkin pie</string>
 +<string name="RottenPumpkinPie_Info">No matter how good it was while fresh, there is no way it's still edible.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/scripts/ai/BlackCat.lua|BlackCat.lua]] - Black Cat AI considers RottenPumpkinPie as "disgusting" food (line 24)
 +
 +===== Implementation Details =====
 +  * **Package**: com.nyrds.pixeldungeon.items.food
 +  * **Inheritance**: RottenPumpkinPie extends RottenFood
 +  * **Image**: Uses "items/food.png" sprite sheet, image index 10
 +  * **Behavior**: Can be purified into PumpkinPie using the purify() method
 +
 +===== Related mr Entities =====
 +  * [[mr:pumpkin_pie_item|Pumpkin Pie (Item)]]
 +  * [[mr:rotten_food_item|Rotten Food (Item)]]
 +  * [[mr:food_item|Food (Item)]]
 +
 +{{tag> rpd items food rotten }}
  
mr/rotten_pumpkin_pie_item.txt · Last modified: by 127.0.0.1