Exemplo n.º 1
0
        internal static World CreateWorld()
        {
            World Skyrim = new World();

            Skyrim.AddLocation(0, 0, 5, 5, "Helgen", "Helgen is a moderately-sized community in Falkreath Hold in The Elder Scrolls V: Skyrim. " +
                               "It was one of the only heavily inhabited settlements located in Falkreath Hold, apart from the city of Falkreath itself and Half-Moon Mill. " +
                               "It is destroyed in the prologue by Alduin.");

            Skyrim.LocationAt(0, 1).AddMonster(1, 0.99);
            Skyrim.LocationAt(0, 3).AddTrader("Olaf");
            QuestFactory.GiveQuest(1, Skyrim.LocationAt(1, 0));

            return(Skyrim);
        }