User Tools

Site Tools


mr:azuterron_npc_mob

Differences

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

Link to this comparison view

Next revision
Previous revision
mr:azuterron_npc_mob [2025/12/22 10:56] – Fix wiki pages: correct naming, add code references, improve content, and resolve red links mikemr:azuterron_npc_mob [2026/02/02 11:48] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Azuterron Npc Mob - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/npc/AzuterronNPC.java|AzuterronNPC.java]] - Main implementation (extends Shopkeeper)
 +  * Parent class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/npcs/Shopkeeper.java|Shopkeeper.java]]
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/AzuterronNPC.json|spritesDesc/AzuterronNPC.json]] - Sprite configuration
 +
 +===== String Resources =====
 +<code xml>
 +<string name="AzuterronNPC_Name">Stranger</string>
 +<string name="AzuterronNPC_Desc">A mysterious figure shrouded by black mist.</string>
 +<string name="AzuterronNPC_Quest_Start">Huh, why... oh, you can see me, right? That means you're not one of \"them\". I see you're not fond of all these monsters either. Tell you what, if you help me with a little problem, then I'll offer my assistance. Somewhere on this level you'll find a beast of darkness, a _Treacherous Spirit_. Kill it, take its _heart_ and come back to me. And one more thing, if you're interested in purchasing my supplies, don't hesitate to ask</string>
 +<string name="AzuterronNPC_Quest_End">Excellent. Here, take this potion, surely, you will find it beneficial.</string>
 +<string name="AzuterronNPC_Quest_Reminder">Help me and I will help you.</string>
 +<string name="AzuterronNPC_Gender">masculine</string>
 +<string name="Journal_Azuterron">Stranger</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:shopkeeper_mob|Shopkeeper Mob]]
 +  * [[mr:treacherous_spirit_mob|Treacherous Spirit Mob]]