mr:rotten_meat_item
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| mr:rotten_meat_item [2026/03/21 03:26] – Wiki maintenance: Fix 3 pages from random audit Qwen Assistant | mr:rotten_meat_item [2026/03/21 03:27] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Rotten Meat Item - Code References ====== | ||
| + | |||
| + | Machine-readable reference page for the Rotten Meat item in Remixed Dungeon. | ||
| + | |||
| + | ===== Entity Information ===== | ||
| + | * **Entity Kind**: rotten_meat | ||
| + | * **Item Type**: Food (Rotten) | ||
| + | * **Tier**: Basic food item | ||
| + | * **Stackable**: | ||
| + | |||
| + | ===== Java Classes ===== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ===== Class Implementation ===== | ||
| + | <code java> | ||
| + | package com.watabou.pixeldungeon.items.food; | ||
| + | |||
| + | import com.watabou.pixeldungeon.sprites.ItemSpriteSheet; | ||
| + | |||
| + | public class RottenMeat extends RottenFood { | ||
| + | public RottenMeat() { | ||
| + | image | ||
| + | } | ||
| + | |||
| + | @Override | ||
| + | public Food purify() { | ||
| + | return new MysteryMeat(); | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ===== Key Methods ===== | ||
| + | * **purify()**: | ||
| + | * **Constructor**: | ||
| + | |||
| + | ===== Java Usage References ===== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * Line 100 - Import statement | ||
| + | * Line 260 - Registered item class: registerItemClass(RottenMeat.class) | ||
| + | |||
| + | ===== JSON Configuration ===== | ||
| + | No specific JSON configuration found for Rotten Meat item. The item is implemented entirely in Java. | ||
| + | |||
| + | ===== String Resources ===== | ||
| + | <code xml> | ||
| + | <!-- English (values/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Russian (values-ru/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | ===== Lua Scripts ===== | ||
| + | This entity is implemented in Java, no Lua script exists. | ||
| + | |||
| + | ===== Implementation Details ===== | ||
| + | * **Sprite**: [[https:// | ||
| + | * **Parent Class**: [[https:// | ||
| + | * **Purification**: | ||
| + | * **Poison Transformation**: | ||
| + | * **Function**: | ||
| + | |||
| + | ===== Related Items ===== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ===== Wiki Pages ===== | ||
| + | * [[en: | ||
| + | * [[en: | ||
| + | * [[en: | ||
| + | |||
| + | {{tag> mr items food rotten_meat reference}} | ||
mr/rotten_meat_item.txt · Last modified: by 127.0.0.1
