Exemplo n.º 1
0
    /// <summary>
    /// 获得所有星魂属性
    /// </summary>
    public AttrChangeSample[] getAttrChangesByAll()
    {
        StarSoulSample starSoulSample = getStarSoulSample();

        AttrChangeSample[] attrChangeSample = starSoulSample.getAttrChangeSample();
        return(attrChangeSample);
    }
Exemplo n.º 2
0
 /// <summary>
 /// 得到飘字
 /// </summary>
 /// <returns>The star soul dese.</returns>
 /// <param name="starSoul">Star soul.</param>
 public string getStarSoulDese(StarSoul starSoul)
 {
     if (starSoul != null)
     {
         StarSoulSample     starSoulSamle    = starSoul.getStarSoulSample();
         AttrChangeSample[] attrChangeSample = starSoulSamle.getAttrChangeSample();
         return(DescribeManagerment.getDescribe(starSoulSamle.desc, starSoul.getLevel(), attrChangeSample));
     }
     return(null);
 }