forked from Jaysyn/PRC8
Updated Release Archive
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
This commit is contained in:
29
nwn/nwnprc/DocGen/trunk/prc/autodoc/RaceEntry.java
Normal file
29
nwn/nwnprc/DocGen/trunk/prc/autodoc/RaceEntry.java
Normal file
@@ -0,0 +1,29 @@
|
||||
package prc.autodoc;
|
||||
|
||||
import java.util.TreeMap;
|
||||
|
||||
/**
|
||||
* Data structure for a race entry.
|
||||
*/
|
||||
public class RaceEntry extends GenericEntry {
|
||||
|
||||
/**
|
||||
* A list of masterfeat's children
|
||||
*/
|
||||
public final TreeMap<String, FeatEntry> raceFeats;
|
||||
|
||||
/**
|
||||
* The constructor.
|
||||
*
|
||||
* @param name Name of the race
|
||||
* @param text Description of the race
|
||||
* @param filePath Path where the html page for this race will be written to
|
||||
* @param entryNum racialtypes.2da index
|
||||
* @param raceFeats Racial feat list
|
||||
*/
|
||||
public RaceEntry(String name, String text, String filePath,
|
||||
int entryNum, TreeMap<String, FeatEntry> raceFeats) {
|
||||
super(name, text, null, filePath, entryNum);
|
||||
this.raceFeats = raceFeats;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user