diff --git a/data/sites/earth/europe/scandinavia/sweden/gotland/torsburgen.txt b/data/sites/earth/europe/scandinavia/sweden/gotland/torsburgen.txt new file mode 100644 index 0000000000..da199693ff --- /dev/null +++ b/data/sites/earth/europe/scandinavia/sweden/gotland/torsburgen.txt @@ -0,0 +1,22 @@ +torsburgen = { + name = "Torsburgen" + map_template = gotland + geocoordinate = { 18.719208 57.411308 } + base_unit_type = unit_minor_building_site + regions = { + scandinavia + } + + history = { + 300 = { + #the enormous hill fort of Torsburgen had two phases, one dated to 300-400 AD, and the other to 800-1100 AD; Source: "Guta Saga: The History of the Gotlanders", 1999, pp. xxvii-xxviii. + owner = gotland + building_classes += guard_tower + } + + 1100 = { + owner = none + building_classes -= guard_tower + } + } +} diff --git a/scripts/settlements.lua b/scripts/settlements.lua index 6587e29210..3c51b76d84 100644 --- a/scripts/settlements.lua +++ b/scripts/settlements.lua @@ -59,7 +59,6 @@ Load("scripts/settlements_persia.lua") Load("scripts/settlements_poland.lua") Load("scripts/settlements_slovakia.lua") Load("scripts/settlements_spain.lua") -Load("scripts/settlements_sweden.lua") Load("scripts/settlements_switzerland.lua") Load("scripts/settlements_nidavellir.lua") diff --git a/scripts/settlements_sweden.lua b/scripts/settlements_sweden.lua deleted file mode 100644 index 41d4d625ef..0000000000 --- a/scripts/settlements_sweden.lua +++ /dev/null @@ -1,42 +0,0 @@ --- _________ __ __ --- / _____// |_____________ _/ |______ ____ __ __ ______ --- \_____ \\ __\_ __ \__ \\ __\__ \ / ___\| | \/ ___/ --- / \| | | | \// __ \| | / __ \_/ /_/ > | /\___ \ --- /_______ /|__| |__| (____ /__| (____ /\___ /|____//____ > --- \/ \/ \//_____/ \/ --- ______________________ ______________________ --- T H E W A R B E G I N S --- Stratagus - A free fantasy real time strategy game engine --- --- (c) Copyright 2017-2022 by Andrettin --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 2 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --- - -DefineSite("torsburgen", { - Name = "Torsburgen", - MapTemplate = "old_earth", - Position = {4265, 741}, - CulturalNames = { - "norse", "Torsburgen" - }, - HistoricalOwners = { - 300, "gotland" - }, - HistoricalBuildings = { - 300, 1100, "watch_tower" -- the enormous hill fort of Torsburgen had two phases, one dated to 300-400 AD, and the other to 800-1100 AD; Source: "Guta Saga: The History of the Gotlanders", 1999, pp. xxvii-xxviii. - }, - Regions = {"scandinavia"} -})