User Tools

Site Tools


mr:curses

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:curses [2025/12/24 17:09] – Add new mr namespace pages for chasm_level, chests, curses and debuffs mikemr:curses [2025/12/25 01:12] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Curses - Code References ======
  
 +===== Java Classes =====
 +  * Item curse system: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java|Item.java]]
 +  * Scroll of Remove Curse: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/ScrollOfRemoveCurse.java|ScrollOfRemoveCurse.java]]
 +  * Potion of Holy Water (curse detection): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfHolyWater.java|PotionOfHolyWater.java]]
 +
 +===== JSON Configuration =====
 +This entity does not use JSON configuration.
 +
 +===== String Resources =====
 +Curse-related strings:
 +  * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|strings_all.xml]]
 +  * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml|values-ru/strings_all.xml]]
 +  * And other language files as appropriate
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related Files =====
 +  * Cursed equipment behavior: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java|Item.java]]
 +  * Equipment curse effects: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Buff.java|Buff.java]]