====== 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 =====
{
"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
}
}
===== String Resources =====
English string resources:
Gnoll
gnoll
Russian string resources (values-ru/strings_all.xml):
Гнолл
гнолл
===== 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}}