public void init(string _name, string _description, effect _efc, dropStatus _dropStatus, int _modifier, quizType _quizType)
 {
     eventName        = _name;
     description      = _description;
     effectEvent      = _efc;
     dropDirectStatus = _dropStatus;
     modifier         = _modifier;
     _quiz            = _quizType;
 }
 public void init(string _name, string _description, effect _efc, int _modTime, dropStatus _dropStatusModifier, int _modifier, quizType _quizType)
 {
     eventName          = _name;
     description        = _description;
     effectEvent        = _efc;
     dropStatusModifier = _dropStatusModifier;
     modifier           = _modifier;
     timeDuration       = _modTime;
     _quiz = _quizType;
 }