User Tools

Site Tools


mr:warrior_class

Differences

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

Link to this comparison view

mr:warrior_class [2025/12/19 00:15] – Wiki maintenance: verify pages against codebase, add missing mr: namespace pages, fix incorrect information mikemr:warrior_class [2025/12/19 00:17] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Warrior Class - Code References ======
  
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/HeroClass.java|HeroClass.java]]
 +
 +===== JSON Configuration =====
 +''<code json>''
 +{
 +  "WARRIOR": {
 +    "title": "Warrior",
 +    "desc": "The Warrior is a melee-focused class with high durability. He starts with a unique short sword (+1) that can be used to identify potions, a knuckleduster, and a mysterious Dew Vial.",
 +    "sprite": "RPD-HeroClass-Warrior.png",
 +    "startWith": [
 +      {
 +        "kind": "ShortSword",
 +        "level": 1,
 +        "identified": true
 +      },
 +      {
 +        "kind": "Knuckles",
 +        "level": 0,
 +        "identified": true
 +      },
 +      {
 +        "kind": "DewVial",
 +        "level": 0,
 +        "identified": true
 +      }
 +    ],
 +    "stats": {
 +      "STR": 10,
 +      "baseHT": 22,
 +      "baseSHLD": 3,
 +      "baseAcc": 10,
 +      "baseEvasion": 10,
 +      "baseDmg": 1,
 +      "baseDr": 0,
 +      "atkSkill": 14,
 +      "defSkill": 10,
 +      "sp": 12
 +    },
 +    "magicAffinity": "Combat"
 +  }
 +}
 +''</code>''
 +
 +===== String Resources =====
 +''<code xml>''
 +<string name="hero_name_warrior">Warrior</string>
 +<string name="Warrior_Name">warrior</string>
 +<string name="Warrior_Info">The Warrior is a melee-focused class with high durability. He starts with a unique short sword (+1) that can be used to identify potions, a knuckleduster, and a mysterious Dew Vial.</string>
 +''</code>''
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java/JSON, no Lua script exists