コード例 #1
0
        public string GetDescription()
        {
            string text = "<b>" + Name + "</b>\n\n";

            text += "<b>Range:</b> " + range + "\n";
            text += area.GetDescription() + "\n";
            foreach (AbilityEffect e in effects)
            {
                text += e.GetDescription() + "\n";
            }

            return(text);
        }