Example #1
0
 //Creates a character without all the lists
 public Character(LastName LastName, string FirstName, Hair Hair, string EyesColor, Race Race, int Height,
                  TimeDate DateOfBirth, Timeline TimeLine)
 {
     this.LastName  = LastName;
     this.FirstName = FirstName;
     this.LastName.FirstNames.Add(FirstName);
     this.Hair        = Hair;
     this.EyesColor   = EyesColor;
     this.Race        = Race;
     this.Height      = Height;
     this.Birth       = DateOfBirth;
     this.TimeLine    = TimeLine;
     this.Likes       = new List <Thing>();
     this.Unlikes     = new List <Thing>();
     this.Elements    = new List <string>();
     this.Powers      = new List <Power>();
     this.Activities  = new List <Activity>();
     this.Backstory   = new List <BackStory>();
     this.Weapons     = new List <Weapon>();
     this.Alternative = null;
     this.Updated     = true;
 }
Example #2
0
 //Creates a complete character.
 public Character(LastName LastName, string FirstName, Hair Hair, string EyesColor, Race Race, int Height,
                  TimeDate DateOfBirth, Timeline Timeline, List <Thing> Likes, List <Thing> Unlikes, List <string> Elements,
                  List <Power> Powers, List <Activity> Activities, List <BackStory> Backstory, List <Weapon> Weapons,
                  Character BaseCharacter)
 {
     this.LastName    = LastName;
     this.FirstName   = FirstName;
     this.Hair        = Hair;
     this.EyesColor   = EyesColor;
     this.Race        = Race;
     this.Height      = Height;
     this.Birth       = DateOfBirth;
     this.TimeLine    = TimeLine;
     this.Likes       = Likes;
     this.Unlikes     = Unlikes;
     this.Elements    = Elements;
     this.Powers      = Powers;
     this.Activities  = Activities;
     this.Backstory   = Backstory;
     this.Weapons     = Weapons;
     this.Alternative = BaseCharacter;
     this.Updated     = true;
 }
Example #3
0
 public Timeline(string Name, TimeDate MainDate)
 {
     this.Name     = Name;
     this.MainDate = MainDate;
 }