User Tools

Site Tools


mr:potion_of_healing_item

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mr:potion_of_healing_item [2026/01/06 23:01] – Fix wiki pages: remove missing images and update links to follow naming conventions mikemr:potion_of_healing_item [2026/01/06 23:05] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Potion Of Healing - Code References ======
  
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfHealing.java|PotionOfHealing.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/Potion.java|Potion.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java|Item.java]]
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="PotionOfHealing_Name">Potion of Healing</string>
 +<string name="PotionOfHealing_Info">An elixir that will instantly return you to full health and cure poison.</string>
 +<string name="PotionOfHealing_Apply">Your wounds heal completely.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:potion_item|Potion (Item)]]
 +  * [[mr:item|Item]]
 +  * [[mr:health_arrow_item|Health Arrow]]