User Tools

Site Tools


mr:rotten_meat_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_meat_item [2026/01/02 00:29] – Update rotten_meat_item.txt with comprehensive code references and implementation details mikemr:rotten_meat_item [2026/01/02 00:32] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Rotten Meat Item - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/food/RottenMeat.java|RottenMeat.java]] - Main implementation class
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/food/RottenFood.java|RottenFood.java]] - Base class that RottenMeat extends
 +
 +===== JSON Configuration =====
 +No specific JSON configuration found for Rotten Meat item.
 +
 +===== String Resources =====
 +<code xml>
 +<string name="RottenMeat_Name">Rotten meat</string>
 +<string name="RottenMeat_Info">A piece of rotten meat</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Implementation Details =====
 +  * **Entity Kind**: rotten_meat (from getEntityKind() returning simple class name)
 +  * **Sprite**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/sprites/ItemSpriteSheet.java|ItemSpriteSheet.ROTTEN_MEAT]]
 +  * **Food Type**: Extends [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/food/RottenFood.java|RottenFood]], which purifies into MysteryMeat
 +  * **Function**: Alternative food source that is not harmful like regular food but provides no benefits
  
mr/rotten_meat_item.txt · Last modified: by 127.0.0.1