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:
Jaysyn904
2023-08-22 10:00:21 -04:00
parent 3acda03f30
commit 5914ed2ab5
22853 changed files with 57524 additions and 47307 deletions

View 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;
}
}