User Tools

Site Tools


mr:gnoll_class

Differences

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

Link to this comparison view

mr:gnoll_class [2026/04/05 01:35] – Fix wiki compliance issues: broken links, image naming, and cross-language consistency Qwen Assistantmr:gnoll_class [2026/04/05 01:36] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Gnoll Class - Code References ======
 +
 +{{ rpd:images:gnoll_hero.png|Gnoll Class Sprite }}
 +
 +**Gnoll** is a hero class in Remixed Dungeon with unique mechanics and restrictions.
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/HeroClass.java|HeroClass.java]] - Hero class definitions
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Hero.java|Hero.java]] - Hero implementation
 +
 +===== JSON Configuration =====
 +<code json>
 +{
 +  "GNOLL": {
 +    "weapon": {
 +      "kind": "GnollTomahawk",
 +      "identified": true
 +    },
 +    "items": [
 +      {
 +        "kind": "Dart",
 +        "quantity": 8,
 +        "identified": true
 +      },
 +      {
 +        "kind": "FoodRation"
 +      },
 +      {
 +        "kind": "Gold",
 +        "quantity": 20
 +      }
 +    ],
 +    "quickslot": [
 +      {
 +        "spell": "Roar"
 +      }
 +    ],
 +    "magicAffinity": "Witchcraft",
 +    "str": 15,
 +    "hp": 5,
 +    "sp": 10
 +  }
 +}
 +</code>
 +
 +===== String Resources =====
 +English string resources:
 +<code xml>
 +<string name="TXT_CLASS_GNOLL">Gnoll</string>
 +<string name="GNOLL_NAME">gnoll</string>
 +</code>
 +
 +Russian string resources (values-ru/strings_all.xml):
 +<code xml>
 +<string name="TXT_CLASS_GNOLL">Гнолл</string>
 +<string name="GNOLL_NAME">гнолл</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:hero_class|Hero Class]]
 +  * [[mr:gnoll_tomahawk_item|Gnoll Tomahawk]]
 +  * [[mr:dart_item|Dart]]
 +  * [[mr:roar_spell|Roar Spell]]
 +  * [[mr:guardian_subclass|Guardian Subclass]]
 +  * [[mr:witch_doctor_subclass|Witch Doctor Subclass]]
 +  * [[mr:tengu_liver_item|Tengu Liver]] - Subclass selection item
 +
 +{{tag> mr class hero gnoll}}
  
mr/gnoll_class.txt · Last modified: by 127.0.0.1