public string GetBuffDesp(eBuffType buffType) { if (BuffDesp.ContainsKey(buffType.ToString())) { return(BuffDesp[buffType.ToString()]); } return("丢失"); }
public string CreateBuff(eBuffType typeOfBuff, int level) { string typeOfBuffPlusLv = typeOfBuff.ToString() + level; return(typeOfBuffPlusLv); }