User Tools

Site Tools


mr:bee_hive_mob

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:bee_hive_mob [2026/01/23 10:59] – Fix wiki pages with accurate code references mikemr:bee_hive_mob [2026/01/23 11:04] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Bee Hive Mob - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/CustomMob.java|CustomMob.java]] - Base class for JSON-defined mobs
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/mobsDesc/BeeHive.json|BeeHive.json]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/BeeHive.json|BeeHive.json]]
 +
 +===== String Resources =====
 +<code xml>
 +<string name="BeeHive_Name">BeeHive_Name</string>
 +<string name="BeeHive_Name_Objective">BeeHive_Name_Objective</string>
 +<string name="BeeHive_Desc">BeeHive_Desc</string>
 +<string name="BeeHive_Gender">BeeHive_Gender</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java with JSON configuration, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:bee_mob|Bee (Mob)]]