User Tools

Site Tools


mr:shadows_buff

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:shadows_buff [2026/02/23 11:36] – Wiki standards compliance fixes for 5 random pages Qwen Assistantmr:shadows_buff [2026/02/23 11:41] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Shadows Buff - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Shadows.java|Shadows.java]] - Main buff implementation (extends Invisibility)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/rings/RingOfShadows.java|RingOfShadows.java]] - Ring that grants Shadows buff
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Foliage.java|Foliage.java]] - Applies Shadows buff to hero in foliage
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Hunger.java|Hunger.java]] - Hunger rate modified by Shadows buff (1.5x slower)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/buffs/BuffFactory.java|BuffFactory.java]] - Buff registration and factory
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="ShadowsBuff_Name">Shadowmelded</string>
 +<string name="ShadowsBuff_Info">It's harder to spot something among the shadows.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Implementation Details =====
 +  * Extends: Invisibility buff
 +  * Applied by: Ring of Shadows, Foliage blob
 +  * Duration: 2 seconds (prolonged while in shadows with no visible enemies)
 +  * Effect: Stealth bonus, hunger rate reduced to 1.5x slower
 +  * Detaches when: left timer expires or visible enemies > 0
 +  * Sound: Assets.SND_MELD when applied
 +
 +===== Related mr Entities =====
 +  * [[mr:invisibility_buff|Invisibility Buff]]
 +  * [[mr:ring_of_shadows_item|Ring of Shadows Item]]
  
mr/shadows_buff.txt · Last modified: by 127.0.0.1