mr:necromancer_class
Differences
This shows you the differences between two versions of the page.
| mr:necromancer_class [2025/12/29 00:18] – Update wiki pages with verified content and references mike | mr:necromancer_class [2025/12/29 00:20] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Necromancer Class - Machine Readable Data ====== | ||
| + | This page contains raw code fragments, configuration excerpts, and string resource references for the Necromancer class. | ||
| + | |||
| + | ==== Java Implementation ==== | ||
| + | ``` | ||
| + | // HeroClass enum definition | ||
| + | public enum HeroClass implements CharModifier { | ||
| + | // ... | ||
| + | NECROMANCER(R.string.HeroClass_Necromancer, | ||
| + | // ... | ||
| + | } | ||
| + | |||
| + | // Class initialization in HeroClass.java | ||
| + | NECROMANCER: | ||
| + | return Badges.Badge.MASTERY_NECROMANCER; | ||
| + | } | ||
| + | |||
| + | NECROMANCER: | ||
| + | return StringsManager.getVars(R.array.HeroClass_NecromancerPerks); | ||
| + | } | ||
| + | ``` | ||
| + | |||
| + | ==== JSON Configuration (initHeroes.json) ==== | ||
| + | ``` | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | }, | ||
| + | " | ||
| + | { | ||
| + | " | ||
| + | " | ||
| + | } | ||
| + | ], | ||
| + | " | ||
| + | { | ||
| + | " | ||
| + | } | ||
| + | ], | ||
| + | " | ||
| + | " | ||
| + | { | ||
| + | " | ||
| + | } | ||
| + | ], | ||
| + | " | ||
| + | } | ||
| + | ``` | ||
| + | |||
| + | ==== String Resources (English) ==== | ||
| + | ``` | ||
| + | <string name=" | ||
| + | |||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | ``` | ||
| + | |||
| + | ==== String Resources (Russian) ==== | ||
| + | ``` | ||
| + | <string name=" | ||
| + | |||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | ``` | ||
| + | |||
| + | ==== Related Code Files ==== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | {{tag> mr necromancer class code }} | ||
