User Tools

Site Tools


en:rpd:alchemy_mechanic

Differences

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

Link to this comparison view

en:rpd:alchemy_mechanic [2026/01/01 19:45] – namespace move Mikeen:rpd:alchemy_mechanic [2026/01/01 19:46] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Alchemy ======
  
 +Alchemy is the system for crafting items using the Cauldron in Remixed Dungeon.
 +
 +==== Description ====
 +Alchemy allows players to craft new items by combining ingredients in a cauldron with water. It provides a way to create consumables, upgrade existing items, or create entirely new items.
 +
 +==== Alchemy Locations ====
 +  * **Alchemy Potions** - Found in the Prison level and deeper areas
 +  * **Water Sources** - Used to start the alchemy process
 +  * **Ingredients** - Various items can be used as alchemical components
 +
 +==== Common Recipes ====
 +  * **Potions**: Seeds combined with water to make potions
 +  * **Upgraded Food**: Seeds combined with food items
 +  * **Special Items**: Unique combinations for rare items
 +  * **Missile Weapons**: Creating special arrows by combining items
 +
 +==== Alchemy Mechanics ====
 +  * **Water Requirement**: Most recipes require water to begin
 +  * **Ingredient Combinations**: Specific items must be combined in the right order
 +  * **Cauldron Interaction**: Items are placed in cauldron for processing
 +  * **Result Variety**: Different combinations produce different results
 +
 +==== Code References ====
 +  * Alchemy System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/levels/objects/AlchemyPot.java|AlchemyPot.java]] - How alchemy works
 +  * Recipe System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/levels/objects/AlchemyPot.java#L50-L100|Recipe implementation]] - How recipes are processed
 +  * Item Processing: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/levels/objects/AlchemyPot.java#L100-L150|Item transformation code]] - How items are transformed
 +  * Level Objects: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/levels/objects/LevelObject.java|LevelObject.java]] - How the cauldron is placed
 +  * String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|strings_all.xml]] - All alchemy-related text
 +
 +==== Alchemy Ingredients ====
 +  * **Seeds**: Used to create specific potions
 +  * **Food Items**: Can be enhanced with seeds
 +  * **Other Items**: Various combinations for unique results
 +
 +==== See Also ====
 +  * [[en:rpd:potions|Potions]]
 +  * [[en:rpd:consumables|Consumables]]
 +  * [[en:rpd:items|Items]]
 +  * [[en:rpd:seeds|Seeds]]
 +
 +{{tag> rpd mechanics alchemy crafting }}