User Tools

Site Tools


mr:guts_level

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:guts_level [2026/02/28 20:51] – Wiki maintenance: Fix issues in 5 random pages Qwen Assistantmr:guts_level [2026/02/28 20:54] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Guts Level - Code References ======
  
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/levels/GutsLevel.java|GutsLevel.java]] - Main level implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/levels/RegularLevel.java|RegularLevel.java]] - Parent class
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="Guts_TileGrass">Guts grass</string>
 +<string name="Guts_TileHighGrass">Guts high grass</string>
 +<string name="Guts_TileWater">Viscous liquid</string>
 +<string name="Guts_TileDescEntrance">The stairs up lead to the previous level.</string>
 +<string name="Guts_TileDescExit">The stairs down lead to the next level.</string>
 +<string name="Guts_TileDescDeco">Bones are scattered on the floor.</string>
 +<string name="Guts_TileDescBookshelf">This is probably a library. Cursed spells are often found here.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Entity Kind =====
 +  * getEntityKind(): Returns "GutsLevel" (class name)
 +
 +===== Level Properties (from Java code) =====
 +  * **Color 1:** 0x534f3e (dark olive)
 +  * **Color 2:** 0xb9d661 (light green)
 +  * **Objects Kind:** 5
 +  * **View Distance:** 6
 +  * **Mob Count:** 12 + (Dungeon.depth % 5) + Random(4)
 +  * **Water Generation:** 45-60% coverage via Patch.generate()
 +  * **Grass Generation:** 35-55% coverage via Patch.generate()
 +  * **Music:** "ost_guts"
 +
 +===== Level Configuration Files =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Dungeon.json|Dungeon.json]] - Depths 27-30
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Dungeon_no_town.json|Dungeon_no_town.json]] - Depths 27-30
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Dungeon_debug.json|Dungeon_debug.json]] - Depths 27-30
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Bestiary.json|Bestiary.json]] - Mob spawn configuration
 +
 +===== Related mr Entities =====
 +  * [[mr:regular_level|Regular Level]]
 +  * [[mr:level|Level]]
 +
 +{{tag> mr levels }}
mr/guts_level.txt · Last modified: by 127.0.0.1