User Tools

Site Tools


mr:chaos_staff_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:chaos_staff_item [2026/02/27 19:57] – Fix wiki standards compliance for 5 random pages Qwen Assistantmr:chaos_staff_item [2026/03/20 03:38] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Chaos Staff Item - Code References ======
 +
 +===== Java Classes =====
 +  * Main class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/chaos/ChaosStaff.java|ChaosStaff.java]] - Main chaos staff implementation, extends Wand
 +  * Chaos effects: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/chaos/ChaosCommon.java|ChaosCommon.java]] - Shared chaos effect logic
 +  * Item factory registration: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java#L322|ItemFactory.java#L322]] - Registers ChaosStaff.class
 +
 +===== JSON Configuration =====
 +This entity does not use JSON configuration. It is implemented entirely in Java code.
 +
 +===== String Resources =====
 +<code xml>
 +<string name="ChaosStaff_Name">chaos staff</string>
 +<string name="ChaosStaff_Info">Staff imbued with Power Of Chaos! What else a mage can dream or fear of?</string>
 +<string name="ChaosStaff_Gender">masculine</string>
 +</code>
 +
 +Available in multiple languages:
 +  * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|strings_all.xml]] (search for ChaosStaff_Name)
 +  * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml|values-ru/strings_all.xml]]
 +  * German: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-de/strings_all.xml|values-de/strings_all.xml]]
 +  * French: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-fr/strings_all.xml|values-fr/strings_all.xml]]
 +  * And many other languages in the respective resource files
 +
 +===== Lua Scripts =====
 +This entity is implemented entirely in Java. No Lua script exists for ChaosStaff.
 +
 +===== Implementation Details =====
 +  * **Parent Class**: Wand (com.watabou.pixeldungeon.items.wands.Wand)
 +  * **Sprite**: items/chaosStaff.png (image index 0, changes with level)
 +  * **Charge Mechanism**: Accumulates charge when owner takes damage (ownerTakesDamage method) - charge increases by 1 per damage instance
 +  * **Visual Progression**: Image changes based on level (level / 3, max 4 different images)
 +  * **Zap Effect**: Uses ChaosCommon.doChaosMark() to mark cells with chaos energy (10 + level * 10 + charge chaos points)
 +  * **Random Effects**: 10% chance to trigger one of 5 effects on zap:
 +    - Instant kill (mob.die)
 +    - Convert to pet (Mob.makePet)
 +    - Spawn duplicate (MobFactory.spawn at adjacent cell)
 +    - Teleport (WandOfTeleportation.teleport)
 +    - Heal target (PotionOfHealing.heal)
 +  * **Boss/NPC Immunity**: Random effects do not trigger on bosses or NPCs
 +
 +===== Related Files =====
 +  * Wand base class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/wands/Wand.java|Wand.java]]
 +  * Chaos Crystal fusion: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/chaos/ChaosCrystal.java#L99|ChaosCrystal.java#L99]]
 +  * Teleportation wand (used in effects): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/wands/WandOfTeleportation.java|WandOfTeleportation.java]]
 +  * Healing potion (used in effects): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfHealing.java|PotionOfHealing.java]]
 +  * Mob factory (used in duplicate effect): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/MobFactory.java|MobFactory.java]]