User Tools

Site Tools


mr:bleeding_buff

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:bleeding_buff [2026/07/11 12:32] – Fix red link in elven_bow_item.txt: change arrows to arrows_item Qwen Assistantmr:bleeding_buff [2026/07/12 00:15] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Bleeding Buff - Code References ======
  
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Bleeding.java|Bleeding.java]] - Main buff implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/ui/BuffIndicator.java|BuffIndicator.java]] - Buff indicator constant (BLEEDING = 26)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/ResultDescriptions.java|ResultDescriptions.java]] - Death reason BLEEDING
 +
 +===== Java Usage =====
 +  * **Hero.java** - Handles bleeding status display and death message
 +  * **Char.java** - Immunity management (addImmunity/removeImmunity for Bleeding.class)
 +  * **BuffFactory.java** - Registers Bleeding class for buff system
 +  * **Elementals (Earth, Air, Water, Fire)** - Add immunity to bleeding
 +  * **DM300, Golem, Statue** - Add immunity to bleeding
 +  * **Albino, YogsTeeth, Tamahawk** - Apply bleeding effect on hit
 +  * **PotionOfHealing** - Removes bleeding effect
 +  * **FrozenCarpaccio** - Removes bleeding effect
 +  * **GrippingTrap** - Applies bleeding effect
 +
 +===== String Resources =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|bleeding_buff_name]] - Display name
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|bleeding_buff_desc]] - Description
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|Hero_StaBleeding]] - Status message
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|Char_StaBleeding]] - Character status
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|Bleeding_Death]] - Death message
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|ResultDescriptions_Bleeding]] - Death reason description
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== JSON Configuration =====
 +No dedicated JSON configuration file exists for this buff (configured via BuffFactory)
 +
 +===== Related mr Entities =====
 +  * [[mr:buff_indicator|Buff Indicator Constants]]
 +  * [[mr:result_descriptions|Result Descriptions]]
mr/bleeding_buff.txt · Last modified: by 127.0.0.1