User Tools

Site Tools


mr:barrel_level_object

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:barrel_level_object [2025/12/25 18:23] – auto lint fix Mikhaelmr:barrel_level_object [2025/12/25 18:24] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Barrel Level Object - Code References ======
  
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/levels/objects/Barrel.java|Barrel.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/levels/objects/LevelObject.java|LevelObject.java]]
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/Barrel.json|Barrel.json]] - Sprite configuration
 +
 +===== String Resources =====
 +<code xml>
 +<string name="Barrel_Name">barrel</string>
 +<string name="Barrel_Desc">Looks like a simple wooden barrel. But as you get closer to it, you can smell a faint hint of oil. The barrel seems to be fairly light, you might be able to push it.</string>
 +<string name="Barrel_Pumpkin_Name">pumpkin</string>
 +<string name="Barrel_Pumpkin_Desc">It is very strange and rather creepy to see a carved pumpkin lying on the dungeon floor. You clearly sense incoming danger from it. But you can always push it away, right?</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:level_object|Level Object]]