mr:mind_vision_buff
Table of Contents
Mind Vision Buff - Code References
Java Classes
This entity is implemented in Java:
- RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/MindVision.java
// In MindVision.java public class MindVision extends FlavourBuff { public static final float DURATION = 20f; @Override public int icon() { return BuffIndicator.MIND_VISION; } @Override public void detach() { super.detach(); target.observe(); } }
JSON Configuration
This entity does not have JSON configuration files.
String Resources
<!-- English strings --> <string name="PotionOfMindVision_Apply1">You can sense enemies!</string> <string name="PotionOfMindVision_Apply2">You can sense the area!</string> <string name="MindVisionBuff_Name">Mind Vision</string> <string name="MindVisionBuff_Info">This buff allows you to sense enemies and the area around you.</string>
Lua Scripts
This entity is implemented in Java, no Lua script exists.
Related Entities
- Potion Of Mind Vision Item - Code References - Potion that applies this buff
- Candle of Mind Vision Buff - Code References - Extended version of Mind Vision buff
- Fadeleaf - Plant that can be alchemized into Potion of Mind Vision
- Dreamweed - Plant that can apply Mind Vision for 1 tick
Usage in Code
- Applied by PotionOfMindVision.java
- Applied by Dreamweed.java (1 tick)
- Extended by CandleOfMindVisionBuff.java
Buff Properties
- Type: FlavourBuff (visual/status effect only)
- Duration: 20 turns (base)
- Effect: Allows the hero to sense enemies in the area
- Icon: BuffIndicator.MIND_VISION
- Visual: Shows “Mind” and “Vision” status messages on attach
mr/mind_vision_buff.txt · Last modified: by 127.0.0.1
