User Tools

Site Tools


mr:potion_of_might_item

Differences

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

Link to this comparison view

mr:potion_of_might_item [2026/01/04 13:51] – Update MR namespace files with comprehensive code references mikemr:potion_of_might_item [2026/01/04 14:02] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== PotionOfMight Item - Code References ======
  
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfMight.java|PotionOfMight.java]]
 +  * Related: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfStrength.java|PotionOfStrength.java]] (parent class)
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +===== String Resources (All Languages) =====
 +  * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2199-L2202|PotionOfMight_Name, PotionOfMight_Info, PotionOfMight_Apply, PotionOfMight_StaApply]]
 +  * Spanish: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-es/strings_all.xml#L2046-L2049|PotionOfMight_Name, PotionOfMight_Info, PotionOfMight_Apply, PotionOfMight_StaApply]]
 +  * Portuguese: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-pt-rBR/strings_all.xml#L2035-L2038|PotionOfMight_Name, PotionOfMight_Info, PotionOfMight_Apply, PotionOfMight_StaApply]]
 +  * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L2200-L2203|PotionOfMight_Name, PotionOfMight_Info, PotionOfMight_Apply, PotionOfMight_StaApply]]
 +  * Chinese (Simplified): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-zh-rCN/strings_all.xml#L2036-L2039|PotionOfMight_Name, PotionOfMight_Info, PotionOfMight_Apply, PotionOfMight_StaApply]]
 +  * Chinese (Traditional): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-zh-rTW/strings_all.xml#L2035-L2038|PotionOfMight_Name, PotionOfMight_Info, PotionOfMight_Apply, PotionOfMight_StaApply]]
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related Files =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/Potion.java|Potion.java]] - Base potion class
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Buff.java|Buff.java]] - Buff system (affected by potion)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Hero.java|Hero.java]] - Hero class that receives effect