Skip to content

Commit

Permalink
Fix to the Northwards to the Sea quest
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrettin committed Sep 7, 2017
1 parent 4df294c commit 99ce6a9
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 14 deletions.
1 change: 1 addition & 0 deletions maps/earth/jutland.sms
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ SetUnitVariable(unit, "Active", false)
unit = CreateUnit("unit-germanic-warrior", 1, {27, 44})
SetUnitVariable(unit, "Active", false)

unit = CreateUnit("unit-germanic-town-hall", 4, {44, 85})
unit = CreateUnit("unit-germanic-worker", 4, {44, 85})
unit = CreateUnit("unit-germanic-worker", 4, {44, 85})
unit = CreateUnit("unit-germanic-worker", 4, {44, 85})
Expand Down
33 changes: 30 additions & 3 deletions scripts/civilizations/anglo_saxon/characters.lua
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,24 @@ DefineCharacter("ecgfrith", { -- Source: Frank Stenton, "Anglo-Saxon England", 1
-- in 684 had an army sent to Ireland against the kingdom of Meath
})

DefineCharacter("benedict-biscop", { -- Source: Frank Stenton, "Anglo-Saxon England", 1971, pp. 184-185.
Name = "Benedict",
ExtraName = "Biscop",
Gender = "male",
Type = "unit-teuton-priest", -- founder of monasteries
Civilization = "anglo-saxon",
Faction = "northumbria",
Date = 674, -- founded a monastery at Wearmouth in 674, with the land being given by king Ecgfrith of Northumbria
DeathDate = 689, -- died in 689
Deities = {"christian-god"},
Conditions = function(s)
if (GetPlayerData(trigger_player, "Faction") == "northumbria") then
return true
end
return false
end
})

DefineCharacter("haeddi", { -- Source: Frank Stenton, "Anglo-Saxon England", 1971, p. 134.
Name = "Haeddi", -- "Hæddi"
Gender = "male",
Expand Down Expand Up @@ -1347,14 +1365,23 @@ DefineCharacter("tatwine", { -- Source: Frank Stenton, "Anglo-Saxon England", 19
end
})

DefineCharacter("bede", { -- Source: Snorri Sturlson, "Heimskringla", 1844, vol. 1, pp. 34, 160-161.
DefineCharacter("bede", { -- Source: Snorri Sturlson, "Heimskringla", 1844, vol. 1, pp. 34; Source: Frank Stenton, "Anglo-Saxon England", 1971, pp. 160-161, 185-186.
Name = "Bede",
Gender = "male",
Type = "unit-teuton-priest",
Civilization = "anglo-saxon",
Date = 731, -- wrote "Historia Ecclesiastica Venerabilis Bedae" around 731 AD
Faction = "northumbria", -- studied at a Northumbrian monastery
Date = 703, -- wrote "De Temporibus" in 703
-- wrote "De Temporum Ratione" in 725
-- wrote "Historia Ecclesiastica Venerabilis Bedae" in 731 AD
Deities = {"christian-god"},
AuthoredWorks = {"upgrade-work-historia-ecclesiastica-venerabilis-bedae"}
AuthoredWorks = {"upgrade-work-historia-ecclesiastica-venerabilis-bedae"},
Conditions = function(s)
if (GetPlayerData(trigger_player, "Faction") == "northumbria") then
return true
end
return false
end
})

DefineCharacter("eadberht", { -- Source: Frank Stenton, "Anglo-Saxon England", 1971, p. 92.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,6 @@ if (LoadedGame == false) then
else
SetPlayerData(1, "Faction", GetProvinceOwner("Jutland"))
end

if (GrandStrategyEventMap) then
-- Asa units
CreateProvinceUnits("Brandenburg", 4)
CreateProvinceCustomHero("Brandenburg", 4)

-- native units
CreateProvinceUnits("Jutland", 1)
end
end

-- Northwards to the Sea introduction
Expand Down
7 changes: 5 additions & 2 deletions scripts/settlements_great_britain.lua
Original file line number Diff line number Diff line change
Expand Up @@ -692,11 +692,13 @@ DefineSettlement("jarrow", {
"english", "Jarrow"
},
HistoricalOwners = {
681, "northumbria",
802, "northumbria", -- Jarrow was a part of Northumbria c. 802 AD; Source: William R. Shepherd, "Historical Atlas", 1911, p. 60.
1560, "england" -- Jarrow's area was a part of England in 1560; Source: William R. Shepherd, "Historical Atlas", 1911, pp. 118-119.
},
HistoricalBuildings = {
802, 0, "farm"
681, 0, "temple" -- Benedict Biscop founded a monastery at Jarrow in 681, with the land being given by king Ecgfrith of Northumbria; Source: Frank Stenton, "Anglo-Saxon England", 1971, p. 185.
-- Benedict Biscop travelled to Rome in 684 to acquire relics and books for the monastery at Jarrow; Source: Frank Stenton, "Anglo-Saxon England", 1971, p. 185.
},
Regions = {"british-isles", "england", "europe", "northwest-europe", "west-and-central-europe"}
})
Expand Down Expand Up @@ -1220,11 +1222,12 @@ DefineSettlement("wearmouth", {
"english", "Wearmouth"
},
HistoricalOwners = {
674, "northumbria",
802, "northumbria", -- Wearmouth was a part of Northumbria c. 802 AD; Source: William R. Shepherd, "Historical Atlas", 1911, p. 60.
1560, "england" -- Wearmouth's area was a part of England in 1560; Source: William R. Shepherd, "Historical Atlas", 1911, pp. 118-119.
},
HistoricalBuildings = {
802, 0, "farm"
674, 0, "temple" -- Benedict Biscop founded a monastery at Wearmouth in 674, with the land being given by king Ecgfrith of Northumbria; Benedict Biscop transported his large collection of books to Wearmouth, establishing a library at the monastery; Source: Frank Stenton, "Anglo-Saxon England", 1971, pp. 184-185.
},
Regions = {"british-isles", "england", "europe", "northwest-europe", "west-and-central-europe"}
})
Expand Down

0 comments on commit 99ce6a9

Please sign in to comment.