//Initialize/////////////////////////////
new Buckley miniBuckley;
miniBuckley.Age.Months = -6;
miniBuckley.Name = ""; //tbd
miniBuckley.Gender = ""; //tbd
miniBuckley.ArrivalDate = "09/30/2016"; //projected
//Set parent objects////////////////////////
miniBuckley.Mother = Buckley.Betsy;
Buckley.Betsy.Pregnant = true;
miniBuckley.Father = Buckley.Brian;
//conservative estimate
miniBuckley.Paternity.Probability = 0.76;
//Miscellaneous properties/////////////////////
miniBuckley.Intelligence.Projected = 94; //0-100 scale
miniBuckley.Intelligence.Current = 6;
//within acceptable parameters
miniBuckley.Attractiveness.Projected = 65;
miniBuckley.Attractiveness.Current = -8;
miniBuckley.NerdQuotient.Projected = 91;
//lives with mom, antisocial, never goes outside,
//lots of "potential"
miniBuckley.NerdQuotient.Current = 100;
//don't set, will cause integer overflow
//miniBuckley.Cost.Projected
//Activate//////////////////////////
miniBuckley.Life.Go();