mr:wnd_priest
Table of Contents
Wnd Priest Window - Code References
Entity Information
- Entity Kind: WndPriest
- Type: window
- Namespace: rpd
- Related NPC: HealerNPC
Java Classes
- WndPriest.java - Main window implementation
- Related NPC: HealerNPC.java
Code Implementation
<code java> File: RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/windows/WndPriest.java public class WndPriest extends WndBag { public WndPriest(HealerNPC priest, Hero hero) { super(priest); Setup healing services interface
} // Provides healing services: // - Heal HP // - Cure debuffs (poison, burning, etc.) // - Remove hunger // - Identify items
}
Services Provided
- HP Healing: Restores hero's health
- Debuff Removal: Cures poison, burning, bleeding, and other negative effects
- Hunger Relief: Satisfies hunger
- Item Identification: Identifies unknown items (for a fee)
Usage in Code
- HealerNPC.java - Opens WndPriest when interacted with
- MobFactory.java - Registers HealerNPC class
String Resources
- Window Title: R.string.WndPriest_Title
- Service Options: Various strings for healing, curing, identifying
- English: strings_all.xml
- Russian: strings_all.xml (source of truth)
Related mr Entities
mr/wnd_priest.txt · Last modified: by 127.0.0.1

