====== Consumables ====== Consumables are items that provide effects and are used up when used in Remixed Dungeon. ==== Description ==== Consumables are single-use items that provide various beneficial or harmful effects when used. They include potions, scrolls, food, and other expendable items that support the hero in various ways. ==== Categories ==== * **Potions** - Liquid items with various effects when consumed or thrown * **Scrolls** - Magic inscriptions that activate effects when read * **Food** - Items that restore hunger status and provide health * **Runestones** - Magical stones with various effects * **Other Consumables** - Special one-time use items ==== Common Mechanics ==== * **Single Use**: Most consumables are destroyed after use * **Inventory Management**: Important to carry the right types for different situations * **Identification**: Many consumables require use to be identified * **Strategic Use**: Choosing when to use consumables is key to survival ==== Code References ==== * Item System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java|Item.java]] - Base item mechanics * Inventory System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Belongings.java|Belongings.java]] - How items are stored * Usage System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java#L100-L120|Use mechanics]] - How items are used * Category System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/Treasury.java|Treasury.java]] - How items are categorized * String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|strings_all.xml]] - All consumable names and descriptions ==== Related Pages ==== * [[en:rpd:potions|Potions]] * [[en:rpd:scrolls|Scrolls]] * [[en:rpd:food|Food]] * [[en:rpd:wands|Wands]] * [[en:rpd:items|Items]] {{tag> rpd items consumables }}