User Tools

Site Tools


mr:speed_buff

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:speed_buff [2026/03/11 10:14] – Fix wiki standards compliance issues on 5 random pages Qwen Assistantmr:speed_buff [2026/03/11 10:17] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Speed Buff - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Speed.java|Speed.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/FlavourBuff.java|FlavourBuff.java]] (parent class)
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="Speed_Name">[Name]</string>
 +<string name="Speed_Info">[Description]</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Implementation Details =====
 +  * Extends: `FlavourBuff`
 +  * Duration constant: `DURATION = 10f` (10 seconds)
 +  * Haste multiplier: `7.27254f` (approximately 7.27x movement/attack speed)
 +  * Package: `com.watabou.pixeldungeon.actors.buffs`