User Tools

Site Tools


mr: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:pumpkin_pie_item [2026/02/27 04:12] – Wiki maintenance: Fix 5 random pages for standards compliance Qwen Assistantmr:pumpkin_pie_item [2026/02/27 04:16] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Pumpkin Pie Item - Code References ======
 +
 +===== Java Classes =====
 +  * **Implementation:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/food/PumpkinPie.java|PumpkinPie.java]]
 +  * **Inheritance:** Extends [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/food/Food.java|Food]]
 +  * **Item Registration:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java#L399|ItemFactory.java#L399]] - registers PumpkinPie class
 +  * **Related Class:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/food/RottenPumpkinPie.java|RottenPumpkinPie.java]] - rotten variant
 +
 +===== JSON Configuration =====
 +This item is implemented purely in Java, no JSON configuration found.
 +
 +===== String Resources =====
 +<code xml>
 +<string name="PumpkinPie_Name">pumpkin pie</string>
 +<string name="PumpkinPie_Info">A delicious pumpkin pie, just like your mom used to bake.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists.
 +
 +===== Additional References =====
 +  * **Used by NPC:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/npc/ScarecrowNPC.java#L44|ScarecrowNPC.java#L44]] - gives PumpkinPie as reward
 +  * **Treasury Configs:**
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/TownShopTreasury.json#L8|TownShopTreasury.json#L8]]
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Treasury.json#L38|Treasury.json#L38]]
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/SpidersTreasury.json#L38|SpidersTreasury.json#L38]]
 +
 +===== Entity Kind =====
 +  * **getEntityKind():** Returns `"PumpkinPie"` (class simple name)
 +  * **Item Category:** Food
 +  * **Item Tier:** Standard food item
  
mr/pumpkin_pie_item.txt · Last modified: by 127.0.0.1