Пример #1
0
        public Quest(string id, string name, string icon)
        {
            Id(id);
            this.name = name;
            Icon      = icon;

            reqs    = new ReqHolder();
            actions = new ActionHolders();
        }
Пример #2
0
 public ActionHolder()
 {
     req  = new ReqHolder();
     data = new Dictionary <string, string>();
 }
Пример #3
0
 public Spell()
 {
     action     = new ActionHolders();
     actionFail = new ActionHolders();
     reqTarget  = new ReqHolder();
 }
Пример #4
0
 public BaseData()
 {
     Sound = "click";
     Icon  = "logo";
     req   = new ReqHolder();
 }