근데 이럴 해시테이블 쓰는거 맞아....?


///해시테이블서 각 이름들과 명칭을 가져온다.
    ///
    /// 지역, 캐릭터 이름, 캐릭터 설명, 캐릭터 스킬 이름, 캐릭터 설명, 적 이름
    public Hashtable areaName = new Hashtable();
    public Hashtable chaName = new Hashtable();
    public Hashtable chaExplanation = new Hashtable();
    public Hashtable chaSkiName = new Hashtable();
    public Hashtable chaSkiExplanation = new Hashtable();
    public Hashtable enemyName = new Hashtable();
    //장비 이름, 타입, 설명
    public Hashtable equipName = new Hashtable();
    public Hashtable equipType = new Hashtable();
    public Hashtable equipExplanation = new Hashtable();
    //잡화 이름, 타입, 설명
    public Hashtable conName = new Hashtable();
    public Hashtable conType = new Hashtable();
    public Hashtable conExplanation = new Hashtable();
    //이펙트 이름, 타입, 설명
    public Hashtable effName = new Hashtable();
    public Hashtable effType = new Hashtable();
    public Hashtable effExplanation = new Hashtable();
    //퀘스트 이름, 설명
    public Hashtable questName = new Hashtable();
    public Hashtable questExplanation = new Hashtable();
    //스토리 대사
    public Hashtable speechName = new Hashtable();
    //던전 이름, 설명
    public Hashtable dungeonName = new Hashtable();
    public Hashtable dungeonExplanation = new Hashtable();