Beispiel #1
0
        public string FullDesc(Descriptions Desc)
        {
            string description = Name + " \n";

            foreach (KeyValuePair <string, int> a in bodyparts)
            {
                description += "You have a " + Desc.GetDescriptor(a.Key, a.Value) + "\n";
            }
            return(description);
        }
Beispiel #2
0
 public string SingleDesc(Descriptions Desc, string bodypart)
 {
     return(Desc.GetDescriptor(bodypart, bodyparts[bodypart]));
 }