/// <summary> /// initialize the universe with all of the space-time locations /// </summary> private void IntializeUniverseSpaceTimeLocations() { SpaceTimeLocations.Add(new SpaceTimeLocation { Name = "TARDIS Base", SpaceTimeLocationID = 1, Description = "The Norlon Corporation's secret laboratory located deep underground, " + " beneath a nondescript 7-11 on the south-side of Toledo, OH.", Accessable = true }); SpaceTimeLocations.Add(new SpaceTimeLocation { Name = "Xantoria Market", SpaceTimeLocationID = 2, Description = "The Xantoria market, once controlled by the Thorian elite, is now an " + "open market managed by the Xantorian Commerce Coop. It is a place " + "where many races from various systems trade goods.", Accessable = true }); SpaceTimeLocations.Add(new SpaceTimeLocation { Name = "Felandrian Plains", SpaceTimeLocationID = 3, Description = "The Felandrian Plains are a common destination for tourist. " + "Located just north of the equatorial line on the planet of Corlon, they" + "provide excellent habitat for a rich ecosystem of flora and fauna.", Accessable = true }); }
/// <summary> /// initialize the universe with all of the space-time locations /// </summary> private void IntializeUniverseSpaceTimeLocations() { SpaceTimeLocations.Add(new SpaceTimeLocation { Name = "Rivendell", SpaceTimeLocationID = 1, Description = "An Elven town in the Misty Mountains on the eastern edge of Eriabor.", Accessable = true }); SpaceTimeLocations.Add(new SpaceTimeLocation { Name = "The Shire", SpaceTimeLocationID = 2, Description = "Located in the large region of Eriador and the Kingdom of Arnor, " + "the shire is inhabited by Hobbits and largely removed from the goings-on in the rest " + "of Middle-earth.", Accessable = true }); SpaceTimeLocations.Add(new SpaceTimeLocation { Name = "Moria", SpaceTimeLocationID = 3, Description = "An enormous and by then very ancient underground complex in north-western Middle-earth, " + "comprising a vast network of tunnels, chambers, mines and huge halls or mansions, that ran under, " + "and ultimately through the Misty Mountains.", Accessable = true }); SpaceTimeLocations.Add(new SpaceTimeLocation { Name = "Minas Tirath", SpaceTimeLocationID = 4, Description = "Heavily fortified capital of Gondor, this city was built " + "to guard the former capital, Osgiliath, from the attack from the west. ", Accessable = true }); }