1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
versionMinor = 79;
campaignName = "Tutorial Campaign";
playerName = "";
maps
{
mapNum = 4;
0
{
CampaignMap
{
mapName = "Introduction and Basics";
mapFileName = "campaigns/tutorial-part1.map";
isLocked = 0;
unlockedBy
{
size = 0;
}
description = "[tutorial text 1]";
completed = 0;
}
}
1
{
CampaignMap
{
mapName = "More building and Schools";
mapFileName = "campaigns/tutorial-part2.map";
isLocked = 1;
unlockedBy
{
size = 1;
0
{
unlockedBy = "Introduction and Basics";
}
}
description = "[tutorial text 2]";
completed = 0;
}
}
2
{
CampaignMap
{
mapName = "Warriors, Training Camps, and Upgrades";
mapFileName = "campaigns/tutorial-part3.map";
isLocked = 1;
unlockedBy
{
size = 1;
0
{
unlockedBy = "More building and Schools";
}
}
description = "[tutorial text 3]";
completed = 0;
}
}
3
{
CampaignMap
{
mapName = "Flags and Completion";
mapFileName = "campaigns/tutorial-part4.map";
isLocked = 1;
unlockedBy
{
size = 1;
0
{
unlockedBy = "Warriors, Training Camps, and Upgrades";
}
}
description = "[tutorial text 4]";
completed = 0;
}
}
}
|