User Tools

Site Tools


mr:guts_level

Differences

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

Link to this comparison view

mr:guts_level [2026/01/01 06:23] – Wiki documentation improvements: Fix naming conventions, add data sources, create missing pages mikemr:guts_level [2026/01/01 06:27] (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]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/levels/Level.java|Level.java]] (Parent class)
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Dungeon.json|Dungeon.json]] - Level generation configuration
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Bestiary.json|Bestiary.json]] - Monster spawning configuration for Guts levels
 +
 +===== String Resources =====
 +<code xml>
 +<string name="GutsLevel_Name">Guts</string>
 +<string name="GutsLevel_Info">A level deep in the dungeon with very dangerous monsters.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Entity Kind =====
 +  * getEntityKind(): Returns "GutsLevel" (class name)
 +
 +===== Additional Code References =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/utils/DungeonGenerator.java|DungeonGenerator.java]] - Level registration
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/levels/RegularLevel.java|RegularLevel.java]] - Base class